From a08698f7a834af362b687f16dd354679e5075916 Mon Sep 17 00:00:00 2001 From: "dropbox-sdk-updater[bot]" <306210582+dropbox-sdk-updater[bot]@users.noreply.github.com> Date: Mon, 20 Jul 2026 14:00:03 +0000 Subject: [PATCH] Automated Spec Update aa7bd7a402565927065bcd39dd489808eadd69ff d461e039e9ebfb374a726b28e289f87c58315830 Co-authored-by: Claude Opus 4.6 --- dropbox/account.py | 278 +- dropbox/account_id.py | 10 +- dropbox/async_.py | 85 +- dropbox/auth.py | 339 +- dropbox/base.py | 2038 +- dropbox/base_team.py | 870 +- dropbox/check.py | 59 +- dropbox/common.py | 170 +- dropbox/contacts.py | 54 +- dropbox/file_properties.py | 1071 +- dropbox/file_requests.py | 709 +- dropbox/files.py | 6767 +++-- dropbox/openid.py | 122 +- dropbox/paper.py | 1707 +- dropbox/riviera.py | 1498 +- dropbox/secondary_emails.py | 32 +- dropbox/seen_state.py | 60 +- dropbox/sharing.py | 7015 +++-- dropbox/stone_base.py | 2 +- dropbox/stone_serializers.py | 2 +- dropbox/stone_validators.py | 2 +- dropbox/team.py | 8790 +++--- dropbox/team_common.py | 170 +- dropbox/team_log.py | 48017 ++++++++++++++------------------- dropbox/team_policies.py | 1119 +- dropbox/users.py | 795 +- dropbox/users_common.py | 24 +- spec | 2 +- 28 files changed, 35189 insertions(+), 46618 deletions(-) diff --git a/dropbox/account.py b/dropbox/account.py index f265d7fe..27c5176c 100644 --- a/dropbox/account.py +++ b/dropbox/account.py @@ -7,7 +7,6 @@ from stone.backends.python_rsrc import stone_base as bb from stone.backends.python_rsrc import stone_validators as bv - class AccountPhotoGetArg(bb.Struct): """ :ivar AccountPhotoGetArg.dbx_account_id: @@ -21,21 +20,19 @@ class AccountPhotoGetArg(bb.Struct): """ __slots__ = [ - "_dbx_account_id_value", - "_size_value", - "_circle_crop_value", - "_expect_account_photo_value", + '_dbx_account_id_value', + '_size_value', + '_circle_crop_value', + '_expect_account_photo_value', ] _has_required_fields = True - def __init__( - self, - dbx_account_id=None, - size=None, - circle_crop=None, - expect_account_photo=None, - ): + def __init__(self, + dbx_account_id=None, + size=None, + circle_crop=None, + expect_account_photo=None): self._dbx_account_id_value = bb.NOT_SET self._size_value = bb.NOT_SET self._circle_crop_value = bb.NOT_SET @@ -62,14 +59,10 @@ def __init__( expect_account_photo = bb.Attribute("expect_account_photo") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AccountPhotoGetArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AccountPhotoGetArg, self)._process_custom_annotations(annotation_type, field_path, processor) AccountPhotoGetArg_validator = bv.Struct(AccountPhotoGetArg) - class AccountPhotoGetError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -85,7 +78,7 @@ class AccountPhotoGetError(bb.Union): Account photo was expected to exist, but it's missing. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition account_photo_missing = None # Attribute is overwritten below the class definition @@ -102,7 +95,7 @@ def thumbnail_error(cls, val): :param ThumbnailError val: :rtype: AccountPhotoGetError """ - return cls("thumbnail_error", val) + return cls('thumbnail_error', val) def is_thumbnail_error(self): """ @@ -110,7 +103,7 @@ def is_thumbnail_error(self): :rtype: bool """ - return self._tag == "thumbnail_error" + return self._tag == 'thumbnail_error' def is_account_photo_missing(self): """ @@ -118,7 +111,7 @@ def is_account_photo_missing(self): :rtype: bool """ - return self._tag == "account_photo_missing" + return self._tag == 'account_photo_missing' def is_expected_account_photo_missing(self): """ @@ -126,7 +119,7 @@ def is_expected_account_photo_missing(self): :rtype: bool """ - return self._tag == "expected_account_photo_missing" + return self._tag == 'expected_account_photo_missing' def is_other(self): """ @@ -134,7 +127,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_thumbnail_error(self): """ @@ -149,14 +142,10 @@ def get_thumbnail_error(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AccountPhotoGetError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AccountPhotoGetError, self)._process_custom_annotations(annotation_type, field_path, processor) AccountPhotoGetError_validator = bv.Union(AccountPhotoGetError) - class AccountPhotoGetResult(bb.Struct): """ :ivar AccountPhotoGetResult.content_type: @@ -164,12 +153,13 @@ class AccountPhotoGetResult(bb.Struct): """ __slots__ = [ - "_content_type_value", + '_content_type_value', ] _has_required_fields = True - def __init__(self, content_type=None): + def __init__(self, + content_type=None): self._content_type_value = bb.NOT_SET if content_type is not None: self.content_type = content_type @@ -178,21 +168,18 @@ def __init__(self, content_type=None): content_type = bb.Attribute("content_type") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AccountPhotoGetResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AccountPhotoGetResult, self)._process_custom_annotations(annotation_type, field_path, processor) AccountPhotoGetResult_validator = bv.Struct(AccountPhotoGetResult) - class DeleteProfilePhotoArg(bb.Struct): """ This struct is empty. The comment here is intentionally emitted to avoid indentation issues with Stone. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -200,14 +187,10 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeleteProfilePhotoArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DeleteProfilePhotoArg, self)._process_custom_annotations(annotation_type, field_path, processor) DeleteProfilePhotoArg_validator = bv.Struct(DeleteProfilePhotoArg) - class DeleteProfilePhotoError(bb.Union): """ This union is empty. The comment here is intentionally emitted to avoid @@ -218,7 +201,7 @@ class DeleteProfilePhotoError(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -228,24 +211,21 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeleteProfilePhotoError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DeleteProfilePhotoError, self)._process_custom_annotations(annotation_type, field_path, processor) DeleteProfilePhotoError_validator = bv.Union(DeleteProfilePhotoError) - class DeleteProfilePhotoResult(bb.Struct): """ This struct is empty. The comment here is intentionally emitted to avoid indentation issues with Stone. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -253,14 +233,10 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeleteProfilePhotoResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DeleteProfilePhotoResult, self)._process_custom_annotations(annotation_type, field_path, processor) DeleteProfilePhotoResult_validator = bv.Struct(DeleteProfilePhotoResult) - class PhotoSourceArg(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -272,7 +248,7 @@ class PhotoSourceArg(bb.Union): :vartype PhotoSourceArg.base64_data: str """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -285,7 +261,7 @@ def base64_data(cls, val): :param str val: :rtype: PhotoSourceArg """ - return cls("base64_data", val) + return cls('base64_data', val) def is_base64_data(self): """ @@ -293,7 +269,7 @@ def is_base64_data(self): :rtype: bool """ - return self._tag == "base64_data" + return self._tag == 'base64_data' def is_other(self): """ @@ -301,7 +277,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_base64_data(self): """ @@ -316,14 +292,10 @@ def get_base64_data(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PhotoSourceArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PhotoSourceArg, self)._process_custom_annotations(annotation_type, field_path, processor) PhotoSourceArg_validator = bv.Union(PhotoSourceArg) - class SetProfilePhotoArg(bb.Struct): """ :ivar SetProfilePhotoArg.photo: @@ -331,12 +303,13 @@ class SetProfilePhotoArg(bb.Struct): """ __slots__ = [ - "_photo_value", + '_photo_value', ] _has_required_fields = True - def __init__(self, photo=None): + def __init__(self, + photo=None): self._photo_value = bb.NOT_SET if photo is not None: self.photo = photo @@ -345,14 +318,10 @@ def __init__(self, photo=None): photo = bb.Attribute("photo", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SetProfilePhotoArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SetProfilePhotoArg, self)._process_custom_annotations(annotation_type, field_path, processor) SetProfilePhotoArg_validator = bv.Struct(SetProfilePhotoArg) - class SetProfilePhotoError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -371,7 +340,7 @@ class SetProfilePhotoError(bb.Union): Temporary infrastructure failure, please retry. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition file_type_error = None # Attribute is overwritten below the class definition @@ -391,7 +360,7 @@ def is_file_type_error(self): :rtype: bool """ - return self._tag == "file_type_error" + return self._tag == 'file_type_error' def is_file_size_error(self): """ @@ -399,7 +368,7 @@ def is_file_size_error(self): :rtype: bool """ - return self._tag == "file_size_error" + return self._tag == 'file_size_error' def is_dimension_error(self): """ @@ -407,7 +376,7 @@ def is_dimension_error(self): :rtype: bool """ - return self._tag == "dimension_error" + return self._tag == 'dimension_error' def is_thumbnail_error(self): """ @@ -415,7 +384,7 @@ def is_thumbnail_error(self): :rtype: bool """ - return self._tag == "thumbnail_error" + return self._tag == 'thumbnail_error' def is_transient_error(self): """ @@ -423,7 +392,7 @@ def is_transient_error(self): :rtype: bool """ - return self._tag == "transient_error" + return self._tag == 'transient_error' def is_other(self): """ @@ -431,17 +400,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SetProfilePhotoError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SetProfilePhotoError, self)._process_custom_annotations(annotation_type, field_path, processor) SetProfilePhotoError_validator = bv.Union(SetProfilePhotoError) - class SetProfilePhotoResult(bb.Struct): """ :ivar SetProfilePhotoResult.profile_photo_url: @@ -449,12 +414,13 @@ class SetProfilePhotoResult(bb.Struct): """ __slots__ = [ - "_profile_photo_url_value", + '_profile_photo_url_value', ] _has_required_fields = True - def __init__(self, profile_photo_url=None): + def __init__(self, + profile_photo_url=None): self._profile_photo_url_value = bb.NOT_SET if profile_photo_url is not None: self.profile_photo_url = profile_photo_url @@ -463,14 +429,10 @@ def __init__(self, profile_photo_url=None): profile_photo_url = bb.Attribute("profile_photo_url") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SetProfilePhotoResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SetProfilePhotoResult, self)._process_custom_annotations(annotation_type, field_path, processor) SetProfilePhotoResult_validator = bv.Struct(SetProfilePhotoResult) - class ThumbnailError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -483,7 +445,7 @@ class ThumbnailError(bb.Union): Indicates temporary infrastructural failure. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition permanent_failure = None # Attribute is overwritten below the class definition @@ -497,7 +459,7 @@ def is_permanent_failure(self): :rtype: bool """ - return self._tag == "permanent_failure" + return self._tag == 'permanent_failure' def is_temporary_failure(self): """ @@ -505,7 +467,7 @@ def is_temporary_failure(self): :rtype: bool """ - return self._tag == "temporary_failure" + return self._tag == 'temporary_failure' def is_other(self): """ @@ -513,13 +475,10 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ThumbnailError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ThumbnailError, self)._process_custom_annotations(annotation_type, field_path, processor) ThumbnailError_validator = bv.Union(ThumbnailError) @@ -527,19 +486,17 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): AccountPhotoGetArg.size.validator = bv.String() AccountPhotoGetArg.circle_crop.validator = bv.Boolean() AccountPhotoGetArg.expect_account_photo.validator = bv.Boolean() -AccountPhotoGetArg._all_field_names_ = set( - [ - "dbx_account_id", - "size", - "circle_crop", - "expect_account_photo", - ] -) +AccountPhotoGetArg._all_field_names_ = set([ + 'dbx_account_id', + 'size', + 'circle_crop', + 'expect_account_photo', +]) AccountPhotoGetArg._all_fields_ = [ - ("dbx_account_id", AccountPhotoGetArg.dbx_account_id.validator), - ("size", AccountPhotoGetArg.size.validator), - ("circle_crop", AccountPhotoGetArg.circle_crop.validator), - ("expect_account_photo", AccountPhotoGetArg.expect_account_photo.validator), + ('dbx_account_id', AccountPhotoGetArg.dbx_account_id.validator), + ('size', AccountPhotoGetArg.size.validator), + ('circle_crop', AccountPhotoGetArg.circle_crop.validator), + ('expect_account_photo', AccountPhotoGetArg.expect_account_photo.validator), ] AccountPhotoGetError._thumbnail_error_validator = ThumbnailError_validator @@ -547,33 +504,29 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): AccountPhotoGetError._expected_account_photo_missing_validator = bv.Void() AccountPhotoGetError._other_validator = bv.Void() AccountPhotoGetError._tagmap = { - "thumbnail_error": AccountPhotoGetError._thumbnail_error_validator, - "account_photo_missing": AccountPhotoGetError._account_photo_missing_validator, - "expected_account_photo_missing": AccountPhotoGetError._expected_account_photo_missing_validator, - "other": AccountPhotoGetError._other_validator, + 'thumbnail_error': AccountPhotoGetError._thumbnail_error_validator, + 'account_photo_missing': AccountPhotoGetError._account_photo_missing_validator, + 'expected_account_photo_missing': AccountPhotoGetError._expected_account_photo_missing_validator, + 'other': AccountPhotoGetError._other_validator, } -AccountPhotoGetError.account_photo_missing = AccountPhotoGetError("account_photo_missing") -AccountPhotoGetError.expected_account_photo_missing = AccountPhotoGetError( - "expected_account_photo_missing" -) -AccountPhotoGetError.other = AccountPhotoGetError("other") +AccountPhotoGetError.account_photo_missing = AccountPhotoGetError('account_photo_missing') +AccountPhotoGetError.expected_account_photo_missing = AccountPhotoGetError('expected_account_photo_missing') +AccountPhotoGetError.other = AccountPhotoGetError('other') AccountPhotoGetResult.content_type.validator = bv.String() -AccountPhotoGetResult._all_field_names_ = set(["content_type"]) -AccountPhotoGetResult._all_fields_ = [ - ("content_type", AccountPhotoGetResult.content_type.validator) -] +AccountPhotoGetResult._all_field_names_ = set(['content_type']) +AccountPhotoGetResult._all_fields_ = [('content_type', AccountPhotoGetResult.content_type.validator)] DeleteProfilePhotoArg._all_field_names_ = set([]) DeleteProfilePhotoArg._all_fields_ = [] DeleteProfilePhotoError._other_validator = bv.Void() DeleteProfilePhotoError._tagmap = { - "other": DeleteProfilePhotoError._other_validator, + 'other': DeleteProfilePhotoError._other_validator, } -DeleteProfilePhotoError.other = DeleteProfilePhotoError("other") +DeleteProfilePhotoError.other = DeleteProfilePhotoError('other') DeleteProfilePhotoResult._all_field_names_ = set([]) DeleteProfilePhotoResult._all_fields_ = [] @@ -581,15 +534,15 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): PhotoSourceArg._base64_data_validator = bv.String() PhotoSourceArg._other_validator = bv.Void() PhotoSourceArg._tagmap = { - "base64_data": PhotoSourceArg._base64_data_validator, - "other": PhotoSourceArg._other_validator, + 'base64_data': PhotoSourceArg._base64_data_validator, + 'other': PhotoSourceArg._other_validator, } -PhotoSourceArg.other = PhotoSourceArg("other") +PhotoSourceArg.other = PhotoSourceArg('other') SetProfilePhotoArg.photo.validator = PhotoSourceArg_validator -SetProfilePhotoArg._all_field_names_ = set(["photo"]) -SetProfilePhotoArg._all_fields_ = [("photo", SetProfilePhotoArg.photo.validator)] +SetProfilePhotoArg._all_field_names_ = set(['photo']) +SetProfilePhotoArg._all_fields_ = [('photo', SetProfilePhotoArg.photo.validator)] SetProfilePhotoError._file_type_error_validator = bv.Void() SetProfilePhotoError._file_size_error_validator = bv.Void() @@ -598,70 +551,75 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): SetProfilePhotoError._transient_error_validator = bv.Void() SetProfilePhotoError._other_validator = bv.Void() SetProfilePhotoError._tagmap = { - "file_type_error": SetProfilePhotoError._file_type_error_validator, - "file_size_error": SetProfilePhotoError._file_size_error_validator, - "dimension_error": SetProfilePhotoError._dimension_error_validator, - "thumbnail_error": SetProfilePhotoError._thumbnail_error_validator, - "transient_error": SetProfilePhotoError._transient_error_validator, - "other": SetProfilePhotoError._other_validator, + 'file_type_error': SetProfilePhotoError._file_type_error_validator, + 'file_size_error': SetProfilePhotoError._file_size_error_validator, + 'dimension_error': SetProfilePhotoError._dimension_error_validator, + 'thumbnail_error': SetProfilePhotoError._thumbnail_error_validator, + 'transient_error': SetProfilePhotoError._transient_error_validator, + 'other': SetProfilePhotoError._other_validator, } -SetProfilePhotoError.file_type_error = SetProfilePhotoError("file_type_error") -SetProfilePhotoError.file_size_error = SetProfilePhotoError("file_size_error") -SetProfilePhotoError.dimension_error = SetProfilePhotoError("dimension_error") -SetProfilePhotoError.thumbnail_error = SetProfilePhotoError("thumbnail_error") -SetProfilePhotoError.transient_error = SetProfilePhotoError("transient_error") -SetProfilePhotoError.other = SetProfilePhotoError("other") +SetProfilePhotoError.file_type_error = SetProfilePhotoError('file_type_error') +SetProfilePhotoError.file_size_error = SetProfilePhotoError('file_size_error') +SetProfilePhotoError.dimension_error = SetProfilePhotoError('dimension_error') +SetProfilePhotoError.thumbnail_error = SetProfilePhotoError('thumbnail_error') +SetProfilePhotoError.transient_error = SetProfilePhotoError('transient_error') +SetProfilePhotoError.other = SetProfilePhotoError('other') SetProfilePhotoResult.profile_photo_url.validator = bv.String() -SetProfilePhotoResult._all_field_names_ = set(["profile_photo_url"]) -SetProfilePhotoResult._all_fields_ = [ - ("profile_photo_url", SetProfilePhotoResult.profile_photo_url.validator) -] +SetProfilePhotoResult._all_field_names_ = set(['profile_photo_url']) +SetProfilePhotoResult._all_fields_ = [('profile_photo_url', SetProfilePhotoResult.profile_photo_url.validator)] ThumbnailError._permanent_failure_validator = bv.Void() ThumbnailError._temporary_failure_validator = bv.Void() ThumbnailError._other_validator = bv.Void() ThumbnailError._tagmap = { - "permanent_failure": ThumbnailError._permanent_failure_validator, - "temporary_failure": ThumbnailError._temporary_failure_validator, - "other": ThumbnailError._other_validator, + 'permanent_failure': ThumbnailError._permanent_failure_validator, + 'temporary_failure': ThumbnailError._temporary_failure_validator, + 'other': ThumbnailError._other_validator, } -ThumbnailError.permanent_failure = ThumbnailError("permanent_failure") -ThumbnailError.temporary_failure = ThumbnailError("temporary_failure") -ThumbnailError.other = ThumbnailError("other") +ThumbnailError.permanent_failure = ThumbnailError('permanent_failure') +ThumbnailError.temporary_failure = ThumbnailError('temporary_failure') +ThumbnailError.other = ThumbnailError('other') delete_profile_photo = bb.Route( - "delete_profile_photo", + 'delete_profile_photo', 1, False, DeleteProfilePhotoArg_validator, DeleteProfilePhotoResult_validator, DeleteProfilePhotoError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) get_photo = bb.Route( - "get_photo", + 'get_photo', 1, False, AccountPhotoGetArg_validator, AccountPhotoGetResult_validator, AccountPhotoGetError_validator, - {"auth": "user", "host": "content", "style": "download"}, + {'auth': 'user', + 'host': 'content', + 'style': 'download'}, ) set_profile_photo = bb.Route( - "set_profile_photo", + 'set_profile_photo', 1, False, SetProfilePhotoArg_validator, SetProfilePhotoResult_validator, SetProfilePhotoError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) ROUTES = { - "delete_profile_photo": delete_profile_photo, - "get_photo": get_photo, - "set_profile_photo": set_profile_photo, + 'delete_profile_photo': delete_profile_photo, + 'get_photo': get_photo, + 'set_profile_photo': set_profile_photo, } + diff --git a/dropbox/account_id.py b/dropbox/account_id.py index e86bafd2..10e51dd1 100644 --- a/dropbox/account_id.py +++ b/dropbox/account_id.py @@ -7,7 +7,6 @@ from stone.backends.python_rsrc import stone_base as bb from stone.backends.python_rsrc import stone_validators as bv - class ContainsDbidAnnotation(bb.AnnotationType): """ Annotation type should be applied to Response object fields which contain @@ -15,10 +14,11 @@ class ContainsDbidAnnotation(bb.AnnotationType): """ __slots__ = [ - "_authorize_caller", + '_authorize_caller', ] - def __init__(self, authorize_caller=True): + def __init__(self, + authorize_caller=True): self._authorize_caller = authorize_caller @property @@ -29,4 +29,6 @@ def authorize_caller(self): return self._authorize_caller -ROUTES = {} +ROUTES = { +} + diff --git a/dropbox/async_.py b/dropbox/async_.py index a58a271d..f353dbd2 100644 --- a/dropbox/async_.py +++ b/dropbox/async_.py @@ -7,7 +7,6 @@ from stone.backends.python_rsrc import stone_base as bb from stone.backends.python_rsrc import stone_validators as bv - class LaunchResultBase(bb.Union): """ Result returned by methods that launch an asynchronous job. A method who may @@ -37,7 +36,7 @@ def async_job_id(cls, val): :param str val: :rtype: LaunchResultBase """ - return cls("async_job_id", val) + return cls('async_job_id', val) def is_async_job_id(self): """ @@ -45,7 +44,7 @@ def is_async_job_id(self): :rtype: bool """ - return self._tag == "async_job_id" + return self._tag == 'async_job_id' def get_async_job_id(self): """ @@ -61,14 +60,10 @@ def get_async_job_id(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LaunchResultBase, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(LaunchResultBase, self)._process_custom_annotations(annotation_type, field_path, processor) LaunchResultBase_validator = bv.Union(LaunchResultBase) - class LaunchEmptyResult(LaunchResultBase): """ Result returned by methods that may either launch an asynchronous job or @@ -92,17 +87,13 @@ def is_complete(self): :rtype: bool """ - return self._tag == "complete" + return self._tag == 'complete' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LaunchEmptyResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(LaunchEmptyResult, self)._process_custom_annotations(annotation_type, field_path, processor) LaunchEmptyResult_validator = bv.Union(LaunchEmptyResult) - class PollArg(bb.Struct): """ Arguments for methods that poll the status of an asynchronous job. @@ -113,12 +104,13 @@ class PollArg(bb.Struct): """ __slots__ = [ - "_async_job_id_value", + '_async_job_id_value', ] _has_required_fields = True - def __init__(self, async_job_id=None): + def __init__(self, + async_job_id=None): self._async_job_id_value = bb.NOT_SET if async_job_id is not None: self.async_job_id = async_job_id @@ -129,10 +121,8 @@ def __init__(self, async_job_id=None): def _process_custom_annotations(self, annotation_type, field_path, processor): super(PollArg, self)._process_custom_annotations(annotation_type, field_path, processor) - PollArg_validator = bv.Struct(PollArg) - class PollResultBase(bb.Union): """ Result returned by methods that poll for the status of an asynchronous job. @@ -158,17 +148,13 @@ def is_in_progress(self): :rtype: bool """ - return self._tag == "in_progress" + return self._tag == 'in_progress' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PollResultBase, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PollResultBase, self)._process_custom_annotations(annotation_type, field_path, processor) PollResultBase_validator = bv.Union(PollResultBase) - class PollEmptyResult(PollResultBase): """ Result returned by methods that poll for the status of an asynchronous job. @@ -191,17 +177,13 @@ def is_complete(self): :rtype: bool """ - return self._tag == "complete" + return self._tag == 'complete' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PollEmptyResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PollEmptyResult, self)._process_custom_annotations(annotation_type, field_path, processor) PollEmptyResult_validator = bv.Union(PollEmptyResult) - class PollError(bb.Union): """ Error returned by methods for polling the status of asynchronous job. @@ -218,7 +200,7 @@ class PollError(bb.Union): This should happen very rarely. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition invalid_async_job_id = None # Attribute is overwritten below the class definition @@ -232,7 +214,7 @@ def is_invalid_async_job_id(self): :rtype: bool """ - return self._tag == "invalid_async_job_id" + return self._tag == 'invalid_async_job_id' def is_internal_error(self): """ @@ -240,7 +222,7 @@ def is_internal_error(self): :rtype: bool """ - return self._tag == "internal_error" + return self._tag == 'internal_error' def is_other(self): """ @@ -248,58 +230,59 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): super(PollError, self)._process_custom_annotations(annotation_type, field_path, processor) - PollError_validator = bv.Union(PollError) AsyncJobId_validator = bv.String(min_length=1) LaunchResultBase._async_job_id_validator = AsyncJobId_validator LaunchResultBase._tagmap = { - "async_job_id": LaunchResultBase._async_job_id_validator, + 'async_job_id': LaunchResultBase._async_job_id_validator, } LaunchEmptyResult._complete_validator = bv.Void() LaunchEmptyResult._tagmap = { - "complete": LaunchEmptyResult._complete_validator, + 'complete': LaunchEmptyResult._complete_validator, } LaunchEmptyResult._tagmap.update(LaunchResultBase._tagmap) -LaunchEmptyResult.complete = LaunchEmptyResult("complete") +LaunchEmptyResult.complete = LaunchEmptyResult('complete') PollArg.async_job_id.validator = AsyncJobId_validator -PollArg._all_field_names_ = set(["async_job_id"]) -PollArg._all_fields_ = [("async_job_id", PollArg.async_job_id.validator)] +PollArg._all_field_names_ = set(['async_job_id']) +PollArg._all_fields_ = [('async_job_id', PollArg.async_job_id.validator)] PollResultBase._in_progress_validator = bv.Void() PollResultBase._tagmap = { - "in_progress": PollResultBase._in_progress_validator, + 'in_progress': PollResultBase._in_progress_validator, } -PollResultBase.in_progress = PollResultBase("in_progress") +PollResultBase.in_progress = PollResultBase('in_progress') PollEmptyResult._complete_validator = bv.Void() PollEmptyResult._tagmap = { - "complete": PollEmptyResult._complete_validator, + 'complete': PollEmptyResult._complete_validator, } PollEmptyResult._tagmap.update(PollResultBase._tagmap) -PollEmptyResult.complete = PollEmptyResult("complete") +PollEmptyResult.complete = PollEmptyResult('complete') PollError._invalid_async_job_id_validator = bv.Void() PollError._internal_error_validator = bv.Void() PollError._other_validator = bv.Void() PollError._tagmap = { - "invalid_async_job_id": PollError._invalid_async_job_id_validator, - "internal_error": PollError._internal_error_validator, - "other": PollError._other_validator, + 'invalid_async_job_id': PollError._invalid_async_job_id_validator, + 'internal_error': PollError._internal_error_validator, + 'other': PollError._other_validator, } -PollError.invalid_async_job_id = PollError("invalid_async_job_id") -PollError.internal_error = PollError("internal_error") -PollError.other = PollError("other") +PollError.invalid_async_job_id = PollError('invalid_async_job_id') +PollError.internal_error = PollError('internal_error') +PollError.other = PollError('other') + +ROUTES = { +} -ROUTES = {} diff --git a/dropbox/auth.py b/dropbox/auth.py index 0f8d2407..3383f7a7 100644 --- a/dropbox/auth.py +++ b/dropbox/auth.py @@ -7,7 +7,6 @@ from stone.backends.python_rsrc import stone_base as bb from stone.backends.python_rsrc import stone_validators as bv - class AccessError(bb.Union): """ Error occurred because the account doesn't have permission to access the @@ -30,7 +29,7 @@ class AccessError(bb.Union): :vartype AccessError.no_permission: NoPermissionError """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition team_access_denied = None # Attribute is overwritten below the class definition @@ -45,7 +44,7 @@ def invalid_account_type(cls, val): :param InvalidAccountTypeError val: :rtype: AccessError """ - return cls("invalid_account_type", val) + return cls('invalid_account_type', val) @classmethod def paper_access_denied(cls, val): @@ -56,7 +55,7 @@ def paper_access_denied(cls, val): :param PaperAccessError val: :rtype: AccessError """ - return cls("paper_access_denied", val) + return cls('paper_access_denied', val) @classmethod def no_permission(cls, val): @@ -67,7 +66,7 @@ def no_permission(cls, val): :param NoPermissionError val: :rtype: AccessError """ - return cls("no_permission", val) + return cls('no_permission', val) def is_invalid_account_type(self): """ @@ -75,7 +74,7 @@ def is_invalid_account_type(self): :rtype: bool """ - return self._tag == "invalid_account_type" + return self._tag == 'invalid_account_type' def is_paper_access_denied(self): """ @@ -83,7 +82,7 @@ def is_paper_access_denied(self): :rtype: bool """ - return self._tag == "paper_access_denied" + return self._tag == 'paper_access_denied' def is_team_access_denied(self): """ @@ -91,7 +90,7 @@ def is_team_access_denied(self): :rtype: bool """ - return self._tag == "team_access_denied" + return self._tag == 'team_access_denied' def is_no_permission(self): """ @@ -99,7 +98,7 @@ def is_no_permission(self): :rtype: bool """ - return self._tag == "no_permission" + return self._tag == 'no_permission' def is_other(self): """ @@ -107,7 +106,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_invalid_account_type(self): """ @@ -148,10 +147,8 @@ def get_no_permission(self): def _process_custom_annotations(self, annotation_type, field_path, processor): super(AccessError, self)._process_custom_annotations(annotation_type, field_path, processor) - AccessError_validator = bv.Union(AccessError) - class AuthError(bb.Union): """ Errors occurred during authentication. @@ -179,7 +176,7 @@ class AuthError(bb.Union): The route is not available to public. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition invalid_access_token = None # Attribute is overwritten below the class definition @@ -204,7 +201,7 @@ def missing_scope(cls, val): :param TokenScopeError val: :rtype: AuthError """ - return cls("missing_scope", val) + return cls('missing_scope', val) def is_invalid_access_token(self): """ @@ -212,7 +209,7 @@ def is_invalid_access_token(self): :rtype: bool """ - return self._tag == "invalid_access_token" + return self._tag == 'invalid_access_token' def is_invalid_select_user(self): """ @@ -220,7 +217,7 @@ def is_invalid_select_user(self): :rtype: bool """ - return self._tag == "invalid_select_user" + return self._tag == 'invalid_select_user' def is_invalid_select_admin(self): """ @@ -228,7 +225,7 @@ def is_invalid_select_admin(self): :rtype: bool """ - return self._tag == "invalid_select_admin" + return self._tag == 'invalid_select_admin' def is_user_suspended(self): """ @@ -236,7 +233,7 @@ def is_user_suspended(self): :rtype: bool """ - return self._tag == "user_suspended" + return self._tag == 'user_suspended' def is_expired_access_token(self): """ @@ -244,7 +241,7 @@ def is_expired_access_token(self): :rtype: bool """ - return self._tag == "expired_access_token" + return self._tag == 'expired_access_token' def is_missing_scope(self): """ @@ -252,7 +249,7 @@ def is_missing_scope(self): :rtype: bool """ - return self._tag == "missing_scope" + return self._tag == 'missing_scope' def is_route_access_denied(self): """ @@ -260,7 +257,7 @@ def is_route_access_denied(self): :rtype: bool """ - return self._tag == "route_access_denied" + return self._tag == 'route_access_denied' def is_other(self): """ @@ -268,7 +265,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_missing_scope(self): """ @@ -285,10 +282,8 @@ def get_missing_scope(self): def _process_custom_annotations(self, annotation_type, field_path, processor): super(AuthError, self)._process_custom_annotations(annotation_type, field_path, processor) - AuthError_validator = bv.Union(AuthError) - class InvalidAccountTypeError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -302,7 +297,7 @@ class InvalidAccountTypeError(bb.Union): Current account type doesn't have permission to access this feature. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition endpoint = None # Attribute is overwritten below the class definition @@ -316,7 +311,7 @@ def is_endpoint(self): :rtype: bool """ - return self._tag == "endpoint" + return self._tag == 'endpoint' def is_feature(self): """ @@ -324,7 +319,7 @@ def is_feature(self): :rtype: bool """ - return self._tag == "feature" + return self._tag == 'feature' def is_other(self): """ @@ -332,17 +327,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(InvalidAccountTypeError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(InvalidAccountTypeError, self)._process_custom_annotations(annotation_type, field_path, processor) InvalidAccountTypeError_validator = bv.Union(InvalidAccountTypeError) - class NoPermissionError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -355,7 +346,7 @@ class NoPermissionError(bb.Union): :vartype NoPermissionError.unauthorized_account_id_usage: UnauthorizedAccountIdUsageError """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -368,7 +359,7 @@ def unauthorized_account_id_usage(cls, val): :param UnauthorizedAccountIdUsageError val: :rtype: NoPermissionError """ - return cls("unauthorized_account_id_usage", val) + return cls('unauthorized_account_id_usage', val) def is_unauthorized_account_id_usage(self): """ @@ -376,7 +367,7 @@ def is_unauthorized_account_id_usage(self): :rtype: bool """ - return self._tag == "unauthorized_account_id_usage" + return self._tag == 'unauthorized_account_id_usage' def is_other(self): """ @@ -384,7 +375,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_unauthorized_account_id_usage(self): """ @@ -400,14 +391,10 @@ def get_unauthorized_account_id_usage(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(NoPermissionError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(NoPermissionError, self)._process_custom_annotations(annotation_type, field_path, processor) NoPermissionError_validator = bv.Union(NoPermissionError) - class PaperAccessError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -420,7 +407,7 @@ class PaperAccessError(bb.Union): The provided user has not used Paper yet. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition paper_disabled = None # Attribute is overwritten below the class definition @@ -434,7 +421,7 @@ def is_paper_disabled(self): :rtype: bool """ - return self._tag == "paper_disabled" + return self._tag == 'paper_disabled' def is_not_paper_user(self): """ @@ -442,7 +429,7 @@ def is_not_paper_user(self): :rtype: bool """ - return self._tag == "not_paper_user" + return self._tag == 'not_paper_user' def is_other(self): """ @@ -450,17 +437,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperAccessError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperAccessError, self)._process_custom_annotations(annotation_type, field_path, processor) PaperAccessError_validator = bv.Union(PaperAccessError) - class RateLimitError(bb.Struct): """ Error occurred because the app is being rate limited. @@ -473,13 +456,15 @@ class RateLimitError(bb.Struct): """ __slots__ = [ - "_reason_value", - "_retry_after_value", + '_reason_value', + '_retry_after_value', ] _has_required_fields = True - def __init__(self, reason=None, retry_after=None): + def __init__(self, + reason=None, + retry_after=None): self._reason_value = bb.NOT_SET self._retry_after_value = bb.NOT_SET if reason is not None: @@ -494,14 +479,10 @@ def __init__(self, reason=None, retry_after=None): retry_after = bb.Attribute("retry_after") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RateLimitError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(RateLimitError, self)._process_custom_annotations(annotation_type, field_path, processor) RateLimitError_validator = bv.Struct(RateLimitError) - class RateLimitReason(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -515,7 +496,7 @@ class RateLimitReason(bb.Union): Dropbox. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition too_many_requests = None # Attribute is overwritten below the class definition @@ -529,7 +510,7 @@ def is_too_many_requests(self): :rtype: bool """ - return self._tag == "too_many_requests" + return self._tag == 'too_many_requests' def is_too_many_write_operations(self): """ @@ -537,7 +518,7 @@ def is_too_many_write_operations(self): :rtype: bool """ - return self._tag == "too_many_write_operations" + return self._tag == 'too_many_write_operations' def is_other(self): """ @@ -545,17 +526,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RateLimitReason, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(RateLimitReason, self)._process_custom_annotations(annotation_type, field_path, processor) RateLimitReason_validator = bv.Union(RateLimitReason) - class TokenFromOAuth1Arg(bb.Struct): """ :ivar TokenFromOAuth1Arg.oauth1_token: @@ -565,13 +542,15 @@ class TokenFromOAuth1Arg(bb.Struct): """ __slots__ = [ - "_oauth1_token_value", - "_oauth1_token_secret_value", + '_oauth1_token_value', + '_oauth1_token_secret_value', ] _has_required_fields = True - def __init__(self, oauth1_token=None, oauth1_token_secret=None): + def __init__(self, + oauth1_token=None, + oauth1_token_secret=None): self._oauth1_token_value = bb.NOT_SET self._oauth1_token_secret_value = bb.NOT_SET if oauth1_token is not None: @@ -586,14 +565,10 @@ def __init__(self, oauth1_token=None, oauth1_token_secret=None): oauth1_token_secret = bb.Attribute("oauth1_token_secret") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TokenFromOAuth1Arg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TokenFromOAuth1Arg, self)._process_custom_annotations(annotation_type, field_path, processor) TokenFromOAuth1Arg_validator = bv.Struct(TokenFromOAuth1Arg) - class TokenFromOAuth1Error(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -607,7 +582,7 @@ class TokenFromOAuth1Error(bb.Union): access token. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition invalid_oauth1_token_info = None # Attribute is overwritten below the class definition @@ -621,7 +596,7 @@ def is_invalid_oauth1_token_info(self): :rtype: bool """ - return self._tag == "invalid_oauth1_token_info" + return self._tag == 'invalid_oauth1_token_info' def is_app_id_mismatch(self): """ @@ -629,7 +604,7 @@ def is_app_id_mismatch(self): :rtype: bool """ - return self._tag == "app_id_mismatch" + return self._tag == 'app_id_mismatch' def is_other(self): """ @@ -637,17 +612,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TokenFromOAuth1Error, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TokenFromOAuth1Error, self)._process_custom_annotations(annotation_type, field_path, processor) TokenFromOAuth1Error_validator = bv.Union(TokenFromOAuth1Error) - class TokenFromOAuth1Result(bb.Struct): """ :ivar TokenFromOAuth1Result.oauth2_token: @@ -655,12 +626,13 @@ class TokenFromOAuth1Result(bb.Struct): """ __slots__ = [ - "_oauth2_token_value", + '_oauth2_token_value', ] _has_required_fields = True - def __init__(self, oauth2_token=None): + def __init__(self, + oauth2_token=None): self._oauth2_token_value = bb.NOT_SET if oauth2_token is not None: self.oauth2_token = oauth2_token @@ -669,14 +641,10 @@ def __init__(self, oauth2_token=None): oauth2_token = bb.Attribute("oauth2_token") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TokenFromOAuth1Result, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TokenFromOAuth1Result, self)._process_custom_annotations(annotation_type, field_path, processor) TokenFromOAuth1Result_validator = bv.Struct(TokenFromOAuth1Result) - class TokenScopeError(bb.Struct): """ :ivar TokenScopeError.required_scope: @@ -684,12 +652,13 @@ class TokenScopeError(bb.Struct): """ __slots__ = [ - "_required_scope_value", + '_required_scope_value', ] _has_required_fields = True - def __init__(self, required_scope=None): + def __init__(self, + required_scope=None): self._required_scope_value = bb.NOT_SET if required_scope is not None: self.required_scope = required_scope @@ -698,14 +667,10 @@ def __init__(self, required_scope=None): required_scope = bb.Attribute("required_scope") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TokenScopeError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TokenScopeError, self)._process_custom_annotations(annotation_type, field_path, processor) TokenScopeError_validator = bv.Struct(TokenScopeError) - class UnauthorizedAccountIdUsageError(bb.Struct): """ :ivar UnauthorizedAccountIdUsageError.unauthorized_account_ids: @@ -713,12 +678,13 @@ class UnauthorizedAccountIdUsageError(bb.Struct): """ __slots__ = [ - "_unauthorized_account_ids_value", + '_unauthorized_account_ids_value', ] _has_required_fields = True - def __init__(self, unauthorized_account_ids=None): + def __init__(self, + unauthorized_account_ids=None): self._unauthorized_account_ids_value = bb.NOT_SET if unauthorized_account_ids is not None: self.unauthorized_account_ids = unauthorized_account_ids @@ -727,10 +693,7 @@ def __init__(self, unauthorized_account_ids=None): unauthorized_account_ids = bb.Attribute("unauthorized_account_ids") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UnauthorizedAccountIdUsageError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UnauthorizedAccountIdUsageError, self)._process_custom_annotations(annotation_type, field_path, processor) UnauthorizedAccountIdUsageError_validator = bv.Struct(UnauthorizedAccountIdUsageError) @@ -740,15 +703,15 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): AccessError._no_permission_validator = NoPermissionError_validator AccessError._other_validator = bv.Void() AccessError._tagmap = { - "invalid_account_type": AccessError._invalid_account_type_validator, - "paper_access_denied": AccessError._paper_access_denied_validator, - "team_access_denied": AccessError._team_access_denied_validator, - "no_permission": AccessError._no_permission_validator, - "other": AccessError._other_validator, + 'invalid_account_type': AccessError._invalid_account_type_validator, + 'paper_access_denied': AccessError._paper_access_denied_validator, + 'team_access_denied': AccessError._team_access_denied_validator, + 'no_permission': AccessError._no_permission_validator, + 'other': AccessError._other_validator, } -AccessError.team_access_denied = AccessError("team_access_denied") -AccessError.other = AccessError("other") +AccessError.team_access_denied = AccessError('team_access_denied') +AccessError.other = AccessError('other') AuthError._invalid_access_token_validator = bv.Void() AuthError._invalid_select_user_validator = bv.Void() @@ -759,153 +722,145 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): AuthError._route_access_denied_validator = bv.Void() AuthError._other_validator = bv.Void() AuthError._tagmap = { - "invalid_access_token": AuthError._invalid_access_token_validator, - "invalid_select_user": AuthError._invalid_select_user_validator, - "invalid_select_admin": AuthError._invalid_select_admin_validator, - "user_suspended": AuthError._user_suspended_validator, - "expired_access_token": AuthError._expired_access_token_validator, - "missing_scope": AuthError._missing_scope_validator, - "route_access_denied": AuthError._route_access_denied_validator, - "other": AuthError._other_validator, + 'invalid_access_token': AuthError._invalid_access_token_validator, + 'invalid_select_user': AuthError._invalid_select_user_validator, + 'invalid_select_admin': AuthError._invalid_select_admin_validator, + 'user_suspended': AuthError._user_suspended_validator, + 'expired_access_token': AuthError._expired_access_token_validator, + 'missing_scope': AuthError._missing_scope_validator, + 'route_access_denied': AuthError._route_access_denied_validator, + 'other': AuthError._other_validator, } -AuthError.invalid_access_token = AuthError("invalid_access_token") -AuthError.invalid_select_user = AuthError("invalid_select_user") -AuthError.invalid_select_admin = AuthError("invalid_select_admin") -AuthError.user_suspended = AuthError("user_suspended") -AuthError.expired_access_token = AuthError("expired_access_token") -AuthError.route_access_denied = AuthError("route_access_denied") -AuthError.other = AuthError("other") +AuthError.invalid_access_token = AuthError('invalid_access_token') +AuthError.invalid_select_user = AuthError('invalid_select_user') +AuthError.invalid_select_admin = AuthError('invalid_select_admin') +AuthError.user_suspended = AuthError('user_suspended') +AuthError.expired_access_token = AuthError('expired_access_token') +AuthError.route_access_denied = AuthError('route_access_denied') +AuthError.other = AuthError('other') InvalidAccountTypeError._endpoint_validator = bv.Void() InvalidAccountTypeError._feature_validator = bv.Void() InvalidAccountTypeError._other_validator = bv.Void() InvalidAccountTypeError._tagmap = { - "endpoint": InvalidAccountTypeError._endpoint_validator, - "feature": InvalidAccountTypeError._feature_validator, - "other": InvalidAccountTypeError._other_validator, + 'endpoint': InvalidAccountTypeError._endpoint_validator, + 'feature': InvalidAccountTypeError._feature_validator, + 'other': InvalidAccountTypeError._other_validator, } -InvalidAccountTypeError.endpoint = InvalidAccountTypeError("endpoint") -InvalidAccountTypeError.feature = InvalidAccountTypeError("feature") -InvalidAccountTypeError.other = InvalidAccountTypeError("other") +InvalidAccountTypeError.endpoint = InvalidAccountTypeError('endpoint') +InvalidAccountTypeError.feature = InvalidAccountTypeError('feature') +InvalidAccountTypeError.other = InvalidAccountTypeError('other') -NoPermissionError._unauthorized_account_id_usage_validator = ( - UnauthorizedAccountIdUsageError_validator -) +NoPermissionError._unauthorized_account_id_usage_validator = UnauthorizedAccountIdUsageError_validator NoPermissionError._other_validator = bv.Void() NoPermissionError._tagmap = { - "unauthorized_account_id_usage": NoPermissionError._unauthorized_account_id_usage_validator, - "other": NoPermissionError._other_validator, + 'unauthorized_account_id_usage': NoPermissionError._unauthorized_account_id_usage_validator, + 'other': NoPermissionError._other_validator, } -NoPermissionError.other = NoPermissionError("other") +NoPermissionError.other = NoPermissionError('other') PaperAccessError._paper_disabled_validator = bv.Void() PaperAccessError._not_paper_user_validator = bv.Void() PaperAccessError._other_validator = bv.Void() PaperAccessError._tagmap = { - "paper_disabled": PaperAccessError._paper_disabled_validator, - "not_paper_user": PaperAccessError._not_paper_user_validator, - "other": PaperAccessError._other_validator, + 'paper_disabled': PaperAccessError._paper_disabled_validator, + 'not_paper_user': PaperAccessError._not_paper_user_validator, + 'other': PaperAccessError._other_validator, } -PaperAccessError.paper_disabled = PaperAccessError("paper_disabled") -PaperAccessError.not_paper_user = PaperAccessError("not_paper_user") -PaperAccessError.other = PaperAccessError("other") +PaperAccessError.paper_disabled = PaperAccessError('paper_disabled') +PaperAccessError.not_paper_user = PaperAccessError('not_paper_user') +PaperAccessError.other = PaperAccessError('other') RateLimitError.reason.validator = RateLimitReason_validator RateLimitError.retry_after.validator = bv.UInt64() -RateLimitError._all_field_names_ = set( - [ - "reason", - "retry_after", - ] -) +RateLimitError._all_field_names_ = set([ + 'reason', + 'retry_after', +]) RateLimitError._all_fields_ = [ - ("reason", RateLimitError.reason.validator), - ("retry_after", RateLimitError.retry_after.validator), + ('reason', RateLimitError.reason.validator), + ('retry_after', RateLimitError.retry_after.validator), ] RateLimitReason._too_many_requests_validator = bv.Void() RateLimitReason._too_many_write_operations_validator = bv.Void() RateLimitReason._other_validator = bv.Void() RateLimitReason._tagmap = { - "too_many_requests": RateLimitReason._too_many_requests_validator, - "too_many_write_operations": RateLimitReason._too_many_write_operations_validator, - "other": RateLimitReason._other_validator, + 'too_many_requests': RateLimitReason._too_many_requests_validator, + 'too_many_write_operations': RateLimitReason._too_many_write_operations_validator, + 'other': RateLimitReason._other_validator, } -RateLimitReason.too_many_requests = RateLimitReason("too_many_requests") -RateLimitReason.too_many_write_operations = RateLimitReason("too_many_write_operations") -RateLimitReason.other = RateLimitReason("other") +RateLimitReason.too_many_requests = RateLimitReason('too_many_requests') +RateLimitReason.too_many_write_operations = RateLimitReason('too_many_write_operations') +RateLimitReason.other = RateLimitReason('other') TokenFromOAuth1Arg.oauth1_token.validator = bv.String(min_length=1) TokenFromOAuth1Arg.oauth1_token_secret.validator = bv.String(min_length=1) -TokenFromOAuth1Arg._all_field_names_ = set( - [ - "oauth1_token", - "oauth1_token_secret", - ] -) +TokenFromOAuth1Arg._all_field_names_ = set([ + 'oauth1_token', + 'oauth1_token_secret', +]) TokenFromOAuth1Arg._all_fields_ = [ - ("oauth1_token", TokenFromOAuth1Arg.oauth1_token.validator), - ("oauth1_token_secret", TokenFromOAuth1Arg.oauth1_token_secret.validator), + ('oauth1_token', TokenFromOAuth1Arg.oauth1_token.validator), + ('oauth1_token_secret', TokenFromOAuth1Arg.oauth1_token_secret.validator), ] TokenFromOAuth1Error._invalid_oauth1_token_info_validator = bv.Void() TokenFromOAuth1Error._app_id_mismatch_validator = bv.Void() TokenFromOAuth1Error._other_validator = bv.Void() TokenFromOAuth1Error._tagmap = { - "invalid_oauth1_token_info": TokenFromOAuth1Error._invalid_oauth1_token_info_validator, - "app_id_mismatch": TokenFromOAuth1Error._app_id_mismatch_validator, - "other": TokenFromOAuth1Error._other_validator, + 'invalid_oauth1_token_info': TokenFromOAuth1Error._invalid_oauth1_token_info_validator, + 'app_id_mismatch': TokenFromOAuth1Error._app_id_mismatch_validator, + 'other': TokenFromOAuth1Error._other_validator, } -TokenFromOAuth1Error.invalid_oauth1_token_info = TokenFromOAuth1Error("invalid_oauth1_token_info") -TokenFromOAuth1Error.app_id_mismatch = TokenFromOAuth1Error("app_id_mismatch") -TokenFromOAuth1Error.other = TokenFromOAuth1Error("other") +TokenFromOAuth1Error.invalid_oauth1_token_info = TokenFromOAuth1Error('invalid_oauth1_token_info') +TokenFromOAuth1Error.app_id_mismatch = TokenFromOAuth1Error('app_id_mismatch') +TokenFromOAuth1Error.other = TokenFromOAuth1Error('other') TokenFromOAuth1Result.oauth2_token.validator = bv.String(min_length=1) -TokenFromOAuth1Result._all_field_names_ = set(["oauth2_token"]) -TokenFromOAuth1Result._all_fields_ = [ - ("oauth2_token", TokenFromOAuth1Result.oauth2_token.validator) -] +TokenFromOAuth1Result._all_field_names_ = set(['oauth2_token']) +TokenFromOAuth1Result._all_fields_ = [('oauth2_token', TokenFromOAuth1Result.oauth2_token.validator)] TokenScopeError.required_scope.validator = bv.String() -TokenScopeError._all_field_names_ = set(["required_scope"]) -TokenScopeError._all_fields_ = [("required_scope", TokenScopeError.required_scope.validator)] +TokenScopeError._all_field_names_ = set(['required_scope']) +TokenScopeError._all_fields_ = [('required_scope', TokenScopeError.required_scope.validator)] UnauthorizedAccountIdUsageError.unauthorized_account_ids.validator = bv.List(bv.String()) -UnauthorizedAccountIdUsageError._all_field_names_ = set(["unauthorized_account_ids"]) -UnauthorizedAccountIdUsageError._all_fields_ = [ - ( - "unauthorized_account_ids", - UnauthorizedAccountIdUsageError.unauthorized_account_ids.validator, - ) -] +UnauthorizedAccountIdUsageError._all_field_names_ = set(['unauthorized_account_ids']) +UnauthorizedAccountIdUsageError._all_fields_ = [('unauthorized_account_ids', UnauthorizedAccountIdUsageError.unauthorized_account_ids.validator)] RateLimitError.retry_after.default = 1 token_from_oauth1 = bb.Route( - "token/from_oauth1", + 'token/from_oauth1', 1, True, TokenFromOAuth1Arg_validator, TokenFromOAuth1Result_validator, TokenFromOAuth1Error_validator, - {"auth": "app", "host": "api", "style": "rpc"}, + {'auth': 'app', + 'host': 'api', + 'style': 'rpc'}, ) token_revoke = bb.Route( - "token/revoke", + 'token/revoke', 1, False, bv.Void(), bv.Void(), bv.Void(), - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) ROUTES = { - "token/from_oauth1": token_from_oauth1, - "token/revoke": token_revoke, + 'token/from_oauth1': token_from_oauth1, + 'token/revoke': token_revoke, } + diff --git a/dropbox/base.py b/dropbox/base.py index 746d95e8..9debac8f 100644 --- a/dropbox/base.py +++ b/dropbox/base.py @@ -55,13 +55,17 @@ def account_delete_profile_photo(self): arg = account.DeleteProfilePhotoArg() r = self.request( account.delete_profile_photo, - "account", + 'account', arg, None, ) return r - def account_get_photo(self, dbx_account_id, size, circle_crop, expect_account_photo): + def account_get_photo(self, + dbx_account_id, + size, + circle_crop, + expect_account_photo): """ This lovely endpoint gets the account photo of a given user. @@ -91,18 +95,24 @@ def account_get_photo(self, dbx_account_id, size, circle_crop, expect_account_ph `_ context manager to ensure this. """ - arg = account.AccountPhotoGetArg(dbx_account_id, size, circle_crop, expect_account_photo) + arg = account.AccountPhotoGetArg(dbx_account_id, + size, + circle_crop, + expect_account_photo) r = self.request( account.get_photo, - "account", + 'account', arg, None, ) return r - def account_get_photo_to_file( - self, download_path, dbx_account_id, size, circle_crop, expect_account_photo - ): + def account_get_photo_to_file(self, + download_path, + dbx_account_id, + size, + circle_crop, + expect_account_photo): """ This lovely endpoint gets the account photo of a given user. @@ -126,17 +136,21 @@ def account_get_photo_to_file( If this raises, ApiError will contain: :class:`dropbox.account.AccountPhotoGetError` """ - arg = account.AccountPhotoGetArg(dbx_account_id, size, circle_crop, expect_account_photo) + arg = account.AccountPhotoGetArg(dbx_account_id, + size, + circle_crop, + expect_account_photo) r = self.request( account.get_photo, - "account", + 'account', arg, None, ) self._save_body_to_file(download_path, r[1]) return r[0] - def account_set_profile_photo(self, photo): + def account_set_profile_photo(self, + photo): """ Sets a user's profile photo. @@ -154,7 +168,7 @@ def account_set_profile_photo(self, photo): arg = account.SetProfilePhotoArg(photo) r = self.request( account.set_profile_photo, - "account", + 'account', arg, None, ) @@ -163,7 +177,9 @@ def account_set_profile_photo(self, photo): # ------------------------------------------ # Routes in auth namespace - def auth_token_from_oauth1(self, oauth1_token, oauth1_token_secret): + def auth_token_from_oauth1(self, + oauth1_token, + oauth1_token_secret): """ Creates an OAuth 2.0 access token from the supplied OAuth 1.0 access token. @@ -180,13 +196,14 @@ def auth_token_from_oauth1(self, oauth1_token, oauth1_token_secret): :class:`dropbox.auth.TokenFromOAuth1Error` """ warnings.warn( - "token/from_oauth1 is deprecated.", + 'token/from_oauth1 is deprecated.', DeprecationWarning, ) - arg = auth.TokenFromOAuth1Arg(oauth1_token, oauth1_token_secret) + arg = auth.TokenFromOAuth1Arg(oauth1_token, + oauth1_token_secret) r = self.request( auth.token_from_oauth1, - "auth", + 'auth', arg, None, ) @@ -204,7 +221,7 @@ def auth_token_revoke(self): arg = None r = self.request( auth.token_revoke, - "auth", + 'auth', arg, None, ) @@ -213,7 +230,8 @@ def auth_token_revoke(self): # ------------------------------------------ # Routes in check namespace - def check_app(self, query=""): + def check_app(self, + query=''): """ This endpoint performs App Authentication, validating the supplied app key and secret, and returns the supplied string, to allow you to test @@ -233,13 +251,14 @@ def check_app(self, query=""): arg = check.EchoArg(query) r = self.request( check.app, - "check", + 'check', arg, None, ) return r - def check_user(self, query=""): + def check_user(self, + query=''): """ This endpoint performs User Authentication, validating the supplied access token, and returns the supplied string, to allow you to test your @@ -262,7 +281,7 @@ def check_user(self, query=""): arg = check.EchoArg(query) r = self.request( check.user, - "check", + 'check', arg, None, ) @@ -285,13 +304,14 @@ def contacts_delete_manual_contacts(self): arg = None r = self.request( contacts.delete_manual_contacts, - "contacts", + 'contacts', arg, None, ) return None - def contacts_delete_manual_contacts_batch(self, email_addresses): + def contacts_delete_manual_contacts_batch(self, + email_addresses): """ Removes manually added contacts from the given list. @@ -309,7 +329,7 @@ def contacts_delete_manual_contacts_batch(self, email_addresses): arg = contacts.DeleteManualContactsArg(email_addresses) r = self.request( contacts.delete_manual_contacts_batch, - "contacts", + 'contacts', arg, None, ) @@ -318,7 +338,9 @@ def contacts_delete_manual_contacts_batch(self, email_addresses): # ------------------------------------------ # Routes in file_properties namespace - def file_properties_properties_add(self, path, property_groups): + def file_properties_properties_add(self, + path, + property_groups): """ Add property groups to a Dropbox file. See :meth:`file_properties_templates_add_for_user` or @@ -339,16 +361,19 @@ def file_properties_properties_add(self, path, property_groups): If this raises, ApiError will contain: :class:`dropbox.file_properties.AddPropertiesError` """ - arg = file_properties.AddPropertiesArg(path, property_groups) + arg = file_properties.AddPropertiesArg(path, + property_groups) r = self.request( file_properties.properties_add, - "file_properties", + 'file_properties', arg, None, ) return None - def file_properties_properties_overwrite(self, path, property_groups): + def file_properties_properties_overwrite(self, + path, + property_groups): """ Overwrite property groups associated with a file. This endpoint should be used instead of :meth:`file_properties_properties_update` when @@ -371,16 +396,19 @@ def file_properties_properties_overwrite(self, path, property_groups): If this raises, ApiError will contain: :class:`dropbox.file_properties.InvalidPropertyGroupError` """ - arg = file_properties.OverwritePropertyGroupArg(path, property_groups) + arg = file_properties.OverwritePropertyGroupArg(path, + property_groups) r = self.request( file_properties.properties_overwrite, - "file_properties", + 'file_properties', arg, None, ) return None - def file_properties_properties_remove(self, path, property_template_ids): + def file_properties_properties_remove(self, + path, + property_template_ids): """ Permanently removes the specified property group from the file. To remove specific property field key value pairs, see @@ -405,18 +433,19 @@ def file_properties_properties_remove(self, path, property_template_ids): If this raises, ApiError will contain: :class:`dropbox.file_properties.RemovePropertiesError` """ - arg = file_properties.RemovePropertiesArg(path, property_template_ids) + arg = file_properties.RemovePropertiesArg(path, + property_template_ids) r = self.request( file_properties.properties_remove, - "file_properties", + 'file_properties', arg, None, ) return None - def file_properties_properties_search( - self, queries, template_filter=file_properties.TemplateFilter.filter_none - ): + def file_properties_properties_search(self, + queries, + template_filter=file_properties.TemplateFilter.filter_none): """ Search across property templates for particular property field values. @@ -434,16 +463,18 @@ def file_properties_properties_search( If this raises, ApiError will contain: :class:`dropbox.file_properties.PropertiesSearchError` """ - arg = file_properties.PropertiesSearchArg(queries, template_filter) + arg = file_properties.PropertiesSearchArg(queries, + template_filter) r = self.request( file_properties.properties_search, - "file_properties", + 'file_properties', arg, None, ) return r - def file_properties_properties_search_continue(self, cursor): + def file_properties_properties_search_continue(self, + cursor): """ Once a cursor has been retrieved from :meth:`file_properties_properties_search`, use this to paginate through @@ -465,13 +496,15 @@ def file_properties_properties_search_continue(self, cursor): arg = file_properties.PropertiesSearchContinueArg(cursor) r = self.request( file_properties.properties_search_continue, - "file_properties", + 'file_properties', arg, None, ) return r - def file_properties_properties_update(self, path, update_property_groups): + def file_properties_properties_update(self, + path, + update_property_groups): """ Add, update or remove properties associated with the supplied file and templates. This endpoint should be used instead of @@ -495,16 +528,20 @@ def file_properties_properties_update(self, path, update_property_groups): If this raises, ApiError will contain: :class:`dropbox.file_properties.UpdatePropertiesError` """ - arg = file_properties.UpdatePropertiesArg(path, update_property_groups) + arg = file_properties.UpdatePropertiesArg(path, + update_property_groups) r = self.request( file_properties.properties_update, - "file_properties", + 'file_properties', arg, None, ) return None - def file_properties_templates_add_for_user(self, name, description, fields): + def file_properties_templates_add_for_user(self, + name, + description, + fields): """ Add a template associated with a user. See :meth:`file_properties_properties_add` to add properties to a file. This @@ -519,16 +556,19 @@ def file_properties_templates_add_for_user(self, name, description, fields): If this raises, ApiError will contain: :class:`dropbox.file_properties.ModifyTemplateError` """ - arg = file_properties.AddTemplateArg(name, description, fields) + arg = file_properties.AddTemplateArg(name, + description, + fields) r = self.request( file_properties.templates_add_for_user, - "file_properties", + 'file_properties', arg, None, ) return r - def file_properties_templates_get_for_user(self, template_id): + def file_properties_templates_get_for_user(self, + template_id): """ Get the schema for a specified template. This endpoint can't be called on a team member or admin's behalf. @@ -549,7 +589,7 @@ def file_properties_templates_get_for_user(self, template_id): arg = file_properties.GetTemplateArg(template_id) r = self.request( file_properties.templates_get_for_user, - "file_properties", + 'file_properties', arg, None, ) @@ -573,13 +613,14 @@ def file_properties_templates_list_for_user(self): arg = None r = self.request( file_properties.templates_list_for_user, - "file_properties", + 'file_properties', arg, None, ) return r - def file_properties_templates_remove_for_user(self, template_id): + def file_properties_templates_remove_for_user(self, + template_id): """ Permanently removes the specified template created from :meth:`file_properties_templates_add_for_user`. All properties @@ -602,15 +643,17 @@ def file_properties_templates_remove_for_user(self, template_id): arg = file_properties.RemoveTemplateArg(template_id) r = self.request( file_properties.templates_remove_for_user, - "file_properties", + 'file_properties', arg, None, ) return None - def file_properties_templates_update_for_user( - self, template_id, name=None, description=None, add_fields=None - ): + def file_properties_templates_update_for_user(self, + template_id, + name=None, + description=None, + add_fields=None): """ Update a template associated with a user. This route can update the template name, the template description and add optional properties to @@ -639,10 +682,13 @@ def file_properties_templates_update_for_user( If this raises, ApiError will contain: :class:`dropbox.file_properties.ModifyTemplateError` """ - arg = file_properties.UpdateTemplateArg(template_id, name, description, add_fields) + arg = file_properties.UpdateTemplateArg(template_id, + name, + description, + add_fields) r = self.request( file_properties.templates_update_for_user, - "file_properties", + 'file_properties', arg, None, ) @@ -664,21 +710,19 @@ def file_requests_count(self): arg = None r = self.request( file_requests.count, - "file_requests", + 'file_requests', arg, None, ) return r - def file_requests_create( - self, - title, - destination, - deadline=None, - open=True, - description=None, - video_project_id=None, - ): + def file_requests_create(self, + title, + destination, + deadline=None, + open=True, + description=None, + video_project_id=None): """ Creates a file request for this user. @@ -709,18 +753,22 @@ def file_requests_create( If this raises, ApiError will contain: :class:`dropbox.file_requests.CreateFileRequestError` """ - arg = file_requests.CreateFileRequestArgs( - title, destination, deadline, open, description, video_project_id - ) + arg = file_requests.CreateFileRequestArgs(title, + destination, + deadline, + open, + description, + video_project_id) r = self.request( file_requests.create, - "file_requests", + 'file_requests', arg, None, ) return r - def file_requests_delete(self, ids): + def file_requests_delete(self, + ids): """ Delete a batch of closed file requests. @@ -738,7 +786,7 @@ def file_requests_delete(self, ids): arg = file_requests.DeleteFileRequestArgs(ids) r = self.request( file_requests.delete, - "file_requests", + 'file_requests', arg, None, ) @@ -756,13 +804,14 @@ def file_requests_delete_all_closed(self): arg = None r = self.request( file_requests.delete_all_closed, - "file_requests", + 'file_requests', arg, None, ) return r - def file_requests_get(self, id): + def file_requests_get(self, + id): """ Returns the specified file request. @@ -776,7 +825,7 @@ def file_requests_get(self, id): arg = file_requests.GetFileRequestArgs(id) r = self.request( file_requests.get, - "file_requests", + 'file_requests', arg, None, ) @@ -796,13 +845,14 @@ def file_requests_list(self): arg = None r = self.request( file_requests.list, - "file_requests", + 'file_requests', arg, None, ) return r - def file_requests_list_v2(self, limit=1000): + def file_requests_list_v2(self, + limit=1000): """ Returns a list of file requests owned by this user. For apps with the app folder permission, this will only return file requests with @@ -819,13 +869,14 @@ def file_requests_list_v2(self, limit=1000): arg = file_requests.ListFileRequestsArg(limit) r = self.request( file_requests.list_v2, - "file_requests", + 'file_requests', arg, None, ) return r - def file_requests_list_continue(self, cursor): + def file_requests_list_continue(self, + cursor): """ Once a cursor has been retrieved from :meth:`file_requests_list_v2`, use this to paginate through all file requests. The cursor must come from a @@ -847,21 +898,19 @@ def file_requests_list_continue(self, cursor): arg = file_requests.ListFileRequestsContinueArg(cursor) r = self.request( file_requests.list_continue, - "file_requests", + 'file_requests', arg, None, ) return r - def file_requests_update( - self, - id, - title=None, - destination=None, - deadline=file_requests.UpdateFileRequestDeadline.no_update, - open=None, - description=None, - ): + def file_requests_update(self, + id, + title=None, + destination=None, + deadline=file_requests.UpdateFileRequestDeadline.no_update, + open=None, + description=None): """ Update a file request. @@ -885,12 +934,15 @@ def file_requests_update( :type description: Nullable[str] :rtype: :class:`dropbox.file_requests.FileRequest` """ - arg = file_requests.UpdateFileRequestArgs( - id, title, destination, deadline, open, description - ) + arg = file_requests.UpdateFileRequestArgs(id, + title, + destination, + deadline, + open, + description) r = self.request( file_requests.update, - "file_requests", + 'file_requests', arg, None, ) @@ -899,15 +951,13 @@ def file_requests_update( # ------------------------------------------ # Routes in files namespace - def files_alpha_get_metadata( - self, - path, - include_media_info=False, - include_deleted=False, - include_has_explicit_shared_members=False, - include_property_groups=None, - include_property_templates=None, - ): + def files_alpha_get_metadata(self, + path, + include_media_info=False, + include_deleted=False, + include_has_explicit_shared_members=False, + include_property_groups=None, + include_property_templates=None): """ Returns the metadata for a file or folder. This is an alpha endpoint compatible with the properties API. Note: Metadata for the root folder @@ -927,37 +977,33 @@ def files_alpha_get_metadata( :class:`dropbox.files.AlphaGetMetadataError` """ warnings.warn( - "alpha/get_metadata is deprecated.", + 'alpha/get_metadata is deprecated.', DeprecationWarning, ) - arg = files.AlphaGetMetadataArg( - path, - include_media_info, - include_deleted, - include_has_explicit_shared_members, - include_property_groups, - include_property_templates, - ) + arg = files.AlphaGetMetadataArg(path, + include_media_info, + include_deleted, + include_has_explicit_shared_members, + include_property_groups, + include_property_templates) r = self.request( files.alpha_get_metadata, - "files", + 'files', arg, None, ) return r - def files_alpha_upload( - self, - f, - path, - mode=files.WriteMode.add, - autorename=False, - client_modified=None, - mute=False, - property_groups=None, - strict_conflict=False, - content_hash=None, - ): + def files_alpha_upload(self, + f, + path, + mode=files.WriteMode.add, + autorename=False, + client_modified=None, + mute=False, + property_groups=None, + strict_conflict=False, + content_hash=None): """ Create a new file with the contents provided in the request. Note that the behavior of this alpha endpoint is unstable and subject to change. @@ -980,35 +1026,31 @@ def files_alpha_upload( :class:`dropbox.files.UploadError` """ warnings.warn( - "alpha/upload is deprecated.", + 'alpha/upload is deprecated.', DeprecationWarning, ) - arg = files.UploadArg( - path, - mode, - autorename, - client_modified, - mute, - property_groups, - strict_conflict, - content_hash, - ) + arg = files.UploadArg(path, + mode, + autorename, + client_modified, + mute, + property_groups, + strict_conflict, + content_hash) r = self.request( files.alpha_upload, - "files", + 'files', arg, f, ) return r - def files_copy( - self, - from_path, - to_path, - allow_shared_folder=False, - autorename=False, - allow_ownership_transfer=False, - ): + def files_copy(self, + from_path, + to_path, + allow_shared_folder=False, + autorename=False, + allow_ownership_transfer=False): """ Copy a file or folder to a different location in the user's Dropbox. If the source path is a folder all its contents will be copied. @@ -1033,32 +1075,28 @@ def files_copy( :class:`dropbox.files.RelocationError` """ warnings.warn( - "copy is deprecated.", + 'copy is deprecated.', DeprecationWarning, ) - arg = files.RelocationArg( - from_path, - to_path, - allow_shared_folder, - autorename, - allow_ownership_transfer, - ) + arg = files.RelocationArg(from_path, + to_path, + allow_shared_folder, + autorename, + allow_ownership_transfer) r = self.request( files.copy, - "files", + 'files', arg, None, ) return r - def files_copy_v2( - self, - from_path, - to_path, - allow_shared_folder=False, - autorename=False, - allow_ownership_transfer=False, - ): + def files_copy_v2(self, + from_path, + to_path, + allow_shared_folder=False, + autorename=False, + allow_ownership_transfer=False): """ Copy a file or folder to a different location in the user's Dropbox. If the source path is a folder all its contents will be copied. @@ -1082,28 +1120,24 @@ def files_copy_v2( If this raises, ApiError will contain: :class:`dropbox.files.RelocationError` """ - arg = files.RelocationArg( - from_path, - to_path, - allow_shared_folder, - autorename, - allow_ownership_transfer, - ) + arg = files.RelocationArg(from_path, + to_path, + allow_shared_folder, + autorename, + allow_ownership_transfer) r = self.request( files.copy_v2, - "files", + 'files', arg, None, ) return r - def files_copy_batch( - self, - entries, - autorename=False, - allow_shared_folder=False, - allow_ownership_transfer=False, - ): + def files_copy_batch(self, + entries, + autorename=False, + allow_shared_folder=False, + allow_ownership_transfer=False): """ Copy multiple files or folders to different locations at once in the user's Dropbox. This route will return job ID immediately and do the @@ -1123,21 +1157,24 @@ def files_copy_batch( :rtype: :class:`dropbox.files.RelocationBatchLaunch` """ warnings.warn( - "copy_batch is deprecated.", + 'copy_batch is deprecated.', DeprecationWarning, ) - arg = files.RelocationBatchArg( - entries, autorename, allow_shared_folder, allow_ownership_transfer - ) + arg = files.RelocationBatchArg(entries, + autorename, + allow_shared_folder, + allow_ownership_transfer) r = self.request( files.copy_batch, - "files", + 'files', arg, None, ) return r - def files_copy_batch_v2(self, entries, autorename=False): + def files_copy_batch_v2(self, + entries, + autorename=False): """ Copy multiple files or folders to different locations at once in the user's Dropbox. This route will replace :meth:`files_copy_batch`. The @@ -1158,16 +1195,18 @@ def files_copy_batch_v2(self, entries, autorename=False): :type autorename: bool :rtype: :class:`dropbox.files.RelocationBatchV2Launch` """ - arg = files.RelocationBatchArgBase(entries, autorename) + arg = files.RelocationBatchArgBase(entries, + autorename) r = self.request( files.copy_batch_v2, - "files", + 'files', arg, None, ) return r - def files_copy_batch_check(self, async_job_id): + def files_copy_batch_check(self, + async_job_id): """ Returns the status of an asynchronous job for :meth:`files_copy_batch`. If success, it returns list of results for each entry. @@ -1185,19 +1224,20 @@ def files_copy_batch_check(self, async_job_id): :class:`dropbox.async_.PollError` """ warnings.warn( - "copy_batch/check is deprecated.", + 'copy_batch/check is deprecated.', DeprecationWarning, ) arg = async_.PollArg(async_job_id) r = self.request( files.copy_batch_check, - "files", + 'files', arg, None, ) return r - def files_copy_batch_check_v2(self, async_job_id): + def files_copy_batch_check_v2(self, + async_job_id): """ Returns the status of an asynchronous job for :meth:`files_copy_batch_v2`. It returns list of results for each entry. @@ -1217,13 +1257,14 @@ def files_copy_batch_check_v2(self, async_job_id): arg = async_.PollArg(async_job_id) r = self.request( files.copy_batch_check_v2, - "files", + 'files', arg, None, ) return r - def files_copy_reference_get(self, path): + def files_copy_reference_get(self, + path): """ Get a copy reference to a file or folder. This reference string can be used to save that file or folder to another user's Dropbox by passing it @@ -1244,13 +1285,15 @@ def files_copy_reference_get(self, path): arg = files.GetCopyReferenceArg(path) r = self.request( files.copy_reference_get, - "files", + 'files', arg, None, ) return r - def files_copy_reference_save(self, copy_reference, path): + def files_copy_reference_save(self, + copy_reference, + path): """ Save a copy reference returned by :meth:`files_copy_reference_get` to the user's Dropbox. @@ -1269,16 +1312,19 @@ def files_copy_reference_save(self, copy_reference, path): If this raises, ApiError will contain: :class:`dropbox.files.SaveCopyReferenceError` """ - arg = files.SaveCopyReferenceArg(copy_reference, path) + arg = files.SaveCopyReferenceArg(copy_reference, + path) r = self.request( files.copy_reference_save, - "files", + 'files', arg, None, ) return r - def files_create_folder(self, path, autorename=False): + def files_create_folder(self, + path, + autorename=False): """ Create a folder at a given path. @@ -1297,19 +1343,22 @@ def files_create_folder(self, path, autorename=False): :class:`dropbox.files.CreateFolderError` """ warnings.warn( - "create_folder is deprecated.", + 'create_folder is deprecated.', DeprecationWarning, ) - arg = files.CreateFolderArg(path, autorename) + arg = files.CreateFolderArg(path, + autorename) r = self.request( files.create_folder, - "files", + 'files', arg, None, ) return r - def files_create_folder_v2(self, path, autorename=False): + def files_create_folder_v2(self, + path, + autorename=False): """ Create a folder at a given path. @@ -1327,16 +1376,20 @@ def files_create_folder_v2(self, path, autorename=False): If this raises, ApiError will contain: :class:`dropbox.files.CreateFolderError` """ - arg = files.CreateFolderArg(path, autorename) + arg = files.CreateFolderArg(path, + autorename) r = self.request( files.create_folder_v2, - "files", + 'files', arg, None, ) return r - def files_create_folder_batch(self, paths, autorename=False, force_async=False): + def files_create_folder_batch(self, + paths, + autorename=False, + force_async=False): """ Create multiple folders at once. This route is asynchronous for large batches, which returns a job ID immediately and runs the create folder @@ -1359,16 +1412,19 @@ def files_create_folder_batch(self, paths, autorename=False, force_async=False): :type force_async: bool :rtype: :class:`dropbox.files.CreateFolderBatchLaunch` """ - arg = files.CreateFolderBatchArg(paths, autorename, force_async) + arg = files.CreateFolderBatchArg(paths, + autorename, + force_async) r = self.request( files.create_folder_batch, - "files", + 'files', arg, None, ) return r - def files_create_folder_batch_check(self, async_job_id): + def files_create_folder_batch_check(self, + async_job_id): """ Returns the status of an asynchronous job for :meth:`files_create_folder_batch`. If success, it returns list of result @@ -1389,13 +1445,15 @@ def files_create_folder_batch_check(self, async_job_id): arg = async_.PollArg(async_job_id) r = self.request( files.create_folder_batch_check, - "files", + 'files', arg, None, ) return r - def files_delete(self, path, parent_rev=None): + def files_delete(self, + path, + parent_rev=None): """ Delete the file or folder at a given path. If the path is a folder, all its contents will be deleted too. A successful response indicates that @@ -1418,19 +1476,22 @@ def files_delete(self, path, parent_rev=None): :class:`dropbox.files.DeleteError` """ warnings.warn( - "delete is deprecated.", + 'delete is deprecated.', DeprecationWarning, ) - arg = files.DeleteArg(path, parent_rev) + arg = files.DeleteArg(path, + parent_rev) r = self.request( files.delete, - "files", + 'files', arg, None, ) return r - def files_delete_v2(self, path, parent_rev=None): + def files_delete_v2(self, + path, + parent_rev=None): """ Delete the file or folder at a given path. If the path is a folder, all its contents will be deleted too. A successful response indicates that @@ -1452,16 +1513,18 @@ def files_delete_v2(self, path, parent_rev=None): If this raises, ApiError will contain: :class:`dropbox.files.DeleteError` """ - arg = files.DeleteArg(path, parent_rev) + arg = files.DeleteArg(path, + parent_rev) r = self.request( files.delete_v2, - "files", + 'files', arg, None, ) return r - def files_delete_batch(self, entries): + def files_delete_batch(self, + entries): """ Delete multiple files/folders at once. This route is asynchronous, which returns a job ID immediately and runs the delete batch asynchronously. @@ -1476,13 +1539,14 @@ def files_delete_batch(self, entries): arg = files.DeleteBatchArg(entries) r = self.request( files.delete_batch, - "files", + 'files', arg, None, ) return r - def files_delete_batch_check(self, async_job_id): + def files_delete_batch_check(self, + async_job_id): """ Returns the status of an asynchronous job for :meth:`files_delete_batch`. If success, it returns list of result for @@ -1503,13 +1567,15 @@ def files_delete_batch_check(self, async_job_id): arg = async_.PollArg(async_job_id) r = self.request( files.delete_batch_check, - "files", + 'files', arg, None, ) return r - def files_download(self, path, rev=None): + def files_download(self, + path, + rev=None): """ Download a file from a user's Dropbox. @@ -1534,16 +1600,20 @@ def files_download(self, path, rev=None): `_ context manager to ensure this. """ - arg = files.DownloadArg(path, rev) + arg = files.DownloadArg(path, + rev) r = self.request( files.download, - "files", + 'files', arg, None, ) return r - def files_download_to_file(self, download_path, path, rev=None): + def files_download_to_file(self, + download_path, + path, + rev=None): """ Download a file from a user's Dropbox. @@ -1562,17 +1632,19 @@ def files_download_to_file(self, download_path, path, rev=None): If this raises, ApiError will contain: :class:`dropbox.files.DownloadError` """ - arg = files.DownloadArg(path, rev) + arg = files.DownloadArg(path, + rev) r = self.request( files.download, - "files", + 'files', arg, None, ) self._save_body_to_file(download_path, r[1]) return r[0] - def files_download_zip(self, path): + def files_download_zip(self, + path): """ Download a folder from the user's Dropbox, as a zip file. The folder must be less than 20 GB in size and any single file within must be less @@ -1602,13 +1674,15 @@ def files_download_zip(self, path): arg = files.DownloadZipArg(path) r = self.request( files.download_zip, - "files", + 'files', arg, None, ) return r - def files_download_zip_to_file(self, download_path, path): + def files_download_zip_to_file(self, + download_path, + path): """ Download a folder from the user's Dropbox, as a zip file. The folder must be less than 20 GB in size and any single file within must be less @@ -1632,14 +1706,16 @@ def files_download_zip_to_file(self, download_path, path): arg = files.DownloadZipArg(path) r = self.request( files.download_zip, - "files", + 'files', arg, None, ) self._save_body_to_file(download_path, r[1]) return r[0] - def files_export(self, path, export_format=None): + def files_export(self, + path, + export_format=None): """ Export a file from a user's Dropbox. This route only supports exporting files that cannot be downloaded directly and whose @@ -1669,16 +1745,20 @@ def files_export(self, path, export_format=None): `_ context manager to ensure this. """ - arg = files.ExportArg(path, export_format) + arg = files.ExportArg(path, + export_format) r = self.request( files.export, - "files", + 'files', arg, None, ) return r - def files_export_to_file(self, download_path, path, export_format=None): + def files_export_to_file(self, + download_path, + path, + export_format=None): """ Export a file from a user's Dropbox. This route only supports exporting files that cannot be downloaded directly and whose @@ -1702,17 +1782,19 @@ def files_export_to_file(self, download_path, path, export_format=None): If this raises, ApiError will contain: :class:`dropbox.files.ExportError` """ - arg = files.ExportArg(path, export_format) + arg = files.ExportArg(path, + export_format) r = self.request( files.export, - "files", + 'files', arg, None, ) self._save_body_to_file(download_path, r[1]) return r[0] - def files_get_file_lock_batch(self, entries): + def files_get_file_lock_batch(self, + entries): """ Return the lock metadata for the given list of paths. @@ -1732,20 +1814,18 @@ def files_get_file_lock_batch(self, entries): arg = files.LockFileBatchArg(entries) r = self.request( files.get_file_lock_batch, - "files", + 'files', arg, None, ) return r - def files_get_metadata( - self, - path, - include_media_info=False, - include_deleted=False, - include_has_explicit_shared_members=False, - include_property_groups=None, - ): + def files_get_metadata(self, + path, + include_media_info=False, + include_deleted=False, + include_has_explicit_shared_members=False, + include_property_groups=None): """ Returns the metadata for a file or folder. Note: Metadata for the root folder is unsupported. @@ -1776,22 +1856,22 @@ def files_get_metadata( If this raises, ApiError will contain: :class:`dropbox.files.GetMetadataError` """ - arg = files.GetMetadataArg( - path, - include_media_info, - include_deleted, - include_has_explicit_shared_members, - include_property_groups, - ) + arg = files.GetMetadataArg(path, + include_media_info, + include_deleted, + include_has_explicit_shared_members, + include_property_groups) r = self.request( files.get_metadata, - "files", + 'files', arg, None, ) return r - def files_get_preview(self, path, rev=None): + def files_get_preview(self, + path, + rev=None): """ Get a preview for a file. Currently, PDF previews are generated for files with the following extensions: .ai, .doc, .docm, .docx, .eps, @@ -1820,16 +1900,20 @@ def files_get_preview(self, path, rev=None): `_ context manager to ensure this. """ - arg = files.PreviewArg(path, rev) + arg = files.PreviewArg(path, + rev) r = self.request( files.get_preview, - "files", + 'files', arg, None, ) return r - def files_get_preview_to_file(self, download_path, path, rev=None): + def files_get_preview_to_file(self, + download_path, + path, + rev=None): """ Get a preview for a file. Currently, PDF previews are generated for files with the following extensions: .ai, .doc, .docm, .docx, .eps, @@ -1852,17 +1936,19 @@ def files_get_preview_to_file(self, download_path, path, rev=None): If this raises, ApiError will contain: :class:`dropbox.files.PreviewError` """ - arg = files.PreviewArg(path, rev) + arg = files.PreviewArg(path, + rev) r = self.request( files.get_preview, - "files", + 'files', arg, None, ) self._save_body_to_file(download_path, r[1]) return r[0] - def files_get_temporary_link(self, path): + def files_get_temporary_link(self, + path): """ Get a temporary link to stream content of a file. This link will expire in four hours and afterwards you will get 410 Gone. This URL should not @@ -1883,13 +1969,15 @@ def files_get_temporary_link(self, path): arg = files.GetTemporaryLinkArg(path) r = self.request( files.get_temporary_link, - "files", + 'files', arg, None, ) return r - def files_get_temporary_upload_link(self, commit_info, duration=14400.0): + def files_get_temporary_upload_link(self, + commit_info, + duration=14400.0): """ Get a one-time use temporary upload link to upload a file to a Dropbox location. This endpoint acts as a delayed upload(). The returned @@ -1934,24 +2022,23 @@ def files_get_temporary_upload_link(self, commit_info, duration=14400.0): :type duration: float :rtype: :class:`dropbox.files.GetTemporaryUploadLinkResult` """ - arg = files.GetTemporaryUploadLinkArg(commit_info, duration) + arg = files.GetTemporaryUploadLinkArg(commit_info, + duration) r = self.request( files.get_temporary_upload_link, - "files", + 'files', arg, None, ) return r - def files_get_thumbnail( - self, - path, - format=files.ThumbnailFormat.jpeg, - size=files.ThumbnailSize.w64h64, - mode=files.ThumbnailMode.strict, - quality=files.ThumbnailQuality.quality_80, - exclude_media_info=None, - ): + def files_get_thumbnail(self, + path, + format=files.ThumbnailFormat.jpeg, + size=files.ThumbnailSize.w64h64, + mode=files.ThumbnailMode.strict, + quality=files.ThumbnailQuality.quality_80, + exclude_media_info=None): """ Get a thumbnail for an image. This method currently supports files with the following file extensions: jpg, jpeg, png, tiff, tif, gif, webp, ppm @@ -1994,25 +2081,28 @@ def files_get_thumbnail( `_ context manager to ensure this. """ - arg = files.ThumbnailArg(path, format, size, mode, quality, exclude_media_info) + arg = files.ThumbnailArg(path, + format, + size, + mode, + quality, + exclude_media_info) r = self.request( files.get_thumbnail, - "files", + 'files', arg, None, ) return r - def files_get_thumbnail_to_file( - self, - download_path, - path, - format=files.ThumbnailFormat.jpeg, - size=files.ThumbnailSize.w64h64, - mode=files.ThumbnailMode.strict, - quality=files.ThumbnailQuality.quality_80, - exclude_media_info=None, - ): + def files_get_thumbnail_to_file(self, + download_path, + path, + format=files.ThumbnailFormat.jpeg, + size=files.ThumbnailSize.w64h64, + mode=files.ThumbnailMode.strict, + quality=files.ThumbnailQuality.quality_80, + exclude_media_info=None): """ Get a thumbnail for an image. This method currently supports files with the following file extensions: jpg, jpeg, png, tiff, tif, gif, webp, ppm @@ -2049,25 +2139,28 @@ def files_get_thumbnail_to_file( If this raises, ApiError will contain: :class:`dropbox.files.ThumbnailError` """ - arg = files.ThumbnailArg(path, format, size, mode, quality, exclude_media_info) + arg = files.ThumbnailArg(path, + format, + size, + mode, + quality, + exclude_media_info) r = self.request( files.get_thumbnail, - "files", + 'files', arg, None, ) self._save_body_to_file(download_path, r[1]) return r[0] - def files_get_thumbnail_v2( - self, - resource, - format=files.ThumbnailFormat.jpeg, - size=files.ThumbnailSize.w64h64, - mode=files.ThumbnailMode.strict, - quality=files.ThumbnailQuality.quality_80, - exclude_media_info=None, - ): + def files_get_thumbnail_v2(self, + resource, + format=files.ThumbnailFormat.jpeg, + size=files.ThumbnailSize.w64h64, + mode=files.ThumbnailMode.strict, + quality=files.ThumbnailQuality.quality_80, + exclude_media_info=None): """ Get a thumbnail for an image. This method currently supports files with the following file extensions: jpg, jpeg, png, tiff, tif, gif, webp, ppm @@ -2112,25 +2205,28 @@ def files_get_thumbnail_v2( `_ context manager to ensure this. """ - arg = files.ThumbnailV2Arg(resource, format, size, mode, quality, exclude_media_info) + arg = files.ThumbnailV2Arg(resource, + format, + size, + mode, + quality, + exclude_media_info) r = self.request( files.get_thumbnail_v2, - "files", + 'files', arg, None, ) return r - def files_get_thumbnail_to_file_v2( - self, - download_path, - resource, - format=files.ThumbnailFormat.jpeg, - size=files.ThumbnailSize.w64h64, - mode=files.ThumbnailMode.strict, - quality=files.ThumbnailQuality.quality_80, - exclude_media_info=None, - ): + def files_get_thumbnail_to_file_v2(self, + download_path, + resource, + format=files.ThumbnailFormat.jpeg, + size=files.ThumbnailSize.w64h64, + mode=files.ThumbnailMode.strict, + quality=files.ThumbnailQuality.quality_80, + exclude_media_info=None): """ Get a thumbnail for an image. This method currently supports files with the following file extensions: jpg, jpeg, png, tiff, tif, gif, webp, ppm @@ -2169,17 +2265,23 @@ def files_get_thumbnail_to_file_v2( If this raises, ApiError will contain: :class:`dropbox.files.ThumbnailV2Error` """ - arg = files.ThumbnailV2Arg(resource, format, size, mode, quality, exclude_media_info) + arg = files.ThumbnailV2Arg(resource, + format, + size, + mode, + quality, + exclude_media_info) r = self.request( files.get_thumbnail_v2, - "files", + 'files', arg, None, ) self._save_body_to_file(download_path, r[1]) return r[0] - def files_get_thumbnail_batch(self, entries): + def files_get_thumbnail_batch(self, + entries): """ Get thumbnails for a list of images. We allow up to 25 thumbnails in a single batch. This method currently supports files with the following @@ -2201,26 +2303,24 @@ def files_get_thumbnail_batch(self, entries): arg = files.GetThumbnailBatchArg(entries) r = self.request( files.get_thumbnail_batch, - "files", + 'files', arg, None, ) return r - def files_list_folder( - self, - path, - recursive=False, - include_media_info=False, - include_deleted=False, - include_has_explicit_shared_members=False, - include_mounted_folders=True, - limit=None, - shared_link=None, - include_property_groups=None, - include_non_downloadable_files=True, - include_restorable_info=False, - ): + def files_list_folder(self, + path, + recursive=False, + include_media_info=False, + include_deleted=False, + include_has_explicit_shared_members=False, + include_mounted_folders=True, + limit=None, + shared_link=None, + include_property_groups=None, + include_non_downloadable_files=True, + include_restorable_info=False): """ Starts returning the contents of a folder. If the result's ``ListFolderResult.has_more`` field is true, call @@ -2300,28 +2400,27 @@ def files_list_folder( If this raises, ApiError will contain: :class:`dropbox.files.ListFolderError` """ - arg = files.ListFolderArg( - path, - recursive, - include_media_info, - include_deleted, - include_has_explicit_shared_members, - include_mounted_folders, - limit, - shared_link, - include_property_groups, - include_non_downloadable_files, - include_restorable_info, - ) + arg = files.ListFolderArg(path, + recursive, + include_media_info, + include_deleted, + include_has_explicit_shared_members, + include_mounted_folders, + limit, + shared_link, + include_property_groups, + include_non_downloadable_files, + include_restorable_info) r = self.request( files.list_folder, - "files", + 'files', arg, None, ) return r - def files_list_folder_continue(self, cursor): + def files_list_folder_continue(self, + cursor): """ Once a cursor has been retrieved from :meth:`files_list_folder`, use this to paginate through all files and retrieve updates to the folder, @@ -2342,26 +2441,24 @@ def files_list_folder_continue(self, cursor): arg = files.ListFolderContinueArg(cursor) r = self.request( files.list_folder_continue, - "files", + 'files', arg, None, ) return r - def files_list_folder_get_latest_cursor( - self, - path, - recursive=False, - include_media_info=False, - include_deleted=False, - include_has_explicit_shared_members=False, - include_mounted_folders=True, - limit=None, - shared_link=None, - include_property_groups=None, - include_non_downloadable_files=True, - include_restorable_info=False, - ): + def files_list_folder_get_latest_cursor(self, + path, + recursive=False, + include_media_info=False, + include_deleted=False, + include_has_explicit_shared_members=False, + include_mounted_folders=True, + limit=None, + shared_link=None, + include_property_groups=None, + include_non_downloadable_files=True, + include_restorable_info=False): """ A way to quickly get a cursor for the folder's state. Unlike :meth:`files_list_folder`, :meth:`files_list_folder_get_latest_cursor` @@ -2423,28 +2520,28 @@ def files_list_folder_get_latest_cursor( If this raises, ApiError will contain: :class:`dropbox.files.ListFolderError` """ - arg = files.ListFolderArg( - path, - recursive, - include_media_info, - include_deleted, - include_has_explicit_shared_members, - include_mounted_folders, - limit, - shared_link, - include_property_groups, - include_non_downloadable_files, - include_restorable_info, - ) + arg = files.ListFolderArg(path, + recursive, + include_media_info, + include_deleted, + include_has_explicit_shared_members, + include_mounted_folders, + limit, + shared_link, + include_property_groups, + include_non_downloadable_files, + include_restorable_info) r = self.request( files.list_folder_get_latest_cursor, - "files", + 'files', arg, None, ) return r - def files_list_folder_longpoll(self, cursor, timeout=30): + def files_list_folder_longpoll(self, + cursor, + timeout=30): """ A longpoll endpoint to wait for changes on an account. In conjunction with :meth:`files_list_folder_continue`, this call gives you a @@ -2471,23 +2568,22 @@ def files_list_folder_longpoll(self, cursor, timeout=30): If this raises, ApiError will contain: :class:`dropbox.files.ListFolderLongpollError` """ - arg = files.ListFolderLongpollArg(cursor, timeout) + arg = files.ListFolderLongpollArg(cursor, + timeout) r = self.request( files.list_folder_longpoll, - "files", + 'files', arg, None, ) return r - def files_list_revisions( - self, - path, - mode=files.ListRevisionsMode.path, - limit=10, - before_rev=None, - include_restorable_info=False, - ): + def files_list_revisions(self, + path, + mode=files.ListRevisionsMode.path, + limit=10, + before_rev=None, + include_restorable_info=False): """ Returns revisions for files based on a file path or a file id. The file path or file id is identified from the latest file entry at the given @@ -2523,16 +2619,21 @@ def files_list_revisions( If this raises, ApiError will contain: :class:`dropbox.files.ListRevisionsError` """ - arg = files.ListRevisionsArg(path, mode, limit, before_rev, include_restorable_info) + arg = files.ListRevisionsArg(path, + mode, + limit, + before_rev, + include_restorable_info) r = self.request( files.list_revisions, - "files", + 'files', arg, None, ) return r - def files_lock_file_batch(self, entries): + def files_lock_file_batch(self, + entries): """ Lock the files at the given paths. A locked file will be writable only by the lock holder. A successful response indicates that the file has @@ -2555,20 +2656,18 @@ def files_lock_file_batch(self, entries): arg = files.LockFileBatchArg(entries) r = self.request( files.lock_file_batch, - "files", + 'files', arg, None, ) return r - def files_move( - self, - from_path, - to_path, - allow_shared_folder=False, - autorename=False, - allow_ownership_transfer=False, - ): + def files_move(self, + from_path, + to_path, + allow_shared_folder=False, + autorename=False, + allow_ownership_transfer=False): """ Move a file or folder to a different location in the user's Dropbox. If the source path is a folder all its contents will be moved. @@ -2593,32 +2692,28 @@ def files_move( :class:`dropbox.files.RelocationError` """ warnings.warn( - "move is deprecated.", + 'move is deprecated.', DeprecationWarning, ) - arg = files.RelocationArg( - from_path, - to_path, - allow_shared_folder, - autorename, - allow_ownership_transfer, - ) + arg = files.RelocationArg(from_path, + to_path, + allow_shared_folder, + autorename, + allow_ownership_transfer) r = self.request( files.move, - "files", + 'files', arg, None, ) return r - def files_move_v2( - self, - from_path, - to_path, - allow_shared_folder=False, - autorename=False, - allow_ownership_transfer=False, - ): + def files_move_v2(self, + from_path, + to_path, + allow_shared_folder=False, + autorename=False, + allow_ownership_transfer=False): """ Move a file or folder to a different location in the user's Dropbox. If the source path is a folder all its contents will be moved. Note that we @@ -2643,28 +2738,24 @@ def files_move_v2( If this raises, ApiError will contain: :class:`dropbox.files.RelocationError` """ - arg = files.RelocationArg( - from_path, - to_path, - allow_shared_folder, - autorename, - allow_ownership_transfer, - ) + arg = files.RelocationArg(from_path, + to_path, + allow_shared_folder, + autorename, + allow_ownership_transfer) r = self.request( files.move_v2, - "files", + 'files', arg, None, ) return r - def files_move_batch( - self, - entries, - autorename=False, - allow_shared_folder=False, - allow_ownership_transfer=False, - ): + def files_move_batch(self, + entries, + autorename=False, + allow_shared_folder=False, + allow_ownership_transfer=False): """ Move multiple files or folders to different locations at once in the user's Dropbox. This route will return job ID immediately and do the @@ -2684,21 +2775,25 @@ def files_move_batch( :rtype: :class:`dropbox.files.RelocationBatchLaunch` """ warnings.warn( - "move_batch is deprecated.", + 'move_batch is deprecated.', DeprecationWarning, ) - arg = files.RelocationBatchArg( - entries, autorename, allow_shared_folder, allow_ownership_transfer - ) + arg = files.RelocationBatchArg(entries, + autorename, + allow_shared_folder, + allow_ownership_transfer) r = self.request( files.move_batch, - "files", + 'files', arg, None, ) return r - def files_move_batch_v2(self, entries, autorename=False, allow_ownership_transfer=False): + def files_move_batch_v2(self, + entries, + autorename=False, + allow_ownership_transfer=False): """ Move multiple files or folders to different locations at once in the user's Dropbox. Note that we do not currently support case-only @@ -2718,16 +2813,19 @@ def files_move_batch_v2(self, entries, autorename=False, allow_ownership_transfe :type allow_ownership_transfer: bool :rtype: :class:`dropbox.files.RelocationBatchV2Launch` """ - arg = files.MoveBatchArg(entries, autorename, allow_ownership_transfer) + arg = files.MoveBatchArg(entries, + autorename, + allow_ownership_transfer) r = self.request( files.move_batch_v2, - "files", + 'files', arg, None, ) return r - def files_move_batch_check(self, async_job_id): + def files_move_batch_check(self, + async_job_id): """ Returns the status of an asynchronous job for :meth:`files_move_batch`. If success, it returns list of results for each entry. @@ -2745,19 +2843,20 @@ def files_move_batch_check(self, async_job_id): :class:`dropbox.async_.PollError` """ warnings.warn( - "move_batch/check is deprecated.", + 'move_batch/check is deprecated.', DeprecationWarning, ) arg = async_.PollArg(async_job_id) r = self.request( files.move_batch_check, - "files", + 'files', arg, None, ) return r - def files_move_batch_check_v2(self, async_job_id): + def files_move_batch_check_v2(self, + async_job_id): """ Returns the status of an asynchronous job for :meth:`files_move_batch_v2`. It returns list of results for each entry. @@ -2777,13 +2876,16 @@ def files_move_batch_check_v2(self, async_job_id): arg = async_.PollArg(async_job_id) r = self.request( files.move_batch_check_v2, - "files", + 'files', arg, None, ) return r - def files_paper_create(self, f, path, import_format): + def files_paper_create(self, + f, + path, + import_format): """ Creates a new Paper doc with the provided content. @@ -2803,16 +2905,22 @@ def files_paper_create(self, f, path, import_format): If this raises, ApiError will contain: :class:`dropbox.files.PaperCreateError` """ - arg = files.PaperCreateArg(path, import_format) + arg = files.PaperCreateArg(path, + import_format) r = self.request( files.paper_create, - "files", + 'files', arg, f, ) return r - def files_paper_update(self, f, path, import_format, doc_update_policy, paper_revision=None): + def files_paper_update(self, + f, + path, + import_format, + doc_update_policy, + paper_revision=None): """ Updates an existing Paper doc with the provided content. @@ -2838,16 +2946,21 @@ def files_paper_update(self, f, path, import_format, doc_update_policy, paper_re If this raises, ApiError will contain: :class:`dropbox.files.PaperUpdateError` """ - arg = files.PaperUpdateArg(path, import_format, doc_update_policy, paper_revision) + arg = files.PaperUpdateArg(path, + import_format, + doc_update_policy, + paper_revision) r = self.request( files.paper_update, - "files", + 'files', arg, f, ) return r - def files_permanently_delete(self, path, parent_rev=None): + def files_permanently_delete(self, + path, + parent_rev=None): """ Permanently delete the file or folder at a given path (see https://www.dropbox.com/en/help/40). If the given file or folder is not @@ -2869,16 +2982,19 @@ def files_permanently_delete(self, path, parent_rev=None): If this raises, ApiError will contain: :class:`dropbox.files.DeleteError` """ - arg = files.DeleteArg(path, parent_rev) + arg = files.DeleteArg(path, + parent_rev) r = self.request( files.permanently_delete, - "files", + 'files', arg, None, ) return None - def files_properties_add(self, path, property_groups): + def files_properties_add(self, + path, + property_groups): """ Add property groups to a Dropbox file. See templates/add_for_user or templates/add_for_team to create new templates. @@ -2899,19 +3015,22 @@ def files_properties_add(self, path, property_groups): :class:`dropbox.file_properties.AddPropertiesError` """ warnings.warn( - "properties/add is deprecated.", + 'properties/add is deprecated.', DeprecationWarning, ) - arg = file_properties.AddPropertiesArg(path, property_groups) + arg = file_properties.AddPropertiesArg(path, + property_groups) r = self.request( files.properties_add, - "files", + 'files', arg, None, ) return None - def files_properties_overwrite(self, path, property_groups): + def files_properties_overwrite(self, + path, + property_groups): """ Overwrite property groups associated with a file. This endpoint should be used instead of properties/update when property groups are being @@ -2932,19 +3051,22 @@ def files_properties_overwrite(self, path, property_groups): :class:`dropbox.file_properties.InvalidPropertyGroupError` """ warnings.warn( - "properties/overwrite is deprecated.", + 'properties/overwrite is deprecated.', DeprecationWarning, ) - arg = file_properties.OverwritePropertyGroupArg(path, property_groups) + arg = file_properties.OverwritePropertyGroupArg(path, + property_groups) r = self.request( files.properties_overwrite, - "files", + 'files', arg, None, ) return None - def files_properties_update(self, path, update_property_groups): + def files_properties_update(self, + path, + update_property_groups): """ Add, update or remove properties associated with the supplied file and templates. This endpoint should be used instead of properties/overwrite @@ -2966,19 +3088,22 @@ def files_properties_update(self, path, update_property_groups): :class:`dropbox.file_properties.UpdatePropertiesError` """ warnings.warn( - "properties/update is deprecated.", + 'properties/update is deprecated.', DeprecationWarning, ) - arg = file_properties.UpdatePropertiesArg(path, update_property_groups) + arg = file_properties.UpdatePropertiesArg(path, + update_property_groups) r = self.request( files.properties_update, - "files", + 'files', arg, None, ) return None - def files_restore(self, path, rev): + def files_restore(self, + path, + rev): """ Restore a specific revision of a file to the given path. @@ -2995,16 +3120,19 @@ def files_restore(self, path, rev): If this raises, ApiError will contain: :class:`dropbox.files.RestoreError` """ - arg = files.RestoreArg(path, rev) + arg = files.RestoreArg(path, + rev) r = self.request( files.restore, - "files", + 'files', arg, None, ) return r - def files_save_url(self, path, url): + def files_save_url(self, + path, + url): """ Save the data from a specified URL into a file in user's Dropbox. Note that the transfer from the URL must complete within 15 minutes, or the @@ -3023,16 +3151,18 @@ def files_save_url(self, path, url): If this raises, ApiError will contain: :class:`dropbox.files.SaveUrlError` """ - arg = files.SaveUrlArg(path, url) + arg = files.SaveUrlArg(path, + url) r = self.request( files.save_url, - "files", + 'files', arg, None, ) return r - def files_save_url_check_job_status(self, async_job_id): + def files_save_url_check_job_status(self, + async_job_id): """ Check the status of a :meth:`files_save_url` job. @@ -3051,13 +3181,18 @@ def files_save_url_check_job_status(self, async_job_id): arg = async_.PollArg(async_job_id) r = self.request( files.save_url_check_job_status, - "files", + 'files', arg, None, ) return r - def files_search(self, path, query, start=0, max_results=100, mode=files.SearchMode.filename): + def files_search(self, + path, + query, + start=0, + max_results=100, + mode=files.SearchMode.filename): """ Searches for files and folders. Note: Recent changes will be reflected in search results within a few seconds and older revisions of existing @@ -3091,21 +3226,27 @@ def files_search(self, path, query, start=0, max_results=100, mode=files.SearchM :class:`dropbox.files.SearchError` """ warnings.warn( - "search is deprecated.", + 'search is deprecated.', DeprecationWarning, ) - arg = files.SearchArg(path, query, start, max_results, mode) + arg = files.SearchArg(path, + query, + start, + max_results, + mode) r = self.request( files.search, - "files", + 'files', arg, None, ) return r - def files_search_v2( - self, query, options=None, match_field_options=None, include_highlights=None - ): + def files_search_v2(self, + query, + options=None, + match_field_options=None, + include_highlights=None): """ Searches for files and folders. Note: :meth:`files_search_v2` along with :meth:`files_search_continue_v2` can only be used to retrieve a maximum @@ -3132,16 +3273,20 @@ def files_search_v2( If this raises, ApiError will contain: :class:`dropbox.files.SearchError` """ - arg = files.SearchV2Arg(query, options, match_field_options, include_highlights) + arg = files.SearchV2Arg(query, + options, + match_field_options, + include_highlights) r = self.request( files.search_v2, - "files", + 'files', arg, None, ) return r - def files_search_continue_v2(self, cursor): + def files_search_continue_v2(self, + cursor): """ Fetches the next page of search results returned from :meth:`files_search_v2`. Note: :meth:`files_search_v2` along with @@ -3165,13 +3310,15 @@ def files_search_continue_v2(self, cursor): arg = files.SearchV2ContinueArg(cursor) r = self.request( files.search_continue_v2, - "files", + 'files', arg, None, ) return r - def files_tags_add(self, path, tag_text): + def files_tags_add(self, + path, + tag_text): """ Add a tag to an item. A tag is a string. The strings are automatically converted to lowercase letters. No more than 20 tags can be added to a @@ -3191,16 +3338,18 @@ def files_tags_add(self, path, tag_text): If this raises, ApiError will contain: :class:`dropbox.files.AddTagError` """ - arg = files.AddTagArg(path, tag_text) + arg = files.AddTagArg(path, + tag_text) r = self.request( files.tags_add, - "files", + 'files', arg, None, ) return None - def files_tags_get(self, paths): + def files_tags_get(self, + paths): """ Get list of tags assigned to items. @@ -3218,13 +3367,15 @@ def files_tags_get(self, paths): arg = files.GetTagsArg(paths) r = self.request( files.tags_get, - "files", + 'files', arg, None, ) return r - def files_tags_remove(self, path, tag_text): + def files_tags_remove(self, + path, + tag_text): """ Remove a tag from an item. @@ -3242,16 +3393,18 @@ def files_tags_remove(self, path, tag_text): If this raises, ApiError will contain: :class:`dropbox.files.RemoveTagError` """ - arg = files.RemoveTagArg(path, tag_text) + arg = files.RemoveTagArg(path, + tag_text) r = self.request( files.tags_remove, - "files", + 'files', arg, None, ) return None - def files_unlock_file_batch(self, entries): + def files_unlock_file_batch(self, + entries): """ Unlock the files at the given paths. A locked file can only be unlocked by the lock holder or, if a business account, a team admin. A successful @@ -3274,24 +3427,22 @@ def files_unlock_file_batch(self, entries): arg = files.UnlockFileBatchArg(entries) r = self.request( files.unlock_file_batch, - "files", + 'files', arg, None, ) return r - def files_upload( - self, - f, - path, - mode=files.WriteMode.add, - autorename=False, - client_modified=None, - mute=False, - property_groups=None, - strict_conflict=False, - content_hash=None, - ): + def files_upload(self, + f, + path, + mode=files.WriteMode.add, + autorename=False, + client_modified=None, + mute=False, + property_groups=None, + strict_conflict=False, + content_hash=None): """ Create a new file with the contents provided in the request. Do not use this to upload a file larger than 150 MiB. Instead, create an upload @@ -3316,25 +3467,26 @@ def files_upload( If this raises, ApiError will contain: :class:`dropbox.files.UploadError` """ - arg = files.UploadArg( - path, - mode, - autorename, - client_modified, - mute, - property_groups, - strict_conflict, - content_hash, - ) + arg = files.UploadArg(path, + mode, + autorename, + client_modified, + mute, + property_groups, + strict_conflict, + content_hash) r = self.request( files.upload, - "files", + 'files', arg, f, ) return r - def files_upload_session_append(self, f, session_id, offset): + def files_upload_session_append(self, + f, + session_id, + offset): """ Append more data to an upload session. A single request should not upload more than 150 MiB. The maximum size of a file one can upload to @@ -3362,19 +3514,24 @@ def files_upload_session_append(self, f, session_id, offset): :class:`dropbox.files.UploadSessionAppendError` """ warnings.warn( - "upload_session/append is deprecated.", + 'upload_session/append is deprecated.', DeprecationWarning, ) - arg = files.UploadSessionCursor(session_id, offset) + arg = files.UploadSessionCursor(session_id, + offset) r = self.request( files.upload_session_append, - "files", + 'files', arg, f, ) return None - def files_upload_session_append_v2(self, f, cursor, close=False, content_hash=None): + def files_upload_session_append_v2(self, + f, + cursor, + close=False, + content_hash=None): """ Append more data to an upload session. When the parameter close is set, this call will close the session. A single request should not upload @@ -3407,16 +3564,21 @@ def files_upload_session_append_v2(self, f, cursor, close=False, content_hash=No If this raises, ApiError will contain: :class:`dropbox.files.UploadSessionAppendError` """ - arg = files.UploadSessionAppendArg(cursor, close, content_hash) + arg = files.UploadSessionAppendArg(cursor, + close, + content_hash) r = self.request( files.upload_session_append_v2, - "files", + 'files', arg, f, ) return None - def files_upload_session_append_batch(self, f, entries, content_hash=None): + def files_upload_session_append_batch(self, + f, + entries, + content_hash=None): """ Append more data to multiple upload sessions. Each piece of file content to append to each upload session should be concatenated in the request @@ -3448,16 +3610,21 @@ def files_upload_session_append_batch(self, f, entries, content_hash=None): If this raises, ApiError will contain: :class:`dropbox.files.UploadSessionAppendBatchError` """ - arg = files.UploadSessionAppendBatchArg(entries, content_hash) + arg = files.UploadSessionAppendBatchArg(entries, + content_hash) r = self.request( files.upload_session_append_batch, - "files", + 'files', arg, f, ) return r - def files_upload_session_finish(self, f, cursor, commit, content_hash=None): + def files_upload_session_finish(self, + f, + cursor, + commit, + content_hash=None): """ Finish an upload session and save the uploaded data to the given file path. A single request should not upload more than 150 MiB. The maximum @@ -3488,16 +3655,19 @@ def files_upload_session_finish(self, f, cursor, commit, content_hash=None): If this raises, ApiError will contain: :class:`dropbox.files.UploadSessionFinishError` """ - arg = files.UploadSessionFinishArg(cursor, commit, content_hash) + arg = files.UploadSessionFinishArg(cursor, + commit, + content_hash) r = self.request( files.upload_session_finish, - "files", + 'files', arg, f, ) return r - def files_upload_session_finish_batch(self, entries): + def files_upload_session_finish_batch(self, + entries): """ This route helps you commit many files at once into a user's Dropbox. Use :meth:`files_upload_session_start` and @@ -3529,19 +3699,20 @@ def files_upload_session_finish_batch(self, entries): :rtype: :class:`dropbox.files.UploadSessionFinishBatchLaunch` """ warnings.warn( - "upload_session/finish_batch is deprecated.", + 'upload_session/finish_batch is deprecated.', DeprecationWarning, ) arg = files.UploadSessionFinishBatchArg(entries) r = self.request( files.upload_session_finish_batch, - "files", + 'files', arg, None, ) return r - def files_upload_session_finish_batch_v2(self, entries): + def files_upload_session_finish_batch_v2(self, + entries): """ This route helps you commit many files at once into a user's Dropbox. Use :meth:`files_upload_session_start` and @@ -3571,13 +3742,14 @@ def files_upload_session_finish_batch_v2(self, entries): arg = files.UploadSessionFinishBatchArg(entries) r = self.request( files.upload_session_finish_batch_v2, - "files", + 'files', arg, None, ) return r - def files_upload_session_finish_batch_check(self, async_job_id): + def files_upload_session_finish_batch_check(self, + async_job_id): """ Returns the status of an asynchronous job for :meth:`files_upload_session_finish_batch`. If success, it returns list @@ -3598,13 +3770,17 @@ def files_upload_session_finish_batch_check(self, async_job_id): arg = async_.PollArg(async_job_id) r = self.request( files.upload_session_finish_batch_check, - "files", + 'files', arg, None, ) return r - def files_upload_session_start(self, f, close=False, session_type=None, content_hash=None): + def files_upload_session_start(self, + f, + close=False, + session_type=None, + content_hash=None): """ Upload sessions allow you to upload a single file in one or more requests, for example where the size of the file is greater than 150 @@ -3670,16 +3846,20 @@ def files_upload_session_start(self, f, close=False, session_type=None, content_ If this raises, ApiError will contain: :class:`dropbox.files.UploadSessionStartError` """ - arg = files.UploadSessionStartArg(close, session_type, content_hash) + arg = files.UploadSessionStartArg(close, + session_type, + content_hash) r = self.request( files.upload_session_start, - "files", + 'files', arg, f, ) return r - def files_upload_session_start_batch(self, num_sessions, session_type=None): + def files_upload_session_start_batch(self, + num_sessions, + session_type=None): """ Start a batch of upload sessions. See :meth:`files_upload_session_start`. Calls to this endpoint will count as @@ -3698,10 +3878,11 @@ def files_upload_session_start_batch(self, num_sessions, session_type=None): :type num_sessions: int :rtype: :class:`dropbox.files.UploadSessionStartBatchResult` """ - arg = files.UploadSessionStartBatchArg(num_sessions, session_type) + arg = files.UploadSessionStartBatchArg(num_sessions, + session_type) r = self.request( files.upload_session_start_batch, - "files", + 'files', arg, None, ) @@ -3728,7 +3909,7 @@ def openid_userinfo(self): arg = openid.UserInfoArgs() r = self.request( openid.userinfo, - "openid", + 'openid', arg, None, ) @@ -3737,7 +3918,8 @@ def openid_userinfo(self): # ------------------------------------------ # Routes in paper namespace - def paper_docs_archive(self, doc_id): + def paper_docs_archive(self, + doc_id): """ Marks the given Paper doc as archived. This action can be performed or undone by anyone with edit permissions to the doc. Note that this @@ -3761,19 +3943,22 @@ def paper_docs_archive(self, doc_id): :class:`dropbox.paper.DocLookupError` """ warnings.warn( - "docs/archive is deprecated.", + 'docs/archive is deprecated.', DeprecationWarning, ) arg = paper.RefPaperDoc(doc_id) r = self.request( paper.docs_archive, - "paper", + 'paper', arg, None, ) return None - def paper_docs_create(self, f, import_format, parent_folder_id=None): + def paper_docs_create(self, + f, + import_format, + parent_folder_id=None): """ Creates a new Paper doc with the provided content. Note that this endpoint will continue to work for content created by users on the older @@ -3801,19 +3986,23 @@ def paper_docs_create(self, f, import_format, parent_folder_id=None): :class:`dropbox.paper.PaperDocCreateError` """ warnings.warn( - "docs/create is deprecated.", + 'docs/create is deprecated.', DeprecationWarning, ) - arg = paper.PaperDocCreateArgs(import_format, parent_folder_id) + arg = paper.PaperDocCreateArgs(import_format, + parent_folder_id) r = self.request( paper.docs_create, - "paper", + 'paper', arg, f, ) return r - def paper_docs_download(self, doc_id, export_format, include_comments=False): + def paper_docs_download(self, + doc_id, + export_format, + include_comments=False): """ Exports and downloads Paper doc either as HTML or markdown. Note that this endpoint will continue to work for content created by users on the @@ -3848,21 +4037,25 @@ def paper_docs_download(self, doc_id, export_format, include_comments=False): context manager to ensure this. """ warnings.warn( - "docs/download is deprecated.", + 'docs/download is deprecated.', DeprecationWarning, ) - arg = paper.PaperDocExport(doc_id, export_format, include_comments) + arg = paper.PaperDocExport(doc_id, + export_format, + include_comments) r = self.request( paper.docs_download, - "paper", + 'paper', arg, None, ) return r - def paper_docs_download_to_file( - self, download_path, doc_id, export_format, include_comments=False - ): + def paper_docs_download_to_file(self, + download_path, + doc_id, + export_format, + include_comments=False): """ Exports and downloads Paper doc either as HTML or markdown. Note that this endpoint will continue to work for content created by users on the @@ -3891,20 +4084,24 @@ def paper_docs_download_to_file( :class:`dropbox.paper.DocLookupError` """ warnings.warn( - "docs/download is deprecated.", + 'docs/download is deprecated.', DeprecationWarning, ) - arg = paper.PaperDocExport(doc_id, export_format, include_comments) + arg = paper.PaperDocExport(doc_id, + export_format, + include_comments) r = self.request( paper.docs_download, - "paper", + 'paper', arg, None, ) self._save_body_to_file(download_path, r[1]) return r[0] - def paper_docs_folder_users_list(self, doc_id, limit=1000): + def paper_docs_folder_users_list(self, + doc_id, + limit=1000): """ Lists the users who are explicitly invited to the Paper folder in which the Paper doc is contained. For private folders all users (including @@ -3932,19 +4129,22 @@ def paper_docs_folder_users_list(self, doc_id, limit=1000): :class:`dropbox.paper.DocLookupError` """ warnings.warn( - "docs/folder_users/list is deprecated.", + 'docs/folder_users/list is deprecated.', DeprecationWarning, ) - arg = paper.ListUsersOnFolderArgs(doc_id, limit) + arg = paper.ListUsersOnFolderArgs(doc_id, + limit) r = self.request( paper.docs_folder_users_list, - "paper", + 'paper', arg, None, ) return r - def paper_docs_folder_users_list_continue(self, doc_id, cursor): + def paper_docs_folder_users_list_continue(self, + doc_id, + cursor): """ Once a cursor has been retrieved from :meth:`paper_docs_folder_users_list`, use this to paginate through all @@ -3971,19 +4171,21 @@ def paper_docs_folder_users_list_continue(self, doc_id, cursor): :class:`dropbox.paper.ListUsersCursorError` """ warnings.warn( - "docs/folder_users/list/continue is deprecated.", + 'docs/folder_users/list/continue is deprecated.', DeprecationWarning, ) - arg = paper.ListUsersOnFolderContinueArgs(doc_id, cursor) + arg = paper.ListUsersOnFolderContinueArgs(doc_id, + cursor) r = self.request( paper.docs_folder_users_list_continue, - "paper", + 'paper', arg, None, ) return r - def paper_docs_get_folder_info(self, doc_id): + def paper_docs_get_folder_info(self, + doc_id): """ Retrieves folder information for the given Paper doc. This includes: - folder sharing policy; permissions for subfolders are set by the @@ -4011,19 +4213,21 @@ def paper_docs_get_folder_info(self, doc_id): :class:`dropbox.paper.DocLookupError` """ warnings.warn( - "docs/get_folder_info is deprecated.", + 'docs/get_folder_info is deprecated.', DeprecationWarning, ) arg = paper.RefPaperDoc(doc_id) r = self.request( paper.docs_get_folder_info, - "paper", + 'paper', arg, None, ) return r - def paper_docs_get_metadata(self, doc_id=None, file_id=None): + def paper_docs_get_metadata(self, + doc_id=None, + file_id=None): """ Returns metadata for a Paper doc or Cloud Doc. @@ -4040,23 +4244,22 @@ def paper_docs_get_metadata(self, doc_id=None, file_id=None): If this raises, ApiError will contain: :class:`dropbox.paper.DocLookupError` """ - arg = paper.GetDocMetadataArg(doc_id, file_id) + arg = paper.GetDocMetadataArg(doc_id, + file_id) r = self.request( paper.docs_get_metadata, - "paper", + 'paper', arg, None, ) return r - def paper_docs_list( - self, - filter_by=paper.ListPaperDocsFilterBy.docs_accessed, - sort_by=paper.ListPaperDocsSortBy.accessed, - sort_order=paper.ListPaperDocsSortOrder.ascending, - limit=1000, - stop_at_date=None, - ): + def paper_docs_list(self, + filter_by=paper.ListPaperDocsFilterBy.docs_accessed, + sort_by=paper.ListPaperDocsSortBy.accessed, + sort_order=paper.ListPaperDocsSortOrder.ascending, + limit=1000, + stop_at_date=None): """ Return the list of all Paper docs according to the argument specifications. To iterate over through the full pagination, pass the @@ -4090,19 +4293,24 @@ def paper_docs_list( :rtype: :class:`dropbox.paper.ListPaperDocsResponse` """ warnings.warn( - "docs/list is deprecated.", + 'docs/list is deprecated.', DeprecationWarning, ) - arg = paper.ListPaperDocsArgs(filter_by, sort_by, sort_order, limit, stop_at_date) + arg = paper.ListPaperDocsArgs(filter_by, + sort_by, + sort_order, + limit, + stop_at_date) r = self.request( paper.docs_list, - "paper", + 'paper', arg, None, ) return r - def paper_docs_list_continue(self, cursor): + def paper_docs_list_continue(self, + cursor): """ Once a cursor has been retrieved from :meth:`paper_docs_list`, use this to paginate through all Paper doc. Note that this endpoint will continue @@ -4127,19 +4335,20 @@ def paper_docs_list_continue(self, cursor): :class:`dropbox.paper.ListDocsCursorError` """ warnings.warn( - "docs/list/continue is deprecated.", + 'docs/list/continue is deprecated.', DeprecationWarning, ) arg = paper.ListPaperDocsContinueArgs(cursor) r = self.request( paper.docs_list_continue, - "paper", + 'paper', arg, None, ) return r - def paper_docs_permanently_delete(self, doc_id): + def paper_docs_permanently_delete(self, + doc_id): """ Permanently deletes the given Paper doc. This operation is final as the doc cannot be recovered. This action can be performed only by the doc @@ -4163,19 +4372,20 @@ def paper_docs_permanently_delete(self, doc_id): :class:`dropbox.paper.DocLookupError` """ warnings.warn( - "docs/permanently_delete is deprecated.", + 'docs/permanently_delete is deprecated.', DeprecationWarning, ) arg = paper.RefPaperDoc(doc_id) r = self.request( paper.docs_permanently_delete, - "paper", + 'paper', arg, None, ) return None - def paper_docs_sharing_policy_get(self, doc_id): + def paper_docs_sharing_policy_get(self, + doc_id): """ Gets the default sharing policy for the given Paper doc. Note that this endpoint will continue to work for content created by users on the older @@ -4198,19 +4408,21 @@ def paper_docs_sharing_policy_get(self, doc_id): :class:`dropbox.paper.DocLookupError` """ warnings.warn( - "docs/sharing_policy/get is deprecated.", + 'docs/sharing_policy/get is deprecated.', DeprecationWarning, ) arg = paper.RefPaperDoc(doc_id) r = self.request( paper.docs_sharing_policy_get, - "paper", + 'paper', arg, None, ) return r - def paper_docs_sharing_policy_set(self, doc_id, sharing_policy): + def paper_docs_sharing_policy_set(self, + doc_id, + sharing_policy): """ Sets the default sharing policy for the given Paper doc. The default 'team_sharing_policy' can be changed only by teams, omit this field for @@ -4237,19 +4449,25 @@ def paper_docs_sharing_policy_set(self, doc_id, sharing_policy): :class:`dropbox.paper.DocLookupError` """ warnings.warn( - "docs/sharing_policy/set is deprecated.", + 'docs/sharing_policy/set is deprecated.', DeprecationWarning, ) - arg = paper.PaperDocSharingPolicy(doc_id, sharing_policy) + arg = paper.PaperDocSharingPolicy(doc_id, + sharing_policy) r = self.request( paper.docs_sharing_policy_set, - "paper", + 'paper', arg, None, ) return None - def paper_docs_update(self, f, doc_id, doc_update_policy, revision, import_format): + def paper_docs_update(self, + f, + doc_id, + doc_update_policy, + revision, + import_format): """ Updates an existing Paper doc with the provided content. Note that this endpoint will continue to work for content created by users on the older @@ -4279,19 +4497,26 @@ def paper_docs_update(self, f, doc_id, doc_update_policy, revision, import_forma :class:`dropbox.paper.PaperDocUpdateError` """ warnings.warn( - "docs/update is deprecated.", + 'docs/update is deprecated.', DeprecationWarning, ) - arg = paper.PaperDocUpdateArgs(doc_id, doc_update_policy, revision, import_format) + arg = paper.PaperDocUpdateArgs(doc_id, + doc_update_policy, + revision, + import_format) r = self.request( paper.docs_update, - "paper", + 'paper', arg, f, ) return r - def paper_docs_users_add(self, doc_id, members, custom_message=None, quiet=False): + def paper_docs_users_add(self, + doc_id, + members, + custom_message=None, + quiet=False): """ Allows an owner or editor to add users to a Paper doc or change their permissions using their email address or Dropbox account ID. The doc @@ -4323,21 +4548,25 @@ def paper_docs_users_add(self, doc_id, members, custom_message=None, quiet=False :class:`dropbox.paper.DocLookupError` """ warnings.warn( - "docs/users/add is deprecated.", + 'docs/users/add is deprecated.', DeprecationWarning, ) - arg = paper.AddPaperDocUser(doc_id, members, custom_message, quiet) + arg = paper.AddPaperDocUser(doc_id, + members, + custom_message, + quiet) r = self.request( paper.docs_users_add, - "paper", + 'paper', arg, None, ) return r - def paper_docs_users_list( - self, doc_id, limit=1000, filter_by=paper.UserOnPaperDocFilter.shared - ): + def paper_docs_users_list(self, + doc_id, + limit=1000, + filter_by=paper.UserOnPaperDocFilter.shared): """ Lists all users who visited the Paper doc or users with explicit access. This call excludes users who have been removed. The list is sorted by @@ -4368,19 +4597,23 @@ def paper_docs_users_list( :class:`dropbox.paper.DocLookupError` """ warnings.warn( - "docs/users/list is deprecated.", + 'docs/users/list is deprecated.', DeprecationWarning, ) - arg = paper.ListUsersOnPaperDocArgs(doc_id, limit, filter_by) + arg = paper.ListUsersOnPaperDocArgs(doc_id, + limit, + filter_by) r = self.request( paper.docs_users_list, - "paper", + 'paper', arg, None, ) return r - def paper_docs_users_list_continue(self, doc_id, cursor): + def paper_docs_users_list_continue(self, + doc_id, + cursor): """ Once a cursor has been retrieved from :meth:`paper_docs_users_list`, use this to paginate through all users on the Paper doc. Note that this @@ -4405,19 +4638,22 @@ def paper_docs_users_list_continue(self, doc_id, cursor): :class:`dropbox.paper.ListUsersCursorError` """ warnings.warn( - "docs/users/list/continue is deprecated.", + 'docs/users/list/continue is deprecated.', DeprecationWarning, ) - arg = paper.ListUsersOnPaperDocContinueArgs(doc_id, cursor) + arg = paper.ListUsersOnPaperDocContinueArgs(doc_id, + cursor) r = self.request( paper.docs_users_list_continue, - "paper", + 'paper', arg, None, ) return r - def paper_docs_users_remove(self, doc_id, member): + def paper_docs_users_remove(self, + doc_id, + member): """ Allows an owner or editor to remove users from a Paper doc using their email address or Dropbox account ID. The doc owner cannot be removed. @@ -4442,19 +4678,23 @@ def paper_docs_users_remove(self, doc_id, member): :class:`dropbox.paper.DocLookupError` """ warnings.warn( - "docs/users/remove is deprecated.", + 'docs/users/remove is deprecated.', DeprecationWarning, ) - arg = paper.RemovePaperDocUser(doc_id, member) + arg = paper.RemovePaperDocUser(doc_id, + member) r = self.request( paper.docs_users_remove, - "paper", + 'paper', arg, None, ) return None - def paper_folders_create(self, name, parent_folder_id=None, is_team_folder=None): + def paper_folders_create(self, + name, + parent_folder_id=None, + is_team_folder=None): """ Create a new Paper folder with the provided info. Note that this endpoint will continue to work for content created by users on the older @@ -4488,13 +4728,15 @@ def paper_folders_create(self, name, parent_folder_id=None, is_team_folder=None) :class:`dropbox.paper.PaperFolderCreateError` """ warnings.warn( - "folders/create is deprecated.", + 'folders/create is deprecated.', DeprecationWarning, ) - arg = paper.PaperFolderCreateArg(name, parent_folder_id, is_team_folder) + arg = paper.PaperFolderCreateArg(name, + parent_folder_id, + is_team_folder) r = self.request( paper.folders_create, - "paper", + 'paper', arg, None, ) @@ -4503,7 +4745,10 @@ def paper_folders_create(self, name, parent_folder_id=None, is_team_folder=None) # ------------------------------------------ # Routes in riviera namespace - def riviera_get_markdown_async(self, file_id_or_url=None, enable_ocr=False, embed_images=False): + def riviera_get_markdown_async(self, + file_id_or_url=None, + enable_ocr=False, + embed_images=False): """ Asynchronous document-to-markdown conversion for supported file formats. @@ -4536,16 +4781,19 @@ def riviera_get_markdown_async(self, file_id_or_url=None, enable_ocr=False, embe :type embed_images: bool :rtype: :class:`dropbox.async_.LaunchResultBase` """ - arg = riviera.GetMarkdownArgs(file_id_or_url, enable_ocr, embed_images) + arg = riviera.GetMarkdownArgs(file_id_or_url, + enable_ocr, + embed_images) r = self.request( riviera.get_markdown_async, - "riviera", + 'riviera', arg, None, ) return r - def riviera_get_markdown_async_check(self, async_job_id): + def riviera_get_markdown_async_check(self, + async_job_id): """ Returns the status or result of specified get_markdown_async task. @@ -4564,13 +4812,14 @@ def riviera_get_markdown_async_check(self, async_job_id): arg = async_.PollArg(async_job_id) r = self.request( riviera.get_markdown_async_check, - "riviera", + 'riviera', arg, None, ) return r - def riviera_get_metadata_async(self, file_id_or_url=None): + def riviera_get_metadata_async(self, + file_id_or_url=None): """ Asynchronous file metadata extraction for supported file formats. @@ -4603,13 +4852,14 @@ def riviera_get_metadata_async(self, file_id_or_url=None): arg = riviera.GetMetadataArgs(file_id_or_url) r = self.request( riviera.get_metadata_async, - "riviera", + 'riviera', arg, None, ) return r - def riviera_get_metadata_async_check(self, async_job_id): + def riviera_get_metadata_async_check(self, + async_job_id): """ Returns the status or result of specified get_metadata_async task. @@ -4628,19 +4878,17 @@ def riviera_get_metadata_async_check(self, async_job_id): arg = async_.PollArg(async_job_id) r = self.request( riviera.get_metadata_async_check, - "riviera", + 'riviera', arg, None, ) return r - def riviera_get_transcript_async( - self, - file_id_or_url=None, - timestamp_level=riviera.TimestampLevel.unknown, - included_special_words="", - audio_language="", - ): + def riviera_get_transcript_async(self, + file_id_or_url=None, + timestamp_level=riviera.TimestampLevel.unknown, + included_special_words='', + audio_language=''): """ Asynchronous transcript generation for audio and video files. @@ -4684,18 +4932,20 @@ def riviera_get_transcript_async( :type audio_language: str :rtype: :class:`dropbox.async_.LaunchResultBase` """ - arg = riviera.GetTranscriptArgs( - file_id_or_url, timestamp_level, included_special_words, audio_language - ) + arg = riviera.GetTranscriptArgs(file_id_or_url, + timestamp_level, + included_special_words, + audio_language) r = self.request( riviera.get_transcript_async, - "riviera", + 'riviera', arg, None, ) return r - def riviera_get_transcript_async_check(self, async_job_id): + def riviera_get_transcript_async_check(self, + async_job_id): """ Returns the status or result of specified get_transcript_async task. @@ -4714,7 +4964,7 @@ def riviera_get_transcript_async_check(self, async_job_id): arg = async_.PollArg(async_job_id) r = self.request( riviera.get_transcript_async_check, - "riviera", + 'riviera', arg, None, ) @@ -4723,16 +4973,14 @@ def riviera_get_transcript_async_check(self, async_job_id): # ------------------------------------------ # Routes in sharing namespace - def sharing_add_file_member( - self, - file, - members, - custom_message=None, - quiet=False, - access_level=None, - add_message_as_comment=False, - fp_sealed_result=None, - ): + def sharing_add_file_member(self, + file, + members, + custom_message=None, + quiet=False, + access_level=None, + add_message_as_comment=False, + fp_sealed_result=None): """ Adds specified members to a file. @@ -4766,31 +5014,27 @@ def sharing_add_file_member( If this raises, ApiError will contain: :class:`dropbox.sharing.AddFileMemberError` """ - arg = sharing.AddFileMemberArgs( - file, - members, - custom_message, - quiet, - access_level, - add_message_as_comment, - fp_sealed_result, - ) + arg = sharing.AddFileMemberArgs(file, + members, + custom_message, + quiet, + access_level, + add_message_as_comment, + fp_sealed_result) r = self.request( sharing.add_file_member, - "sharing", + 'sharing', arg, None, ) return r - def sharing_add_folder_member( - self, - shared_folder_id, - members, - quiet=False, - custom_message=None, - fp_sealed_result=None, - ): + def sharing_add_folder_member(self, + shared_folder_id, + members, + quiet=False, + custom_message=None, + fp_sealed_result=None): """ Allows an owner or editor (if the ACL update policy allows) of a shared folder to add another member. For the new member to get access to all @@ -4820,18 +5064,21 @@ def sharing_add_folder_member( If this raises, ApiError will contain: :class:`dropbox.sharing.AddFolderMemberError` """ - arg = sharing.AddFolderMemberArg( - shared_folder_id, members, quiet, custom_message, fp_sealed_result - ) + arg = sharing.AddFolderMemberArg(shared_folder_id, + members, + quiet, + custom_message, + fp_sealed_result) r = self.request( sharing.add_folder_member, - "sharing", + 'sharing', arg, None, ) return None - def sharing_check_job_status(self, async_job_id): + def sharing_check_job_status(self, + async_job_id): """ Returns the status of an asynchronous job. @@ -4850,13 +5097,14 @@ def sharing_check_job_status(self, async_job_id): arg = async_.PollArg(async_job_id) r = self.request( sharing.check_job_status, - "sharing", + 'sharing', arg, None, ) return r - def sharing_check_remove_member_job_status(self, async_job_id): + def sharing_check_remove_member_job_status(self, + async_job_id): """ Returns the status of an asynchronous job for sharing a folder. @@ -4875,13 +5123,14 @@ def sharing_check_remove_member_job_status(self, async_job_id): arg = async_.PollArg(async_job_id) r = self.request( sharing.check_remove_member_job_status, - "sharing", + 'sharing', arg, None, ) return r - def sharing_check_share_job_status(self, async_job_id): + def sharing_check_share_job_status(self, + async_job_id): """ Returns the status of an asynchronous job for sharing a folder. @@ -4900,13 +5149,16 @@ def sharing_check_share_job_status(self, async_job_id): arg = async_.PollArg(async_job_id) r = self.request( sharing.check_share_job_status, - "sharing", + 'sharing', arg, None, ) return r - def sharing_create_shared_link(self, path, short_url=False, pending_upload=None): + def sharing_create_shared_link(self, + path, + short_url=False, + pending_upload=None): """ Create a shared link. If a shared link already exists for the given path, that link is returned. Previously, it was technically possible to @@ -4935,19 +5187,23 @@ def sharing_create_shared_link(self, path, short_url=False, pending_upload=None) :class:`dropbox.sharing.CreateSharedLinkError` """ warnings.warn( - "create_shared_link is deprecated.", + 'create_shared_link is deprecated.', DeprecationWarning, ) - arg = sharing.CreateSharedLinkArg(path, short_url, pending_upload) + arg = sharing.CreateSharedLinkArg(path, + short_url, + pending_upload) r = self.request( sharing.create_shared_link, - "sharing", + 'sharing', arg, None, ) return r - def sharing_create_shared_link_with_settings(self, path, settings=None): + def sharing_create_shared_link_with_settings(self, + path, + settings=None): """ Create a shared link with custom settings. If no settings are given then the default visibility is RequestedVisibility.public (The resolved @@ -4968,16 +5224,19 @@ def sharing_create_shared_link_with_settings(self, path, settings=None): If this raises, ApiError will contain: :class:`dropbox.sharing.CreateSharedLinkWithSettingsError` """ - arg = sharing.CreateSharedLinkWithSettingsArg(path, settings) + arg = sharing.CreateSharedLinkWithSettingsArg(path, + settings) r = self.request( sharing.create_shared_link_with_settings, - "sharing", + 'sharing', arg, None, ) return r - def sharing_get_file_metadata(self, file, actions=None): + def sharing_get_file_metadata(self, + file, + actions=None): """ Returns shared file metadata. @@ -4997,16 +5256,19 @@ def sharing_get_file_metadata(self, file, actions=None): If this raises, ApiError will contain: :class:`dropbox.sharing.GetFileMetadataError` """ - arg = sharing.GetFileMetadataArg(file, actions) + arg = sharing.GetFileMetadataArg(file, + actions) r = self.request( sharing.get_file_metadata, - "sharing", + 'sharing', arg, None, ) return r - def sharing_get_file_metadata_batch(self, files, actions=None): + def sharing_get_file_metadata_batch(self, + files, + actions=None): """ Returns shared file metadata. @@ -5026,16 +5288,19 @@ def sharing_get_file_metadata_batch(self, files, actions=None): If this raises, ApiError will contain: :class:`dropbox.sharing.SharingUserError` """ - arg = sharing.GetFileMetadataBatchArg(files, actions) + arg = sharing.GetFileMetadataBatchArg(files, + actions) r = self.request( sharing.get_file_metadata_batch, - "sharing", + 'sharing', arg, None, ) return r - def sharing_get_folder_metadata(self, shared_folder_id, actions=None): + def sharing_get_folder_metadata(self, + shared_folder_id, + actions=None): """ Returns shared folder metadata by its folder ID. @@ -5055,16 +5320,20 @@ def sharing_get_folder_metadata(self, shared_folder_id, actions=None): If this raises, ApiError will contain: :class:`dropbox.sharing.SharedFolderAccessError` """ - arg = sharing.GetMetadataArgs(shared_folder_id, actions) + arg = sharing.GetMetadataArgs(shared_folder_id, + actions) r = self.request( sharing.get_folder_metadata, - "sharing", + 'sharing', arg, None, ) return r - def sharing_get_shared_link_file(self, url, path=None, link_password=None): + def sharing_get_shared_link_file(self, + url, + path=None, + link_password=None): """ Download the shared link's file from a user's Dropbox. This is a download-style endpoint that returns the file content. @@ -5094,18 +5363,22 @@ def sharing_get_shared_link_file(self, url, path=None, link_password=None): `_ context manager to ensure this. """ - arg = sharing.GetSharedLinkMetadataArg(url, path, link_password) + arg = sharing.GetSharedLinkMetadataArg(url, + path, + link_password) r = self.request( sharing.get_shared_link_file, - "sharing", + 'sharing', arg, None, ) return r - def sharing_get_shared_link_file_to_file( - self, download_path, url, path=None, link_password=None - ): + def sharing_get_shared_link_file_to_file(self, + download_path, + url, + path=None, + link_password=None): """ Download the shared link's file from a user's Dropbox. This is a download-style endpoint that returns the file content. @@ -5129,17 +5402,22 @@ def sharing_get_shared_link_file_to_file( If this raises, ApiError will contain: :class:`dropbox.sharing.GetSharedLinkFileError` """ - arg = sharing.GetSharedLinkMetadataArg(url, path, link_password) + arg = sharing.GetSharedLinkMetadataArg(url, + path, + link_password) r = self.request( sharing.get_shared_link_file, - "sharing", + 'sharing', arg, None, ) self._save_body_to_file(download_path, r[1]) return r[0] - def sharing_get_shared_link_metadata(self, url, path=None, link_password=None): + def sharing_get_shared_link_metadata(self, + url, + path=None, + link_password=None): """ Get the shared link's metadata. @@ -5157,16 +5435,19 @@ def sharing_get_shared_link_metadata(self, url, path=None, link_password=None): :type link_password: Nullable[str] :rtype: :class:`dropbox.sharing.SharedLinkMetadata` """ - arg = sharing.GetSharedLinkMetadataArg(url, path, link_password) + arg = sharing.GetSharedLinkMetadataArg(url, + path, + link_password) r = self.request( sharing.get_shared_link_metadata, - "sharing", + 'sharing', arg, None, ) return r - def sharing_get_shared_links(self, path=None): + def sharing_get_shared_links(self, + path=None): """ DEPRECATED: Use list_shared_links instead. This endpoint will be retired in October 2026. Returns a list of :class:`dropbox.sharing.LinkMetadata` @@ -5188,19 +5469,23 @@ def sharing_get_shared_links(self, path=None): :class:`dropbox.sharing.GetSharedLinksError` """ warnings.warn( - "get_shared_links is deprecated.", + 'get_shared_links is deprecated.', DeprecationWarning, ) arg = sharing.GetSharedLinksArg(path) r = self.request( sharing.get_shared_links, - "sharing", + 'sharing', arg, None, ) return r - def sharing_list_file_members(self, file, actions=None, include_inherited=True, limit=100): + def sharing_list_file_members(self, + file, + actions=None, + include_inherited=True, + limit=100): """ Use to obtain the members who have been invited to a file, both inherited and uninherited members. @@ -5224,16 +5509,21 @@ def sharing_list_file_members(self, file, actions=None, include_inherited=True, If this raises, ApiError will contain: :class:`dropbox.sharing.ListFileMembersError` """ - arg = sharing.ListFileMembersArg(file, actions, include_inherited, limit) + arg = sharing.ListFileMembersArg(file, + actions, + include_inherited, + limit) r = self.request( sharing.list_file_members, - "sharing", + 'sharing', arg, None, ) return r - def sharing_list_file_members_batch(self, files, limit=1000): + def sharing_list_file_members_batch(self, + files, + limit=1000): """ Get members of multiple files at once. The arguments to this route are more limited, and the limit on query result size per file is more @@ -5255,16 +5545,18 @@ def sharing_list_file_members_batch(self, files, limit=1000): If this raises, ApiError will contain: :class:`dropbox.sharing.SharingUserError` """ - arg = sharing.ListFileMembersBatchArg(files, limit) + arg = sharing.ListFileMembersBatchArg(files, + limit) r = self.request( sharing.list_file_members_batch, - "sharing", + 'sharing', arg, None, ) return r - def sharing_list_file_members_continue(self, cursor): + def sharing_list_file_members_continue(self, + cursor): """ Once a cursor has been retrieved from :meth:`sharing_list_file_members` or :meth:`sharing_list_file_members_batch`, use this to paginate through @@ -5287,13 +5579,17 @@ def sharing_list_file_members_continue(self, cursor): arg = sharing.ListFileMembersContinueArg(cursor) r = self.request( sharing.list_file_members_continue, - "sharing", + 'sharing', arg, None, ) return r - def sharing_list_folder_members(self, shared_folder_id, actions=None, limit=1000, path=None): + def sharing_list_folder_members(self, + shared_folder_id, + actions=None, + limit=1000, + path=None): """ Returns shared folder membership by its folder ID. @@ -5314,16 +5610,20 @@ def sharing_list_folder_members(self, shared_folder_id, actions=None, limit=1000 If this raises, ApiError will contain: :class:`dropbox.sharing.SharedFolderAccessError` """ - arg = sharing.ListFolderMembersArgs(shared_folder_id, actions, limit, path) + arg = sharing.ListFolderMembersArgs(shared_folder_id, + actions, + limit, + path) r = self.request( sharing.list_folder_members, - "sharing", + 'sharing', arg, None, ) return r - def sharing_list_folder_members_continue(self, cursor): + def sharing_list_folder_members_continue(self, + cursor): """ Once a cursor has been retrieved from :meth:`sharing_list_folder_members`, use this to paginate through all @@ -5345,13 +5645,15 @@ def sharing_list_folder_members_continue(self, cursor): arg = sharing.ListFolderMembersContinueArg(cursor) r = self.request( sharing.list_folder_members_continue, - "sharing", + 'sharing', arg, None, ) return r - def sharing_list_folders(self, limit=1000, actions=None): + def sharing_list_folders(self, + limit=1000, + actions=None): """ Return the list of all shared folders the current user has access to. @@ -5367,16 +5669,18 @@ def sharing_list_folders(self, limit=1000, actions=None): :type actions: Nullable[List[:class:`dropbox.sharing.FolderAction`]] :rtype: :class:`dropbox.sharing.ListFoldersResult` """ - arg = sharing.ListFoldersArgs(limit, actions) + arg = sharing.ListFoldersArgs(limit, + actions) r = self.request( sharing.list_folders, - "sharing", + 'sharing', arg, None, ) return r - def sharing_list_folders_continue(self, cursor): + def sharing_list_folders_continue(self, + cursor): """ Once a cursor has been retrieved from :meth:`sharing_list_folders`, use this to paginate through all shared folders. The cursor must come from a @@ -5398,13 +5702,15 @@ def sharing_list_folders_continue(self, cursor): arg = sharing.ListFoldersContinueArg(cursor) r = self.request( sharing.list_folders_continue, - "sharing", + 'sharing', arg, None, ) return r - def sharing_list_mountable_folders(self, limit=1000, actions=None): + def sharing_list_mountable_folders(self, + limit=1000, + actions=None): """ Return the list of all shared folders the current user can mount or unmount. @@ -5421,16 +5727,18 @@ def sharing_list_mountable_folders(self, limit=1000, actions=None): :type actions: Nullable[List[:class:`dropbox.sharing.FolderAction`]] :rtype: :class:`dropbox.sharing.ListFoldersResult` """ - arg = sharing.ListFoldersArgs(limit, actions) + arg = sharing.ListFoldersArgs(limit, + actions) r = self.request( sharing.list_mountable_folders, - "sharing", + 'sharing', arg, None, ) return r - def sharing_list_mountable_folders_continue(self, cursor): + def sharing_list_mountable_folders_continue(self, + cursor): """ Once a cursor has been retrieved from :meth:`sharing_list_mountable_folders`, use this to paginate through all @@ -5453,13 +5761,15 @@ def sharing_list_mountable_folders_continue(self, cursor): arg = sharing.ListFoldersContinueArg(cursor) r = self.request( sharing.list_mountable_folders_continue, - "sharing", + 'sharing', arg, None, ) return r - def sharing_list_received_files(self, limit=100, actions=None): + def sharing_list_received_files(self, + limit=100, + actions=None): """ Returns a list of all files shared with current user. @@ -5480,16 +5790,18 @@ def sharing_list_received_files(self, limit=100, actions=None): If this raises, ApiError will contain: :class:`dropbox.sharing.SharingUserError` """ - arg = sharing.ListFilesArg(limit, actions) + arg = sharing.ListFilesArg(limit, + actions) r = self.request( sharing.list_received_files, - "sharing", + 'sharing', arg, None, ) return r - def sharing_list_received_files_continue(self, cursor): + def sharing_list_received_files_continue(self, + cursor): """ Get more results with a cursor from :meth:`sharing_list_received_files`. @@ -5507,13 +5819,16 @@ def sharing_list_received_files_continue(self, cursor): arg = sharing.ListFilesContinueArg(cursor) r = self.request( sharing.list_received_files_continue, - "sharing", + 'sharing', arg, None, ) return r - def sharing_list_shared_links(self, path=None, cursor=None, direct_only=None): + def sharing_list_shared_links(self, + path=None, + cursor=None, + direct_only=None): """ List shared links of this user. If no path is given, returns a list of all shared links for the current user. For members of business teams @@ -5540,16 +5855,21 @@ def sharing_list_shared_links(self, path=None, cursor=None, direct_only=None): If this raises, ApiError will contain: :class:`dropbox.sharing.ListSharedLinksError` """ - arg = sharing.ListSharedLinksArg(path, cursor, direct_only) + arg = sharing.ListSharedLinksArg(path, + cursor, + direct_only) r = self.request( sharing.list_shared_links, - "sharing", + 'sharing', arg, None, ) return r - def sharing_modify_shared_link_settings(self, url, settings, remove_expiration=False): + def sharing_modify_shared_link_settings(self, + url, + settings, + remove_expiration=False): """ Modify the shared link's settings. If the requested visibility conflict with the shared links policy of the team or the shared folder (in case @@ -5575,16 +5895,19 @@ def sharing_modify_shared_link_settings(self, url, settings, remove_expiration=F If this raises, ApiError will contain: :class:`dropbox.sharing.ModifySharedLinkSettingsError` """ - arg = sharing.ModifySharedLinkSettingsArgs(url, settings, remove_expiration) + arg = sharing.ModifySharedLinkSettingsArgs(url, + settings, + remove_expiration) r = self.request( sharing.modify_shared_link_settings, - "sharing", + 'sharing', arg, None, ) return r - def sharing_mount_folder(self, shared_folder_id): + def sharing_mount_folder(self, + shared_folder_id): """ The current user mounts the designated folder. Mount a shared folder for a user after they have been added as a member. Once mounted, the shared @@ -5604,13 +5927,14 @@ def sharing_mount_folder(self, shared_folder_id): arg = sharing.MountFolderArg(shared_folder_id) r = self.request( sharing.mount_folder, - "sharing", + 'sharing', arg, None, ) return r - def sharing_relinquish_access(self, file_id): + def sharing_relinquish_access(self, + file_id): """ Removes all self-removable access from a file or folder for the current user. Best-effort and idempotent: attempts to drop link-visitor @@ -5630,13 +5954,14 @@ def sharing_relinquish_access(self, file_id): arg = sharing.RelinquishAccessArg(file_id) r = self.request( sharing.relinquish_access, - "sharing", + 'sharing', arg, None, ) return r - def sharing_relinquish_file_membership(self, file): + def sharing_relinquish_file_membership(self, + file): """ The current user relinquishes their membership in the designated file. @@ -5654,13 +5979,15 @@ def sharing_relinquish_file_membership(self, file): arg = sharing.RelinquishFileMembershipArg(file) r = self.request( sharing.relinquish_file_membership, - "sharing", + 'sharing', arg, None, ) return None - def sharing_relinquish_folder_membership(self, shared_folder_id, leave_a_copy=False): + def sharing_relinquish_folder_membership(self, + shared_folder_id, + leave_a_copy=False): """ The current user relinquishes their membership in the designated shared folder and will no longer have access to the folder. A folder owner @@ -5683,16 +6010,19 @@ def sharing_relinquish_folder_membership(self, shared_folder_id, leave_a_copy=Fa If this raises, ApiError will contain: :class:`dropbox.sharing.RelinquishFolderMembershipError` """ - arg = sharing.RelinquishFolderMembershipArg(shared_folder_id, leave_a_copy) + arg = sharing.RelinquishFolderMembershipArg(shared_folder_id, + leave_a_copy) r = self.request( sharing.relinquish_folder_membership, - "sharing", + 'sharing', arg, None, ) return r - def sharing_remove_file_member(self, file, member): + def sharing_remove_file_member(self, + file, + member): """ Identical to remove_file_member_2 but with less information returned. @@ -5713,19 +6043,22 @@ def sharing_remove_file_member(self, file, member): :class:`dropbox.sharing.RemoveFileMemberError` """ warnings.warn( - "remove_file_member is deprecated.", + 'remove_file_member is deprecated.', DeprecationWarning, ) - arg = sharing.RemoveFileMemberArg(file, member) + arg = sharing.RemoveFileMemberArg(file, + member) r = self.request( sharing.remove_file_member, - "sharing", + 'sharing', arg, None, ) return r - def sharing_remove_file_member_2(self, file, member): + def sharing_remove_file_member_2(self, + file, + member): """ Removes a specified member from the file. @@ -5745,16 +6078,20 @@ def sharing_remove_file_member_2(self, file, member): If this raises, ApiError will contain: :class:`dropbox.sharing.RemoveFileMemberError` """ - arg = sharing.RemoveFileMemberArg(file, member) + arg = sharing.RemoveFileMemberArg(file, + member) r = self.request( sharing.remove_file_member_2, - "sharing", + 'sharing', arg, None, ) return r - def sharing_remove_folder_member(self, shared_folder_id, member, leave_a_copy): + def sharing_remove_folder_member(self, + shared_folder_id, + member, + leave_a_copy): """ Allows an owner or editor (if the ACL update policy allows) of a shared folder to remove another member. @@ -5778,16 +6115,19 @@ def sharing_remove_folder_member(self, shared_folder_id, member, leave_a_copy): If this raises, ApiError will contain: :class:`dropbox.sharing.RemoveFolderMemberError` """ - arg = sharing.RemoveFolderMemberArg(shared_folder_id, member, leave_a_copy) + arg = sharing.RemoveFolderMemberArg(shared_folder_id, + member, + leave_a_copy) r = self.request( sharing.remove_folder_member, - "sharing", + 'sharing', arg, None, ) return r - def sharing_revoke_shared_link(self, url): + def sharing_revoke_shared_link(self, + url): """ Revoke a shared link. Note that even after revoking a shared link to a file, the file may be accessible if there are shared links leading to @@ -5809,15 +6149,15 @@ def sharing_revoke_shared_link(self, url): arg = sharing.RevokeSharedLinkArg(url) r = self.request( sharing.revoke_shared_link, - "sharing", + 'sharing', arg, None, ) return None - def sharing_set_access_inheritance( - self, shared_folder_id, access_inheritance=sharing.AccessInheritance.inherit - ): + def sharing_set_access_inheritance(self, + shared_folder_id, + access_inheritance=sharing.AccessInheritance.inherit): """ Change the inheritance policy of an existing Shared Folder. Only permitted for shared folders in a shared team root. If a @@ -5839,27 +6179,26 @@ def sharing_set_access_inheritance( If this raises, ApiError will contain: :class:`dropbox.sharing.SetAccessInheritanceError` """ - arg = sharing.SetAccessInheritanceArg(shared_folder_id, access_inheritance) + arg = sharing.SetAccessInheritanceArg(shared_folder_id, + access_inheritance) r = self.request( sharing.set_access_inheritance, - "sharing", + 'sharing', arg, None, ) return r - def sharing_share_folder( - self, - path, - acl_update_policy=None, - force_async=False, - member_policy=None, - shared_link_policy=None, - viewer_info_policy=None, - access_inheritance=sharing.AccessInheritance.inherit, - actions=None, - link_settings=None, - ): + def sharing_share_folder(self, + path, + acl_update_policy=None, + force_async=False, + member_policy=None, + shared_link_policy=None, + viewer_info_policy=None, + access_inheritance=sharing.AccessInheritance.inherit, + actions=None, + link_settings=None): """ Share a folder with collaborators. Most sharing will be completed synchronously. Large folders will be completed asynchronously. To make @@ -5884,26 +6223,26 @@ def sharing_share_folder( If this raises, ApiError will contain: :class:`dropbox.sharing.ShareFolderError` """ - arg = sharing.ShareFolderArg( - path, - acl_update_policy, - force_async, - member_policy, - shared_link_policy, - viewer_info_policy, - access_inheritance, - actions, - link_settings, - ) + arg = sharing.ShareFolderArg(path, + acl_update_policy, + force_async, + member_policy, + shared_link_policy, + viewer_info_policy, + access_inheritance, + actions, + link_settings) r = self.request( sharing.share_folder, - "sharing", + 'sharing', arg, None, ) return r - def sharing_transfer_folder(self, shared_folder_id, to_dropbox_id): + def sharing_transfer_folder(self, + shared_folder_id, + to_dropbox_id): """ Transfer ownership of a shared folder to a member of the shared folder. User must have ``AccessLevel.owner`` access to the shared folder to @@ -5923,16 +6262,18 @@ def sharing_transfer_folder(self, shared_folder_id, to_dropbox_id): If this raises, ApiError will contain: :class:`dropbox.sharing.TransferFolderError` """ - arg = sharing.TransferFolderArg(shared_folder_id, to_dropbox_id) + arg = sharing.TransferFolderArg(shared_folder_id, + to_dropbox_id) r = self.request( sharing.transfer_folder, - "sharing", + 'sharing', arg, None, ) return None - def sharing_unmount_folder(self, shared_folder_id): + def sharing_unmount_folder(self, + shared_folder_id): """ The current user unmounts the designated folder. They can re-mount the folder at a later time using :meth:`sharing_mount_folder`. @@ -5951,13 +6292,14 @@ def sharing_unmount_folder(self, shared_folder_id): arg = sharing.UnmountFolderArg(shared_folder_id) r = self.request( sharing.unmount_folder, - "sharing", + 'sharing', arg, None, ) return None - def sharing_unshare_file(self, file): + def sharing_unshare_file(self, + file): """ Remove all members from this file. Does not remove inherited members. @@ -5975,13 +6317,15 @@ def sharing_unshare_file(self, file): arg = sharing.UnshareFileArg(file) r = self.request( sharing.unshare_file, - "sharing", + 'sharing', arg, None, ) return None - def sharing_unshare_folder(self, shared_folder_id, leave_a_copy=False): + def sharing_unshare_folder(self, + shared_folder_id, + leave_a_copy=False): """ Allows a shared folder owner to unshare the folder. Unshare will not work in following cases: The shared folder contains shared folders OR @@ -6005,16 +6349,20 @@ def sharing_unshare_folder(self, shared_folder_id, leave_a_copy=False): If this raises, ApiError will contain: :class:`dropbox.sharing.UnshareFolderError` """ - arg = sharing.UnshareFolderArg(shared_folder_id, leave_a_copy) + arg = sharing.UnshareFolderArg(shared_folder_id, + leave_a_copy) r = self.request( sharing.unshare_folder, - "sharing", + 'sharing', arg, None, ) return r - def sharing_update_file_member(self, file, member, access_level): + def sharing_update_file_member(self, + file, + member, + access_level): """ Changes a member's access on a shared file. @@ -6033,18 +6381,22 @@ def sharing_update_file_member(self, file, member, access_level): If this raises, ApiError will contain: :class:`dropbox.sharing.FileMemberActionError` """ - arg = sharing.UpdateFileMemberArgs(file, member, access_level) + arg = sharing.UpdateFileMemberArgs(file, + member, + access_level) r = self.request( sharing.update_file_member, - "sharing", + 'sharing', arg, None, ) return r - def sharing_update_file_policy( - self, file, actions=None, link_settings=None, viewer_info_policy=None - ): + def sharing_update_file_policy(self, + file, + actions=None, + link_settings=None, + viewer_info_policy=None): """ Update the viewer info policy of a file. @@ -6070,16 +6422,22 @@ def sharing_update_file_policy( If this raises, ApiError will contain: :class:`dropbox.sharing.UpdateFilePolicyError` """ - arg = sharing.UpdateFilePolicyArg(file, actions, link_settings, viewer_info_policy) + arg = sharing.UpdateFilePolicyArg(file, + actions, + link_settings, + viewer_info_policy) r = self.request( sharing.update_file_policy, - "sharing", + 'sharing', arg, None, ) return r - def sharing_update_folder_member(self, shared_folder_id, member, access_level): + def sharing_update_folder_member(self, + shared_folder_id, + member, + access_level): """ Allows an owner or editor of a shared folder to update another member's permissions. @@ -6101,25 +6459,25 @@ def sharing_update_folder_member(self, shared_folder_id, member, access_level): If this raises, ApiError will contain: :class:`dropbox.sharing.UpdateFolderMemberError` """ - arg = sharing.UpdateFolderMemberArg(shared_folder_id, member, access_level) + arg = sharing.UpdateFolderMemberArg(shared_folder_id, + member, + access_level) r = self.request( sharing.update_folder_member, - "sharing", + 'sharing', arg, None, ) return r - def sharing_update_folder_policy( - self, - shared_folder_id, - member_policy=None, - acl_update_policy=None, - viewer_info_policy=None, - shared_link_policy=None, - link_settings=None, - actions=None, - ): + def sharing_update_folder_policy(self, + shared_folder_id, + member_policy=None, + acl_update_policy=None, + viewer_info_policy=None, + shared_link_policy=None, + link_settings=None, + actions=None): """ Update the sharing policies for a shared folder. User must have ``AccessLevel.owner`` access to the shared folder to update its @@ -6156,18 +6514,16 @@ def sharing_update_folder_policy( If this raises, ApiError will contain: :class:`dropbox.sharing.UpdateFolderPolicyError` """ - arg = sharing.UpdateFolderPolicyArg( - shared_folder_id, - member_policy, - acl_update_policy, - viewer_info_policy, - shared_link_policy, - link_settings, - actions, - ) + arg = sharing.UpdateFolderPolicyArg(shared_folder_id, + member_policy, + acl_update_policy, + viewer_info_policy, + shared_link_policy, + link_settings, + actions) r = self.request( sharing.update_folder_policy, - "sharing", + 'sharing', arg, None, ) @@ -6182,7 +6538,8 @@ def sharing_update_folder_policy( # ------------------------------------------ # Routes in users namespace - def users_features_get_values(self, features): + def users_features_get_values(self, + features): """ Get a list of feature values that may be configured for the current account. @@ -6203,13 +6560,14 @@ def users_features_get_values(self, features): arg = users.UserFeaturesGetValuesBatchArg(features) r = self.request( users.features_get_values, - "users", + 'users', arg, None, ) return r - def users_get_account(self, account_id): + def users_get_account(self, + account_id): """ Get information about a user's account. @@ -6227,13 +6585,14 @@ def users_get_account(self, account_id): arg = users.GetAccountArg(account_id) r = self.request( users.get_account, - "users", + 'users', arg, None, ) return r - def users_get_account_batch(self, account_ids): + def users_get_account_batch(self, + account_ids): """ Get information about multiple user accounts. At most 300 accounts may be queried per request. @@ -6253,7 +6612,7 @@ def users_get_account_batch(self, account_ids): arg = users.GetAccountBatchArg(account_ids) r = self.request( users.get_account_batch, - "users", + 'users', arg, None, ) @@ -6271,7 +6630,7 @@ def users_get_current_account(self): arg = None r = self.request( users.get_current_account, - "users", + 'users', arg, None, ) @@ -6289,8 +6648,9 @@ def users_get_space_usage(self): arg = None r = self.request( users.get_space_usage, - "users", + 'users', arg, None, ) return r + diff --git a/dropbox/base_team.py b/dropbox/base_team.py index c82013e5..bd8beb07 100644 --- a/dropbox/base_team.py +++ b/dropbox/base_team.py @@ -51,7 +51,10 @@ def request(self, route, namespace, request_arg, request_binary, timeout=None): # ------------------------------------------ # Routes in file_properties namespace - def file_properties_templates_add_for_team(self, name, description, fields): + def file_properties_templates_add_for_team(self, + name, + description, + fields): """ Add a template associated with a team. See :meth:`file_properties_properties_add` to add properties to a file or @@ -66,16 +69,19 @@ def file_properties_templates_add_for_team(self, name, description, fields): If this raises, ApiError will contain: :class:`dropbox.file_properties.ModifyTemplateError` """ - arg = file_properties.AddTemplateArg(name, description, fields) + arg = file_properties.AddTemplateArg(name, + description, + fields) r = self.request( file_properties.templates_add_for_team, - "file_properties", + 'file_properties', arg, None, ) return r - def file_properties_templates_get_for_team(self, template_id): + def file_properties_templates_get_for_team(self, + template_id): """ Get the schema for a specified template. @@ -95,7 +101,7 @@ def file_properties_templates_get_for_team(self, template_id): arg = file_properties.GetTemplateArg(template_id) r = self.request( file_properties.templates_get_for_team, - "file_properties", + 'file_properties', arg, None, ) @@ -118,13 +124,14 @@ def file_properties_templates_list_for_team(self): arg = None r = self.request( file_properties.templates_list_for_team, - "file_properties", + 'file_properties', arg, None, ) return r - def file_properties_templates_remove_for_team(self, template_id): + def file_properties_templates_remove_for_team(self, + template_id): """ Permanently removes the specified template created from :meth:`file_properties_templates_add_for_user`. All properties @@ -147,15 +154,17 @@ def file_properties_templates_remove_for_team(self, template_id): arg = file_properties.RemoveTemplateArg(template_id) r = self.request( file_properties.templates_remove_for_team, - "file_properties", + 'file_properties', arg, None, ) return None - def file_properties_templates_update_for_team( - self, template_id, name=None, description=None, add_fields=None - ): + def file_properties_templates_update_for_team(self, + template_id, + name=None, + description=None, + add_fields=None): """ Update a template associated with a team. This route can update the template name, the template description and add optional properties to @@ -183,10 +192,13 @@ def file_properties_templates_update_for_team( If this raises, ApiError will contain: :class:`dropbox.file_properties.ModifyTemplateError` """ - arg = file_properties.UpdateTemplateArg(template_id, name, description, add_fields) + arg = file_properties.UpdateTemplateArg(template_id, + name, + description, + add_fields) r = self.request( file_properties.templates_update_for_team, - "file_properties", + 'file_properties', arg, None, ) @@ -213,13 +225,11 @@ def file_properties_templates_update_for_team( # ------------------------------------------ # Routes in team namespace - def team_devices_list_member_devices( - self, - team_member_id, - include_web_sessions=True, - include_desktop_clients=True, - include_mobile_clients=True, - ): + def team_devices_list_member_devices(self, + team_member_id, + include_web_sessions=True, + include_desktop_clients=True, + include_mobile_clients=True): """ List all device sessions of a team's member. @@ -243,27 +253,23 @@ def team_devices_list_member_devices( If this raises, ApiError will contain: :class:`dropbox.team.ListMemberDevicesError` """ - arg = team.ListMemberDevicesArg( - team_member_id, - include_web_sessions, - include_desktop_clients, - include_mobile_clients, - ) + arg = team.ListMemberDevicesArg(team_member_id, + include_web_sessions, + include_desktop_clients, + include_mobile_clients) r = self.request( team.devices_list_member_devices, - "team", + 'team', arg, None, ) return r - def team_devices_list_members_devices( - self, - cursor=None, - include_web_sessions=True, - include_desktop_clients=True, - include_mobile_clients=True, - ): + def team_devices_list_members_devices(self, + cursor=None, + include_web_sessions=True, + include_desktop_clients=True, + include_mobile_clients=True): """ List all device sessions of a team. Permission : Team member file access. @@ -292,27 +298,23 @@ def team_devices_list_members_devices( If this raises, ApiError will contain: :class:`dropbox.team.ListMembersDevicesError` """ - arg = team.ListMembersDevicesArg( - cursor, - include_web_sessions, - include_desktop_clients, - include_mobile_clients, - ) + arg = team.ListMembersDevicesArg(cursor, + include_web_sessions, + include_desktop_clients, + include_mobile_clients) r = self.request( team.devices_list_members_devices, - "team", + 'team', arg, None, ) return r - def team_devices_list_team_devices( - self, - cursor=None, - include_web_sessions=True, - include_desktop_clients=True, - include_mobile_clients=True, - ): + def team_devices_list_team_devices(self, + cursor=None, + include_web_sessions=True, + include_desktop_clients=True, + include_mobile_clients=True): """ List all device sessions of a team. Permission : Team member file access. @@ -342,24 +344,23 @@ def team_devices_list_team_devices( :class:`dropbox.team.ListTeamDevicesError` """ warnings.warn( - "devices/list_team_devices is deprecated.", + 'devices/list_team_devices is deprecated.', DeprecationWarning, ) - arg = team.ListTeamDevicesArg( - cursor, - include_web_sessions, - include_desktop_clients, - include_mobile_clients, - ) + arg = team.ListTeamDevicesArg(cursor, + include_web_sessions, + include_desktop_clients, + include_mobile_clients) r = self.request( team.devices_list_team_devices, - "team", + 'team', arg, None, ) return r - def team_devices_revoke_device_session(self, arg): + def team_devices_revoke_device_session(self, + arg): """ Revoke a device session of a team's member. @@ -375,13 +376,14 @@ def team_devices_revoke_device_session(self, arg): """ r = self.request( team.devices_revoke_device_session, - "team", + 'team', arg, None, ) return None - def team_devices_revoke_device_session_batch(self, revoke_devices): + def team_devices_revoke_device_session_batch(self, + revoke_devices): """ Revoke a list of device sessions of team members. @@ -398,13 +400,14 @@ def team_devices_revoke_device_session_batch(self, revoke_devices): arg = team.RevokeDeviceSessionBatchArg(revoke_devices) r = self.request( team.devices_revoke_device_session_batch, - "team", + 'team', arg, None, ) return r - def team_features_get_values(self, features): + def team_features_get_values(self, + features): """ Get the values for one or more features. This route allows you to check your account's capability for what feature you can access or what value @@ -426,7 +429,7 @@ def team_features_get_values(self, features): arg = team.FeaturesGetValuesBatchArg(features) r = self.request( team.features_get_values, - "team", + 'team', arg, None, ) @@ -444,19 +447,17 @@ def team_get_info(self): arg = None r = self.request( team.get_info, - "team", + 'team', arg, None, ) return r - def team_groups_create( - self, - group_name, - add_creator_as_owner=False, - group_external_id=None, - group_management_type=None, - ): + def team_groups_create(self, + group_name, + add_creator_as_owner=False, + group_external_id=None, + group_management_type=None): """ Creates a new, empty group, with a requested name. Permission : Team member management. @@ -480,18 +481,20 @@ def team_groups_create( If this raises, ApiError will contain: :class:`dropbox.team.GroupCreateError` """ - arg = team.GroupCreateArg( - group_name, add_creator_as_owner, group_external_id, group_management_type - ) + arg = team.GroupCreateArg(group_name, + add_creator_as_owner, + group_external_id, + group_management_type) r = self.request( team.groups_create, - "team", + 'team', arg, None, ) return r - def team_groups_delete(self, arg): + def team_groups_delete(self, + arg): """ Deletes a group. The group is deleted immediately. However the revoking of group-owned resources may take additional time. Use the @@ -512,13 +515,14 @@ def team_groups_delete(self, arg): """ r = self.request( team.groups_delete, - "team", + 'team', arg, None, ) return r - def team_groups_get_info(self, arg): + def team_groups_get_info(self, + arg): """ Retrieves information about one or more groups. Note that the optional field ``GroupFullInfo.members`` is not returned for system-managed @@ -538,13 +542,14 @@ def team_groups_get_info(self, arg): """ r = self.request( team.groups_get_info, - "team", + 'team', arg, None, ) return r - def team_groups_job_status_get(self, async_job_id): + def team_groups_job_status_get(self, + async_job_id): """ Once an async_job_id is returned from :meth:`team_groups_delete`, :meth:`team_groups_members_add` , or :meth:`team_groups_members_remove` @@ -566,13 +571,14 @@ def team_groups_job_status_get(self, async_job_id): arg = async_.PollArg(async_job_id) r = self.request( team.groups_job_status_get, - "team", + 'team', arg, None, ) return r - def team_groups_list(self, limit=1000): + def team_groups_list(self, + limit=1000): """ Lists groups on a team. Permission : Team Information. @@ -586,13 +592,14 @@ def team_groups_list(self, limit=1000): arg = team.GroupsListArg(limit) r = self.request( team.groups_list, - "team", + 'team', arg, None, ) return r - def team_groups_list_continue(self, cursor): + def team_groups_list_continue(self, + cursor): """ Once a cursor has been retrieved from :meth:`team_groups_list`, use this to paginate through all groups. Permission : Team Information. @@ -611,13 +618,16 @@ def team_groups_list_continue(self, cursor): arg = team.GroupsListContinueArg(cursor) r = self.request( team.groups_list_continue, - "team", + 'team', arg, None, ) return r - def team_groups_members_add(self, group, members, return_members=True): + def team_groups_members_add(self, + group, + members, + return_members=True): """ Adds members to a group. The members are added immediately. However the granting of group-owned resources may take additional time. Use the @@ -637,16 +647,20 @@ def team_groups_members_add(self, group, members, return_members=True): If this raises, ApiError will contain: :class:`dropbox.team.GroupMembersAddError` """ - arg = team.GroupMembersAddArg(group, members, return_members) + arg = team.GroupMembersAddArg(group, + members, + return_members) r = self.request( team.groups_members_add, - "team", + 'team', arg, None, ) return r - def team_groups_members_list(self, group, limit=1000): + def team_groups_members_list(self, + group, + limit=1000): """ Lists members of a group. Permission : Team Information. @@ -663,16 +677,18 @@ def team_groups_members_list(self, group, limit=1000): If this raises, ApiError will contain: :class:`dropbox.team.GroupSelectorError` """ - arg = team.GroupsMembersListArg(group, limit) + arg = team.GroupsMembersListArg(group, + limit) r = self.request( team.groups_members_list, - "team", + 'team', arg, None, ) return r - def team_groups_members_list_continue(self, cursor): + def team_groups_members_list_continue(self, + cursor): """ Once a cursor has been retrieved from :meth:`team_groups_members_list`, use this to paginate through all members of the group. Permission : Team @@ -692,13 +708,16 @@ def team_groups_members_list_continue(self, cursor): arg = team.GroupsMembersListContinueArg(cursor) r = self.request( team.groups_members_list_continue, - "team", + 'team', arg, None, ) return r - def team_groups_members_remove(self, group, users, return_members=True): + def team_groups_members_remove(self, + group, + users, + return_members=True): """ Removes members from a group. The members are removed immediately. However the revoking of group-owned resources may take additional time. @@ -720,16 +739,22 @@ def team_groups_members_remove(self, group, users, return_members=True): If this raises, ApiError will contain: :class:`dropbox.team.GroupMembersRemoveError` """ - arg = team.GroupMembersRemoveArg(group, users, return_members) + arg = team.GroupMembersRemoveArg(group, + users, + return_members) r = self.request( team.groups_members_remove, - "team", + 'team', arg, None, ) return r - def team_groups_members_set_access_type(self, group, user, access_type, return_members=True): + def team_groups_members_set_access_type(self, + group, + user, + access_type, + return_members=True): """ Sets a member's access type in a group. Permission : Team member management. @@ -750,23 +775,24 @@ def team_groups_members_set_access_type(self, group, user, access_type, return_m If this raises, ApiError will contain: :class:`dropbox.team.GroupMemberSetAccessTypeError` """ - arg = team.GroupMembersSetAccessTypeArg(group, user, access_type, return_members) + arg = team.GroupMembersSetAccessTypeArg(group, + user, + access_type, + return_members) r = self.request( team.groups_members_set_access_type, - "team", + 'team', arg, None, ) return r - def team_groups_update( - self, - group, - return_members=True, - new_group_name=None, - new_group_external_id=None, - new_group_management_type=None, - ): + def team_groups_update(self, + group, + return_members=True, + new_group_name=None, + new_group_external_id=None, + new_group_management_type=None): """ Updates a group's name and/or external ID. Permission : Team member management. @@ -793,24 +819,25 @@ def team_groups_update( If this raises, ApiError will contain: :class:`dropbox.team.GroupUpdateError` """ - arg = team.GroupUpdateArgs( - group, - return_members, - new_group_name, - new_group_external_id, - new_group_management_type, - ) + arg = team.GroupUpdateArgs(group, + return_members, + new_group_name, + new_group_external_id, + new_group_management_type) r = self.request( team.groups_update, - "team", + 'team', arg, None, ) return r - def team_legal_holds_create_policy( - self, name, members, description=None, start_date=None, end_date=None - ): + def team_legal_holds_create_policy(self, + name, + members, + description=None, + start_date=None, + end_date=None): """ Creates new legal hold policy. Note: Legal Holds is a paid add-on. Not all teams have the feature. Permission : Team member file access. @@ -834,16 +861,21 @@ def team_legal_holds_create_policy( If this raises, ApiError will contain: :class:`dropbox.team.LegalHoldsPolicyCreateError` """ - arg = team.LegalHoldsPolicyCreateArg(name, members, description, start_date, end_date) + arg = team.LegalHoldsPolicyCreateArg(name, + members, + description, + start_date, + end_date) r = self.request( team.legal_holds_create_policy, - "team", + 'team', arg, None, ) return r - def team_legal_holds_get_policy(self, id): + def team_legal_holds_get_policy(self, + id): """ Gets a legal hold by Id. Note: Legal Holds is a paid add-on. Not all teams have the feature. Permission : Team member file access. @@ -862,13 +894,14 @@ def team_legal_holds_get_policy(self, id): arg = team.LegalHoldsGetPolicyArg(id) r = self.request( team.legal_holds_get_policy, - "team", + 'team', arg, None, ) return r - def team_legal_holds_list_held_revisions(self, id): + def team_legal_holds_list_held_revisions(self, + id): """ List the file metadata that's under the hold. Note: Legal Holds is a paid add-on. Not all teams have the feature. Permission : Team member @@ -888,13 +921,15 @@ def team_legal_holds_list_held_revisions(self, id): arg = team.LegalHoldsListHeldRevisionsArg(id) r = self.request( team.legal_holds_list_held_revisions, - "team", + 'team', arg, None, ) return r - def team_legal_holds_list_held_revisions_continue(self, id, cursor=None): + def team_legal_holds_list_held_revisions_continue(self, + id, + cursor=None): """ Continue listing the file metadata that's under the hold. Note: Legal Holds is a paid add-on. Not all teams have the feature. Permission : @@ -915,16 +950,18 @@ def team_legal_holds_list_held_revisions_continue(self, id, cursor=None): If this raises, ApiError will contain: :class:`dropbox.team.LegalHoldsListHeldRevisionsError` """ - arg = team.LegalHoldsListHeldRevisionsContinueArg(id, cursor) + arg = team.LegalHoldsListHeldRevisionsContinueArg(id, + cursor) r = self.request( team.legal_holds_list_held_revisions_continue, - "team", + 'team', arg, None, ) return r - def team_legal_holds_list_policies(self, include_released=False): + def team_legal_holds_list_policies(self, + include_released=False): """ Lists legal holds on a team. Note: Legal Holds is a paid add-on. Not all teams have the feature. Permission : Team member file access. @@ -943,13 +980,14 @@ def team_legal_holds_list_policies(self, include_released=False): arg = team.LegalHoldsListPoliciesArg(include_released) r = self.request( team.legal_holds_list_policies, - "team", + 'team', arg, None, ) return r - def team_legal_holds_release_policy(self, id): + def team_legal_holds_release_policy(self, + id): """ Releases a legal hold by Id. Note: Legal Holds is a paid add-on. Not all teams have the feature. Permission : Team member file access. @@ -968,13 +1006,17 @@ def team_legal_holds_release_policy(self, id): arg = team.LegalHoldsPolicyReleaseArg(id) r = self.request( team.legal_holds_release_policy, - "team", + 'team', arg, None, ) return None - def team_legal_holds_update_policy(self, id, name=None, description=None, members=None): + def team_legal_holds_update_policy(self, + id, + name=None, + description=None, + members=None): """ Updates a legal hold. Note: Legal Holds is a paid add-on. Not all teams have the feature. Permission : Team member file access. @@ -996,16 +1038,20 @@ def team_legal_holds_update_policy(self, id, name=None, description=None, member If this raises, ApiError will contain: :class:`dropbox.team.LegalHoldsPolicyUpdateError` """ - arg = team.LegalHoldsPolicyUpdateArg(id, name, description, members) + arg = team.LegalHoldsPolicyUpdateArg(id, + name, + description, + members) r = self.request( team.legal_holds_update_policy, - "team", + 'team', arg, None, ) return r - def team_linked_apps_list_member_linked_apps(self, team_member_id): + def team_linked_apps_list_member_linked_apps(self, + team_member_id): """ List all linked applications of the team member. Note, this endpoint does not list any team-linked applications. @@ -1024,13 +1070,14 @@ def team_linked_apps_list_member_linked_apps(self, team_member_id): arg = team.ListMemberAppsArg(team_member_id) r = self.request( team.linked_apps_list_member_linked_apps, - "team", + 'team', arg, None, ) return r - def team_linked_apps_list_members_linked_apps(self, cursor=None): + def team_linked_apps_list_members_linked_apps(self, + cursor=None): """ List all applications linked to the team members' accounts. Note, this endpoint does not list any team-linked applications. @@ -1053,13 +1100,14 @@ def team_linked_apps_list_members_linked_apps(self, cursor=None): arg = team.ListMembersAppsArg(cursor) r = self.request( team.linked_apps_list_members_linked_apps, - "team", + 'team', arg, None, ) return r - def team_linked_apps_list_team_linked_apps(self, cursor=None): + def team_linked_apps_list_team_linked_apps(self, + cursor=None): """ List all applications linked to the team members' accounts. Note, this endpoint doesn't list any team-linked applications. @@ -1080,19 +1128,22 @@ def team_linked_apps_list_team_linked_apps(self, cursor=None): :class:`dropbox.team.ListTeamAppsError` """ warnings.warn( - "linked_apps/list_team_linked_apps is deprecated.", + 'linked_apps/list_team_linked_apps is deprecated.', DeprecationWarning, ) arg = team.ListTeamAppsArg(cursor) r = self.request( team.linked_apps_list_team_linked_apps, - "team", + 'team', arg, None, ) return r - def team_linked_apps_revoke_linked_app(self, app_id, team_member_id, keep_app_folder=True): + def team_linked_apps_revoke_linked_app(self, + app_id, + team_member_id, + keep_app_folder=True): """ Revoke a linked application of the team member. @@ -1113,16 +1164,19 @@ def team_linked_apps_revoke_linked_app(self, app_id, team_member_id, keep_app_fo If this raises, ApiError will contain: :class:`dropbox.team.RevokeLinkedAppError` """ - arg = team.RevokeLinkedApiAppArg(app_id, team_member_id, keep_app_folder) + arg = team.RevokeLinkedApiAppArg(app_id, + team_member_id, + keep_app_folder) r = self.request( team.linked_apps_revoke_linked_app, - "team", + 'team', arg, None, ) return None - def team_linked_apps_revoke_linked_app_batch(self, revoke_linked_app): + def team_linked_apps_revoke_linked_app_batch(self, + revoke_linked_app): """ Revoke a list of linked applications of the team members. @@ -1139,13 +1193,14 @@ def team_linked_apps_revoke_linked_app_batch(self, revoke_linked_app): arg = team.RevokeLinkedApiAppBatchArg(revoke_linked_app) r = self.request( team.linked_apps_revoke_linked_app_batch, - "team", + 'team', arg, None, ) return r - def team_member_space_limits_excluded_users_add(self, users=None): + def team_member_space_limits_excluded_users_add(self, + users=None): """ Add users to member space limits excluded users list. @@ -1163,13 +1218,14 @@ def team_member_space_limits_excluded_users_add(self, users=None): arg = team.ExcludedUsersUpdateArg(users) r = self.request( team.member_space_limits_excluded_users_add, - "team", + 'team', arg, None, ) return r - def team_member_space_limits_excluded_users_list(self, limit=1000): + def team_member_space_limits_excluded_users_list(self, + limit=1000): """ List member space limits excluded users. @@ -1187,13 +1243,14 @@ def team_member_space_limits_excluded_users_list(self, limit=1000): arg = team.ExcludedUsersListArg(limit) r = self.request( team.member_space_limits_excluded_users_list, - "team", + 'team', arg, None, ) return r - def team_member_space_limits_excluded_users_list_continue(self, cursor): + def team_member_space_limits_excluded_users_list_continue(self, + cursor): """ Continue listing member space limits excluded users. @@ -1211,13 +1268,14 @@ def team_member_space_limits_excluded_users_list_continue(self, cursor): arg = team.ExcludedUsersListContinueArg(cursor) r = self.request( team.member_space_limits_excluded_users_list_continue, - "team", + 'team', arg, None, ) return r - def team_member_space_limits_excluded_users_remove(self, users=None): + def team_member_space_limits_excluded_users_remove(self, + users=None): """ Remove users from member space limits excluded users list. @@ -1235,13 +1293,14 @@ def team_member_space_limits_excluded_users_remove(self, users=None): arg = team.ExcludedUsersUpdateArg(users) r = self.request( team.member_space_limits_excluded_users_remove, - "team", + 'team', arg, None, ) return r - def team_member_space_limits_get_custom_quota(self, users): + def team_member_space_limits_get_custom_quota(self, + users): """ Get users custom quota. A maximum of 1000 members can be specified in a single call. Note: to apply a custom space limit, a team admin needs to @@ -1262,13 +1321,14 @@ def team_member_space_limits_get_custom_quota(self, users): arg = team.CustomQuotaUsersArg(users) r = self.request( team.member_space_limits_get_custom_quota, - "team", + 'team', arg, None, ) return r - def team_member_space_limits_remove_custom_quota(self, users): + def team_member_space_limits_remove_custom_quota(self, + users): """ Remove users custom quota. A maximum of 1000 members can be specified in a single call. Note: to apply a custom space limit, a team admin needs @@ -1290,13 +1350,14 @@ def team_member_space_limits_remove_custom_quota(self, users): arg = team.CustomQuotaUsersArg(users) r = self.request( team.member_space_limits_remove_custom_quota, - "team", + 'team', arg, None, ) return r - def team_member_space_limits_set_custom_quota(self, users_and_quotas): + def team_member_space_limits_set_custom_quota(self, + users_and_quotas): """ Set users custom quota. Custom quota has to be at least 2GB. A maximum of 1000 members can be specified in a single call. Note: to apply a @@ -1318,13 +1379,15 @@ def team_member_space_limits_set_custom_quota(self, users_and_quotas): arg = team.SetCustomQuotaArg(users_and_quotas) r = self.request( team.member_space_limits_set_custom_quota, - "team", + 'team', arg, None, ) return r - def team_members_add(self, new_members, force_async=False): + def team_members_add(self, + new_members, + force_async=False): """ Adds members to a team. Permission : Team member management A maximum of 20 members can be specified in a single call. If no Dropbox account @@ -1345,16 +1408,19 @@ def team_members_add(self, new_members, force_async=False): :type new_members: List[:class:`dropbox.team.MemberAddArg`] :rtype: :class:`dropbox.team.MembersAddLaunch` """ - arg = team.MembersAddArg(new_members, force_async) + arg = team.MembersAddArg(new_members, + force_async) r = self.request( team.members_add, - "team", + 'team', arg, None, ) return r - def team_members_add_v2(self, new_members, force_async=False): + def team_members_add_v2(self, + new_members, + force_async=False): """ Adds members to a team. Permission : Team member management A maximum of 20 members can be specified in a single call. If no Dropbox account @@ -1372,16 +1438,18 @@ def team_members_add_v2(self, new_members, force_async=False): :type new_members: List[:class:`dropbox.team.MemberAddV2Arg`] :rtype: :class:`dropbox.team.MembersAddLaunchV2Result` """ - arg = team.MembersAddV2Arg(new_members, force_async) + arg = team.MembersAddV2Arg(new_members, + force_async) r = self.request( team.members_add_v2, - "team", + 'team', arg, None, ) return r - def team_members_add_job_status_get(self, async_job_id): + def team_members_add_job_status_get(self, + async_job_id): """ Once an async_job_id is returned from :meth:`team_members_add` , use this to poll the status of the asynchronous request. Permission : Team @@ -1402,13 +1470,14 @@ def team_members_add_job_status_get(self, async_job_id): arg = async_.PollArg(async_job_id) r = self.request( team.members_add_job_status_get, - "team", + 'team', arg, None, ) return r - def team_members_add_job_status_get_v2(self, async_job_id): + def team_members_add_job_status_get_v2(self, + async_job_id): """ Once an async_job_id is returned from :meth:`team_members_add_v2` , use this to poll the status of the asynchronous request. Permission : Team @@ -1429,13 +1498,14 @@ def team_members_add_job_status_get_v2(self, async_job_id): arg = async_.PollArg(async_job_id) r = self.request( team.members_add_job_status_get_v2, - "team", + 'team', arg, None, ) return r - def team_members_delete_former_member_files(self, user): + def team_members_delete_former_member_files(self, + user): """ Permanently delete the files of a user who has been removed from the team. After permanent deletion, those files will not be available to be @@ -1457,13 +1527,14 @@ def team_members_delete_former_member_files(self, user): arg = team.MembersFormerMemberArg(user) r = self.request( team.members_delete_former_member_files, - "team", + 'team', arg, None, ) return None - def team_members_delete_profile_photo(self, user): + def team_members_delete_profile_photo(self, + user): """ Deletes a team member's profile photo. Permission : Team member management. @@ -1482,13 +1553,14 @@ def team_members_delete_profile_photo(self, user): arg = team.MembersDeleteProfilePhotoArg(user) r = self.request( team.members_delete_profile_photo, - "team", + 'team', arg, None, ) return r - def team_members_delete_profile_photo_v2(self, user): + def team_members_delete_profile_photo_v2(self, + user): """ Deletes a team member's profile photo. Permission : Team member management. @@ -1507,7 +1579,7 @@ def team_members_delete_profile_photo_v2(self, user): arg = team.MembersDeleteProfilePhotoArg(user) r = self.request( team.members_delete_profile_photo_v2, - "team", + 'team', arg, None, ) @@ -1527,13 +1599,14 @@ def team_members_get_available_team_member_roles(self): arg = None r = self.request( team.members_get_available_team_member_roles, - "team", + 'team', arg, None, ) return r - def team_members_get_info(self, members): + def team_members_get_info(self, + members): """ Returns information about multiple team members. Permission : Team information This endpoint will return @@ -1554,13 +1627,14 @@ def team_members_get_info(self, members): arg = team.MembersGetInfoArgs(members) r = self.request( team.members_get_info, - "team", + 'team', arg, None, ) return r - def team_members_get_info_v2(self, members): + def team_members_get_info_v2(self, + members): """ Returns information about multiple team members. Permission : Team information This endpoint will return @@ -1581,13 +1655,15 @@ def team_members_get_info_v2(self, members): arg = team.MembersGetInfoV2Arg(members) r = self.request( team.members_get_info_v2, - "team", + 'team', arg, None, ) return r - def team_members_list(self, limit=1000, include_removed=False): + def team_members_list(self, + limit=1000, + include_removed=False): """ Lists members of a team. Permission : Team information. @@ -1604,16 +1680,19 @@ def team_members_list(self, limit=1000, include_removed=False): If this raises, ApiError will contain: :class:`dropbox.team.MembersListError` """ - arg = team.MembersListArg(limit, include_removed) + arg = team.MembersListArg(limit, + include_removed) r = self.request( team.members_list, - "team", + 'team', arg, None, ) return r - def team_members_list_v2(self, limit=1000, include_removed=False): + def team_members_list_v2(self, + limit=1000, + include_removed=False): """ Lists members of a team. Permission : Team information. @@ -1630,16 +1709,18 @@ def team_members_list_v2(self, limit=1000, include_removed=False): If this raises, ApiError will contain: :class:`dropbox.team.MembersListError` """ - arg = team.MembersListArg(limit, include_removed) + arg = team.MembersListArg(limit, + include_removed) r = self.request( team.members_list_v2, - "team", + 'team', arg, None, ) return r - def team_members_list_continue(self, cursor): + def team_members_list_continue(self, + cursor): """ Once a cursor has been retrieved from :meth:`team_members_list`, use this to paginate through all team members. Permission : Team @@ -1659,13 +1740,14 @@ def team_members_list_continue(self, cursor): arg = team.MembersListContinueArg(cursor) r = self.request( team.members_list_continue, - "team", + 'team', arg, None, ) return r - def team_members_list_continue_v2(self, cursor): + def team_members_list_continue_v2(self, + cursor): """ Once a cursor has been retrieved from :meth:`team_members_list_v2`, use this to paginate through all team members. Permission : Team @@ -1685,13 +1767,16 @@ def team_members_list_continue_v2(self, cursor): arg = team.MembersListContinueArg(cursor) r = self.request( team.members_list_continue_v2, - "team", + 'team', arg, None, ) return r - def team_members_move_former_member_files(self, user, transfer_dest_id, transfer_admin_id): + def team_members_move_former_member_files(self, + user, + transfer_dest_id, + transfer_admin_id): """ Moves removed member's files to a different member. This endpoint initiates an asynchronous job. To obtain the final result of the job, @@ -1714,16 +1799,19 @@ def team_members_move_former_member_files(self, user, transfer_dest_id, transfer If this raises, ApiError will contain: :class:`dropbox.team.MembersTransferFormerMembersFilesError` """ - arg = team.MembersDataTransferArg(user, transfer_dest_id, transfer_admin_id) + arg = team.MembersDataTransferArg(user, + transfer_dest_id, + transfer_admin_id) r = self.request( team.members_move_former_member_files, - "team", + 'team', arg, None, ) return r - def team_members_move_former_member_files_job_status_check(self, async_job_id): + def team_members_move_former_member_files_job_status_check(self, + async_job_id): """ Once an async_job_id is returned from :meth:`team_members_move_former_member_files` , use this to poll the @@ -1744,13 +1832,14 @@ def team_members_move_former_member_files_job_status_check(self, async_job_id): arg = async_.PollArg(async_job_id) r = self.request( team.members_move_former_member_files_job_status_check, - "team", + 'team', arg, None, ) return r - def team_members_recover(self, user): + def team_members_recover(self, + user): """ Recover a deleted member. Permission : Team member management Exactly one of team_member_id, email, or external_id must be provided to @@ -1770,22 +1859,20 @@ def team_members_recover(self, user): arg = team.MembersRecoverArg(user) r = self.request( team.members_recover, - "team", + 'team', arg, None, ) return None - def team_members_remove( - self, - user, - wipe_data=True, - transfer_dest_id=None, - transfer_admin_id=None, - keep_account=False, - retain_team_shares=False, - permanently_delete_files=False, - ): + def team_members_remove(self, + user, + wipe_data=True, + transfer_dest_id=None, + transfer_admin_id=None, + keep_account=False, + retain_team_shares=False, + permanently_delete_files=False): """ Removes a member from a team. Permission : Team member management Exactly one of team_member_id, email, or external_id must be provided to @@ -1837,24 +1924,23 @@ def team_members_remove( If this raises, ApiError will contain: :class:`dropbox.team.MembersRemoveError` """ - arg = team.MembersRemoveArg( - user, - wipe_data, - transfer_dest_id, - transfer_admin_id, - keep_account, - retain_team_shares, - permanently_delete_files, - ) + arg = team.MembersRemoveArg(user, + wipe_data, + transfer_dest_id, + transfer_admin_id, + keep_account, + retain_team_shares, + permanently_delete_files) r = self.request( team.members_remove, - "team", + 'team', arg, None, ) return r - def team_members_remove_job_status_get(self, async_job_id): + def team_members_remove_job_status_get(self, + async_job_id): """ Once an async_job_id is returned from :meth:`team_members_remove` , use this to poll the status of the asynchronous request. Permission : Team @@ -1875,13 +1961,14 @@ def team_members_remove_job_status_get(self, async_job_id): arg = async_.PollArg(async_job_id) r = self.request( team.members_remove_job_status_get, - "team", + 'team', arg, None, ) return r - def team_members_secondary_emails_add(self, new_secondary_emails): + def team_members_secondary_emails_add(self, + new_secondary_emails): """ Add secondary emails to users. Permission : Team member management. Emails that are on verified domains will be verified automatically. For @@ -1902,13 +1989,14 @@ def team_members_secondary_emails_add(self, new_secondary_emails): arg = team.AddSecondaryEmailsArg(new_secondary_emails) r = self.request( team.members_secondary_emails_add, - "team", + 'team', arg, None, ) return r - def team_members_secondary_emails_delete(self, emails_to_delete): + def team_members_secondary_emails_delete(self, + emails_to_delete): """ Delete secondary emails from users Permission : Team member management. Users will be notified of deletions of verified secondary emails at both @@ -1925,13 +2013,14 @@ def team_members_secondary_emails_delete(self, emails_to_delete): arg = team.DeleteSecondaryEmailsArg(emails_to_delete) r = self.request( team.members_secondary_emails_delete, - "team", + 'team', arg, None, ) return r - def team_members_secondary_emails_resend_verification_emails(self, emails_to_resend): + def team_members_secondary_emails_resend_verification_emails(self, + emails_to_resend): """ Resend secondary email verification emails. Permission : Team member management. @@ -1947,13 +2036,14 @@ def team_members_secondary_emails_resend_verification_emails(self, emails_to_res arg = team.ResendVerificationEmailArg(emails_to_resend) r = self.request( team.members_secondary_emails_resend_verification_emails, - "team", + 'team', arg, None, ) return r - def team_members_send_welcome_email(self, arg): + def team_members_send_welcome_email(self, + arg): """ Sends welcome email to pending team member. Permission : Team member management Exactly one of team_member_id, email, or external_id must be @@ -1974,13 +2064,15 @@ def team_members_send_welcome_email(self, arg): """ r = self.request( team.members_send_welcome_email, - "team", + 'team', arg, None, ) return None - def team_members_set_admin_permissions(self, user, new_role): + def team_members_set_admin_permissions(self, + user, + new_role): """ Updates a team member's permissions. Permission : Team member management. @@ -1998,16 +2090,19 @@ def team_members_set_admin_permissions(self, user, new_role): If this raises, ApiError will contain: :class:`dropbox.team.MembersSetPermissionsError` """ - arg = team.MembersSetPermissionsArg(user, new_role) + arg = team.MembersSetPermissionsArg(user, + new_role) r = self.request( team.members_set_admin_permissions, - "team", + 'team', arg, None, ) return r - def team_members_set_admin_permissions_v2(self, user, new_roles=None): + def team_members_set_admin_permissions_v2(self, + user, + new_roles=None): """ Updates a team member's permissions. Permission : Team member management. @@ -2026,25 +2121,24 @@ def team_members_set_admin_permissions_v2(self, user, new_roles=None): If this raises, ApiError will contain: :class:`dropbox.team.MembersSetPermissions2Error` """ - arg = team.MembersSetPermissions2Arg(user, new_roles) + arg = team.MembersSetPermissions2Arg(user, + new_roles) r = self.request( team.members_set_admin_permissions_v2, - "team", + 'team', arg, None, ) return r - def team_members_set_profile( - self, - user, - new_email=None, - new_external_id=None, - new_given_name=None, - new_surname=None, - new_persistent_id=None, - new_is_directory_restricted=None, - ): + def team_members_set_profile(self, + user, + new_email=None, + new_external_id=None, + new_given_name=None, + new_surname=None, + new_persistent_id=None, + new_is_directory_restricted=None): """ Updates a team member's profile. Permission : Team member management. @@ -2073,33 +2167,29 @@ def team_members_set_profile( If this raises, ApiError will contain: :class:`dropbox.team.MembersSetProfileError` """ - arg = team.MembersSetProfileArg( - user, - new_email, - new_external_id, - new_given_name, - new_surname, - new_persistent_id, - new_is_directory_restricted, - ) + arg = team.MembersSetProfileArg(user, + new_email, + new_external_id, + new_given_name, + new_surname, + new_persistent_id, + new_is_directory_restricted) r = self.request( team.members_set_profile, - "team", + 'team', arg, None, ) return r - def team_members_set_profile_v2( - self, - user, - new_email=None, - new_external_id=None, - new_given_name=None, - new_surname=None, - new_persistent_id=None, - new_is_directory_restricted=None, - ): + def team_members_set_profile_v2(self, + user, + new_email=None, + new_external_id=None, + new_given_name=None, + new_surname=None, + new_persistent_id=None, + new_is_directory_restricted=None): """ Updates a team member's profile. Permission : Team member management. @@ -2128,24 +2218,24 @@ def team_members_set_profile_v2( If this raises, ApiError will contain: :class:`dropbox.team.MembersSetProfileError` """ - arg = team.MembersSetProfileArg( - user, - new_email, - new_external_id, - new_given_name, - new_surname, - new_persistent_id, - new_is_directory_restricted, - ) + arg = team.MembersSetProfileArg(user, + new_email, + new_external_id, + new_given_name, + new_surname, + new_persistent_id, + new_is_directory_restricted) r = self.request( team.members_set_profile_v2, - "team", + 'team', arg, None, ) return r - def team_members_set_profile_photo(self, user, photo): + def team_members_set_profile_photo(self, + user, + photo): """ Updates a team member's profile photo. Permission : Team member management. @@ -2163,16 +2253,19 @@ def team_members_set_profile_photo(self, user, photo): If this raises, ApiError will contain: :class:`dropbox.team.MembersSetProfilePhotoError` """ - arg = team.MembersSetProfilePhotoArg(user, photo) + arg = team.MembersSetProfilePhotoArg(user, + photo) r = self.request( team.members_set_profile_photo, - "team", + 'team', arg, None, ) return r - def team_members_set_profile_photo_v2(self, user, photo): + def team_members_set_profile_photo_v2(self, + user, + photo): """ Updates a team member's profile photo. Permission : Team member management. @@ -2190,16 +2283,19 @@ def team_members_set_profile_photo_v2(self, user, photo): If this raises, ApiError will contain: :class:`dropbox.team.MembersSetProfilePhotoError` """ - arg = team.MembersSetProfilePhotoArg(user, photo) + arg = team.MembersSetProfilePhotoArg(user, + photo) r = self.request( team.members_set_profile_photo_v2, - "team", + 'team', arg, None, ) return r - def team_members_suspend(self, user, wipe_data=True): + def team_members_suspend(self, + user, + wipe_data=True): """ Suspend a member from a team. Permission : Team member management Exactly one of team_member_id, email, or external_id must be provided to @@ -2217,16 +2313,18 @@ def team_members_suspend(self, user, wipe_data=True): If this raises, ApiError will contain: :class:`dropbox.team.MembersSuspendError` """ - arg = team.MembersDeactivateArg(user, wipe_data) + arg = team.MembersDeactivateArg(user, + wipe_data) r = self.request( team.members_suspend, - "team", + 'team', arg, None, ) return None - def team_members_unsuspend(self, user): + def team_members_unsuspend(self, + user): """ Unsuspend a member from a team. Permission : Team member management Exactly one of team_member_id, email, or external_id must be provided to @@ -2246,13 +2344,14 @@ def team_members_unsuspend(self, user): arg = team.MembersUnsuspendArg(user) r = self.request( team.members_unsuspend, - "team", + 'team', arg, None, ) return None - def team_namespaces_list(self, limit=1000): + def team_namespaces_list(self, + limit=1000): """ Returns a list of all team-accessible namespaces. This list includes team folders, shared folders containing team members, team members' home @@ -2276,13 +2375,14 @@ def team_namespaces_list(self, limit=1000): arg = team.TeamNamespacesListArg(limit) r = self.request( team.namespaces_list, - "team", + 'team', arg, None, ) return r - def team_namespaces_list_continue(self, cursor): + def team_namespaces_list_continue(self, + cursor): """ Once a cursor has been retrieved from :meth:`team_namespaces_list`, use this to paginate through all team-accessible namespaces. Duplicates may @@ -2303,13 +2403,16 @@ def team_namespaces_list_continue(self, cursor): arg = team.TeamNamespacesListContinueArg(cursor) r = self.request( team.namespaces_list_continue, - "team", + 'team', arg, None, ) return r - def team_properties_template_add(self, name, description, fields): + def team_properties_template_add(self, + name, + description, + fields): """ Permission : Team member file access. @@ -2323,19 +2426,22 @@ def team_properties_template_add(self, name, description, fields): :class:`dropbox.file_properties.ModifyTemplateError` """ warnings.warn( - "properties/template/add is deprecated.", + 'properties/template/add is deprecated.', DeprecationWarning, ) - arg = file_properties.AddTemplateArg(name, description, fields) + arg = file_properties.AddTemplateArg(name, + description, + fields) r = self.request( team.properties_template_add, - "team", + 'team', arg, None, ) return r - def team_properties_template_get(self, template_id): + def team_properties_template_get(self, + template_id): """ Permission : Team member file access. The scope for the route is files.team_metadata.write. @@ -2354,19 +2460,21 @@ def team_properties_template_get(self, template_id): :class:`dropbox.file_properties.TemplateError` """ warnings.warn( - "properties/template/get is deprecated.", + 'properties/template/get is deprecated.', DeprecationWarning, ) arg = file_properties.GetTemplateArg(template_id) r = self.request( team.properties_template_get, - "team", + 'team', arg, None, ) return r - def team_reports_get_activity(self, start_date=None, end_date=None): + def team_reports_get_activity(self, + start_date=None, + end_date=None): """ Retrieves reporting data about a team's user activity. Deprecated: Will be removed on July 1st 2021. @@ -2386,19 +2494,22 @@ def team_reports_get_activity(self, start_date=None, end_date=None): :class:`dropbox.team.DateRangeError` """ warnings.warn( - "reports/get_activity is deprecated.", + 'reports/get_activity is deprecated.', DeprecationWarning, ) - arg = team.DateRange(start_date, end_date) + arg = team.DateRange(start_date, + end_date) r = self.request( team.reports_get_activity, - "team", + 'team', arg, None, ) return r - def team_reports_get_devices(self, start_date=None, end_date=None): + def team_reports_get_devices(self, + start_date=None, + end_date=None): """ Retrieves reporting data about a team's linked devices. Deprecated: Will be removed on July 1st 2021. @@ -2418,19 +2529,22 @@ def team_reports_get_devices(self, start_date=None, end_date=None): :class:`dropbox.team.DateRangeError` """ warnings.warn( - "reports/get_devices is deprecated.", + 'reports/get_devices is deprecated.', DeprecationWarning, ) - arg = team.DateRange(start_date, end_date) + arg = team.DateRange(start_date, + end_date) r = self.request( team.reports_get_devices, - "team", + 'team', arg, None, ) return r - def team_reports_get_membership(self, start_date=None, end_date=None): + def team_reports_get_membership(self, + start_date=None, + end_date=None): """ Retrieves reporting data about a team's membership. Deprecated: Will be removed on July 1st 2021. @@ -2450,19 +2564,22 @@ def team_reports_get_membership(self, start_date=None, end_date=None): :class:`dropbox.team.DateRangeError` """ warnings.warn( - "reports/get_membership is deprecated.", + 'reports/get_membership is deprecated.', DeprecationWarning, ) - arg = team.DateRange(start_date, end_date) + arg = team.DateRange(start_date, + end_date) r = self.request( team.reports_get_membership, - "team", + 'team', arg, None, ) return r - def team_reports_get_storage(self, start_date=None, end_date=None): + def team_reports_get_storage(self, + start_date=None, + end_date=None): """ Retrieves reporting data about a team's storage usage. Deprecated: Will be removed on July 1st 2021. @@ -2482,19 +2599,22 @@ def team_reports_get_storage(self, start_date=None, end_date=None): :class:`dropbox.team.DateRangeError` """ warnings.warn( - "reports/get_storage is deprecated.", + 'reports/get_storage is deprecated.', DeprecationWarning, ) - arg = team.DateRange(start_date, end_date) + arg = team.DateRange(start_date, + end_date) r = self.request( team.reports_get_storage, - "team", + 'team', arg, None, ) return r - def team_sharing_allowlist_add(self, domains=None, emails=None): + def team_sharing_allowlist_add(self, + domains=None, + emails=None): """ Endpoint adds Approve List entries. Changes are effective immediately. Changes are committed in transaction. In case of single validation error @@ -2517,16 +2637,18 @@ def team_sharing_allowlist_add(self, domains=None, emails=None): If this raises, ApiError will contain: :class:`dropbox.team.SharingAllowlistAddError` """ - arg = team.SharingAllowlistAddArgs(domains, emails) + arg = team.SharingAllowlistAddArgs(domains, + emails) r = self.request( team.sharing_allowlist_add, - "team", + 'team', arg, None, ) return r - def team_sharing_allowlist_list(self, limit=1000): + def team_sharing_allowlist_list(self, + limit=1000): """ Lists Approve List entries for given team, from newest to oldest, returning up to `limit` entries at a time. If there are more than @@ -2544,13 +2666,14 @@ def team_sharing_allowlist_list(self, limit=1000): arg = team.SharingAllowlistListArg(limit) r = self.request( team.sharing_allowlist_list, - "team", + 'team', arg, None, ) return r - def team_sharing_allowlist_list_continue(self, cursor): + def team_sharing_allowlist_list_continue(self, + cursor): """ Lists entries associated with given team, starting from a the cursor. See :meth:`team_sharing_allowlist_list`. @@ -2571,13 +2694,15 @@ def team_sharing_allowlist_list_continue(self, cursor): arg = team.SharingAllowlistListContinueArg(cursor) r = self.request( team.sharing_allowlist_list_continue, - "team", + 'team', arg, None, ) return r - def team_sharing_allowlist_remove(self, domains=None, emails=None): + def team_sharing_allowlist_remove(self, + domains=None, + emails=None): """ Endpoint removes Approve List entries. Changes are effective immediately. Changes are committed in transaction. In case of single @@ -2600,16 +2725,18 @@ def team_sharing_allowlist_remove(self, domains=None, emails=None): If this raises, ApiError will contain: :class:`dropbox.team.SharingAllowlistRemoveError` """ - arg = team.SharingAllowlistRemoveArgs(domains, emails) + arg = team.SharingAllowlistRemoveArgs(domains, + emails) r = self.request( team.sharing_allowlist_remove, - "team", + 'team', arg, None, ) return r - def team_team_folder_activate(self, team_folder_id): + def team_team_folder_activate(self, + team_folder_id): """ Sets an archived team folder's status to active. Permission : Team member file access. @@ -2624,13 +2751,15 @@ def team_team_folder_activate(self, team_folder_id): arg = team.TeamFolderIdArg(team_folder_id) r = self.request( team.team_folder_activate, - "team", + 'team', arg, None, ) return r - def team_team_folder_archive(self, team_folder_id, force_async_off=False): + def team_team_folder_archive(self, + team_folder_id, + force_async_off=False): """ Sets an active team folder's status to archived and removes all folder and file members. This endpoint cannot be used for teams that have a @@ -2647,16 +2776,18 @@ def team_team_folder_archive(self, team_folder_id, force_async_off=False): :type force_async_off: bool :rtype: :class:`dropbox.team.TeamFolderArchiveLaunch` """ - arg = team.TeamFolderArchiveArg(team_folder_id, force_async_off) + arg = team.TeamFolderArchiveArg(team_folder_id, + force_async_off) r = self.request( team.team_folder_archive, - "team", + 'team', arg, None, ) return r - def team_team_folder_archive_check(self, async_job_id): + def team_team_folder_archive_check(self, + async_job_id): """ Returns the status of an asynchronous job for archiving a team folder. The job may show '.tag' as complete, but the team folder could still be @@ -2680,13 +2811,15 @@ def team_team_folder_archive_check(self, async_job_id): arg = async_.PollArg(async_job_id) r = self.request( team.team_folder_archive_check, - "team", + 'team', arg, None, ) return r - def team_team_folder_create(self, name, sync_setting=None): + def team_team_folder_create(self, + name, + sync_setting=None): """ Creates a new, active, team folder with no members. This endpoint can only be used for teams that do not already have a shared team space. @@ -2706,16 +2839,18 @@ def team_team_folder_create(self, name, sync_setting=None): If this raises, ApiError will contain: :class:`dropbox.team.TeamFolderCreateError` """ - arg = team.TeamFolderCreateArg(name, sync_setting) + arg = team.TeamFolderCreateArg(name, + sync_setting) r = self.request( team.team_folder_create, - "team", + 'team', arg, None, ) return r - def team_team_folder_get_info(self, team_folder_ids): + def team_team_folder_get_info(self, + team_folder_ids): """ Retrieves metadata for team folders. Permission : Team member file access. @@ -2730,13 +2865,14 @@ def team_team_folder_get_info(self, team_folder_ids): arg = team.TeamFolderIdListArg(team_folder_ids) r = self.request( team.team_folder_get_info, - "team", + 'team', arg, None, ) return r - def team_team_folder_list(self, limit=1000): + def team_team_folder_list(self, + limit=1000): """ Lists all team folders. Permission : Team member file access. @@ -2754,13 +2890,14 @@ def team_team_folder_list(self, limit=1000): arg = team.TeamFolderListArg(limit) r = self.request( team.team_folder_list, - "team", + 'team', arg, None, ) return r - def team_team_folder_list_continue(self, cursor): + def team_team_folder_list_continue(self, + cursor): """ Once a cursor has been retrieved from :meth:`team_team_folder_list`, use this to paginate through all team folders. Permission : Team member file @@ -2781,13 +2918,14 @@ def team_team_folder_list_continue(self, cursor): arg = team.TeamFolderListContinueArg(cursor) r = self.request( team.team_folder_list_continue, - "team", + 'team', arg, None, ) return r - def team_team_folder_permanently_delete(self, team_folder_id): + def team_team_folder_permanently_delete(self, + team_folder_id): """ Permanently deletes an archived team folder. This endpoint cannot be used for teams that have a shared team space. Permission : Team member @@ -2803,13 +2941,15 @@ def team_team_folder_permanently_delete(self, team_folder_id): arg = team.TeamFolderIdArg(team_folder_id) r = self.request( team.team_folder_permanently_delete, - "team", + 'team', arg, None, ) return None - def team_team_folder_rename(self, team_folder_id, name): + def team_team_folder_rename(self, + team_folder_id, + name): """ Changes an active team folder's name. Permission : Team member file access. @@ -2825,16 +2965,18 @@ def team_team_folder_rename(self, team_folder_id, name): If this raises, ApiError will contain: :class:`dropbox.team.TeamFolderRenameError` """ - arg = team.TeamFolderRenameArg(team_folder_id, name) + arg = team.TeamFolderRenameArg(team_folder_id, + name) r = self.request( team.team_folder_rename, - "team", + 'team', arg, None, ) return r - def team_team_folder_restore(self, team_folder_id): + def team_team_folder_restore(self, + team_folder_id): """ Sets an inactive team folder's status to active. Permission: Team member file access. @@ -2849,15 +2991,16 @@ def team_team_folder_restore(self, team_folder_id): arg = team.TeamFolderIdArg(team_folder_id) r = self.request( team.team_folder_restore, - "team", + 'team', arg, None, ) return r - def team_team_folder_update_sync_settings( - self, team_folder_id, sync_setting=None, content_sync_settings=None - ): + def team_team_folder_update_sync_settings(self, + team_folder_id, + sync_setting=None, + content_sync_settings=None): """ Updates the sync settings on a team folder or its contents. Use of this endpoint requires that the team has team selective sync enabled. @@ -2877,12 +3020,12 @@ def team_team_folder_update_sync_settings( If this raises, ApiError will contain: :class:`dropbox.team.TeamFolderUpdateSyncSettingsError` """ - arg = team.TeamFolderUpdateSyncSettingsArg( - team_folder_id, sync_setting, content_sync_settings - ) + arg = team.TeamFolderUpdateSyncSettingsArg(team_folder_id, + sync_setting, + content_sync_settings) r = self.request( team.team_folder_update_sync_settings, - "team", + 'team', arg, None, ) @@ -2905,7 +3048,7 @@ def team_token_get_authenticated_admin(self): arg = None r = self.request( team.token_get_authenticated_admin, - "team", + 'team', arg, None, ) @@ -2914,9 +3057,12 @@ def team_token_get_authenticated_admin(self): # ------------------------------------------ # Routes in team_log namespace - def team_log_get_events( - self, limit=1000, account_id=None, time=None, category=None, event_type=None - ): + def team_log_get_events(self, + limit=1000, + account_id=None, + time=None, + category=None, + event_type=None): """ Retrieves team events. If the result's ``GetTeamEventsResult.has_more`` field is ``True``, call :meth:`team_log_get_events_continue` with the @@ -2956,16 +3102,21 @@ def team_log_get_events( If this raises, ApiError will contain: :class:`dropbox.team_log.GetTeamEventsError` """ - arg = team_log.GetTeamEventsArg(limit, account_id, time, category, event_type) + arg = team_log.GetTeamEventsArg(limit, + account_id, + time, + category, + event_type) r = self.request( team_log.get_events, - "team_log", + 'team_log', arg, None, ) return r - def team_log_get_events_continue(self, cursor): + def team_log_get_events_continue(self, + cursor): """ Once a cursor has been retrieved from :meth:`team_log_get_events`, use this to paginate through all events. Permission : Team Auditing. @@ -2984,7 +3135,7 @@ def team_log_get_events_continue(self, cursor): arg = team_log.GetTeamEventsContinueArg(cursor) r = self.request( team_log.get_events_continue, - "team_log", + 'team_log', arg, None, ) @@ -2992,3 +3143,4 @@ def team_log_get_events_continue(self, cursor): # ------------------------------------------ # Routes in users namespace + diff --git a/dropbox/check.py b/dropbox/check.py index e9f2491b..23248b6a 100644 --- a/dropbox/check.py +++ b/dropbox/check.py @@ -7,7 +7,6 @@ from stone.backends.python_rsrc import stone_base as bb from stone.backends.python_rsrc import stone_validators as bv - class EchoArg(bb.Struct): """ Contains the arguments to be sent to the Dropbox servers. @@ -17,12 +16,13 @@ class EchoArg(bb.Struct): """ __slots__ = [ - "_query_value", + '_query_value', ] _has_required_fields = False - def __init__(self, query=None): + def __init__(self, + query=None): self._query_value = bb.NOT_SET if query is not None: self.query = query @@ -33,10 +33,8 @@ def __init__(self, query=None): def _process_custom_annotations(self, annotation_type, field_path, processor): super(EchoArg, self)._process_custom_annotations(annotation_type, field_path, processor) - EchoArg_validator = bv.Struct(EchoArg) - class EchoError(bb.Union): """ EchoError contains the error returned from the Dropbox servers. @@ -49,7 +47,7 @@ class EchoError(bb.Union): The request was successful. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition user_requested = None # Attribute is overwritten below the class definition @@ -61,7 +59,7 @@ def is_user_requested(self): :rtype: bool """ - return self._tag == "user_requested" + return self._tag == 'user_requested' def is_other(self): """ @@ -69,15 +67,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): super(EchoError, self)._process_custom_annotations(annotation_type, field_path, processor) - EchoError_validator = bv.Union(EchoError) - class EchoResult(bb.Struct): """ EchoResult contains the result returned from the Dropbox servers. @@ -87,12 +83,13 @@ class EchoResult(bb.Struct): """ __slots__ = [ - "_result_value", + '_result_value', ] _has_required_fields = False - def __init__(self, result=None): + def __init__(self, + result=None): self._result_value = bb.NOT_SET if result is not None: self.result = result @@ -103,49 +100,53 @@ def __init__(self, result=None): def _process_custom_annotations(self, annotation_type, field_path, processor): super(EchoResult, self)._process_custom_annotations(annotation_type, field_path, processor) - EchoResult_validator = bv.Struct(EchoResult) EchoArg.query.validator = bv.String(max_length=500) -EchoArg._all_field_names_ = set(["query"]) -EchoArg._all_fields_ = [("query", EchoArg.query.validator)] +EchoArg._all_field_names_ = set(['query']) +EchoArg._all_fields_ = [('query', EchoArg.query.validator)] EchoError._user_requested_validator = bv.Void() EchoError._other_validator = bv.Void() EchoError._tagmap = { - "user_requested": EchoError._user_requested_validator, - "other": EchoError._other_validator, + 'user_requested': EchoError._user_requested_validator, + 'other': EchoError._other_validator, } -EchoError.user_requested = EchoError("user_requested") -EchoError.other = EchoError("other") +EchoError.user_requested = EchoError('user_requested') +EchoError.other = EchoError('other') EchoResult.result.validator = bv.String() -EchoResult._all_field_names_ = set(["result"]) -EchoResult._all_fields_ = [("result", EchoResult.result.validator)] +EchoResult._all_field_names_ = set(['result']) +EchoResult._all_fields_ = [('result', EchoResult.result.validator)] -EchoArg.query.default = "" -EchoResult.result.default = "" +EchoArg.query.default = '' +EchoResult.result.default = '' app = bb.Route( - "app", + 'app', 1, False, EchoArg_validator, EchoResult_validator, EchoError_validator, - {"auth": "app", "host": "api", "style": "rpc"}, + {'auth': 'app', + 'host': 'api', + 'style': 'rpc'}, ) user = bb.Route( - "user", + 'user', 1, False, EchoArg_validator, EchoResult_validator, EchoError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) ROUTES = { - "app": app, - "user": user, + 'app': app, + 'user': user, } + diff --git a/dropbox/common.py b/dropbox/common.py index 5e06e4ae..5ae40170 100644 --- a/dropbox/common.py +++ b/dropbox/common.py @@ -7,16 +7,18 @@ from stone.backends.python_rsrc import stone_base as bb from stone.backends.python_rsrc import stone_validators as bv - class DropboxDuration(bb.Struct): + __slots__ = [ - "_seconds_value", - "_nanos_value", + '_seconds_value', + '_nanos_value', ] _has_required_fields = True - def __init__(self, seconds=None, nanos=None): + def __init__(self, + seconds=None, + nanos=None): self._seconds_value = bb.NOT_SET self._nanos_value = bb.NOT_SET if seconds is not None: @@ -31,14 +33,10 @@ def __init__(self, seconds=None, nanos=None): nanos = bb.Attribute("nanos") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DropboxDuration, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DropboxDuration, self)._process_custom_annotations(annotation_type, field_path, processor) DropboxDuration_validator = bv.Struct(DropboxDuration) - class PathRoot(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -60,7 +58,7 @@ class PathRoot(bb.Union): :vartype PathRoot.namespace_id: str """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition home = None # Attribute is overwritten below the class definition @@ -75,7 +73,7 @@ def root(cls, val): :param str val: :rtype: PathRoot """ - return cls("root", val) + return cls('root', val) @classmethod def namespace_id(cls, val): @@ -86,7 +84,7 @@ def namespace_id(cls, val): :param str val: :rtype: PathRoot """ - return cls("namespace_id", val) + return cls('namespace_id', val) def is_home(self): """ @@ -94,7 +92,7 @@ def is_home(self): :rtype: bool """ - return self._tag == "home" + return self._tag == 'home' def is_root(self): """ @@ -102,7 +100,7 @@ def is_root(self): :rtype: bool """ - return self._tag == "root" + return self._tag == 'root' def is_namespace_id(self): """ @@ -110,7 +108,7 @@ def is_namespace_id(self): :rtype: bool """ - return self._tag == "namespace_id" + return self._tag == 'namespace_id' def is_other(self): """ @@ -118,7 +116,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_root(self): """ @@ -151,10 +149,8 @@ def get_namespace_id(self): def _process_custom_annotations(self, annotation_type, field_path, processor): super(PathRoot, self)._process_custom_annotations(annotation_type, field_path, processor) - PathRoot_validator = bv.Union(PathRoot) - class PathRootError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -170,7 +166,7 @@ class PathRootError(bb.Union): Dropbox-API-Path-Root header. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition no_permission = None # Attribute is overwritten below the class definition @@ -185,7 +181,7 @@ def invalid_root(cls, val): :param RootInfo val: :rtype: PathRootError """ - return cls("invalid_root", val) + return cls('invalid_root', val) def is_invalid_root(self): """ @@ -193,7 +189,7 @@ def is_invalid_root(self): :rtype: bool """ - return self._tag == "invalid_root" + return self._tag == 'invalid_root' def is_no_permission(self): """ @@ -201,7 +197,7 @@ def is_no_permission(self): :rtype: bool """ - return self._tag == "no_permission" + return self._tag == 'no_permission' def is_other(self): """ @@ -209,7 +205,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_invalid_root(self): """ @@ -225,14 +221,10 @@ def get_invalid_root(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PathRootError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PathRootError, self)._process_custom_annotations(annotation_type, field_path, processor) PathRootError_validator = bv.Union(PathRootError) - class RootInfo(bb.Struct): """ Information about current user's root. @@ -248,13 +240,15 @@ class RootInfo(bb.Struct): """ __slots__ = [ - "_root_namespace_id_value", - "_home_namespace_id_value", + '_root_namespace_id_value', + '_home_namespace_id_value', ] _has_required_fields = True - def __init__(self, root_namespace_id=None, home_namespace_id=None): + def __init__(self, + root_namespace_id=None, + home_namespace_id=None): self._root_namespace_id_value = bb.NOT_SET self._home_namespace_id_value = bb.NOT_SET if root_namespace_id is not None: @@ -271,10 +265,8 @@ def __init__(self, root_namespace_id=None, home_namespace_id=None): def _process_custom_annotations(self, annotation_type, field_path, processor): super(RootInfo, self)._process_custom_annotations(annotation_type, field_path, processor) - RootInfo_validator = bv.StructTree(RootInfo) - class TeamRootInfo(RootInfo): """ Root info when user is member of a team with a separate root namespace ID. @@ -284,13 +276,17 @@ class TeamRootInfo(RootInfo): """ __slots__ = [ - "_home_path_value", + '_home_path_value', ] _has_required_fields = True - def __init__(self, root_namespace_id=None, home_namespace_id=None, home_path=None): - super(TeamRootInfo, self).__init__(root_namespace_id, home_namespace_id) + def __init__(self, + root_namespace_id=None, + home_namespace_id=None, + home_path=None): + super(TeamRootInfo, self).__init__(root_namespace_id, + home_namespace_id) self._home_path_value = bb.NOT_SET if home_path is not None: self.home_path = home_path @@ -299,14 +295,10 @@ def __init__(self, root_namespace_id=None, home_namespace_id=None, home_path=Non home_path = bb.Attribute("home_path") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamRootInfo, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamRootInfo, self)._process_custom_annotations(annotation_type, field_path, processor) TeamRootInfo_validator = bv.Struct(TeamRootInfo) - class UserRootInfo(RootInfo): """ Root info when user is not member of a team or the user is a member of a @@ -317,13 +309,17 @@ class UserRootInfo(RootInfo): """ __slots__ = [ - "_home_path_value", + '_home_path_value', ] _has_required_fields = True - def __init__(self, root_namespace_id=None, home_namespace_id=None, home_path=None): - super(UserRootInfo, self).__init__(root_namespace_id, home_namespace_id) + def __init__(self, + root_namespace_id=None, + home_namespace_id=None, + home_path=None): + super(UserRootInfo, self).__init__(root_namespace_id, + home_namespace_id) self._home_path_value = bb.NOT_SET if home_path is not None: self.home_path = home_path @@ -332,38 +328,30 @@ def __init__(self, root_namespace_id=None, home_namespace_id=None, home_path=Non home_path = bb.Attribute("home_path", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UserRootInfo, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UserRootInfo, self)._process_custom_annotations(annotation_type, field_path, processor) UserRootInfo_validator = bv.Struct(UserRootInfo) -Date_validator = bv.Timestamp("%Y-%m-%d") +Date_validator = bv.Timestamp('%Y-%m-%d') DisplayName_validator = bv.String(pattern='[^/:?*<>"|]*') DisplayNameLegacy_validator = bv.String() -DropboxTimestamp_validator = bv.Timestamp("%Y-%m-%dT%H:%M:%SZ") -EmailAddress_validator = bv.String( - max_length=255, - pattern="^['#&A-Za-z0-9._%+-]+@[A-Za-z0-9-][A-Za-z0-9.-]*\\.[A-Za-z]{2,15}$", -) +DropboxTimestamp_validator = bv.Timestamp('%Y-%m-%dT%H:%M:%SZ') +EmailAddress_validator = bv.String(max_length=255, pattern="^['#&A-Za-z0-9._%+-]+@[A-Za-z0-9-][A-Za-z0-9.-]*\\.[A-Za-z]{2,15}$") LanguageCode_validator = bv.String(min_length=2) NamePart_validator = bv.String(min_length=1, max_length=50, pattern='[^/:?*<>"|]*') -NamespaceId_validator = bv.String(pattern="[-_0-9a-zA-Z:]+") +NamespaceId_validator = bv.String(pattern='[-_0-9a-zA-Z:]+') OptionalNamePart_validator = bv.String(max_length=50, pattern='[^/:?*<>"|]*') SessionId_validator = bv.String() SharedFolderId_validator = NamespaceId_validator DropboxDuration.seconds.validator = bv.Int64() DropboxDuration.nanos.validator = bv.Int32() -DropboxDuration._all_field_names_ = set( - [ - "seconds", - "nanos", - ] -) +DropboxDuration._all_field_names_ = set([ + 'seconds', + 'nanos', +]) DropboxDuration._all_fields_ = [ - ("seconds", DropboxDuration.seconds.validator), - ("nanos", DropboxDuration.nanos.validator), + ('seconds', DropboxDuration.seconds.validator), + ('nanos', DropboxDuration.nanos.validator), ] PathRoot._home_validator = bv.Void() @@ -371,62 +359,62 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): PathRoot._namespace_id_validator = NamespaceId_validator PathRoot._other_validator = bv.Void() PathRoot._tagmap = { - "home": PathRoot._home_validator, - "root": PathRoot._root_validator, - "namespace_id": PathRoot._namespace_id_validator, - "other": PathRoot._other_validator, + 'home': PathRoot._home_validator, + 'root': PathRoot._root_validator, + 'namespace_id': PathRoot._namespace_id_validator, + 'other': PathRoot._other_validator, } -PathRoot.home = PathRoot("home") -PathRoot.other = PathRoot("other") +PathRoot.home = PathRoot('home') +PathRoot.other = PathRoot('other') PathRootError._invalid_root_validator = RootInfo_validator PathRootError._no_permission_validator = bv.Void() PathRootError._other_validator = bv.Void() PathRootError._tagmap = { - "invalid_root": PathRootError._invalid_root_validator, - "no_permission": PathRootError._no_permission_validator, - "other": PathRootError._other_validator, + 'invalid_root': PathRootError._invalid_root_validator, + 'no_permission': PathRootError._no_permission_validator, + 'other': PathRootError._other_validator, } -PathRootError.no_permission = PathRootError("no_permission") -PathRootError.other = PathRootError("other") +PathRootError.no_permission = PathRootError('no_permission') +PathRootError.other = PathRootError('other') RootInfo.root_namespace_id.validator = NamespaceId_validator RootInfo.home_namespace_id.validator = NamespaceId_validator -RootInfo._field_names_ = set( - [ - "root_namespace_id", - "home_namespace_id", - ] -) +RootInfo._field_names_ = set([ + 'root_namespace_id', + 'home_namespace_id', +]) RootInfo._all_field_names_ = RootInfo._field_names_ RootInfo._fields_ = [ - ("root_namespace_id", RootInfo.root_namespace_id.validator), - ("home_namespace_id", RootInfo.home_namespace_id.validator), + ('root_namespace_id', RootInfo.root_namespace_id.validator), + ('home_namespace_id', RootInfo.home_namespace_id.validator), ] RootInfo._all_fields_ = RootInfo._fields_ RootInfo._tag_to_subtype_ = { - ("team",): TeamRootInfo_validator, - ("user",): UserRootInfo_validator, + ('team',): TeamRootInfo_validator, + ('user',): UserRootInfo_validator, } RootInfo._pytype_to_tag_and_subtype_ = { - TeamRootInfo: (("team",), TeamRootInfo_validator), - UserRootInfo: (("user",), UserRootInfo_validator), + TeamRootInfo: (('team',), TeamRootInfo_validator), + UserRootInfo: (('user',), UserRootInfo_validator), } RootInfo._is_catch_all_ = True TeamRootInfo.home_path.validator = bv.String() -TeamRootInfo._field_names_ = set(["home_path"]) +TeamRootInfo._field_names_ = set(['home_path']) TeamRootInfo._all_field_names_ = RootInfo._all_field_names_.union(TeamRootInfo._field_names_) -TeamRootInfo._fields_ = [("home_path", TeamRootInfo.home_path.validator)] +TeamRootInfo._fields_ = [('home_path', TeamRootInfo.home_path.validator)] TeamRootInfo._all_fields_ = RootInfo._all_fields_ + TeamRootInfo._fields_ UserRootInfo.home_path.validator = bv.Nullable(bv.String()) -UserRootInfo._field_names_ = set(["home_path"]) +UserRootInfo._field_names_ = set(['home_path']) UserRootInfo._all_field_names_ = RootInfo._all_field_names_.union(UserRootInfo._field_names_) -UserRootInfo._fields_ = [("home_path", UserRootInfo.home_path.validator)] +UserRootInfo._fields_ = [('home_path', UserRootInfo.home_path.validator)] UserRootInfo._all_fields_ = RootInfo._all_fields_ + UserRootInfo._fields_ -ROUTES = {} +ROUTES = { +} + diff --git a/dropbox/contacts.py b/dropbox/contacts.py index f493b616..abcd8254 100644 --- a/dropbox/contacts.py +++ b/dropbox/contacts.py @@ -9,7 +9,6 @@ from dropbox import common - class DeleteManualContactsArg(bb.Struct): """ :ivar DeleteManualContactsArg.email_addresses: @@ -17,12 +16,13 @@ class DeleteManualContactsArg(bb.Struct): """ __slots__ = [ - "_email_addresses_value", + '_email_addresses_value', ] _has_required_fields = True - def __init__(self, email_addresses=None): + def __init__(self, + email_addresses=None): self._email_addresses_value = bb.NOT_SET if email_addresses is not None: self.email_addresses = email_addresses @@ -31,14 +31,10 @@ def __init__(self, email_addresses=None): email_addresses = bb.Attribute("email_addresses") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeleteManualContactsArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DeleteManualContactsArg, self)._process_custom_annotations(annotation_type, field_path, processor) DeleteManualContactsArg_validator = bv.Struct(DeleteManualContactsArg) - class DeleteManualContactsError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -51,7 +47,7 @@ class DeleteManualContactsError(bb.Union): :vartype DeleteManualContactsError.contacts_not_found: list of [str] """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -64,7 +60,7 @@ def contacts_not_found(cls, val): :param list of [str] val: :rtype: DeleteManualContactsError """ - return cls("contacts_not_found", val) + return cls('contacts_not_found', val) def is_contacts_not_found(self): """ @@ -72,7 +68,7 @@ def is_contacts_not_found(self): :rtype: bool """ - return self._tag == "contacts_not_found" + return self._tag == 'contacts_not_found' def is_other(self): """ @@ -80,7 +76,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_contacts_not_found(self): """ @@ -96,48 +92,48 @@ def get_contacts_not_found(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeleteManualContactsError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DeleteManualContactsError, self)._process_custom_annotations(annotation_type, field_path, processor) DeleteManualContactsError_validator = bv.Union(DeleteManualContactsError) DeleteManualContactsArg.email_addresses.validator = bv.List(common.EmailAddress_validator) -DeleteManualContactsArg._all_field_names_ = set(["email_addresses"]) -DeleteManualContactsArg._all_fields_ = [ - ("email_addresses", DeleteManualContactsArg.email_addresses.validator) -] +DeleteManualContactsArg._all_field_names_ = set(['email_addresses']) +DeleteManualContactsArg._all_fields_ = [('email_addresses', DeleteManualContactsArg.email_addresses.validator)] DeleteManualContactsError._contacts_not_found_validator = bv.List(common.EmailAddress_validator) DeleteManualContactsError._other_validator = bv.Void() DeleteManualContactsError._tagmap = { - "contacts_not_found": DeleteManualContactsError._contacts_not_found_validator, - "other": DeleteManualContactsError._other_validator, + 'contacts_not_found': DeleteManualContactsError._contacts_not_found_validator, + 'other': DeleteManualContactsError._other_validator, } -DeleteManualContactsError.other = DeleteManualContactsError("other") +DeleteManualContactsError.other = DeleteManualContactsError('other') delete_manual_contacts = bb.Route( - "delete_manual_contacts", + 'delete_manual_contacts', 1, False, bv.Void(), bv.Void(), bv.Void(), - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) delete_manual_contacts_batch = bb.Route( - "delete_manual_contacts_batch", + 'delete_manual_contacts_batch', 1, False, DeleteManualContactsArg_validator, bv.Void(), DeleteManualContactsError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) ROUTES = { - "delete_manual_contacts": delete_manual_contacts, - "delete_manual_contacts_batch": delete_manual_contacts_batch, + 'delete_manual_contacts': delete_manual_contacts, + 'delete_manual_contacts_batch': delete_manual_contacts_batch, } + diff --git a/dropbox/file_properties.py b/dropbox/file_properties.py index 9ce245ca..4bae5bd0 100644 --- a/dropbox/file_properties.py +++ b/dropbox/file_properties.py @@ -27,7 +27,6 @@ from stone.backends.python_rsrc import stone_base as bb from stone.backends.python_rsrc import stone_validators as bv - class AddPropertiesArg(bb.Struct): """ :ivar AddPropertiesArg.path: @@ -38,13 +37,15 @@ class AddPropertiesArg(bb.Struct): """ __slots__ = [ - "_path_value", - "_property_groups_value", + '_path_value', + '_property_groups_value', ] _has_required_fields = True - def __init__(self, path=None, property_groups=None): + def __init__(self, + path=None, + property_groups=None): self._path_value = bb.NOT_SET self._property_groups_value = bb.NOT_SET if path is not None: @@ -59,14 +60,10 @@ def __init__(self, path=None, property_groups=None): property_groups = bb.Attribute("property_groups") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AddPropertiesArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AddPropertiesArg, self)._process_custom_annotations(annotation_type, field_path, processor) AddPropertiesArg_validator = bv.Struct(AddPropertiesArg) - class TemplateError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -80,7 +77,7 @@ class TemplateError(bb.Union): You do not have permission to modify this template. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition restricted_content = None # Attribute is overwritten below the class definition @@ -95,7 +92,7 @@ def template_not_found(cls, val): :param str val: :rtype: TemplateError """ - return cls("template_not_found", val) + return cls('template_not_found', val) def is_template_not_found(self): """ @@ -103,7 +100,7 @@ def is_template_not_found(self): :rtype: bool """ - return self._tag == "template_not_found" + return self._tag == 'template_not_found' def is_restricted_content(self): """ @@ -111,7 +108,7 @@ def is_restricted_content(self): :rtype: bool """ - return self._tag == "restricted_content" + return self._tag == 'restricted_content' def is_other(self): """ @@ -119,7 +116,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_template_not_found(self): """ @@ -134,14 +131,10 @@ def get_template_not_found(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TemplateError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TemplateError, self)._process_custom_annotations(annotation_type, field_path, processor) TemplateError_validator = bv.Union(TemplateError) - class PropertiesError(TemplateError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -165,7 +158,7 @@ def path(cls, val): :param LookupError val: :rtype: PropertiesError """ - return cls("path", val) + return cls('path', val) def is_path(self): """ @@ -173,7 +166,7 @@ def is_path(self): :rtype: bool """ - return self._tag == "path" + return self._tag == 'path' def is_unsupported_folder(self): """ @@ -181,7 +174,7 @@ def is_unsupported_folder(self): :rtype: bool """ - return self._tag == "unsupported_folder" + return self._tag == 'unsupported_folder' def get_path(self): """ @@ -194,14 +187,10 @@ def get_path(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PropertiesError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PropertiesError, self)._process_custom_annotations(annotation_type, field_path, processor) PropertiesError_validator = bv.Union(PropertiesError) - class InvalidPropertyGroupError(PropertiesError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -231,7 +220,7 @@ def is_property_field_too_large(self): :rtype: bool """ - return self._tag == "property_field_too_large" + return self._tag == 'property_field_too_large' def is_does_not_fit_template(self): """ @@ -239,7 +228,7 @@ def is_does_not_fit_template(self): :rtype: bool """ - return self._tag == "does_not_fit_template" + return self._tag == 'does_not_fit_template' def is_duplicate_property_groups(self): """ @@ -247,17 +236,13 @@ def is_duplicate_property_groups(self): :rtype: bool """ - return self._tag == "duplicate_property_groups" + return self._tag == 'duplicate_property_groups' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(InvalidPropertyGroupError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(InvalidPropertyGroupError, self)._process_custom_annotations(annotation_type, field_path, processor) InvalidPropertyGroupError_validator = bv.Union(InvalidPropertyGroupError) - class AddPropertiesError(InvalidPropertyGroupError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -277,17 +262,13 @@ def is_property_group_already_exists(self): :rtype: bool """ - return self._tag == "property_group_already_exists" + return self._tag == 'property_group_already_exists' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AddPropertiesError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AddPropertiesError, self)._process_custom_annotations(annotation_type, field_path, processor) AddPropertiesError_validator = bv.Union(AddPropertiesError) - class PropertyGroupTemplate(bb.Struct): """ Defines how a property group may be structured. @@ -303,14 +284,17 @@ class PropertyGroupTemplate(bb.Struct): """ __slots__ = [ - "_name_value", - "_description_value", - "_fields_value", + '_name_value', + '_description_value', + '_fields_value', ] _has_required_fields = True - def __init__(self, name=None, description=None, fields=None): + def __init__(self, + name=None, + description=None, + fields=None): self._name_value = bb.NOT_SET self._description_value = bb.NOT_SET self._fields_value = bb.NOT_SET @@ -331,31 +315,30 @@ def __init__(self, name=None, description=None, fields=None): fields = bb.Attribute("fields") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PropertyGroupTemplate, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PropertyGroupTemplate, self)._process_custom_annotations(annotation_type, field_path, processor) PropertyGroupTemplate_validator = bv.Struct(PropertyGroupTemplate) - class AddTemplateArg(PropertyGroupTemplate): - __slots__ = [] + + __slots__ = [ + ] _has_required_fields = True - def __init__(self, name=None, description=None, fields=None): - super(AddTemplateArg, self).__init__(name, description, fields) + def __init__(self, + name=None, + description=None, + fields=None): + super(AddTemplateArg, self).__init__(name, + description, + fields) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AddTemplateArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AddTemplateArg, self)._process_custom_annotations(annotation_type, field_path, processor) AddTemplateArg_validator = bv.Struct(AddTemplateArg) - class AddTemplateResult(bb.Struct): """ :ivar AddTemplateResult.template_id: @@ -366,12 +349,13 @@ class AddTemplateResult(bb.Struct): """ __slots__ = [ - "_template_id_value", + '_template_id_value', ] _has_required_fields = True - def __init__(self, template_id=None): + def __init__(self, + template_id=None): self._template_id_value = bb.NOT_SET if template_id is not None: self.template_id = template_id @@ -380,14 +364,10 @@ def __init__(self, template_id=None): template_id = bb.Attribute("template_id") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AddTemplateResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AddTemplateResult, self)._process_custom_annotations(annotation_type, field_path, processor) AddTemplateResult_validator = bv.Struct(AddTemplateResult) - class GetTemplateArg(bb.Struct): """ :ivar GetTemplateArg.template_id: @@ -398,12 +378,13 @@ class GetTemplateArg(bb.Struct): """ __slots__ = [ - "_template_id_value", + '_template_id_value', ] _has_required_fields = True - def __init__(self, template_id=None): + def __init__(self, + template_id=None): self._template_id_value = bb.NOT_SET if template_id is not None: self.template_id = template_id @@ -412,31 +393,30 @@ def __init__(self, template_id=None): template_id = bb.Attribute("template_id") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetTemplateArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GetTemplateArg, self)._process_custom_annotations(annotation_type, field_path, processor) GetTemplateArg_validator = bv.Struct(GetTemplateArg) - class GetTemplateResult(PropertyGroupTemplate): - __slots__ = [] + + __slots__ = [ + ] _has_required_fields = True - def __init__(self, name=None, description=None, fields=None): - super(GetTemplateResult, self).__init__(name, description, fields) + def __init__(self, + name=None, + description=None, + fields=None): + super(GetTemplateResult, self).__init__(name, + description, + fields) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetTemplateResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GetTemplateResult, self)._process_custom_annotations(annotation_type, field_path, processor) GetTemplateResult_validator = bv.Struct(GetTemplateResult) - class ListTemplateResult(bb.Struct): """ :ivar ListTemplateResult.template_ids: @@ -447,12 +427,13 @@ class ListTemplateResult(bb.Struct): """ __slots__ = [ - "_template_ids_value", + '_template_ids_value', ] _has_required_fields = True - def __init__(self, template_ids=None): + def __init__(self, + template_ids=None): self._template_ids_value = bb.NOT_SET if template_ids is not None: self.template_ids = template_ids @@ -461,14 +442,10 @@ def __init__(self, template_ids=None): template_ids = bb.Attribute("template_ids") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListTemplateResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ListTemplateResult, self)._process_custom_annotations(annotation_type, field_path, processor) ListTemplateResult_validator = bv.Struct(ListTemplateResult) - class LogicalOperator(bb.Union): """ Logical operator to join search queries together. @@ -481,7 +458,7 @@ class LogicalOperator(bb.Union): Append a query with an "or" operator. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition or_operator = None # Attribute is overwritten below the class definition @@ -493,7 +470,7 @@ def is_or_operator(self): :rtype: bool """ - return self._tag == "or_operator" + return self._tag == 'or_operator' def is_other(self): """ @@ -501,17 +478,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LogicalOperator, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(LogicalOperator, self)._process_custom_annotations(annotation_type, field_path, processor) LogicalOperator_validator = bv.Union(LogicalOperator) - class LookUpPropertiesError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -522,7 +495,7 @@ class LookUpPropertiesError(bb.Union): No property group was found. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition property_group_not_found = None # Attribute is overwritten below the class definition @@ -534,7 +507,7 @@ def is_property_group_not_found(self): :rtype: bool """ - return self._tag == "property_group_not_found" + return self._tag == 'property_group_not_found' def is_other(self): """ @@ -542,17 +515,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LookUpPropertiesError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(LookUpPropertiesError, self)._process_custom_annotations(annotation_type, field_path, processor) LookUpPropertiesError_validator = bv.Union(LookUpPropertiesError) - class LookupError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -572,7 +541,7 @@ class LookupError(bb.Union): example, we might restrict a file due to legal requirements. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition not_found = None # Attribute is overwritten below the class definition @@ -593,7 +562,7 @@ def malformed_path(cls, val): :param str val: :rtype: LookupError """ - return cls("malformed_path", val) + return cls('malformed_path', val) def is_malformed_path(self): """ @@ -601,7 +570,7 @@ def is_malformed_path(self): :rtype: bool """ - return self._tag == "malformed_path" + return self._tag == 'malformed_path' def is_not_found(self): """ @@ -609,7 +578,7 @@ def is_not_found(self): :rtype: bool """ - return self._tag == "not_found" + return self._tag == 'not_found' def is_not_file(self): """ @@ -617,7 +586,7 @@ def is_not_file(self): :rtype: bool """ - return self._tag == "not_file" + return self._tag == 'not_file' def is_not_folder(self): """ @@ -625,7 +594,7 @@ def is_not_folder(self): :rtype: bool """ - return self._tag == "not_folder" + return self._tag == 'not_folder' def is_restricted_content(self): """ @@ -633,7 +602,7 @@ def is_restricted_content(self): :rtype: bool """ - return self._tag == "restricted_content" + return self._tag == 'restricted_content' def is_other(self): """ @@ -641,7 +610,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_malformed_path(self): """ @@ -656,10 +625,8 @@ def get_malformed_path(self): def _process_custom_annotations(self, annotation_type, field_path, processor): super(LookupError, self)._process_custom_annotations(annotation_type, field_path, processor) - LookupError_validator = bv.Union(LookupError) - class ModifyTemplateError(TemplateError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -693,7 +660,7 @@ def is_conflicting_property_names(self): :rtype: bool """ - return self._tag == "conflicting_property_names" + return self._tag == 'conflicting_property_names' def is_too_many_properties(self): """ @@ -701,7 +668,7 @@ def is_too_many_properties(self): :rtype: bool """ - return self._tag == "too_many_properties" + return self._tag == 'too_many_properties' def is_too_many_templates(self): """ @@ -709,7 +676,7 @@ def is_too_many_templates(self): :rtype: bool """ - return self._tag == "too_many_templates" + return self._tag == 'too_many_templates' def is_template_attribute_too_large(self): """ @@ -717,17 +684,13 @@ def is_template_attribute_too_large(self): :rtype: bool """ - return self._tag == "template_attribute_too_large" + return self._tag == 'template_attribute_too_large' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ModifyTemplateError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ModifyTemplateError, self)._process_custom_annotations(annotation_type, field_path, processor) ModifyTemplateError_validator = bv.Union(ModifyTemplateError) - class OverwritePropertyGroupArg(bb.Struct): """ :ivar OverwritePropertyGroupArg.path: @@ -738,13 +701,15 @@ class OverwritePropertyGroupArg(bb.Struct): """ __slots__ = [ - "_path_value", - "_property_groups_value", + '_path_value', + '_property_groups_value', ] _has_required_fields = True - def __init__(self, path=None, property_groups=None): + def __init__(self, + path=None, + property_groups=None): self._path_value = bb.NOT_SET self._property_groups_value = bb.NOT_SET if path is not None: @@ -759,14 +724,10 @@ def __init__(self, path=None, property_groups=None): property_groups = bb.Attribute("property_groups") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(OverwritePropertyGroupArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(OverwritePropertyGroupArg, self)._process_custom_annotations(annotation_type, field_path, processor) OverwritePropertyGroupArg_validator = bv.Struct(OverwritePropertyGroupArg) - class PropertiesSearchArg(bb.Struct): """ :ivar PropertiesSearchArg.queries: @@ -777,13 +738,15 @@ class PropertiesSearchArg(bb.Struct): """ __slots__ = [ - "_queries_value", - "_template_filter_value", + '_queries_value', + '_template_filter_value', ] _has_required_fields = True - def __init__(self, queries=None, template_filter=None): + def __init__(self, + queries=None, + template_filter=None): self._queries_value = bb.NOT_SET self._template_filter_value = bb.NOT_SET if queries is not None: @@ -798,14 +761,10 @@ def __init__(self, queries=None, template_filter=None): template_filter = bb.Attribute("template_filter", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PropertiesSearchArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PropertiesSearchArg, self)._process_custom_annotations(annotation_type, field_path, processor) PropertiesSearchArg_validator = bv.Struct(PropertiesSearchArg) - class PropertiesSearchContinueArg(bb.Struct): """ :ivar PropertiesSearchContinueArg.cursor: @@ -816,12 +775,13 @@ class PropertiesSearchContinueArg(bb.Struct): """ __slots__ = [ - "_cursor_value", + '_cursor_value', ] _has_required_fields = True - def __init__(self, cursor=None): + def __init__(self, + cursor=None): self._cursor_value = bb.NOT_SET if cursor is not None: self.cursor = cursor @@ -830,14 +790,10 @@ def __init__(self, cursor=None): cursor = bb.Attribute("cursor") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PropertiesSearchContinueArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PropertiesSearchContinueArg, self)._process_custom_annotations(annotation_type, field_path, processor) PropertiesSearchContinueArg_validator = bv.Struct(PropertiesSearchContinueArg) - class PropertiesSearchContinueError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -850,7 +806,7 @@ class PropertiesSearchContinueError(bb.Union): to obtain a new cursor. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition reset = None # Attribute is overwritten below the class definition @@ -862,7 +818,7 @@ def is_reset(self): :rtype: bool """ - return self._tag == "reset" + return self._tag == 'reset' def is_other(self): """ @@ -870,17 +826,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PropertiesSearchContinueError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PropertiesSearchContinueError, self)._process_custom_annotations(annotation_type, field_path, processor) PropertiesSearchContinueError_validator = bv.Union(PropertiesSearchContinueError) - class PropertiesSearchError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -888,7 +840,7 @@ class PropertiesSearchError(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -901,7 +853,7 @@ def property_group_lookup(cls, val): :param LookUpPropertiesError val: :rtype: PropertiesSearchError """ - return cls("property_group_lookup", val) + return cls('property_group_lookup', val) def is_property_group_lookup(self): """ @@ -909,7 +861,7 @@ def is_property_group_lookup(self): :rtype: bool """ - return self._tag == "property_group_lookup" + return self._tag == 'property_group_lookup' def is_other(self): """ @@ -917,7 +869,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_property_group_lookup(self): """ @@ -930,14 +882,10 @@ def get_property_group_lookup(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PropertiesSearchError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PropertiesSearchError, self)._process_custom_annotations(annotation_type, field_path, processor) PropertiesSearchError_validator = bv.Union(PropertiesSearchError) - class PropertiesSearchMatch(bb.Struct): """ :ivar PropertiesSearchMatch.id: @@ -951,15 +899,19 @@ class PropertiesSearchMatch(bb.Struct): """ __slots__ = [ - "_id_value", - "_path_value", - "_is_deleted_value", - "_property_groups_value", + '_id_value', + '_path_value', + '_is_deleted_value', + '_property_groups_value', ] _has_required_fields = True - def __init__(self, id=None, path=None, is_deleted=None, property_groups=None): + def __init__(self, + id=None, + path=None, + is_deleted=None, + property_groups=None): self._id_value = bb.NOT_SET self._path_value = bb.NOT_SET self._is_deleted_value = bb.NOT_SET @@ -986,14 +938,10 @@ def __init__(self, id=None, path=None, is_deleted=None, property_groups=None): property_groups = bb.Attribute("property_groups") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PropertiesSearchMatch, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PropertiesSearchMatch, self)._process_custom_annotations(annotation_type, field_path, processor) PropertiesSearchMatch_validator = bv.Struct(PropertiesSearchMatch) - class PropertiesSearchMode(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -1005,7 +953,7 @@ class PropertiesSearchMode(bb.Union): :vartype PropertiesSearchMode.field_name: str """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -1018,7 +966,7 @@ def field_name(cls, val): :param str val: :rtype: PropertiesSearchMode """ - return cls("field_name", val) + return cls('field_name', val) def is_field_name(self): """ @@ -1026,7 +974,7 @@ def is_field_name(self): :rtype: bool """ - return self._tag == "field_name" + return self._tag == 'field_name' def is_other(self): """ @@ -1034,7 +982,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_field_name(self): """ @@ -1049,14 +997,10 @@ def get_field_name(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PropertiesSearchMode, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PropertiesSearchMode, self)._process_custom_annotations(annotation_type, field_path, processor) PropertiesSearchMode_validator = bv.Union(PropertiesSearchMode) - class PropertiesSearchQuery(bb.Struct): """ :ivar PropertiesSearchQuery.query: @@ -1068,14 +1012,17 @@ class PropertiesSearchQuery(bb.Struct): """ __slots__ = [ - "_query_value", - "_mode_value", - "_logical_operator_value", + '_query_value', + '_mode_value', + '_logical_operator_value', ] _has_required_fields = True - def __init__(self, query=None, mode=None, logical_operator=None): + def __init__(self, + query=None, + mode=None, + logical_operator=None): self._query_value = bb.NOT_SET self._mode_value = bb.NOT_SET self._logical_operator_value = bb.NOT_SET @@ -1096,14 +1043,10 @@ def __init__(self, query=None, mode=None, logical_operator=None): logical_operator = bb.Attribute("logical_operator", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PropertiesSearchQuery, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PropertiesSearchQuery, self)._process_custom_annotations(annotation_type, field_path, processor) PropertiesSearchQuery_validator = bv.Struct(PropertiesSearchQuery) - class PropertiesSearchResult(bb.Struct): """ :ivar PropertiesSearchResult.matches: @@ -1116,13 +1059,15 @@ class PropertiesSearchResult(bb.Struct): """ __slots__ = [ - "_matches_value", - "_cursor_value", + '_matches_value', + '_cursor_value', ] _has_required_fields = True - def __init__(self, matches=None, cursor=None): + def __init__(self, + matches=None, + cursor=None): self._matches_value = bb.NOT_SET self._cursor_value = bb.NOT_SET if matches is not None: @@ -1137,14 +1082,10 @@ def __init__(self, matches=None, cursor=None): cursor = bb.Attribute("cursor", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PropertiesSearchResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PropertiesSearchResult, self)._process_custom_annotations(annotation_type, field_path, processor) PropertiesSearchResult_validator = bv.Struct(PropertiesSearchResult) - class PropertyField(bb.Struct): """ Raw key/value data to be associated with a Dropbox file. Property fields are @@ -1159,13 +1100,15 @@ class PropertyField(bb.Struct): """ __slots__ = [ - "_name_value", - "_value_value", + '_name_value', + '_value_value', ] _has_required_fields = True - def __init__(self, name=None, value=None): + def __init__(self, + name=None, + value=None): self._name_value = bb.NOT_SET self._value_value = bb.NOT_SET if name is not None: @@ -1180,14 +1123,10 @@ def __init__(self, name=None, value=None): value = bb.Attribute("value") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PropertyField, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PropertyField, self)._process_custom_annotations(annotation_type, field_path, processor) PropertyField_validator = bv.Struct(PropertyField) - class PropertyFieldTemplate(bb.Struct): """ Defines how a single property field may be structured. Used exclusively by @@ -1202,14 +1141,17 @@ class PropertyFieldTemplate(bb.Struct): """ __slots__ = [ - "_name_value", - "_description_value", - "_type_value", + '_name_value', + '_description_value', + '_type_value', ] _has_required_fields = True - def __init__(self, name=None, description=None, type=None): + def __init__(self, + name=None, + description=None, + type=None): self._name_value = bb.NOT_SET self._description_value = bb.NOT_SET self._type_value = bb.NOT_SET @@ -1230,14 +1172,10 @@ def __init__(self, name=None, description=None, type=None): type = bb.Attribute("type", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PropertyFieldTemplate, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PropertyFieldTemplate, self)._process_custom_annotations(annotation_type, field_path, processor) PropertyFieldTemplate_validator = bv.Struct(PropertyFieldTemplate) - class PropertyGroup(bb.Struct): """ A subset of the property fields described by the corresponding @@ -1253,13 +1191,15 @@ class PropertyGroup(bb.Struct): """ __slots__ = [ - "_template_id_value", - "_fields_value", + '_template_id_value', + '_fields_value', ] _has_required_fields = True - def __init__(self, template_id=None, fields=None): + def __init__(self, + template_id=None, + fields=None): self._template_id_value = bb.NOT_SET self._fields_value = bb.NOT_SET if template_id is not None: @@ -1274,14 +1214,10 @@ def __init__(self, template_id=None, fields=None): fields = bb.Attribute("fields") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PropertyGroup, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PropertyGroup, self)._process_custom_annotations(annotation_type, field_path, processor) PropertyGroup_validator = bv.Struct(PropertyGroup) - class PropertyGroupUpdate(bb.Struct): """ Property routes @@ -1297,14 +1233,17 @@ class PropertyGroupUpdate(bb.Struct): """ __slots__ = [ - "_template_id_value", - "_add_or_update_fields_value", - "_remove_fields_value", + '_template_id_value', + '_add_or_update_fields_value', + '_remove_fields_value', ] _has_required_fields = True - def __init__(self, template_id=None, add_or_update_fields=None, remove_fields=None): + def __init__(self, + template_id=None, + add_or_update_fields=None, + remove_fields=None): self._template_id_value = bb.NOT_SET self._add_or_update_fields_value = bb.NOT_SET self._remove_fields_value = bb.NOT_SET @@ -1325,14 +1264,10 @@ def __init__(self, template_id=None, add_or_update_fields=None, remove_fields=No remove_fields = bb.Attribute("remove_fields", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PropertyGroupUpdate, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PropertyGroupUpdate, self)._process_custom_annotations(annotation_type, field_path, processor) PropertyGroupUpdate_validator = bv.Struct(PropertyGroupUpdate) - class PropertyType(bb.Union): """ Data type of the given property field added. @@ -1346,7 +1281,7 @@ class PropertyType(bb.Union): supported. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition string = None # Attribute is overwritten below the class definition @@ -1358,7 +1293,7 @@ def is_string(self): :rtype: bool """ - return self._tag == "string" + return self._tag == 'string' def is_other(self): """ @@ -1366,17 +1301,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PropertyType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PropertyType, self)._process_custom_annotations(annotation_type, field_path, processor) PropertyType_validator = bv.Union(PropertyType) - class RemovePropertiesArg(bb.Struct): """ :ivar RemovePropertiesArg.path: @@ -1389,13 +1320,15 @@ class RemovePropertiesArg(bb.Struct): """ __slots__ = [ - "_path_value", - "_property_template_ids_value", + '_path_value', + '_property_template_ids_value', ] _has_required_fields = True - def __init__(self, path=None, property_template_ids=None): + def __init__(self, + path=None, + property_template_ids=None): self._path_value = bb.NOT_SET self._property_template_ids_value = bb.NOT_SET if path is not None: @@ -1410,14 +1343,10 @@ def __init__(self, path=None, property_template_ids=None): property_template_ids = bb.Attribute("property_template_ids") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RemovePropertiesArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(RemovePropertiesArg, self)._process_custom_annotations(annotation_type, field_path, processor) RemovePropertiesArg_validator = bv.Struct(RemovePropertiesArg) - class RemovePropertiesError(PropertiesError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -1434,7 +1363,7 @@ def property_group_lookup(cls, val): :param LookUpPropertiesError val: :rtype: RemovePropertiesError """ - return cls("property_group_lookup", val) + return cls('property_group_lookup', val) def is_property_group_lookup(self): """ @@ -1442,7 +1371,7 @@ def is_property_group_lookup(self): :rtype: bool """ - return self._tag == "property_group_lookup" + return self._tag == 'property_group_lookup' def get_property_group_lookup(self): """ @@ -1455,14 +1384,10 @@ def get_property_group_lookup(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RemovePropertiesError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(RemovePropertiesError, self)._process_custom_annotations(annotation_type, field_path, processor) RemovePropertiesError_validator = bv.Union(RemovePropertiesError) - class RemoveTemplateArg(bb.Struct): """ :ivar RemoveTemplateArg.template_id: @@ -1473,12 +1398,13 @@ class RemoveTemplateArg(bb.Struct): """ __slots__ = [ - "_template_id_value", + '_template_id_value', ] _has_required_fields = True - def __init__(self, template_id=None): + def __init__(self, + template_id=None): self._template_id_value = bb.NOT_SET if template_id is not None: self.template_id = template_id @@ -1487,14 +1413,10 @@ def __init__(self, template_id=None): template_id = bb.Attribute("template_id") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RemoveTemplateArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(RemoveTemplateArg, self)._process_custom_annotations(annotation_type, field_path, processor) RemoveTemplateArg_validator = bv.Struct(RemoveTemplateArg) - class TemplateFilterBase(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -1507,7 +1429,7 @@ class TemplateFilterBase(bb.Union): :vartype TemplateFilterBase.filter_some: list of [str] """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -1520,7 +1442,7 @@ def filter_some(cls, val): :param list of [str] val: :rtype: TemplateFilterBase """ - return cls("filter_some", val) + return cls('filter_some', val) def is_filter_some(self): """ @@ -1528,7 +1450,7 @@ def is_filter_some(self): :rtype: bool """ - return self._tag == "filter_some" + return self._tag == 'filter_some' def is_other(self): """ @@ -1536,7 +1458,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_filter_some(self): """ @@ -1552,14 +1474,10 @@ def get_filter_some(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TemplateFilterBase, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TemplateFilterBase, self)._process_custom_annotations(annotation_type, field_path, processor) TemplateFilterBase_validator = bv.Union(TemplateFilterBase) - class TemplateFilter(TemplateFilterBase): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -1580,17 +1498,13 @@ def is_filter_none(self): :rtype: bool """ - return self._tag == "filter_none" + return self._tag == 'filter_none' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TemplateFilter, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TemplateFilter, self)._process_custom_annotations(annotation_type, field_path, processor) TemplateFilter_validator = bv.Union(TemplateFilter) - class TemplateOwnerType(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -1603,7 +1517,7 @@ class TemplateOwnerType(bb.Union): Template will be associated with a team. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition user = None # Attribute is overwritten below the class definition @@ -1617,7 +1531,7 @@ def is_user(self): :rtype: bool """ - return self._tag == "user" + return self._tag == 'user' def is_team(self): """ @@ -1625,7 +1539,7 @@ def is_team(self): :rtype: bool """ - return self._tag == "team" + return self._tag == 'team' def is_other(self): """ @@ -1633,17 +1547,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TemplateOwnerType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TemplateOwnerType, self)._process_custom_annotations(annotation_type, field_path, processor) TemplateOwnerType_validator = bv.Union(TemplateOwnerType) - class UpdatePropertiesArg(bb.Struct): """ :ivar UpdatePropertiesArg.path: @@ -1653,13 +1563,15 @@ class UpdatePropertiesArg(bb.Struct): """ __slots__ = [ - "_path_value", - "_update_property_groups_value", + '_path_value', + '_update_property_groups_value', ] _has_required_fields = True - def __init__(self, path=None, update_property_groups=None): + def __init__(self, + path=None, + update_property_groups=None): self._path_value = bb.NOT_SET self._update_property_groups_value = bb.NOT_SET if path is not None: @@ -1674,14 +1586,10 @@ def __init__(self, path=None, update_property_groups=None): update_property_groups = bb.Attribute("update_property_groups") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UpdatePropertiesArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UpdatePropertiesArg, self)._process_custom_annotations(annotation_type, field_path, processor) UpdatePropertiesArg_validator = bv.Struct(UpdatePropertiesArg) - class UpdatePropertiesError(InvalidPropertyGroupError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -1698,7 +1606,7 @@ def property_group_lookup(cls, val): :param LookUpPropertiesError val: :rtype: UpdatePropertiesError """ - return cls("property_group_lookup", val) + return cls('property_group_lookup', val) def is_property_group_lookup(self): """ @@ -1706,7 +1614,7 @@ def is_property_group_lookup(self): :rtype: bool """ - return self._tag == "property_group_lookup" + return self._tag == 'property_group_lookup' def get_property_group_lookup(self): """ @@ -1719,14 +1627,10 @@ def get_property_group_lookup(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UpdatePropertiesError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UpdatePropertiesError, self)._process_custom_annotations(annotation_type, field_path, processor) UpdatePropertiesError_validator = bv.Union(UpdatePropertiesError) - class UpdateTemplateArg(bb.Struct): """ :ivar UpdateTemplateArg.template_id: @@ -1745,15 +1649,19 @@ class UpdateTemplateArg(bb.Struct): """ __slots__ = [ - "_template_id_value", - "_name_value", - "_description_value", - "_add_fields_value", + '_template_id_value', + '_name_value', + '_description_value', + '_add_fields_value', ] _has_required_fields = True - def __init__(self, template_id=None, name=None, description=None, add_fields=None): + def __init__(self, + template_id=None, + name=None, + description=None, + add_fields=None): self._template_id_value = bb.NOT_SET self._name_value = bb.NOT_SET self._description_value = bb.NOT_SET @@ -1780,14 +1688,10 @@ def __init__(self, template_id=None, name=None, description=None, add_fields=Non add_fields = bb.Attribute("add_fields", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UpdateTemplateArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UpdateTemplateArg, self)._process_custom_annotations(annotation_type, field_path, processor) UpdateTemplateArg_validator = bv.Struct(UpdateTemplateArg) - class UpdateTemplateResult(bb.Struct): """ :ivar UpdateTemplateResult.template_id: @@ -1798,12 +1702,13 @@ class UpdateTemplateResult(bb.Struct): """ __slots__ = [ - "_template_id_value", + '_template_id_value', ] _has_required_fields = True - def __init__(self, template_id=None): + def __init__(self, + template_id=None): self._template_id_value = bb.NOT_SET if template_id is not None: self.template_id = template_id @@ -1812,133 +1717,120 @@ def __init__(self, template_id=None): template_id = bb.Attribute("template_id") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UpdateTemplateResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UpdateTemplateResult, self)._process_custom_annotations(annotation_type, field_path, processor) UpdateTemplateResult_validator = bv.Struct(UpdateTemplateResult) Id_validator = bv.String(min_length=1) -PathOrId_validator = bv.String(pattern="/(.|[\\r\\n])*|id:.*|(ns:[0-9]+(/.*)?)") +PathOrId_validator = bv.String(pattern='/(.|[\\r\\n])*|id:.*|(ns:[0-9]+(/.*)?)') PropertiesSearchCursor_validator = bv.String(min_length=1) -TemplateId_validator = bv.String(min_length=1, pattern="(/|ptid:).*") +TemplateId_validator = bv.String(min_length=1, pattern='(/|ptid:).*') AddPropertiesArg.path.validator = PathOrId_validator AddPropertiesArg.property_groups.validator = bv.List(PropertyGroup_validator) -AddPropertiesArg._all_field_names_ = set( - [ - "path", - "property_groups", - ] -) +AddPropertiesArg._all_field_names_ = set([ + 'path', + 'property_groups', +]) AddPropertiesArg._all_fields_ = [ - ("path", AddPropertiesArg.path.validator), - ("property_groups", AddPropertiesArg.property_groups.validator), + ('path', AddPropertiesArg.path.validator), + ('property_groups', AddPropertiesArg.property_groups.validator), ] TemplateError._template_not_found_validator = TemplateId_validator TemplateError._restricted_content_validator = bv.Void() TemplateError._other_validator = bv.Void() TemplateError._tagmap = { - "template_not_found": TemplateError._template_not_found_validator, - "restricted_content": TemplateError._restricted_content_validator, - "other": TemplateError._other_validator, + 'template_not_found': TemplateError._template_not_found_validator, + 'restricted_content': TemplateError._restricted_content_validator, + 'other': TemplateError._other_validator, } -TemplateError.restricted_content = TemplateError("restricted_content") -TemplateError.other = TemplateError("other") +TemplateError.restricted_content = TemplateError('restricted_content') +TemplateError.other = TemplateError('other') PropertiesError._path_validator = LookupError_validator PropertiesError._unsupported_folder_validator = bv.Void() PropertiesError._tagmap = { - "path": PropertiesError._path_validator, - "unsupported_folder": PropertiesError._unsupported_folder_validator, + 'path': PropertiesError._path_validator, + 'unsupported_folder': PropertiesError._unsupported_folder_validator, } PropertiesError._tagmap.update(TemplateError._tagmap) -PropertiesError.unsupported_folder = PropertiesError("unsupported_folder") +PropertiesError.unsupported_folder = PropertiesError('unsupported_folder') InvalidPropertyGroupError._property_field_too_large_validator = bv.Void() InvalidPropertyGroupError._does_not_fit_template_validator = bv.Void() InvalidPropertyGroupError._duplicate_property_groups_validator = bv.Void() InvalidPropertyGroupError._tagmap = { - "property_field_too_large": InvalidPropertyGroupError._property_field_too_large_validator, - "does_not_fit_template": InvalidPropertyGroupError._does_not_fit_template_validator, - "duplicate_property_groups": InvalidPropertyGroupError._duplicate_property_groups_validator, + 'property_field_too_large': InvalidPropertyGroupError._property_field_too_large_validator, + 'does_not_fit_template': InvalidPropertyGroupError._does_not_fit_template_validator, + 'duplicate_property_groups': InvalidPropertyGroupError._duplicate_property_groups_validator, } InvalidPropertyGroupError._tagmap.update(PropertiesError._tagmap) -InvalidPropertyGroupError.property_field_too_large = InvalidPropertyGroupError( - "property_field_too_large" -) -InvalidPropertyGroupError.does_not_fit_template = InvalidPropertyGroupError("does_not_fit_template") -InvalidPropertyGroupError.duplicate_property_groups = InvalidPropertyGroupError( - "duplicate_property_groups" -) +InvalidPropertyGroupError.property_field_too_large = InvalidPropertyGroupError('property_field_too_large') +InvalidPropertyGroupError.does_not_fit_template = InvalidPropertyGroupError('does_not_fit_template') +InvalidPropertyGroupError.duplicate_property_groups = InvalidPropertyGroupError('duplicate_property_groups') AddPropertiesError._property_group_already_exists_validator = bv.Void() AddPropertiesError._tagmap = { - "property_group_already_exists": AddPropertiesError._property_group_already_exists_validator, + 'property_group_already_exists': AddPropertiesError._property_group_already_exists_validator, } AddPropertiesError._tagmap.update(InvalidPropertyGroupError._tagmap) -AddPropertiesError.property_group_already_exists = AddPropertiesError( - "property_group_already_exists" -) +AddPropertiesError.property_group_already_exists = AddPropertiesError('property_group_already_exists') PropertyGroupTemplate.name.validator = bv.String() PropertyGroupTemplate.description.validator = bv.String() PropertyGroupTemplate.fields.validator = bv.List(PropertyFieldTemplate_validator) -PropertyGroupTemplate._all_field_names_ = set( - [ - "name", - "description", - "fields", - ] -) +PropertyGroupTemplate._all_field_names_ = set([ + 'name', + 'description', + 'fields', +]) PropertyGroupTemplate._all_fields_ = [ - ("name", PropertyGroupTemplate.name.validator), - ("description", PropertyGroupTemplate.description.validator), - ("fields", PropertyGroupTemplate.fields.validator), + ('name', PropertyGroupTemplate.name.validator), + ('description', PropertyGroupTemplate.description.validator), + ('fields', PropertyGroupTemplate.fields.validator), ] AddTemplateArg._all_field_names_ = PropertyGroupTemplate._all_field_names_.union(set([])) AddTemplateArg._all_fields_ = PropertyGroupTemplate._all_fields_ + [] AddTemplateResult.template_id.validator = TemplateId_validator -AddTemplateResult._all_field_names_ = set(["template_id"]) -AddTemplateResult._all_fields_ = [("template_id", AddTemplateResult.template_id.validator)] +AddTemplateResult._all_field_names_ = set(['template_id']) +AddTemplateResult._all_fields_ = [('template_id', AddTemplateResult.template_id.validator)] GetTemplateArg.template_id.validator = TemplateId_validator -GetTemplateArg._all_field_names_ = set(["template_id"]) -GetTemplateArg._all_fields_ = [("template_id", GetTemplateArg.template_id.validator)] +GetTemplateArg._all_field_names_ = set(['template_id']) +GetTemplateArg._all_fields_ = [('template_id', GetTemplateArg.template_id.validator)] GetTemplateResult._all_field_names_ = PropertyGroupTemplate._all_field_names_.union(set([])) GetTemplateResult._all_fields_ = PropertyGroupTemplate._all_fields_ + [] ListTemplateResult.template_ids.validator = bv.List(TemplateId_validator) -ListTemplateResult._all_field_names_ = set(["template_ids"]) -ListTemplateResult._all_fields_ = [("template_ids", ListTemplateResult.template_ids.validator)] +ListTemplateResult._all_field_names_ = set(['template_ids']) +ListTemplateResult._all_fields_ = [('template_ids', ListTemplateResult.template_ids.validator)] LogicalOperator._or_operator_validator = bv.Void() LogicalOperator._other_validator = bv.Void() LogicalOperator._tagmap = { - "or_operator": LogicalOperator._or_operator_validator, - "other": LogicalOperator._other_validator, + 'or_operator': LogicalOperator._or_operator_validator, + 'other': LogicalOperator._other_validator, } -LogicalOperator.or_operator = LogicalOperator("or_operator") -LogicalOperator.other = LogicalOperator("other") +LogicalOperator.or_operator = LogicalOperator('or_operator') +LogicalOperator.other = LogicalOperator('other') LookUpPropertiesError._property_group_not_found_validator = bv.Void() LookUpPropertiesError._other_validator = bv.Void() LookUpPropertiesError._tagmap = { - "property_group_not_found": LookUpPropertiesError._property_group_not_found_validator, - "other": LookUpPropertiesError._other_validator, + 'property_group_not_found': LookUpPropertiesError._property_group_not_found_validator, + 'other': LookUpPropertiesError._other_validator, } -LookUpPropertiesError.property_group_not_found = LookUpPropertiesError("property_group_not_found") -LookUpPropertiesError.other = LookUpPropertiesError("other") +LookUpPropertiesError.property_group_not_found = LookUpPropertiesError('property_group_not_found') +LookUpPropertiesError.other = LookUpPropertiesError('other') LookupError._malformed_path_validator = bv.String() LookupError._not_found_validator = bv.Void() @@ -1947,284 +1839,258 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): LookupError._restricted_content_validator = bv.Void() LookupError._other_validator = bv.Void() LookupError._tagmap = { - "malformed_path": LookupError._malformed_path_validator, - "not_found": LookupError._not_found_validator, - "not_file": LookupError._not_file_validator, - "not_folder": LookupError._not_folder_validator, - "restricted_content": LookupError._restricted_content_validator, - "other": LookupError._other_validator, + 'malformed_path': LookupError._malformed_path_validator, + 'not_found': LookupError._not_found_validator, + 'not_file': LookupError._not_file_validator, + 'not_folder': LookupError._not_folder_validator, + 'restricted_content': LookupError._restricted_content_validator, + 'other': LookupError._other_validator, } -LookupError.not_found = LookupError("not_found") -LookupError.not_file = LookupError("not_file") -LookupError.not_folder = LookupError("not_folder") -LookupError.restricted_content = LookupError("restricted_content") -LookupError.other = LookupError("other") +LookupError.not_found = LookupError('not_found') +LookupError.not_file = LookupError('not_file') +LookupError.not_folder = LookupError('not_folder') +LookupError.restricted_content = LookupError('restricted_content') +LookupError.other = LookupError('other') ModifyTemplateError._conflicting_property_names_validator = bv.Void() ModifyTemplateError._too_many_properties_validator = bv.Void() ModifyTemplateError._too_many_templates_validator = bv.Void() ModifyTemplateError._template_attribute_too_large_validator = bv.Void() ModifyTemplateError._tagmap = { - "conflicting_property_names": ModifyTemplateError._conflicting_property_names_validator, - "too_many_properties": ModifyTemplateError._too_many_properties_validator, - "too_many_templates": ModifyTemplateError._too_many_templates_validator, - "template_attribute_too_large": ModifyTemplateError._template_attribute_too_large_validator, + 'conflicting_property_names': ModifyTemplateError._conflicting_property_names_validator, + 'too_many_properties': ModifyTemplateError._too_many_properties_validator, + 'too_many_templates': ModifyTemplateError._too_many_templates_validator, + 'template_attribute_too_large': ModifyTemplateError._template_attribute_too_large_validator, } ModifyTemplateError._tagmap.update(TemplateError._tagmap) -ModifyTemplateError.conflicting_property_names = ModifyTemplateError("conflicting_property_names") -ModifyTemplateError.too_many_properties = ModifyTemplateError("too_many_properties") -ModifyTemplateError.too_many_templates = ModifyTemplateError("too_many_templates") -ModifyTemplateError.template_attribute_too_large = ModifyTemplateError( - "template_attribute_too_large" -) +ModifyTemplateError.conflicting_property_names = ModifyTemplateError('conflicting_property_names') +ModifyTemplateError.too_many_properties = ModifyTemplateError('too_many_properties') +ModifyTemplateError.too_many_templates = ModifyTemplateError('too_many_templates') +ModifyTemplateError.template_attribute_too_large = ModifyTemplateError('template_attribute_too_large') OverwritePropertyGroupArg.path.validator = PathOrId_validator OverwritePropertyGroupArg.property_groups.validator = bv.List(PropertyGroup_validator, min_items=1) -OverwritePropertyGroupArg._all_field_names_ = set( - [ - "path", - "property_groups", - ] -) +OverwritePropertyGroupArg._all_field_names_ = set([ + 'path', + 'property_groups', +]) OverwritePropertyGroupArg._all_fields_ = [ - ("path", OverwritePropertyGroupArg.path.validator), - ("property_groups", OverwritePropertyGroupArg.property_groups.validator), + ('path', OverwritePropertyGroupArg.path.validator), + ('property_groups', OverwritePropertyGroupArg.property_groups.validator), ] PropertiesSearchArg.queries.validator = bv.List(PropertiesSearchQuery_validator, min_items=1) PropertiesSearchArg.template_filter.validator = TemplateFilter_validator -PropertiesSearchArg._all_field_names_ = set( - [ - "queries", - "template_filter", - ] -) +PropertiesSearchArg._all_field_names_ = set([ + 'queries', + 'template_filter', +]) PropertiesSearchArg._all_fields_ = [ - ("queries", PropertiesSearchArg.queries.validator), - ("template_filter", PropertiesSearchArg.template_filter.validator), + ('queries', PropertiesSearchArg.queries.validator), + ('template_filter', PropertiesSearchArg.template_filter.validator), ] PropertiesSearchContinueArg.cursor.validator = PropertiesSearchCursor_validator -PropertiesSearchContinueArg._all_field_names_ = set(["cursor"]) -PropertiesSearchContinueArg._all_fields_ = [ - ("cursor", PropertiesSearchContinueArg.cursor.validator) -] +PropertiesSearchContinueArg._all_field_names_ = set(['cursor']) +PropertiesSearchContinueArg._all_fields_ = [('cursor', PropertiesSearchContinueArg.cursor.validator)] PropertiesSearchContinueError._reset_validator = bv.Void() PropertiesSearchContinueError._other_validator = bv.Void() PropertiesSearchContinueError._tagmap = { - "reset": PropertiesSearchContinueError._reset_validator, - "other": PropertiesSearchContinueError._other_validator, + 'reset': PropertiesSearchContinueError._reset_validator, + 'other': PropertiesSearchContinueError._other_validator, } -PropertiesSearchContinueError.reset = PropertiesSearchContinueError("reset") -PropertiesSearchContinueError.other = PropertiesSearchContinueError("other") +PropertiesSearchContinueError.reset = PropertiesSearchContinueError('reset') +PropertiesSearchContinueError.other = PropertiesSearchContinueError('other') PropertiesSearchError._property_group_lookup_validator = LookUpPropertiesError_validator PropertiesSearchError._other_validator = bv.Void() PropertiesSearchError._tagmap = { - "property_group_lookup": PropertiesSearchError._property_group_lookup_validator, - "other": PropertiesSearchError._other_validator, + 'property_group_lookup': PropertiesSearchError._property_group_lookup_validator, + 'other': PropertiesSearchError._other_validator, } -PropertiesSearchError.other = PropertiesSearchError("other") +PropertiesSearchError.other = PropertiesSearchError('other') PropertiesSearchMatch.id.validator = Id_validator PropertiesSearchMatch.path.validator = bv.String() PropertiesSearchMatch.is_deleted.validator = bv.Boolean() PropertiesSearchMatch.property_groups.validator = bv.List(PropertyGroup_validator) -PropertiesSearchMatch._all_field_names_ = set( - [ - "id", - "path", - "is_deleted", - "property_groups", - ] -) +PropertiesSearchMatch._all_field_names_ = set([ + 'id', + 'path', + 'is_deleted', + 'property_groups', +]) PropertiesSearchMatch._all_fields_ = [ - ("id", PropertiesSearchMatch.id.validator), - ("path", PropertiesSearchMatch.path.validator), - ("is_deleted", PropertiesSearchMatch.is_deleted.validator), - ("property_groups", PropertiesSearchMatch.property_groups.validator), + ('id', PropertiesSearchMatch.id.validator), + ('path', PropertiesSearchMatch.path.validator), + ('is_deleted', PropertiesSearchMatch.is_deleted.validator), + ('property_groups', PropertiesSearchMatch.property_groups.validator), ] PropertiesSearchMode._field_name_validator = bv.String() PropertiesSearchMode._other_validator = bv.Void() PropertiesSearchMode._tagmap = { - "field_name": PropertiesSearchMode._field_name_validator, - "other": PropertiesSearchMode._other_validator, + 'field_name': PropertiesSearchMode._field_name_validator, + 'other': PropertiesSearchMode._other_validator, } -PropertiesSearchMode.other = PropertiesSearchMode("other") +PropertiesSearchMode.other = PropertiesSearchMode('other') PropertiesSearchQuery.query.validator = bv.String() PropertiesSearchQuery.mode.validator = PropertiesSearchMode_validator PropertiesSearchQuery.logical_operator.validator = LogicalOperator_validator -PropertiesSearchQuery._all_field_names_ = set( - [ - "query", - "mode", - "logical_operator", - ] -) +PropertiesSearchQuery._all_field_names_ = set([ + 'query', + 'mode', + 'logical_operator', +]) PropertiesSearchQuery._all_fields_ = [ - ("query", PropertiesSearchQuery.query.validator), - ("mode", PropertiesSearchQuery.mode.validator), - ("logical_operator", PropertiesSearchQuery.logical_operator.validator), + ('query', PropertiesSearchQuery.query.validator), + ('mode', PropertiesSearchQuery.mode.validator), + ('logical_operator', PropertiesSearchQuery.logical_operator.validator), ] PropertiesSearchResult.matches.validator = bv.List(PropertiesSearchMatch_validator) PropertiesSearchResult.cursor.validator = bv.Nullable(PropertiesSearchCursor_validator) -PropertiesSearchResult._all_field_names_ = set( - [ - "matches", - "cursor", - ] -) +PropertiesSearchResult._all_field_names_ = set([ + 'matches', + 'cursor', +]) PropertiesSearchResult._all_fields_ = [ - ("matches", PropertiesSearchResult.matches.validator), - ("cursor", PropertiesSearchResult.cursor.validator), + ('matches', PropertiesSearchResult.matches.validator), + ('cursor', PropertiesSearchResult.cursor.validator), ] PropertyField.name.validator = bv.String() PropertyField.value.validator = bv.String() -PropertyField._all_field_names_ = set( - [ - "name", - "value", - ] -) +PropertyField._all_field_names_ = set([ + 'name', + 'value', +]) PropertyField._all_fields_ = [ - ("name", PropertyField.name.validator), - ("value", PropertyField.value.validator), + ('name', PropertyField.name.validator), + ('value', PropertyField.value.validator), ] PropertyFieldTemplate.name.validator = bv.String() PropertyFieldTemplate.description.validator = bv.String() PropertyFieldTemplate.type.validator = PropertyType_validator -PropertyFieldTemplate._all_field_names_ = set( - [ - "name", - "description", - "type", - ] -) +PropertyFieldTemplate._all_field_names_ = set([ + 'name', + 'description', + 'type', +]) PropertyFieldTemplate._all_fields_ = [ - ("name", PropertyFieldTemplate.name.validator), - ("description", PropertyFieldTemplate.description.validator), - ("type", PropertyFieldTemplate.type.validator), + ('name', PropertyFieldTemplate.name.validator), + ('description', PropertyFieldTemplate.description.validator), + ('type', PropertyFieldTemplate.type.validator), ] PropertyGroup.template_id.validator = TemplateId_validator PropertyGroup.fields.validator = bv.List(PropertyField_validator) -PropertyGroup._all_field_names_ = set( - [ - "template_id", - "fields", - ] -) +PropertyGroup._all_field_names_ = set([ + 'template_id', + 'fields', +]) PropertyGroup._all_fields_ = [ - ("template_id", PropertyGroup.template_id.validator), - ("fields", PropertyGroup.fields.validator), + ('template_id', PropertyGroup.template_id.validator), + ('fields', PropertyGroup.fields.validator), ] PropertyGroupUpdate.template_id.validator = TemplateId_validator PropertyGroupUpdate.add_or_update_fields.validator = bv.Nullable(bv.List(PropertyField_validator)) PropertyGroupUpdate.remove_fields.validator = bv.Nullable(bv.List(bv.String())) -PropertyGroupUpdate._all_field_names_ = set( - [ - "template_id", - "add_or_update_fields", - "remove_fields", - ] -) +PropertyGroupUpdate._all_field_names_ = set([ + 'template_id', + 'add_or_update_fields', + 'remove_fields', +]) PropertyGroupUpdate._all_fields_ = [ - ("template_id", PropertyGroupUpdate.template_id.validator), - ("add_or_update_fields", PropertyGroupUpdate.add_or_update_fields.validator), - ("remove_fields", PropertyGroupUpdate.remove_fields.validator), + ('template_id', PropertyGroupUpdate.template_id.validator), + ('add_or_update_fields', PropertyGroupUpdate.add_or_update_fields.validator), + ('remove_fields', PropertyGroupUpdate.remove_fields.validator), ] PropertyType._string_validator = bv.Void() PropertyType._other_validator = bv.Void() PropertyType._tagmap = { - "string": PropertyType._string_validator, - "other": PropertyType._other_validator, + 'string': PropertyType._string_validator, + 'other': PropertyType._other_validator, } -PropertyType.string = PropertyType("string") -PropertyType.other = PropertyType("other") +PropertyType.string = PropertyType('string') +PropertyType.other = PropertyType('other') RemovePropertiesArg.path.validator = PathOrId_validator RemovePropertiesArg.property_template_ids.validator = bv.List(TemplateId_validator) -RemovePropertiesArg._all_field_names_ = set( - [ - "path", - "property_template_ids", - ] -) +RemovePropertiesArg._all_field_names_ = set([ + 'path', + 'property_template_ids', +]) RemovePropertiesArg._all_fields_ = [ - ("path", RemovePropertiesArg.path.validator), - ("property_template_ids", RemovePropertiesArg.property_template_ids.validator), + ('path', RemovePropertiesArg.path.validator), + ('property_template_ids', RemovePropertiesArg.property_template_ids.validator), ] RemovePropertiesError._property_group_lookup_validator = LookUpPropertiesError_validator RemovePropertiesError._tagmap = { - "property_group_lookup": RemovePropertiesError._property_group_lookup_validator, + 'property_group_lookup': RemovePropertiesError._property_group_lookup_validator, } RemovePropertiesError._tagmap.update(PropertiesError._tagmap) RemoveTemplateArg.template_id.validator = TemplateId_validator -RemoveTemplateArg._all_field_names_ = set(["template_id"]) -RemoveTemplateArg._all_fields_ = [("template_id", RemoveTemplateArg.template_id.validator)] +RemoveTemplateArg._all_field_names_ = set(['template_id']) +RemoveTemplateArg._all_fields_ = [('template_id', RemoveTemplateArg.template_id.validator)] TemplateFilterBase._filter_some_validator = bv.List(TemplateId_validator, min_items=1) TemplateFilterBase._other_validator = bv.Void() TemplateFilterBase._tagmap = { - "filter_some": TemplateFilterBase._filter_some_validator, - "other": TemplateFilterBase._other_validator, + 'filter_some': TemplateFilterBase._filter_some_validator, + 'other': TemplateFilterBase._other_validator, } -TemplateFilterBase.other = TemplateFilterBase("other") +TemplateFilterBase.other = TemplateFilterBase('other') TemplateFilter._filter_none_validator = bv.Void() TemplateFilter._tagmap = { - "filter_none": TemplateFilter._filter_none_validator, + 'filter_none': TemplateFilter._filter_none_validator, } TemplateFilter._tagmap.update(TemplateFilterBase._tagmap) -TemplateFilter.filter_none = TemplateFilter("filter_none") +TemplateFilter.filter_none = TemplateFilter('filter_none') TemplateOwnerType._user_validator = bv.Void() TemplateOwnerType._team_validator = bv.Void() TemplateOwnerType._other_validator = bv.Void() TemplateOwnerType._tagmap = { - "user": TemplateOwnerType._user_validator, - "team": TemplateOwnerType._team_validator, - "other": TemplateOwnerType._other_validator, + 'user': TemplateOwnerType._user_validator, + 'team': TemplateOwnerType._team_validator, + 'other': TemplateOwnerType._other_validator, } -TemplateOwnerType.user = TemplateOwnerType("user") -TemplateOwnerType.team = TemplateOwnerType("team") -TemplateOwnerType.other = TemplateOwnerType("other") +TemplateOwnerType.user = TemplateOwnerType('user') +TemplateOwnerType.team = TemplateOwnerType('team') +TemplateOwnerType.other = TemplateOwnerType('other') UpdatePropertiesArg.path.validator = PathOrId_validator UpdatePropertiesArg.update_property_groups.validator = bv.List(PropertyGroupUpdate_validator) -UpdatePropertiesArg._all_field_names_ = set( - [ - "path", - "update_property_groups", - ] -) +UpdatePropertiesArg._all_field_names_ = set([ + 'path', + 'update_property_groups', +]) UpdatePropertiesArg._all_fields_ = [ - ("path", UpdatePropertiesArg.path.validator), - ("update_property_groups", UpdatePropertiesArg.update_property_groups.validator), + ('path', UpdatePropertiesArg.path.validator), + ('update_property_groups', UpdatePropertiesArg.update_property_groups.validator), ] UpdatePropertiesError._property_group_lookup_validator = LookUpPropertiesError_validator UpdatePropertiesError._tagmap = { - "property_group_lookup": UpdatePropertiesError._property_group_lookup_validator, + 'property_group_lookup': UpdatePropertiesError._property_group_lookup_validator, } UpdatePropertiesError._tagmap.update(InvalidPropertyGroupError._tagmap) @@ -2232,187 +2098,218 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): UpdateTemplateArg.name.validator = bv.Nullable(bv.String()) UpdateTemplateArg.description.validator = bv.Nullable(bv.String()) UpdateTemplateArg.add_fields.validator = bv.Nullable(bv.List(PropertyFieldTemplate_validator)) -UpdateTemplateArg._all_field_names_ = set( - [ - "template_id", - "name", - "description", - "add_fields", - ] -) +UpdateTemplateArg._all_field_names_ = set([ + 'template_id', + 'name', + 'description', + 'add_fields', +]) UpdateTemplateArg._all_fields_ = [ - ("template_id", UpdateTemplateArg.template_id.validator), - ("name", UpdateTemplateArg.name.validator), - ("description", UpdateTemplateArg.description.validator), - ("add_fields", UpdateTemplateArg.add_fields.validator), + ('template_id', UpdateTemplateArg.template_id.validator), + ('name', UpdateTemplateArg.name.validator), + ('description', UpdateTemplateArg.description.validator), + ('add_fields', UpdateTemplateArg.add_fields.validator), ] UpdateTemplateResult.template_id.validator = TemplateId_validator -UpdateTemplateResult._all_field_names_ = set(["template_id"]) -UpdateTemplateResult._all_fields_ = [("template_id", UpdateTemplateResult.template_id.validator)] +UpdateTemplateResult._all_field_names_ = set(['template_id']) +UpdateTemplateResult._all_fields_ = [('template_id', UpdateTemplateResult.template_id.validator)] PropertiesSearchArg.template_filter.default = TemplateFilter.filter_none PropertiesSearchQuery.logical_operator.default = LogicalOperator.or_operator properties_add = bb.Route( - "properties/add", + 'properties/add', 1, False, AddPropertiesArg_validator, bv.Void(), AddPropertiesError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) properties_overwrite = bb.Route( - "properties/overwrite", + 'properties/overwrite', 1, False, OverwritePropertyGroupArg_validator, bv.Void(), InvalidPropertyGroupError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) properties_remove = bb.Route( - "properties/remove", + 'properties/remove', 1, False, RemovePropertiesArg_validator, bv.Void(), RemovePropertiesError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) properties_search = bb.Route( - "properties/search", + 'properties/search', 1, False, PropertiesSearchArg_validator, PropertiesSearchResult_validator, PropertiesSearchError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) properties_search_continue = bb.Route( - "properties/search/continue", + 'properties/search/continue', 1, False, PropertiesSearchContinueArg_validator, PropertiesSearchResult_validator, PropertiesSearchContinueError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) properties_update = bb.Route( - "properties/update", + 'properties/update', 1, False, UpdatePropertiesArg_validator, bv.Void(), UpdatePropertiesError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) templates_add_for_team = bb.Route( - "templates/add_for_team", + 'templates/add_for_team', 1, False, AddTemplateArg_validator, AddTemplateResult_validator, ModifyTemplateError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) templates_add_for_user = bb.Route( - "templates/add_for_user", + 'templates/add_for_user', 1, False, AddTemplateArg_validator, AddTemplateResult_validator, ModifyTemplateError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) templates_get_for_team = bb.Route( - "templates/get_for_team", + 'templates/get_for_team', 1, False, GetTemplateArg_validator, GetTemplateResult_validator, TemplateError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) templates_get_for_user = bb.Route( - "templates/get_for_user", + 'templates/get_for_user', 1, False, GetTemplateArg_validator, GetTemplateResult_validator, TemplateError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) templates_list_for_team = bb.Route( - "templates/list_for_team", + 'templates/list_for_team', 1, False, bv.Void(), ListTemplateResult_validator, TemplateError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) templates_list_for_user = bb.Route( - "templates/list_for_user", + 'templates/list_for_user', 1, False, bv.Void(), ListTemplateResult_validator, TemplateError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) templates_remove_for_team = bb.Route( - "templates/remove_for_team", + 'templates/remove_for_team', 1, False, RemoveTemplateArg_validator, bv.Void(), TemplateError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) templates_remove_for_user = bb.Route( - "templates/remove_for_user", + 'templates/remove_for_user', 1, False, RemoveTemplateArg_validator, bv.Void(), TemplateError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) templates_update_for_team = bb.Route( - "templates/update_for_team", + 'templates/update_for_team', 1, False, UpdateTemplateArg_validator, UpdateTemplateResult_validator, ModifyTemplateError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) templates_update_for_user = bb.Route( - "templates/update_for_user", + 'templates/update_for_user', 1, False, UpdateTemplateArg_validator, UpdateTemplateResult_validator, ModifyTemplateError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) ROUTES = { - "properties/add": properties_add, - "properties/overwrite": properties_overwrite, - "properties/remove": properties_remove, - "properties/search": properties_search, - "properties/search/continue": properties_search_continue, - "properties/update": properties_update, - "templates/add_for_team": templates_add_for_team, - "templates/add_for_user": templates_add_for_user, - "templates/get_for_team": templates_get_for_team, - "templates/get_for_user": templates_get_for_user, - "templates/list_for_team": templates_list_for_team, - "templates/list_for_user": templates_list_for_user, - "templates/remove_for_team": templates_remove_for_team, - "templates/remove_for_user": templates_remove_for_user, - "templates/update_for_team": templates_update_for_team, - "templates/update_for_user": templates_update_for_user, + 'properties/add': properties_add, + 'properties/overwrite': properties_overwrite, + 'properties/remove': properties_remove, + 'properties/search': properties_search, + 'properties/search/continue': properties_search_continue, + 'properties/update': properties_update, + 'templates/add_for_team': templates_add_for_team, + 'templates/add_for_user': templates_add_for_user, + 'templates/get_for_team': templates_get_for_team, + 'templates/get_for_user': templates_get_for_user, + 'templates/list_for_team': templates_list_for_team, + 'templates/list_for_user': templates_list_for_user, + 'templates/remove_for_team': templates_remove_for_team, + 'templates/remove_for_user': templates_remove_for_user, + 'templates/update_for_team': templates_update_for_team, + 'templates/update_for_user': templates_update_for_user, } + diff --git a/dropbox/file_requests.py b/dropbox/file_requests.py index 6526aefc..54e67fa2 100644 --- a/dropbox/file_requests.py +++ b/dropbox/file_requests.py @@ -14,7 +14,6 @@ from dropbox import common from dropbox import files - class GeneralFileRequestsError(bb.Union): """ There is an error accessing the file requests functionality. @@ -27,7 +26,7 @@ class GeneralFileRequestsError(bb.Union): This user's Dropbox Business team doesn't allow file requests. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition disabled_for_team = None # Attribute is overwritten below the class definition @@ -39,7 +38,7 @@ def is_disabled_for_team(self): :rtype: bool """ - return self._tag == "disabled_for_team" + return self._tag == 'disabled_for_team' def is_other(self): """ @@ -47,17 +46,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GeneralFileRequestsError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GeneralFileRequestsError, self)._process_custom_annotations(annotation_type, field_path, processor) GeneralFileRequestsError_validator = bv.Union(GeneralFileRequestsError) - class CountFileRequestsError(GeneralFileRequestsError): """ There was an error counting the file requests. @@ -68,14 +63,10 @@ class CountFileRequestsError(GeneralFileRequestsError): """ def _process_custom_annotations(self, annotation_type, field_path, processor): - super(CountFileRequestsError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(CountFileRequestsError, self)._process_custom_annotations(annotation_type, field_path, processor) CountFileRequestsError_validator = bv.Union(CountFileRequestsError) - class CountFileRequestsResult(bb.Struct): """ Result for :meth:`dropbox.dropbox_client.Dropbox.file_requests_count`. @@ -85,12 +76,13 @@ class CountFileRequestsResult(bb.Struct): """ __slots__ = [ - "_file_request_count_value", + '_file_request_count_value', ] _has_required_fields = True - def __init__(self, file_request_count=None): + def __init__(self, + file_request_count=None): self._file_request_count_value = bb.NOT_SET if file_request_count is not None: self.file_request_count = file_request_count @@ -99,14 +91,10 @@ def __init__(self, file_request_count=None): file_request_count = bb.Attribute("file_request_count") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(CountFileRequestsResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(CountFileRequestsResult, self)._process_custom_annotations(annotation_type, field_path, processor) CountFileRequestsResult_validator = bv.Struct(CountFileRequestsResult) - class CreateFileRequestArgs(bb.Struct): """ Arguments for :meth:`dropbox.dropbox_client.Dropbox.file_requests_create`. @@ -131,25 +119,23 @@ class CreateFileRequestArgs(bb.Struct): """ __slots__ = [ - "_title_value", - "_destination_value", - "_deadline_value", - "_open_value", - "_description_value", - "_video_project_id_value", + '_title_value', + '_destination_value', + '_deadline_value', + '_open_value', + '_description_value', + '_video_project_id_value', ] _has_required_fields = True - def __init__( - self, - title=None, - destination=None, - deadline=None, - open=None, - description=None, - video_project_id=None, - ): + def __init__(self, + title=None, + destination=None, + deadline=None, + open=None, + description=None, + video_project_id=None): self._title_value = bb.NOT_SET self._destination_value = bb.NOT_SET self._deadline_value = bb.NOT_SET @@ -188,14 +174,10 @@ def __init__( video_project_id = bb.Attribute("video_project_id", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(CreateFileRequestArgs, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(CreateFileRequestArgs, self)._process_custom_annotations(annotation_type, field_path, processor) CreateFileRequestArgs_validator = bv.Struct(CreateFileRequestArgs) - class FileRequestError(GeneralFileRequestsError): """ There is an error with the file request. @@ -245,7 +227,7 @@ def is_not_found(self): :rtype: bool """ - return self._tag == "not_found" + return self._tag == 'not_found' def is_not_a_folder(self): """ @@ -253,7 +235,7 @@ def is_not_a_folder(self): :rtype: bool """ - return self._tag == "not_a_folder" + return self._tag == 'not_a_folder' def is_app_lacks_access(self): """ @@ -261,7 +243,7 @@ def is_app_lacks_access(self): :rtype: bool """ - return self._tag == "app_lacks_access" + return self._tag == 'app_lacks_access' def is_no_permission(self): """ @@ -269,7 +251,7 @@ def is_no_permission(self): :rtype: bool """ - return self._tag == "no_permission" + return self._tag == 'no_permission' def is_email_unverified(self): """ @@ -277,7 +259,7 @@ def is_email_unverified(self): :rtype: bool """ - return self._tag == "email_unverified" + return self._tag == 'email_unverified' def is_validation_error(self): """ @@ -285,7 +267,7 @@ def is_validation_error(self): :rtype: bool """ - return self._tag == "validation_error" + return self._tag == 'validation_error' def is_no_write_permission(self): """ @@ -293,17 +275,13 @@ def is_no_write_permission(self): :rtype: bool """ - return self._tag == "no_write_permission" + return self._tag == 'no_write_permission' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileRequestError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileRequestError, self)._process_custom_annotations(annotation_type, field_path, processor) FileRequestError_validator = bv.Union(FileRequestError) - class CreateFileRequestError(FileRequestError): """ There was an error creating the file request. @@ -330,7 +308,7 @@ def is_invalid_location(self): :rtype: bool """ - return self._tag == "invalid_location" + return self._tag == 'invalid_location' def is_rate_limit(self): """ @@ -338,17 +316,13 @@ def is_rate_limit(self): :rtype: bool """ - return self._tag == "rate_limit" + return self._tag == 'rate_limit' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(CreateFileRequestError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(CreateFileRequestError, self)._process_custom_annotations(annotation_type, field_path, processor) CreateFileRequestError_validator = bv.Union(CreateFileRequestError) - class DeleteAllClosedFileRequestsError(FileRequestError): """ There was an error deleting all closed file requests. @@ -359,14 +333,10 @@ class DeleteAllClosedFileRequestsError(FileRequestError): """ def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeleteAllClosedFileRequestsError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DeleteAllClosedFileRequestsError, self)._process_custom_annotations(annotation_type, field_path, processor) DeleteAllClosedFileRequestsError_validator = bv.Union(DeleteAllClosedFileRequestsError) - class DeleteAllClosedFileRequestsResult(bb.Struct): """ Result for @@ -377,12 +347,13 @@ class DeleteAllClosedFileRequestsResult(bb.Struct): """ __slots__ = [ - "_file_requests_value", + '_file_requests_value', ] _has_required_fields = True - def __init__(self, file_requests=None): + def __init__(self, + file_requests=None): self._file_requests_value = bb.NOT_SET if file_requests is not None: self.file_requests = file_requests @@ -391,14 +362,10 @@ def __init__(self, file_requests=None): file_requests = bb.Attribute("file_requests") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeleteAllClosedFileRequestsResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DeleteAllClosedFileRequestsResult, self)._process_custom_annotations(annotation_type, field_path, processor) DeleteAllClosedFileRequestsResult_validator = bv.Struct(DeleteAllClosedFileRequestsResult) - class DeleteFileRequestArgs(bb.Struct): """ Arguments for :meth:`dropbox.dropbox_client.Dropbox.file_requests_delete`. @@ -408,12 +375,13 @@ class DeleteFileRequestArgs(bb.Struct): """ __slots__ = [ - "_ids_value", + '_ids_value', ] _has_required_fields = True - def __init__(self, ids=None): + def __init__(self, + ids=None): self._ids_value = bb.NOT_SET if ids is not None: self.ids = ids @@ -422,14 +390,10 @@ def __init__(self, ids=None): ids = bb.Attribute("ids") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeleteFileRequestArgs, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DeleteFileRequestArgs, self)._process_custom_annotations(annotation_type, field_path, processor) DeleteFileRequestArgs_validator = bv.Struct(DeleteFileRequestArgs) - class DeleteFileRequestError(FileRequestError): """ There was an error deleting these file requests. @@ -451,17 +415,13 @@ def is_file_request_open(self): :rtype: bool """ - return self._tag == "file_request_open" + return self._tag == 'file_request_open' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeleteFileRequestError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DeleteFileRequestError, self)._process_custom_annotations(annotation_type, field_path, processor) DeleteFileRequestError_validator = bv.Union(DeleteFileRequestError) - class DeleteFileRequestsResult(bb.Struct): """ Result for :meth:`dropbox.dropbox_client.Dropbox.file_requests_delete`. @@ -471,12 +431,13 @@ class DeleteFileRequestsResult(bb.Struct): """ __slots__ = [ - "_file_requests_value", + '_file_requests_value', ] _has_required_fields = True - def __init__(self, file_requests=None): + def __init__(self, + file_requests=None): self._file_requests_value = bb.NOT_SET if file_requests is not None: self.file_requests = file_requests @@ -485,14 +446,10 @@ def __init__(self, file_requests=None): file_requests = bb.Attribute("file_requests") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeleteFileRequestsResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DeleteFileRequestsResult, self)._process_custom_annotations(annotation_type, field_path, processor) DeleteFileRequestsResult_validator = bv.Struct(DeleteFileRequestsResult) - class FileRequest(bb.Struct): """ A `file request `_ for receiving files @@ -525,33 +482,31 @@ class FileRequest(bb.Struct): """ __slots__ = [ - "_id_value", - "_url_value", - "_title_value", - "_destination_value", - "_created_value", - "_deadline_value", - "_is_open_value", - "_file_count_value", - "_description_value", - "_video_project_id_value", + '_id_value', + '_url_value', + '_title_value', + '_destination_value', + '_created_value', + '_deadline_value', + '_is_open_value', + '_file_count_value', + '_description_value', + '_video_project_id_value', ] _has_required_fields = True - def __init__( - self, - id=None, - url=None, - title=None, - created=None, - is_open=None, - file_count=None, - destination=None, - deadline=None, - description=None, - video_project_id=None, - ): + def __init__(self, + id=None, + url=None, + title=None, + created=None, + is_open=None, + file_count=None, + destination=None, + deadline=None, + description=None, + video_project_id=None): self._id_value = bb.NOT_SET self._url_value = bb.NOT_SET self._title_value = bb.NOT_SET @@ -616,10 +571,8 @@ def __init__( def _process_custom_annotations(self, annotation_type, field_path, processor): super(FileRequest, self)._process_custom_annotations(annotation_type, field_path, processor) - FileRequest_validator = bv.Struct(FileRequest) - class FileRequestDeadline(bb.Struct): """ :ivar FileRequestDeadline.deadline: @@ -630,13 +583,15 @@ class FileRequestDeadline(bb.Struct): """ __slots__ = [ - "_deadline_value", - "_allow_late_uploads_value", + '_deadline_value', + '_allow_late_uploads_value', ] _has_required_fields = True - def __init__(self, deadline=None, allow_late_uploads=None): + def __init__(self, + deadline=None, + allow_late_uploads=None): self._deadline_value = bb.NOT_SET self._allow_late_uploads_value = bb.NOT_SET if deadline is not None: @@ -651,14 +606,10 @@ def __init__(self, deadline=None, allow_late_uploads=None): allow_late_uploads = bb.Attribute("allow_late_uploads", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileRequestDeadline, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileRequestDeadline, self)._process_custom_annotations(annotation_type, field_path, processor) FileRequestDeadline_validator = bv.Struct(FileRequestDeadline) - class GetFileRequestArgs(bb.Struct): """ Arguments for :meth:`dropbox.dropbox_client.Dropbox.file_requests_get`. @@ -668,12 +619,13 @@ class GetFileRequestArgs(bb.Struct): """ __slots__ = [ - "_id_value", + '_id_value', ] _has_required_fields = True - def __init__(self, id=None): + def __init__(self, + id=None): self._id_value = bb.NOT_SET if id is not None: self.id = id @@ -682,14 +634,10 @@ def __init__(self, id=None): id = bb.Attribute("id") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetFileRequestArgs, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GetFileRequestArgs, self)._process_custom_annotations(annotation_type, field_path, processor) GetFileRequestArgs_validator = bv.Struct(GetFileRequestArgs) - class GetFileRequestError(FileRequestError): """ There was an error retrieving the specified file request. @@ -700,14 +648,10 @@ class GetFileRequestError(FileRequestError): """ def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetFileRequestError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GetFileRequestError, self)._process_custom_annotations(annotation_type, field_path, processor) GetFileRequestError_validator = bv.Union(GetFileRequestError) - class GracePeriod(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -715,7 +659,7 @@ class GracePeriod(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition one_day = None # Attribute is overwritten below the class definition @@ -735,7 +679,7 @@ def is_one_day(self): :rtype: bool """ - return self._tag == "one_day" + return self._tag == 'one_day' def is_two_days(self): """ @@ -743,7 +687,7 @@ def is_two_days(self): :rtype: bool """ - return self._tag == "two_days" + return self._tag == 'two_days' def is_seven_days(self): """ @@ -751,7 +695,7 @@ def is_seven_days(self): :rtype: bool """ - return self._tag == "seven_days" + return self._tag == 'seven_days' def is_thirty_days(self): """ @@ -759,7 +703,7 @@ def is_thirty_days(self): :rtype: bool """ - return self._tag == "thirty_days" + return self._tag == 'thirty_days' def is_always(self): """ @@ -767,7 +711,7 @@ def is_always(self): :rtype: bool """ - return self._tag == "always" + return self._tag == 'always' def is_other(self): """ @@ -775,15 +719,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): super(GracePeriod, self)._process_custom_annotations(annotation_type, field_path, processor) - GracePeriod_validator = bv.Union(GracePeriod) - class ListFileRequestsArg(bb.Struct): """ Arguments for :meth:`dropbox.dropbox_client.Dropbox.file_requests_list`. @@ -793,12 +735,13 @@ class ListFileRequestsArg(bb.Struct): """ __slots__ = [ - "_limit_value", + '_limit_value', ] _has_required_fields = False - def __init__(self, limit=None): + def __init__(self, + limit=None): self._limit_value = bb.NOT_SET if limit is not None: self.limit = limit @@ -807,14 +750,10 @@ def __init__(self, limit=None): limit = bb.Attribute("limit") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListFileRequestsArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ListFileRequestsArg, self)._process_custom_annotations(annotation_type, field_path, processor) ListFileRequestsArg_validator = bv.Struct(ListFileRequestsArg) - class ListFileRequestsContinueArg(bb.Struct): """ :ivar ListFileRequestsContinueArg.cursor: @@ -823,12 +762,13 @@ class ListFileRequestsContinueArg(bb.Struct): """ __slots__ = [ - "_cursor_value", + '_cursor_value', ] _has_required_fields = True - def __init__(self, cursor=None): + def __init__(self, + cursor=None): self._cursor_value = bb.NOT_SET if cursor is not None: self.cursor = cursor @@ -837,14 +777,10 @@ def __init__(self, cursor=None): cursor = bb.Attribute("cursor") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListFileRequestsContinueArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ListFileRequestsContinueArg, self)._process_custom_annotations(annotation_type, field_path, processor) ListFileRequestsContinueArg_validator = bv.Struct(ListFileRequestsContinueArg) - class ListFileRequestsContinueError(GeneralFileRequestsError): """ There was an error retrieving the file requests. @@ -866,17 +802,13 @@ def is_invalid_cursor(self): :rtype: bool """ - return self._tag == "invalid_cursor" + return self._tag == 'invalid_cursor' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListFileRequestsContinueError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ListFileRequestsContinueError, self)._process_custom_annotations(annotation_type, field_path, processor) ListFileRequestsContinueError_validator = bv.Union(ListFileRequestsContinueError) - class ListFileRequestsError(GeneralFileRequestsError): """ There was an error retrieving the file requests. @@ -887,14 +819,10 @@ class ListFileRequestsError(GeneralFileRequestsError): """ def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListFileRequestsError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ListFileRequestsError, self)._process_custom_annotations(annotation_type, field_path, processor) ListFileRequestsError_validator = bv.Union(ListFileRequestsError) - class ListFileRequestsResult(bb.Struct): """ Result for :meth:`dropbox.dropbox_client.Dropbox.file_requests_list`. @@ -905,12 +833,13 @@ class ListFileRequestsResult(bb.Struct): """ __slots__ = [ - "_file_requests_value", + '_file_requests_value', ] _has_required_fields = True - def __init__(self, file_requests=None): + def __init__(self, + file_requests=None): self._file_requests_value = bb.NOT_SET if file_requests is not None: self.file_requests = file_requests @@ -919,14 +848,10 @@ def __init__(self, file_requests=None): file_requests = bb.Attribute("file_requests") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListFileRequestsResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ListFileRequestsResult, self)._process_custom_annotations(annotation_type, field_path, processor) ListFileRequestsResult_validator = bv.Struct(ListFileRequestsResult) - class ListFileRequestsV2Result(bb.Struct): """ Result for :meth:`dropbox.dropbox_client.Dropbox.file_requests_list` and @@ -946,14 +871,17 @@ class ListFileRequestsV2Result(bb.Struct): """ __slots__ = [ - "_file_requests_value", - "_cursor_value", - "_has_more_value", + '_file_requests_value', + '_cursor_value', + '_has_more_value', ] _has_required_fields = True - def __init__(self, file_requests=None, cursor=None, has_more=None): + def __init__(self, + file_requests=None, + cursor=None, + has_more=None): self._file_requests_value = bb.NOT_SET self._cursor_value = bb.NOT_SET self._has_more_value = bb.NOT_SET @@ -974,14 +902,10 @@ def __init__(self, file_requests=None, cursor=None, has_more=None): has_more = bb.Attribute("has_more") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListFileRequestsV2Result, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ListFileRequestsV2Result, self)._process_custom_annotations(annotation_type, field_path, processor) ListFileRequestsV2Result_validator = bv.Struct(ListFileRequestsV2Result) - class UpdateFileRequestArgs(bb.Struct): """ Arguments for :meth:`dropbox.dropbox_client.Dropbox.file_requests_update`. @@ -1004,25 +928,23 @@ class UpdateFileRequestArgs(bb.Struct): """ __slots__ = [ - "_id_value", - "_title_value", - "_destination_value", - "_deadline_value", - "_open_value", - "_description_value", + '_id_value', + '_title_value', + '_destination_value', + '_deadline_value', + '_open_value', + '_description_value', ] _has_required_fields = True - def __init__( - self, - id=None, - title=None, - destination=None, - deadline=None, - open=None, - description=None, - ): + def __init__(self, + id=None, + title=None, + destination=None, + deadline=None, + open=None, + description=None): self._id_value = bb.NOT_SET self._title_value = bb.NOT_SET self._destination_value = bb.NOT_SET @@ -1061,14 +983,10 @@ def __init__( description = bb.Attribute("description", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UpdateFileRequestArgs, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UpdateFileRequestArgs, self)._process_custom_annotations(annotation_type, field_path, processor) UpdateFileRequestArgs_validator = bv.Struct(UpdateFileRequestArgs) - class UpdateFileRequestDeadline(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -1082,7 +1000,7 @@ class UpdateFileRequestDeadline(bb.Union): :vartype UpdateFileRequestDeadline.update: Optional[FileRequestDeadline] """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition no_update = None # Attribute is overwritten below the class definition @@ -1097,7 +1015,7 @@ def update(cls, val): :param FileRequestDeadline val: :rtype: UpdateFileRequestDeadline """ - return cls("update", val) + return cls('update', val) def is_no_update(self): """ @@ -1105,7 +1023,7 @@ def is_no_update(self): :rtype: bool """ - return self._tag == "no_update" + return self._tag == 'no_update' def is_update(self): """ @@ -1113,7 +1031,7 @@ def is_update(self): :rtype: bool """ - return self._tag == "update" + return self._tag == 'update' def is_other(self): """ @@ -1121,7 +1039,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_update(self): """ @@ -1136,14 +1054,10 @@ def get_update(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UpdateFileRequestDeadline, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UpdateFileRequestDeadline, self)._process_custom_annotations(annotation_type, field_path, processor) UpdateFileRequestDeadline_validator = bv.Union(UpdateFileRequestDeadline) - class UpdateFileRequestError(FileRequestError): """ There is an error updating the file request. @@ -1154,33 +1068,29 @@ class UpdateFileRequestError(FileRequestError): """ def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UpdateFileRequestError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UpdateFileRequestError, self)._process_custom_annotations(annotation_type, field_path, processor) UpdateFileRequestError_validator = bv.Union(UpdateFileRequestError) -FileRequestId_validator = bv.String(min_length=1, pattern="[-_0-9a-zA-Z]+") +FileRequestId_validator = bv.String(min_length=1, pattern='[-_0-9a-zA-Z]+') FileRequestValidationError_validator = bv.Nullable(bv.String()) GeneralFileRequestsError._disabled_for_team_validator = bv.Void() GeneralFileRequestsError._other_validator = bv.Void() GeneralFileRequestsError._tagmap = { - "disabled_for_team": GeneralFileRequestsError._disabled_for_team_validator, - "other": GeneralFileRequestsError._other_validator, + 'disabled_for_team': GeneralFileRequestsError._disabled_for_team_validator, + 'other': GeneralFileRequestsError._other_validator, } -GeneralFileRequestsError.disabled_for_team = GeneralFileRequestsError("disabled_for_team") -GeneralFileRequestsError.other = GeneralFileRequestsError("other") +GeneralFileRequestsError.disabled_for_team = GeneralFileRequestsError('disabled_for_team') +GeneralFileRequestsError.other = GeneralFileRequestsError('other') -CountFileRequestsError._tagmap = {} +CountFileRequestsError._tagmap = { +} CountFileRequestsError._tagmap.update(GeneralFileRequestsError._tagmap) CountFileRequestsResult.file_request_count.validator = bv.UInt64() -CountFileRequestsResult._all_field_names_ = set(["file_request_count"]) -CountFileRequestsResult._all_fields_ = [ - ("file_request_count", CountFileRequestsResult.file_request_count.validator) -] +CountFileRequestsResult._all_field_names_ = set(['file_request_count']) +CountFileRequestsResult._all_fields_ = [('file_request_count', CountFileRequestsResult.file_request_count.validator)] CreateFileRequestArgs.title.validator = bv.String(min_length=1) CreateFileRequestArgs.destination.validator = files.Path_validator @@ -1188,23 +1098,21 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): CreateFileRequestArgs.open.validator = bv.Boolean() CreateFileRequestArgs.description.validator = bv.Nullable(bv.String()) CreateFileRequestArgs.video_project_id.validator = bv.Nullable(bv.String()) -CreateFileRequestArgs._all_field_names_ = set( - [ - "title", - "destination", - "deadline", - "open", - "description", - "video_project_id", - ] -) +CreateFileRequestArgs._all_field_names_ = set([ + 'title', + 'destination', + 'deadline', + 'open', + 'description', + 'video_project_id', +]) CreateFileRequestArgs._all_fields_ = [ - ("title", CreateFileRequestArgs.title.validator), - ("destination", CreateFileRequestArgs.destination.validator), - ("deadline", CreateFileRequestArgs.deadline.validator), - ("open", CreateFileRequestArgs.open.validator), - ("description", CreateFileRequestArgs.description.validator), - ("video_project_id", CreateFileRequestArgs.video_project_id.validator), + ('title', CreateFileRequestArgs.title.validator), + ('destination', CreateFileRequestArgs.destination.validator), + ('deadline', CreateFileRequestArgs.deadline.validator), + ('open', CreateFileRequestArgs.open.validator), + ('description', CreateFileRequestArgs.description.validator), + ('video_project_id', CreateFileRequestArgs.video_project_id.validator), ] FileRequestError._not_found_validator = bv.Void() @@ -1215,61 +1123,58 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): FileRequestError._validation_error_validator = bv.Void() FileRequestError._no_write_permission_validator = bv.Void() FileRequestError._tagmap = { - "not_found": FileRequestError._not_found_validator, - "not_a_folder": FileRequestError._not_a_folder_validator, - "app_lacks_access": FileRequestError._app_lacks_access_validator, - "no_permission": FileRequestError._no_permission_validator, - "email_unverified": FileRequestError._email_unverified_validator, - "validation_error": FileRequestError._validation_error_validator, - "no_write_permission": FileRequestError._no_write_permission_validator, + 'not_found': FileRequestError._not_found_validator, + 'not_a_folder': FileRequestError._not_a_folder_validator, + 'app_lacks_access': FileRequestError._app_lacks_access_validator, + 'no_permission': FileRequestError._no_permission_validator, + 'email_unverified': FileRequestError._email_unverified_validator, + 'validation_error': FileRequestError._validation_error_validator, + 'no_write_permission': FileRequestError._no_write_permission_validator, } FileRequestError._tagmap.update(GeneralFileRequestsError._tagmap) -FileRequestError.not_found = FileRequestError("not_found") -FileRequestError.not_a_folder = FileRequestError("not_a_folder") -FileRequestError.app_lacks_access = FileRequestError("app_lacks_access") -FileRequestError.no_permission = FileRequestError("no_permission") -FileRequestError.email_unverified = FileRequestError("email_unverified") -FileRequestError.validation_error = FileRequestError("validation_error") -FileRequestError.no_write_permission = FileRequestError("no_write_permission") +FileRequestError.not_found = FileRequestError('not_found') +FileRequestError.not_a_folder = FileRequestError('not_a_folder') +FileRequestError.app_lacks_access = FileRequestError('app_lacks_access') +FileRequestError.no_permission = FileRequestError('no_permission') +FileRequestError.email_unverified = FileRequestError('email_unverified') +FileRequestError.validation_error = FileRequestError('validation_error') +FileRequestError.no_write_permission = FileRequestError('no_write_permission') CreateFileRequestError._invalid_location_validator = bv.Void() CreateFileRequestError._rate_limit_validator = bv.Void() CreateFileRequestError._tagmap = { - "invalid_location": CreateFileRequestError._invalid_location_validator, - "rate_limit": CreateFileRequestError._rate_limit_validator, + 'invalid_location': CreateFileRequestError._invalid_location_validator, + 'rate_limit': CreateFileRequestError._rate_limit_validator, } CreateFileRequestError._tagmap.update(FileRequestError._tagmap) -CreateFileRequestError.invalid_location = CreateFileRequestError("invalid_location") -CreateFileRequestError.rate_limit = CreateFileRequestError("rate_limit") +CreateFileRequestError.invalid_location = CreateFileRequestError('invalid_location') +CreateFileRequestError.rate_limit = CreateFileRequestError('rate_limit') -DeleteAllClosedFileRequestsError._tagmap = {} +DeleteAllClosedFileRequestsError._tagmap = { +} DeleteAllClosedFileRequestsError._tagmap.update(FileRequestError._tagmap) DeleteAllClosedFileRequestsResult.file_requests.validator = bv.List(FileRequest_validator) -DeleteAllClosedFileRequestsResult._all_field_names_ = set(["file_requests"]) -DeleteAllClosedFileRequestsResult._all_fields_ = [ - ("file_requests", DeleteAllClosedFileRequestsResult.file_requests.validator) -] +DeleteAllClosedFileRequestsResult._all_field_names_ = set(['file_requests']) +DeleteAllClosedFileRequestsResult._all_fields_ = [('file_requests', DeleteAllClosedFileRequestsResult.file_requests.validator)] DeleteFileRequestArgs.ids.validator = bv.List(FileRequestId_validator) -DeleteFileRequestArgs._all_field_names_ = set(["ids"]) -DeleteFileRequestArgs._all_fields_ = [("ids", DeleteFileRequestArgs.ids.validator)] +DeleteFileRequestArgs._all_field_names_ = set(['ids']) +DeleteFileRequestArgs._all_fields_ = [('ids', DeleteFileRequestArgs.ids.validator)] DeleteFileRequestError._file_request_open_validator = bv.Void() DeleteFileRequestError._tagmap = { - "file_request_open": DeleteFileRequestError._file_request_open_validator, + 'file_request_open': DeleteFileRequestError._file_request_open_validator, } DeleteFileRequestError._tagmap.update(FileRequestError._tagmap) -DeleteFileRequestError.file_request_open = DeleteFileRequestError("file_request_open") +DeleteFileRequestError.file_request_open = DeleteFileRequestError('file_request_open') DeleteFileRequestsResult.file_requests.validator = bv.List(FileRequest_validator) -DeleteFileRequestsResult._all_field_names_ = set(["file_requests"]) -DeleteFileRequestsResult._all_fields_ = [ - ("file_requests", DeleteFileRequestsResult.file_requests.validator) -] +DeleteFileRequestsResult._all_field_names_ = set(['file_requests']) +DeleteFileRequestsResult._all_fields_ = [('file_requests', DeleteFileRequestsResult.file_requests.validator)] FileRequest.id.validator = FileRequestId_validator FileRequest.url.validator = bv.String(min_length=1) @@ -1281,51 +1186,48 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): FileRequest.file_count.validator = bv.Int64() FileRequest.description.validator = bv.Nullable(bv.String()) FileRequest.video_project_id.validator = bv.Nullable(bv.String()) -FileRequest._all_field_names_ = set( - [ - "id", - "url", - "title", - "destination", - "created", - "deadline", - "is_open", - "file_count", - "description", - "video_project_id", - ] -) +FileRequest._all_field_names_ = set([ + 'id', + 'url', + 'title', + 'destination', + 'created', + 'deadline', + 'is_open', + 'file_count', + 'description', + 'video_project_id', +]) FileRequest._all_fields_ = [ - ("id", FileRequest.id.validator), - ("url", FileRequest.url.validator), - ("title", FileRequest.title.validator), - ("destination", FileRequest.destination.validator), - ("created", FileRequest.created.validator), - ("deadline", FileRequest.deadline.validator), - ("is_open", FileRequest.is_open.validator), - ("file_count", FileRequest.file_count.validator), - ("description", FileRequest.description.validator), - ("video_project_id", FileRequest.video_project_id.validator), + ('id', FileRequest.id.validator), + ('url', FileRequest.url.validator), + ('title', FileRequest.title.validator), + ('destination', FileRequest.destination.validator), + ('created', FileRequest.created.validator), + ('deadline', FileRequest.deadline.validator), + ('is_open', FileRequest.is_open.validator), + ('file_count', FileRequest.file_count.validator), + ('description', FileRequest.description.validator), + ('video_project_id', FileRequest.video_project_id.validator), ] FileRequestDeadline.deadline.validator = common.DropboxTimestamp_validator FileRequestDeadline.allow_late_uploads.validator = bv.Nullable(GracePeriod_validator) -FileRequestDeadline._all_field_names_ = set( - [ - "deadline", - "allow_late_uploads", - ] -) +FileRequestDeadline._all_field_names_ = set([ + 'deadline', + 'allow_late_uploads', +]) FileRequestDeadline._all_fields_ = [ - ("deadline", FileRequestDeadline.deadline.validator), - ("allow_late_uploads", FileRequestDeadline.allow_late_uploads.validator), + ('deadline', FileRequestDeadline.deadline.validator), + ('allow_late_uploads', FileRequestDeadline.allow_late_uploads.validator), ] GetFileRequestArgs.id.validator = FileRequestId_validator -GetFileRequestArgs._all_field_names_ = set(["id"]) -GetFileRequestArgs._all_fields_ = [("id", GetFileRequestArgs.id.validator)] +GetFileRequestArgs._all_field_names_ = set(['id']) +GetFileRequestArgs._all_fields_ = [('id', GetFileRequestArgs.id.validator)] -GetFileRequestError._tagmap = {} +GetFileRequestError._tagmap = { +} GetFileRequestError._tagmap.update(FileRequestError._tagmap) GracePeriod._one_day_validator = bv.Void() @@ -1335,62 +1237,57 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): GracePeriod._always_validator = bv.Void() GracePeriod._other_validator = bv.Void() GracePeriod._tagmap = { - "one_day": GracePeriod._one_day_validator, - "two_days": GracePeriod._two_days_validator, - "seven_days": GracePeriod._seven_days_validator, - "thirty_days": GracePeriod._thirty_days_validator, - "always": GracePeriod._always_validator, - "other": GracePeriod._other_validator, + 'one_day': GracePeriod._one_day_validator, + 'two_days': GracePeriod._two_days_validator, + 'seven_days': GracePeriod._seven_days_validator, + 'thirty_days': GracePeriod._thirty_days_validator, + 'always': GracePeriod._always_validator, + 'other': GracePeriod._other_validator, } -GracePeriod.one_day = GracePeriod("one_day") -GracePeriod.two_days = GracePeriod("two_days") -GracePeriod.seven_days = GracePeriod("seven_days") -GracePeriod.thirty_days = GracePeriod("thirty_days") -GracePeriod.always = GracePeriod("always") -GracePeriod.other = GracePeriod("other") +GracePeriod.one_day = GracePeriod('one_day') +GracePeriod.two_days = GracePeriod('two_days') +GracePeriod.seven_days = GracePeriod('seven_days') +GracePeriod.thirty_days = GracePeriod('thirty_days') +GracePeriod.always = GracePeriod('always') +GracePeriod.other = GracePeriod('other') ListFileRequestsArg.limit.validator = bv.UInt64() -ListFileRequestsArg._all_field_names_ = set(["limit"]) -ListFileRequestsArg._all_fields_ = [("limit", ListFileRequestsArg.limit.validator)] +ListFileRequestsArg._all_field_names_ = set(['limit']) +ListFileRequestsArg._all_fields_ = [('limit', ListFileRequestsArg.limit.validator)] ListFileRequestsContinueArg.cursor.validator = bv.String() -ListFileRequestsContinueArg._all_field_names_ = set(["cursor"]) -ListFileRequestsContinueArg._all_fields_ = [ - ("cursor", ListFileRequestsContinueArg.cursor.validator) -] +ListFileRequestsContinueArg._all_field_names_ = set(['cursor']) +ListFileRequestsContinueArg._all_fields_ = [('cursor', ListFileRequestsContinueArg.cursor.validator)] ListFileRequestsContinueError._invalid_cursor_validator = bv.Void() ListFileRequestsContinueError._tagmap = { - "invalid_cursor": ListFileRequestsContinueError._invalid_cursor_validator, + 'invalid_cursor': ListFileRequestsContinueError._invalid_cursor_validator, } ListFileRequestsContinueError._tagmap.update(GeneralFileRequestsError._tagmap) -ListFileRequestsContinueError.invalid_cursor = ListFileRequestsContinueError("invalid_cursor") +ListFileRequestsContinueError.invalid_cursor = ListFileRequestsContinueError('invalid_cursor') -ListFileRequestsError._tagmap = {} +ListFileRequestsError._tagmap = { +} ListFileRequestsError._tagmap.update(GeneralFileRequestsError._tagmap) ListFileRequestsResult.file_requests.validator = bv.List(FileRequest_validator) -ListFileRequestsResult._all_field_names_ = set(["file_requests"]) -ListFileRequestsResult._all_fields_ = [ - ("file_requests", ListFileRequestsResult.file_requests.validator) -] +ListFileRequestsResult._all_field_names_ = set(['file_requests']) +ListFileRequestsResult._all_fields_ = [('file_requests', ListFileRequestsResult.file_requests.validator)] ListFileRequestsV2Result.file_requests.validator = bv.List(FileRequest_validator) ListFileRequestsV2Result.cursor.validator = bv.String() ListFileRequestsV2Result.has_more.validator = bv.Boolean() -ListFileRequestsV2Result._all_field_names_ = set( - [ - "file_requests", - "cursor", - "has_more", - ] -) +ListFileRequestsV2Result._all_field_names_ = set([ + 'file_requests', + 'cursor', + 'has_more', +]) ListFileRequestsV2Result._all_fields_ = [ - ("file_requests", ListFileRequestsV2Result.file_requests.validator), - ("cursor", ListFileRequestsV2Result.cursor.validator), - ("has_more", ListFileRequestsV2Result.has_more.validator), + ('file_requests', ListFileRequestsV2Result.file_requests.validator), + ('cursor', ListFileRequestsV2Result.cursor.validator), + ('has_more', ListFileRequestsV2Result.has_more.validator), ] UpdateFileRequestArgs.id.validator = FileRequestId_validator @@ -1399,133 +1296,151 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): UpdateFileRequestArgs.deadline.validator = UpdateFileRequestDeadline_validator UpdateFileRequestArgs.open.validator = bv.Nullable(bv.Boolean()) UpdateFileRequestArgs.description.validator = bv.Nullable(bv.String()) -UpdateFileRequestArgs._all_field_names_ = set( - [ - "id", - "title", - "destination", - "deadline", - "open", - "description", - ] -) +UpdateFileRequestArgs._all_field_names_ = set([ + 'id', + 'title', + 'destination', + 'deadline', + 'open', + 'description', +]) UpdateFileRequestArgs._all_fields_ = [ - ("id", UpdateFileRequestArgs.id.validator), - ("title", UpdateFileRequestArgs.title.validator), - ("destination", UpdateFileRequestArgs.destination.validator), - ("deadline", UpdateFileRequestArgs.deadline.validator), - ("open", UpdateFileRequestArgs.open.validator), - ("description", UpdateFileRequestArgs.description.validator), + ('id', UpdateFileRequestArgs.id.validator), + ('title', UpdateFileRequestArgs.title.validator), + ('destination', UpdateFileRequestArgs.destination.validator), + ('deadline', UpdateFileRequestArgs.deadline.validator), + ('open', UpdateFileRequestArgs.open.validator), + ('description', UpdateFileRequestArgs.description.validator), ] UpdateFileRequestDeadline._no_update_validator = bv.Void() UpdateFileRequestDeadline._update_validator = bv.Nullable(FileRequestDeadline_validator) UpdateFileRequestDeadline._other_validator = bv.Void() UpdateFileRequestDeadline._tagmap = { - "no_update": UpdateFileRequestDeadline._no_update_validator, - "update": UpdateFileRequestDeadline._update_validator, - "other": UpdateFileRequestDeadline._other_validator, + 'no_update': UpdateFileRequestDeadline._no_update_validator, + 'update': UpdateFileRequestDeadline._update_validator, + 'other': UpdateFileRequestDeadline._other_validator, } -UpdateFileRequestDeadline.no_update = UpdateFileRequestDeadline("no_update") -UpdateFileRequestDeadline.other = UpdateFileRequestDeadline("other") +UpdateFileRequestDeadline.no_update = UpdateFileRequestDeadline('no_update') +UpdateFileRequestDeadline.other = UpdateFileRequestDeadline('other') -UpdateFileRequestError._tagmap = {} +UpdateFileRequestError._tagmap = { +} UpdateFileRequestError._tagmap.update(FileRequestError._tagmap) CreateFileRequestArgs.open.default = True ListFileRequestsArg.limit.default = 1000 UpdateFileRequestArgs.deadline.default = UpdateFileRequestDeadline.no_update count = bb.Route( - "count", + 'count', 1, False, bv.Void(), CountFileRequestsResult_validator, CountFileRequestsError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) create = bb.Route( - "create", + 'create', 1, False, CreateFileRequestArgs_validator, FileRequest_validator, CreateFileRequestError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) delete = bb.Route( - "delete", + 'delete', 1, False, DeleteFileRequestArgs_validator, DeleteFileRequestsResult_validator, DeleteFileRequestError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) delete_all_closed = bb.Route( - "delete_all_closed", + 'delete_all_closed', 1, False, bv.Void(), DeleteAllClosedFileRequestsResult_validator, DeleteAllClosedFileRequestsError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) get = bb.Route( - "get", + 'get', 1, False, GetFileRequestArgs_validator, FileRequest_validator, GetFileRequestError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) list = bb.Route( - "list", + 'list', 1, False, bv.Void(), ListFileRequestsResult_validator, ListFileRequestsError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) list_v2 = bb.Route( - "list", + 'list', 2, False, ListFileRequestsArg_validator, ListFileRequestsV2Result_validator, ListFileRequestsError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) list_continue = bb.Route( - "list/continue", + 'list/continue', 1, False, ListFileRequestsContinueArg_validator, ListFileRequestsV2Result_validator, ListFileRequestsContinueError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) update = bb.Route( - "update", + 'update', 1, False, UpdateFileRequestArgs_validator, FileRequest_validator, UpdateFileRequestError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) ROUTES = { - "count": count, - "create": create, - "delete": delete, - "delete_all_closed": delete_all_closed, - "get": get, - "list": list, - "list:2": list_v2, - "list/continue": list_continue, - "update": update, + 'count': count, + 'create': create, + 'delete': delete, + 'delete_all_closed': delete_all_closed, + 'get': get, + 'list': list, + 'list:2': list_v2, + 'list/continue': list_continue, + 'update': update, } + diff --git a/dropbox/files.py b/dropbox/files.py index d0afc92b..21bb5659 100644 --- a/dropbox/files.py +++ b/dropbox/files.py @@ -16,7 +16,6 @@ from dropbox import file_properties from dropbox import users_common - class AddTagArg(bb.Struct): """ :ivar AddTagArg.path: @@ -27,13 +26,15 @@ class AddTagArg(bb.Struct): """ __slots__ = [ - "_path_value", - "_tag_text_value", + '_path_value', + '_tag_text_value', ] _has_required_fields = True - def __init__(self, path=None, tag_text=None): + def __init__(self, + path=None, + tag_text=None): self._path_value = bb.NOT_SET self._tag_text_value = bb.NOT_SET if path is not None: @@ -50,10 +51,8 @@ def __init__(self, path=None, tag_text=None): def _process_custom_annotations(self, annotation_type, field_path, processor): super(AddTagArg, self)._process_custom_annotations(annotation_type, field_path, processor) - AddTagArg_validator = bv.Struct(AddTagArg) - class BaseTagError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -61,7 +60,7 @@ class BaseTagError(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -74,7 +73,7 @@ def path(cls, val): :param LookupError val: :rtype: BaseTagError """ - return cls("path", val) + return cls('path', val) def is_path(self): """ @@ -82,7 +81,7 @@ def is_path(self): :rtype: bool """ - return self._tag == "path" + return self._tag == 'path' def is_other(self): """ @@ -90,7 +89,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_path(self): """ @@ -103,14 +102,10 @@ def get_path(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(BaseTagError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(BaseTagError, self)._process_custom_annotations(annotation_type, field_path, processor) BaseTagError_validator = bv.Union(BaseTagError) - class AddTagError(BaseTagError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -130,15 +125,13 @@ def is_too_many_tags(self): :rtype: bool """ - return self._tag == "too_many_tags" + return self._tag == 'too_many_tags' def _process_custom_annotations(self, annotation_type, field_path, processor): super(AddTagError, self)._process_custom_annotations(annotation_type, field_path, processor) - AddTagError_validator = bv.Union(AddTagError) - class GetMetadataArg(bb.Struct): """ :ivar GetMetadataArg.path: @@ -158,23 +151,21 @@ class GetMetadataArg(bb.Struct): """ __slots__ = [ - "_path_value", - "_include_media_info_value", - "_include_deleted_value", - "_include_has_explicit_shared_members_value", - "_include_property_groups_value", + '_path_value', + '_include_media_info_value', + '_include_deleted_value', + '_include_has_explicit_shared_members_value', + '_include_property_groups_value', ] _has_required_fields = True - def __init__( - self, - path=None, - include_media_info=None, - include_deleted=None, - include_has_explicit_shared_members=None, - include_property_groups=None, - ): + def __init__(self, + path=None, + include_media_info=None, + include_deleted=None, + include_has_explicit_shared_members=None, + include_property_groups=None): self._path_value = bb.NOT_SET self._include_media_info_value = bb.NOT_SET self._include_deleted_value = bb.NOT_SET @@ -204,19 +195,13 @@ def __init__( include_has_explicit_shared_members = bb.Attribute("include_has_explicit_shared_members") # Instance attribute type: file_properties.TemplateFilterBase (validator is set below) - include_property_groups = bb.Attribute( - "include_property_groups", nullable=True, user_defined=True - ) + include_property_groups = bb.Attribute("include_property_groups", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetMetadataArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GetMetadataArg, self)._process_custom_annotations(annotation_type, field_path, processor) GetMetadataArg_validator = bv.Struct(GetMetadataArg) - class AlphaGetMetadataArg(GetMetadataArg): """ :ivar AlphaGetMetadataArg.include_property_templates: @@ -226,27 +211,23 @@ class AlphaGetMetadataArg(GetMetadataArg): """ __slots__ = [ - "_include_property_templates_value", + '_include_property_templates_value', ] _has_required_fields = True - def __init__( - self, - path=None, - include_media_info=None, - include_deleted=None, - include_has_explicit_shared_members=None, - include_property_groups=None, - include_property_templates=None, - ): - super(AlphaGetMetadataArg, self).__init__( - path, - include_media_info, - include_deleted, - include_has_explicit_shared_members, - include_property_groups, - ) + def __init__(self, + path=None, + include_media_info=None, + include_deleted=None, + include_has_explicit_shared_members=None, + include_property_groups=None, + include_property_templates=None): + super(AlphaGetMetadataArg, self).__init__(path, + include_media_info, + include_deleted, + include_has_explicit_shared_members, + include_property_groups) self._include_property_templates_value = bb.NOT_SET if include_property_templates is not None: self.include_property_templates = include_property_templates @@ -255,14 +236,10 @@ def __init__( include_property_templates = bb.Attribute("include_property_templates", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AlphaGetMetadataArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AlphaGetMetadataArg, self)._process_custom_annotations(annotation_type, field_path, processor) AlphaGetMetadataArg_validator = bv.Struct(AlphaGetMetadataArg) - class GetMetadataError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -281,7 +258,7 @@ def path(cls, val): :param LookupError val: :rtype: GetMetadataError """ - return cls("path", val) + return cls('path', val) def is_path(self): """ @@ -289,7 +266,7 @@ def is_path(self): :rtype: bool """ - return self._tag == "path" + return self._tag == 'path' def get_path(self): """ @@ -302,14 +279,10 @@ def get_path(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetMetadataError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GetMetadataError, self)._process_custom_annotations(annotation_type, field_path, processor) GetMetadataError_validator = bv.Union(GetMetadataError) - class AlphaGetMetadataError(GetMetadataError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -326,7 +299,7 @@ def properties_error(cls, val): :param file_properties.LookUpPropertiesError val: :rtype: AlphaGetMetadataError """ - return cls("properties_error", val) + return cls('properties_error', val) def is_properties_error(self): """ @@ -334,7 +307,7 @@ def is_properties_error(self): :rtype: bool """ - return self._tag == "properties_error" + return self._tag == 'properties_error' def get_properties_error(self): """ @@ -347,14 +320,10 @@ def get_properties_error(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AlphaGetMetadataError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AlphaGetMetadataError, self)._process_custom_annotations(annotation_type, field_path, processor) AlphaGetMetadataError_validator = bv.Union(AlphaGetMetadataError) - class CommitInfo(bb.Struct): """ :ivar CommitInfo.path: @@ -387,27 +356,25 @@ class CommitInfo(bb.Struct): """ __slots__ = [ - "_path_value", - "_mode_value", - "_autorename_value", - "_client_modified_value", - "_mute_value", - "_property_groups_value", - "_strict_conflict_value", + '_path_value', + '_mode_value', + '_autorename_value', + '_client_modified_value', + '_mute_value', + '_property_groups_value', + '_strict_conflict_value', ] _has_required_fields = True - def __init__( - self, - path=None, - mode=None, - autorename=None, - client_modified=None, - mute=None, - property_groups=None, - strict_conflict=None, - ): + def __init__(self, + path=None, + mode=None, + autorename=None, + client_modified=None, + mute=None, + property_groups=None, + strict_conflict=None): self._path_value = bb.NOT_SET self._mode_value = bb.NOT_SET self._autorename_value = bb.NOT_SET @@ -454,10 +421,8 @@ def __init__( def _process_custom_annotations(self, annotation_type, field_path, processor): super(CommitInfo, self)._process_custom_annotations(annotation_type, field_path, processor) - CommitInfo_validator = bv.Struct(CommitInfo) - class ContentSyncSetting(bb.Struct): """ :ivar ContentSyncSetting.id: @@ -467,13 +432,15 @@ class ContentSyncSetting(bb.Struct): """ __slots__ = [ - "_id_value", - "_sync_setting_value", + '_id_value', + '_sync_setting_value', ] _has_required_fields = True - def __init__(self, id=None, sync_setting=None): + def __init__(self, + id=None, + sync_setting=None): self._id_value = bb.NOT_SET self._sync_setting_value = bb.NOT_SET if id is not None: @@ -488,14 +455,10 @@ def __init__(self, id=None, sync_setting=None): sync_setting = bb.Attribute("sync_setting", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ContentSyncSetting, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ContentSyncSetting, self)._process_custom_annotations(annotation_type, field_path, processor) ContentSyncSetting_validator = bv.Struct(ContentSyncSetting) - class ContentSyncSettingArg(bb.Struct): """ :ivar ContentSyncSettingArg.id: @@ -505,13 +468,15 @@ class ContentSyncSettingArg(bb.Struct): """ __slots__ = [ - "_id_value", - "_sync_setting_value", + '_id_value', + '_sync_setting_value', ] _has_required_fields = True - def __init__(self, id=None, sync_setting=None): + def __init__(self, + id=None, + sync_setting=None): self._id_value = bb.NOT_SET self._sync_setting_value = bb.NOT_SET if id is not None: @@ -526,14 +491,10 @@ def __init__(self, id=None, sync_setting=None): sync_setting = bb.Attribute("sync_setting", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ContentSyncSettingArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ContentSyncSettingArg, self)._process_custom_annotations(annotation_type, field_path, processor) ContentSyncSettingArg_validator = bv.Struct(ContentSyncSettingArg) - class CreateFolderArg(bb.Struct): """ :ivar CreateFolderArg.path: @@ -544,13 +505,15 @@ class CreateFolderArg(bb.Struct): """ __slots__ = [ - "_path_value", - "_autorename_value", + '_path_value', + '_autorename_value', ] _has_required_fields = True - def __init__(self, path=None, autorename=None): + def __init__(self, + path=None, + autorename=None): self._path_value = bb.NOT_SET self._autorename_value = bb.NOT_SET if path is not None: @@ -565,14 +528,10 @@ def __init__(self, path=None, autorename=None): autorename = bb.Attribute("autorename") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(CreateFolderArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(CreateFolderArg, self)._process_custom_annotations(annotation_type, field_path, processor) CreateFolderArg_validator = bv.Struct(CreateFolderArg) - class CreateFolderBatchArg(bb.Struct): """ :ivar CreateFolderBatchArg.paths: @@ -586,14 +545,17 @@ class CreateFolderBatchArg(bb.Struct): """ __slots__ = [ - "_paths_value", - "_autorename_value", - "_force_async_value", + '_paths_value', + '_autorename_value', + '_force_async_value', ] _has_required_fields = True - def __init__(self, paths=None, autorename=None, force_async=None): + def __init__(self, + paths=None, + autorename=None, + force_async=None): self._paths_value = bb.NOT_SET self._autorename_value = bb.NOT_SET self._force_async_value = bb.NOT_SET @@ -614,14 +576,10 @@ def __init__(self, paths=None, autorename=None, force_async=None): force_async = bb.Attribute("force_async") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(CreateFolderBatchArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(CreateFolderBatchArg, self)._process_custom_annotations(annotation_type, field_path, processor) CreateFolderBatchArg_validator = bv.Struct(CreateFolderBatchArg) - class CreateFolderBatchError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -632,7 +590,7 @@ class CreateFolderBatchError(bb.Union): The operation would involve too many files or folders. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition too_many_files = None # Attribute is overwritten below the class definition @@ -644,7 +602,7 @@ def is_too_many_files(self): :rtype: bool """ - return self._tag == "too_many_files" + return self._tag == 'too_many_files' def is_other(self): """ @@ -652,17 +610,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(CreateFolderBatchError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(CreateFolderBatchError, self)._process_custom_annotations(annotation_type, field_path, processor) CreateFolderBatchError_validator = bv.Union(CreateFolderBatchError) - class CreateFolderBatchJobStatus(async_.PollResultBase): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -677,7 +631,7 @@ class CreateFolderBatchJobStatus(async_.PollResultBase): :vartype CreateFolderBatchJobStatus.failed: CreateFolderBatchError """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -690,7 +644,7 @@ def complete(cls, val): :param CreateFolderBatchResult val: :rtype: CreateFolderBatchJobStatus """ - return cls("complete", val) + return cls('complete', val) @classmethod def failed(cls, val): @@ -701,7 +655,7 @@ def failed(cls, val): :param CreateFolderBatchError val: :rtype: CreateFolderBatchJobStatus """ - return cls("failed", val) + return cls('failed', val) def is_complete(self): """ @@ -709,7 +663,7 @@ def is_complete(self): :rtype: bool """ - return self._tag == "complete" + return self._tag == 'complete' def is_failed(self): """ @@ -717,7 +671,7 @@ def is_failed(self): :rtype: bool """ - return self._tag == "failed" + return self._tag == 'failed' def is_other(self): """ @@ -725,7 +679,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_complete(self): """ @@ -752,14 +706,10 @@ def get_failed(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(CreateFolderBatchJobStatus, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(CreateFolderBatchJobStatus, self)._process_custom_annotations(annotation_type, field_path, processor) CreateFolderBatchJobStatus_validator = bv.Union(CreateFolderBatchJobStatus) - class CreateFolderBatchLaunch(async_.LaunchResultBase): """ Result returned by @@ -771,7 +721,7 @@ class CreateFolderBatchLaunch(async_.LaunchResultBase): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -784,7 +734,7 @@ def complete(cls, val): :param CreateFolderBatchResult val: :rtype: CreateFolderBatchLaunch """ - return cls("complete", val) + return cls('complete', val) def is_complete(self): """ @@ -792,7 +742,7 @@ def is_complete(self): :rtype: bool """ - return self._tag == "complete" + return self._tag == 'complete' def is_other(self): """ @@ -800,7 +750,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_complete(self): """ @@ -813,20 +763,17 @@ def get_complete(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(CreateFolderBatchLaunch, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(CreateFolderBatchLaunch, self)._process_custom_annotations(annotation_type, field_path, processor) CreateFolderBatchLaunch_validator = bv.Union(CreateFolderBatchLaunch) - class FileOpsResult(bb.Struct): """ Result for File Operations """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -834,14 +781,10 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileOpsResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileOpsResult, self)._process_custom_annotations(annotation_type, field_path, processor) FileOpsResult_validator = bv.Struct(FileOpsResult) - class CreateFolderBatchResult(FileOpsResult): """ :ivar CreateFolderBatchResult.entries: @@ -850,12 +793,13 @@ class CreateFolderBatchResult(FileOpsResult): """ __slots__ = [ - "_entries_value", + '_entries_value', ] _has_required_fields = True - def __init__(self, entries=None): + def __init__(self, + entries=None): super(CreateFolderBatchResult, self).__init__() self._entries_value = bb.NOT_SET if entries is not None: @@ -865,14 +809,10 @@ def __init__(self, entries=None): entries = bb.Attribute("entries") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(CreateFolderBatchResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(CreateFolderBatchResult, self)._process_custom_annotations(annotation_type, field_path, processor) CreateFolderBatchResult_validator = bv.Struct(CreateFolderBatchResult) - class CreateFolderBatchResultEntry(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -891,7 +831,7 @@ def success(cls, val): :param CreateFolderEntryResult val: :rtype: CreateFolderBatchResultEntry """ - return cls("success", val) + return cls('success', val) @classmethod def failure(cls, val): @@ -902,7 +842,7 @@ def failure(cls, val): :param CreateFolderEntryError val: :rtype: CreateFolderBatchResultEntry """ - return cls("failure", val) + return cls('failure', val) def is_success(self): """ @@ -910,7 +850,7 @@ def is_success(self): :rtype: bool """ - return self._tag == "success" + return self._tag == 'success' def is_failure(self): """ @@ -918,7 +858,7 @@ def is_failure(self): :rtype: bool """ - return self._tag == "failure" + return self._tag == 'failure' def get_success(self): """ @@ -941,14 +881,10 @@ def get_failure(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(CreateFolderBatchResultEntry, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(CreateFolderBatchResultEntry, self)._process_custom_annotations(annotation_type, field_path, processor) CreateFolderBatchResultEntry_validator = bv.Union(CreateFolderBatchResultEntry) - class CreateFolderEntryError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -956,7 +892,7 @@ class CreateFolderEntryError(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -969,7 +905,7 @@ def path(cls, val): :param WriteError val: :rtype: CreateFolderEntryError """ - return cls("path", val) + return cls('path', val) def is_path(self): """ @@ -977,7 +913,7 @@ def is_path(self): :rtype: bool """ - return self._tag == "path" + return self._tag == 'path' def is_other(self): """ @@ -985,7 +921,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_path(self): """ @@ -998,14 +934,10 @@ def get_path(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(CreateFolderEntryError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(CreateFolderEntryError, self)._process_custom_annotations(annotation_type, field_path, processor) CreateFolderEntryError_validator = bv.Union(CreateFolderEntryError) - class CreateFolderEntryResult(bb.Struct): """ :ivar CreateFolderEntryResult.metadata: @@ -1013,12 +945,13 @@ class CreateFolderEntryResult(bb.Struct): """ __slots__ = [ - "_metadata_value", + '_metadata_value', ] _has_required_fields = True - def __init__(self, metadata=None): + def __init__(self, + metadata=None): self._metadata_value = bb.NOT_SET if metadata is not None: self.metadata = metadata @@ -1027,14 +960,10 @@ def __init__(self, metadata=None): metadata = bb.Attribute("metadata", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(CreateFolderEntryResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(CreateFolderEntryResult, self)._process_custom_annotations(annotation_type, field_path, processor) CreateFolderEntryResult_validator = bv.Struct(CreateFolderEntryResult) - class CreateFolderError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -1053,7 +982,7 @@ def path(cls, val): :param WriteError val: :rtype: CreateFolderError """ - return cls("path", val) + return cls('path', val) def is_path(self): """ @@ -1061,7 +990,7 @@ def is_path(self): :rtype: bool """ - return self._tag == "path" + return self._tag == 'path' def get_path(self): """ @@ -1074,14 +1003,10 @@ def get_path(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(CreateFolderError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(CreateFolderError, self)._process_custom_annotations(annotation_type, field_path, processor) CreateFolderError_validator = bv.Union(CreateFolderError) - class CreateFolderResult(FileOpsResult): """ :ivar CreateFolderResult.metadata: @@ -1089,12 +1014,13 @@ class CreateFolderResult(FileOpsResult): """ __slots__ = [ - "_metadata_value", + '_metadata_value', ] _has_required_fields = True - def __init__(self, metadata=None): + def __init__(self, + metadata=None): super(CreateFolderResult, self).__init__() self._metadata_value = bb.NOT_SET if metadata is not None: @@ -1104,14 +1030,10 @@ def __init__(self, metadata=None): metadata = bb.Attribute("metadata", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(CreateFolderResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(CreateFolderResult, self)._process_custom_annotations(annotation_type, field_path, processor) CreateFolderResult_validator = bv.Struct(CreateFolderResult) - class DeleteArg(bb.Struct): """ :ivar DeleteArg.path: @@ -1122,13 +1044,15 @@ class DeleteArg(bb.Struct): """ __slots__ = [ - "_path_value", - "_parent_rev_value", + '_path_value', + '_parent_rev_value', ] _has_required_fields = True - def __init__(self, path=None, parent_rev=None): + def __init__(self, + path=None, + parent_rev=None): self._path_value = bb.NOT_SET self._parent_rev_value = bb.NOT_SET if path is not None: @@ -1145,18 +1069,18 @@ def __init__(self, path=None, parent_rev=None): def _process_custom_annotations(self, annotation_type, field_path, processor): super(DeleteArg, self)._process_custom_annotations(annotation_type, field_path, processor) - DeleteArg_validator = bv.Struct(DeleteArg) - class DeleteBatchArg(bb.Struct): + __slots__ = [ - "_entries_value", + '_entries_value', ] _has_required_fields = True - def __init__(self, entries=None): + def __init__(self, + entries=None): self._entries_value = bb.NOT_SET if entries is not None: self.entries = entries @@ -1165,14 +1089,10 @@ def __init__(self, entries=None): entries = bb.Attribute("entries") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeleteBatchArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DeleteBatchArg, self)._process_custom_annotations(annotation_type, field_path, processor) DeleteBatchArg_validator = bv.Struct(DeleteBatchArg) - class DeleteBatchError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -1185,7 +1105,7 @@ class DeleteBatchError(bb.Union): smaller granularity about which entry has failed because of this. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition too_many_write_operations = None # Attribute is overwritten below the class definition @@ -1197,7 +1117,7 @@ def is_too_many_write_operations(self): :rtype: bool """ - return self._tag == "too_many_write_operations" + return self._tag == 'too_many_write_operations' def is_other(self): """ @@ -1205,17 +1125,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeleteBatchError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DeleteBatchError, self)._process_custom_annotations(annotation_type, field_path, processor) DeleteBatchError_validator = bv.Union(DeleteBatchError) - class DeleteBatchJobStatus(async_.PollResultBase): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -1230,7 +1146,7 @@ class DeleteBatchJobStatus(async_.PollResultBase): :vartype DeleteBatchJobStatus.failed: DeleteBatchError """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -1243,7 +1159,7 @@ def complete(cls, val): :param DeleteBatchResult val: :rtype: DeleteBatchJobStatus """ - return cls("complete", val) + return cls('complete', val) @classmethod def failed(cls, val): @@ -1254,7 +1170,7 @@ def failed(cls, val): :param DeleteBatchError val: :rtype: DeleteBatchJobStatus """ - return cls("failed", val) + return cls('failed', val) def is_complete(self): """ @@ -1262,7 +1178,7 @@ def is_complete(self): :rtype: bool """ - return self._tag == "complete" + return self._tag == 'complete' def is_failed(self): """ @@ -1270,7 +1186,7 @@ def is_failed(self): :rtype: bool """ - return self._tag == "failed" + return self._tag == 'failed' def is_other(self): """ @@ -1278,7 +1194,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_complete(self): """ @@ -1305,14 +1221,10 @@ def get_failed(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeleteBatchJobStatus, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DeleteBatchJobStatus, self)._process_custom_annotations(annotation_type, field_path, processor) DeleteBatchJobStatus_validator = bv.Union(DeleteBatchJobStatus) - class DeleteBatchLaunch(async_.LaunchResultBase): """ Result returned by :meth:`dropbox.dropbox_client.Dropbox.files_delete_batch` @@ -1323,7 +1235,7 @@ class DeleteBatchLaunch(async_.LaunchResultBase): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -1336,7 +1248,7 @@ def complete(cls, val): :param DeleteBatchResult val: :rtype: DeleteBatchLaunch """ - return cls("complete", val) + return cls('complete', val) def is_complete(self): """ @@ -1344,7 +1256,7 @@ def is_complete(self): :rtype: bool """ - return self._tag == "complete" + return self._tag == 'complete' def is_other(self): """ @@ -1352,7 +1264,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_complete(self): """ @@ -1365,14 +1277,10 @@ def get_complete(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeleteBatchLaunch, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DeleteBatchLaunch, self)._process_custom_annotations(annotation_type, field_path, processor) DeleteBatchLaunch_validator = bv.Union(DeleteBatchLaunch) - class DeleteBatchResult(FileOpsResult): """ :ivar DeleteBatchResult.entries: @@ -1381,12 +1289,13 @@ class DeleteBatchResult(FileOpsResult): """ __slots__ = [ - "_entries_value", + '_entries_value', ] _has_required_fields = True - def __init__(self, entries=None): + def __init__(self, + entries=None): super(DeleteBatchResult, self).__init__() self._entries_value = bb.NOT_SET if entries is not None: @@ -1396,14 +1305,10 @@ def __init__(self, entries=None): entries = bb.Attribute("entries") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeleteBatchResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DeleteBatchResult, self)._process_custom_annotations(annotation_type, field_path, processor) DeleteBatchResult_validator = bv.Struct(DeleteBatchResult) - class DeleteBatchResultData(bb.Struct): """ :ivar DeleteBatchResultData.metadata: @@ -1411,12 +1316,13 @@ class DeleteBatchResultData(bb.Struct): """ __slots__ = [ - "_metadata_value", + '_metadata_value', ] _has_required_fields = True - def __init__(self, metadata=None): + def __init__(self, + metadata=None): self._metadata_value = bb.NOT_SET if metadata is not None: self.metadata = metadata @@ -1425,14 +1331,10 @@ def __init__(self, metadata=None): metadata = bb.Attribute("metadata", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeleteBatchResultData, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DeleteBatchResultData, self)._process_custom_annotations(annotation_type, field_path, processor) DeleteBatchResultData_validator = bv.Struct(DeleteBatchResultData) - class DeleteBatchResultEntry(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -1451,7 +1353,7 @@ def success(cls, val): :param DeleteBatchResultData val: :rtype: DeleteBatchResultEntry """ - return cls("success", val) + return cls('success', val) @classmethod def failure(cls, val): @@ -1462,7 +1364,7 @@ def failure(cls, val): :param DeleteError val: :rtype: DeleteBatchResultEntry """ - return cls("failure", val) + return cls('failure', val) def is_success(self): """ @@ -1470,7 +1372,7 @@ def is_success(self): :rtype: bool """ - return self._tag == "success" + return self._tag == 'success' def is_failure(self): """ @@ -1478,7 +1380,7 @@ def is_failure(self): :rtype: bool """ - return self._tag == "failure" + return self._tag == 'failure' def get_success(self): """ @@ -1501,14 +1403,10 @@ def get_failure(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeleteBatchResultEntry, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DeleteBatchResultEntry, self)._process_custom_annotations(annotation_type, field_path, processor) DeleteBatchResultEntry_validator = bv.Union(DeleteBatchResultEntry) - class DeleteError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -1522,7 +1420,7 @@ class DeleteError(bb.Union): There are too many files in one request. Please retry with fewer files. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition too_many_write_operations = None # Attribute is overwritten below the class definition @@ -1539,7 +1437,7 @@ def path_lookup(cls, val): :param LookupError val: :rtype: DeleteError """ - return cls("path_lookup", val) + return cls('path_lookup', val) @classmethod def path_write(cls, val): @@ -1550,7 +1448,7 @@ def path_write(cls, val): :param WriteError val: :rtype: DeleteError """ - return cls("path_write", val) + return cls('path_write', val) def is_path_lookup(self): """ @@ -1558,7 +1456,7 @@ def is_path_lookup(self): :rtype: bool """ - return self._tag == "path_lookup" + return self._tag == 'path_lookup' def is_path_write(self): """ @@ -1566,7 +1464,7 @@ def is_path_write(self): :rtype: bool """ - return self._tag == "path_write" + return self._tag == 'path_write' def is_too_many_write_operations(self): """ @@ -1574,7 +1472,7 @@ def is_too_many_write_operations(self): :rtype: bool """ - return self._tag == "too_many_write_operations" + return self._tag == 'too_many_write_operations' def is_too_many_files(self): """ @@ -1582,7 +1480,7 @@ def is_too_many_files(self): :rtype: bool """ - return self._tag == "too_many_files" + return self._tag == 'too_many_files' def is_other(self): """ @@ -1590,7 +1488,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_path_lookup(self): """ @@ -1615,10 +1513,8 @@ def get_path_write(self): def _process_custom_annotations(self, annotation_type, field_path, processor): super(DeleteError, self)._process_custom_annotations(annotation_type, field_path, processor) - DeleteError_validator = bv.Union(DeleteError) - class DeleteResult(FileOpsResult): """ :ivar DeleteResult.metadata: @@ -1626,12 +1522,13 @@ class DeleteResult(FileOpsResult): """ __slots__ = [ - "_metadata_value", + '_metadata_value', ] _has_required_fields = True - def __init__(self, metadata=None): + def __init__(self, + metadata=None): super(DeleteResult, self).__init__() self._metadata_value = bb.NOT_SET if metadata is not None: @@ -1641,14 +1538,10 @@ def __init__(self, metadata=None): metadata = bb.Attribute("metadata", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeleteResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DeleteResult, self)._process_custom_annotations(annotation_type, field_path, processor) DeleteResult_validator = bv.Struct(DeleteResult) - class Metadata(bb.Struct): """ Metadata for a file or folder. @@ -1676,23 +1569,21 @@ class Metadata(bb.Struct): """ __slots__ = [ - "_name_value", - "_path_lower_value", - "_path_display_value", - "_parent_shared_folder_id_value", - "_preview_url_value", + '_name_value', + '_path_lower_value', + '_path_display_value', + '_parent_shared_folder_id_value', + '_preview_url_value', ] _has_required_fields = True - def __init__( - self, - name=None, - path_lower=None, - path_display=None, - parent_shared_folder_id=None, - preview_url=None, - ): + def __init__(self, + name=None, + path_lower=None, + path_display=None, + parent_shared_folder_id=None, + preview_url=None): self._name_value = bb.NOT_SET self._path_lower_value = bb.NOT_SET self._path_display_value = bb.NOT_SET @@ -1727,10 +1618,8 @@ def __init__( def _process_custom_annotations(self, annotation_type, field_path, processor): super(Metadata, self)._process_custom_annotations(annotation_type, field_path, processor) - Metadata_validator = bv.StructTree(Metadata) - class DeletedMetadata(Metadata): """ Indicates that there used to be a file or folder at this path, but it no @@ -1741,23 +1630,23 @@ class DeletedMetadata(Metadata): """ __slots__ = [ - "_is_restorable_value", + '_is_restorable_value', ] _has_required_fields = True - def __init__( - self, - name=None, - path_lower=None, - path_display=None, - parent_shared_folder_id=None, - preview_url=None, - is_restorable=None, - ): - super(DeletedMetadata, self).__init__( - name, path_lower, path_display, parent_shared_folder_id, preview_url - ) + def __init__(self, + name=None, + path_lower=None, + path_display=None, + parent_shared_folder_id=None, + preview_url=None, + is_restorable=None): + super(DeletedMetadata, self).__init__(name, + path_lower, + path_display, + parent_shared_folder_id, + preview_url) self._is_restorable_value = bb.NOT_SET if is_restorable is not None: self.is_restorable = is_restorable @@ -1766,14 +1655,10 @@ def __init__( is_restorable = bb.Attribute("is_restorable", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeletedMetadata, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DeletedMetadata, self)._process_custom_annotations(annotation_type, field_path, processor) DeletedMetadata_validator = bv.Struct(DeletedMetadata) - class Dimensions(bb.Struct): """ Dimensions for a photo or video. @@ -1785,13 +1670,15 @@ class Dimensions(bb.Struct): """ __slots__ = [ - "_height_value", - "_width_value", + '_height_value', + '_width_value', ] _has_required_fields = True - def __init__(self, height=None, width=None): + def __init__(self, + height=None, + width=None): self._height_value = bb.NOT_SET self._width_value = bb.NOT_SET if height is not None: @@ -1808,10 +1695,8 @@ def __init__(self, height=None, width=None): def _process_custom_annotations(self, annotation_type, field_path, processor): super(Dimensions, self)._process_custom_annotations(annotation_type, field_path, processor) - Dimensions_validator = bv.Struct(Dimensions) - class DownloadArg(bb.Struct): """ :ivar DownloadArg.path: @@ -1821,13 +1706,15 @@ class DownloadArg(bb.Struct): """ __slots__ = [ - "_path_value", - "_rev_value", + '_path_value', + '_rev_value', ] _has_required_fields = True - def __init__(self, path=None, rev=None): + def __init__(self, + path=None, + rev=None): self._path_value = bb.NOT_SET self._rev_value = bb.NOT_SET if path is not None: @@ -1844,10 +1731,8 @@ def __init__(self, path=None, rev=None): def _process_custom_annotations(self, annotation_type, field_path, processor): super(DownloadArg, self)._process_custom_annotations(annotation_type, field_path, processor) - DownloadArg_validator = bv.Struct(DownloadArg) - class DownloadError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -1859,7 +1744,7 @@ class DownloadError(bb.Union): :meth:`dropbox.dropbox_client.Dropbox.files_export` instead. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition unsupported_file = None # Attribute is overwritten below the class definition @@ -1874,7 +1759,7 @@ def path(cls, val): :param LookupError val: :rtype: DownloadError """ - return cls("path", val) + return cls('path', val) def is_path(self): """ @@ -1882,7 +1767,7 @@ def is_path(self): :rtype: bool """ - return self._tag == "path" + return self._tag == 'path' def is_unsupported_file(self): """ @@ -1890,7 +1775,7 @@ def is_unsupported_file(self): :rtype: bool """ - return self._tag == "unsupported_file" + return self._tag == 'unsupported_file' def is_other(self): """ @@ -1898,7 +1783,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_path(self): """ @@ -1911,14 +1796,10 @@ def get_path(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DownloadError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DownloadError, self)._process_custom_annotations(annotation_type, field_path, processor) DownloadError_validator = bv.Union(DownloadError) - class DownloadZipArg(bb.Struct): """ :ivar DownloadZipArg.path: @@ -1926,12 +1807,13 @@ class DownloadZipArg(bb.Struct): """ __slots__ = [ - "_path_value", + '_path_value', ] _has_required_fields = True - def __init__(self, path=None): + def __init__(self, + path=None): self._path_value = bb.NOT_SET if path is not None: self.path = path @@ -1940,14 +1822,10 @@ def __init__(self, path=None): path = bb.Attribute("path") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DownloadZipArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DownloadZipArg, self)._process_custom_annotations(annotation_type, field_path, processor) DownloadZipArg_validator = bv.Struct(DownloadZipArg) - class DownloadZipError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -1960,7 +1838,7 @@ class DownloadZipError(bb.Union): The folder has too many files to download. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition too_large = None # Attribute is overwritten below the class definition @@ -1977,7 +1855,7 @@ def path(cls, val): :param LookupError val: :rtype: DownloadZipError """ - return cls("path", val) + return cls('path', val) def is_path(self): """ @@ -1985,7 +1863,7 @@ def is_path(self): :rtype: bool """ - return self._tag == "path" + return self._tag == 'path' def is_too_large(self): """ @@ -1993,7 +1871,7 @@ def is_too_large(self): :rtype: bool """ - return self._tag == "too_large" + return self._tag == 'too_large' def is_too_many_files(self): """ @@ -2001,7 +1879,7 @@ def is_too_many_files(self): :rtype: bool """ - return self._tag == "too_many_files" + return self._tag == 'too_many_files' def is_other(self): """ @@ -2009,7 +1887,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_path(self): """ @@ -2022,22 +1900,20 @@ def get_path(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DownloadZipError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DownloadZipError, self)._process_custom_annotations(annotation_type, field_path, processor) DownloadZipError_validator = bv.Union(DownloadZipError) - class DownloadZipResult(bb.Struct): + __slots__ = [ - "_metadata_value", + '_metadata_value', ] _has_required_fields = True - def __init__(self, metadata=None): + def __init__(self, + metadata=None): self._metadata_value = bb.NOT_SET if metadata is not None: self.metadata = metadata @@ -2046,14 +1922,10 @@ def __init__(self, metadata=None): metadata = bb.Attribute("metadata", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DownloadZipResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DownloadZipResult, self)._process_custom_annotations(annotation_type, field_path, processor) DownloadZipResult_validator = bv.Struct(DownloadZipResult) - class ExportArg(bb.Struct): """ :ivar ExportArg.path: @@ -2067,13 +1939,15 @@ class ExportArg(bb.Struct): """ __slots__ = [ - "_path_value", - "_export_format_value", + '_path_value', + '_export_format_value', ] _has_required_fields = True - def __init__(self, path=None, export_format=None): + def __init__(self, + path=None, + export_format=None): self._path_value = bb.NOT_SET self._export_format_value = bb.NOT_SET if path is not None: @@ -2090,10 +1964,8 @@ def __init__(self, path=None, export_format=None): def _process_custom_annotations(self, annotation_type, field_path, processor): super(ExportArg, self)._process_custom_annotations(annotation_type, field_path, processor) - ExportArg_validator = bv.Struct(ExportArg) - class ExportError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -2109,7 +1981,7 @@ class ExportError(bb.Union): The exportable content is not yet available. Please retry later. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition non_exportable = None # Attribute is overwritten below the class definition @@ -2128,7 +2000,7 @@ def path(cls, val): :param LookupError val: :rtype: ExportError """ - return cls("path", val) + return cls('path', val) def is_path(self): """ @@ -2136,7 +2008,7 @@ def is_path(self): :rtype: bool """ - return self._tag == "path" + return self._tag == 'path' def is_non_exportable(self): """ @@ -2144,7 +2016,7 @@ def is_non_exportable(self): :rtype: bool """ - return self._tag == "non_exportable" + return self._tag == 'non_exportable' def is_invalid_export_format(self): """ @@ -2152,7 +2024,7 @@ def is_invalid_export_format(self): :rtype: bool """ - return self._tag == "invalid_export_format" + return self._tag == 'invalid_export_format' def is_retry_error(self): """ @@ -2160,7 +2032,7 @@ def is_retry_error(self): :rtype: bool """ - return self._tag == "retry_error" + return self._tag == 'retry_error' def is_other(self): """ @@ -2168,7 +2040,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_path(self): """ @@ -2183,10 +2055,8 @@ def get_path(self): def _process_custom_annotations(self, annotation_type, field_path, processor): super(ExportError, self)._process_custom_annotations(annotation_type, field_path, processor) - ExportError_validator = bv.Union(ExportError) - class ExportInfo(bb.Struct): """ Export information for a file. @@ -2199,13 +2069,15 @@ class ExportInfo(bb.Struct): """ __slots__ = [ - "_export_as_value", - "_export_options_value", + '_export_as_value', + '_export_options_value', ] _has_required_fields = False - def __init__(self, export_as=None, export_options=None): + def __init__(self, + export_as=None, + export_options=None): self._export_as_value = bb.NOT_SET self._export_options_value = bb.NOT_SET if export_as is not None: @@ -2222,10 +2094,8 @@ def __init__(self, export_as=None, export_options=None): def _process_custom_annotations(self, annotation_type, field_path, processor): super(ExportInfo, self)._process_custom_annotations(annotation_type, field_path, processor) - ExportInfo_validator = bv.Struct(ExportInfo) - class ExportMetadata(bb.Struct): """ :ivar ExportMetadata.name: @@ -2244,15 +2114,19 @@ class ExportMetadata(bb.Struct): """ __slots__ = [ - "_name_value", - "_size_value", - "_export_hash_value", - "_paper_revision_value", + '_name_value', + '_size_value', + '_export_hash_value', + '_paper_revision_value', ] _has_required_fields = True - def __init__(self, name=None, size=None, export_hash=None, paper_revision=None): + def __init__(self, + name=None, + size=None, + export_hash=None, + paper_revision=None): self._name_value = bb.NOT_SET self._size_value = bb.NOT_SET self._export_hash_value = bb.NOT_SET @@ -2279,14 +2153,10 @@ def __init__(self, name=None, size=None, export_hash=None, paper_revision=None): paper_revision = bb.Attribute("paper_revision", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ExportMetadata, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ExportMetadata, self)._process_custom_annotations(annotation_type, field_path, processor) ExportMetadata_validator = bv.Struct(ExportMetadata) - class ExportResult(bb.Struct): """ :ivar ExportResult.export_metadata: @@ -2296,13 +2166,15 @@ class ExportResult(bb.Struct): """ __slots__ = [ - "_export_metadata_value", - "_file_metadata_value", + '_export_metadata_value', + '_file_metadata_value', ] _has_required_fields = True - def __init__(self, export_metadata=None, file_metadata=None): + def __init__(self, + export_metadata=None, + file_metadata=None): self._export_metadata_value = bb.NOT_SET self._file_metadata_value = bb.NOT_SET if export_metadata is not None: @@ -2317,14 +2189,10 @@ def __init__(self, export_metadata=None, file_metadata=None): file_metadata = bb.Attribute("file_metadata", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ExportResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ExportResult, self)._process_custom_annotations(annotation_type, field_path, processor) ExportResult_validator = bv.Struct(ExportResult) - class FileCategory(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -2353,7 +2221,7 @@ class FileCategory(bb.Union): any file not in one of the categories above. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition image = None # Attribute is overwritten below the class definition @@ -2383,7 +2251,7 @@ def is_image(self): :rtype: bool """ - return self._tag == "image" + return self._tag == 'image' def is_document(self): """ @@ -2391,7 +2259,7 @@ def is_document(self): :rtype: bool """ - return self._tag == "document" + return self._tag == 'document' def is_pdf(self): """ @@ -2399,7 +2267,7 @@ def is_pdf(self): :rtype: bool """ - return self._tag == "pdf" + return self._tag == 'pdf' def is_spreadsheet(self): """ @@ -2407,7 +2275,7 @@ def is_spreadsheet(self): :rtype: bool """ - return self._tag == "spreadsheet" + return self._tag == 'spreadsheet' def is_presentation(self): """ @@ -2415,7 +2283,7 @@ def is_presentation(self): :rtype: bool """ - return self._tag == "presentation" + return self._tag == 'presentation' def is_audio(self): """ @@ -2423,7 +2291,7 @@ def is_audio(self): :rtype: bool """ - return self._tag == "audio" + return self._tag == 'audio' def is_video(self): """ @@ -2431,7 +2299,7 @@ def is_video(self): :rtype: bool """ - return self._tag == "video" + return self._tag == 'video' def is_folder(self): """ @@ -2439,7 +2307,7 @@ def is_folder(self): :rtype: bool """ - return self._tag == "folder" + return self._tag == 'folder' def is_paper(self): """ @@ -2447,7 +2315,7 @@ def is_paper(self): :rtype: bool """ - return self._tag == "paper" + return self._tag == 'paper' def is_others(self): """ @@ -2455,7 +2323,7 @@ def is_others(self): :rtype: bool """ - return self._tag == "others" + return self._tag == 'others' def is_other(self): """ @@ -2463,17 +2331,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileCategory, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileCategory, self)._process_custom_annotations(annotation_type, field_path, processor) FileCategory_validator = bv.Union(FileCategory) - class FileLock(bb.Struct): """ :ivar FileLock.content: @@ -2481,12 +2345,13 @@ class FileLock(bb.Struct): """ __slots__ = [ - "_content_value", + '_content_value', ] _has_required_fields = True - def __init__(self, content=None): + def __init__(self, + content=None): self._content_value = bb.NOT_SET if content is not None: self.content = content @@ -2497,10 +2362,8 @@ def __init__(self, content=None): def _process_custom_annotations(self, annotation_type, field_path, processor): super(FileLock, self)._process_custom_annotations(annotation_type, field_path, processor) - FileLock_validator = bv.Struct(FileLock) - class FileLockContent(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -2514,7 +2377,7 @@ class FileLockContent(bb.Union): :vartype FileLockContent.single_user: SingleUserLock """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition unlocked = None # Attribute is overwritten below the class definition @@ -2529,7 +2392,7 @@ def single_user(cls, val): :param SingleUserLock val: :rtype: FileLockContent """ - return cls("single_user", val) + return cls('single_user', val) def is_unlocked(self): """ @@ -2537,7 +2400,7 @@ def is_unlocked(self): :rtype: bool """ - return self._tag == "unlocked" + return self._tag == 'unlocked' def is_single_user(self): """ @@ -2545,7 +2408,7 @@ def is_single_user(self): :rtype: bool """ - return self._tag == "single_user" + return self._tag == 'single_user' def is_other(self): """ @@ -2553,7 +2416,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_single_user(self): """ @@ -2568,14 +2431,10 @@ def get_single_user(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileLockContent, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileLockContent, self)._process_custom_annotations(annotation_type, field_path, processor) FileLockContent_validator = bv.Union(FileLockContent) - class FileLockMetadata(bb.Struct): """ :ivar FileLockMetadata.is_lockholder: @@ -2589,21 +2448,19 @@ class FileLockMetadata(bb.Struct): """ __slots__ = [ - "_is_lockholder_value", - "_lockholder_name_value", - "_lockholder_account_id_value", - "_created_value", + '_is_lockholder_value', + '_lockholder_name_value', + '_lockholder_account_id_value', + '_created_value', ] _has_required_fields = False - def __init__( - self, - is_lockholder=None, - lockholder_name=None, - lockholder_account_id=None, - created=None, - ): + def __init__(self, + is_lockholder=None, + lockholder_name=None, + lockholder_account_id=None, + created=None): self._is_lockholder_value = bb.NOT_SET self._lockholder_name_value = bb.NOT_SET self._lockholder_account_id_value = bb.NOT_SET @@ -2630,14 +2487,10 @@ def __init__( created = bb.Attribute("created", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileLockMetadata, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileLockMetadata, self)._process_custom_annotations(annotation_type, field_path, processor) FileLockMetadata_validator = bv.Struct(FileLockMetadata) - class FileMetadata(Metadata): """ :ivar FileMetadata.id: @@ -2695,51 +2548,51 @@ class FileMetadata(Metadata): """ __slots__ = [ - "_id_value", - "_client_modified_value", - "_server_modified_value", - "_rev_value", - "_size_value", - "_media_info_value", - "_symlink_info_value", - "_sharing_info_value", - "_is_downloadable_value", - "_export_info_value", - "_property_groups_value", - "_has_explicit_shared_members_value", - "_content_hash_value", - "_file_lock_info_value", - "_is_restorable_value", + '_id_value', + '_client_modified_value', + '_server_modified_value', + '_rev_value', + '_size_value', + '_media_info_value', + '_symlink_info_value', + '_sharing_info_value', + '_is_downloadable_value', + '_export_info_value', + '_property_groups_value', + '_has_explicit_shared_members_value', + '_content_hash_value', + '_file_lock_info_value', + '_is_restorable_value', ] _has_required_fields = True - def __init__( - self, - name=None, - id=None, - client_modified=None, - server_modified=None, - rev=None, - size=None, - path_lower=None, - path_display=None, - parent_shared_folder_id=None, - preview_url=None, - media_info=None, - symlink_info=None, - sharing_info=None, - is_downloadable=None, - export_info=None, - property_groups=None, - has_explicit_shared_members=None, - content_hash=None, - file_lock_info=None, - is_restorable=None, - ): - super(FileMetadata, self).__init__( - name, path_lower, path_display, parent_shared_folder_id, preview_url - ) + def __init__(self, + name=None, + id=None, + client_modified=None, + server_modified=None, + rev=None, + size=None, + path_lower=None, + path_display=None, + parent_shared_folder_id=None, + preview_url=None, + media_info=None, + symlink_info=None, + sharing_info=None, + is_downloadable=None, + export_info=None, + property_groups=None, + has_explicit_shared_members=None, + content_hash=None, + file_lock_info=None, + is_restorable=None): + super(FileMetadata, self).__init__(name, + path_lower, + path_display, + parent_shared_folder_id, + preview_url) self._id_value = bb.NOT_SET self._client_modified_value = bb.NOT_SET self._server_modified_value = bb.NOT_SET @@ -2832,14 +2685,10 @@ def __init__( is_restorable = bb.Attribute("is_restorable", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileMetadata, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileMetadata, self)._process_custom_annotations(annotation_type, field_path, processor) FileMetadata_validator = bv.Struct(FileMetadata) - class SharingInfo(bb.Struct): """ Sharing info for a file or folder. @@ -2849,12 +2698,13 @@ class SharingInfo(bb.Struct): """ __slots__ = [ - "_read_only_value", + '_read_only_value', ] _has_required_fields = True - def __init__(self, read_only=None): + def __init__(self, + read_only=None): self._read_only_value = bb.NOT_SET if read_only is not None: self.read_only = read_only @@ -2865,10 +2715,8 @@ def __init__(self, read_only=None): def _process_custom_annotations(self, annotation_type, field_path, processor): super(SharingInfo, self)._process_custom_annotations(annotation_type, field_path, processor) - SharingInfo_validator = bv.Struct(SharingInfo) - class FileSharingInfo(SharingInfo): """ Sharing info for a file which is contained by a shared folder. @@ -2881,13 +2729,16 @@ class FileSharingInfo(SharingInfo): """ __slots__ = [ - "_parent_shared_folder_id_value", - "_modified_by_value", + '_parent_shared_folder_id_value', + '_modified_by_value', ] _has_required_fields = True - def __init__(self, read_only=None, parent_shared_folder_id=None, modified_by=None): + def __init__(self, + read_only=None, + parent_shared_folder_id=None, + modified_by=None): super(FileSharingInfo, self).__init__(read_only) self._parent_shared_folder_id_value = bb.NOT_SET self._modified_by_value = bb.NOT_SET @@ -2903,14 +2754,10 @@ def __init__(self, read_only=None, parent_shared_folder_id=None, modified_by=Non modified_by = bb.Attribute("modified_by", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileSharingInfo, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileSharingInfo, self)._process_custom_annotations(annotation_type, field_path, processor) FileSharingInfo_validator = bv.Struct(FileSharingInfo) - class FileStatus(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -2918,7 +2765,7 @@ class FileStatus(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition active = None # Attribute is overwritten below the class definition @@ -2932,7 +2779,7 @@ def is_active(self): :rtype: bool """ - return self._tag == "active" + return self._tag == 'active' def is_deleted(self): """ @@ -2940,7 +2787,7 @@ def is_deleted(self): :rtype: bool """ - return self._tag == "deleted" + return self._tag == 'deleted' def is_other(self): """ @@ -2948,15 +2795,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): super(FileStatus, self)._process_custom_annotations(annotation_type, field_path, processor) - FileStatus_validator = bv.Union(FileStatus) - class FolderMetadata(Metadata): """ :ivar FolderMetadata.id: @@ -2974,29 +2819,29 @@ class FolderMetadata(Metadata): """ __slots__ = [ - "_id_value", - "_shared_folder_id_value", - "_sharing_info_value", - "_property_groups_value", + '_id_value', + '_shared_folder_id_value', + '_sharing_info_value', + '_property_groups_value', ] _has_required_fields = True - def __init__( - self, - name=None, - id=None, - path_lower=None, - path_display=None, - parent_shared_folder_id=None, - preview_url=None, - shared_folder_id=None, - sharing_info=None, - property_groups=None, - ): - super(FolderMetadata, self).__init__( - name, path_lower, path_display, parent_shared_folder_id, preview_url - ) + def __init__(self, + name=None, + id=None, + path_lower=None, + path_display=None, + parent_shared_folder_id=None, + preview_url=None, + shared_folder_id=None, + sharing_info=None, + property_groups=None): + super(FolderMetadata, self).__init__(name, + path_lower, + path_display, + parent_shared_folder_id, + preview_url) self._id_value = bb.NOT_SET self._shared_folder_id_value = bb.NOT_SET self._sharing_info_value = bb.NOT_SET @@ -3023,14 +2868,10 @@ def __init__( property_groups = bb.Attribute("property_groups", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FolderMetadata, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FolderMetadata, self)._process_custom_annotations(annotation_type, field_path, processor) FolderMetadata_validator = bv.Struct(FolderMetadata) - class FolderSharingInfo(SharingInfo): """ Sharing info for a folder which is contained in a shared folder or is a @@ -3051,22 +2892,20 @@ class FolderSharingInfo(SharingInfo): """ __slots__ = [ - "_parent_shared_folder_id_value", - "_shared_folder_id_value", - "_traverse_only_value", - "_no_access_value", + '_parent_shared_folder_id_value', + '_shared_folder_id_value', + '_traverse_only_value', + '_no_access_value', ] _has_required_fields = True - def __init__( - self, - read_only=None, - parent_shared_folder_id=None, - shared_folder_id=None, - traverse_only=None, - no_access=None, - ): + def __init__(self, + read_only=None, + parent_shared_folder_id=None, + shared_folder_id=None, + traverse_only=None, + no_access=None): super(FolderSharingInfo, self).__init__(read_only) self._parent_shared_folder_id_value = bb.NOT_SET self._shared_folder_id_value = bb.NOT_SET @@ -3094,14 +2933,10 @@ def __init__( no_access = bb.Attribute("no_access") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FolderSharingInfo, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FolderSharingInfo, self)._process_custom_annotations(annotation_type, field_path, processor) FolderSharingInfo_validator = bv.Struct(FolderSharingInfo) - class GetCopyReferenceArg(bb.Struct): """ :ivar GetCopyReferenceArg.path: @@ -3109,12 +2944,13 @@ class GetCopyReferenceArg(bb.Struct): """ __slots__ = [ - "_path_value", + '_path_value', ] _has_required_fields = True - def __init__(self, path=None): + def __init__(self, + path=None): self._path_value = bb.NOT_SET if path is not None: self.path = path @@ -3123,14 +2959,10 @@ def __init__(self, path=None): path = bb.Attribute("path") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetCopyReferenceArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GetCopyReferenceArg, self)._process_custom_annotations(annotation_type, field_path, processor) GetCopyReferenceArg_validator = bv.Struct(GetCopyReferenceArg) - class GetCopyReferenceError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -3138,7 +2970,7 @@ class GetCopyReferenceError(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -3151,7 +2983,7 @@ def path(cls, val): :param LookupError val: :rtype: GetCopyReferenceError """ - return cls("path", val) + return cls('path', val) def is_path(self): """ @@ -3159,7 +2991,7 @@ def is_path(self): :rtype: bool """ - return self._tag == "path" + return self._tag == 'path' def is_other(self): """ @@ -3167,7 +2999,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_path(self): """ @@ -3180,14 +3012,10 @@ def get_path(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetCopyReferenceError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GetCopyReferenceError, self)._process_custom_annotations(annotation_type, field_path, processor) GetCopyReferenceError_validator = bv.Union(GetCopyReferenceError) - class GetCopyReferenceResult(bb.Struct): """ :ivar GetCopyReferenceResult.metadata: @@ -3201,14 +3029,17 @@ class GetCopyReferenceResult(bb.Struct): """ __slots__ = [ - "_metadata_value", - "_copy_reference_value", - "_expires_value", + '_metadata_value', + '_copy_reference_value', + '_expires_value', ] _has_required_fields = True - def __init__(self, metadata=None, copy_reference=None, expires=None): + def __init__(self, + metadata=None, + copy_reference=None, + expires=None): self._metadata_value = bb.NOT_SET self._copy_reference_value = bb.NOT_SET self._expires_value = bb.NOT_SET @@ -3229,14 +3060,10 @@ def __init__(self, metadata=None, copy_reference=None, expires=None): expires = bb.Attribute("expires") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetCopyReferenceResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GetCopyReferenceResult, self)._process_custom_annotations(annotation_type, field_path, processor) GetCopyReferenceResult_validator = bv.Struct(GetCopyReferenceResult) - class GetTagsArg(bb.Struct): """ :ivar GetTagsArg.paths: @@ -3244,12 +3071,13 @@ class GetTagsArg(bb.Struct): """ __slots__ = [ - "_paths_value", + '_paths_value', ] _has_required_fields = True - def __init__(self, paths=None): + def __init__(self, + paths=None): self._paths_value = bb.NOT_SET if paths is not None: self.paths = paths @@ -3260,10 +3088,8 @@ def __init__(self, paths=None): def _process_custom_annotations(self, annotation_type, field_path, processor): super(GetTagsArg, self)._process_custom_annotations(annotation_type, field_path, processor) - GetTagsArg_validator = bv.Struct(GetTagsArg) - class GetTagsResult(bb.Struct): """ :ivar GetTagsResult.paths_to_tags: @@ -3271,12 +3097,13 @@ class GetTagsResult(bb.Struct): """ __slots__ = [ - "_paths_to_tags_value", + '_paths_to_tags_value', ] _has_required_fields = True - def __init__(self, paths_to_tags=None): + def __init__(self, + paths_to_tags=None): self._paths_to_tags_value = bb.NOT_SET if paths_to_tags is not None: self.paths_to_tags = paths_to_tags @@ -3285,14 +3112,10 @@ def __init__(self, paths_to_tags=None): paths_to_tags = bb.Attribute("paths_to_tags") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetTagsResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GetTagsResult, self)._process_custom_annotations(annotation_type, field_path, processor) GetTagsResult_validator = bv.Struct(GetTagsResult) - class GetTemporaryLinkArg(bb.Struct): """ :ivar GetTemporaryLinkArg.path: @@ -3300,12 +3123,13 @@ class GetTemporaryLinkArg(bb.Struct): """ __slots__ = [ - "_path_value", + '_path_value', ] _has_required_fields = True - def __init__(self, path=None): + def __init__(self, + path=None): self._path_value = bb.NOT_SET if path is not None: self.path = path @@ -3314,14 +3138,10 @@ def __init__(self, path=None): path = bb.Attribute("path") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetTemporaryLinkArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GetTemporaryLinkArg, self)._process_custom_annotations(annotation_type, field_path, processor) GetTemporaryLinkArg_validator = bv.Struct(GetTemporaryLinkArg) - class GetTemporaryLinkError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -3342,7 +3162,7 @@ class GetTemporaryLinkError(bb.Union): `_. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition email_not_verified = None # Attribute is overwritten below the class definition @@ -3361,7 +3181,7 @@ def path(cls, val): :param LookupError val: :rtype: GetTemporaryLinkError """ - return cls("path", val) + return cls('path', val) def is_path(self): """ @@ -3369,7 +3189,7 @@ def is_path(self): :rtype: bool """ - return self._tag == "path" + return self._tag == 'path' def is_email_not_verified(self): """ @@ -3377,7 +3197,7 @@ def is_email_not_verified(self): :rtype: bool """ - return self._tag == "email_not_verified" + return self._tag == 'email_not_verified' def is_unsupported_file(self): """ @@ -3385,7 +3205,7 @@ def is_unsupported_file(self): :rtype: bool """ - return self._tag == "unsupported_file" + return self._tag == 'unsupported_file' def is_not_allowed(self): """ @@ -3393,7 +3213,7 @@ def is_not_allowed(self): :rtype: bool """ - return self._tag == "not_allowed" + return self._tag == 'not_allowed' def is_other(self): """ @@ -3401,7 +3221,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_path(self): """ @@ -3414,14 +3234,10 @@ def get_path(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetTemporaryLinkError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GetTemporaryLinkError, self)._process_custom_annotations(annotation_type, field_path, processor) GetTemporaryLinkError_validator = bv.Union(GetTemporaryLinkError) - class GetTemporaryLinkResult(bb.Struct): """ :ivar GetTemporaryLinkResult.metadata: @@ -3431,13 +3247,15 @@ class GetTemporaryLinkResult(bb.Struct): """ __slots__ = [ - "_metadata_value", - "_link_value", + '_metadata_value', + '_link_value', ] _has_required_fields = True - def __init__(self, metadata=None, link=None): + def __init__(self, + metadata=None, + link=None): self._metadata_value = bb.NOT_SET self._link_value = bb.NOT_SET if metadata is not None: @@ -3452,14 +3270,10 @@ def __init__(self, metadata=None, link=None): link = bb.Attribute("link") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetTemporaryLinkResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GetTemporaryLinkResult, self)._process_custom_annotations(annotation_type, field_path, processor) GetTemporaryLinkResult_validator = bv.Struct(GetTemporaryLinkResult) - class GetTemporaryUploadLinkArg(bb.Struct): """ :ivar GetTemporaryUploadLinkArg.commit_info: @@ -3473,13 +3287,15 @@ class GetTemporaryUploadLinkArg(bb.Struct): """ __slots__ = [ - "_commit_info_value", - "_duration_value", + '_commit_info_value', + '_duration_value', ] _has_required_fields = True - def __init__(self, commit_info=None, duration=None): + def __init__(self, + commit_info=None, + duration=None): self._commit_info_value = bb.NOT_SET self._duration_value = bb.NOT_SET if commit_info is not None: @@ -3494,14 +3310,10 @@ def __init__(self, commit_info=None, duration=None): duration = bb.Attribute("duration") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetTemporaryUploadLinkArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GetTemporaryUploadLinkArg, self)._process_custom_annotations(annotation_type, field_path, processor) GetTemporaryUploadLinkArg_validator = bv.Struct(GetTemporaryUploadLinkArg) - class GetTemporaryUploadLinkResult(bb.Struct): """ :ivar GetTemporaryUploadLinkResult.link: @@ -3510,12 +3322,13 @@ class GetTemporaryUploadLinkResult(bb.Struct): """ __slots__ = [ - "_link_value", + '_link_value', ] _has_required_fields = True - def __init__(self, link=None): + def __init__(self, + link=None): self._link_value = bb.NOT_SET if link is not None: self.link = link @@ -3524,14 +3337,10 @@ def __init__(self, link=None): link = bb.Attribute("link") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetTemporaryUploadLinkResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GetTemporaryUploadLinkResult, self)._process_custom_annotations(annotation_type, field_path, processor) GetTemporaryUploadLinkResult_validator = bv.Struct(GetTemporaryUploadLinkResult) - class GetThumbnailBatchArg(bb.Struct): """ Arguments for @@ -3542,12 +3351,13 @@ class GetThumbnailBatchArg(bb.Struct): """ __slots__ = [ - "_entries_value", + '_entries_value', ] _has_required_fields = True - def __init__(self, entries=None): + def __init__(self, + entries=None): self._entries_value = bb.NOT_SET if entries is not None: self.entries = entries @@ -3556,14 +3366,10 @@ def __init__(self, entries=None): entries = bb.Attribute("entries") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetThumbnailBatchArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GetThumbnailBatchArg, self)._process_custom_annotations(annotation_type, field_path, processor) GetThumbnailBatchArg_validator = bv.Struct(GetThumbnailBatchArg) - class GetThumbnailBatchError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -3574,7 +3380,7 @@ class GetThumbnailBatchError(bb.Union): The operation involves more than 25 files. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition too_many_files = None # Attribute is overwritten below the class definition @@ -3586,7 +3392,7 @@ def is_too_many_files(self): :rtype: bool """ - return self._tag == "too_many_files" + return self._tag == 'too_many_files' def is_other(self): """ @@ -3594,17 +3400,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetThumbnailBatchError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GetThumbnailBatchError, self)._process_custom_annotations(annotation_type, field_path, processor) GetThumbnailBatchError_validator = bv.Union(GetThumbnailBatchError) - class GetThumbnailBatchResult(bb.Struct): """ :ivar GetThumbnailBatchResult.entries: @@ -3612,12 +3414,13 @@ class GetThumbnailBatchResult(bb.Struct): """ __slots__ = [ - "_entries_value", + '_entries_value', ] _has_required_fields = True - def __init__(self, entries=None): + def __init__(self, + entries=None): self._entries_value = bb.NOT_SET if entries is not None: self.entries = entries @@ -3626,14 +3429,10 @@ def __init__(self, entries=None): entries = bb.Attribute("entries") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetThumbnailBatchResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GetThumbnailBatchResult, self)._process_custom_annotations(annotation_type, field_path, processor) GetThumbnailBatchResult_validator = bv.Struct(GetThumbnailBatchResult) - class GetThumbnailBatchResultData(bb.Struct): """ :ivar GetThumbnailBatchResultData.thumbnail: @@ -3641,13 +3440,15 @@ class GetThumbnailBatchResultData(bb.Struct): """ __slots__ = [ - "_metadata_value", - "_thumbnail_value", + '_metadata_value', + '_thumbnail_value', ] _has_required_fields = True - def __init__(self, metadata=None, thumbnail=None): + def __init__(self, + metadata=None, + thumbnail=None): self._metadata_value = bb.NOT_SET self._thumbnail_value = bb.NOT_SET if metadata is not None: @@ -3662,14 +3463,10 @@ def __init__(self, metadata=None, thumbnail=None): thumbnail = bb.Attribute("thumbnail") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetThumbnailBatchResultData, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GetThumbnailBatchResultData, self)._process_custom_annotations(annotation_type, field_path, processor) GetThumbnailBatchResultData_validator = bv.Struct(GetThumbnailBatchResultData) - class GetThumbnailBatchResultEntry(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -3681,7 +3478,7 @@ class GetThumbnailBatchResultEntry(bb.Union): :vartype GetThumbnailBatchResultEntry.failure: ThumbnailError """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -3694,7 +3491,7 @@ def success(cls, val): :param GetThumbnailBatchResultData val: :rtype: GetThumbnailBatchResultEntry """ - return cls("success", val) + return cls('success', val) @classmethod def failure(cls, val): @@ -3705,7 +3502,7 @@ def failure(cls, val): :param ThumbnailError val: :rtype: GetThumbnailBatchResultEntry """ - return cls("failure", val) + return cls('failure', val) def is_success(self): """ @@ -3713,7 +3510,7 @@ def is_success(self): :rtype: bool """ - return self._tag == "success" + return self._tag == 'success' def is_failure(self): """ @@ -3721,7 +3518,7 @@ def is_failure(self): :rtype: bool """ - return self._tag == "failure" + return self._tag == 'failure' def is_other(self): """ @@ -3729,7 +3526,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_success(self): """ @@ -3754,14 +3551,10 @@ def get_failure(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetThumbnailBatchResultEntry, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GetThumbnailBatchResultEntry, self)._process_custom_annotations(annotation_type, field_path, processor) GetThumbnailBatchResultEntry_validator = bv.Union(GetThumbnailBatchResultEntry) - class GpsCoordinates(bb.Struct): """ GPS coordinates for a photo or video. @@ -3773,13 +3566,15 @@ class GpsCoordinates(bb.Struct): """ __slots__ = [ - "_latitude_value", - "_longitude_value", + '_latitude_value', + '_longitude_value', ] _has_required_fields = True - def __init__(self, latitude=None, longitude=None): + def __init__(self, + latitude=None, + longitude=None): self._latitude_value = bb.NOT_SET self._longitude_value = bb.NOT_SET if latitude is not None: @@ -3794,14 +3589,10 @@ def __init__(self, latitude=None, longitude=None): longitude = bb.Attribute("longitude") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GpsCoordinates, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GpsCoordinates, self)._process_custom_annotations(annotation_type, field_path, processor) GpsCoordinates_validator = bv.Struct(GpsCoordinates) - class HighlightSpan(bb.Struct): """ :ivar HighlightSpan.highlight_str: @@ -3811,13 +3602,15 @@ class HighlightSpan(bb.Struct): """ __slots__ = [ - "_highlight_str_value", - "_is_highlighted_value", + '_highlight_str_value', + '_is_highlighted_value', ] _has_required_fields = True - def __init__(self, highlight_str=None, is_highlighted=None): + def __init__(self, + highlight_str=None, + is_highlighted=None): self._highlight_str_value = bb.NOT_SET self._is_highlighted_value = bb.NOT_SET if highlight_str is not None: @@ -3832,14 +3625,10 @@ def __init__(self, highlight_str=None, is_highlighted=None): is_highlighted = bb.Attribute("is_highlighted") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(HighlightSpan, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(HighlightSpan, self)._process_custom_annotations(annotation_type, field_path, processor) HighlightSpan_validator = bv.Struct(HighlightSpan) - class ImportFormat(bb.Union): """ The import format of the incoming Paper doc content. @@ -3856,7 +3645,7 @@ class ImportFormat(bb.Union): The provided data is interpreted as plain text. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition html = None # Attribute is overwritten below the class definition @@ -3872,7 +3661,7 @@ def is_html(self): :rtype: bool """ - return self._tag == "html" + return self._tag == 'html' def is_markdown(self): """ @@ -3880,7 +3669,7 @@ def is_markdown(self): :rtype: bool """ - return self._tag == "markdown" + return self._tag == 'markdown' def is_plain_text(self): """ @@ -3888,7 +3677,7 @@ def is_plain_text(self): :rtype: bool """ - return self._tag == "plain_text" + return self._tag == 'plain_text' def is_other(self): """ @@ -3896,17 +3685,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ImportFormat, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ImportFormat, self)._process_custom_annotations(annotation_type, field_path, processor) ImportFormat_validator = bv.Union(ImportFormat) - class ListFolderArg(bb.Struct): """ :ivar ListFolderArg.path: @@ -3953,35 +3738,33 @@ class ListFolderArg(bb.Struct): """ __slots__ = [ - "_path_value", - "_recursive_value", - "_include_media_info_value", - "_include_deleted_value", - "_include_has_explicit_shared_members_value", - "_include_mounted_folders_value", - "_limit_value", - "_shared_link_value", - "_include_property_groups_value", - "_include_non_downloadable_files_value", - "_include_restorable_info_value", + '_path_value', + '_recursive_value', + '_include_media_info_value', + '_include_deleted_value', + '_include_has_explicit_shared_members_value', + '_include_mounted_folders_value', + '_limit_value', + '_shared_link_value', + '_include_property_groups_value', + '_include_non_downloadable_files_value', + '_include_restorable_info_value', ] _has_required_fields = True - def __init__( - self, - path=None, - recursive=None, - include_media_info=None, - include_deleted=None, - include_has_explicit_shared_members=None, - include_mounted_folders=None, - limit=None, - shared_link=None, - include_property_groups=None, - include_non_downloadable_files=None, - include_restorable_info=None, - ): + def __init__(self, + path=None, + recursive=None, + include_media_info=None, + include_deleted=None, + include_has_explicit_shared_members=None, + include_mounted_folders=None, + limit=None, + shared_link=None, + include_property_groups=None, + include_non_downloadable_files=None, + include_restorable_info=None): self._path_value = bb.NOT_SET self._recursive_value = bb.NOT_SET self._include_media_info_value = bb.NOT_SET @@ -4041,9 +3824,7 @@ def __init__( shared_link = bb.Attribute("shared_link", nullable=True, user_defined=True) # Instance attribute type: file_properties.TemplateFilterBase (validator is set below) - include_property_groups = bb.Attribute( - "include_property_groups", nullable=True, user_defined=True - ) + include_property_groups = bb.Attribute("include_property_groups", nullable=True, user_defined=True) # Instance attribute type: bool (validator is set below) include_non_downloadable_files = bb.Attribute("include_non_downloadable_files") @@ -4052,14 +3833,10 @@ def __init__( include_restorable_info = bb.Attribute("include_restorable_info") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListFolderArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ListFolderArg, self)._process_custom_annotations(annotation_type, field_path, processor) ListFolderArg_validator = bv.Struct(ListFolderArg) - class ListFolderContinueArg(bb.Struct): """ :ivar ListFolderContinueArg.cursor: @@ -4069,12 +3846,13 @@ class ListFolderContinueArg(bb.Struct): """ __slots__ = [ - "_cursor_value", + '_cursor_value', ] _has_required_fields = True - def __init__(self, cursor=None): + def __init__(self, + cursor=None): self._cursor_value = bb.NOT_SET if cursor is not None: self.cursor = cursor @@ -4083,14 +3861,10 @@ def __init__(self, cursor=None): cursor = bb.Attribute("cursor") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListFolderContinueArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ListFolderContinueArg, self)._process_custom_annotations(annotation_type, field_path, processor) ListFolderContinueArg_validator = bv.Struct(ListFolderContinueArg) - class ListFolderContinueError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -4103,7 +3877,7 @@ class ListFolderContinueError(bb.Union): cursor. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition reset = None # Attribute is overwritten below the class definition @@ -4118,7 +3892,7 @@ def path(cls, val): :param LookupError val: :rtype: ListFolderContinueError """ - return cls("path", val) + return cls('path', val) def is_path(self): """ @@ -4126,7 +3900,7 @@ def is_path(self): :rtype: bool """ - return self._tag == "path" + return self._tag == 'path' def is_reset(self): """ @@ -4134,7 +3908,7 @@ def is_reset(self): :rtype: bool """ - return self._tag == "reset" + return self._tag == 'reset' def is_other(self): """ @@ -4142,7 +3916,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_path(self): """ @@ -4155,14 +3929,10 @@ def get_path(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListFolderContinueError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ListFolderContinueError, self)._process_custom_annotations(annotation_type, field_path, processor) ListFolderContinueError_validator = bv.Union(ListFolderContinueError) - class ListFolderError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -4170,7 +3940,7 @@ class ListFolderError(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -4183,7 +3953,7 @@ def path(cls, val): :param LookupError val: :rtype: ListFolderError """ - return cls("path", val) + return cls('path', val) @classmethod def template_error(cls, val): @@ -4194,7 +3964,7 @@ def template_error(cls, val): :param file_properties.TemplateError val: :rtype: ListFolderError """ - return cls("template_error", val) + return cls('template_error', val) def is_path(self): """ @@ -4202,7 +3972,7 @@ def is_path(self): :rtype: bool """ - return self._tag == "path" + return self._tag == 'path' def is_template_error(self): """ @@ -4210,7 +3980,7 @@ def is_template_error(self): :rtype: bool """ - return self._tag == "template_error" + return self._tag == 'template_error' def is_other(self): """ @@ -4218,7 +3988,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_path(self): """ @@ -4241,14 +4011,10 @@ def get_template_error(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListFolderError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ListFolderError, self)._process_custom_annotations(annotation_type, field_path, processor) ListFolderError_validator = bv.Union(ListFolderError) - class ListFolderGetLatestCursorResult(bb.Struct): """ :ivar ListFolderGetLatestCursorResult.cursor: @@ -4258,12 +4024,13 @@ class ListFolderGetLatestCursorResult(bb.Struct): """ __slots__ = [ - "_cursor_value", + '_cursor_value', ] _has_required_fields = True - def __init__(self, cursor=None): + def __init__(self, + cursor=None): self._cursor_value = bb.NOT_SET if cursor is not None: self.cursor = cursor @@ -4272,14 +4039,10 @@ def __init__(self, cursor=None): cursor = bb.Attribute("cursor") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListFolderGetLatestCursorResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ListFolderGetLatestCursorResult, self)._process_custom_annotations(annotation_type, field_path, processor) ListFolderGetLatestCursorResult_validator = bv.Struct(ListFolderGetLatestCursorResult) - class ListFolderLongpollArg(bb.Struct): """ :ivar ListFolderLongpollArg.cursor: @@ -4296,13 +4059,15 @@ class ListFolderLongpollArg(bb.Struct): """ __slots__ = [ - "_cursor_value", - "_timeout_value", + '_cursor_value', + '_timeout_value', ] _has_required_fields = True - def __init__(self, cursor=None, timeout=None): + def __init__(self, + cursor=None, + timeout=None): self._cursor_value = bb.NOT_SET self._timeout_value = bb.NOT_SET if cursor is not None: @@ -4317,14 +4082,10 @@ def __init__(self, cursor=None, timeout=None): timeout = bb.Attribute("timeout") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListFolderLongpollArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ListFolderLongpollArg, self)._process_custom_annotations(annotation_type, field_path, processor) ListFolderLongpollArg_validator = bv.Struct(ListFolderLongpollArg) - class ListFolderLongpollError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -4337,7 +4098,7 @@ class ListFolderLongpollError(bb.Union): cursor. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition reset = None # Attribute is overwritten below the class definition @@ -4349,7 +4110,7 @@ def is_reset(self): :rtype: bool """ - return self._tag == "reset" + return self._tag == 'reset' def is_other(self): """ @@ -4357,17 +4118,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListFolderLongpollError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ListFolderLongpollError, self)._process_custom_annotations(annotation_type, field_path, processor) ListFolderLongpollError_validator = bv.Union(ListFolderLongpollError) - class ListFolderLongpollResult(bb.Struct): """ :ivar ListFolderLongpollResult.changes: @@ -4380,13 +4137,15 @@ class ListFolderLongpollResult(bb.Struct): """ __slots__ = [ - "_changes_value", - "_backoff_value", + '_changes_value', + '_backoff_value', ] _has_required_fields = True - def __init__(self, changes=None, backoff=None): + def __init__(self, + changes=None, + backoff=None): self._changes_value = bb.NOT_SET self._backoff_value = bb.NOT_SET if changes is not None: @@ -4401,14 +4160,10 @@ def __init__(self, changes=None, backoff=None): backoff = bb.Attribute("backoff", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListFolderLongpollResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ListFolderLongpollResult, self)._process_custom_annotations(annotation_type, field_path, processor) ListFolderLongpollResult_validator = bv.Struct(ListFolderLongpollResult) - class ListFolderResult(bb.Struct): """ :ivar ListFolderResult.entries: @@ -4424,14 +4179,17 @@ class ListFolderResult(bb.Struct): """ __slots__ = [ - "_entries_value", - "_cursor_value", - "_has_more_value", + '_entries_value', + '_cursor_value', + '_has_more_value', ] _has_required_fields = True - def __init__(self, entries=None, cursor=None, has_more=None): + def __init__(self, + entries=None, + cursor=None, + has_more=None): self._entries_value = bb.NOT_SET self._cursor_value = bb.NOT_SET self._has_more_value = bb.NOT_SET @@ -4452,14 +4210,10 @@ def __init__(self, entries=None, cursor=None, has_more=None): has_more = bb.Attribute("has_more") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListFolderResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ListFolderResult, self)._process_custom_annotations(annotation_type, field_path, processor) ListFolderResult_validator = bv.Struct(ListFolderResult) - class ListRevisionsArg(bb.Struct): """ :ivar ListRevisionsArg.path: @@ -4480,23 +4234,21 @@ class ListRevisionsArg(bb.Struct): """ __slots__ = [ - "_path_value", - "_mode_value", - "_limit_value", - "_before_rev_value", - "_include_restorable_info_value", + '_path_value', + '_mode_value', + '_limit_value', + '_before_rev_value', + '_include_restorable_info_value', ] _has_required_fields = True - def __init__( - self, - path=None, - mode=None, - limit=None, - before_rev=None, - include_restorable_info=None, - ): + def __init__(self, + path=None, + mode=None, + limit=None, + before_rev=None, + include_restorable_info=None): self._path_value = bb.NOT_SET self._mode_value = bb.NOT_SET self._limit_value = bb.NOT_SET @@ -4529,14 +4281,10 @@ def __init__( include_restorable_info = bb.Attribute("include_restorable_info") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListRevisionsArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ListRevisionsArg, self)._process_custom_annotations(annotation_type, field_path, processor) ListRevisionsArg_validator = bv.Struct(ListRevisionsArg) - class ListRevisionsError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -4549,7 +4297,7 @@ class ListRevisionsError(bb.Union): The before_rev argument is only supported in path mode. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition invalid_before_rev = None # Attribute is overwritten below the class definition @@ -4566,7 +4314,7 @@ def path(cls, val): :param LookupError val: :rtype: ListRevisionsError """ - return cls("path", val) + return cls('path', val) def is_path(self): """ @@ -4574,7 +4322,7 @@ def is_path(self): :rtype: bool """ - return self._tag == "path" + return self._tag == 'path' def is_invalid_before_rev(self): """ @@ -4582,7 +4330,7 @@ def is_invalid_before_rev(self): :rtype: bool """ - return self._tag == "invalid_before_rev" + return self._tag == 'invalid_before_rev' def is_before_rev_not_supported(self): """ @@ -4590,7 +4338,7 @@ def is_before_rev_not_supported(self): :rtype: bool """ - return self._tag == "before_rev_not_supported" + return self._tag == 'before_rev_not_supported' def is_other(self): """ @@ -4598,7 +4346,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_path(self): """ @@ -4611,14 +4359,10 @@ def get_path(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListRevisionsError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ListRevisionsError, self)._process_custom_annotations(annotation_type, field_path, processor) ListRevisionsError_validator = bv.Union(ListRevisionsError) - class ListRevisionsMode(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -4633,7 +4377,7 @@ class ListRevisionsMode(bb.Union): entry at the given file path or id. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition path = None # Attribute is overwritten below the class definition @@ -4647,7 +4391,7 @@ def is_path(self): :rtype: bool """ - return self._tag == "path" + return self._tag == 'path' def is_id(self): """ @@ -4655,7 +4399,7 @@ def is_id(self): :rtype: bool """ - return self._tag == "id" + return self._tag == 'id' def is_other(self): """ @@ -4663,17 +4407,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListRevisionsMode, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ListRevisionsMode, self)._process_custom_annotations(annotation_type, field_path, processor) ListRevisionsMode_validator = bv.Union(ListRevisionsMode) - class ListRevisionsResult(bb.Struct): """ :ivar ListRevisionsResult.is_deleted: @@ -4692,15 +4432,19 @@ class ListRevisionsResult(bb.Struct): """ __slots__ = [ - "_is_deleted_value", - "_server_deleted_value", - "_entries_value", - "_has_more_value", + '_is_deleted_value', + '_server_deleted_value', + '_entries_value', + '_has_more_value', ] _has_required_fields = True - def __init__(self, is_deleted=None, entries=None, has_more=None, server_deleted=None): + def __init__(self, + is_deleted=None, + entries=None, + has_more=None, + server_deleted=None): self._is_deleted_value = bb.NOT_SET self._server_deleted_value = bb.NOT_SET self._entries_value = bb.NOT_SET @@ -4727,14 +4471,10 @@ def __init__(self, is_deleted=None, entries=None, has_more=None, server_deleted= has_more = bb.Attribute("has_more") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListRevisionsResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ListRevisionsResult, self)._process_custom_annotations(annotation_type, field_path, processor) ListRevisionsResult_validator = bv.Struct(ListRevisionsResult) - class LockConflictError(bb.Struct): """ :ivar LockConflictError.lock: @@ -4742,12 +4482,13 @@ class LockConflictError(bb.Struct): """ __slots__ = [ - "_lock_value", + '_lock_value', ] _has_required_fields = True - def __init__(self, lock=None): + def __init__(self, + lock=None): self._lock_value = bb.NOT_SET if lock is not None: self.lock = lock @@ -4756,14 +4497,10 @@ def __init__(self, lock=None): lock = bb.Attribute("lock", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LockConflictError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(LockConflictError, self)._process_custom_annotations(annotation_type, field_path, processor) LockConflictError_validator = bv.Struct(LockConflictError) - class LockFileArg(bb.Struct): """ :ivar LockFileArg.path: @@ -4771,12 +4508,13 @@ class LockFileArg(bb.Struct): """ __slots__ = [ - "_path_value", + '_path_value', ] _has_required_fields = True - def __init__(self, path=None): + def __init__(self, + path=None): self._path_value = bb.NOT_SET if path is not None: self.path = path @@ -4787,10 +4525,8 @@ def __init__(self, path=None): def _process_custom_annotations(self, annotation_type, field_path, processor): super(LockFileArg, self)._process_custom_annotations(annotation_type, field_path, processor) - LockFileArg_validator = bv.Struct(LockFileArg) - class LockFileBatchArg(bb.Struct): """ :ivar LockFileBatchArg.entries: @@ -4800,12 +4536,13 @@ class LockFileBatchArg(bb.Struct): """ __slots__ = [ - "_entries_value", + '_entries_value', ] _has_required_fields = True - def __init__(self, entries=None): + def __init__(self, + entries=None): self._entries_value = bb.NOT_SET if entries is not None: self.entries = entries @@ -4814,14 +4551,10 @@ def __init__(self, entries=None): entries = bb.Attribute("entries") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LockFileBatchArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(LockFileBatchArg, self)._process_custom_annotations(annotation_type, field_path, processor) LockFileBatchArg_validator = bv.Struct(LockFileBatchArg) - class LockFileBatchResult(FileOpsResult): """ :ivar LockFileBatchResult.entries: @@ -4831,12 +4564,13 @@ class LockFileBatchResult(FileOpsResult): """ __slots__ = [ - "_entries_value", + '_entries_value', ] _has_required_fields = True - def __init__(self, entries=None): + def __init__(self, + entries=None): super(LockFileBatchResult, self).__init__() self._entries_value = bb.NOT_SET if entries is not None: @@ -4846,14 +4580,10 @@ def __init__(self, entries=None): entries = bb.Attribute("entries") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LockFileBatchResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(LockFileBatchResult, self)._process_custom_annotations(annotation_type, field_path, processor) LockFileBatchResult_validator = bv.Struct(LockFileBatchResult) - class LockFileError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -4884,7 +4614,7 @@ class LockFileError(bb.Union): This should happen very rarely. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition too_many_write_operations = None # Attribute is overwritten below the class definition @@ -4909,7 +4639,7 @@ def path_lookup(cls, val): :param LookupError val: :rtype: LockFileError """ - return cls("path_lookup", val) + return cls('path_lookup', val) @classmethod def lock_conflict(cls, val): @@ -4920,7 +4650,7 @@ def lock_conflict(cls, val): :param LockConflictError val: :rtype: LockFileError """ - return cls("lock_conflict", val) + return cls('lock_conflict', val) def is_path_lookup(self): """ @@ -4928,7 +4658,7 @@ def is_path_lookup(self): :rtype: bool """ - return self._tag == "path_lookup" + return self._tag == 'path_lookup' def is_too_many_write_operations(self): """ @@ -4936,7 +4666,7 @@ def is_too_many_write_operations(self): :rtype: bool """ - return self._tag == "too_many_write_operations" + return self._tag == 'too_many_write_operations' def is_too_many_files(self): """ @@ -4944,7 +4674,7 @@ def is_too_many_files(self): :rtype: bool """ - return self._tag == "too_many_files" + return self._tag == 'too_many_files' def is_no_write_permission(self): """ @@ -4952,7 +4682,7 @@ def is_no_write_permission(self): :rtype: bool """ - return self._tag == "no_write_permission" + return self._tag == 'no_write_permission' def is_cannot_be_locked(self): """ @@ -4960,7 +4690,7 @@ def is_cannot_be_locked(self): :rtype: bool """ - return self._tag == "cannot_be_locked" + return self._tag == 'cannot_be_locked' def is_file_not_shared(self): """ @@ -4968,7 +4698,7 @@ def is_file_not_shared(self): :rtype: bool """ - return self._tag == "file_not_shared" + return self._tag == 'file_not_shared' def is_lock_conflict(self): """ @@ -4976,7 +4706,7 @@ def is_lock_conflict(self): :rtype: bool """ - return self._tag == "lock_conflict" + return self._tag == 'lock_conflict' def is_internal_error(self): """ @@ -4984,7 +4714,7 @@ def is_internal_error(self): :rtype: bool """ - return self._tag == "internal_error" + return self._tag == 'internal_error' def is_other(self): """ @@ -4992,7 +4722,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_path_lookup(self): """ @@ -5019,14 +4749,10 @@ def get_lock_conflict(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LockFileError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(LockFileError, self)._process_custom_annotations(annotation_type, field_path, processor) LockFileError_validator = bv.Union(LockFileError) - class LockFileResult(bb.Struct): """ :ivar LockFileResult.metadata: @@ -5036,13 +4762,15 @@ class LockFileResult(bb.Struct): """ __slots__ = [ - "_metadata_value", - "_lock_value", + '_metadata_value', + '_lock_value', ] _has_required_fields = True - def __init__(self, metadata=None, lock=None): + def __init__(self, + metadata=None, + lock=None): self._metadata_value = bb.NOT_SET self._lock_value = bb.NOT_SET if metadata is not None: @@ -5057,14 +4785,10 @@ def __init__(self, metadata=None, lock=None): lock = bb.Attribute("lock", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LockFileResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(LockFileResult, self)._process_custom_annotations(annotation_type, field_path, processor) LockFileResult_validator = bv.Struct(LockFileResult) - class LockFileResultEntry(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -5083,7 +4807,7 @@ def success(cls, val): :param LockFileResult val: :rtype: LockFileResultEntry """ - return cls("success", val) + return cls('success', val) @classmethod def failure(cls, val): @@ -5094,7 +4818,7 @@ def failure(cls, val): :param LockFileError val: :rtype: LockFileResultEntry """ - return cls("failure", val) + return cls('failure', val) def is_success(self): """ @@ -5102,7 +4826,7 @@ def is_success(self): :rtype: bool """ - return self._tag == "success" + return self._tag == 'success' def is_failure(self): """ @@ -5110,7 +4834,7 @@ def is_failure(self): :rtype: bool """ - return self._tag == "failure" + return self._tag == 'failure' def get_success(self): """ @@ -5133,14 +4857,10 @@ def get_failure(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LockFileResultEntry, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(LockFileResultEntry, self)._process_custom_annotations(annotation_type, field_path, processor) LockFileResultEntry_validator = bv.Union(LockFileResultEntry) - class LookupError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -5170,7 +4890,7 @@ class LookupError(bb.Union): The given path is locked. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition not_found = None # Attribute is overwritten below the class definition @@ -5195,7 +4915,7 @@ def malformed_path(cls, val): :param Optional[str] val: :rtype: LookupError """ - return cls("malformed_path", val) + return cls('malformed_path', val) def is_malformed_path(self): """ @@ -5203,7 +4923,7 @@ def is_malformed_path(self): :rtype: bool """ - return self._tag == "malformed_path" + return self._tag == 'malformed_path' def is_not_found(self): """ @@ -5211,7 +4931,7 @@ def is_not_found(self): :rtype: bool """ - return self._tag == "not_found" + return self._tag == 'not_found' def is_not_file(self): """ @@ -5219,7 +4939,7 @@ def is_not_file(self): :rtype: bool """ - return self._tag == "not_file" + return self._tag == 'not_file' def is_not_folder(self): """ @@ -5227,7 +4947,7 @@ def is_not_folder(self): :rtype: bool """ - return self._tag == "not_folder" + return self._tag == 'not_folder' def is_restricted_content(self): """ @@ -5235,7 +4955,7 @@ def is_restricted_content(self): :rtype: bool """ - return self._tag == "restricted_content" + return self._tag == 'restricted_content' def is_unsupported_content_type(self): """ @@ -5243,7 +4963,7 @@ def is_unsupported_content_type(self): :rtype: bool """ - return self._tag == "unsupported_content_type" + return self._tag == 'unsupported_content_type' def is_locked(self): """ @@ -5251,7 +4971,7 @@ def is_locked(self): :rtype: bool """ - return self._tag == "locked" + return self._tag == 'locked' def is_other(self): """ @@ -5259,7 +4979,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_malformed_path(self): """ @@ -5279,10 +4999,8 @@ def get_malformed_path(self): def _process_custom_annotations(self, annotation_type, field_path, processor): super(LookupError, self)._process_custom_annotations(annotation_type, field_path, processor) - LookupError_validator = bv.Union(LookupError) - class MediaInfo(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -5311,7 +5029,7 @@ def metadata(cls, val): :param MediaMetadata val: :rtype: MediaInfo """ - return cls("metadata", val) + return cls('metadata', val) def is_pending(self): """ @@ -5319,7 +5037,7 @@ def is_pending(self): :rtype: bool """ - return self._tag == "pending" + return self._tag == 'pending' def is_metadata(self): """ @@ -5327,7 +5045,7 @@ def is_metadata(self): :rtype: bool """ - return self._tag == "metadata" + return self._tag == 'metadata' def get_metadata(self): """ @@ -5345,10 +5063,8 @@ def get_metadata(self): def _process_custom_annotations(self, annotation_type, field_path, processor): super(MediaInfo, self)._process_custom_annotations(annotation_type, field_path, processor) - MediaInfo_validator = bv.Union(MediaInfo) - class MediaMetadata(bb.Struct): """ Metadata for a photo or video. @@ -5362,14 +5078,17 @@ class MediaMetadata(bb.Struct): """ __slots__ = [ - "_dimensions_value", - "_location_value", - "_time_taken_value", + '_dimensions_value', + '_location_value', + '_time_taken_value', ] _has_required_fields = False - def __init__(self, dimensions=None, location=None, time_taken=None): + def __init__(self, + dimensions=None, + location=None, + time_taken=None): self._dimensions_value = bb.NOT_SET self._location_value = bb.NOT_SET self._time_taken_value = bb.NOT_SET @@ -5390,14 +5109,10 @@ def __init__(self, dimensions=None, location=None, time_taken=None): time_taken = bb.Attribute("time_taken", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MediaMetadata, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MediaMetadata, self)._process_custom_annotations(annotation_type, field_path, processor) MediaMetadata_validator = bv.StructTree(MediaMetadata) - class MetadataV2(bb.Union): """ Metadata for a file, folder or other resource types. @@ -5407,7 +5122,7 @@ class MetadataV2(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -5420,7 +5135,7 @@ def metadata(cls, val): :param Metadata val: :rtype: MetadataV2 """ - return cls("metadata", val) + return cls('metadata', val) def is_metadata(self): """ @@ -5428,7 +5143,7 @@ def is_metadata(self): :rtype: bool """ - return self._tag == "metadata" + return self._tag == 'metadata' def is_other(self): """ @@ -5436,7 +5151,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_metadata(self): """ @@ -5451,10 +5166,8 @@ def get_metadata(self): def _process_custom_annotations(self, annotation_type, field_path, processor): super(MetadataV2, self)._process_custom_annotations(annotation_type, field_path, processor) - MetadataV2_validator = bv.Union(MetadataV2) - class MinimalFileLinkMetadata(bb.Struct): """ :ivar MinimalFileLinkMetadata.url: @@ -5472,15 +5185,19 @@ class MinimalFileLinkMetadata(bb.Struct): """ __slots__ = [ - "_url_value", - "_id_value", - "_path_value", - "_rev_value", + '_url_value', + '_id_value', + '_path_value', + '_rev_value', ] _has_required_fields = True - def __init__(self, url=None, rev=None, id=None, path=None): + def __init__(self, + url=None, + rev=None, + id=None, + path=None): self._url_value = bb.NOT_SET self._id_value = bb.NOT_SET self._path_value = bb.NOT_SET @@ -5507,14 +5224,10 @@ def __init__(self, url=None, rev=None, id=None, path=None): rev = bb.Attribute("rev") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MinimalFileLinkMetadata, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MinimalFileLinkMetadata, self)._process_custom_annotations(annotation_type, field_path, processor) MinimalFileLinkMetadata_validator = bv.Struct(MinimalFileLinkMetadata) - class RelocationBatchArgBase(bb.Struct): """ :ivar RelocationBatchArgBase.entries: @@ -5526,13 +5239,15 @@ class RelocationBatchArgBase(bb.Struct): """ __slots__ = [ - "_entries_value", - "_autorename_value", + '_entries_value', + '_autorename_value', ] _has_required_fields = True - def __init__(self, entries=None, autorename=None): + def __init__(self, + entries=None, + autorename=None): self._entries_value = bb.NOT_SET self._autorename_value = bb.NOT_SET if entries is not None: @@ -5547,14 +5262,10 @@ def __init__(self, entries=None, autorename=None): autorename = bb.Attribute("autorename") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RelocationBatchArgBase, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(RelocationBatchArgBase, self)._process_custom_annotations(annotation_type, field_path, processor) RelocationBatchArgBase_validator = bv.Struct(RelocationBatchArgBase) - class MoveBatchArg(RelocationBatchArgBase): """ :ivar MoveBatchArg.allow_ownership_transfer: @@ -5563,13 +5274,17 @@ class MoveBatchArg(RelocationBatchArgBase): """ __slots__ = [ - "_allow_ownership_transfer_value", + '_allow_ownership_transfer_value', ] _has_required_fields = True - def __init__(self, entries=None, autorename=None, allow_ownership_transfer=None): - super(MoveBatchArg, self).__init__(entries, autorename) + def __init__(self, + entries=None, + autorename=None, + allow_ownership_transfer=None): + super(MoveBatchArg, self).__init__(entries, + autorename) self._allow_ownership_transfer_value = bb.NOT_SET if allow_ownership_transfer is not None: self.allow_ownership_transfer = allow_ownership_transfer @@ -5578,14 +5293,10 @@ def __init__(self, entries=None, autorename=None, allow_ownership_transfer=None) allow_ownership_transfer = bb.Attribute("allow_ownership_transfer") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MoveBatchArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MoveBatchArg, self)._process_custom_annotations(annotation_type, field_path, processor) MoveBatchArg_validator = bv.Struct(MoveBatchArg) - class MoveIntoFamilyError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -5596,7 +5307,7 @@ class MoveIntoFamilyError(bb.Union): Moving shared folder into Family Room folder is not allowed. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition is_shared_folder = None # Attribute is overwritten below the class definition @@ -5608,7 +5319,7 @@ def is_is_shared_folder(self): :rtype: bool """ - return self._tag == "is_shared_folder" + return self._tag == 'is_shared_folder' def is_other(self): """ @@ -5616,17 +5327,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MoveIntoFamilyError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MoveIntoFamilyError, self)._process_custom_annotations(annotation_type, field_path, processor) MoveIntoFamilyError_validator = bv.Union(MoveIntoFamilyError) - class MoveIntoVaultError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -5637,7 +5344,7 @@ class MoveIntoVaultError(bb.Union): Moving shared folder into Vault is not allowed. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition is_shared_folder = None # Attribute is overwritten below the class definition @@ -5649,7 +5356,7 @@ def is_is_shared_folder(self): :rtype: bool """ - return self._tag == "is_shared_folder" + return self._tag == 'is_shared_folder' def is_other(self): """ @@ -5657,17 +5364,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MoveIntoVaultError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MoveIntoVaultError, self)._process_custom_annotations(annotation_type, field_path, processor) MoveIntoVaultError_validator = bv.Union(MoveIntoVaultError) - class PaperContentError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -5685,7 +5388,7 @@ class PaperContentError(bb.Union): limit is 1MB. This only applies to HTML with data URI. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition insufficient_permissions = None # Attribute is overwritten below the class definition @@ -5703,7 +5406,7 @@ def is_insufficient_permissions(self): :rtype: bool """ - return self._tag == "insufficient_permissions" + return self._tag == 'insufficient_permissions' def is_content_malformed(self): """ @@ -5711,7 +5414,7 @@ def is_content_malformed(self): :rtype: bool """ - return self._tag == "content_malformed" + return self._tag == 'content_malformed' def is_doc_length_exceeded(self): """ @@ -5719,7 +5422,7 @@ def is_doc_length_exceeded(self): :rtype: bool """ - return self._tag == "doc_length_exceeded" + return self._tag == 'doc_length_exceeded' def is_image_size_exceeded(self): """ @@ -5727,7 +5430,7 @@ def is_image_size_exceeded(self): :rtype: bool """ - return self._tag == "image_size_exceeded" + return self._tag == 'image_size_exceeded' def is_other(self): """ @@ -5735,17 +5438,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperContentError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperContentError, self)._process_custom_annotations(annotation_type, field_path, processor) PaperContentError_validator = bv.Union(PaperContentError) - class PaperCreateArg(bb.Struct): """ :ivar PaperCreateArg.path: @@ -5757,13 +5456,15 @@ class PaperCreateArg(bb.Struct): """ __slots__ = [ - "_path_value", - "_import_format_value", + '_path_value', + '_import_format_value', ] _has_required_fields = True - def __init__(self, path=None, import_format=None): + def __init__(self, + path=None, + import_format=None): self._path_value = bb.NOT_SET self._import_format_value = bb.NOT_SET if path is not None: @@ -5778,14 +5479,10 @@ def __init__(self, path=None, import_format=None): import_format = bb.Attribute("import_format", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperCreateArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperCreateArg, self)._process_custom_annotations(annotation_type, field_path, processor) PaperCreateArg_validator = bv.Struct(PaperCreateArg) - class PaperCreateError(PaperContentError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -5817,7 +5514,7 @@ def is_invalid_path(self): :rtype: bool """ - return self._tag == "invalid_path" + return self._tag == 'invalid_path' def is_email_unverified(self): """ @@ -5825,7 +5522,7 @@ def is_email_unverified(self): :rtype: bool """ - return self._tag == "email_unverified" + return self._tag == 'email_unverified' def is_invalid_file_extension(self): """ @@ -5833,7 +5530,7 @@ def is_invalid_file_extension(self): :rtype: bool """ - return self._tag == "invalid_file_extension" + return self._tag == 'invalid_file_extension' def is_paper_disabled(self): """ @@ -5841,17 +5538,13 @@ def is_paper_disabled(self): :rtype: bool """ - return self._tag == "paper_disabled" + return self._tag == 'paper_disabled' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperCreateError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperCreateError, self)._process_custom_annotations(annotation_type, field_path, processor) PaperCreateError_validator = bv.Union(PaperCreateError) - class PaperCreateResult(bb.Struct): """ :ivar PaperCreateResult.url: @@ -5865,15 +5558,19 @@ class PaperCreateResult(bb.Struct): """ __slots__ = [ - "_url_value", - "_result_path_value", - "_file_id_value", - "_paper_revision_value", + '_url_value', + '_result_path_value', + '_file_id_value', + '_paper_revision_value', ] _has_required_fields = True - def __init__(self, url=None, result_path=None, file_id=None, paper_revision=None): + def __init__(self, + url=None, + result_path=None, + file_id=None, + paper_revision=None): self._url_value = bb.NOT_SET self._result_path_value = bb.NOT_SET self._file_id_value = bb.NOT_SET @@ -5900,14 +5597,10 @@ def __init__(self, url=None, result_path=None, file_id=None, paper_revision=None paper_revision = bb.Attribute("paper_revision") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperCreateResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperCreateResult, self)._process_custom_annotations(annotation_type, field_path, processor) PaperCreateResult_validator = bv.Struct(PaperCreateResult) - class PaperDocUpdatePolicy(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -5929,7 +5622,7 @@ class PaperDocUpdatePolicy(bb.Union): paper_revision. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition update = None # Attribute is overwritten below the class definition @@ -5947,7 +5640,7 @@ def is_update(self): :rtype: bool """ - return self._tag == "update" + return self._tag == 'update' def is_overwrite(self): """ @@ -5955,7 +5648,7 @@ def is_overwrite(self): :rtype: bool """ - return self._tag == "overwrite" + return self._tag == 'overwrite' def is_prepend(self): """ @@ -5963,7 +5656,7 @@ def is_prepend(self): :rtype: bool """ - return self._tag == "prepend" + return self._tag == 'prepend' def is_append(self): """ @@ -5971,7 +5664,7 @@ def is_append(self): :rtype: bool """ - return self._tag == "append" + return self._tag == 'append' def is_other(self): """ @@ -5979,17 +5672,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocUpdatePolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperDocUpdatePolicy, self)._process_custom_annotations(annotation_type, field_path, processor) PaperDocUpdatePolicy_validator = bv.Union(PaperDocUpdatePolicy) - class PaperUpdateArg(bb.Struct): """ :ivar PaperUpdateArg.path: @@ -6006,15 +5695,19 @@ class PaperUpdateArg(bb.Struct): """ __slots__ = [ - "_path_value", - "_import_format_value", - "_doc_update_policy_value", - "_paper_revision_value", + '_path_value', + '_import_format_value', + '_doc_update_policy_value', + '_paper_revision_value', ] _has_required_fields = True - def __init__(self, path=None, import_format=None, doc_update_policy=None, paper_revision=None): + def __init__(self, + path=None, + import_format=None, + doc_update_policy=None, + paper_revision=None): self._path_value = bb.NOT_SET self._import_format_value = bb.NOT_SET self._doc_update_policy_value = bb.NOT_SET @@ -6041,14 +5734,10 @@ def __init__(self, path=None, import_format=None, doc_update_policy=None, paper_ paper_revision = bb.Attribute("paper_revision", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperUpdateArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperUpdateArg, self)._process_custom_annotations(annotation_type, field_path, processor) PaperUpdateArg_validator = bv.Struct(PaperUpdateArg) - class PaperUpdateError(PaperContentError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -6079,7 +5768,7 @@ def path(cls, val): :param LookupError val: :rtype: PaperUpdateError """ - return cls("path", val) + return cls('path', val) def is_path(self): """ @@ -6087,7 +5776,7 @@ def is_path(self): :rtype: bool """ - return self._tag == "path" + return self._tag == 'path' def is_revision_mismatch(self): """ @@ -6095,7 +5784,7 @@ def is_revision_mismatch(self): :rtype: bool """ - return self._tag == "revision_mismatch" + return self._tag == 'revision_mismatch' def is_doc_archived(self): """ @@ -6103,7 +5792,7 @@ def is_doc_archived(self): :rtype: bool """ - return self._tag == "doc_archived" + return self._tag == 'doc_archived' def is_doc_deleted(self): """ @@ -6111,7 +5800,7 @@ def is_doc_deleted(self): :rtype: bool """ - return self._tag == "doc_deleted" + return self._tag == 'doc_deleted' def get_path(self): """ @@ -6124,14 +5813,10 @@ def get_path(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperUpdateError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperUpdateError, self)._process_custom_annotations(annotation_type, field_path, processor) PaperUpdateError_validator = bv.Union(PaperUpdateError) - class PaperUpdateResult(bb.Struct): """ :ivar PaperUpdateResult.paper_revision: @@ -6139,12 +5824,13 @@ class PaperUpdateResult(bb.Struct): """ __slots__ = [ - "_paper_revision_value", + '_paper_revision_value', ] _has_required_fields = True - def __init__(self, paper_revision=None): + def __init__(self, + paper_revision=None): self._paper_revision_value = bb.NOT_SET if paper_revision is not None: self.paper_revision = paper_revision @@ -6153,14 +5839,10 @@ def __init__(self, paper_revision=None): paper_revision = bb.Attribute("paper_revision") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperUpdateResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperUpdateResult, self)._process_custom_annotations(annotation_type, field_path, processor) PaperUpdateResult_validator = bv.Struct(PaperUpdateResult) - class PathOrLink(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -6168,7 +5850,7 @@ class PathOrLink(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -6181,7 +5863,7 @@ def path(cls, val): :param str val: :rtype: PathOrLink """ - return cls("path", val) + return cls('path', val) @classmethod def link(cls, val): @@ -6192,7 +5874,7 @@ def link(cls, val): :param SharedLinkFileInfo val: :rtype: PathOrLink """ - return cls("link", val) + return cls('link', val) def is_path(self): """ @@ -6200,7 +5882,7 @@ def is_path(self): :rtype: bool """ - return self._tag == "path" + return self._tag == 'path' def is_link(self): """ @@ -6208,7 +5890,7 @@ def is_link(self): :rtype: bool """ - return self._tag == "link" + return self._tag == 'link' def is_other(self): """ @@ -6216,7 +5898,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_path(self): """ @@ -6241,10 +5923,8 @@ def get_link(self): def _process_custom_annotations(self, annotation_type, field_path, processor): super(PathOrLink, self)._process_custom_annotations(annotation_type, field_path, processor) - PathOrLink_validator = bv.Union(PathOrLink) - class PathToTags(bb.Struct): """ :ivar PathToTags.path: @@ -6254,13 +5934,15 @@ class PathToTags(bb.Struct): """ __slots__ = [ - "_path_value", - "_tags_value", + '_path_value', + '_tags_value', ] _has_required_fields = True - def __init__(self, path=None, tags=None): + def __init__(self, + path=None, + tags=None): self._path_value = bb.NOT_SET self._tags_value = bb.NOT_SET if path is not None: @@ -6277,31 +5959,31 @@ def __init__(self, path=None, tags=None): def _process_custom_annotations(self, annotation_type, field_path, processor): super(PathToTags, self)._process_custom_annotations(annotation_type, field_path, processor) - PathToTags_validator = bv.Struct(PathToTags) - class PhotoMetadata(MediaMetadata): """ Metadata for a photo. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False - def __init__(self, dimensions=None, location=None, time_taken=None): - super(PhotoMetadata, self).__init__(dimensions, location, time_taken) + def __init__(self, + dimensions=None, + location=None, + time_taken=None): + super(PhotoMetadata, self).__init__(dimensions, + location, + time_taken) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PhotoMetadata, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PhotoMetadata, self)._process_custom_annotations(annotation_type, field_path, processor) PhotoMetadata_validator = bv.Struct(PhotoMetadata) - class PreviewArg(bb.Struct): """ :ivar PreviewArg.path: @@ -6311,13 +5993,15 @@ class PreviewArg(bb.Struct): """ __slots__ = [ - "_path_value", - "_rev_value", + '_path_value', + '_rev_value', ] _has_required_fields = True - def __init__(self, path=None, rev=None): + def __init__(self, + path=None, + rev=None): self._path_value = bb.NOT_SET self._rev_value = bb.NOT_SET if path is not None: @@ -6334,10 +6018,8 @@ def __init__(self, path=None, rev=None): def _process_custom_annotations(self, annotation_type, field_path, processor): super(PreviewArg, self)._process_custom_annotations(annotation_type, field_path, processor) - PreviewArg_validator = bv.Struct(PreviewArg) - class PreviewError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -6373,7 +6055,7 @@ def path(cls, val): :param LookupError val: :rtype: PreviewError """ - return cls("path", val) + return cls('path', val) def is_path(self): """ @@ -6381,7 +6063,7 @@ def is_path(self): :rtype: bool """ - return self._tag == "path" + return self._tag == 'path' def is_in_progress(self): """ @@ -6389,7 +6071,7 @@ def is_in_progress(self): :rtype: bool """ - return self._tag == "in_progress" + return self._tag == 'in_progress' def is_unsupported_extension(self): """ @@ -6397,7 +6079,7 @@ def is_unsupported_extension(self): :rtype: bool """ - return self._tag == "unsupported_extension" + return self._tag == 'unsupported_extension' def is_unsupported_content(self): """ @@ -6405,7 +6087,7 @@ def is_unsupported_content(self): :rtype: bool """ - return self._tag == "unsupported_content" + return self._tag == 'unsupported_content' def get_path(self): """ @@ -6420,14 +6102,10 @@ def get_path(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PreviewError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PreviewError, self)._process_custom_annotations(annotation_type, field_path, processor) PreviewError_validator = bv.Union(PreviewError) - class PreviewResult(bb.Struct): """ :ivar PreviewResult.file_metadata: @@ -6440,13 +6118,15 @@ class PreviewResult(bb.Struct): """ __slots__ = [ - "_file_metadata_value", - "_link_metadata_value", + '_file_metadata_value', + '_link_metadata_value', ] _has_required_fields = False - def __init__(self, file_metadata=None, link_metadata=None): + def __init__(self, + file_metadata=None, + link_metadata=None): self._file_metadata_value = bb.NOT_SET self._link_metadata_value = bb.NOT_SET if file_metadata is not None: @@ -6461,14 +6141,10 @@ def __init__(self, file_metadata=None, link_metadata=None): link_metadata = bb.Attribute("link_metadata", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PreviewResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PreviewResult, self)._process_custom_annotations(annotation_type, field_path, processor) PreviewResult_validator = bv.Struct(PreviewResult) - class RelocationPath(bb.Struct): """ :ivar RelocationPath.from_path: @@ -6478,13 +6154,15 @@ class RelocationPath(bb.Struct): """ __slots__ = [ - "_from_path_value", - "_to_path_value", + '_from_path_value', + '_to_path_value', ] _has_required_fields = True - def __init__(self, from_path=None, to_path=None): + def __init__(self, + from_path=None, + to_path=None): self._from_path_value = bb.NOT_SET self._to_path_value = bb.NOT_SET if from_path is not None: @@ -6499,14 +6177,10 @@ def __init__(self, from_path=None, to_path=None): to_path = bb.Attribute("to_path") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RelocationPath, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(RelocationPath, self)._process_custom_annotations(annotation_type, field_path, processor) RelocationPath_validator = bv.Struct(RelocationPath) - class RelocationArg(RelocationPath): """ :ivar RelocationArg.allow_shared_folder: @@ -6520,22 +6194,21 @@ class RelocationArg(RelocationPath): """ __slots__ = [ - "_allow_shared_folder_value", - "_autorename_value", - "_allow_ownership_transfer_value", + '_allow_shared_folder_value', + '_autorename_value', + '_allow_ownership_transfer_value', ] _has_required_fields = True - def __init__( - self, - from_path=None, - to_path=None, - allow_shared_folder=None, - autorename=None, - allow_ownership_transfer=None, - ): - super(RelocationArg, self).__init__(from_path, to_path) + def __init__(self, + from_path=None, + to_path=None, + allow_shared_folder=None, + autorename=None, + allow_ownership_transfer=None): + super(RelocationArg, self).__init__(from_path, + to_path) self._allow_shared_folder_value = bb.NOT_SET self._autorename_value = bb.NOT_SET self._allow_ownership_transfer_value = bb.NOT_SET @@ -6556,14 +6229,10 @@ def __init__( allow_ownership_transfer = bb.Attribute("allow_ownership_transfer") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RelocationArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(RelocationArg, self)._process_custom_annotations(annotation_type, field_path, processor) RelocationArg_validator = bv.Struct(RelocationArg) - class RelocationBatchArg(RelocationBatchArgBase): """ :ivar RelocationBatchArg.allow_shared_folder: @@ -6574,20 +6243,19 @@ class RelocationBatchArg(RelocationBatchArgBase): """ __slots__ = [ - "_allow_shared_folder_value", - "_allow_ownership_transfer_value", + '_allow_shared_folder_value', + '_allow_ownership_transfer_value', ] _has_required_fields = True - def __init__( - self, - entries=None, - autorename=None, - allow_shared_folder=None, - allow_ownership_transfer=None, - ): - super(RelocationBatchArg, self).__init__(entries, autorename) + def __init__(self, + entries=None, + autorename=None, + allow_shared_folder=None, + allow_ownership_transfer=None): + super(RelocationBatchArg, self).__init__(entries, + autorename) self._allow_shared_folder_value = bb.NOT_SET self._allow_ownership_transfer_value = bb.NOT_SET if allow_shared_folder is not None: @@ -6602,14 +6270,10 @@ def __init__( allow_ownership_transfer = bb.Attribute("allow_ownership_transfer") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RelocationBatchArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(RelocationBatchArg, self)._process_custom_annotations(annotation_type, field_path, processor) RelocationBatchArg_validator = bv.Struct(RelocationBatchArg) - class RelocationError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -6650,7 +6314,7 @@ class RelocationError(bb.Union): :vartype RelocationError.cant_move_into_family: MoveIntoFamilyError """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition cant_copy_shared_folder = None # Attribute is overwritten below the class definition @@ -6681,7 +6345,7 @@ def from_lookup(cls, val): :param LookupError val: :rtype: RelocationError """ - return cls("from_lookup", val) + return cls('from_lookup', val) @classmethod def from_write(cls, val): @@ -6692,7 +6356,7 @@ def from_write(cls, val): :param WriteError val: :rtype: RelocationError """ - return cls("from_write", val) + return cls('from_write', val) @classmethod def to(cls, val): @@ -6703,7 +6367,7 @@ def to(cls, val): :param WriteError val: :rtype: RelocationError """ - return cls("to", val) + return cls('to', val) @classmethod def cant_move_into_vault(cls, val): @@ -6714,7 +6378,7 @@ def cant_move_into_vault(cls, val): :param MoveIntoVaultError val: :rtype: RelocationError """ - return cls("cant_move_into_vault", val) + return cls('cant_move_into_vault', val) @classmethod def cant_move_into_family(cls, val): @@ -6725,7 +6389,7 @@ def cant_move_into_family(cls, val): :param MoveIntoFamilyError val: :rtype: RelocationError """ - return cls("cant_move_into_family", val) + return cls('cant_move_into_family', val) def is_from_lookup(self): """ @@ -6733,7 +6397,7 @@ def is_from_lookup(self): :rtype: bool """ - return self._tag == "from_lookup" + return self._tag == 'from_lookup' def is_from_write(self): """ @@ -6741,7 +6405,7 @@ def is_from_write(self): :rtype: bool """ - return self._tag == "from_write" + return self._tag == 'from_write' def is_to(self): """ @@ -6749,7 +6413,7 @@ def is_to(self): :rtype: bool """ - return self._tag == "to" + return self._tag == 'to' def is_cant_copy_shared_folder(self): """ @@ -6757,7 +6421,7 @@ def is_cant_copy_shared_folder(self): :rtype: bool """ - return self._tag == "cant_copy_shared_folder" + return self._tag == 'cant_copy_shared_folder' def is_cant_nest_shared_folder(self): """ @@ -6765,7 +6429,7 @@ def is_cant_nest_shared_folder(self): :rtype: bool """ - return self._tag == "cant_nest_shared_folder" + return self._tag == 'cant_nest_shared_folder' def is_cant_move_folder_into_itself(self): """ @@ -6773,7 +6437,7 @@ def is_cant_move_folder_into_itself(self): :rtype: bool """ - return self._tag == "cant_move_folder_into_itself" + return self._tag == 'cant_move_folder_into_itself' def is_too_many_files(self): """ @@ -6781,7 +6445,7 @@ def is_too_many_files(self): :rtype: bool """ - return self._tag == "too_many_files" + return self._tag == 'too_many_files' def is_duplicated_or_nested_paths(self): """ @@ -6789,7 +6453,7 @@ def is_duplicated_or_nested_paths(self): :rtype: bool """ - return self._tag == "duplicated_or_nested_paths" + return self._tag == 'duplicated_or_nested_paths' def is_cant_transfer_ownership(self): """ @@ -6797,7 +6461,7 @@ def is_cant_transfer_ownership(self): :rtype: bool """ - return self._tag == "cant_transfer_ownership" + return self._tag == 'cant_transfer_ownership' def is_insufficient_quota(self): """ @@ -6805,7 +6469,7 @@ def is_insufficient_quota(self): :rtype: bool """ - return self._tag == "insufficient_quota" + return self._tag == 'insufficient_quota' def is_internal_error(self): """ @@ -6813,7 +6477,7 @@ def is_internal_error(self): :rtype: bool """ - return self._tag == "internal_error" + return self._tag == 'internal_error' def is_cant_move_shared_folder(self): """ @@ -6821,7 +6485,7 @@ def is_cant_move_shared_folder(self): :rtype: bool """ - return self._tag == "cant_move_shared_folder" + return self._tag == 'cant_move_shared_folder' def is_cant_move_into_vault(self): """ @@ -6829,7 +6493,7 @@ def is_cant_move_into_vault(self): :rtype: bool """ - return self._tag == "cant_move_into_vault" + return self._tag == 'cant_move_into_vault' def is_cant_move_into_family(self): """ @@ -6837,7 +6501,7 @@ def is_cant_move_into_family(self): :rtype: bool """ - return self._tag == "cant_move_into_family" + return self._tag == 'cant_move_into_family' def is_other(self): """ @@ -6845,7 +6509,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_from_lookup(self): """ @@ -6904,14 +6568,10 @@ def get_cant_move_into_family(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RelocationError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(RelocationError, self)._process_custom_annotations(annotation_type, field_path, processor) RelocationError_validator = bv.Union(RelocationError) - class RelocationBatchError(RelocationError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -6932,17 +6592,13 @@ def is_too_many_write_operations(self): :rtype: bool """ - return self._tag == "too_many_write_operations" + return self._tag == 'too_many_write_operations' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RelocationBatchError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(RelocationBatchError, self)._process_custom_annotations(annotation_type, field_path, processor) RelocationBatchError_validator = bv.Union(RelocationBatchError) - class RelocationBatchErrorEntry(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -6961,7 +6617,7 @@ class RelocationBatchErrorEntry(bb.Union): request. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition internal_error = None # Attribute is overwritten below the class definition @@ -6978,7 +6634,7 @@ def relocation_error(cls, val): :param RelocationError val: :rtype: RelocationBatchErrorEntry """ - return cls("relocation_error", val) + return cls('relocation_error', val) def is_relocation_error(self): """ @@ -6986,7 +6642,7 @@ def is_relocation_error(self): :rtype: bool """ - return self._tag == "relocation_error" + return self._tag == 'relocation_error' def is_internal_error(self): """ @@ -6994,7 +6650,7 @@ def is_internal_error(self): :rtype: bool """ - return self._tag == "internal_error" + return self._tag == 'internal_error' def is_too_many_write_operations(self): """ @@ -7002,7 +6658,7 @@ def is_too_many_write_operations(self): :rtype: bool """ - return self._tag == "too_many_write_operations" + return self._tag == 'too_many_write_operations' def is_other(self): """ @@ -7010,7 +6666,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_relocation_error(self): """ @@ -7025,14 +6681,10 @@ def get_relocation_error(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RelocationBatchErrorEntry, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(RelocationBatchErrorEntry, self)._process_custom_annotations(annotation_type, field_path, processor) RelocationBatchErrorEntry_validator = bv.Union(RelocationBatchErrorEntry) - class RelocationBatchJobStatus(async_.PollResultBase): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -7056,7 +6708,7 @@ def complete(cls, val): :param RelocationBatchResult val: :rtype: RelocationBatchJobStatus """ - return cls("complete", val) + return cls('complete', val) @classmethod def failed(cls, val): @@ -7067,7 +6719,7 @@ def failed(cls, val): :param RelocationBatchError val: :rtype: RelocationBatchJobStatus """ - return cls("failed", val) + return cls('failed', val) def is_complete(self): """ @@ -7075,7 +6727,7 @@ def is_complete(self): :rtype: bool """ - return self._tag == "complete" + return self._tag == 'complete' def is_failed(self): """ @@ -7083,7 +6735,7 @@ def is_failed(self): :rtype: bool """ - return self._tag == "failed" + return self._tag == 'failed' def get_complete(self): """ @@ -7110,14 +6762,10 @@ def get_failed(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RelocationBatchJobStatus, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(RelocationBatchJobStatus, self)._process_custom_annotations(annotation_type, field_path, processor) RelocationBatchJobStatus_validator = bv.Union(RelocationBatchJobStatus) - class RelocationBatchLaunch(async_.LaunchResultBase): """ Result returned by :meth:`dropbox.dropbox_client.Dropbox.files_copy_batch` @@ -7129,7 +6777,7 @@ class RelocationBatchLaunch(async_.LaunchResultBase): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -7142,7 +6790,7 @@ def complete(cls, val): :param RelocationBatchResult val: :rtype: RelocationBatchLaunch """ - return cls("complete", val) + return cls('complete', val) def is_complete(self): """ @@ -7150,7 +6798,7 @@ def is_complete(self): :rtype: bool """ - return self._tag == "complete" + return self._tag == 'complete' def is_other(self): """ @@ -7158,7 +6806,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_complete(self): """ @@ -7171,22 +6819,20 @@ def get_complete(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RelocationBatchLaunch, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(RelocationBatchLaunch, self)._process_custom_annotations(annotation_type, field_path, processor) RelocationBatchLaunch_validator = bv.Union(RelocationBatchLaunch) - class RelocationBatchResult(FileOpsResult): + __slots__ = [ - "_entries_value", + '_entries_value', ] _has_required_fields = True - def __init__(self, entries=None): + def __init__(self, + entries=None): super(RelocationBatchResult, self).__init__() self._entries_value = bb.NOT_SET if entries is not None: @@ -7196,14 +6842,10 @@ def __init__(self, entries=None): entries = bb.Attribute("entries") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RelocationBatchResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(RelocationBatchResult, self)._process_custom_annotations(annotation_type, field_path, processor) RelocationBatchResult_validator = bv.Struct(RelocationBatchResult) - class RelocationBatchResultData(bb.Struct): """ :ivar RelocationBatchResultData.metadata: @@ -7211,12 +6853,13 @@ class RelocationBatchResultData(bb.Struct): """ __slots__ = [ - "_metadata_value", + '_metadata_value', ] _has_required_fields = True - def __init__(self, metadata=None): + def __init__(self, + metadata=None): self._metadata_value = bb.NOT_SET if metadata is not None: self.metadata = metadata @@ -7225,14 +6868,10 @@ def __init__(self, metadata=None): metadata = bb.Attribute("metadata", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RelocationBatchResultData, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(RelocationBatchResultData, self)._process_custom_annotations(annotation_type, field_path, processor) RelocationBatchResultData_validator = bv.Struct(RelocationBatchResultData) - class RelocationBatchResultEntry(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -7240,7 +6879,7 @@ class RelocationBatchResultEntry(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -7253,7 +6892,7 @@ def success(cls, val): :param Metadata val: :rtype: RelocationBatchResultEntry """ - return cls("success", val) + return cls('success', val) @classmethod def failure(cls, val): @@ -7264,7 +6903,7 @@ def failure(cls, val): :param RelocationBatchErrorEntry val: :rtype: RelocationBatchResultEntry """ - return cls("failure", val) + return cls('failure', val) def is_success(self): """ @@ -7272,7 +6911,7 @@ def is_success(self): :rtype: bool """ - return self._tag == "success" + return self._tag == 'success' def is_failure(self): """ @@ -7280,7 +6919,7 @@ def is_failure(self): :rtype: bool """ - return self._tag == "failure" + return self._tag == 'failure' def is_other(self): """ @@ -7288,7 +6927,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_success(self): """ @@ -7311,14 +6950,10 @@ def get_failure(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RelocationBatchResultEntry, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(RelocationBatchResultEntry, self)._process_custom_annotations(annotation_type, field_path, processor) RelocationBatchResultEntry_validator = bv.Union(RelocationBatchResultEntry) - class RelocationBatchV2JobStatus(async_.PollResultBase): """ Result returned by @@ -7344,7 +6979,7 @@ def complete(cls, val): :param RelocationBatchV2Result val: :rtype: RelocationBatchV2JobStatus """ - return cls("complete", val) + return cls('complete', val) def is_complete(self): """ @@ -7352,7 +6987,7 @@ def is_complete(self): :rtype: bool """ - return self._tag == "complete" + return self._tag == 'complete' def get_complete(self): """ @@ -7367,14 +7002,10 @@ def get_complete(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RelocationBatchV2JobStatus, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(RelocationBatchV2JobStatus, self)._process_custom_annotations(annotation_type, field_path, processor) RelocationBatchV2JobStatus_validator = bv.Union(RelocationBatchV2JobStatus) - class RelocationBatchV2Launch(async_.LaunchResultBase): """ Result returned by :meth:`dropbox.dropbox_client.Dropbox.files_copy_batch` @@ -7395,7 +7026,7 @@ def complete(cls, val): :param RelocationBatchV2Result val: :rtype: RelocationBatchV2Launch """ - return cls("complete", val) + return cls('complete', val) def is_complete(self): """ @@ -7403,7 +7034,7 @@ def is_complete(self): :rtype: bool """ - return self._tag == "complete" + return self._tag == 'complete' def get_complete(self): """ @@ -7416,14 +7047,10 @@ def get_complete(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RelocationBatchV2Launch, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(RelocationBatchV2Launch, self)._process_custom_annotations(annotation_type, field_path, processor) RelocationBatchV2Launch_validator = bv.Union(RelocationBatchV2Launch) - class RelocationBatchV2Result(FileOpsResult): """ :ivar RelocationBatchV2Result.entries: @@ -7432,12 +7059,13 @@ class RelocationBatchV2Result(FileOpsResult): """ __slots__ = [ - "_entries_value", + '_entries_value', ] _has_required_fields = True - def __init__(self, entries=None): + def __init__(self, + entries=None): super(RelocationBatchV2Result, self).__init__() self._entries_value = bb.NOT_SET if entries is not None: @@ -7447,14 +7075,10 @@ def __init__(self, entries=None): entries = bb.Attribute("entries") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RelocationBatchV2Result, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(RelocationBatchV2Result, self)._process_custom_annotations(annotation_type, field_path, processor) RelocationBatchV2Result_validator = bv.Struct(RelocationBatchV2Result) - class RelocationResult(FileOpsResult): """ :ivar RelocationResult.metadata: @@ -7462,12 +7086,13 @@ class RelocationResult(FileOpsResult): """ __slots__ = [ - "_metadata_value", + '_metadata_value', ] _has_required_fields = True - def __init__(self, metadata=None): + def __init__(self, + metadata=None): super(RelocationResult, self).__init__() self._metadata_value = bb.NOT_SET if metadata is not None: @@ -7477,14 +7102,10 @@ def __init__(self, metadata=None): metadata = bb.Attribute("metadata", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RelocationResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(RelocationResult, self)._process_custom_annotations(annotation_type, field_path, processor) RelocationResult_validator = bv.Struct(RelocationResult) - class RemoveTagArg(bb.Struct): """ :ivar RemoveTagArg.path: @@ -7494,13 +7115,15 @@ class RemoveTagArg(bb.Struct): """ __slots__ = [ - "_path_value", - "_tag_text_value", + '_path_value', + '_tag_text_value', ] _has_required_fields = True - def __init__(self, path=None, tag_text=None): + def __init__(self, + path=None, + tag_text=None): self._path_value = bb.NOT_SET self._tag_text_value = bb.NOT_SET if path is not None: @@ -7515,14 +7138,10 @@ def __init__(self, path=None, tag_text=None): tag_text = bb.Attribute("tag_text") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RemoveTagArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(RemoveTagArg, self)._process_custom_annotations(annotation_type, field_path, processor) RemoveTagArg_validator = bv.Struct(RemoveTagArg) - class RemoveTagError(BaseTagError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -7542,17 +7161,13 @@ def is_tag_not_present(self): :rtype: bool """ - return self._tag == "tag_not_present" + return self._tag == 'tag_not_present' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RemoveTagError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(RemoveTagError, self)._process_custom_annotations(annotation_type, field_path, processor) RemoveTagError_validator = bv.Union(RemoveTagError) - class RestoreArg(bb.Struct): """ :ivar RestoreArg.path: @@ -7562,13 +7177,15 @@ class RestoreArg(bb.Struct): """ __slots__ = [ - "_path_value", - "_rev_value", + '_path_value', + '_rev_value', ] _has_required_fields = True - def __init__(self, path=None, rev=None): + def __init__(self, + path=None, + rev=None): self._path_value = bb.NOT_SET self._rev_value = bb.NOT_SET if path is not None: @@ -7585,10 +7202,8 @@ def __init__(self, path=None, rev=None): def _process_custom_annotations(self, annotation_type, field_path, processor): super(RestoreArg, self)._process_custom_annotations(annotation_type, field_path, processor) - RestoreArg_validator = bv.Struct(RestoreArg) - class RestoreError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -7608,7 +7223,7 @@ class RestoreError(bb.Union): The restore is currently executing, but has not yet completed. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition invalid_revision = None # Attribute is overwritten below the class definition @@ -7625,7 +7240,7 @@ def path_lookup(cls, val): :param LookupError val: :rtype: RestoreError """ - return cls("path_lookup", val) + return cls('path_lookup', val) @classmethod def path_write(cls, val): @@ -7636,7 +7251,7 @@ def path_write(cls, val): :param WriteError val: :rtype: RestoreError """ - return cls("path_write", val) + return cls('path_write', val) def is_path_lookup(self): """ @@ -7644,7 +7259,7 @@ def is_path_lookup(self): :rtype: bool """ - return self._tag == "path_lookup" + return self._tag == 'path_lookup' def is_path_write(self): """ @@ -7652,7 +7267,7 @@ def is_path_write(self): :rtype: bool """ - return self._tag == "path_write" + return self._tag == 'path_write' def is_invalid_revision(self): """ @@ -7660,7 +7275,7 @@ def is_invalid_revision(self): :rtype: bool """ - return self._tag == "invalid_revision" + return self._tag == 'invalid_revision' def is_in_progress(self): """ @@ -7668,7 +7283,7 @@ def is_in_progress(self): :rtype: bool """ - return self._tag == "in_progress" + return self._tag == 'in_progress' def is_other(self): """ @@ -7676,7 +7291,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_path_lookup(self): """ @@ -7703,14 +7318,10 @@ def get_path_write(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RestoreError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(RestoreError, self)._process_custom_annotations(annotation_type, field_path, processor) RestoreError_validator = bv.Union(RestoreError) - class SaveCopyReferenceArg(bb.Struct): """ :ivar SaveCopyReferenceArg.copy_reference: @@ -7721,13 +7332,15 @@ class SaveCopyReferenceArg(bb.Struct): """ __slots__ = [ - "_copy_reference_value", - "_path_value", + '_copy_reference_value', + '_path_value', ] _has_required_fields = True - def __init__(self, copy_reference=None, path=None): + def __init__(self, + copy_reference=None, + path=None): self._copy_reference_value = bb.NOT_SET self._path_value = bb.NOT_SET if copy_reference is not None: @@ -7742,14 +7355,10 @@ def __init__(self, copy_reference=None, path=None): path = bb.Attribute("path") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SaveCopyReferenceArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SaveCopyReferenceArg, self)._process_custom_annotations(annotation_type, field_path, processor) SaveCopyReferenceArg_validator = bv.Struct(SaveCopyReferenceArg) - class SaveCopyReferenceError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -7768,7 +7377,7 @@ class SaveCopyReferenceError(bb.Union): The operation would involve more than 10,000 files and folders. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition invalid_copy_reference = None # Attribute is overwritten below the class definition @@ -7789,7 +7398,7 @@ def path(cls, val): :param WriteError val: :rtype: SaveCopyReferenceError """ - return cls("path", val) + return cls('path', val) def is_path(self): """ @@ -7797,7 +7406,7 @@ def is_path(self): :rtype: bool """ - return self._tag == "path" + return self._tag == 'path' def is_invalid_copy_reference(self): """ @@ -7805,7 +7414,7 @@ def is_invalid_copy_reference(self): :rtype: bool """ - return self._tag == "invalid_copy_reference" + return self._tag == 'invalid_copy_reference' def is_no_permission(self): """ @@ -7813,7 +7422,7 @@ def is_no_permission(self): :rtype: bool """ - return self._tag == "no_permission" + return self._tag == 'no_permission' def is_not_found(self): """ @@ -7821,7 +7430,7 @@ def is_not_found(self): :rtype: bool """ - return self._tag == "not_found" + return self._tag == 'not_found' def is_too_many_files(self): """ @@ -7829,7 +7438,7 @@ def is_too_many_files(self): :rtype: bool """ - return self._tag == "too_many_files" + return self._tag == 'too_many_files' def is_other(self): """ @@ -7837,7 +7446,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_path(self): """ @@ -7850,14 +7459,10 @@ def get_path(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SaveCopyReferenceError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SaveCopyReferenceError, self)._process_custom_annotations(annotation_type, field_path, processor) SaveCopyReferenceError_validator = bv.Union(SaveCopyReferenceError) - class SaveCopyReferenceResult(bb.Struct): """ :ivar SaveCopyReferenceResult.metadata: @@ -7865,12 +7470,13 @@ class SaveCopyReferenceResult(bb.Struct): """ __slots__ = [ - "_metadata_value", + '_metadata_value', ] _has_required_fields = True - def __init__(self, metadata=None): + def __init__(self, + metadata=None): self._metadata_value = bb.NOT_SET if metadata is not None: self.metadata = metadata @@ -7879,14 +7485,10 @@ def __init__(self, metadata=None): metadata = bb.Attribute("metadata", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SaveCopyReferenceResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SaveCopyReferenceResult, self)._process_custom_annotations(annotation_type, field_path, processor) SaveCopyReferenceResult_validator = bv.Struct(SaveCopyReferenceResult) - class SaveUrlArg(bb.Struct): """ :ivar SaveUrlArg.path: @@ -7896,13 +7498,15 @@ class SaveUrlArg(bb.Struct): """ __slots__ = [ - "_path_value", - "_url_value", + '_path_value', + '_url_value', ] _has_required_fields = True - def __init__(self, path=None, url=None): + def __init__(self, + path=None, + url=None): self._path_value = bb.NOT_SET self._url_value = bb.NOT_SET if path is not None: @@ -7919,10 +7523,8 @@ def __init__(self, path=None, url=None): def _process_custom_annotations(self, annotation_type, field_path, processor): super(SaveUrlArg, self)._process_custom_annotations(annotation_type, field_path, processor) - SaveUrlArg_validator = bv.Struct(SaveUrlArg) - class SaveUrlError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -7938,7 +7540,7 @@ class SaveUrlError(bb.Union): The file where the URL is saved to no longer exists. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition download_failed = None # Attribute is overwritten below the class definition @@ -7957,7 +7559,7 @@ def path(cls, val): :param WriteError val: :rtype: SaveUrlError """ - return cls("path", val) + return cls('path', val) def is_path(self): """ @@ -7965,7 +7567,7 @@ def is_path(self): :rtype: bool """ - return self._tag == "path" + return self._tag == 'path' def is_download_failed(self): """ @@ -7973,7 +7575,7 @@ def is_download_failed(self): :rtype: bool """ - return self._tag == "download_failed" + return self._tag == 'download_failed' def is_invalid_url(self): """ @@ -7981,7 +7583,7 @@ def is_invalid_url(self): :rtype: bool """ - return self._tag == "invalid_url" + return self._tag == 'invalid_url' def is_not_found(self): """ @@ -7989,7 +7591,7 @@ def is_not_found(self): :rtype: bool """ - return self._tag == "not_found" + return self._tag == 'not_found' def is_other(self): """ @@ -7997,7 +7599,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_path(self): """ @@ -8010,14 +7612,10 @@ def get_path(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SaveUrlError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SaveUrlError, self)._process_custom_annotations(annotation_type, field_path, processor) SaveUrlError_validator = bv.Union(SaveUrlError) - class SaveUrlJobStatus(async_.PollResultBase): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -8038,7 +7636,7 @@ def complete(cls, val): :param FileMetadata val: :rtype: SaveUrlJobStatus """ - return cls("complete", val) + return cls('complete', val) @classmethod def failed(cls, val): @@ -8049,7 +7647,7 @@ def failed(cls, val): :param SaveUrlError val: :rtype: SaveUrlJobStatus """ - return cls("failed", val) + return cls('failed', val) def is_complete(self): """ @@ -8057,7 +7655,7 @@ def is_complete(self): :rtype: bool """ - return self._tag == "complete" + return self._tag == 'complete' def is_failed(self): """ @@ -8065,7 +7663,7 @@ def is_failed(self): :rtype: bool """ - return self._tag == "failed" + return self._tag == 'failed' def get_complete(self): """ @@ -8090,14 +7688,10 @@ def get_failed(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SaveUrlJobStatus, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SaveUrlJobStatus, self)._process_custom_annotations(annotation_type, field_path, processor) SaveUrlJobStatus_validator = bv.Union(SaveUrlJobStatus) - class SaveUrlResult(async_.LaunchResultBase): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -8118,7 +7712,7 @@ def complete(cls, val): :param FileMetadata val: :rtype: SaveUrlResult """ - return cls("complete", val) + return cls('complete', val) def is_complete(self): """ @@ -8126,7 +7720,7 @@ def is_complete(self): :rtype: bool """ - return self._tag == "complete" + return self._tag == 'complete' def get_complete(self): """ @@ -8141,14 +7735,10 @@ def get_complete(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SaveUrlResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SaveUrlResult, self)._process_custom_annotations(annotation_type, field_path, processor) SaveUrlResult_validator = bv.Union(SaveUrlResult) - class SearchArg(bb.Struct): """ :ivar SearchArg.path: @@ -8169,16 +7759,21 @@ class SearchArg(bb.Struct): """ __slots__ = [ - "_path_value", - "_query_value", - "_start_value", - "_max_results_value", - "_mode_value", + '_path_value', + '_query_value', + '_start_value', + '_max_results_value', + '_mode_value', ] _has_required_fields = True - def __init__(self, path=None, query=None, start=None, max_results=None, mode=None): + def __init__(self, + path=None, + query=None, + start=None, + max_results=None, + mode=None): self._path_value = bb.NOT_SET self._query_value = bb.NOT_SET self._start_value = bb.NOT_SET @@ -8213,10 +7808,8 @@ def __init__(self, path=None, query=None, start=None, max_results=None, mode=Non def _process_custom_annotations(self, annotation_type, field_path, processor): super(SearchArg, self)._process_custom_annotations(annotation_type, field_path, processor) - SearchArg_validator = bv.Struct(SearchArg) - class SearchError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -8227,7 +7820,7 @@ class SearchError(bb.Union): Something went wrong, please try again. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition internal_error = None # Attribute is overwritten below the class definition @@ -8242,7 +7835,7 @@ def path(cls, val): :param LookupError val: :rtype: SearchError """ - return cls("path", val) + return cls('path', val) @classmethod def invalid_argument(cls, val): @@ -8253,7 +7846,7 @@ def invalid_argument(cls, val): :param str val: :rtype: SearchError """ - return cls("invalid_argument", val) + return cls('invalid_argument', val) def is_path(self): """ @@ -8261,7 +7854,7 @@ def is_path(self): :rtype: bool """ - return self._tag == "path" + return self._tag == 'path' def is_invalid_argument(self): """ @@ -8269,7 +7862,7 @@ def is_invalid_argument(self): :rtype: bool """ - return self._tag == "invalid_argument" + return self._tag == 'invalid_argument' def is_internal_error(self): """ @@ -8277,7 +7870,7 @@ def is_internal_error(self): :rtype: bool """ - return self._tag == "internal_error" + return self._tag == 'internal_error' def is_other(self): """ @@ -8285,7 +7878,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_path(self): """ @@ -8310,10 +7903,8 @@ def get_invalid_argument(self): def _process_custom_annotations(self, annotation_type, field_path, processor): super(SearchError, self)._process_custom_annotations(annotation_type, field_path, processor) - SearchError_validator = bv.Union(SearchError) - class SearchMatch(bb.Struct): """ :ivar SearchMatch.match_type: @@ -8323,13 +7914,15 @@ class SearchMatch(bb.Struct): """ __slots__ = [ - "_match_type_value", - "_metadata_value", + '_match_type_value', + '_metadata_value', ] _has_required_fields = True - def __init__(self, match_type=None, metadata=None): + def __init__(self, + match_type=None, + metadata=None): self._match_type_value = bb.NOT_SET self._metadata_value = bb.NOT_SET if match_type is not None: @@ -8346,10 +7939,8 @@ def __init__(self, match_type=None, metadata=None): def _process_custom_annotations(self, annotation_type, field_path, processor): super(SearchMatch, self)._process_custom_annotations(annotation_type, field_path, processor) - SearchMatch_validator = bv.Struct(SearchMatch) - class SearchMatchFieldOptions(bb.Struct): """ :ivar SearchMatchFieldOptions.include_highlights: @@ -8357,12 +7948,13 @@ class SearchMatchFieldOptions(bb.Struct): """ __slots__ = [ - "_include_highlights_value", + '_include_highlights_value', ] _has_required_fields = False - def __init__(self, include_highlights=None): + def __init__(self, + include_highlights=None): self._include_highlights_value = bb.NOT_SET if include_highlights is not None: self.include_highlights = include_highlights @@ -8371,14 +7963,10 @@ def __init__(self, include_highlights=None): include_highlights = bb.Attribute("include_highlights") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SearchMatchFieldOptions, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SearchMatchFieldOptions, self)._process_custom_annotations(annotation_type, field_path, processor) SearchMatchFieldOptions_validator = bv.Struct(SearchMatchFieldOptions) - class SearchMatchType(bb.Union): """ Indicates what type of match was found for a given item. @@ -8409,7 +7997,7 @@ def is_filename(self): :rtype: bool """ - return self._tag == "filename" + return self._tag == 'filename' def is_content(self): """ @@ -8417,7 +8005,7 @@ def is_content(self): :rtype: bool """ - return self._tag == "content" + return self._tag == 'content' def is_both(self): """ @@ -8425,17 +8013,13 @@ def is_both(self): :rtype: bool """ - return self._tag == "both" + return self._tag == 'both' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SearchMatchType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SearchMatchType, self)._process_custom_annotations(annotation_type, field_path, processor) SearchMatchType_validator = bv.Union(SearchMatchType) - class SearchMatchTypeV2(bb.Union): """ Indicates what type of match was found for a given item. @@ -8456,7 +8040,7 @@ class SearchMatchTypeV2(bb.Union): This item was matched based on its metadata. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition filename = None # Attribute is overwritten below the class definition @@ -8476,7 +8060,7 @@ def is_filename(self): :rtype: bool """ - return self._tag == "filename" + return self._tag == 'filename' def is_file_content(self): """ @@ -8484,7 +8068,7 @@ def is_file_content(self): :rtype: bool """ - return self._tag == "file_content" + return self._tag == 'file_content' def is_filename_and_content(self): """ @@ -8492,7 +8076,7 @@ def is_filename_and_content(self): :rtype: bool """ - return self._tag == "filename_and_content" + return self._tag == 'filename_and_content' def is_image_content(self): """ @@ -8500,7 +8084,7 @@ def is_image_content(self): :rtype: bool """ - return self._tag == "image_content" + return self._tag == 'image_content' def is_metadata(self): """ @@ -8508,7 +8092,7 @@ def is_metadata(self): :rtype: bool """ - return self._tag == "metadata" + return self._tag == 'metadata' def is_other(self): """ @@ -8516,17 +8100,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SearchMatchTypeV2, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SearchMatchTypeV2, self)._process_custom_annotations(annotation_type, field_path, processor) SearchMatchTypeV2_validator = bv.Union(SearchMatchTypeV2) - class SearchMatchV2(bb.Struct): """ :ivar SearchMatchV2.metadata: @@ -8539,14 +8119,17 @@ class SearchMatchV2(bb.Struct): """ __slots__ = [ - "_metadata_value", - "_match_type_value", - "_highlight_spans_value", + '_metadata_value', + '_match_type_value', + '_highlight_spans_value', ] _has_required_fields = True - def __init__(self, metadata=None, match_type=None, highlight_spans=None): + def __init__(self, + metadata=None, + match_type=None, + highlight_spans=None): self._metadata_value = bb.NOT_SET self._match_type_value = bb.NOT_SET self._highlight_spans_value = bb.NOT_SET @@ -8567,14 +8150,10 @@ def __init__(self, metadata=None, match_type=None, highlight_spans=None): highlight_spans = bb.Attribute("highlight_spans", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SearchMatchV2, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SearchMatchV2, self)._process_custom_annotations(annotation_type, field_path, processor) SearchMatchV2_validator = bv.Struct(SearchMatchV2) - class SearchMode(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -8603,7 +8182,7 @@ def is_filename(self): :rtype: bool """ - return self._tag == "filename" + return self._tag == 'filename' def is_filename_and_content(self): """ @@ -8611,7 +8190,7 @@ def is_filename_and_content(self): :rtype: bool """ - return self._tag == "filename_and_content" + return self._tag == 'filename_and_content' def is_deleted_filename(self): """ @@ -8619,15 +8198,13 @@ def is_deleted_filename(self): :rtype: bool """ - return self._tag == "deleted_filename" + return self._tag == 'deleted_filename' def _process_custom_annotations(self, annotation_type, field_path, processor): super(SearchMode, self)._process_custom_annotations(annotation_type, field_path, processor) - SearchMode_validator = bv.Union(SearchMode) - class SearchOptions(bb.Struct): """ :ivar SearchOptions.path: @@ -8653,29 +8230,27 @@ class SearchOptions(bb.Struct): """ __slots__ = [ - "_path_value", - "_max_results_value", - "_order_by_value", - "_file_status_value", - "_filename_only_value", - "_file_extensions_value", - "_file_categories_value", - "_account_id_value", + '_path_value', + '_max_results_value', + '_order_by_value', + '_file_status_value', + '_filename_only_value', + '_file_extensions_value', + '_file_categories_value', + '_account_id_value', ] _has_required_fields = False - def __init__( - self, - path=None, - max_results=None, - order_by=None, - file_status=None, - filename_only=None, - file_extensions=None, - file_categories=None, - account_id=None, - ): + def __init__(self, + path=None, + max_results=None, + order_by=None, + file_status=None, + filename_only=None, + file_extensions=None, + file_categories=None, + account_id=None): self._path_value = bb.NOT_SET self._max_results_value = bb.NOT_SET self._order_by_value = bb.NOT_SET @@ -8726,14 +8301,10 @@ def __init__( account_id = bb.Attribute("account_id", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SearchOptions, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SearchOptions, self)._process_custom_annotations(annotation_type, field_path, processor) SearchOptions_validator = bv.Struct(SearchOptions) - class SearchOrderBy(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -8741,7 +8312,7 @@ class SearchOrderBy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition relevance = None # Attribute is overwritten below the class definition @@ -8755,7 +8326,7 @@ def is_relevance(self): :rtype: bool """ - return self._tag == "relevance" + return self._tag == 'relevance' def is_last_modified_time(self): """ @@ -8763,7 +8334,7 @@ def is_last_modified_time(self): :rtype: bool """ - return self._tag == "last_modified_time" + return self._tag == 'last_modified_time' def is_other(self): """ @@ -8771,17 +8342,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SearchOrderBy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SearchOrderBy, self)._process_custom_annotations(annotation_type, field_path, processor) SearchOrderBy_validator = bv.Union(SearchOrderBy) - class SearchResult(bb.Struct): """ :ivar SearchResult.matches: @@ -8797,14 +8364,17 @@ class SearchResult(bb.Struct): """ __slots__ = [ - "_matches_value", - "_more_value", - "_start_value", + '_matches_value', + '_more_value', + '_start_value', ] _has_required_fields = True - def __init__(self, matches=None, more=None, start=None): + def __init__(self, + matches=None, + more=None, + start=None): self._matches_value = bb.NOT_SET self._more_value = bb.NOT_SET self._start_value = bb.NOT_SET @@ -8825,14 +8395,10 @@ def __init__(self, matches=None, more=None, start=None): start = bb.Attribute("start") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SearchResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SearchResult, self)._process_custom_annotations(annotation_type, field_path, processor) SearchResult_validator = bv.Struct(SearchResult) - class SearchV2Arg(bb.Struct): """ :ivar SearchV2Arg.query: @@ -8848,21 +8414,19 @@ class SearchV2Arg(bb.Struct): """ __slots__ = [ - "_query_value", - "_options_value", - "_match_field_options_value", - "_include_highlights_value", + '_query_value', + '_options_value', + '_match_field_options_value', + '_include_highlights_value', ] _has_required_fields = True - def __init__( - self, - query=None, - options=None, - match_field_options=None, - include_highlights=None, - ): + def __init__(self, + query=None, + options=None, + match_field_options=None, + include_highlights=None): self._query_value = bb.NOT_SET self._options_value = bb.NOT_SET self._match_field_options_value = bb.NOT_SET @@ -8891,10 +8455,8 @@ def __init__( def _process_custom_annotations(self, annotation_type, field_path, processor): super(SearchV2Arg, self)._process_custom_annotations(annotation_type, field_path, processor) - SearchV2Arg_validator = bv.Struct(SearchV2Arg) - class SearchV2ContinueArg(bb.Struct): """ :ivar SearchV2ContinueArg.cursor: @@ -8904,12 +8466,13 @@ class SearchV2ContinueArg(bb.Struct): """ __slots__ = [ - "_cursor_value", + '_cursor_value', ] _has_required_fields = True - def __init__(self, cursor=None): + def __init__(self, + cursor=None): self._cursor_value = bb.NOT_SET if cursor is not None: self.cursor = cursor @@ -8918,14 +8481,10 @@ def __init__(self, cursor=None): cursor = bb.Attribute("cursor") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SearchV2ContinueArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SearchV2ContinueArg, self)._process_custom_annotations(annotation_type, field_path, processor) SearchV2ContinueArg_validator = bv.Struct(SearchV2ContinueArg) - class SearchV2Result(bb.Struct): """ :ivar SearchV2Result.matches: @@ -8942,14 +8501,17 @@ class SearchV2Result(bb.Struct): """ __slots__ = [ - "_matches_value", - "_has_more_value", - "_cursor_value", + '_matches_value', + '_has_more_value', + '_cursor_value', ] _has_required_fields = True - def __init__(self, matches=None, has_more=None, cursor=None): + def __init__(self, + matches=None, + has_more=None, + cursor=None): self._matches_value = bb.NOT_SET self._has_more_value = bb.NOT_SET self._cursor_value = bb.NOT_SET @@ -8970,14 +8532,10 @@ def __init__(self, matches=None, has_more=None, cursor=None): cursor = bb.Attribute("cursor", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SearchV2Result, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SearchV2Result, self)._process_custom_annotations(annotation_type, field_path, processor) SearchV2Result_validator = bv.Struct(SearchV2Result) - class SharedLink(bb.Struct): """ :ivar SharedLink.url: @@ -8987,13 +8545,15 @@ class SharedLink(bb.Struct): """ __slots__ = [ - "_url_value", - "_password_value", + '_url_value', + '_password_value', ] _has_required_fields = True - def __init__(self, url=None, password=None): + def __init__(self, + url=None, + password=None): self._url_value = bb.NOT_SET self._password_value = bb.NOT_SET if url is not None: @@ -9010,10 +8570,8 @@ def __init__(self, url=None, password=None): def _process_custom_annotations(self, annotation_type, field_path, processor): super(SharedLink, self)._process_custom_annotations(annotation_type, field_path, processor) - SharedLink_validator = bv.Struct(SharedLink) - class SharedLinkFileInfo(bb.Struct): """ :ivar SharedLinkFileInfo.url: @@ -9029,14 +8587,17 @@ class SharedLinkFileInfo(bb.Struct): """ __slots__ = [ - "_url_value", - "_path_value", - "_password_value", + '_url_value', + '_path_value', + '_password_value', ] _has_required_fields = True - def __init__(self, url=None, path=None, password=None): + def __init__(self, + url=None, + path=None, + password=None): self._url_value = bb.NOT_SET self._path_value = bb.NOT_SET self._password_value = bb.NOT_SET @@ -9057,14 +8618,10 @@ def __init__(self, url=None, path=None, password=None): password = bb.Attribute("password", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkFileInfo, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedLinkFileInfo, self)._process_custom_annotations(annotation_type, field_path, processor) SharedLinkFileInfo_validator = bv.Struct(SharedLinkFileInfo) - class SingleUserLock(bb.Struct): """ :ivar SingleUserLock.created: @@ -9076,14 +8633,17 @@ class SingleUserLock(bb.Struct): """ __slots__ = [ - "_created_value", - "_lock_holder_account_id_value", - "_lock_holder_team_id_value", + '_created_value', + '_lock_holder_account_id_value', + '_lock_holder_team_id_value', ] _has_required_fields = True - def __init__(self, created=None, lock_holder_account_id=None, lock_holder_team_id=None): + def __init__(self, + created=None, + lock_holder_account_id=None, + lock_holder_team_id=None): self._created_value = bb.NOT_SET self._lock_holder_account_id_value = bb.NOT_SET self._lock_holder_team_id_value = bb.NOT_SET @@ -9104,14 +8664,10 @@ def __init__(self, created=None, lock_holder_account_id=None, lock_holder_team_i lock_holder_team_id = bb.Attribute("lock_holder_team_id", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SingleUserLock, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SingleUserLock, self)._process_custom_annotations(annotation_type, field_path, processor) SingleUserLock_validator = bv.Struct(SingleUserLock) - class SymlinkInfo(bb.Struct): """ :ivar SymlinkInfo.target: @@ -9119,12 +8675,13 @@ class SymlinkInfo(bb.Struct): """ __slots__ = [ - "_target_value", + '_target_value', ] _has_required_fields = True - def __init__(self, target=None): + def __init__(self, + target=None): self._target_value = bb.NOT_SET if target is not None: self.target = target @@ -9135,10 +8692,8 @@ def __init__(self, target=None): def _process_custom_annotations(self, annotation_type, field_path, processor): super(SymlinkInfo, self)._process_custom_annotations(annotation_type, field_path, processor) - SymlinkInfo_validator = bv.Struct(SymlinkInfo) - class SyncSetting(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -9157,7 +8712,7 @@ class SyncSetting(bb.Union): folder's setting. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition default = None # Attribute is overwritten below the class definition @@ -9173,7 +8728,7 @@ def is_default(self): :rtype: bool """ - return self._tag == "default" + return self._tag == 'default' def is_not_synced(self): """ @@ -9181,7 +8736,7 @@ def is_not_synced(self): :rtype: bool """ - return self._tag == "not_synced" + return self._tag == 'not_synced' def is_not_synced_inactive(self): """ @@ -9189,7 +8744,7 @@ def is_not_synced_inactive(self): :rtype: bool """ - return self._tag == "not_synced_inactive" + return self._tag == 'not_synced_inactive' def is_other(self): """ @@ -9197,15 +8752,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): super(SyncSetting, self)._process_custom_annotations(annotation_type, field_path, processor) - SyncSetting_validator = bv.Union(SyncSetting) - class SyncSettingArg(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -9220,7 +8773,7 @@ class SyncSettingArg(bb.Union): not sync with selective sync. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition default = None # Attribute is overwritten below the class definition @@ -9234,7 +8787,7 @@ def is_default(self): :rtype: bool """ - return self._tag == "default" + return self._tag == 'default' def is_not_synced(self): """ @@ -9242,7 +8795,7 @@ def is_not_synced(self): :rtype: bool """ - return self._tag == "not_synced" + return self._tag == 'not_synced' def is_other(self): """ @@ -9250,17 +8803,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SyncSettingArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SyncSettingArg, self)._process_custom_annotations(annotation_type, field_path, processor) SyncSettingArg_validator = bv.Union(SyncSettingArg) - class SyncSettingsError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -9274,7 +8823,7 @@ class SyncSettingsError(bb.Union): The specified configuration is not supported. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition unsupported_combination = None # Attribute is overwritten below the class definition @@ -9291,7 +8840,7 @@ def path(cls, val): :param LookupError val: :rtype: SyncSettingsError """ - return cls("path", val) + return cls('path', val) def is_path(self): """ @@ -9299,7 +8848,7 @@ def is_path(self): :rtype: bool """ - return self._tag == "path" + return self._tag == 'path' def is_unsupported_combination(self): """ @@ -9307,7 +8856,7 @@ def is_unsupported_combination(self): :rtype: bool """ - return self._tag == "unsupported_combination" + return self._tag == 'unsupported_combination' def is_unsupported_configuration(self): """ @@ -9315,7 +8864,7 @@ def is_unsupported_configuration(self): :rtype: bool """ - return self._tag == "unsupported_configuration" + return self._tag == 'unsupported_configuration' def is_other(self): """ @@ -9323,7 +8872,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_path(self): """ @@ -9336,14 +8885,10 @@ def get_path(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SyncSettingsError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SyncSettingsError, self)._process_custom_annotations(annotation_type, field_path, processor) SyncSettingsError_validator = bv.Union(SyncSettingsError) - class Tag(bb.Union): """ Tag that can be added in multiple ways. @@ -9357,7 +8902,7 @@ class Tag(bb.Union): :vartype Tag.user_generated_tag: UserGeneratedTag """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -9370,7 +8915,7 @@ def user_generated_tag(cls, val): :param UserGeneratedTag val: :rtype: Tag """ - return cls("user_generated_tag", val) + return cls('user_generated_tag', val) def is_user_generated_tag(self): """ @@ -9378,7 +8923,7 @@ def is_user_generated_tag(self): :rtype: bool """ - return self._tag == "user_generated_tag" + return self._tag == 'user_generated_tag' def is_other(self): """ @@ -9386,7 +8931,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_user_generated_tag(self): """ @@ -9403,10 +8948,8 @@ def get_user_generated_tag(self): def _process_custom_annotations(self, annotation_type, field_path, processor): super(Tag, self)._process_custom_annotations(annotation_type, field_path, processor) - Tag_validator = bv.Union(Tag) - class ThumbnailArg(bb.Struct): """ :ivar ThumbnailArg.path: @@ -9429,25 +8972,23 @@ class ThumbnailArg(bb.Struct): """ __slots__ = [ - "_path_value", - "_format_value", - "_size_value", - "_mode_value", - "_quality_value", - "_exclude_media_info_value", + '_path_value', + '_format_value', + '_size_value', + '_mode_value', + '_quality_value', + '_exclude_media_info_value', ] _has_required_fields = True - def __init__( - self, - path=None, - format=None, - size=None, - mode=None, - quality=None, - exclude_media_info=None, - ): + def __init__(self, + path=None, + format=None, + size=None, + mode=None, + quality=None, + exclude_media_info=None): self._path_value = bb.NOT_SET self._format_value = bb.NOT_SET self._size_value = bb.NOT_SET @@ -9486,14 +9027,10 @@ def __init__( exclude_media_info = bb.Attribute("exclude_media_info", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ThumbnailArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ThumbnailArg, self)._process_custom_annotations(annotation_type, field_path, processor) ThumbnailArg_validator = bv.Struct(ThumbnailArg) - class ThumbnailError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -9532,7 +9069,7 @@ def path(cls, val): :param LookupError val: :rtype: ThumbnailError """ - return cls("path", val) + return cls('path', val) def is_path(self): """ @@ -9540,7 +9077,7 @@ def is_path(self): :rtype: bool """ - return self._tag == "path" + return self._tag == 'path' def is_unsupported_extension(self): """ @@ -9548,7 +9085,7 @@ def is_unsupported_extension(self): :rtype: bool """ - return self._tag == "unsupported_extension" + return self._tag == 'unsupported_extension' def is_unsupported_image(self): """ @@ -9556,7 +9093,7 @@ def is_unsupported_image(self): :rtype: bool """ - return self._tag == "unsupported_image" + return self._tag == 'unsupported_image' def is_encrypted_content(self): """ @@ -9564,7 +9101,7 @@ def is_encrypted_content(self): :rtype: bool """ - return self._tag == "encrypted_content" + return self._tag == 'encrypted_content' def is_conversion_error(self): """ @@ -9572,7 +9109,7 @@ def is_conversion_error(self): :rtype: bool """ - return self._tag == "conversion_error" + return self._tag == 'conversion_error' def get_path(self): """ @@ -9587,14 +9124,10 @@ def get_path(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ThumbnailError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ThumbnailError, self)._process_custom_annotations(annotation_type, field_path, processor) ThumbnailError_validator = bv.Union(ThumbnailError) - class ThumbnailFormat(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -9616,7 +9149,7 @@ def is_jpeg(self): :rtype: bool """ - return self._tag == "jpeg" + return self._tag == 'jpeg' def is_png(self): """ @@ -9624,7 +9157,7 @@ def is_png(self): :rtype: bool """ - return self._tag == "png" + return self._tag == 'png' def is_webp(self): """ @@ -9632,17 +9165,13 @@ def is_webp(self): :rtype: bool """ - return self._tag == "webp" + return self._tag == 'webp' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ThumbnailFormat, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ThumbnailFormat, self)._process_custom_annotations(annotation_type, field_path, processor) ThumbnailFormat_validator = bv.Union(ThumbnailFormat) - class ThumbnailMode(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -9676,7 +9205,7 @@ def is_strict(self): :rtype: bool """ - return self._tag == "strict" + return self._tag == 'strict' def is_bestfit(self): """ @@ -9684,7 +9213,7 @@ def is_bestfit(self): :rtype: bool """ - return self._tag == "bestfit" + return self._tag == 'bestfit' def is_fitone_bestfit(self): """ @@ -9692,7 +9221,7 @@ def is_fitone_bestfit(self): :rtype: bool """ - return self._tag == "fitone_bestfit" + return self._tag == 'fitone_bestfit' def is_original(self): """ @@ -9700,17 +9229,13 @@ def is_original(self): :rtype: bool """ - return self._tag == "original" + return self._tag == 'original' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ThumbnailMode, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ThumbnailMode, self)._process_custom_annotations(annotation_type, field_path, processor) ThumbnailMode_validator = bv.Union(ThumbnailMode) - class ThumbnailQuality(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -9735,7 +9260,7 @@ def is_quality_80(self): :rtype: bool """ - return self._tag == "quality_80" + return self._tag == 'quality_80' def is_quality_90(self): """ @@ -9743,17 +9268,13 @@ def is_quality_90(self): :rtype: bool """ - return self._tag == "quality_90" + return self._tag == 'quality_90' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ThumbnailQuality, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ThumbnailQuality, self)._process_custom_annotations(annotation_type, field_path, processor) ThumbnailQuality_validator = bv.Union(ThumbnailQuality) - class ThumbnailSize(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -9810,7 +9331,7 @@ def is_w32h32(self): :rtype: bool """ - return self._tag == "w32h32" + return self._tag == 'w32h32' def is_w64h64(self): """ @@ -9818,7 +9339,7 @@ def is_w64h64(self): :rtype: bool """ - return self._tag == "w64h64" + return self._tag == 'w64h64' def is_w128h128(self): """ @@ -9826,7 +9347,7 @@ def is_w128h128(self): :rtype: bool """ - return self._tag == "w128h128" + return self._tag == 'w128h128' def is_w256h256(self): """ @@ -9834,7 +9355,7 @@ def is_w256h256(self): :rtype: bool """ - return self._tag == "w256h256" + return self._tag == 'w256h256' def is_w480h320(self): """ @@ -9842,7 +9363,7 @@ def is_w480h320(self): :rtype: bool """ - return self._tag == "w480h320" + return self._tag == 'w480h320' def is_w640h480(self): """ @@ -9850,7 +9371,7 @@ def is_w640h480(self): :rtype: bool """ - return self._tag == "w640h480" + return self._tag == 'w640h480' def is_w960h640(self): """ @@ -9858,7 +9379,7 @@ def is_w960h640(self): :rtype: bool """ - return self._tag == "w960h640" + return self._tag == 'w960h640' def is_w1024h768(self): """ @@ -9866,7 +9387,7 @@ def is_w1024h768(self): :rtype: bool """ - return self._tag == "w1024h768" + return self._tag == 'w1024h768' def is_w2048h1536(self): """ @@ -9874,7 +9395,7 @@ def is_w2048h1536(self): :rtype: bool """ - return self._tag == "w2048h1536" + return self._tag == 'w2048h1536' def is_w3200h2400(self): """ @@ -9882,17 +9403,13 @@ def is_w3200h2400(self): :rtype: bool """ - return self._tag == "w3200h2400" + return self._tag == 'w3200h2400' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ThumbnailSize, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ThumbnailSize, self)._process_custom_annotations(annotation_type, field_path, processor) ThumbnailSize_validator = bv.Union(ThumbnailSize) - class ThumbnailV2Arg(bb.Struct): """ :ivar ThumbnailV2Arg.resource: @@ -9917,25 +9434,23 @@ class ThumbnailV2Arg(bb.Struct): """ __slots__ = [ - "_resource_value", - "_format_value", - "_size_value", - "_mode_value", - "_quality_value", - "_exclude_media_info_value", + '_resource_value', + '_format_value', + '_size_value', + '_mode_value', + '_quality_value', + '_exclude_media_info_value', ] _has_required_fields = True - def __init__( - self, - resource=None, - format=None, - size=None, - mode=None, - quality=None, - exclude_media_info=None, - ): + def __init__(self, + resource=None, + format=None, + size=None, + mode=None, + quality=None, + exclude_media_info=None): self._resource_value = bb.NOT_SET self._format_value = bb.NOT_SET self._size_value = bb.NOT_SET @@ -9974,14 +9489,10 @@ def __init__( exclude_media_info = bb.Attribute("exclude_media_info", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ThumbnailV2Arg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ThumbnailV2Arg, self)._process_custom_annotations(annotation_type, field_path, processor) ThumbnailV2Arg_validator = bv.Struct(ThumbnailV2Arg) - class ThumbnailV2Error(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -10005,7 +9516,7 @@ class ThumbnailV2Error(bb.Union): The shared link does not exist. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition unsupported_extension = None # Attribute is overwritten below the class definition @@ -10030,7 +9541,7 @@ def path(cls, val): :param LookupError val: :rtype: ThumbnailV2Error """ - return cls("path", val) + return cls('path', val) def is_path(self): """ @@ -10038,7 +9549,7 @@ def is_path(self): :rtype: bool """ - return self._tag == "path" + return self._tag == 'path' def is_unsupported_extension(self): """ @@ -10046,7 +9557,7 @@ def is_unsupported_extension(self): :rtype: bool """ - return self._tag == "unsupported_extension" + return self._tag == 'unsupported_extension' def is_unsupported_image(self): """ @@ -10054,7 +9565,7 @@ def is_unsupported_image(self): :rtype: bool """ - return self._tag == "unsupported_image" + return self._tag == 'unsupported_image' def is_encrypted_content(self): """ @@ -10062,7 +9573,7 @@ def is_encrypted_content(self): :rtype: bool """ - return self._tag == "encrypted_content" + return self._tag == 'encrypted_content' def is_conversion_error(self): """ @@ -10070,7 +9581,7 @@ def is_conversion_error(self): :rtype: bool """ - return self._tag == "conversion_error" + return self._tag == 'conversion_error' def is_access_denied(self): """ @@ -10078,7 +9589,7 @@ def is_access_denied(self): :rtype: bool """ - return self._tag == "access_denied" + return self._tag == 'access_denied' def is_not_found(self): """ @@ -10086,7 +9597,7 @@ def is_not_found(self): :rtype: bool """ - return self._tag == "not_found" + return self._tag == 'not_found' def is_other(self): """ @@ -10094,7 +9605,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_path(self): """ @@ -10109,14 +9620,10 @@ def get_path(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ThumbnailV2Error, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ThumbnailV2Error, self)._process_custom_annotations(annotation_type, field_path, processor) ThumbnailV2Error_validator = bv.Union(ThumbnailV2Error) - class UnlockFileArg(bb.Struct): """ :ivar UnlockFileArg.path: @@ -10124,12 +9631,13 @@ class UnlockFileArg(bb.Struct): """ __slots__ = [ - "_path_value", + '_path_value', ] _has_required_fields = True - def __init__(self, path=None): + def __init__(self, + path=None): self._path_value = bb.NOT_SET if path is not None: self.path = path @@ -10138,14 +9646,10 @@ def __init__(self, path=None): path = bb.Attribute("path") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UnlockFileArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UnlockFileArg, self)._process_custom_annotations(annotation_type, field_path, processor) UnlockFileArg_validator = bv.Struct(UnlockFileArg) - class UnlockFileBatchArg(bb.Struct): """ :ivar UnlockFileBatchArg.entries: @@ -10155,12 +9659,13 @@ class UnlockFileBatchArg(bb.Struct): """ __slots__ = [ - "_entries_value", + '_entries_value', ] _has_required_fields = True - def __init__(self, entries=None): + def __init__(self, + entries=None): self._entries_value = bb.NOT_SET if entries is not None: self.entries = entries @@ -10169,14 +9674,10 @@ def __init__(self, entries=None): entries = bb.Attribute("entries") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UnlockFileBatchArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UnlockFileBatchArg, self)._process_custom_annotations(annotation_type, field_path, processor) UnlockFileBatchArg_validator = bv.Struct(UnlockFileBatchArg) - class UploadArg(CommitInfo): """ :ivar UploadArg.content_hash: @@ -10187,31 +9688,27 @@ class UploadArg(CommitInfo): """ __slots__ = [ - "_content_hash_value", + '_content_hash_value', ] _has_required_fields = True - def __init__( - self, - path=None, - mode=None, - autorename=None, - client_modified=None, - mute=None, - property_groups=None, - strict_conflict=None, - content_hash=None, - ): - super(UploadArg, self).__init__( - path, - mode, - autorename, - client_modified, - mute, - property_groups, - strict_conflict, - ) + def __init__(self, + path=None, + mode=None, + autorename=None, + client_modified=None, + mute=None, + property_groups=None, + strict_conflict=None, + content_hash=None): + super(UploadArg, self).__init__(path, + mode, + autorename, + client_modified, + mute, + property_groups, + strict_conflict) self._content_hash_value = bb.NOT_SET if content_hash is not None: self.content_hash = content_hash @@ -10222,10 +9719,8 @@ def __init__( def _process_custom_annotations(self, annotation_type, field_path, processor): super(UploadArg, self)._process_custom_annotations(annotation_type, field_path, processor) - UploadArg_validator = bv.Struct(UploadArg) - class UploadError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -10249,7 +9744,7 @@ class UploadError(bb.Union): public API. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition payload_too_large = None # Attribute is overwritten below the class definition @@ -10268,7 +9763,7 @@ def path(cls, val): :param UploadWriteFailed val: :rtype: UploadError """ - return cls("path", val) + return cls('path', val) @classmethod def properties_error(cls, val): @@ -10279,7 +9774,7 @@ def properties_error(cls, val): :param file_properties.InvalidPropertyGroupError val: :rtype: UploadError """ - return cls("properties_error", val) + return cls('properties_error', val) def is_path(self): """ @@ -10287,7 +9782,7 @@ def is_path(self): :rtype: bool """ - return self._tag == "path" + return self._tag == 'path' def is_properties_error(self): """ @@ -10295,7 +9790,7 @@ def is_properties_error(self): :rtype: bool """ - return self._tag == "properties_error" + return self._tag == 'properties_error' def is_payload_too_large(self): """ @@ -10303,7 +9798,7 @@ def is_payload_too_large(self): :rtype: bool """ - return self._tag == "payload_too_large" + return self._tag == 'payload_too_large' def is_content_hash_mismatch(self): """ @@ -10311,7 +9806,7 @@ def is_content_hash_mismatch(self): :rtype: bool """ - return self._tag == "content_hash_mismatch" + return self._tag == 'content_hash_mismatch' def is_encryption_not_supported(self): """ @@ -10319,7 +9814,7 @@ def is_encryption_not_supported(self): :rtype: bool """ - return self._tag == "encryption_not_supported" + return self._tag == 'encryption_not_supported' def is_other(self): """ @@ -10327,7 +9822,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_path(self): """ @@ -10357,10 +9852,8 @@ def get_properties_error(self): def _process_custom_annotations(self, annotation_type, field_path, processor): super(UploadError, self)._process_custom_annotations(annotation_type, field_path, processor) - UploadError_validator = bv.Union(UploadError) - class UploadSessionAppendArg(bb.Struct): """ :ivar UploadSessionAppendArg.cursor: @@ -10378,14 +9871,17 @@ class UploadSessionAppendArg(bb.Struct): """ __slots__ = [ - "_cursor_value", - "_close_value", - "_content_hash_value", + '_cursor_value', + '_close_value', + '_content_hash_value', ] _has_required_fields = True - def __init__(self, cursor=None, close=None, content_hash=None): + def __init__(self, + cursor=None, + close=None, + content_hash=None): self._cursor_value = bb.NOT_SET self._close_value = bb.NOT_SET self._content_hash_value = bb.NOT_SET @@ -10406,14 +9902,10 @@ def __init__(self, cursor=None, close=None, content_hash=None): content_hash = bb.Attribute("content_hash", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UploadSessionAppendArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UploadSessionAppendArg, self)._process_custom_annotations(annotation_type, field_path, processor) UploadSessionAppendArg_validator = bv.Struct(UploadSessionAppendArg) - class UploadSessionAppendBatchArg(bb.Struct): """ :ivar UploadSessionAppendBatchArg.entries: @@ -10427,13 +9919,15 @@ class UploadSessionAppendBatchArg(bb.Struct): """ __slots__ = [ - "_entries_value", - "_content_hash_value", + '_entries_value', + '_content_hash_value', ] _has_required_fields = True - def __init__(self, entries=None, content_hash=None): + def __init__(self, + entries=None, + content_hash=None): self._entries_value = bb.NOT_SET self._content_hash_value = bb.NOT_SET if entries is not None: @@ -10448,14 +9942,10 @@ def __init__(self, entries=None, content_hash=None): content_hash = bb.Attribute("content_hash", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UploadSessionAppendBatchArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UploadSessionAppendBatchArg, self)._process_custom_annotations(annotation_type, field_path, processor) UploadSessionAppendBatchArg_validator = bv.Struct(UploadSessionAppendBatchArg) - class UploadSessionAppendBatchArgEntry(bb.Struct): """ :ivar UploadSessionAppendBatchArgEntry.cursor: @@ -10471,14 +9961,17 @@ class UploadSessionAppendBatchArgEntry(bb.Struct): """ __slots__ = [ - "_cursor_value", - "_length_value", - "_close_value", + '_cursor_value', + '_length_value', + '_close_value', ] _has_required_fields = True - def __init__(self, cursor=None, length=None, close=None): + def __init__(self, + cursor=None, + length=None, + close=None): self._cursor_value = bb.NOT_SET self._length_value = bb.NOT_SET self._close_value = bb.NOT_SET @@ -10499,14 +9992,10 @@ def __init__(self, cursor=None, length=None, close=None): close = bb.Attribute("close") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UploadSessionAppendBatchArgEntry, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UploadSessionAppendBatchArgEntry, self)._process_custom_annotations(annotation_type, field_path, processor) UploadSessionAppendBatchArgEntry_validator = bv.Struct(UploadSessionAppendBatchArgEntry) - class UploadSessionAppendBatchEntryError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -10537,7 +10026,7 @@ class UploadSessionAppendBatchEntryError(bb.Union): (4,194,304) bytes can be uploaded. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition not_found = None # Attribute is overwritten below the class definition @@ -10560,7 +10049,7 @@ def incorrect_offset(cls, val): :param UploadSessionOffsetError val: :rtype: UploadSessionAppendBatchEntryError """ - return cls("incorrect_offset", val) + return cls('incorrect_offset', val) def is_not_found(self): """ @@ -10568,7 +10057,7 @@ def is_not_found(self): :rtype: bool """ - return self._tag == "not_found" + return self._tag == 'not_found' def is_incorrect_offset(self): """ @@ -10576,7 +10065,7 @@ def is_incorrect_offset(self): :rtype: bool """ - return self._tag == "incorrect_offset" + return self._tag == 'incorrect_offset' def is_closed(self): """ @@ -10584,7 +10073,7 @@ def is_closed(self): :rtype: bool """ - return self._tag == "closed" + return self._tag == 'closed' def is_too_large(self): """ @@ -10592,7 +10081,7 @@ def is_too_large(self): :rtype: bool """ - return self._tag == "too_large" + return self._tag == 'too_large' def is_concurrent_session_invalid_offset(self): """ @@ -10600,7 +10089,7 @@ def is_concurrent_session_invalid_offset(self): :rtype: bool """ - return self._tag == "concurrent_session_invalid_offset" + return self._tag == 'concurrent_session_invalid_offset' def is_concurrent_session_invalid_data_size(self): """ @@ -10608,7 +10097,7 @@ def is_concurrent_session_invalid_data_size(self): :rtype: bool """ - return self._tag == "concurrent_session_invalid_data_size" + return self._tag == 'concurrent_session_invalid_data_size' def is_other(self): """ @@ -10616,7 +10105,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_incorrect_offset(self): """ @@ -10634,14 +10123,10 @@ def get_incorrect_offset(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UploadSessionAppendBatchEntryError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UploadSessionAppendBatchEntryError, self)._process_custom_annotations(annotation_type, field_path, processor) UploadSessionAppendBatchEntryError_validator = bv.Union(UploadSessionAppendBatchEntryError) - class UploadSessionAppendBatchError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -10659,7 +10144,7 @@ class UploadSessionAppendBatchError(bb.Union): arguments. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition payload_too_large = None # Attribute is overwritten below the class definition @@ -10675,7 +10160,7 @@ def is_payload_too_large(self): :rtype: bool """ - return self._tag == "payload_too_large" + return self._tag == 'payload_too_large' def is_content_hash_mismatch(self): """ @@ -10683,7 +10168,7 @@ def is_content_hash_mismatch(self): :rtype: bool """ - return self._tag == "content_hash_mismatch" + return self._tag == 'content_hash_mismatch' def is_length_mismatch(self): """ @@ -10691,7 +10176,7 @@ def is_length_mismatch(self): :rtype: bool """ - return self._tag == "length_mismatch" + return self._tag == 'length_mismatch' def is_other(self): """ @@ -10699,17 +10184,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UploadSessionAppendBatchError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UploadSessionAppendBatchError, self)._process_custom_annotations(annotation_type, field_path, processor) UploadSessionAppendBatchError_validator = bv.Union(UploadSessionAppendBatchError) - class UploadSessionAppendBatchResult(bb.Struct): """ :ivar UploadSessionAppendBatchResult.entries: @@ -10718,12 +10199,13 @@ class UploadSessionAppendBatchResult(bb.Struct): """ __slots__ = [ - "_entries_value", + '_entries_value', ] _has_required_fields = True - def __init__(self, entries=None): + def __init__(self, + entries=None): self._entries_value = bb.NOT_SET if entries is not None: self.entries = entries @@ -10732,14 +10214,10 @@ def __init__(self, entries=None): entries = bb.Attribute("entries") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UploadSessionAppendBatchResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UploadSessionAppendBatchResult, self)._process_custom_annotations(annotation_type, field_path, processor) UploadSessionAppendBatchResult_validator = bv.Struct(UploadSessionAppendBatchResult) - class UploadSessionAppendBatchResultEntry(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -10760,7 +10238,7 @@ def failure(cls, val): :param UploadSessionAppendBatchEntryError val: :rtype: UploadSessionAppendBatchResultEntry """ - return cls("failure", val) + return cls('failure', val) def is_success(self): """ @@ -10768,7 +10246,7 @@ def is_success(self): :rtype: bool """ - return self._tag == "success" + return self._tag == 'success' def is_failure(self): """ @@ -10776,7 +10254,7 @@ def is_failure(self): :rtype: bool """ - return self._tag == "failure" + return self._tag == 'failure' def get_failure(self): """ @@ -10789,14 +10267,10 @@ def get_failure(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UploadSessionAppendBatchResultEntry, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UploadSessionAppendBatchResultEntry, self)._process_custom_annotations(annotation_type, field_path, processor) UploadSessionAppendBatchResultEntry_validator = bv.Union(UploadSessionAppendBatchResultEntry) - class UploadSessionAppendError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -10832,7 +10306,7 @@ class UploadSessionAppendError(bb.Union): the provided content hash. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition not_found = None # Attribute is overwritten below the class definition @@ -10859,7 +10333,7 @@ def incorrect_offset(cls, val): :param UploadSessionOffsetError val: :rtype: UploadSessionAppendError """ - return cls("incorrect_offset", val) + return cls('incorrect_offset', val) def is_not_found(self): """ @@ -10867,7 +10341,7 @@ def is_not_found(self): :rtype: bool """ - return self._tag == "not_found" + return self._tag == 'not_found' def is_incorrect_offset(self): """ @@ -10875,7 +10349,7 @@ def is_incorrect_offset(self): :rtype: bool """ - return self._tag == "incorrect_offset" + return self._tag == 'incorrect_offset' def is_closed(self): """ @@ -10883,7 +10357,7 @@ def is_closed(self): :rtype: bool """ - return self._tag == "closed" + return self._tag == 'closed' def is_too_large(self): """ @@ -10891,7 +10365,7 @@ def is_too_large(self): :rtype: bool """ - return self._tag == "too_large" + return self._tag == 'too_large' def is_concurrent_session_invalid_offset(self): """ @@ -10899,7 +10373,7 @@ def is_concurrent_session_invalid_offset(self): :rtype: bool """ - return self._tag == "concurrent_session_invalid_offset" + return self._tag == 'concurrent_session_invalid_offset' def is_concurrent_session_invalid_data_size(self): """ @@ -10907,7 +10381,7 @@ def is_concurrent_session_invalid_data_size(self): :rtype: bool """ - return self._tag == "concurrent_session_invalid_data_size" + return self._tag == 'concurrent_session_invalid_data_size' def is_payload_too_large(self): """ @@ -10915,7 +10389,7 @@ def is_payload_too_large(self): :rtype: bool """ - return self._tag == "payload_too_large" + return self._tag == 'payload_too_large' def is_content_hash_mismatch(self): """ @@ -10923,7 +10397,7 @@ def is_content_hash_mismatch(self): :rtype: bool """ - return self._tag == "content_hash_mismatch" + return self._tag == 'content_hash_mismatch' def is_other(self): """ @@ -10931,7 +10405,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_incorrect_offset(self): """ @@ -10949,14 +10423,10 @@ def get_incorrect_offset(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UploadSessionAppendError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UploadSessionAppendError, self)._process_custom_annotations(annotation_type, field_path, processor) UploadSessionAppendError_validator = bv.Union(UploadSessionAppendError) - class UploadSessionCursor(bb.Struct): """ :ivar UploadSessionCursor.session_id: @@ -10969,13 +10439,15 @@ class UploadSessionCursor(bb.Struct): """ __slots__ = [ - "_session_id_value", - "_offset_value", + '_session_id_value', + '_offset_value', ] _has_required_fields = True - def __init__(self, session_id=None, offset=None): + def __init__(self, + session_id=None, + offset=None): self._session_id_value = bb.NOT_SET self._offset_value = bb.NOT_SET if session_id is not None: @@ -10990,14 +10462,10 @@ def __init__(self, session_id=None, offset=None): offset = bb.Attribute("offset") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UploadSessionCursor, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UploadSessionCursor, self)._process_custom_annotations(annotation_type, field_path, processor) UploadSessionCursor_validator = bv.Struct(UploadSessionCursor) - class UploadSessionFinishArg(bb.Struct): """ :ivar UploadSessionFinishArg.cursor: @@ -11012,14 +10480,17 @@ class UploadSessionFinishArg(bb.Struct): """ __slots__ = [ - "_cursor_value", - "_commit_value", - "_content_hash_value", + '_cursor_value', + '_commit_value', + '_content_hash_value', ] _has_required_fields = True - def __init__(self, cursor=None, commit=None, content_hash=None): + def __init__(self, + cursor=None, + commit=None, + content_hash=None): self._cursor_value = bb.NOT_SET self._commit_value = bb.NOT_SET self._content_hash_value = bb.NOT_SET @@ -11040,14 +10511,10 @@ def __init__(self, cursor=None, commit=None, content_hash=None): content_hash = bb.Attribute("content_hash", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UploadSessionFinishArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UploadSessionFinishArg, self)._process_custom_annotations(annotation_type, field_path, processor) UploadSessionFinishArg_validator = bv.Struct(UploadSessionFinishArg) - class UploadSessionFinishBatchArg(bb.Struct): """ :ivar UploadSessionFinishBatchArg.entries: @@ -11055,12 +10522,13 @@ class UploadSessionFinishBatchArg(bb.Struct): """ __slots__ = [ - "_entries_value", + '_entries_value', ] _has_required_fields = True - def __init__(self, entries=None): + def __init__(self, + entries=None): self._entries_value = bb.NOT_SET if entries is not None: self.entries = entries @@ -11069,14 +10537,10 @@ def __init__(self, entries=None): entries = bb.Attribute("entries") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UploadSessionFinishBatchArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UploadSessionFinishBatchArg, self)._process_custom_annotations(annotation_type, field_path, processor) UploadSessionFinishBatchArg_validator = bv.Struct(UploadSessionFinishBatchArg) - class UploadSessionFinishBatchJobStatus(async_.PollResultBase): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -11099,7 +10563,7 @@ def complete(cls, val): :param UploadSessionFinishBatchResult val: :rtype: UploadSessionFinishBatchJobStatus """ - return cls("complete", val) + return cls('complete', val) def is_complete(self): """ @@ -11107,7 +10571,7 @@ def is_complete(self): :rtype: bool """ - return self._tag == "complete" + return self._tag == 'complete' def get_complete(self): """ @@ -11124,14 +10588,10 @@ def get_complete(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UploadSessionFinishBatchJobStatus, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UploadSessionFinishBatchJobStatus, self)._process_custom_annotations(annotation_type, field_path, processor) UploadSessionFinishBatchJobStatus_validator = bv.Union(UploadSessionFinishBatchJobStatus) - class UploadSessionFinishBatchLaunch(async_.LaunchResultBase): """ Result returned by @@ -11143,7 +10603,7 @@ class UploadSessionFinishBatchLaunch(async_.LaunchResultBase): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -11156,7 +10616,7 @@ def complete(cls, val): :param UploadSessionFinishBatchResult val: :rtype: UploadSessionFinishBatchLaunch """ - return cls("complete", val) + return cls('complete', val) def is_complete(self): """ @@ -11164,7 +10624,7 @@ def is_complete(self): :rtype: bool """ - return self._tag == "complete" + return self._tag == 'complete' def is_other(self): """ @@ -11172,7 +10632,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_complete(self): """ @@ -11185,14 +10645,10 @@ def get_complete(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UploadSessionFinishBatchLaunch, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UploadSessionFinishBatchLaunch, self)._process_custom_annotations(annotation_type, field_path, processor) UploadSessionFinishBatchLaunch_validator = bv.Union(UploadSessionFinishBatchLaunch) - class UploadSessionFinishBatchResult(bb.Struct): """ :ivar UploadSessionFinishBatchResult.entries: @@ -11201,12 +10657,13 @@ class UploadSessionFinishBatchResult(bb.Struct): """ __slots__ = [ - "_entries_value", + '_entries_value', ] _has_required_fields = True - def __init__(self, entries=None): + def __init__(self, + entries=None): self._entries_value = bb.NOT_SET if entries is not None: self.entries = entries @@ -11215,14 +10672,10 @@ def __init__(self, entries=None): entries = bb.Attribute("entries") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UploadSessionFinishBatchResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UploadSessionFinishBatchResult, self)._process_custom_annotations(annotation_type, field_path, processor) UploadSessionFinishBatchResult_validator = bv.Struct(UploadSessionFinishBatchResult) - class UploadSessionFinishBatchResultEntry(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -11241,7 +10694,7 @@ def success(cls, val): :param FileMetadata val: :rtype: UploadSessionFinishBatchResultEntry """ - return cls("success", val) + return cls('success', val) @classmethod def failure(cls, val): @@ -11252,7 +10705,7 @@ def failure(cls, val): :param UploadSessionFinishError val: :rtype: UploadSessionFinishBatchResultEntry """ - return cls("failure", val) + return cls('failure', val) def is_success(self): """ @@ -11260,7 +10713,7 @@ def is_success(self): :rtype: bool """ - return self._tag == "success" + return self._tag == 'success' def is_failure(self): """ @@ -11268,7 +10721,7 @@ def is_failure(self): :rtype: bool """ - return self._tag == "failure" + return self._tag == 'failure' def get_success(self): """ @@ -11291,14 +10744,10 @@ def get_failure(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UploadSessionFinishBatchResultEntry, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UploadSessionFinishBatchResultEntry, self)._process_custom_annotations(annotation_type, field_path, processor) UploadSessionFinishBatchResultEntry_validator = bv.Union(UploadSessionFinishBatchResultEntry) - class UploadSessionFinishError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -11341,7 +10790,7 @@ class UploadSessionFinishError(bb.Union): public API. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition too_many_shared_folder_targets = None # Attribute is overwritten below the class definition @@ -11370,7 +10819,7 @@ def lookup_failed(cls, val): :param UploadSessionLookupError val: :rtype: UploadSessionFinishError """ - return cls("lookup_failed", val) + return cls('lookup_failed', val) @classmethod def path(cls, val): @@ -11381,7 +10830,7 @@ def path(cls, val): :param WriteError val: :rtype: UploadSessionFinishError """ - return cls("path", val) + return cls('path', val) @classmethod def properties_error(cls, val): @@ -11392,7 +10841,7 @@ def properties_error(cls, val): :param file_properties.InvalidPropertyGroupError val: :rtype: UploadSessionFinishError """ - return cls("properties_error", val) + return cls('properties_error', val) def is_lookup_failed(self): """ @@ -11400,7 +10849,7 @@ def is_lookup_failed(self): :rtype: bool """ - return self._tag == "lookup_failed" + return self._tag == 'lookup_failed' def is_path(self): """ @@ -11408,7 +10857,7 @@ def is_path(self): :rtype: bool """ - return self._tag == "path" + return self._tag == 'path' def is_properties_error(self): """ @@ -11416,7 +10865,7 @@ def is_properties_error(self): :rtype: bool """ - return self._tag == "properties_error" + return self._tag == 'properties_error' def is_too_many_shared_folder_targets(self): """ @@ -11424,7 +10873,7 @@ def is_too_many_shared_folder_targets(self): :rtype: bool """ - return self._tag == "too_many_shared_folder_targets" + return self._tag == 'too_many_shared_folder_targets' def is_too_many_write_operations(self): """ @@ -11432,7 +10881,7 @@ def is_too_many_write_operations(self): :rtype: bool """ - return self._tag == "too_many_write_operations" + return self._tag == 'too_many_write_operations' def is_concurrent_session_data_not_allowed(self): """ @@ -11440,7 +10889,7 @@ def is_concurrent_session_data_not_allowed(self): :rtype: bool """ - return self._tag == "concurrent_session_data_not_allowed" + return self._tag == 'concurrent_session_data_not_allowed' def is_concurrent_session_not_closed(self): """ @@ -11448,7 +10897,7 @@ def is_concurrent_session_not_closed(self): :rtype: bool """ - return self._tag == "concurrent_session_not_closed" + return self._tag == 'concurrent_session_not_closed' def is_concurrent_session_missing_data(self): """ @@ -11456,7 +10905,7 @@ def is_concurrent_session_missing_data(self): :rtype: bool """ - return self._tag == "concurrent_session_missing_data" + return self._tag == 'concurrent_session_missing_data' def is_payload_too_large(self): """ @@ -11464,7 +10913,7 @@ def is_payload_too_large(self): :rtype: bool """ - return self._tag == "payload_too_large" + return self._tag == 'payload_too_large' def is_content_hash_mismatch(self): """ @@ -11472,7 +10921,7 @@ def is_content_hash_mismatch(self): :rtype: bool """ - return self._tag == "content_hash_mismatch" + return self._tag == 'content_hash_mismatch' def is_encryption_not_supported(self): """ @@ -11480,7 +10929,7 @@ def is_encryption_not_supported(self): :rtype: bool """ - return self._tag == "encryption_not_supported" + return self._tag == 'encryption_not_supported' def is_other(self): """ @@ -11488,7 +10937,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_lookup_failed(self): """ @@ -11530,14 +10979,10 @@ def get_properties_error(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UploadSessionFinishError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UploadSessionFinishError, self)._process_custom_annotations(annotation_type, field_path, processor) UploadSessionFinishError_validator = bv.Union(UploadSessionFinishError) - class UploadSessionLookupError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -11572,7 +11017,7 @@ class UploadSessionLookupError(bb.Union): The request payload must be at most 150 MiB. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition not_found = None # Attribute is overwritten below the class definition @@ -11599,7 +11044,7 @@ def incorrect_offset(cls, val): :param UploadSessionOffsetError val: :rtype: UploadSessionLookupError """ - return cls("incorrect_offset", val) + return cls('incorrect_offset', val) def is_not_found(self): """ @@ -11607,7 +11052,7 @@ def is_not_found(self): :rtype: bool """ - return self._tag == "not_found" + return self._tag == 'not_found' def is_incorrect_offset(self): """ @@ -11615,7 +11060,7 @@ def is_incorrect_offset(self): :rtype: bool """ - return self._tag == "incorrect_offset" + return self._tag == 'incorrect_offset' def is_closed(self): """ @@ -11623,7 +11068,7 @@ def is_closed(self): :rtype: bool """ - return self._tag == "closed" + return self._tag == 'closed' def is_not_closed(self): """ @@ -11631,7 +11076,7 @@ def is_not_closed(self): :rtype: bool """ - return self._tag == "not_closed" + return self._tag == 'not_closed' def is_too_large(self): """ @@ -11639,7 +11084,7 @@ def is_too_large(self): :rtype: bool """ - return self._tag == "too_large" + return self._tag == 'too_large' def is_concurrent_session_invalid_offset(self): """ @@ -11647,7 +11092,7 @@ def is_concurrent_session_invalid_offset(self): :rtype: bool """ - return self._tag == "concurrent_session_invalid_offset" + return self._tag == 'concurrent_session_invalid_offset' def is_concurrent_session_invalid_data_size(self): """ @@ -11655,7 +11100,7 @@ def is_concurrent_session_invalid_data_size(self): :rtype: bool """ - return self._tag == "concurrent_session_invalid_data_size" + return self._tag == 'concurrent_session_invalid_data_size' def is_payload_too_large(self): """ @@ -11663,7 +11108,7 @@ def is_payload_too_large(self): :rtype: bool """ - return self._tag == "payload_too_large" + return self._tag == 'payload_too_large' def is_other(self): """ @@ -11671,7 +11116,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_incorrect_offset(self): """ @@ -11689,14 +11134,10 @@ def get_incorrect_offset(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UploadSessionLookupError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UploadSessionLookupError, self)._process_custom_annotations(annotation_type, field_path, processor) UploadSessionLookupError_validator = bv.Union(UploadSessionLookupError) - class UploadSessionOffsetError(bb.Struct): """ :ivar UploadSessionOffsetError.correct_offset: @@ -11704,12 +11145,13 @@ class UploadSessionOffsetError(bb.Struct): """ __slots__ = [ - "_correct_offset_value", + '_correct_offset_value', ] _has_required_fields = True - def __init__(self, correct_offset=None): + def __init__(self, + correct_offset=None): self._correct_offset_value = bb.NOT_SET if correct_offset is not None: self.correct_offset = correct_offset @@ -11718,14 +11160,10 @@ def __init__(self, correct_offset=None): correct_offset = bb.Attribute("correct_offset") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UploadSessionOffsetError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UploadSessionOffsetError, self)._process_custom_annotations(annotation_type, field_path, processor) UploadSessionOffsetError_validator = bv.Struct(UploadSessionOffsetError) - class UploadSessionStartArg(bb.Struct): """ :ivar UploadSessionStartArg.close: @@ -11744,14 +11182,17 @@ class UploadSessionStartArg(bb.Struct): """ __slots__ = [ - "_close_value", - "_session_type_value", - "_content_hash_value", + '_close_value', + '_session_type_value', + '_content_hash_value', ] _has_required_fields = False - def __init__(self, close=None, session_type=None, content_hash=None): + def __init__(self, + close=None, + session_type=None, + content_hash=None): self._close_value = bb.NOT_SET self._session_type_value = bb.NOT_SET self._content_hash_value = bb.NOT_SET @@ -11772,14 +11213,10 @@ def __init__(self, close=None, session_type=None, content_hash=None): content_hash = bb.Attribute("content_hash", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UploadSessionStartArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UploadSessionStartArg, self)._process_custom_annotations(annotation_type, field_path, processor) UploadSessionStartArg_validator = bv.Struct(UploadSessionStartArg) - class UploadSessionStartBatchArg(bb.Struct): """ :ivar UploadSessionStartBatchArg.session_type: @@ -11790,13 +11227,15 @@ class UploadSessionStartBatchArg(bb.Struct): """ __slots__ = [ - "_session_type_value", - "_num_sessions_value", + '_session_type_value', + '_num_sessions_value', ] _has_required_fields = True - def __init__(self, num_sessions=None, session_type=None): + def __init__(self, + num_sessions=None, + session_type=None): self._session_type_value = bb.NOT_SET self._num_sessions_value = bb.NOT_SET if session_type is not None: @@ -11811,14 +11250,10 @@ def __init__(self, num_sessions=None, session_type=None): num_sessions = bb.Attribute("num_sessions") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UploadSessionStartBatchArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UploadSessionStartBatchArg, self)._process_custom_annotations(annotation_type, field_path, processor) UploadSessionStartBatchArg_validator = bv.Struct(UploadSessionStartBatchArg) - class UploadSessionStartBatchResult(bb.Struct): """ :ivar UploadSessionStartBatchResult.session_ids: @@ -11829,12 +11264,13 @@ class UploadSessionStartBatchResult(bb.Struct): """ __slots__ = [ - "_session_ids_value", + '_session_ids_value', ] _has_required_fields = True - def __init__(self, session_ids=None): + def __init__(self, + session_ids=None): self._session_ids_value = bb.NOT_SET if session_ids is not None: self.session_ids = session_ids @@ -11843,14 +11279,10 @@ def __init__(self, session_ids=None): session_ids = bb.Attribute("session_ids") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UploadSessionStartBatchResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UploadSessionStartBatchResult, self)._process_custom_annotations(annotation_type, field_path, processor) UploadSessionStartBatchResult_validator = bv.Struct(UploadSessionStartBatchResult) - class UploadSessionStartError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -11868,7 +11300,7 @@ class UploadSessionStartError(bb.Union): the provided content hash. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition concurrent_session_data_not_allowed = None # Attribute is overwritten below the class definition @@ -11886,7 +11318,7 @@ def is_concurrent_session_data_not_allowed(self): :rtype: bool """ - return self._tag == "concurrent_session_data_not_allowed" + return self._tag == 'concurrent_session_data_not_allowed' def is_concurrent_session_close_not_allowed(self): """ @@ -11894,7 +11326,7 @@ def is_concurrent_session_close_not_allowed(self): :rtype: bool """ - return self._tag == "concurrent_session_close_not_allowed" + return self._tag == 'concurrent_session_close_not_allowed' def is_payload_too_large(self): """ @@ -11902,7 +11334,7 @@ def is_payload_too_large(self): :rtype: bool """ - return self._tag == "payload_too_large" + return self._tag == 'payload_too_large' def is_content_hash_mismatch(self): """ @@ -11910,7 +11342,7 @@ def is_content_hash_mismatch(self): :rtype: bool """ - return self._tag == "content_hash_mismatch" + return self._tag == 'content_hash_mismatch' def is_other(self): """ @@ -11918,17 +11350,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UploadSessionStartError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UploadSessionStartError, self)._process_custom_annotations(annotation_type, field_path, processor) UploadSessionStartError_validator = bv.Union(UploadSessionStartError) - class UploadSessionStartResult(bb.Struct): """ :ivar UploadSessionStartResult.session_id: @@ -11938,12 +11366,13 @@ class UploadSessionStartResult(bb.Struct): """ __slots__ = [ - "_session_id_value", + '_session_id_value', ] _has_required_fields = True - def __init__(self, session_id=None): + def __init__(self, + session_id=None): self._session_id_value = bb.NOT_SET if session_id is not None: self.session_id = session_id @@ -11952,14 +11381,10 @@ def __init__(self, session_id=None): session_id = bb.Attribute("session_id") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UploadSessionStartResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UploadSessionStartResult, self)._process_custom_annotations(annotation_type, field_path, processor) UploadSessionStartResult_validator = bv.Struct(UploadSessionStartResult) - class UploadSessionType(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -11973,7 +11398,7 @@ class UploadSessionType(bb.Union): Pieces of data can be uploaded in concurrent RPCs in any order. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition sequential = None # Attribute is overwritten below the class definition @@ -11987,7 +11412,7 @@ def is_sequential(self): :rtype: bool """ - return self._tag == "sequential" + return self._tag == 'sequential' def is_concurrent(self): """ @@ -11995,7 +11420,7 @@ def is_concurrent(self): :rtype: bool """ - return self._tag == "concurrent" + return self._tag == 'concurrent' def is_other(self): """ @@ -12003,17 +11428,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UploadSessionType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UploadSessionType, self)._process_custom_annotations(annotation_type, field_path, processor) UploadSessionType_validator = bv.Union(UploadSessionType) - class UploadWriteFailed(bb.Struct): """ :ivar UploadWriteFailed.reason: @@ -12025,13 +11446,15 @@ class UploadWriteFailed(bb.Struct): """ __slots__ = [ - "_reason_value", - "_upload_session_id_value", + '_reason_value', + '_upload_session_id_value', ] _has_required_fields = True - def __init__(self, reason=None, upload_session_id=None): + def __init__(self, + reason=None, + upload_session_id=None): self._reason_value = bb.NOT_SET self._upload_session_id_value = bb.NOT_SET if reason is not None: @@ -12046,22 +11469,20 @@ def __init__(self, reason=None, upload_session_id=None): upload_session_id = bb.Attribute("upload_session_id") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UploadWriteFailed, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UploadWriteFailed, self)._process_custom_annotations(annotation_type, field_path, processor) UploadWriteFailed_validator = bv.Struct(UploadWriteFailed) - class UserGeneratedTag(bb.Struct): + __slots__ = [ - "_tag_text_value", + '_tag_text_value', ] _has_required_fields = True - def __init__(self, tag_text=None): + def __init__(self, + tag_text=None): self._tag_text_value = bb.NOT_SET if tag_text is not None: self.tag_text = tag_text @@ -12070,14 +11491,10 @@ def __init__(self, tag_text=None): tag_text = bb.Attribute("tag_text") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UserGeneratedTag, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UserGeneratedTag, self)._process_custom_annotations(annotation_type, field_path, processor) UserGeneratedTag_validator = bv.Struct(UserGeneratedTag) - class VideoMetadata(MediaMetadata): """ Metadata for a video. @@ -12087,13 +11504,19 @@ class VideoMetadata(MediaMetadata): """ __slots__ = [ - "_duration_value", + '_duration_value', ] _has_required_fields = False - def __init__(self, dimensions=None, location=None, time_taken=None, duration=None): - super(VideoMetadata, self).__init__(dimensions, location, time_taken) + def __init__(self, + dimensions=None, + location=None, + time_taken=None, + duration=None): + super(VideoMetadata, self).__init__(dimensions, + location, + time_taken) self._duration_value = bb.NOT_SET if duration is not None: self.duration = duration @@ -12102,14 +11525,10 @@ def __init__(self, dimensions=None, location=None, time_taken=None, duration=Non duration = bb.Attribute("duration", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(VideoMetadata, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(VideoMetadata, self)._process_custom_annotations(annotation_type, field_path, processor) VideoMetadata_validator = bv.Struct(VideoMetadata) - class WriteConflictError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -12125,7 +11544,7 @@ class WriteConflictError(bb.Union): parent folders. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition file = None # Attribute is overwritten below the class definition @@ -12141,7 +11560,7 @@ def is_file(self): :rtype: bool """ - return self._tag == "file" + return self._tag == 'file' def is_folder(self): """ @@ -12149,7 +11568,7 @@ def is_folder(self): :rtype: bool """ - return self._tag == "folder" + return self._tag == 'folder' def is_file_ancestor(self): """ @@ -12157,7 +11576,7 @@ def is_file_ancestor(self): :rtype: bool """ - return self._tag == "file_ancestor" + return self._tag == 'file_ancestor' def is_other(self): """ @@ -12165,17 +11584,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(WriteConflictError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(WriteConflictError, self)._process_custom_annotations(annotation_type, field_path, processor) WriteConflictError_validator = bv.Union(WriteConflictError) - class WriteError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -12210,7 +11625,7 @@ class WriteError(bb.Union): restrictions set by a team administrator """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition no_write_permission = None # Attribute is overwritten below the class definition @@ -12237,7 +11652,7 @@ def malformed_path(cls, val): :param Optional[str] val: :rtype: WriteError """ - return cls("malformed_path", val) + return cls('malformed_path', val) @classmethod def conflict(cls, val): @@ -12248,7 +11663,7 @@ def conflict(cls, val): :param WriteConflictError val: :rtype: WriteError """ - return cls("conflict", val) + return cls('conflict', val) def is_malformed_path(self): """ @@ -12256,7 +11671,7 @@ def is_malformed_path(self): :rtype: bool """ - return self._tag == "malformed_path" + return self._tag == 'malformed_path' def is_conflict(self): """ @@ -12264,7 +11679,7 @@ def is_conflict(self): :rtype: bool """ - return self._tag == "conflict" + return self._tag == 'conflict' def is_no_write_permission(self): """ @@ -12272,7 +11687,7 @@ def is_no_write_permission(self): :rtype: bool """ - return self._tag == "no_write_permission" + return self._tag == 'no_write_permission' def is_insufficient_space(self): """ @@ -12280,7 +11695,7 @@ def is_insufficient_space(self): :rtype: bool """ - return self._tag == "insufficient_space" + return self._tag == 'insufficient_space' def is_disallowed_name(self): """ @@ -12288,7 +11703,7 @@ def is_disallowed_name(self): :rtype: bool """ - return self._tag == "disallowed_name" + return self._tag == 'disallowed_name' def is_team_folder(self): """ @@ -12296,7 +11711,7 @@ def is_team_folder(self): :rtype: bool """ - return self._tag == "team_folder" + return self._tag == 'team_folder' def is_operation_suppressed(self): """ @@ -12304,7 +11719,7 @@ def is_operation_suppressed(self): :rtype: bool """ - return self._tag == "operation_suppressed" + return self._tag == 'operation_suppressed' def is_too_many_write_operations(self): """ @@ -12312,7 +11727,7 @@ def is_too_many_write_operations(self): :rtype: bool """ - return self._tag == "too_many_write_operations" + return self._tag == 'too_many_write_operations' def is_access_restricted(self): """ @@ -12320,7 +11735,7 @@ def is_access_restricted(self): :rtype: bool """ - return self._tag == "access_restricted" + return self._tag == 'access_restricted' def is_other(self): """ @@ -12328,7 +11743,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_malformed_path(self): """ @@ -12361,10 +11776,8 @@ def get_conflict(self): def _process_custom_annotations(self, annotation_type, field_path, processor): super(WriteError, self)._process_custom_annotations(annotation_type, field_path, processor) - WriteError_validator = bv.Union(WriteError) - class WriteMode(bb.Union): """ Your intent when writing a file to some path. This is used to determine what @@ -12416,7 +11829,7 @@ def update(cls, val): :param str val: :rtype: WriteMode """ - return cls("update", val) + return cls('update', val) def is_add(self): """ @@ -12424,7 +11837,7 @@ def is_add(self): :rtype: bool """ - return self._tag == "add" + return self._tag == 'add' def is_overwrite(self): """ @@ -12432,7 +11845,7 @@ def is_overwrite(self): :rtype: bool """ - return self._tag == "overwrite" + return self._tag == 'overwrite' def is_update(self): """ @@ -12440,7 +11853,7 @@ def is_update(self): :rtype: bool """ - return self._tag == "update" + return self._tag == 'update' def get_update(self): """ @@ -12465,107 +11878,86 @@ def get_update(self): def _process_custom_annotations(self, annotation_type, field_path, processor): super(WriteMode, self)._process_custom_annotations(annotation_type, field_path, processor) - WriteMode_validator = bv.Union(WriteMode) CopyBatchArg_validator = RelocationBatchArgBase_validator CopyBatchArg = RelocationBatchArgBase -FileId_validator = bv.String(min_length=4, pattern="id:.+") +FileId_validator = bv.String(min_length=4, pattern='id:.+') Id_validator = bv.String(min_length=1) ListFolderCursor_validator = bv.String(min_length=1) MalformedPathError_validator = bv.Nullable(bv.String()) -Path_validator = bv.String(pattern="/(.|[\\r\\n])*") -PathOrId_validator = bv.String(pattern="/(.|[\\r\\n])*|id:.*|(ns:[0-9]+(/(.|[\\r\\n])*)?)") -PathR_validator = bv.String(pattern="(/(.|[\\r\\n])*)?|(ns:[0-9]+(/(.|[\\r\\n])*)?)") -PathROrId_validator = bv.String(pattern="(/(.|[\\r\\n])*)?|id:.*|(ns:[0-9]+(/(.|[\\r\\n])*)?)") -ReadPath_validator = bv.String( - pattern="(/(.|[\\r\\n])*|id:.*)|(rev:[0-9a-f]{9,})|(ns:[0-9]+(/(.|[\\r\\n])*)?)" -) -Rev_validator = bv.String(min_length=9, pattern="[0-9a-f]+") +Path_validator = bv.String(pattern='/(.|[\\r\\n])*') +PathOrId_validator = bv.String(pattern='/(.|[\\r\\n])*|id:.*|(ns:[0-9]+(/(.|[\\r\\n])*)?)') +PathR_validator = bv.String(pattern='(/(.|[\\r\\n])*)?|(ns:[0-9]+(/(.|[\\r\\n])*)?)') +PathROrId_validator = bv.String(pattern='(/(.|[\\r\\n])*)?|id:.*|(ns:[0-9]+(/(.|[\\r\\n])*)?)') +ReadPath_validator = bv.String(pattern='(/(.|[\\r\\n])*|id:.*)|(rev:[0-9a-f]{9,})|(ns:[0-9]+(/(.|[\\r\\n])*)?)') +Rev_validator = bv.String(min_length=9, pattern='[0-9a-f]+') SearchV2Cursor_validator = bv.String(min_length=1) Sha256HexHash_validator = bv.String(min_length=64, max_length=64) SharedLinkUrl_validator = bv.String() -TagText_validator = bv.String(min_length=1, max_length=32, pattern="[\\w]+") -WritePath_validator = bv.String(pattern="(/(.|[\\r\\n])*)|(ns:[0-9]+(/(.|[\\r\\n])*)?)") -WritePathOrId_validator = bv.String(pattern="(/(.|[\\r\\n])*)|(ns:[0-9]+(/(.|[\\r\\n])*)?)|(id:.*)") +TagText_validator = bv.String(min_length=1, max_length=32, pattern='[\\w]+') +WritePath_validator = bv.String(pattern='(/(.|[\\r\\n])*)|(ns:[0-9]+(/(.|[\\r\\n])*)?)') +WritePathOrId_validator = bv.String(pattern='(/(.|[\\r\\n])*)|(ns:[0-9]+(/(.|[\\r\\n])*)?)|(id:.*)') AddTagArg.path.validator = Path_validator AddTagArg.tag_text.validator = TagText_validator -AddTagArg._all_field_names_ = set( - [ - "path", - "tag_text", - ] -) +AddTagArg._all_field_names_ = set([ + 'path', + 'tag_text', +]) AddTagArg._all_fields_ = [ - ("path", AddTagArg.path.validator), - ("tag_text", AddTagArg.tag_text.validator), + ('path', AddTagArg.path.validator), + ('tag_text', AddTagArg.tag_text.validator), ] BaseTagError._path_validator = LookupError_validator BaseTagError._other_validator = bv.Void() BaseTagError._tagmap = { - "path": BaseTagError._path_validator, - "other": BaseTagError._other_validator, + 'path': BaseTagError._path_validator, + 'other': BaseTagError._other_validator, } -BaseTagError.other = BaseTagError("other") +BaseTagError.other = BaseTagError('other') AddTagError._too_many_tags_validator = bv.Void() AddTagError._tagmap = { - "too_many_tags": AddTagError._too_many_tags_validator, + 'too_many_tags': AddTagError._too_many_tags_validator, } AddTagError._tagmap.update(BaseTagError._tagmap) -AddTagError.too_many_tags = AddTagError("too_many_tags") +AddTagError.too_many_tags = AddTagError('too_many_tags') GetMetadataArg.path.validator = ReadPath_validator GetMetadataArg.include_media_info.validator = bv.Boolean() GetMetadataArg.include_deleted.validator = bv.Boolean() GetMetadataArg.include_has_explicit_shared_members.validator = bv.Boolean() -GetMetadataArg.include_property_groups.validator = bv.Nullable( - file_properties.TemplateFilterBase_validator -) -GetMetadataArg._all_field_names_ = set( - [ - "path", - "include_media_info", - "include_deleted", - "include_has_explicit_shared_members", - "include_property_groups", - ] -) +GetMetadataArg.include_property_groups.validator = bv.Nullable(file_properties.TemplateFilterBase_validator) +GetMetadataArg._all_field_names_ = set([ + 'path', + 'include_media_info', + 'include_deleted', + 'include_has_explicit_shared_members', + 'include_property_groups', +]) GetMetadataArg._all_fields_ = [ - ("path", GetMetadataArg.path.validator), - ("include_media_info", GetMetadataArg.include_media_info.validator), - ("include_deleted", GetMetadataArg.include_deleted.validator), - ( - "include_has_explicit_shared_members", - GetMetadataArg.include_has_explicit_shared_members.validator, - ), - ("include_property_groups", GetMetadataArg.include_property_groups.validator), + ('path', GetMetadataArg.path.validator), + ('include_media_info', GetMetadataArg.include_media_info.validator), + ('include_deleted', GetMetadataArg.include_deleted.validator), + ('include_has_explicit_shared_members', GetMetadataArg.include_has_explicit_shared_members.validator), + ('include_property_groups', GetMetadataArg.include_property_groups.validator), ] -AlphaGetMetadataArg.include_property_templates.validator = bv.Nullable( - bv.List(file_properties.TemplateId_validator) -) -AlphaGetMetadataArg._all_field_names_ = GetMetadataArg._all_field_names_.union( - set(["include_property_templates"]) -) -AlphaGetMetadataArg._all_fields_ = GetMetadataArg._all_fields_ + [ - ( - "include_property_templates", - AlphaGetMetadataArg.include_property_templates.validator, - ) -] +AlphaGetMetadataArg.include_property_templates.validator = bv.Nullable(bv.List(file_properties.TemplateId_validator)) +AlphaGetMetadataArg._all_field_names_ = GetMetadataArg._all_field_names_.union(set(['include_property_templates'])) +AlphaGetMetadataArg._all_fields_ = GetMetadataArg._all_fields_ + [('include_property_templates', AlphaGetMetadataArg.include_property_templates.validator)] GetMetadataError._path_validator = LookupError_validator GetMetadataError._tagmap = { - "path": GetMetadataError._path_validator, + 'path': GetMetadataError._path_validator, } AlphaGetMetadataError._properties_error_validator = file_properties.LookUpPropertiesError_validator AlphaGetMetadataError._tagmap = { - "properties_error": AlphaGetMetadataError._properties_error_validator, + 'properties_error': AlphaGetMetadataError._properties_error_validator, } AlphaGetMetadataError._tagmap.update(GetMetadataError._tagmap) @@ -12576,218 +11968,200 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): CommitInfo.mute.validator = bv.Boolean() CommitInfo.property_groups.validator = bv.Nullable(bv.List(file_properties.PropertyGroup_validator)) CommitInfo.strict_conflict.validator = bv.Boolean() -CommitInfo._all_field_names_ = set( - [ - "path", - "mode", - "autorename", - "client_modified", - "mute", - "property_groups", - "strict_conflict", - ] -) +CommitInfo._all_field_names_ = set([ + 'path', + 'mode', + 'autorename', + 'client_modified', + 'mute', + 'property_groups', + 'strict_conflict', +]) CommitInfo._all_fields_ = [ - ("path", CommitInfo.path.validator), - ("mode", CommitInfo.mode.validator), - ("autorename", CommitInfo.autorename.validator), - ("client_modified", CommitInfo.client_modified.validator), - ("mute", CommitInfo.mute.validator), - ("property_groups", CommitInfo.property_groups.validator), - ("strict_conflict", CommitInfo.strict_conflict.validator), + ('path', CommitInfo.path.validator), + ('mode', CommitInfo.mode.validator), + ('autorename', CommitInfo.autorename.validator), + ('client_modified', CommitInfo.client_modified.validator), + ('mute', CommitInfo.mute.validator), + ('property_groups', CommitInfo.property_groups.validator), + ('strict_conflict', CommitInfo.strict_conflict.validator), ] ContentSyncSetting.id.validator = FileId_validator ContentSyncSetting.sync_setting.validator = SyncSetting_validator -ContentSyncSetting._all_field_names_ = set( - [ - "id", - "sync_setting", - ] -) +ContentSyncSetting._all_field_names_ = set([ + 'id', + 'sync_setting', +]) ContentSyncSetting._all_fields_ = [ - ("id", ContentSyncSetting.id.validator), - ("sync_setting", ContentSyncSetting.sync_setting.validator), + ('id', ContentSyncSetting.id.validator), + ('sync_setting', ContentSyncSetting.sync_setting.validator), ] ContentSyncSettingArg.id.validator = FileId_validator ContentSyncSettingArg.sync_setting.validator = SyncSettingArg_validator -ContentSyncSettingArg._all_field_names_ = set( - [ - "id", - "sync_setting", - ] -) +ContentSyncSettingArg._all_field_names_ = set([ + 'id', + 'sync_setting', +]) ContentSyncSettingArg._all_fields_ = [ - ("id", ContentSyncSettingArg.id.validator), - ("sync_setting", ContentSyncSettingArg.sync_setting.validator), + ('id', ContentSyncSettingArg.id.validator), + ('sync_setting', ContentSyncSettingArg.sync_setting.validator), ] CreateFolderArg.path.validator = WritePath_validator CreateFolderArg.autorename.validator = bv.Boolean() -CreateFolderArg._all_field_names_ = set( - [ - "path", - "autorename", - ] -) +CreateFolderArg._all_field_names_ = set([ + 'path', + 'autorename', +]) CreateFolderArg._all_fields_ = [ - ("path", CreateFolderArg.path.validator), - ("autorename", CreateFolderArg.autorename.validator), + ('path', CreateFolderArg.path.validator), + ('autorename', CreateFolderArg.autorename.validator), ] CreateFolderBatchArg.paths.validator = bv.List(WritePath_validator, max_items=10000) CreateFolderBatchArg.autorename.validator = bv.Boolean() CreateFolderBatchArg.force_async.validator = bv.Boolean() -CreateFolderBatchArg._all_field_names_ = set( - [ - "paths", - "autorename", - "force_async", - ] -) +CreateFolderBatchArg._all_field_names_ = set([ + 'paths', + 'autorename', + 'force_async', +]) CreateFolderBatchArg._all_fields_ = [ - ("paths", CreateFolderBatchArg.paths.validator), - ("autorename", CreateFolderBatchArg.autorename.validator), - ("force_async", CreateFolderBatchArg.force_async.validator), + ('paths', CreateFolderBatchArg.paths.validator), + ('autorename', CreateFolderBatchArg.autorename.validator), + ('force_async', CreateFolderBatchArg.force_async.validator), ] CreateFolderBatchError._too_many_files_validator = bv.Void() CreateFolderBatchError._other_validator = bv.Void() CreateFolderBatchError._tagmap = { - "too_many_files": CreateFolderBatchError._too_many_files_validator, - "other": CreateFolderBatchError._other_validator, + 'too_many_files': CreateFolderBatchError._too_many_files_validator, + 'other': CreateFolderBatchError._other_validator, } -CreateFolderBatchError.too_many_files = CreateFolderBatchError("too_many_files") -CreateFolderBatchError.other = CreateFolderBatchError("other") +CreateFolderBatchError.too_many_files = CreateFolderBatchError('too_many_files') +CreateFolderBatchError.other = CreateFolderBatchError('other') CreateFolderBatchJobStatus._complete_validator = CreateFolderBatchResult_validator CreateFolderBatchJobStatus._failed_validator = CreateFolderBatchError_validator CreateFolderBatchJobStatus._other_validator = bv.Void() CreateFolderBatchJobStatus._tagmap = { - "complete": CreateFolderBatchJobStatus._complete_validator, - "failed": CreateFolderBatchJobStatus._failed_validator, - "other": CreateFolderBatchJobStatus._other_validator, + 'complete': CreateFolderBatchJobStatus._complete_validator, + 'failed': CreateFolderBatchJobStatus._failed_validator, + 'other': CreateFolderBatchJobStatus._other_validator, } CreateFolderBatchJobStatus._tagmap.update(async_.PollResultBase._tagmap) -CreateFolderBatchJobStatus.other = CreateFolderBatchJobStatus("other") +CreateFolderBatchJobStatus.other = CreateFolderBatchJobStatus('other') CreateFolderBatchLaunch._complete_validator = CreateFolderBatchResult_validator CreateFolderBatchLaunch._other_validator = bv.Void() CreateFolderBatchLaunch._tagmap = { - "complete": CreateFolderBatchLaunch._complete_validator, - "other": CreateFolderBatchLaunch._other_validator, + 'complete': CreateFolderBatchLaunch._complete_validator, + 'other': CreateFolderBatchLaunch._other_validator, } CreateFolderBatchLaunch._tagmap.update(async_.LaunchResultBase._tagmap) -CreateFolderBatchLaunch.other = CreateFolderBatchLaunch("other") +CreateFolderBatchLaunch.other = CreateFolderBatchLaunch('other') FileOpsResult._all_field_names_ = set([]) FileOpsResult._all_fields_ = [] CreateFolderBatchResult.entries.validator = bv.List(CreateFolderBatchResultEntry_validator) -CreateFolderBatchResult._all_field_names_ = FileOpsResult._all_field_names_.union(set(["entries"])) -CreateFolderBatchResult._all_fields_ = FileOpsResult._all_fields_ + [ - ("entries", CreateFolderBatchResult.entries.validator) -] +CreateFolderBatchResult._all_field_names_ = FileOpsResult._all_field_names_.union(set(['entries'])) +CreateFolderBatchResult._all_fields_ = FileOpsResult._all_fields_ + [('entries', CreateFolderBatchResult.entries.validator)] CreateFolderBatchResultEntry._success_validator = CreateFolderEntryResult_validator CreateFolderBatchResultEntry._failure_validator = CreateFolderEntryError_validator CreateFolderBatchResultEntry._tagmap = { - "success": CreateFolderBatchResultEntry._success_validator, - "failure": CreateFolderBatchResultEntry._failure_validator, + 'success': CreateFolderBatchResultEntry._success_validator, + 'failure': CreateFolderBatchResultEntry._failure_validator, } CreateFolderEntryError._path_validator = WriteError_validator CreateFolderEntryError._other_validator = bv.Void() CreateFolderEntryError._tagmap = { - "path": CreateFolderEntryError._path_validator, - "other": CreateFolderEntryError._other_validator, + 'path': CreateFolderEntryError._path_validator, + 'other': CreateFolderEntryError._other_validator, } -CreateFolderEntryError.other = CreateFolderEntryError("other") +CreateFolderEntryError.other = CreateFolderEntryError('other') CreateFolderEntryResult.metadata.validator = FolderMetadata_validator -CreateFolderEntryResult._all_field_names_ = set(["metadata"]) -CreateFolderEntryResult._all_fields_ = [("metadata", CreateFolderEntryResult.metadata.validator)] +CreateFolderEntryResult._all_field_names_ = set(['metadata']) +CreateFolderEntryResult._all_fields_ = [('metadata', CreateFolderEntryResult.metadata.validator)] CreateFolderError._path_validator = WriteError_validator CreateFolderError._tagmap = { - "path": CreateFolderError._path_validator, + 'path': CreateFolderError._path_validator, } CreateFolderResult.metadata.validator = FolderMetadata_validator -CreateFolderResult._all_field_names_ = FileOpsResult._all_field_names_.union(set(["metadata"])) -CreateFolderResult._all_fields_ = FileOpsResult._all_fields_ + [ - ("metadata", CreateFolderResult.metadata.validator) -] +CreateFolderResult._all_field_names_ = FileOpsResult._all_field_names_.union(set(['metadata'])) +CreateFolderResult._all_fields_ = FileOpsResult._all_fields_ + [('metadata', CreateFolderResult.metadata.validator)] DeleteArg.path.validator = WritePathOrId_validator DeleteArg.parent_rev.validator = bv.Nullable(Rev_validator) -DeleteArg._all_field_names_ = set( - [ - "path", - "parent_rev", - ] -) +DeleteArg._all_field_names_ = set([ + 'path', + 'parent_rev', +]) DeleteArg._all_fields_ = [ - ("path", DeleteArg.path.validator), - ("parent_rev", DeleteArg.parent_rev.validator), + ('path', DeleteArg.path.validator), + ('parent_rev', DeleteArg.parent_rev.validator), ] DeleteBatchArg.entries.validator = bv.List(DeleteArg_validator, max_items=1000) -DeleteBatchArg._all_field_names_ = set(["entries"]) -DeleteBatchArg._all_fields_ = [("entries", DeleteBatchArg.entries.validator)] +DeleteBatchArg._all_field_names_ = set(['entries']) +DeleteBatchArg._all_fields_ = [('entries', DeleteBatchArg.entries.validator)] DeleteBatchError._too_many_write_operations_validator = bv.Void() DeleteBatchError._other_validator = bv.Void() DeleteBatchError._tagmap = { - "too_many_write_operations": DeleteBatchError._too_many_write_operations_validator, - "other": DeleteBatchError._other_validator, + 'too_many_write_operations': DeleteBatchError._too_many_write_operations_validator, + 'other': DeleteBatchError._other_validator, } -DeleteBatchError.too_many_write_operations = DeleteBatchError("too_many_write_operations") -DeleteBatchError.other = DeleteBatchError("other") +DeleteBatchError.too_many_write_operations = DeleteBatchError('too_many_write_operations') +DeleteBatchError.other = DeleteBatchError('other') DeleteBatchJobStatus._complete_validator = DeleteBatchResult_validator DeleteBatchJobStatus._failed_validator = DeleteBatchError_validator DeleteBatchJobStatus._other_validator = bv.Void() DeleteBatchJobStatus._tagmap = { - "complete": DeleteBatchJobStatus._complete_validator, - "failed": DeleteBatchJobStatus._failed_validator, - "other": DeleteBatchJobStatus._other_validator, + 'complete': DeleteBatchJobStatus._complete_validator, + 'failed': DeleteBatchJobStatus._failed_validator, + 'other': DeleteBatchJobStatus._other_validator, } DeleteBatchJobStatus._tagmap.update(async_.PollResultBase._tagmap) -DeleteBatchJobStatus.other = DeleteBatchJobStatus("other") +DeleteBatchJobStatus.other = DeleteBatchJobStatus('other') DeleteBatchLaunch._complete_validator = DeleteBatchResult_validator DeleteBatchLaunch._other_validator = bv.Void() DeleteBatchLaunch._tagmap = { - "complete": DeleteBatchLaunch._complete_validator, - "other": DeleteBatchLaunch._other_validator, + 'complete': DeleteBatchLaunch._complete_validator, + 'other': DeleteBatchLaunch._other_validator, } DeleteBatchLaunch._tagmap.update(async_.LaunchResultBase._tagmap) -DeleteBatchLaunch.other = DeleteBatchLaunch("other") +DeleteBatchLaunch.other = DeleteBatchLaunch('other') DeleteBatchResult.entries.validator = bv.List(DeleteBatchResultEntry_validator) -DeleteBatchResult._all_field_names_ = FileOpsResult._all_field_names_.union(set(["entries"])) -DeleteBatchResult._all_fields_ = FileOpsResult._all_fields_ + [ - ("entries", DeleteBatchResult.entries.validator) -] +DeleteBatchResult._all_field_names_ = FileOpsResult._all_field_names_.union(set(['entries'])) +DeleteBatchResult._all_fields_ = FileOpsResult._all_fields_ + [('entries', DeleteBatchResult.entries.validator)] DeleteBatchResultData.metadata.validator = Metadata_validator -DeleteBatchResultData._all_field_names_ = set(["metadata"]) -DeleteBatchResultData._all_fields_ = [("metadata", DeleteBatchResultData.metadata.validator)] +DeleteBatchResultData._all_field_names_ = set(['metadata']) +DeleteBatchResultData._all_fields_ = [('metadata', DeleteBatchResultData.metadata.validator)] DeleteBatchResultEntry._success_validator = DeleteBatchResultData_validator DeleteBatchResultEntry._failure_validator = DeleteError_validator DeleteBatchResultEntry._tagmap = { - "success": DeleteBatchResultEntry._success_validator, - "failure": DeleteBatchResultEntry._failure_validator, + 'success': DeleteBatchResultEntry._success_validator, + 'failure': DeleteBatchResultEntry._failure_validator, } DeleteError._path_lookup_validator = LookupError_validator @@ -12796,137 +12170,127 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): DeleteError._too_many_files_validator = bv.Void() DeleteError._other_validator = bv.Void() DeleteError._tagmap = { - "path_lookup": DeleteError._path_lookup_validator, - "path_write": DeleteError._path_write_validator, - "too_many_write_operations": DeleteError._too_many_write_operations_validator, - "too_many_files": DeleteError._too_many_files_validator, - "other": DeleteError._other_validator, + 'path_lookup': DeleteError._path_lookup_validator, + 'path_write': DeleteError._path_write_validator, + 'too_many_write_operations': DeleteError._too_many_write_operations_validator, + 'too_many_files': DeleteError._too_many_files_validator, + 'other': DeleteError._other_validator, } -DeleteError.too_many_write_operations = DeleteError("too_many_write_operations") -DeleteError.too_many_files = DeleteError("too_many_files") -DeleteError.other = DeleteError("other") +DeleteError.too_many_write_operations = DeleteError('too_many_write_operations') +DeleteError.too_many_files = DeleteError('too_many_files') +DeleteError.other = DeleteError('other') DeleteResult.metadata.validator = Metadata_validator -DeleteResult._all_field_names_ = FileOpsResult._all_field_names_.union(set(["metadata"])) -DeleteResult._all_fields_ = FileOpsResult._all_fields_ + [ - ("metadata", DeleteResult.metadata.validator) -] +DeleteResult._all_field_names_ = FileOpsResult._all_field_names_.union(set(['metadata'])) +DeleteResult._all_fields_ = FileOpsResult._all_fields_ + [('metadata', DeleteResult.metadata.validator)] Metadata.name.validator = bv.String() Metadata.path_lower.validator = bv.Nullable(bv.String()) Metadata.path_display.validator = bv.Nullable(bv.String()) Metadata.parent_shared_folder_id.validator = bv.Nullable(common.SharedFolderId_validator) Metadata.preview_url.validator = bv.Nullable(bv.String()) -Metadata._field_names_ = set( - [ - "name", - "path_lower", - "path_display", - "parent_shared_folder_id", - "preview_url", - ] -) +Metadata._field_names_ = set([ + 'name', + 'path_lower', + 'path_display', + 'parent_shared_folder_id', + 'preview_url', +]) Metadata._all_field_names_ = Metadata._field_names_ Metadata._fields_ = [ - ("name", Metadata.name.validator), - ("path_lower", Metadata.path_lower.validator), - ("path_display", Metadata.path_display.validator), - ("parent_shared_folder_id", Metadata.parent_shared_folder_id.validator), - ("preview_url", Metadata.preview_url.validator), + ('name', Metadata.name.validator), + ('path_lower', Metadata.path_lower.validator), + ('path_display', Metadata.path_display.validator), + ('parent_shared_folder_id', Metadata.parent_shared_folder_id.validator), + ('preview_url', Metadata.preview_url.validator), ] Metadata._all_fields_ = Metadata._fields_ Metadata._tag_to_subtype_ = { - ("file",): FileMetadata_validator, - ("folder",): FolderMetadata_validator, - ("deleted",): DeletedMetadata_validator, + ('file',): FileMetadata_validator, + ('folder',): FolderMetadata_validator, + ('deleted',): DeletedMetadata_validator, } Metadata._pytype_to_tag_and_subtype_ = { - FileMetadata: (("file",), FileMetadata_validator), - FolderMetadata: (("folder",), FolderMetadata_validator), - DeletedMetadata: (("deleted",), DeletedMetadata_validator), + FileMetadata: (('file',), FileMetadata_validator), + FolderMetadata: (('folder',), FolderMetadata_validator), + DeletedMetadata: (('deleted',), DeletedMetadata_validator), } Metadata._is_catch_all_ = False DeletedMetadata.is_restorable.validator = bv.Nullable(bv.Boolean()) -DeletedMetadata._field_names_ = set(["is_restorable"]) +DeletedMetadata._field_names_ = set(['is_restorable']) DeletedMetadata._all_field_names_ = Metadata._all_field_names_.union(DeletedMetadata._field_names_) -DeletedMetadata._fields_ = [("is_restorable", DeletedMetadata.is_restorable.validator)] +DeletedMetadata._fields_ = [('is_restorable', DeletedMetadata.is_restorable.validator)] DeletedMetadata._all_fields_ = Metadata._all_fields_ + DeletedMetadata._fields_ Dimensions.height.validator = bv.UInt64() Dimensions.width.validator = bv.UInt64() -Dimensions._all_field_names_ = set( - [ - "height", - "width", - ] -) +Dimensions._all_field_names_ = set([ + 'height', + 'width', +]) Dimensions._all_fields_ = [ - ("height", Dimensions.height.validator), - ("width", Dimensions.width.validator), + ('height', Dimensions.height.validator), + ('width', Dimensions.width.validator), ] DownloadArg.path.validator = ReadPath_validator DownloadArg.rev.validator = bv.Nullable(Rev_validator) -DownloadArg._all_field_names_ = set( - [ - "path", - "rev", - ] -) +DownloadArg._all_field_names_ = set([ + 'path', + 'rev', +]) DownloadArg._all_fields_ = [ - ("path", DownloadArg.path.validator), - ("rev", DownloadArg.rev.validator), + ('path', DownloadArg.path.validator), + ('rev', DownloadArg.rev.validator), ] DownloadError._path_validator = LookupError_validator DownloadError._unsupported_file_validator = bv.Void() DownloadError._other_validator = bv.Void() DownloadError._tagmap = { - "path": DownloadError._path_validator, - "unsupported_file": DownloadError._unsupported_file_validator, - "other": DownloadError._other_validator, + 'path': DownloadError._path_validator, + 'unsupported_file': DownloadError._unsupported_file_validator, + 'other': DownloadError._other_validator, } -DownloadError.unsupported_file = DownloadError("unsupported_file") -DownloadError.other = DownloadError("other") +DownloadError.unsupported_file = DownloadError('unsupported_file') +DownloadError.other = DownloadError('other') DownloadZipArg.path.validator = ReadPath_validator -DownloadZipArg._all_field_names_ = set(["path"]) -DownloadZipArg._all_fields_ = [("path", DownloadZipArg.path.validator)] +DownloadZipArg._all_field_names_ = set(['path']) +DownloadZipArg._all_fields_ = [('path', DownloadZipArg.path.validator)] DownloadZipError._path_validator = LookupError_validator DownloadZipError._too_large_validator = bv.Void() DownloadZipError._too_many_files_validator = bv.Void() DownloadZipError._other_validator = bv.Void() DownloadZipError._tagmap = { - "path": DownloadZipError._path_validator, - "too_large": DownloadZipError._too_large_validator, - "too_many_files": DownloadZipError._too_many_files_validator, - "other": DownloadZipError._other_validator, + 'path': DownloadZipError._path_validator, + 'too_large': DownloadZipError._too_large_validator, + 'too_many_files': DownloadZipError._too_many_files_validator, + 'other': DownloadZipError._other_validator, } -DownloadZipError.too_large = DownloadZipError("too_large") -DownloadZipError.too_many_files = DownloadZipError("too_many_files") -DownloadZipError.other = DownloadZipError("other") +DownloadZipError.too_large = DownloadZipError('too_large') +DownloadZipError.too_many_files = DownloadZipError('too_many_files') +DownloadZipError.other = DownloadZipError('other') DownloadZipResult.metadata.validator = FolderMetadata_validator -DownloadZipResult._all_field_names_ = set(["metadata"]) -DownloadZipResult._all_fields_ = [("metadata", DownloadZipResult.metadata.validator)] +DownloadZipResult._all_field_names_ = set(['metadata']) +DownloadZipResult._all_fields_ = [('metadata', DownloadZipResult.metadata.validator)] ExportArg.path.validator = ReadPath_validator ExportArg.export_format.validator = bv.Nullable(bv.String()) -ExportArg._all_field_names_ = set( - [ - "path", - "export_format", - ] -) +ExportArg._all_field_names_ = set([ + 'path', + 'export_format', +]) ExportArg._all_fields_ = [ - ("path", ExportArg.path.validator), - ("export_format", ExportArg.export_format.validator), + ('path', ExportArg.path.validator), + ('export_format', ExportArg.export_format.validator), ] ExportError._path_validator = LookupError_validator @@ -12935,61 +12299,55 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ExportError._retry_error_validator = bv.Void() ExportError._other_validator = bv.Void() ExportError._tagmap = { - "path": ExportError._path_validator, - "non_exportable": ExportError._non_exportable_validator, - "invalid_export_format": ExportError._invalid_export_format_validator, - "retry_error": ExportError._retry_error_validator, - "other": ExportError._other_validator, + 'path': ExportError._path_validator, + 'non_exportable': ExportError._non_exportable_validator, + 'invalid_export_format': ExportError._invalid_export_format_validator, + 'retry_error': ExportError._retry_error_validator, + 'other': ExportError._other_validator, } -ExportError.non_exportable = ExportError("non_exportable") -ExportError.invalid_export_format = ExportError("invalid_export_format") -ExportError.retry_error = ExportError("retry_error") -ExportError.other = ExportError("other") +ExportError.non_exportable = ExportError('non_exportable') +ExportError.invalid_export_format = ExportError('invalid_export_format') +ExportError.retry_error = ExportError('retry_error') +ExportError.other = ExportError('other') ExportInfo.export_as.validator = bv.Nullable(bv.String()) ExportInfo.export_options.validator = bv.Nullable(bv.List(bv.String())) -ExportInfo._all_field_names_ = set( - [ - "export_as", - "export_options", - ] -) +ExportInfo._all_field_names_ = set([ + 'export_as', + 'export_options', +]) ExportInfo._all_fields_ = [ - ("export_as", ExportInfo.export_as.validator), - ("export_options", ExportInfo.export_options.validator), + ('export_as', ExportInfo.export_as.validator), + ('export_options', ExportInfo.export_options.validator), ] ExportMetadata.name.validator = bv.String() ExportMetadata.size.validator = bv.UInt64() ExportMetadata.export_hash.validator = bv.Nullable(Sha256HexHash_validator) ExportMetadata.paper_revision.validator = bv.Nullable(bv.Int64()) -ExportMetadata._all_field_names_ = set( - [ - "name", - "size", - "export_hash", - "paper_revision", - ] -) +ExportMetadata._all_field_names_ = set([ + 'name', + 'size', + 'export_hash', + 'paper_revision', +]) ExportMetadata._all_fields_ = [ - ("name", ExportMetadata.name.validator), - ("size", ExportMetadata.size.validator), - ("export_hash", ExportMetadata.export_hash.validator), - ("paper_revision", ExportMetadata.paper_revision.validator), + ('name', ExportMetadata.name.validator), + ('size', ExportMetadata.size.validator), + ('export_hash', ExportMetadata.export_hash.validator), + ('paper_revision', ExportMetadata.paper_revision.validator), ] ExportResult.export_metadata.validator = ExportMetadata_validator ExportResult.file_metadata.validator = FileMetadata_validator -ExportResult._all_field_names_ = set( - [ - "export_metadata", - "file_metadata", - ] -) +ExportResult._all_field_names_ = set([ + 'export_metadata', + 'file_metadata', +]) ExportResult._all_fields_ = [ - ("export_metadata", ExportResult.export_metadata.validator), - ("file_metadata", ExportResult.file_metadata.validator), + ('export_metadata', ExportResult.export_metadata.validator), + ('file_metadata', ExportResult.file_metadata.validator), ] FileCategory._image_validator = bv.Void() @@ -13004,64 +12362,62 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): FileCategory._others_validator = bv.Void() FileCategory._other_validator = bv.Void() FileCategory._tagmap = { - "image": FileCategory._image_validator, - "document": FileCategory._document_validator, - "pdf": FileCategory._pdf_validator, - "spreadsheet": FileCategory._spreadsheet_validator, - "presentation": FileCategory._presentation_validator, - "audio": FileCategory._audio_validator, - "video": FileCategory._video_validator, - "folder": FileCategory._folder_validator, - "paper": FileCategory._paper_validator, - "others": FileCategory._others_validator, - "other": FileCategory._other_validator, + 'image': FileCategory._image_validator, + 'document': FileCategory._document_validator, + 'pdf': FileCategory._pdf_validator, + 'spreadsheet': FileCategory._spreadsheet_validator, + 'presentation': FileCategory._presentation_validator, + 'audio': FileCategory._audio_validator, + 'video': FileCategory._video_validator, + 'folder': FileCategory._folder_validator, + 'paper': FileCategory._paper_validator, + 'others': FileCategory._others_validator, + 'other': FileCategory._other_validator, } -FileCategory.image = FileCategory("image") -FileCategory.document = FileCategory("document") -FileCategory.pdf = FileCategory("pdf") -FileCategory.spreadsheet = FileCategory("spreadsheet") -FileCategory.presentation = FileCategory("presentation") -FileCategory.audio = FileCategory("audio") -FileCategory.video = FileCategory("video") -FileCategory.folder = FileCategory("folder") -FileCategory.paper = FileCategory("paper") -FileCategory.others = FileCategory("others") -FileCategory.other = FileCategory("other") +FileCategory.image = FileCategory('image') +FileCategory.document = FileCategory('document') +FileCategory.pdf = FileCategory('pdf') +FileCategory.spreadsheet = FileCategory('spreadsheet') +FileCategory.presentation = FileCategory('presentation') +FileCategory.audio = FileCategory('audio') +FileCategory.video = FileCategory('video') +FileCategory.folder = FileCategory('folder') +FileCategory.paper = FileCategory('paper') +FileCategory.others = FileCategory('others') +FileCategory.other = FileCategory('other') FileLock.content.validator = FileLockContent_validator -FileLock._all_field_names_ = set(["content"]) -FileLock._all_fields_ = [("content", FileLock.content.validator)] +FileLock._all_field_names_ = set(['content']) +FileLock._all_fields_ = [('content', FileLock.content.validator)] FileLockContent._unlocked_validator = bv.Void() FileLockContent._single_user_validator = SingleUserLock_validator FileLockContent._other_validator = bv.Void() FileLockContent._tagmap = { - "unlocked": FileLockContent._unlocked_validator, - "single_user": FileLockContent._single_user_validator, - "other": FileLockContent._other_validator, + 'unlocked': FileLockContent._unlocked_validator, + 'single_user': FileLockContent._single_user_validator, + 'other': FileLockContent._other_validator, } -FileLockContent.unlocked = FileLockContent("unlocked") -FileLockContent.other = FileLockContent("other") +FileLockContent.unlocked = FileLockContent('unlocked') +FileLockContent.other = FileLockContent('other') FileLockMetadata.is_lockholder.validator = bv.Nullable(bv.Boolean()) FileLockMetadata.lockholder_name.validator = bv.Nullable(bv.String()) FileLockMetadata.lockholder_account_id.validator = bv.Nullable(users_common.AccountId_validator) FileLockMetadata.created.validator = bv.Nullable(common.DropboxTimestamp_validator) -FileLockMetadata._all_field_names_ = set( - [ - "is_lockholder", - "lockholder_name", - "lockholder_account_id", - "created", - ] -) +FileLockMetadata._all_field_names_ = set([ + 'is_lockholder', + 'lockholder_name', + 'lockholder_account_id', + 'created', +]) FileLockMetadata._all_fields_ = [ - ("is_lockholder", FileLockMetadata.is_lockholder.validator), - ("lockholder_name", FileLockMetadata.lockholder_name.validator), - ("lockholder_account_id", FileLockMetadata.lockholder_account_id.validator), - ("created", FileLockMetadata.created.validator), + ('is_lockholder', FileLockMetadata.is_lockholder.validator), + ('lockholder_name', FileLockMetadata.lockholder_name.validator), + ('lockholder_account_id', FileLockMetadata.lockholder_account_id.validator), + ('created', FileLockMetadata.created.validator), ] FileMetadata.id.validator = Id_validator @@ -13074,104 +12430,92 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): FileMetadata.sharing_info.validator = bv.Nullable(FileSharingInfo_validator) FileMetadata.is_downloadable.validator = bv.Boolean() FileMetadata.export_info.validator = bv.Nullable(ExportInfo_validator) -FileMetadata.property_groups.validator = bv.Nullable( - bv.List(file_properties.PropertyGroup_validator) -) +FileMetadata.property_groups.validator = bv.Nullable(bv.List(file_properties.PropertyGroup_validator)) FileMetadata.has_explicit_shared_members.validator = bv.Nullable(bv.Boolean()) FileMetadata.content_hash.validator = bv.Nullable(Sha256HexHash_validator) FileMetadata.file_lock_info.validator = bv.Nullable(FileLockMetadata_validator) FileMetadata.is_restorable.validator = bv.Nullable(bv.Boolean()) -FileMetadata._field_names_ = set( - [ - "id", - "client_modified", - "server_modified", - "rev", - "size", - "media_info", - "symlink_info", - "sharing_info", - "is_downloadable", - "export_info", - "property_groups", - "has_explicit_shared_members", - "content_hash", - "file_lock_info", - "is_restorable", - ] -) +FileMetadata._field_names_ = set([ + 'id', + 'client_modified', + 'server_modified', + 'rev', + 'size', + 'media_info', + 'symlink_info', + 'sharing_info', + 'is_downloadable', + 'export_info', + 'property_groups', + 'has_explicit_shared_members', + 'content_hash', + 'file_lock_info', + 'is_restorable', +]) FileMetadata._all_field_names_ = Metadata._all_field_names_.union(FileMetadata._field_names_) FileMetadata._fields_ = [ - ("id", FileMetadata.id.validator), - ("client_modified", FileMetadata.client_modified.validator), - ("server_modified", FileMetadata.server_modified.validator), - ("rev", FileMetadata.rev.validator), - ("size", FileMetadata.size.validator), - ("media_info", FileMetadata.media_info.validator), - ("symlink_info", FileMetadata.symlink_info.validator), - ("sharing_info", FileMetadata.sharing_info.validator), - ("is_downloadable", FileMetadata.is_downloadable.validator), - ("export_info", FileMetadata.export_info.validator), - ("property_groups", FileMetadata.property_groups.validator), - ("has_explicit_shared_members", FileMetadata.has_explicit_shared_members.validator), - ("content_hash", FileMetadata.content_hash.validator), - ("file_lock_info", FileMetadata.file_lock_info.validator), - ("is_restorable", FileMetadata.is_restorable.validator), + ('id', FileMetadata.id.validator), + ('client_modified', FileMetadata.client_modified.validator), + ('server_modified', FileMetadata.server_modified.validator), + ('rev', FileMetadata.rev.validator), + ('size', FileMetadata.size.validator), + ('media_info', FileMetadata.media_info.validator), + ('symlink_info', FileMetadata.symlink_info.validator), + ('sharing_info', FileMetadata.sharing_info.validator), + ('is_downloadable', FileMetadata.is_downloadable.validator), + ('export_info', FileMetadata.export_info.validator), + ('property_groups', FileMetadata.property_groups.validator), + ('has_explicit_shared_members', FileMetadata.has_explicit_shared_members.validator), + ('content_hash', FileMetadata.content_hash.validator), + ('file_lock_info', FileMetadata.file_lock_info.validator), + ('is_restorable', FileMetadata.is_restorable.validator), ] FileMetadata._all_fields_ = Metadata._all_fields_ + FileMetadata._fields_ SharingInfo.read_only.validator = bv.Boolean() -SharingInfo._all_field_names_ = set(["read_only"]) -SharingInfo._all_fields_ = [("read_only", SharingInfo.read_only.validator)] +SharingInfo._all_field_names_ = set(['read_only']) +SharingInfo._all_fields_ = [('read_only', SharingInfo.read_only.validator)] FileSharingInfo.parent_shared_folder_id.validator = common.SharedFolderId_validator FileSharingInfo.modified_by.validator = bv.Nullable(users_common.AccountId_validator) -FileSharingInfo._all_field_names_ = SharingInfo._all_field_names_.union( - set( - [ - "parent_shared_folder_id", - "modified_by", - ] - ) -) +FileSharingInfo._all_field_names_ = SharingInfo._all_field_names_.union(set([ + 'parent_shared_folder_id', + 'modified_by', +])) FileSharingInfo._all_fields_ = SharingInfo._all_fields_ + [ - ("parent_shared_folder_id", FileSharingInfo.parent_shared_folder_id.validator), - ("modified_by", FileSharingInfo.modified_by.validator), + ('parent_shared_folder_id', FileSharingInfo.parent_shared_folder_id.validator), + ('modified_by', FileSharingInfo.modified_by.validator), ] FileStatus._active_validator = bv.Void() FileStatus._deleted_validator = bv.Void() FileStatus._other_validator = bv.Void() FileStatus._tagmap = { - "active": FileStatus._active_validator, - "deleted": FileStatus._deleted_validator, - "other": FileStatus._other_validator, + 'active': FileStatus._active_validator, + 'deleted': FileStatus._deleted_validator, + 'other': FileStatus._other_validator, } -FileStatus.active = FileStatus("active") -FileStatus.deleted = FileStatus("deleted") -FileStatus.other = FileStatus("other") +FileStatus.active = FileStatus('active') +FileStatus.deleted = FileStatus('deleted') +FileStatus.other = FileStatus('other') FolderMetadata.id.validator = Id_validator FolderMetadata.shared_folder_id.validator = bv.Nullable(common.SharedFolderId_validator) FolderMetadata.sharing_info.validator = bv.Nullable(FolderSharingInfo_validator) -FolderMetadata.property_groups.validator = bv.Nullable( - bv.List(file_properties.PropertyGroup_validator) -) -FolderMetadata._field_names_ = set( - [ - "id", - "shared_folder_id", - "sharing_info", - "property_groups", - ] -) +FolderMetadata.property_groups.validator = bv.Nullable(bv.List(file_properties.PropertyGroup_validator)) +FolderMetadata._field_names_ = set([ + 'id', + 'shared_folder_id', + 'sharing_info', + 'property_groups', +]) FolderMetadata._all_field_names_ = Metadata._all_field_names_.union(FolderMetadata._field_names_) FolderMetadata._fields_ = [ - ("id", FolderMetadata.id.validator), - ("shared_folder_id", FolderMetadata.shared_folder_id.validator), - ("sharing_info", FolderMetadata.sharing_info.validator), - ("property_groups", FolderMetadata.property_groups.validator), + ('id', FolderMetadata.id.validator), + ('shared_folder_id', FolderMetadata.shared_folder_id.validator), + ('sharing_info', FolderMetadata.sharing_info.validator), + ('property_groups', FolderMetadata.property_groups.validator), ] FolderMetadata._all_fields_ = Metadata._all_fields_ + FolderMetadata._fields_ @@ -13179,63 +12523,57 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): FolderSharingInfo.shared_folder_id.validator = bv.Nullable(common.SharedFolderId_validator) FolderSharingInfo.traverse_only.validator = bv.Boolean() FolderSharingInfo.no_access.validator = bv.Boolean() -FolderSharingInfo._all_field_names_ = SharingInfo._all_field_names_.union( - set( - [ - "parent_shared_folder_id", - "shared_folder_id", - "traverse_only", - "no_access", - ] - ) -) +FolderSharingInfo._all_field_names_ = SharingInfo._all_field_names_.union(set([ + 'parent_shared_folder_id', + 'shared_folder_id', + 'traverse_only', + 'no_access', +])) FolderSharingInfo._all_fields_ = SharingInfo._all_fields_ + [ - ("parent_shared_folder_id", FolderSharingInfo.parent_shared_folder_id.validator), - ("shared_folder_id", FolderSharingInfo.shared_folder_id.validator), - ("traverse_only", FolderSharingInfo.traverse_only.validator), - ("no_access", FolderSharingInfo.no_access.validator), + ('parent_shared_folder_id', FolderSharingInfo.parent_shared_folder_id.validator), + ('shared_folder_id', FolderSharingInfo.shared_folder_id.validator), + ('traverse_only', FolderSharingInfo.traverse_only.validator), + ('no_access', FolderSharingInfo.no_access.validator), ] GetCopyReferenceArg.path.validator = ReadPath_validator -GetCopyReferenceArg._all_field_names_ = set(["path"]) -GetCopyReferenceArg._all_fields_ = [("path", GetCopyReferenceArg.path.validator)] +GetCopyReferenceArg._all_field_names_ = set(['path']) +GetCopyReferenceArg._all_fields_ = [('path', GetCopyReferenceArg.path.validator)] GetCopyReferenceError._path_validator = LookupError_validator GetCopyReferenceError._other_validator = bv.Void() GetCopyReferenceError._tagmap = { - "path": GetCopyReferenceError._path_validator, - "other": GetCopyReferenceError._other_validator, + 'path': GetCopyReferenceError._path_validator, + 'other': GetCopyReferenceError._other_validator, } -GetCopyReferenceError.other = GetCopyReferenceError("other") +GetCopyReferenceError.other = GetCopyReferenceError('other') GetCopyReferenceResult.metadata.validator = Metadata_validator GetCopyReferenceResult.copy_reference.validator = bv.String() GetCopyReferenceResult.expires.validator = common.DropboxTimestamp_validator -GetCopyReferenceResult._all_field_names_ = set( - [ - "metadata", - "copy_reference", - "expires", - ] -) +GetCopyReferenceResult._all_field_names_ = set([ + 'metadata', + 'copy_reference', + 'expires', +]) GetCopyReferenceResult._all_fields_ = [ - ("metadata", GetCopyReferenceResult.metadata.validator), - ("copy_reference", GetCopyReferenceResult.copy_reference.validator), - ("expires", GetCopyReferenceResult.expires.validator), + ('metadata', GetCopyReferenceResult.metadata.validator), + ('copy_reference', GetCopyReferenceResult.copy_reference.validator), + ('expires', GetCopyReferenceResult.expires.validator), ] GetTagsArg.paths.validator = bv.List(Path_validator) -GetTagsArg._all_field_names_ = set(["paths"]) -GetTagsArg._all_fields_ = [("paths", GetTagsArg.paths.validator)] +GetTagsArg._all_field_names_ = set(['paths']) +GetTagsArg._all_fields_ = [('paths', GetTagsArg.paths.validator)] GetTagsResult.paths_to_tags.validator = bv.List(PathToTags_validator) -GetTagsResult._all_field_names_ = set(["paths_to_tags"]) -GetTagsResult._all_fields_ = [("paths_to_tags", GetTagsResult.paths_to_tags.validator)] +GetTagsResult._all_field_names_ = set(['paths_to_tags']) +GetTagsResult._all_fields_ = [('paths_to_tags', GetTagsResult.paths_to_tags.validator)] GetTemporaryLinkArg.path.validator = ReadPath_validator -GetTemporaryLinkArg._all_field_names_ = set(["path"]) -GetTemporaryLinkArg._all_fields_ = [("path", GetTemporaryLinkArg.path.validator)] +GetTemporaryLinkArg._all_field_names_ = set(['path']) +GetTemporaryLinkArg._all_fields_ = [('path', GetTemporaryLinkArg.path.validator)] GetTemporaryLinkError._path_validator = LookupError_validator GetTemporaryLinkError._email_not_verified_validator = bv.Void() @@ -13243,114 +12581,104 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): GetTemporaryLinkError._not_allowed_validator = bv.Void() GetTemporaryLinkError._other_validator = bv.Void() GetTemporaryLinkError._tagmap = { - "path": GetTemporaryLinkError._path_validator, - "email_not_verified": GetTemporaryLinkError._email_not_verified_validator, - "unsupported_file": GetTemporaryLinkError._unsupported_file_validator, - "not_allowed": GetTemporaryLinkError._not_allowed_validator, - "other": GetTemporaryLinkError._other_validator, + 'path': GetTemporaryLinkError._path_validator, + 'email_not_verified': GetTemporaryLinkError._email_not_verified_validator, + 'unsupported_file': GetTemporaryLinkError._unsupported_file_validator, + 'not_allowed': GetTemporaryLinkError._not_allowed_validator, + 'other': GetTemporaryLinkError._other_validator, } -GetTemporaryLinkError.email_not_verified = GetTemporaryLinkError("email_not_verified") -GetTemporaryLinkError.unsupported_file = GetTemporaryLinkError("unsupported_file") -GetTemporaryLinkError.not_allowed = GetTemporaryLinkError("not_allowed") -GetTemporaryLinkError.other = GetTemporaryLinkError("other") +GetTemporaryLinkError.email_not_verified = GetTemporaryLinkError('email_not_verified') +GetTemporaryLinkError.unsupported_file = GetTemporaryLinkError('unsupported_file') +GetTemporaryLinkError.not_allowed = GetTemporaryLinkError('not_allowed') +GetTemporaryLinkError.other = GetTemporaryLinkError('other') GetTemporaryLinkResult.metadata.validator = FileMetadata_validator GetTemporaryLinkResult.link.validator = bv.String() -GetTemporaryLinkResult._all_field_names_ = set( - [ - "metadata", - "link", - ] -) +GetTemporaryLinkResult._all_field_names_ = set([ + 'metadata', + 'link', +]) GetTemporaryLinkResult._all_fields_ = [ - ("metadata", GetTemporaryLinkResult.metadata.validator), - ("link", GetTemporaryLinkResult.link.validator), + ('metadata', GetTemporaryLinkResult.metadata.validator), + ('link', GetTemporaryLinkResult.link.validator), ] GetTemporaryUploadLinkArg.commit_info.validator = CommitInfo_validator GetTemporaryUploadLinkArg.duration.validator = bv.Float64(min_value=60.0, max_value=14400.0) -GetTemporaryUploadLinkArg._all_field_names_ = set( - [ - "commit_info", - "duration", - ] -) +GetTemporaryUploadLinkArg._all_field_names_ = set([ + 'commit_info', + 'duration', +]) GetTemporaryUploadLinkArg._all_fields_ = [ - ("commit_info", GetTemporaryUploadLinkArg.commit_info.validator), - ("duration", GetTemporaryUploadLinkArg.duration.validator), + ('commit_info', GetTemporaryUploadLinkArg.commit_info.validator), + ('duration', GetTemporaryUploadLinkArg.duration.validator), ] GetTemporaryUploadLinkResult.link.validator = bv.String() -GetTemporaryUploadLinkResult._all_field_names_ = set(["link"]) -GetTemporaryUploadLinkResult._all_fields_ = [("link", GetTemporaryUploadLinkResult.link.validator)] +GetTemporaryUploadLinkResult._all_field_names_ = set(['link']) +GetTemporaryUploadLinkResult._all_fields_ = [('link', GetTemporaryUploadLinkResult.link.validator)] GetThumbnailBatchArg.entries.validator = bv.List(ThumbnailArg_validator) -GetThumbnailBatchArg._all_field_names_ = set(["entries"]) -GetThumbnailBatchArg._all_fields_ = [("entries", GetThumbnailBatchArg.entries.validator)] +GetThumbnailBatchArg._all_field_names_ = set(['entries']) +GetThumbnailBatchArg._all_fields_ = [('entries', GetThumbnailBatchArg.entries.validator)] GetThumbnailBatchError._too_many_files_validator = bv.Void() GetThumbnailBatchError._other_validator = bv.Void() GetThumbnailBatchError._tagmap = { - "too_many_files": GetThumbnailBatchError._too_many_files_validator, - "other": GetThumbnailBatchError._other_validator, + 'too_many_files': GetThumbnailBatchError._too_many_files_validator, + 'other': GetThumbnailBatchError._other_validator, } -GetThumbnailBatchError.too_many_files = GetThumbnailBatchError("too_many_files") -GetThumbnailBatchError.other = GetThumbnailBatchError("other") +GetThumbnailBatchError.too_many_files = GetThumbnailBatchError('too_many_files') +GetThumbnailBatchError.other = GetThumbnailBatchError('other') GetThumbnailBatchResult.entries.validator = bv.List(GetThumbnailBatchResultEntry_validator) -GetThumbnailBatchResult._all_field_names_ = set(["entries"]) -GetThumbnailBatchResult._all_fields_ = [("entries", GetThumbnailBatchResult.entries.validator)] +GetThumbnailBatchResult._all_field_names_ = set(['entries']) +GetThumbnailBatchResult._all_fields_ = [('entries', GetThumbnailBatchResult.entries.validator)] GetThumbnailBatchResultData.metadata.validator = FileMetadata_validator GetThumbnailBatchResultData.thumbnail.validator = bv.String() -GetThumbnailBatchResultData._all_field_names_ = set( - [ - "metadata", - "thumbnail", - ] -) +GetThumbnailBatchResultData._all_field_names_ = set([ + 'metadata', + 'thumbnail', +]) GetThumbnailBatchResultData._all_fields_ = [ - ("metadata", GetThumbnailBatchResultData.metadata.validator), - ("thumbnail", GetThumbnailBatchResultData.thumbnail.validator), + ('metadata', GetThumbnailBatchResultData.metadata.validator), + ('thumbnail', GetThumbnailBatchResultData.thumbnail.validator), ] GetThumbnailBatchResultEntry._success_validator = GetThumbnailBatchResultData_validator GetThumbnailBatchResultEntry._failure_validator = ThumbnailError_validator GetThumbnailBatchResultEntry._other_validator = bv.Void() GetThumbnailBatchResultEntry._tagmap = { - "success": GetThumbnailBatchResultEntry._success_validator, - "failure": GetThumbnailBatchResultEntry._failure_validator, - "other": GetThumbnailBatchResultEntry._other_validator, + 'success': GetThumbnailBatchResultEntry._success_validator, + 'failure': GetThumbnailBatchResultEntry._failure_validator, + 'other': GetThumbnailBatchResultEntry._other_validator, } -GetThumbnailBatchResultEntry.other = GetThumbnailBatchResultEntry("other") +GetThumbnailBatchResultEntry.other = GetThumbnailBatchResultEntry('other') GpsCoordinates.latitude.validator = bv.Float64() GpsCoordinates.longitude.validator = bv.Float64() -GpsCoordinates._all_field_names_ = set( - [ - "latitude", - "longitude", - ] -) +GpsCoordinates._all_field_names_ = set([ + 'latitude', + 'longitude', +]) GpsCoordinates._all_fields_ = [ - ("latitude", GpsCoordinates.latitude.validator), - ("longitude", GpsCoordinates.longitude.validator), + ('latitude', GpsCoordinates.latitude.validator), + ('longitude', GpsCoordinates.longitude.validator), ] HighlightSpan.highlight_str.validator = bv.String() HighlightSpan.is_highlighted.validator = bv.Boolean() -HighlightSpan._all_field_names_ = set( - [ - "highlight_str", - "is_highlighted", - ] -) +HighlightSpan._all_field_names_ = set([ + 'highlight_str', + 'is_highlighted', +]) HighlightSpan._all_fields_ = [ - ("highlight_str", HighlightSpan.highlight_str.validator), - ("is_highlighted", HighlightSpan.is_highlighted.validator), + ('highlight_str', HighlightSpan.highlight_str.validator), + ('is_highlighted', HighlightSpan.is_highlighted.validator), ] ImportFormat._html_validator = bv.Void() @@ -13358,16 +12686,16 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ImportFormat._plain_text_validator = bv.Void() ImportFormat._other_validator = bv.Void() ImportFormat._tagmap = { - "html": ImportFormat._html_validator, - "markdown": ImportFormat._markdown_validator, - "plain_text": ImportFormat._plain_text_validator, - "other": ImportFormat._other_validator, + 'html': ImportFormat._html_validator, + 'markdown': ImportFormat._markdown_validator, + 'plain_text': ImportFormat._plain_text_validator, + 'other': ImportFormat._other_validator, } -ImportFormat.html = ImportFormat("html") -ImportFormat.markdown = ImportFormat("markdown") -ImportFormat.plain_text = ImportFormat("plain_text") -ImportFormat.other = ImportFormat("other") +ImportFormat.html = ImportFormat('html') +ImportFormat.markdown = ImportFormat('markdown') +ImportFormat.plain_text = ImportFormat('plain_text') +ImportFormat.other = ImportFormat('other') ListFolderArg.path.validator = PathROrId_validator ListFolderArg.recursive.validator = bv.Boolean() @@ -13377,129 +12705,111 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ListFolderArg.include_mounted_folders.validator = bv.Boolean() ListFolderArg.limit.validator = bv.Nullable(bv.UInt32(min_value=1, max_value=2000)) ListFolderArg.shared_link.validator = bv.Nullable(SharedLink_validator) -ListFolderArg.include_property_groups.validator = bv.Nullable( - file_properties.TemplateFilterBase_validator -) +ListFolderArg.include_property_groups.validator = bv.Nullable(file_properties.TemplateFilterBase_validator) ListFolderArg.include_non_downloadable_files.validator = bv.Boolean() ListFolderArg.include_restorable_info.validator = bv.Boolean() -ListFolderArg._all_field_names_ = set( - [ - "path", - "recursive", - "include_media_info", - "include_deleted", - "include_has_explicit_shared_members", - "include_mounted_folders", - "limit", - "shared_link", - "include_property_groups", - "include_non_downloadable_files", - "include_restorable_info", - ] -) +ListFolderArg._all_field_names_ = set([ + 'path', + 'recursive', + 'include_media_info', + 'include_deleted', + 'include_has_explicit_shared_members', + 'include_mounted_folders', + 'limit', + 'shared_link', + 'include_property_groups', + 'include_non_downloadable_files', + 'include_restorable_info', +]) ListFolderArg._all_fields_ = [ - ("path", ListFolderArg.path.validator), - ("recursive", ListFolderArg.recursive.validator), - ("include_media_info", ListFolderArg.include_media_info.validator), - ("include_deleted", ListFolderArg.include_deleted.validator), - ( - "include_has_explicit_shared_members", - ListFolderArg.include_has_explicit_shared_members.validator, - ), - ("include_mounted_folders", ListFolderArg.include_mounted_folders.validator), - ("limit", ListFolderArg.limit.validator), - ("shared_link", ListFolderArg.shared_link.validator), - ("include_property_groups", ListFolderArg.include_property_groups.validator), - ( - "include_non_downloadable_files", - ListFolderArg.include_non_downloadable_files.validator, - ), - ("include_restorable_info", ListFolderArg.include_restorable_info.validator), + ('path', ListFolderArg.path.validator), + ('recursive', ListFolderArg.recursive.validator), + ('include_media_info', ListFolderArg.include_media_info.validator), + ('include_deleted', ListFolderArg.include_deleted.validator), + ('include_has_explicit_shared_members', ListFolderArg.include_has_explicit_shared_members.validator), + ('include_mounted_folders', ListFolderArg.include_mounted_folders.validator), + ('limit', ListFolderArg.limit.validator), + ('shared_link', ListFolderArg.shared_link.validator), + ('include_property_groups', ListFolderArg.include_property_groups.validator), + ('include_non_downloadable_files', ListFolderArg.include_non_downloadable_files.validator), + ('include_restorable_info', ListFolderArg.include_restorable_info.validator), ] ListFolderContinueArg.cursor.validator = ListFolderCursor_validator -ListFolderContinueArg._all_field_names_ = set(["cursor"]) -ListFolderContinueArg._all_fields_ = [("cursor", ListFolderContinueArg.cursor.validator)] +ListFolderContinueArg._all_field_names_ = set(['cursor']) +ListFolderContinueArg._all_fields_ = [('cursor', ListFolderContinueArg.cursor.validator)] ListFolderContinueError._path_validator = LookupError_validator ListFolderContinueError._reset_validator = bv.Void() ListFolderContinueError._other_validator = bv.Void() ListFolderContinueError._tagmap = { - "path": ListFolderContinueError._path_validator, - "reset": ListFolderContinueError._reset_validator, - "other": ListFolderContinueError._other_validator, + 'path': ListFolderContinueError._path_validator, + 'reset': ListFolderContinueError._reset_validator, + 'other': ListFolderContinueError._other_validator, } -ListFolderContinueError.reset = ListFolderContinueError("reset") -ListFolderContinueError.other = ListFolderContinueError("other") +ListFolderContinueError.reset = ListFolderContinueError('reset') +ListFolderContinueError.other = ListFolderContinueError('other') ListFolderError._path_validator = LookupError_validator ListFolderError._template_error_validator = file_properties.TemplateError_validator ListFolderError._other_validator = bv.Void() ListFolderError._tagmap = { - "path": ListFolderError._path_validator, - "template_error": ListFolderError._template_error_validator, - "other": ListFolderError._other_validator, + 'path': ListFolderError._path_validator, + 'template_error': ListFolderError._template_error_validator, + 'other': ListFolderError._other_validator, } -ListFolderError.other = ListFolderError("other") +ListFolderError.other = ListFolderError('other') ListFolderGetLatestCursorResult.cursor.validator = ListFolderCursor_validator -ListFolderGetLatestCursorResult._all_field_names_ = set(["cursor"]) -ListFolderGetLatestCursorResult._all_fields_ = [ - ("cursor", ListFolderGetLatestCursorResult.cursor.validator) -] +ListFolderGetLatestCursorResult._all_field_names_ = set(['cursor']) +ListFolderGetLatestCursorResult._all_fields_ = [('cursor', ListFolderGetLatestCursorResult.cursor.validator)] ListFolderLongpollArg.cursor.validator = ListFolderCursor_validator ListFolderLongpollArg.timeout.validator = bv.UInt64(min_value=30, max_value=480) -ListFolderLongpollArg._all_field_names_ = set( - [ - "cursor", - "timeout", - ] -) +ListFolderLongpollArg._all_field_names_ = set([ + 'cursor', + 'timeout', +]) ListFolderLongpollArg._all_fields_ = [ - ("cursor", ListFolderLongpollArg.cursor.validator), - ("timeout", ListFolderLongpollArg.timeout.validator), + ('cursor', ListFolderLongpollArg.cursor.validator), + ('timeout', ListFolderLongpollArg.timeout.validator), ] ListFolderLongpollError._reset_validator = bv.Void() ListFolderLongpollError._other_validator = bv.Void() ListFolderLongpollError._tagmap = { - "reset": ListFolderLongpollError._reset_validator, - "other": ListFolderLongpollError._other_validator, + 'reset': ListFolderLongpollError._reset_validator, + 'other': ListFolderLongpollError._other_validator, } -ListFolderLongpollError.reset = ListFolderLongpollError("reset") -ListFolderLongpollError.other = ListFolderLongpollError("other") +ListFolderLongpollError.reset = ListFolderLongpollError('reset') +ListFolderLongpollError.other = ListFolderLongpollError('other') ListFolderLongpollResult.changes.validator = bv.Boolean() ListFolderLongpollResult.backoff.validator = bv.Nullable(bv.UInt64()) -ListFolderLongpollResult._all_field_names_ = set( - [ - "changes", - "backoff", - ] -) +ListFolderLongpollResult._all_field_names_ = set([ + 'changes', + 'backoff', +]) ListFolderLongpollResult._all_fields_ = [ - ("changes", ListFolderLongpollResult.changes.validator), - ("backoff", ListFolderLongpollResult.backoff.validator), + ('changes', ListFolderLongpollResult.changes.validator), + ('backoff', ListFolderLongpollResult.backoff.validator), ] ListFolderResult.entries.validator = bv.List(Metadata_validator) ListFolderResult.cursor.validator = ListFolderCursor_validator ListFolderResult.has_more.validator = bv.Boolean() -ListFolderResult._all_field_names_ = set( - [ - "entries", - "cursor", - "has_more", - ] -) +ListFolderResult._all_field_names_ = set([ + 'entries', + 'cursor', + 'has_more', +]) ListFolderResult._all_fields_ = [ - ("entries", ListFolderResult.entries.validator), - ("cursor", ListFolderResult.cursor.validator), - ("has_more", ListFolderResult.has_more.validator), + ('entries', ListFolderResult.entries.validator), + ('cursor', ListFolderResult.cursor.validator), + ('has_more', ListFolderResult.has_more.validator), ] ListRevisionsArg.path.validator = PathOrId_validator @@ -13507,21 +12817,19 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ListRevisionsArg.limit.validator = bv.UInt64(min_value=1, max_value=100) ListRevisionsArg.before_rev.validator = bv.Nullable(Rev_validator) ListRevisionsArg.include_restorable_info.validator = bv.Boolean() -ListRevisionsArg._all_field_names_ = set( - [ - "path", - "mode", - "limit", - "before_rev", - "include_restorable_info", - ] -) +ListRevisionsArg._all_field_names_ = set([ + 'path', + 'mode', + 'limit', + 'before_rev', + 'include_restorable_info', +]) ListRevisionsArg._all_fields_ = [ - ("path", ListRevisionsArg.path.validator), - ("mode", ListRevisionsArg.mode.validator), - ("limit", ListRevisionsArg.limit.validator), - ("before_rev", ListRevisionsArg.before_rev.validator), - ("include_restorable_info", ListRevisionsArg.include_restorable_info.validator), + ('path', ListRevisionsArg.path.validator), + ('mode', ListRevisionsArg.mode.validator), + ('limit', ListRevisionsArg.limit.validator), + ('before_rev', ListRevisionsArg.before_rev.validator), + ('include_restorable_info', ListRevisionsArg.include_restorable_info.validator), ] ListRevisionsError._path_validator = LookupError_validator @@ -13529,65 +12837,61 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ListRevisionsError._before_rev_not_supported_validator = bv.Void() ListRevisionsError._other_validator = bv.Void() ListRevisionsError._tagmap = { - "path": ListRevisionsError._path_validator, - "invalid_before_rev": ListRevisionsError._invalid_before_rev_validator, - "before_rev_not_supported": ListRevisionsError._before_rev_not_supported_validator, - "other": ListRevisionsError._other_validator, + 'path': ListRevisionsError._path_validator, + 'invalid_before_rev': ListRevisionsError._invalid_before_rev_validator, + 'before_rev_not_supported': ListRevisionsError._before_rev_not_supported_validator, + 'other': ListRevisionsError._other_validator, } -ListRevisionsError.invalid_before_rev = ListRevisionsError("invalid_before_rev") -ListRevisionsError.before_rev_not_supported = ListRevisionsError("before_rev_not_supported") -ListRevisionsError.other = ListRevisionsError("other") +ListRevisionsError.invalid_before_rev = ListRevisionsError('invalid_before_rev') +ListRevisionsError.before_rev_not_supported = ListRevisionsError('before_rev_not_supported') +ListRevisionsError.other = ListRevisionsError('other') ListRevisionsMode._path_validator = bv.Void() ListRevisionsMode._id_validator = bv.Void() ListRevisionsMode._other_validator = bv.Void() ListRevisionsMode._tagmap = { - "path": ListRevisionsMode._path_validator, - "id": ListRevisionsMode._id_validator, - "other": ListRevisionsMode._other_validator, + 'path': ListRevisionsMode._path_validator, + 'id': ListRevisionsMode._id_validator, + 'other': ListRevisionsMode._other_validator, } -ListRevisionsMode.path = ListRevisionsMode("path") -ListRevisionsMode.id = ListRevisionsMode("id") -ListRevisionsMode.other = ListRevisionsMode("other") +ListRevisionsMode.path = ListRevisionsMode('path') +ListRevisionsMode.id = ListRevisionsMode('id') +ListRevisionsMode.other = ListRevisionsMode('other') ListRevisionsResult.is_deleted.validator = bv.Boolean() ListRevisionsResult.server_deleted.validator = bv.Nullable(common.DropboxTimestamp_validator) ListRevisionsResult.entries.validator = bv.List(FileMetadata_validator) ListRevisionsResult.has_more.validator = bv.Boolean() -ListRevisionsResult._all_field_names_ = set( - [ - "is_deleted", - "server_deleted", - "entries", - "has_more", - ] -) +ListRevisionsResult._all_field_names_ = set([ + 'is_deleted', + 'server_deleted', + 'entries', + 'has_more', +]) ListRevisionsResult._all_fields_ = [ - ("is_deleted", ListRevisionsResult.is_deleted.validator), - ("server_deleted", ListRevisionsResult.server_deleted.validator), - ("entries", ListRevisionsResult.entries.validator), - ("has_more", ListRevisionsResult.has_more.validator), + ('is_deleted', ListRevisionsResult.is_deleted.validator), + ('server_deleted', ListRevisionsResult.server_deleted.validator), + ('entries', ListRevisionsResult.entries.validator), + ('has_more', ListRevisionsResult.has_more.validator), ] LockConflictError.lock.validator = FileLock_validator -LockConflictError._all_field_names_ = set(["lock"]) -LockConflictError._all_fields_ = [("lock", LockConflictError.lock.validator)] +LockConflictError._all_field_names_ = set(['lock']) +LockConflictError._all_fields_ = [('lock', LockConflictError.lock.validator)] LockFileArg.path.validator = WritePathOrId_validator -LockFileArg._all_field_names_ = set(["path"]) -LockFileArg._all_fields_ = [("path", LockFileArg.path.validator)] +LockFileArg._all_field_names_ = set(['path']) +LockFileArg._all_fields_ = [('path', LockFileArg.path.validator)] LockFileBatchArg.entries.validator = bv.List(LockFileArg_validator) -LockFileBatchArg._all_field_names_ = set(["entries"]) -LockFileBatchArg._all_fields_ = [("entries", LockFileBatchArg.entries.validator)] +LockFileBatchArg._all_field_names_ = set(['entries']) +LockFileBatchArg._all_fields_ = [('entries', LockFileBatchArg.entries.validator)] LockFileBatchResult.entries.validator = bv.List(LockFileResultEntry_validator) -LockFileBatchResult._all_field_names_ = FileOpsResult._all_field_names_.union(set(["entries"])) -LockFileBatchResult._all_fields_ = FileOpsResult._all_fields_ + [ - ("entries", LockFileBatchResult.entries.validator) -] +LockFileBatchResult._all_field_names_ = FileOpsResult._all_field_names_.union(set(['entries'])) +LockFileBatchResult._all_fields_ = FileOpsResult._all_fields_ + [('entries', LockFileBatchResult.entries.validator)] LockFileError._path_lookup_validator = LookupError_validator LockFileError._too_many_write_operations_validator = bv.Void() @@ -13599,43 +12903,41 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): LockFileError._internal_error_validator = bv.Void() LockFileError._other_validator = bv.Void() LockFileError._tagmap = { - "path_lookup": LockFileError._path_lookup_validator, - "too_many_write_operations": LockFileError._too_many_write_operations_validator, - "too_many_files": LockFileError._too_many_files_validator, - "no_write_permission": LockFileError._no_write_permission_validator, - "cannot_be_locked": LockFileError._cannot_be_locked_validator, - "file_not_shared": LockFileError._file_not_shared_validator, - "lock_conflict": LockFileError._lock_conflict_validator, - "internal_error": LockFileError._internal_error_validator, - "other": LockFileError._other_validator, + 'path_lookup': LockFileError._path_lookup_validator, + 'too_many_write_operations': LockFileError._too_many_write_operations_validator, + 'too_many_files': LockFileError._too_many_files_validator, + 'no_write_permission': LockFileError._no_write_permission_validator, + 'cannot_be_locked': LockFileError._cannot_be_locked_validator, + 'file_not_shared': LockFileError._file_not_shared_validator, + 'lock_conflict': LockFileError._lock_conflict_validator, + 'internal_error': LockFileError._internal_error_validator, + 'other': LockFileError._other_validator, } -LockFileError.too_many_write_operations = LockFileError("too_many_write_operations") -LockFileError.too_many_files = LockFileError("too_many_files") -LockFileError.no_write_permission = LockFileError("no_write_permission") -LockFileError.cannot_be_locked = LockFileError("cannot_be_locked") -LockFileError.file_not_shared = LockFileError("file_not_shared") -LockFileError.internal_error = LockFileError("internal_error") -LockFileError.other = LockFileError("other") +LockFileError.too_many_write_operations = LockFileError('too_many_write_operations') +LockFileError.too_many_files = LockFileError('too_many_files') +LockFileError.no_write_permission = LockFileError('no_write_permission') +LockFileError.cannot_be_locked = LockFileError('cannot_be_locked') +LockFileError.file_not_shared = LockFileError('file_not_shared') +LockFileError.internal_error = LockFileError('internal_error') +LockFileError.other = LockFileError('other') LockFileResult.metadata.validator = Metadata_validator LockFileResult.lock.validator = FileLock_validator -LockFileResult._all_field_names_ = set( - [ - "metadata", - "lock", - ] -) +LockFileResult._all_field_names_ = set([ + 'metadata', + 'lock', +]) LockFileResult._all_fields_ = [ - ("metadata", LockFileResult.metadata.validator), - ("lock", LockFileResult.lock.validator), + ('metadata', LockFileResult.metadata.validator), + ('lock', LockFileResult.lock.validator), ] LockFileResultEntry._success_validator = LockFileResult_validator LockFileResultEntry._failure_validator = LockFileError_validator LockFileResultEntry._tagmap = { - "success": LockFileResultEntry._success_validator, - "failure": LockFileResultEntry._failure_validator, + 'success': LockFileResultEntry._success_validator, + 'failure': LockFileResultEntry._failure_validator, } LookupError._malformed_path_validator = MalformedPathError_validator @@ -13647,131 +12949,119 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): LookupError._locked_validator = bv.Void() LookupError._other_validator = bv.Void() LookupError._tagmap = { - "malformed_path": LookupError._malformed_path_validator, - "not_found": LookupError._not_found_validator, - "not_file": LookupError._not_file_validator, - "not_folder": LookupError._not_folder_validator, - "restricted_content": LookupError._restricted_content_validator, - "unsupported_content_type": LookupError._unsupported_content_type_validator, - "locked": LookupError._locked_validator, - "other": LookupError._other_validator, + 'malformed_path': LookupError._malformed_path_validator, + 'not_found': LookupError._not_found_validator, + 'not_file': LookupError._not_file_validator, + 'not_folder': LookupError._not_folder_validator, + 'restricted_content': LookupError._restricted_content_validator, + 'unsupported_content_type': LookupError._unsupported_content_type_validator, + 'locked': LookupError._locked_validator, + 'other': LookupError._other_validator, } -LookupError.not_found = LookupError("not_found") -LookupError.not_file = LookupError("not_file") -LookupError.not_folder = LookupError("not_folder") -LookupError.restricted_content = LookupError("restricted_content") -LookupError.unsupported_content_type = LookupError("unsupported_content_type") -LookupError.locked = LookupError("locked") -LookupError.other = LookupError("other") +LookupError.not_found = LookupError('not_found') +LookupError.not_file = LookupError('not_file') +LookupError.not_folder = LookupError('not_folder') +LookupError.restricted_content = LookupError('restricted_content') +LookupError.unsupported_content_type = LookupError('unsupported_content_type') +LookupError.locked = LookupError('locked') +LookupError.other = LookupError('other') MediaInfo._pending_validator = bv.Void() MediaInfo._metadata_validator = MediaMetadata_validator MediaInfo._tagmap = { - "pending": MediaInfo._pending_validator, - "metadata": MediaInfo._metadata_validator, + 'pending': MediaInfo._pending_validator, + 'metadata': MediaInfo._metadata_validator, } -MediaInfo.pending = MediaInfo("pending") +MediaInfo.pending = MediaInfo('pending') MediaMetadata.dimensions.validator = bv.Nullable(Dimensions_validator) MediaMetadata.location.validator = bv.Nullable(GpsCoordinates_validator) MediaMetadata.time_taken.validator = bv.Nullable(common.DropboxTimestamp_validator) -MediaMetadata._field_names_ = set( - [ - "dimensions", - "location", - "time_taken", - ] -) +MediaMetadata._field_names_ = set([ + 'dimensions', + 'location', + 'time_taken', +]) MediaMetadata._all_field_names_ = MediaMetadata._field_names_ MediaMetadata._fields_ = [ - ("dimensions", MediaMetadata.dimensions.validator), - ("location", MediaMetadata.location.validator), - ("time_taken", MediaMetadata.time_taken.validator), + ('dimensions', MediaMetadata.dimensions.validator), + ('location', MediaMetadata.location.validator), + ('time_taken', MediaMetadata.time_taken.validator), ] MediaMetadata._all_fields_ = MediaMetadata._fields_ MediaMetadata._tag_to_subtype_ = { - ("photo",): PhotoMetadata_validator, - ("video",): VideoMetadata_validator, + ('photo',): PhotoMetadata_validator, + ('video',): VideoMetadata_validator, } MediaMetadata._pytype_to_tag_and_subtype_ = { - PhotoMetadata: (("photo",), PhotoMetadata_validator), - VideoMetadata: (("video",), VideoMetadata_validator), + PhotoMetadata: (('photo',), PhotoMetadata_validator), + VideoMetadata: (('video',), VideoMetadata_validator), } MediaMetadata._is_catch_all_ = False MetadataV2._metadata_validator = Metadata_validator MetadataV2._other_validator = bv.Void() MetadataV2._tagmap = { - "metadata": MetadataV2._metadata_validator, - "other": MetadataV2._other_validator, + 'metadata': MetadataV2._metadata_validator, + 'other': MetadataV2._other_validator, } -MetadataV2.other = MetadataV2("other") +MetadataV2.other = MetadataV2('other') MinimalFileLinkMetadata.url.validator = bv.String() MinimalFileLinkMetadata.id.validator = bv.Nullable(Id_validator) MinimalFileLinkMetadata.path.validator = bv.Nullable(bv.String()) MinimalFileLinkMetadata.rev.validator = Rev_validator -MinimalFileLinkMetadata._all_field_names_ = set( - [ - "url", - "id", - "path", - "rev", - ] -) +MinimalFileLinkMetadata._all_field_names_ = set([ + 'url', + 'id', + 'path', + 'rev', +]) MinimalFileLinkMetadata._all_fields_ = [ - ("url", MinimalFileLinkMetadata.url.validator), - ("id", MinimalFileLinkMetadata.id.validator), - ("path", MinimalFileLinkMetadata.path.validator), - ("rev", MinimalFileLinkMetadata.rev.validator), + ('url', MinimalFileLinkMetadata.url.validator), + ('id', MinimalFileLinkMetadata.id.validator), + ('path', MinimalFileLinkMetadata.path.validator), + ('rev', MinimalFileLinkMetadata.rev.validator), ] -RelocationBatchArgBase.entries.validator = bv.List( - RelocationPath_validator, min_items=1, max_items=1000 -) +RelocationBatchArgBase.entries.validator = bv.List(RelocationPath_validator, min_items=1, max_items=1000) RelocationBatchArgBase.autorename.validator = bv.Boolean() -RelocationBatchArgBase._all_field_names_ = set( - [ - "entries", - "autorename", - ] -) +RelocationBatchArgBase._all_field_names_ = set([ + 'entries', + 'autorename', +]) RelocationBatchArgBase._all_fields_ = [ - ("entries", RelocationBatchArgBase.entries.validator), - ("autorename", RelocationBatchArgBase.autorename.validator), + ('entries', RelocationBatchArgBase.entries.validator), + ('autorename', RelocationBatchArgBase.autorename.validator), ] MoveBatchArg.allow_ownership_transfer.validator = bv.Boolean() -MoveBatchArg._all_field_names_ = RelocationBatchArgBase._all_field_names_.union( - set(["allow_ownership_transfer"]) -) -MoveBatchArg._all_fields_ = RelocationBatchArgBase._all_fields_ + [ - ("allow_ownership_transfer", MoveBatchArg.allow_ownership_transfer.validator) -] +MoveBatchArg._all_field_names_ = RelocationBatchArgBase._all_field_names_.union(set(['allow_ownership_transfer'])) +MoveBatchArg._all_fields_ = RelocationBatchArgBase._all_fields_ + [('allow_ownership_transfer', MoveBatchArg.allow_ownership_transfer.validator)] MoveIntoFamilyError._is_shared_folder_validator = bv.Void() MoveIntoFamilyError._other_validator = bv.Void() MoveIntoFamilyError._tagmap = { - "is_shared_folder": MoveIntoFamilyError._is_shared_folder_validator, - "other": MoveIntoFamilyError._other_validator, + 'is_shared_folder': MoveIntoFamilyError._is_shared_folder_validator, + 'other': MoveIntoFamilyError._other_validator, } -MoveIntoFamilyError.is_shared_folder = MoveIntoFamilyError("is_shared_folder") -MoveIntoFamilyError.other = MoveIntoFamilyError("other") +MoveIntoFamilyError.is_shared_folder = MoveIntoFamilyError('is_shared_folder') +MoveIntoFamilyError.other = MoveIntoFamilyError('other') MoveIntoVaultError._is_shared_folder_validator = bv.Void() MoveIntoVaultError._other_validator = bv.Void() MoveIntoVaultError._tagmap = { - "is_shared_folder": MoveIntoVaultError._is_shared_folder_validator, - "other": MoveIntoVaultError._other_validator, + 'is_shared_folder': MoveIntoVaultError._is_shared_folder_validator, + 'other': MoveIntoVaultError._other_validator, } -MoveIntoVaultError.is_shared_folder = MoveIntoVaultError("is_shared_folder") -MoveIntoVaultError.other = MoveIntoVaultError("other") +MoveIntoVaultError.is_shared_folder = MoveIntoVaultError('is_shared_folder') +MoveIntoVaultError.other = MoveIntoVaultError('other') PaperContentError._insufficient_permissions_validator = bv.Void() PaperContentError._content_malformed_validator = bv.Void() @@ -13779,30 +13069,28 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): PaperContentError._image_size_exceeded_validator = bv.Void() PaperContentError._other_validator = bv.Void() PaperContentError._tagmap = { - "insufficient_permissions": PaperContentError._insufficient_permissions_validator, - "content_malformed": PaperContentError._content_malformed_validator, - "doc_length_exceeded": PaperContentError._doc_length_exceeded_validator, - "image_size_exceeded": PaperContentError._image_size_exceeded_validator, - "other": PaperContentError._other_validator, + 'insufficient_permissions': PaperContentError._insufficient_permissions_validator, + 'content_malformed': PaperContentError._content_malformed_validator, + 'doc_length_exceeded': PaperContentError._doc_length_exceeded_validator, + 'image_size_exceeded': PaperContentError._image_size_exceeded_validator, + 'other': PaperContentError._other_validator, } -PaperContentError.insufficient_permissions = PaperContentError("insufficient_permissions") -PaperContentError.content_malformed = PaperContentError("content_malformed") -PaperContentError.doc_length_exceeded = PaperContentError("doc_length_exceeded") -PaperContentError.image_size_exceeded = PaperContentError("image_size_exceeded") -PaperContentError.other = PaperContentError("other") +PaperContentError.insufficient_permissions = PaperContentError('insufficient_permissions') +PaperContentError.content_malformed = PaperContentError('content_malformed') +PaperContentError.doc_length_exceeded = PaperContentError('doc_length_exceeded') +PaperContentError.image_size_exceeded = PaperContentError('image_size_exceeded') +PaperContentError.other = PaperContentError('other') PaperCreateArg.path.validator = Path_validator PaperCreateArg.import_format.validator = ImportFormat_validator -PaperCreateArg._all_field_names_ = set( - [ - "path", - "import_format", - ] -) +PaperCreateArg._all_field_names_ = set([ + 'path', + 'import_format', +]) PaperCreateArg._all_fields_ = [ - ("path", PaperCreateArg.path.validator), - ("import_format", PaperCreateArg.import_format.validator), + ('path', PaperCreateArg.path.validator), + ('import_format', PaperCreateArg.import_format.validator), ] PaperCreateError._invalid_path_validator = bv.Void() @@ -13810,35 +13098,33 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): PaperCreateError._invalid_file_extension_validator = bv.Void() PaperCreateError._paper_disabled_validator = bv.Void() PaperCreateError._tagmap = { - "invalid_path": PaperCreateError._invalid_path_validator, - "email_unverified": PaperCreateError._email_unverified_validator, - "invalid_file_extension": PaperCreateError._invalid_file_extension_validator, - "paper_disabled": PaperCreateError._paper_disabled_validator, + 'invalid_path': PaperCreateError._invalid_path_validator, + 'email_unverified': PaperCreateError._email_unverified_validator, + 'invalid_file_extension': PaperCreateError._invalid_file_extension_validator, + 'paper_disabled': PaperCreateError._paper_disabled_validator, } PaperCreateError._tagmap.update(PaperContentError._tagmap) -PaperCreateError.invalid_path = PaperCreateError("invalid_path") -PaperCreateError.email_unverified = PaperCreateError("email_unverified") -PaperCreateError.invalid_file_extension = PaperCreateError("invalid_file_extension") -PaperCreateError.paper_disabled = PaperCreateError("paper_disabled") +PaperCreateError.invalid_path = PaperCreateError('invalid_path') +PaperCreateError.email_unverified = PaperCreateError('email_unverified') +PaperCreateError.invalid_file_extension = PaperCreateError('invalid_file_extension') +PaperCreateError.paper_disabled = PaperCreateError('paper_disabled') PaperCreateResult.url.validator = bv.String() PaperCreateResult.result_path.validator = bv.String() PaperCreateResult.file_id.validator = FileId_validator PaperCreateResult.paper_revision.validator = bv.Int64() -PaperCreateResult._all_field_names_ = set( - [ - "url", - "result_path", - "file_id", - "paper_revision", - ] -) +PaperCreateResult._all_field_names_ = set([ + 'url', + 'result_path', + 'file_id', + 'paper_revision', +]) PaperCreateResult._all_fields_ = [ - ("url", PaperCreateResult.url.validator), - ("result_path", PaperCreateResult.result_path.validator), - ("file_id", PaperCreateResult.file_id.validator), - ("paper_revision", PaperCreateResult.paper_revision.validator), + ('url', PaperCreateResult.url.validator), + ('result_path', PaperCreateResult.result_path.validator), + ('file_id', PaperCreateResult.file_id.validator), + ('paper_revision', PaperCreateResult.paper_revision.validator), ] PaperDocUpdatePolicy._update_validator = bv.Void() @@ -13847,36 +13133,34 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): PaperDocUpdatePolicy._append_validator = bv.Void() PaperDocUpdatePolicy._other_validator = bv.Void() PaperDocUpdatePolicy._tagmap = { - "update": PaperDocUpdatePolicy._update_validator, - "overwrite": PaperDocUpdatePolicy._overwrite_validator, - "prepend": PaperDocUpdatePolicy._prepend_validator, - "append": PaperDocUpdatePolicy._append_validator, - "other": PaperDocUpdatePolicy._other_validator, + 'update': PaperDocUpdatePolicy._update_validator, + 'overwrite': PaperDocUpdatePolicy._overwrite_validator, + 'prepend': PaperDocUpdatePolicy._prepend_validator, + 'append': PaperDocUpdatePolicy._append_validator, + 'other': PaperDocUpdatePolicy._other_validator, } -PaperDocUpdatePolicy.update = PaperDocUpdatePolicy("update") -PaperDocUpdatePolicy.overwrite = PaperDocUpdatePolicy("overwrite") -PaperDocUpdatePolicy.prepend = PaperDocUpdatePolicy("prepend") -PaperDocUpdatePolicy.append = PaperDocUpdatePolicy("append") -PaperDocUpdatePolicy.other = PaperDocUpdatePolicy("other") +PaperDocUpdatePolicy.update = PaperDocUpdatePolicy('update') +PaperDocUpdatePolicy.overwrite = PaperDocUpdatePolicy('overwrite') +PaperDocUpdatePolicy.prepend = PaperDocUpdatePolicy('prepend') +PaperDocUpdatePolicy.append = PaperDocUpdatePolicy('append') +PaperDocUpdatePolicy.other = PaperDocUpdatePolicy('other') PaperUpdateArg.path.validator = WritePathOrId_validator PaperUpdateArg.import_format.validator = ImportFormat_validator PaperUpdateArg.doc_update_policy.validator = PaperDocUpdatePolicy_validator PaperUpdateArg.paper_revision.validator = bv.Nullable(bv.Int64()) -PaperUpdateArg._all_field_names_ = set( - [ - "path", - "import_format", - "doc_update_policy", - "paper_revision", - ] -) +PaperUpdateArg._all_field_names_ = set([ + 'path', + 'import_format', + 'doc_update_policy', + 'paper_revision', +]) PaperUpdateArg._all_fields_ = [ - ("path", PaperUpdateArg.path.validator), - ("import_format", PaperUpdateArg.import_format.validator), - ("doc_update_policy", PaperUpdateArg.doc_update_policy.validator), - ("paper_revision", PaperUpdateArg.paper_revision.validator), + ('path', PaperUpdateArg.path.validator), + ('import_format', PaperUpdateArg.import_format.validator), + ('doc_update_policy', PaperUpdateArg.doc_update_policy.validator), + ('paper_revision', PaperUpdateArg.paper_revision.validator), ] PaperUpdateError._path_validator = LookupError_validator @@ -13884,43 +13168,41 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): PaperUpdateError._doc_archived_validator = bv.Void() PaperUpdateError._doc_deleted_validator = bv.Void() PaperUpdateError._tagmap = { - "path": PaperUpdateError._path_validator, - "revision_mismatch": PaperUpdateError._revision_mismatch_validator, - "doc_archived": PaperUpdateError._doc_archived_validator, - "doc_deleted": PaperUpdateError._doc_deleted_validator, + 'path': PaperUpdateError._path_validator, + 'revision_mismatch': PaperUpdateError._revision_mismatch_validator, + 'doc_archived': PaperUpdateError._doc_archived_validator, + 'doc_deleted': PaperUpdateError._doc_deleted_validator, } PaperUpdateError._tagmap.update(PaperContentError._tagmap) -PaperUpdateError.revision_mismatch = PaperUpdateError("revision_mismatch") -PaperUpdateError.doc_archived = PaperUpdateError("doc_archived") -PaperUpdateError.doc_deleted = PaperUpdateError("doc_deleted") +PaperUpdateError.revision_mismatch = PaperUpdateError('revision_mismatch') +PaperUpdateError.doc_archived = PaperUpdateError('doc_archived') +PaperUpdateError.doc_deleted = PaperUpdateError('doc_deleted') PaperUpdateResult.paper_revision.validator = bv.Int64() -PaperUpdateResult._all_field_names_ = set(["paper_revision"]) -PaperUpdateResult._all_fields_ = [("paper_revision", PaperUpdateResult.paper_revision.validator)] +PaperUpdateResult._all_field_names_ = set(['paper_revision']) +PaperUpdateResult._all_fields_ = [('paper_revision', PaperUpdateResult.paper_revision.validator)] PathOrLink._path_validator = ReadPath_validator PathOrLink._link_validator = SharedLinkFileInfo_validator PathOrLink._other_validator = bv.Void() PathOrLink._tagmap = { - "path": PathOrLink._path_validator, - "link": PathOrLink._link_validator, - "other": PathOrLink._other_validator, + 'path': PathOrLink._path_validator, + 'link': PathOrLink._link_validator, + 'other': PathOrLink._other_validator, } -PathOrLink.other = PathOrLink("other") +PathOrLink.other = PathOrLink('other') PathToTags.path.validator = Path_validator PathToTags.tags.validator = bv.List(Tag_validator) -PathToTags._all_field_names_ = set( - [ - "path", - "tags", - ] -) +PathToTags._all_field_names_ = set([ + 'path', + 'tags', +]) PathToTags._all_fields_ = [ - ("path", PathToTags.path.validator), - ("tags", PathToTags.tags.validator), + ('path', PathToTags.path.validator), + ('tags', PathToTags.tags.validator), ] PhotoMetadata._field_names_ = set([]) @@ -13930,15 +13212,13 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): PreviewArg.path.validator = ReadPath_validator PreviewArg.rev.validator = bv.Nullable(Rev_validator) -PreviewArg._all_field_names_ = set( - [ - "path", - "rev", - ] -) +PreviewArg._all_field_names_ = set([ + 'path', + 'rev', +]) PreviewArg._all_fields_ = [ - ("path", PreviewArg.path.validator), - ("rev", PreviewArg.rev.validator), + ('path', PreviewArg.path.validator), + ('rev', PreviewArg.rev.validator), ] PreviewError._path_validator = LookupError_validator @@ -13946,73 +13226,61 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): PreviewError._unsupported_extension_validator = bv.Void() PreviewError._unsupported_content_validator = bv.Void() PreviewError._tagmap = { - "path": PreviewError._path_validator, - "in_progress": PreviewError._in_progress_validator, - "unsupported_extension": PreviewError._unsupported_extension_validator, - "unsupported_content": PreviewError._unsupported_content_validator, + 'path': PreviewError._path_validator, + 'in_progress': PreviewError._in_progress_validator, + 'unsupported_extension': PreviewError._unsupported_extension_validator, + 'unsupported_content': PreviewError._unsupported_content_validator, } -PreviewError.in_progress = PreviewError("in_progress") -PreviewError.unsupported_extension = PreviewError("unsupported_extension") -PreviewError.unsupported_content = PreviewError("unsupported_content") +PreviewError.in_progress = PreviewError('in_progress') +PreviewError.unsupported_extension = PreviewError('unsupported_extension') +PreviewError.unsupported_content = PreviewError('unsupported_content') PreviewResult.file_metadata.validator = bv.Nullable(FileMetadata_validator) PreviewResult.link_metadata.validator = bv.Nullable(MinimalFileLinkMetadata_validator) -PreviewResult._all_field_names_ = set( - [ - "file_metadata", - "link_metadata", - ] -) +PreviewResult._all_field_names_ = set([ + 'file_metadata', + 'link_metadata', +]) PreviewResult._all_fields_ = [ - ("file_metadata", PreviewResult.file_metadata.validator), - ("link_metadata", PreviewResult.link_metadata.validator), + ('file_metadata', PreviewResult.file_metadata.validator), + ('link_metadata', PreviewResult.link_metadata.validator), ] RelocationPath.from_path.validator = WritePathOrId_validator RelocationPath.to_path.validator = WritePathOrId_validator -RelocationPath._all_field_names_ = set( - [ - "from_path", - "to_path", - ] -) +RelocationPath._all_field_names_ = set([ + 'from_path', + 'to_path', +]) RelocationPath._all_fields_ = [ - ("from_path", RelocationPath.from_path.validator), - ("to_path", RelocationPath.to_path.validator), + ('from_path', RelocationPath.from_path.validator), + ('to_path', RelocationPath.to_path.validator), ] RelocationArg.allow_shared_folder.validator = bv.Boolean() RelocationArg.autorename.validator = bv.Boolean() RelocationArg.allow_ownership_transfer.validator = bv.Boolean() -RelocationArg._all_field_names_ = RelocationPath._all_field_names_.union( - set( - [ - "allow_shared_folder", - "autorename", - "allow_ownership_transfer", - ] - ) -) +RelocationArg._all_field_names_ = RelocationPath._all_field_names_.union(set([ + 'allow_shared_folder', + 'autorename', + 'allow_ownership_transfer', +])) RelocationArg._all_fields_ = RelocationPath._all_fields_ + [ - ("allow_shared_folder", RelocationArg.allow_shared_folder.validator), - ("autorename", RelocationArg.autorename.validator), - ("allow_ownership_transfer", RelocationArg.allow_ownership_transfer.validator), + ('allow_shared_folder', RelocationArg.allow_shared_folder.validator), + ('autorename', RelocationArg.autorename.validator), + ('allow_ownership_transfer', RelocationArg.allow_ownership_transfer.validator), ] RelocationBatchArg.allow_shared_folder.validator = bv.Boolean() RelocationBatchArg.allow_ownership_transfer.validator = bv.Boolean() -RelocationBatchArg._all_field_names_ = RelocationBatchArgBase._all_field_names_.union( - set( - [ - "allow_shared_folder", - "allow_ownership_transfer", - ] - ) -) +RelocationBatchArg._all_field_names_ = RelocationBatchArgBase._all_field_names_.union(set([ + 'allow_shared_folder', + 'allow_ownership_transfer', +])) RelocationBatchArg._all_fields_ = RelocationBatchArgBase._all_fields_ + [ - ("allow_shared_folder", RelocationBatchArg.allow_shared_folder.validator), - ("allow_ownership_transfer", RelocationBatchArg.allow_ownership_transfer.validator), + ('allow_shared_folder', RelocationBatchArg.allow_shared_folder.validator), + ('allow_ownership_transfer', RelocationBatchArg.allow_ownership_transfer.validator), ] RelocationError._from_lookup_validator = LookupError_validator @@ -14031,156 +13299,142 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): RelocationError._cant_move_into_family_validator = MoveIntoFamilyError_validator RelocationError._other_validator = bv.Void() RelocationError._tagmap = { - "from_lookup": RelocationError._from_lookup_validator, - "from_write": RelocationError._from_write_validator, - "to": RelocationError._to_validator, - "cant_copy_shared_folder": RelocationError._cant_copy_shared_folder_validator, - "cant_nest_shared_folder": RelocationError._cant_nest_shared_folder_validator, - "cant_move_folder_into_itself": RelocationError._cant_move_folder_into_itself_validator, - "too_many_files": RelocationError._too_many_files_validator, - "duplicated_or_nested_paths": RelocationError._duplicated_or_nested_paths_validator, - "cant_transfer_ownership": RelocationError._cant_transfer_ownership_validator, - "insufficient_quota": RelocationError._insufficient_quota_validator, - "internal_error": RelocationError._internal_error_validator, - "cant_move_shared_folder": RelocationError._cant_move_shared_folder_validator, - "cant_move_into_vault": RelocationError._cant_move_into_vault_validator, - "cant_move_into_family": RelocationError._cant_move_into_family_validator, - "other": RelocationError._other_validator, + 'from_lookup': RelocationError._from_lookup_validator, + 'from_write': RelocationError._from_write_validator, + 'to': RelocationError._to_validator, + 'cant_copy_shared_folder': RelocationError._cant_copy_shared_folder_validator, + 'cant_nest_shared_folder': RelocationError._cant_nest_shared_folder_validator, + 'cant_move_folder_into_itself': RelocationError._cant_move_folder_into_itself_validator, + 'too_many_files': RelocationError._too_many_files_validator, + 'duplicated_or_nested_paths': RelocationError._duplicated_or_nested_paths_validator, + 'cant_transfer_ownership': RelocationError._cant_transfer_ownership_validator, + 'insufficient_quota': RelocationError._insufficient_quota_validator, + 'internal_error': RelocationError._internal_error_validator, + 'cant_move_shared_folder': RelocationError._cant_move_shared_folder_validator, + 'cant_move_into_vault': RelocationError._cant_move_into_vault_validator, + 'cant_move_into_family': RelocationError._cant_move_into_family_validator, + 'other': RelocationError._other_validator, } -RelocationError.cant_copy_shared_folder = RelocationError("cant_copy_shared_folder") -RelocationError.cant_nest_shared_folder = RelocationError("cant_nest_shared_folder") -RelocationError.cant_move_folder_into_itself = RelocationError("cant_move_folder_into_itself") -RelocationError.too_many_files = RelocationError("too_many_files") -RelocationError.duplicated_or_nested_paths = RelocationError("duplicated_or_nested_paths") -RelocationError.cant_transfer_ownership = RelocationError("cant_transfer_ownership") -RelocationError.insufficient_quota = RelocationError("insufficient_quota") -RelocationError.internal_error = RelocationError("internal_error") -RelocationError.cant_move_shared_folder = RelocationError("cant_move_shared_folder") -RelocationError.other = RelocationError("other") +RelocationError.cant_copy_shared_folder = RelocationError('cant_copy_shared_folder') +RelocationError.cant_nest_shared_folder = RelocationError('cant_nest_shared_folder') +RelocationError.cant_move_folder_into_itself = RelocationError('cant_move_folder_into_itself') +RelocationError.too_many_files = RelocationError('too_many_files') +RelocationError.duplicated_or_nested_paths = RelocationError('duplicated_or_nested_paths') +RelocationError.cant_transfer_ownership = RelocationError('cant_transfer_ownership') +RelocationError.insufficient_quota = RelocationError('insufficient_quota') +RelocationError.internal_error = RelocationError('internal_error') +RelocationError.cant_move_shared_folder = RelocationError('cant_move_shared_folder') +RelocationError.other = RelocationError('other') RelocationBatchError._too_many_write_operations_validator = bv.Void() RelocationBatchError._tagmap = { - "too_many_write_operations": RelocationBatchError._too_many_write_operations_validator, + 'too_many_write_operations': RelocationBatchError._too_many_write_operations_validator, } RelocationBatchError._tagmap.update(RelocationError._tagmap) -RelocationBatchError.too_many_write_operations = RelocationBatchError("too_many_write_operations") +RelocationBatchError.too_many_write_operations = RelocationBatchError('too_many_write_operations') RelocationBatchErrorEntry._relocation_error_validator = RelocationError_validator RelocationBatchErrorEntry._internal_error_validator = bv.Void() RelocationBatchErrorEntry._too_many_write_operations_validator = bv.Void() RelocationBatchErrorEntry._other_validator = bv.Void() RelocationBatchErrorEntry._tagmap = { - "relocation_error": RelocationBatchErrorEntry._relocation_error_validator, - "internal_error": RelocationBatchErrorEntry._internal_error_validator, - "too_many_write_operations": RelocationBatchErrorEntry._too_many_write_operations_validator, - "other": RelocationBatchErrorEntry._other_validator, + 'relocation_error': RelocationBatchErrorEntry._relocation_error_validator, + 'internal_error': RelocationBatchErrorEntry._internal_error_validator, + 'too_many_write_operations': RelocationBatchErrorEntry._too_many_write_operations_validator, + 'other': RelocationBatchErrorEntry._other_validator, } -RelocationBatchErrorEntry.internal_error = RelocationBatchErrorEntry("internal_error") -RelocationBatchErrorEntry.too_many_write_operations = RelocationBatchErrorEntry( - "too_many_write_operations" -) -RelocationBatchErrorEntry.other = RelocationBatchErrorEntry("other") +RelocationBatchErrorEntry.internal_error = RelocationBatchErrorEntry('internal_error') +RelocationBatchErrorEntry.too_many_write_operations = RelocationBatchErrorEntry('too_many_write_operations') +RelocationBatchErrorEntry.other = RelocationBatchErrorEntry('other') RelocationBatchJobStatus._complete_validator = RelocationBatchResult_validator RelocationBatchJobStatus._failed_validator = RelocationBatchError_validator RelocationBatchJobStatus._tagmap = { - "complete": RelocationBatchJobStatus._complete_validator, - "failed": RelocationBatchJobStatus._failed_validator, + 'complete': RelocationBatchJobStatus._complete_validator, + 'failed': RelocationBatchJobStatus._failed_validator, } RelocationBatchJobStatus._tagmap.update(async_.PollResultBase._tagmap) RelocationBatchLaunch._complete_validator = RelocationBatchResult_validator RelocationBatchLaunch._other_validator = bv.Void() RelocationBatchLaunch._tagmap = { - "complete": RelocationBatchLaunch._complete_validator, - "other": RelocationBatchLaunch._other_validator, + 'complete': RelocationBatchLaunch._complete_validator, + 'other': RelocationBatchLaunch._other_validator, } RelocationBatchLaunch._tagmap.update(async_.LaunchResultBase._tagmap) -RelocationBatchLaunch.other = RelocationBatchLaunch("other") +RelocationBatchLaunch.other = RelocationBatchLaunch('other') RelocationBatchResult.entries.validator = bv.List(RelocationBatchResultData_validator) -RelocationBatchResult._all_field_names_ = FileOpsResult._all_field_names_.union(set(["entries"])) -RelocationBatchResult._all_fields_ = FileOpsResult._all_fields_ + [ - ("entries", RelocationBatchResult.entries.validator) -] +RelocationBatchResult._all_field_names_ = FileOpsResult._all_field_names_.union(set(['entries'])) +RelocationBatchResult._all_fields_ = FileOpsResult._all_fields_ + [('entries', RelocationBatchResult.entries.validator)] RelocationBatchResultData.metadata.validator = Metadata_validator -RelocationBatchResultData._all_field_names_ = set(["metadata"]) -RelocationBatchResultData._all_fields_ = [ - ("metadata", RelocationBatchResultData.metadata.validator) -] +RelocationBatchResultData._all_field_names_ = set(['metadata']) +RelocationBatchResultData._all_fields_ = [('metadata', RelocationBatchResultData.metadata.validator)] RelocationBatchResultEntry._success_validator = Metadata_validator RelocationBatchResultEntry._failure_validator = RelocationBatchErrorEntry_validator RelocationBatchResultEntry._other_validator = bv.Void() RelocationBatchResultEntry._tagmap = { - "success": RelocationBatchResultEntry._success_validator, - "failure": RelocationBatchResultEntry._failure_validator, - "other": RelocationBatchResultEntry._other_validator, + 'success': RelocationBatchResultEntry._success_validator, + 'failure': RelocationBatchResultEntry._failure_validator, + 'other': RelocationBatchResultEntry._other_validator, } -RelocationBatchResultEntry.other = RelocationBatchResultEntry("other") +RelocationBatchResultEntry.other = RelocationBatchResultEntry('other') RelocationBatchV2JobStatus._complete_validator = RelocationBatchV2Result_validator RelocationBatchV2JobStatus._tagmap = { - "complete": RelocationBatchV2JobStatus._complete_validator, + 'complete': RelocationBatchV2JobStatus._complete_validator, } RelocationBatchV2JobStatus._tagmap.update(async_.PollResultBase._tagmap) RelocationBatchV2Launch._complete_validator = RelocationBatchV2Result_validator RelocationBatchV2Launch._tagmap = { - "complete": RelocationBatchV2Launch._complete_validator, + 'complete': RelocationBatchV2Launch._complete_validator, } RelocationBatchV2Launch._tagmap.update(async_.LaunchResultBase._tagmap) RelocationBatchV2Result.entries.validator = bv.List(RelocationBatchResultEntry_validator) -RelocationBatchV2Result._all_field_names_ = FileOpsResult._all_field_names_.union(set(["entries"])) -RelocationBatchV2Result._all_fields_ = FileOpsResult._all_fields_ + [ - ("entries", RelocationBatchV2Result.entries.validator) -] +RelocationBatchV2Result._all_field_names_ = FileOpsResult._all_field_names_.union(set(['entries'])) +RelocationBatchV2Result._all_fields_ = FileOpsResult._all_fields_ + [('entries', RelocationBatchV2Result.entries.validator)] RelocationResult.metadata.validator = Metadata_validator -RelocationResult._all_field_names_ = FileOpsResult._all_field_names_.union(set(["metadata"])) -RelocationResult._all_fields_ = FileOpsResult._all_fields_ + [ - ("metadata", RelocationResult.metadata.validator) -] +RelocationResult._all_field_names_ = FileOpsResult._all_field_names_.union(set(['metadata'])) +RelocationResult._all_fields_ = FileOpsResult._all_fields_ + [('metadata', RelocationResult.metadata.validator)] RemoveTagArg.path.validator = Path_validator RemoveTagArg.tag_text.validator = TagText_validator -RemoveTagArg._all_field_names_ = set( - [ - "path", - "tag_text", - ] -) +RemoveTagArg._all_field_names_ = set([ + 'path', + 'tag_text', +]) RemoveTagArg._all_fields_ = [ - ("path", RemoveTagArg.path.validator), - ("tag_text", RemoveTagArg.tag_text.validator), + ('path', RemoveTagArg.path.validator), + ('tag_text', RemoveTagArg.tag_text.validator), ] RemoveTagError._tag_not_present_validator = bv.Void() RemoveTagError._tagmap = { - "tag_not_present": RemoveTagError._tag_not_present_validator, + 'tag_not_present': RemoveTagError._tag_not_present_validator, } RemoveTagError._tagmap.update(BaseTagError._tagmap) -RemoveTagError.tag_not_present = RemoveTagError("tag_not_present") +RemoveTagError.tag_not_present = RemoveTagError('tag_not_present') RestoreArg.path.validator = WritePath_validator RestoreArg.rev.validator = Rev_validator -RestoreArg._all_field_names_ = set( - [ - "path", - "rev", - ] -) +RestoreArg._all_field_names_ = set([ + 'path', + 'rev', +]) RestoreArg._all_fields_ = [ - ("path", RestoreArg.path.validator), - ("rev", RestoreArg.rev.validator), + ('path', RestoreArg.path.validator), + ('rev', RestoreArg.rev.validator), ] RestoreError._path_lookup_validator = LookupError_validator @@ -14189,28 +13443,26 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): RestoreError._in_progress_validator = bv.Void() RestoreError._other_validator = bv.Void() RestoreError._tagmap = { - "path_lookup": RestoreError._path_lookup_validator, - "path_write": RestoreError._path_write_validator, - "invalid_revision": RestoreError._invalid_revision_validator, - "in_progress": RestoreError._in_progress_validator, - "other": RestoreError._other_validator, + 'path_lookup': RestoreError._path_lookup_validator, + 'path_write': RestoreError._path_write_validator, + 'invalid_revision': RestoreError._invalid_revision_validator, + 'in_progress': RestoreError._in_progress_validator, + 'other': RestoreError._other_validator, } -RestoreError.invalid_revision = RestoreError("invalid_revision") -RestoreError.in_progress = RestoreError("in_progress") -RestoreError.other = RestoreError("other") +RestoreError.invalid_revision = RestoreError('invalid_revision') +RestoreError.in_progress = RestoreError('in_progress') +RestoreError.other = RestoreError('other') SaveCopyReferenceArg.copy_reference.validator = bv.String() SaveCopyReferenceArg.path.validator = Path_validator -SaveCopyReferenceArg._all_field_names_ = set( - [ - "copy_reference", - "path", - ] -) +SaveCopyReferenceArg._all_field_names_ = set([ + 'copy_reference', + 'path', +]) SaveCopyReferenceArg._all_fields_ = [ - ("copy_reference", SaveCopyReferenceArg.copy_reference.validator), - ("path", SaveCopyReferenceArg.path.validator), + ('copy_reference', SaveCopyReferenceArg.copy_reference.validator), + ('path', SaveCopyReferenceArg.path.validator), ] SaveCopyReferenceError._path_validator = WriteError_validator @@ -14220,35 +13472,33 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): SaveCopyReferenceError._too_many_files_validator = bv.Void() SaveCopyReferenceError._other_validator = bv.Void() SaveCopyReferenceError._tagmap = { - "path": SaveCopyReferenceError._path_validator, - "invalid_copy_reference": SaveCopyReferenceError._invalid_copy_reference_validator, - "no_permission": SaveCopyReferenceError._no_permission_validator, - "not_found": SaveCopyReferenceError._not_found_validator, - "too_many_files": SaveCopyReferenceError._too_many_files_validator, - "other": SaveCopyReferenceError._other_validator, + 'path': SaveCopyReferenceError._path_validator, + 'invalid_copy_reference': SaveCopyReferenceError._invalid_copy_reference_validator, + 'no_permission': SaveCopyReferenceError._no_permission_validator, + 'not_found': SaveCopyReferenceError._not_found_validator, + 'too_many_files': SaveCopyReferenceError._too_many_files_validator, + 'other': SaveCopyReferenceError._other_validator, } -SaveCopyReferenceError.invalid_copy_reference = SaveCopyReferenceError("invalid_copy_reference") -SaveCopyReferenceError.no_permission = SaveCopyReferenceError("no_permission") -SaveCopyReferenceError.not_found = SaveCopyReferenceError("not_found") -SaveCopyReferenceError.too_many_files = SaveCopyReferenceError("too_many_files") -SaveCopyReferenceError.other = SaveCopyReferenceError("other") +SaveCopyReferenceError.invalid_copy_reference = SaveCopyReferenceError('invalid_copy_reference') +SaveCopyReferenceError.no_permission = SaveCopyReferenceError('no_permission') +SaveCopyReferenceError.not_found = SaveCopyReferenceError('not_found') +SaveCopyReferenceError.too_many_files = SaveCopyReferenceError('too_many_files') +SaveCopyReferenceError.other = SaveCopyReferenceError('other') SaveCopyReferenceResult.metadata.validator = Metadata_validator -SaveCopyReferenceResult._all_field_names_ = set(["metadata"]) -SaveCopyReferenceResult._all_fields_ = [("metadata", SaveCopyReferenceResult.metadata.validator)] +SaveCopyReferenceResult._all_field_names_ = set(['metadata']) +SaveCopyReferenceResult._all_fields_ = [('metadata', SaveCopyReferenceResult.metadata.validator)] SaveUrlArg.path.validator = Path_validator SaveUrlArg.url.validator = bv.String() -SaveUrlArg._all_field_names_ = set( - [ - "path", - "url", - ] -) +SaveUrlArg._all_field_names_ = set([ + 'path', + 'url', +]) SaveUrlArg._all_fields_ = [ - ("path", SaveUrlArg.path.validator), - ("url", SaveUrlArg.url.validator), + ('path', SaveUrlArg.path.validator), + ('url', SaveUrlArg.url.validator), ] SaveUrlError._path_validator = WriteError_validator @@ -14257,29 +13507,29 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): SaveUrlError._not_found_validator = bv.Void() SaveUrlError._other_validator = bv.Void() SaveUrlError._tagmap = { - "path": SaveUrlError._path_validator, - "download_failed": SaveUrlError._download_failed_validator, - "invalid_url": SaveUrlError._invalid_url_validator, - "not_found": SaveUrlError._not_found_validator, - "other": SaveUrlError._other_validator, + 'path': SaveUrlError._path_validator, + 'download_failed': SaveUrlError._download_failed_validator, + 'invalid_url': SaveUrlError._invalid_url_validator, + 'not_found': SaveUrlError._not_found_validator, + 'other': SaveUrlError._other_validator, } -SaveUrlError.download_failed = SaveUrlError("download_failed") -SaveUrlError.invalid_url = SaveUrlError("invalid_url") -SaveUrlError.not_found = SaveUrlError("not_found") -SaveUrlError.other = SaveUrlError("other") +SaveUrlError.download_failed = SaveUrlError('download_failed') +SaveUrlError.invalid_url = SaveUrlError('invalid_url') +SaveUrlError.not_found = SaveUrlError('not_found') +SaveUrlError.other = SaveUrlError('other') SaveUrlJobStatus._complete_validator = FileMetadata_validator SaveUrlJobStatus._failed_validator = SaveUrlError_validator SaveUrlJobStatus._tagmap = { - "complete": SaveUrlJobStatus._complete_validator, - "failed": SaveUrlJobStatus._failed_validator, + 'complete': SaveUrlJobStatus._complete_validator, + 'failed': SaveUrlJobStatus._failed_validator, } SaveUrlJobStatus._tagmap.update(async_.PollResultBase._tagmap) SaveUrlResult._complete_validator = FileMetadata_validator SaveUrlResult._tagmap = { - "complete": SaveUrlResult._complete_validator, + 'complete': SaveUrlResult._complete_validator, } SaveUrlResult._tagmap.update(async_.LaunchResultBase._tagmap) @@ -14288,21 +13538,19 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): SearchArg.start.validator = bv.UInt64(max_value=9999) SearchArg.max_results.validator = bv.UInt64(min_value=1, max_value=1000) SearchArg.mode.validator = SearchMode_validator -SearchArg._all_field_names_ = set( - [ - "path", - "query", - "start", - "max_results", - "mode", - ] -) +SearchArg._all_field_names_ = set([ + 'path', + 'query', + 'start', + 'max_results', + 'mode', +]) SearchArg._all_fields_ = [ - ("path", SearchArg.path.validator), - ("query", SearchArg.query.validator), - ("start", SearchArg.start.validator), - ("max_results", SearchArg.max_results.validator), - ("mode", SearchArg.mode.validator), + ('path', SearchArg.path.validator), + ('query', SearchArg.query.validator), + ('start', SearchArg.start.validator), + ('max_results', SearchArg.max_results.validator), + ('mode', SearchArg.mode.validator), ] SearchError._path_validator = LookupError_validator @@ -14310,46 +13558,42 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): SearchError._internal_error_validator = bv.Void() SearchError._other_validator = bv.Void() SearchError._tagmap = { - "path": SearchError._path_validator, - "invalid_argument": SearchError._invalid_argument_validator, - "internal_error": SearchError._internal_error_validator, - "other": SearchError._other_validator, + 'path': SearchError._path_validator, + 'invalid_argument': SearchError._invalid_argument_validator, + 'internal_error': SearchError._internal_error_validator, + 'other': SearchError._other_validator, } -SearchError.internal_error = SearchError("internal_error") -SearchError.other = SearchError("other") +SearchError.internal_error = SearchError('internal_error') +SearchError.other = SearchError('other') SearchMatch.match_type.validator = SearchMatchType_validator SearchMatch.metadata.validator = Metadata_validator -SearchMatch._all_field_names_ = set( - [ - "match_type", - "metadata", - ] -) +SearchMatch._all_field_names_ = set([ + 'match_type', + 'metadata', +]) SearchMatch._all_fields_ = [ - ("match_type", SearchMatch.match_type.validator), - ("metadata", SearchMatch.metadata.validator), + ('match_type', SearchMatch.match_type.validator), + ('metadata', SearchMatch.metadata.validator), ] SearchMatchFieldOptions.include_highlights.validator = bv.Boolean() -SearchMatchFieldOptions._all_field_names_ = set(["include_highlights"]) -SearchMatchFieldOptions._all_fields_ = [ - ("include_highlights", SearchMatchFieldOptions.include_highlights.validator) -] +SearchMatchFieldOptions._all_field_names_ = set(['include_highlights']) +SearchMatchFieldOptions._all_fields_ = [('include_highlights', SearchMatchFieldOptions.include_highlights.validator)] SearchMatchType._filename_validator = bv.Void() SearchMatchType._content_validator = bv.Void() SearchMatchType._both_validator = bv.Void() SearchMatchType._tagmap = { - "filename": SearchMatchType._filename_validator, - "content": SearchMatchType._content_validator, - "both": SearchMatchType._both_validator, + 'filename': SearchMatchType._filename_validator, + 'content': SearchMatchType._content_validator, + 'both': SearchMatchType._both_validator, } -SearchMatchType.filename = SearchMatchType("filename") -SearchMatchType.content = SearchMatchType("content") -SearchMatchType.both = SearchMatchType("both") +SearchMatchType.filename = SearchMatchType('filename') +SearchMatchType.content = SearchMatchType('content') +SearchMatchType.both = SearchMatchType('both') SearchMatchTypeV2._filename_validator = bv.Void() SearchMatchTypeV2._file_content_validator = bv.Void() @@ -14358,49 +13602,47 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): SearchMatchTypeV2._metadata_validator = bv.Void() SearchMatchTypeV2._other_validator = bv.Void() SearchMatchTypeV2._tagmap = { - "filename": SearchMatchTypeV2._filename_validator, - "file_content": SearchMatchTypeV2._file_content_validator, - "filename_and_content": SearchMatchTypeV2._filename_and_content_validator, - "image_content": SearchMatchTypeV2._image_content_validator, - "metadata": SearchMatchTypeV2._metadata_validator, - "other": SearchMatchTypeV2._other_validator, + 'filename': SearchMatchTypeV2._filename_validator, + 'file_content': SearchMatchTypeV2._file_content_validator, + 'filename_and_content': SearchMatchTypeV2._filename_and_content_validator, + 'image_content': SearchMatchTypeV2._image_content_validator, + 'metadata': SearchMatchTypeV2._metadata_validator, + 'other': SearchMatchTypeV2._other_validator, } -SearchMatchTypeV2.filename = SearchMatchTypeV2("filename") -SearchMatchTypeV2.file_content = SearchMatchTypeV2("file_content") -SearchMatchTypeV2.filename_and_content = SearchMatchTypeV2("filename_and_content") -SearchMatchTypeV2.image_content = SearchMatchTypeV2("image_content") -SearchMatchTypeV2.metadata = SearchMatchTypeV2("metadata") -SearchMatchTypeV2.other = SearchMatchTypeV2("other") +SearchMatchTypeV2.filename = SearchMatchTypeV2('filename') +SearchMatchTypeV2.file_content = SearchMatchTypeV2('file_content') +SearchMatchTypeV2.filename_and_content = SearchMatchTypeV2('filename_and_content') +SearchMatchTypeV2.image_content = SearchMatchTypeV2('image_content') +SearchMatchTypeV2.metadata = SearchMatchTypeV2('metadata') +SearchMatchTypeV2.other = SearchMatchTypeV2('other') SearchMatchV2.metadata.validator = MetadataV2_validator SearchMatchV2.match_type.validator = bv.Nullable(SearchMatchTypeV2_validator) SearchMatchV2.highlight_spans.validator = bv.Nullable(bv.List(HighlightSpan_validator)) -SearchMatchV2._all_field_names_ = set( - [ - "metadata", - "match_type", - "highlight_spans", - ] -) +SearchMatchV2._all_field_names_ = set([ + 'metadata', + 'match_type', + 'highlight_spans', +]) SearchMatchV2._all_fields_ = [ - ("metadata", SearchMatchV2.metadata.validator), - ("match_type", SearchMatchV2.match_type.validator), - ("highlight_spans", SearchMatchV2.highlight_spans.validator), + ('metadata', SearchMatchV2.metadata.validator), + ('match_type', SearchMatchV2.match_type.validator), + ('highlight_spans', SearchMatchV2.highlight_spans.validator), ] SearchMode._filename_validator = bv.Void() SearchMode._filename_and_content_validator = bv.Void() SearchMode._deleted_filename_validator = bv.Void() SearchMode._tagmap = { - "filename": SearchMode._filename_validator, - "filename_and_content": SearchMode._filename_and_content_validator, - "deleted_filename": SearchMode._deleted_filename_validator, + 'filename': SearchMode._filename_validator, + 'filename_and_content': SearchMode._filename_and_content_validator, + 'deleted_filename': SearchMode._deleted_filename_validator, } -SearchMode.filename = SearchMode("filename") -SearchMode.filename_and_content = SearchMode("filename_and_content") -SearchMode.deleted_filename = SearchMode("deleted_filename") +SearchMode.filename = SearchMode('filename') +SearchMode.filename_and_content = SearchMode('filename_and_content') +SearchMode.deleted_filename = SearchMode('deleted_filename') SearchOptions.path.validator = bv.Nullable(PathROrId_validator) SearchOptions.max_results.validator = bv.UInt64(min_value=1, max_value=1000) @@ -14410,198 +13652,184 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): SearchOptions.file_extensions.validator = bv.Nullable(bv.List(bv.String())) SearchOptions.file_categories.validator = bv.Nullable(bv.List(FileCategory_validator)) SearchOptions.account_id.validator = bv.Nullable(users_common.AccountId_validator) -SearchOptions._all_field_names_ = set( - [ - "path", - "max_results", - "order_by", - "file_status", - "filename_only", - "file_extensions", - "file_categories", - "account_id", - ] -) +SearchOptions._all_field_names_ = set([ + 'path', + 'max_results', + 'order_by', + 'file_status', + 'filename_only', + 'file_extensions', + 'file_categories', + 'account_id', +]) SearchOptions._all_fields_ = [ - ("path", SearchOptions.path.validator), - ("max_results", SearchOptions.max_results.validator), - ("order_by", SearchOptions.order_by.validator), - ("file_status", SearchOptions.file_status.validator), - ("filename_only", SearchOptions.filename_only.validator), - ("file_extensions", SearchOptions.file_extensions.validator), - ("file_categories", SearchOptions.file_categories.validator), - ("account_id", SearchOptions.account_id.validator), + ('path', SearchOptions.path.validator), + ('max_results', SearchOptions.max_results.validator), + ('order_by', SearchOptions.order_by.validator), + ('file_status', SearchOptions.file_status.validator), + ('filename_only', SearchOptions.filename_only.validator), + ('file_extensions', SearchOptions.file_extensions.validator), + ('file_categories', SearchOptions.file_categories.validator), + ('account_id', SearchOptions.account_id.validator), ] SearchOrderBy._relevance_validator = bv.Void() SearchOrderBy._last_modified_time_validator = bv.Void() SearchOrderBy._other_validator = bv.Void() SearchOrderBy._tagmap = { - "relevance": SearchOrderBy._relevance_validator, - "last_modified_time": SearchOrderBy._last_modified_time_validator, - "other": SearchOrderBy._other_validator, + 'relevance': SearchOrderBy._relevance_validator, + 'last_modified_time': SearchOrderBy._last_modified_time_validator, + 'other': SearchOrderBy._other_validator, } -SearchOrderBy.relevance = SearchOrderBy("relevance") -SearchOrderBy.last_modified_time = SearchOrderBy("last_modified_time") -SearchOrderBy.other = SearchOrderBy("other") +SearchOrderBy.relevance = SearchOrderBy('relevance') +SearchOrderBy.last_modified_time = SearchOrderBy('last_modified_time') +SearchOrderBy.other = SearchOrderBy('other') SearchResult.matches.validator = bv.List(SearchMatch_validator) SearchResult.more.validator = bv.Boolean() SearchResult.start.validator = bv.UInt64() -SearchResult._all_field_names_ = set( - [ - "matches", - "more", - "start", - ] -) +SearchResult._all_field_names_ = set([ + 'matches', + 'more', + 'start', +]) SearchResult._all_fields_ = [ - ("matches", SearchResult.matches.validator), - ("more", SearchResult.more.validator), - ("start", SearchResult.start.validator), + ('matches', SearchResult.matches.validator), + ('more', SearchResult.more.validator), + ('start', SearchResult.start.validator), ] SearchV2Arg.query.validator = bv.String(max_length=1000) SearchV2Arg.options.validator = bv.Nullable(SearchOptions_validator) SearchV2Arg.match_field_options.validator = bv.Nullable(SearchMatchFieldOptions_validator) SearchV2Arg.include_highlights.validator = bv.Nullable(bv.Boolean()) -SearchV2Arg._all_field_names_ = set( - [ - "query", - "options", - "match_field_options", - "include_highlights", - ] -) +SearchV2Arg._all_field_names_ = set([ + 'query', + 'options', + 'match_field_options', + 'include_highlights', +]) SearchV2Arg._all_fields_ = [ - ("query", SearchV2Arg.query.validator), - ("options", SearchV2Arg.options.validator), - ("match_field_options", SearchV2Arg.match_field_options.validator), - ("include_highlights", SearchV2Arg.include_highlights.validator), + ('query', SearchV2Arg.query.validator), + ('options', SearchV2Arg.options.validator), + ('match_field_options', SearchV2Arg.match_field_options.validator), + ('include_highlights', SearchV2Arg.include_highlights.validator), ] SearchV2ContinueArg.cursor.validator = SearchV2Cursor_validator -SearchV2ContinueArg._all_field_names_ = set(["cursor"]) -SearchV2ContinueArg._all_fields_ = [("cursor", SearchV2ContinueArg.cursor.validator)] +SearchV2ContinueArg._all_field_names_ = set(['cursor']) +SearchV2ContinueArg._all_fields_ = [('cursor', SearchV2ContinueArg.cursor.validator)] SearchV2Result.matches.validator = bv.List(SearchMatchV2_validator) SearchV2Result.has_more.validator = bv.Boolean() SearchV2Result.cursor.validator = bv.Nullable(SearchV2Cursor_validator) -SearchV2Result._all_field_names_ = set( - [ - "matches", - "has_more", - "cursor", - ] -) +SearchV2Result._all_field_names_ = set([ + 'matches', + 'has_more', + 'cursor', +]) SearchV2Result._all_fields_ = [ - ("matches", SearchV2Result.matches.validator), - ("has_more", SearchV2Result.has_more.validator), - ("cursor", SearchV2Result.cursor.validator), + ('matches', SearchV2Result.matches.validator), + ('has_more', SearchV2Result.has_more.validator), + ('cursor', SearchV2Result.cursor.validator), ] SharedLink.url.validator = SharedLinkUrl_validator SharedLink.password.validator = bv.Nullable(bv.String()) -SharedLink._all_field_names_ = set( - [ - "url", - "password", - ] -) +SharedLink._all_field_names_ = set([ + 'url', + 'password', +]) SharedLink._all_fields_ = [ - ("url", SharedLink.url.validator), - ("password", SharedLink.password.validator), + ('url', SharedLink.url.validator), + ('password', SharedLink.password.validator), ] SharedLinkFileInfo.url.validator = bv.String() SharedLinkFileInfo.path.validator = bv.Nullable(bv.String()) SharedLinkFileInfo.password.validator = bv.Nullable(bv.String()) -SharedLinkFileInfo._all_field_names_ = set( - [ - "url", - "path", - "password", - ] -) +SharedLinkFileInfo._all_field_names_ = set([ + 'url', + 'path', + 'password', +]) SharedLinkFileInfo._all_fields_ = [ - ("url", SharedLinkFileInfo.url.validator), - ("path", SharedLinkFileInfo.path.validator), - ("password", SharedLinkFileInfo.password.validator), + ('url', SharedLinkFileInfo.url.validator), + ('path', SharedLinkFileInfo.path.validator), + ('password', SharedLinkFileInfo.password.validator), ] SingleUserLock.created.validator = common.DropboxTimestamp_validator SingleUserLock.lock_holder_account_id.validator = users_common.AccountId_validator SingleUserLock.lock_holder_team_id.validator = bv.Nullable(bv.String()) -SingleUserLock._all_field_names_ = set( - [ - "created", - "lock_holder_account_id", - "lock_holder_team_id", - ] -) +SingleUserLock._all_field_names_ = set([ + 'created', + 'lock_holder_account_id', + 'lock_holder_team_id', +]) SingleUserLock._all_fields_ = [ - ("created", SingleUserLock.created.validator), - ("lock_holder_account_id", SingleUserLock.lock_holder_account_id.validator), - ("lock_holder_team_id", SingleUserLock.lock_holder_team_id.validator), + ('created', SingleUserLock.created.validator), + ('lock_holder_account_id', SingleUserLock.lock_holder_account_id.validator), + ('lock_holder_team_id', SingleUserLock.lock_holder_team_id.validator), ] SymlinkInfo.target.validator = bv.String() -SymlinkInfo._all_field_names_ = set(["target"]) -SymlinkInfo._all_fields_ = [("target", SymlinkInfo.target.validator)] +SymlinkInfo._all_field_names_ = set(['target']) +SymlinkInfo._all_fields_ = [('target', SymlinkInfo.target.validator)] SyncSetting._default_validator = bv.Void() SyncSetting._not_synced_validator = bv.Void() SyncSetting._not_synced_inactive_validator = bv.Void() SyncSetting._other_validator = bv.Void() SyncSetting._tagmap = { - "default": SyncSetting._default_validator, - "not_synced": SyncSetting._not_synced_validator, - "not_synced_inactive": SyncSetting._not_synced_inactive_validator, - "other": SyncSetting._other_validator, + 'default': SyncSetting._default_validator, + 'not_synced': SyncSetting._not_synced_validator, + 'not_synced_inactive': SyncSetting._not_synced_inactive_validator, + 'other': SyncSetting._other_validator, } -SyncSetting.default = SyncSetting("default") -SyncSetting.not_synced = SyncSetting("not_synced") -SyncSetting.not_synced_inactive = SyncSetting("not_synced_inactive") -SyncSetting.other = SyncSetting("other") +SyncSetting.default = SyncSetting('default') +SyncSetting.not_synced = SyncSetting('not_synced') +SyncSetting.not_synced_inactive = SyncSetting('not_synced_inactive') +SyncSetting.other = SyncSetting('other') SyncSettingArg._default_validator = bv.Void() SyncSettingArg._not_synced_validator = bv.Void() SyncSettingArg._other_validator = bv.Void() SyncSettingArg._tagmap = { - "default": SyncSettingArg._default_validator, - "not_synced": SyncSettingArg._not_synced_validator, - "other": SyncSettingArg._other_validator, + 'default': SyncSettingArg._default_validator, + 'not_synced': SyncSettingArg._not_synced_validator, + 'other': SyncSettingArg._other_validator, } -SyncSettingArg.default = SyncSettingArg("default") -SyncSettingArg.not_synced = SyncSettingArg("not_synced") -SyncSettingArg.other = SyncSettingArg("other") +SyncSettingArg.default = SyncSettingArg('default') +SyncSettingArg.not_synced = SyncSettingArg('not_synced') +SyncSettingArg.other = SyncSettingArg('other') SyncSettingsError._path_validator = LookupError_validator SyncSettingsError._unsupported_combination_validator = bv.Void() SyncSettingsError._unsupported_configuration_validator = bv.Void() SyncSettingsError._other_validator = bv.Void() SyncSettingsError._tagmap = { - "path": SyncSettingsError._path_validator, - "unsupported_combination": SyncSettingsError._unsupported_combination_validator, - "unsupported_configuration": SyncSettingsError._unsupported_configuration_validator, - "other": SyncSettingsError._other_validator, + 'path': SyncSettingsError._path_validator, + 'unsupported_combination': SyncSettingsError._unsupported_combination_validator, + 'unsupported_configuration': SyncSettingsError._unsupported_configuration_validator, + 'other': SyncSettingsError._other_validator, } -SyncSettingsError.unsupported_combination = SyncSettingsError("unsupported_combination") -SyncSettingsError.unsupported_configuration = SyncSettingsError("unsupported_configuration") -SyncSettingsError.other = SyncSettingsError("other") +SyncSettingsError.unsupported_combination = SyncSettingsError('unsupported_combination') +SyncSettingsError.unsupported_configuration = SyncSettingsError('unsupported_configuration') +SyncSettingsError.other = SyncSettingsError('other') Tag._user_generated_tag_validator = UserGeneratedTag_validator Tag._other_validator = bv.Void() Tag._tagmap = { - "user_generated_tag": Tag._user_generated_tag_validator, - "other": Tag._other_validator, + 'user_generated_tag': Tag._user_generated_tag_validator, + 'other': Tag._other_validator, } -Tag.other = Tag("other") +Tag.other = Tag('other') ThumbnailArg.path.validator = ReadPath_validator ThumbnailArg.format.validator = ThumbnailFormat_validator @@ -14609,24 +13837,22 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ThumbnailArg.mode.validator = ThumbnailMode_validator ThumbnailArg.quality.validator = ThumbnailQuality_validator ThumbnailArg.exclude_media_info.validator = bv.Nullable(bv.Boolean()) -ThumbnailArg._all_field_names_ = set( - [ - "path", - "format", - "size", - "mode", - "exclude_media_info", - ] -) +ThumbnailArg._all_field_names_ = set([ + 'path', + 'format', + 'size', + 'mode', + 'exclude_media_info', +]) ThumbnailArg._all_fields_ = [ - ("path", ThumbnailArg.path.validator), - ("format", ThumbnailArg.format.validator), - ("size", ThumbnailArg.size.validator), - ("mode", ThumbnailArg.mode.validator), - ("exclude_media_info", ThumbnailArg.exclude_media_info.validator), + ('path', ThumbnailArg.path.validator), + ('format', ThumbnailArg.format.validator), + ('size', ThumbnailArg.size.validator), + ('mode', ThumbnailArg.mode.validator), + ('exclude_media_info', ThumbnailArg.exclude_media_info.validator), ] -ThumbnailArg._all_internal_field_names_ = set(["quality"]) -ThumbnailArg._all_internal_fields_ = [("quality", ThumbnailArg.quality.validator)] +ThumbnailArg._all_internal_field_names_ = set(['quality']) +ThumbnailArg._all_internal_fields_ = [('quality', ThumbnailArg.quality.validator)] ThumbnailError._path_validator = LookupError_validator ThumbnailError._unsupported_extension_validator = bv.Void() @@ -14634,56 +13860,56 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ThumbnailError._encrypted_content_validator = bv.Void() ThumbnailError._conversion_error_validator = bv.Void() ThumbnailError._tagmap = { - "path": ThumbnailError._path_validator, - "unsupported_extension": ThumbnailError._unsupported_extension_validator, - "unsupported_image": ThumbnailError._unsupported_image_validator, - "encrypted_content": ThumbnailError._encrypted_content_validator, - "conversion_error": ThumbnailError._conversion_error_validator, + 'path': ThumbnailError._path_validator, + 'unsupported_extension': ThumbnailError._unsupported_extension_validator, + 'unsupported_image': ThumbnailError._unsupported_image_validator, + 'encrypted_content': ThumbnailError._encrypted_content_validator, + 'conversion_error': ThumbnailError._conversion_error_validator, } -ThumbnailError.unsupported_extension = ThumbnailError("unsupported_extension") -ThumbnailError.unsupported_image = ThumbnailError("unsupported_image") -ThumbnailError.encrypted_content = ThumbnailError("encrypted_content") -ThumbnailError.conversion_error = ThumbnailError("conversion_error") +ThumbnailError.unsupported_extension = ThumbnailError('unsupported_extension') +ThumbnailError.unsupported_image = ThumbnailError('unsupported_image') +ThumbnailError.encrypted_content = ThumbnailError('encrypted_content') +ThumbnailError.conversion_error = ThumbnailError('conversion_error') ThumbnailFormat._jpeg_validator = bv.Void() ThumbnailFormat._png_validator = bv.Void() ThumbnailFormat._webp_validator = bv.Void() ThumbnailFormat._tagmap = { - "jpeg": ThumbnailFormat._jpeg_validator, - "png": ThumbnailFormat._png_validator, - "webp": ThumbnailFormat._webp_validator, + 'jpeg': ThumbnailFormat._jpeg_validator, + 'png': ThumbnailFormat._png_validator, + 'webp': ThumbnailFormat._webp_validator, } -ThumbnailFormat.jpeg = ThumbnailFormat("jpeg") -ThumbnailFormat.png = ThumbnailFormat("png") -ThumbnailFormat.webp = ThumbnailFormat("webp") +ThumbnailFormat.jpeg = ThumbnailFormat('jpeg') +ThumbnailFormat.png = ThumbnailFormat('png') +ThumbnailFormat.webp = ThumbnailFormat('webp') ThumbnailMode._strict_validator = bv.Void() ThumbnailMode._bestfit_validator = bv.Void() ThumbnailMode._fitone_bestfit_validator = bv.Void() ThumbnailMode._original_validator = bv.Void() ThumbnailMode._tagmap = { - "strict": ThumbnailMode._strict_validator, - "bestfit": ThumbnailMode._bestfit_validator, - "fitone_bestfit": ThumbnailMode._fitone_bestfit_validator, - "original": ThumbnailMode._original_validator, + 'strict': ThumbnailMode._strict_validator, + 'bestfit': ThumbnailMode._bestfit_validator, + 'fitone_bestfit': ThumbnailMode._fitone_bestfit_validator, + 'original': ThumbnailMode._original_validator, } -ThumbnailMode.strict = ThumbnailMode("strict") -ThumbnailMode.bestfit = ThumbnailMode("bestfit") -ThumbnailMode.fitone_bestfit = ThumbnailMode("fitone_bestfit") -ThumbnailMode.original = ThumbnailMode("original") +ThumbnailMode.strict = ThumbnailMode('strict') +ThumbnailMode.bestfit = ThumbnailMode('bestfit') +ThumbnailMode.fitone_bestfit = ThumbnailMode('fitone_bestfit') +ThumbnailMode.original = ThumbnailMode('original') ThumbnailQuality._quality_80_validator = bv.Void() ThumbnailQuality._quality_90_validator = bv.Void() ThumbnailQuality._tagmap = { - "quality_80": ThumbnailQuality._quality_80_validator, - "quality_90": ThumbnailQuality._quality_90_validator, + 'quality_80': ThumbnailQuality._quality_80_validator, + 'quality_90': ThumbnailQuality._quality_90_validator, } -ThumbnailQuality.quality_80 = ThumbnailQuality("quality_80") -ThumbnailQuality.quality_90 = ThumbnailQuality("quality_90") +ThumbnailQuality.quality_80 = ThumbnailQuality('quality_80') +ThumbnailQuality.quality_90 = ThumbnailQuality('quality_90') ThumbnailSize._w32h32_validator = bv.Void() ThumbnailSize._w64h64_validator = bv.Void() @@ -14695,32 +13921,32 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ThumbnailSize._w1024h768_validator = bv.Void() ThumbnailSize._w2048h1536_validator = bv.Void() ThumbnailSize._w3200h2400_validator = bv.Void() -ThumbnailSize._permissioned_tagmaps = {"internal"} +ThumbnailSize._permissioned_tagmaps = {'internal'} ThumbnailSize._tagmap = { - "w32h32": ThumbnailSize._w32h32_validator, - "w64h64": ThumbnailSize._w64h64_validator, - "w128h128": ThumbnailSize._w128h128_validator, - "w256h256": ThumbnailSize._w256h256_validator, - "w480h320": ThumbnailSize._w480h320_validator, - "w640h480": ThumbnailSize._w640h480_validator, - "w960h640": ThumbnailSize._w960h640_validator, - "w1024h768": ThumbnailSize._w1024h768_validator, - "w2048h1536": ThumbnailSize._w2048h1536_validator, + 'w32h32': ThumbnailSize._w32h32_validator, + 'w64h64': ThumbnailSize._w64h64_validator, + 'w128h128': ThumbnailSize._w128h128_validator, + 'w256h256': ThumbnailSize._w256h256_validator, + 'w480h320': ThumbnailSize._w480h320_validator, + 'w640h480': ThumbnailSize._w640h480_validator, + 'w960h640': ThumbnailSize._w960h640_validator, + 'w1024h768': ThumbnailSize._w1024h768_validator, + 'w2048h1536': ThumbnailSize._w2048h1536_validator, } ThumbnailSize._internal_tagmap = { - "w3200h2400": ThumbnailSize._w3200h2400_validator, + 'w3200h2400': ThumbnailSize._w3200h2400_validator, } -ThumbnailSize.w32h32 = ThumbnailSize("w32h32") -ThumbnailSize.w64h64 = ThumbnailSize("w64h64") -ThumbnailSize.w128h128 = ThumbnailSize("w128h128") -ThumbnailSize.w256h256 = ThumbnailSize("w256h256") -ThumbnailSize.w480h320 = ThumbnailSize("w480h320") -ThumbnailSize.w640h480 = ThumbnailSize("w640h480") -ThumbnailSize.w960h640 = ThumbnailSize("w960h640") -ThumbnailSize.w1024h768 = ThumbnailSize("w1024h768") -ThumbnailSize.w2048h1536 = ThumbnailSize("w2048h1536") -ThumbnailSize.w3200h2400 = ThumbnailSize("w3200h2400") +ThumbnailSize.w32h32 = ThumbnailSize('w32h32') +ThumbnailSize.w64h64 = ThumbnailSize('w64h64') +ThumbnailSize.w128h128 = ThumbnailSize('w128h128') +ThumbnailSize.w256h256 = ThumbnailSize('w256h256') +ThumbnailSize.w480h320 = ThumbnailSize('w480h320') +ThumbnailSize.w640h480 = ThumbnailSize('w640h480') +ThumbnailSize.w960h640 = ThumbnailSize('w960h640') +ThumbnailSize.w1024h768 = ThumbnailSize('w1024h768') +ThumbnailSize.w2048h1536 = ThumbnailSize('w2048h1536') +ThumbnailSize.w3200h2400 = ThumbnailSize('w3200h2400') ThumbnailV2Arg.resource.validator = PathOrLink_validator ThumbnailV2Arg.format.validator = ThumbnailFormat_validator @@ -14728,24 +13954,22 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ThumbnailV2Arg.mode.validator = ThumbnailMode_validator ThumbnailV2Arg.quality.validator = ThumbnailQuality_validator ThumbnailV2Arg.exclude_media_info.validator = bv.Nullable(bv.Boolean()) -ThumbnailV2Arg._all_field_names_ = set( - [ - "resource", - "format", - "size", - "mode", - "exclude_media_info", - ] -) +ThumbnailV2Arg._all_field_names_ = set([ + 'resource', + 'format', + 'size', + 'mode', + 'exclude_media_info', +]) ThumbnailV2Arg._all_fields_ = [ - ("resource", ThumbnailV2Arg.resource.validator), - ("format", ThumbnailV2Arg.format.validator), - ("size", ThumbnailV2Arg.size.validator), - ("mode", ThumbnailV2Arg.mode.validator), - ("exclude_media_info", ThumbnailV2Arg.exclude_media_info.validator), + ('resource', ThumbnailV2Arg.resource.validator), + ('format', ThumbnailV2Arg.format.validator), + ('size', ThumbnailV2Arg.size.validator), + ('mode', ThumbnailV2Arg.mode.validator), + ('exclude_media_info', ThumbnailV2Arg.exclude_media_info.validator), ] -ThumbnailV2Arg._all_internal_field_names_ = set(["quality"]) -ThumbnailV2Arg._all_internal_fields_ = [("quality", ThumbnailV2Arg.quality.validator)] +ThumbnailV2Arg._all_internal_field_names_ = set(['quality']) +ThumbnailV2Arg._all_internal_fields_ = [('quality', ThumbnailV2Arg.quality.validator)] ThumbnailV2Error._path_validator = LookupError_validator ThumbnailV2Error._unsupported_extension_validator = bv.Void() @@ -14756,37 +13980,35 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ThumbnailV2Error._not_found_validator = bv.Void() ThumbnailV2Error._other_validator = bv.Void() ThumbnailV2Error._tagmap = { - "path": ThumbnailV2Error._path_validator, - "unsupported_extension": ThumbnailV2Error._unsupported_extension_validator, - "unsupported_image": ThumbnailV2Error._unsupported_image_validator, - "encrypted_content": ThumbnailV2Error._encrypted_content_validator, - "conversion_error": ThumbnailV2Error._conversion_error_validator, - "access_denied": ThumbnailV2Error._access_denied_validator, - "not_found": ThumbnailV2Error._not_found_validator, - "other": ThumbnailV2Error._other_validator, + 'path': ThumbnailV2Error._path_validator, + 'unsupported_extension': ThumbnailV2Error._unsupported_extension_validator, + 'unsupported_image': ThumbnailV2Error._unsupported_image_validator, + 'encrypted_content': ThumbnailV2Error._encrypted_content_validator, + 'conversion_error': ThumbnailV2Error._conversion_error_validator, + 'access_denied': ThumbnailV2Error._access_denied_validator, + 'not_found': ThumbnailV2Error._not_found_validator, + 'other': ThumbnailV2Error._other_validator, } -ThumbnailV2Error.unsupported_extension = ThumbnailV2Error("unsupported_extension") -ThumbnailV2Error.unsupported_image = ThumbnailV2Error("unsupported_image") -ThumbnailV2Error.encrypted_content = ThumbnailV2Error("encrypted_content") -ThumbnailV2Error.conversion_error = ThumbnailV2Error("conversion_error") -ThumbnailV2Error.access_denied = ThumbnailV2Error("access_denied") -ThumbnailV2Error.not_found = ThumbnailV2Error("not_found") -ThumbnailV2Error.other = ThumbnailV2Error("other") +ThumbnailV2Error.unsupported_extension = ThumbnailV2Error('unsupported_extension') +ThumbnailV2Error.unsupported_image = ThumbnailV2Error('unsupported_image') +ThumbnailV2Error.encrypted_content = ThumbnailV2Error('encrypted_content') +ThumbnailV2Error.conversion_error = ThumbnailV2Error('conversion_error') +ThumbnailV2Error.access_denied = ThumbnailV2Error('access_denied') +ThumbnailV2Error.not_found = ThumbnailV2Error('not_found') +ThumbnailV2Error.other = ThumbnailV2Error('other') UnlockFileArg.path.validator = WritePathOrId_validator -UnlockFileArg._all_field_names_ = set(["path"]) -UnlockFileArg._all_fields_ = [("path", UnlockFileArg.path.validator)] +UnlockFileArg._all_field_names_ = set(['path']) +UnlockFileArg._all_fields_ = [('path', UnlockFileArg.path.validator)] UnlockFileBatchArg.entries.validator = bv.List(UnlockFileArg_validator) -UnlockFileBatchArg._all_field_names_ = set(["entries"]) -UnlockFileBatchArg._all_fields_ = [("entries", UnlockFileBatchArg.entries.validator)] +UnlockFileBatchArg._all_field_names_ = set(['entries']) +UnlockFileBatchArg._all_fields_ = [('entries', UnlockFileBatchArg.entries.validator)] UploadArg.content_hash.validator = bv.Nullable(Sha256HexHash_validator) -UploadArg._all_field_names_ = CommitInfo._all_field_names_.union(set(["content_hash"])) -UploadArg._all_fields_ = CommitInfo._all_fields_ + [ - ("content_hash", UploadArg.content_hash.validator) -] +UploadArg._all_field_names_ = CommitInfo._all_field_names_.union(set(['content_hash'])) +UploadArg._all_fields_ = CommitInfo._all_fields_ + [('content_hash', UploadArg.content_hash.validator)] UploadError._path_validator = UploadWriteFailed_validator UploadError._properties_error_validator = file_properties.InvalidPropertyGroupError_validator @@ -14795,64 +14017,56 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): UploadError._encryption_not_supported_validator = bv.Void() UploadError._other_validator = bv.Void() UploadError._tagmap = { - "path": UploadError._path_validator, - "properties_error": UploadError._properties_error_validator, - "payload_too_large": UploadError._payload_too_large_validator, - "content_hash_mismatch": UploadError._content_hash_mismatch_validator, - "encryption_not_supported": UploadError._encryption_not_supported_validator, - "other": UploadError._other_validator, + 'path': UploadError._path_validator, + 'properties_error': UploadError._properties_error_validator, + 'payload_too_large': UploadError._payload_too_large_validator, + 'content_hash_mismatch': UploadError._content_hash_mismatch_validator, + 'encryption_not_supported': UploadError._encryption_not_supported_validator, + 'other': UploadError._other_validator, } -UploadError.payload_too_large = UploadError("payload_too_large") -UploadError.content_hash_mismatch = UploadError("content_hash_mismatch") -UploadError.encryption_not_supported = UploadError("encryption_not_supported") -UploadError.other = UploadError("other") +UploadError.payload_too_large = UploadError('payload_too_large') +UploadError.content_hash_mismatch = UploadError('content_hash_mismatch') +UploadError.encryption_not_supported = UploadError('encryption_not_supported') +UploadError.other = UploadError('other') UploadSessionAppendArg.cursor.validator = UploadSessionCursor_validator UploadSessionAppendArg.close.validator = bv.Boolean() UploadSessionAppendArg.content_hash.validator = bv.Nullable(Sha256HexHash_validator) -UploadSessionAppendArg._all_field_names_ = set( - [ - "cursor", - "close", - "content_hash", - ] -) +UploadSessionAppendArg._all_field_names_ = set([ + 'cursor', + 'close', + 'content_hash', +]) UploadSessionAppendArg._all_fields_ = [ - ("cursor", UploadSessionAppendArg.cursor.validator), - ("close", UploadSessionAppendArg.close.validator), - ("content_hash", UploadSessionAppendArg.content_hash.validator), + ('cursor', UploadSessionAppendArg.cursor.validator), + ('close', UploadSessionAppendArg.close.validator), + ('content_hash', UploadSessionAppendArg.content_hash.validator), ] -UploadSessionAppendBatchArg.entries.validator = bv.List( - UploadSessionAppendBatchArgEntry_validator, max_items=1000 -) +UploadSessionAppendBatchArg.entries.validator = bv.List(UploadSessionAppendBatchArgEntry_validator, max_items=1000) UploadSessionAppendBatchArg.content_hash.validator = bv.Nullable(Sha256HexHash_validator) -UploadSessionAppendBatchArg._all_field_names_ = set( - [ - "entries", - "content_hash", - ] -) +UploadSessionAppendBatchArg._all_field_names_ = set([ + 'entries', + 'content_hash', +]) UploadSessionAppendBatchArg._all_fields_ = [ - ("entries", UploadSessionAppendBatchArg.entries.validator), - ("content_hash", UploadSessionAppendBatchArg.content_hash.validator), + ('entries', UploadSessionAppendBatchArg.entries.validator), + ('content_hash', UploadSessionAppendBatchArg.content_hash.validator), ] UploadSessionAppendBatchArgEntry.cursor.validator = UploadSessionCursor_validator UploadSessionAppendBatchArgEntry.length.validator = bv.UInt64() UploadSessionAppendBatchArgEntry.close.validator = bv.Boolean() -UploadSessionAppendBatchArgEntry._all_field_names_ = set( - [ - "cursor", - "length", - "close", - ] -) +UploadSessionAppendBatchArgEntry._all_field_names_ = set([ + 'cursor', + 'length', + 'close', +]) UploadSessionAppendBatchArgEntry._all_fields_ = [ - ("cursor", UploadSessionAppendBatchArgEntry.cursor.validator), - ("length", UploadSessionAppendBatchArgEntry.length.validator), - ("close", UploadSessionAppendBatchArgEntry.close.validator), + ('cursor', UploadSessionAppendBatchArgEntry.cursor.validator), + ('length', UploadSessionAppendBatchArgEntry.length.validator), + ('close', UploadSessionAppendBatchArgEntry.close.validator), ] UploadSessionAppendBatchEntryError._not_found_validator = bv.Void() @@ -14863,62 +14077,50 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): UploadSessionAppendBatchEntryError._concurrent_session_invalid_data_size_validator = bv.Void() UploadSessionAppendBatchEntryError._other_validator = bv.Void() UploadSessionAppendBatchEntryError._tagmap = { - "not_found": UploadSessionAppendBatchEntryError._not_found_validator, - "incorrect_offset": UploadSessionAppendBatchEntryError._incorrect_offset_validator, - "closed": UploadSessionAppendBatchEntryError._closed_validator, - "too_large": UploadSessionAppendBatchEntryError._too_large_validator, - "concurrent_session_invalid_offset": UploadSessionAppendBatchEntryError._concurrent_session_invalid_offset_validator, - "concurrent_session_invalid_data_size": UploadSessionAppendBatchEntryError._concurrent_session_invalid_data_size_validator, - "other": UploadSessionAppendBatchEntryError._other_validator, + 'not_found': UploadSessionAppendBatchEntryError._not_found_validator, + 'incorrect_offset': UploadSessionAppendBatchEntryError._incorrect_offset_validator, + 'closed': UploadSessionAppendBatchEntryError._closed_validator, + 'too_large': UploadSessionAppendBatchEntryError._too_large_validator, + 'concurrent_session_invalid_offset': UploadSessionAppendBatchEntryError._concurrent_session_invalid_offset_validator, + 'concurrent_session_invalid_data_size': UploadSessionAppendBatchEntryError._concurrent_session_invalid_data_size_validator, + 'other': UploadSessionAppendBatchEntryError._other_validator, } -UploadSessionAppendBatchEntryError.not_found = UploadSessionAppendBatchEntryError("not_found") -UploadSessionAppendBatchEntryError.closed = UploadSessionAppendBatchEntryError("closed") -UploadSessionAppendBatchEntryError.too_large = UploadSessionAppendBatchEntryError("too_large") -UploadSessionAppendBatchEntryError.concurrent_session_invalid_offset = ( - UploadSessionAppendBatchEntryError("concurrent_session_invalid_offset") -) -UploadSessionAppendBatchEntryError.concurrent_session_invalid_data_size = ( - UploadSessionAppendBatchEntryError("concurrent_session_invalid_data_size") -) -UploadSessionAppendBatchEntryError.other = UploadSessionAppendBatchEntryError("other") +UploadSessionAppendBatchEntryError.not_found = UploadSessionAppendBatchEntryError('not_found') +UploadSessionAppendBatchEntryError.closed = UploadSessionAppendBatchEntryError('closed') +UploadSessionAppendBatchEntryError.too_large = UploadSessionAppendBatchEntryError('too_large') +UploadSessionAppendBatchEntryError.concurrent_session_invalid_offset = UploadSessionAppendBatchEntryError('concurrent_session_invalid_offset') +UploadSessionAppendBatchEntryError.concurrent_session_invalid_data_size = UploadSessionAppendBatchEntryError('concurrent_session_invalid_data_size') +UploadSessionAppendBatchEntryError.other = UploadSessionAppendBatchEntryError('other') UploadSessionAppendBatchError._payload_too_large_validator = bv.Void() UploadSessionAppendBatchError._content_hash_mismatch_validator = bv.Void() UploadSessionAppendBatchError._length_mismatch_validator = bv.Void() UploadSessionAppendBatchError._other_validator = bv.Void() UploadSessionAppendBatchError._tagmap = { - "payload_too_large": UploadSessionAppendBatchError._payload_too_large_validator, - "content_hash_mismatch": UploadSessionAppendBatchError._content_hash_mismatch_validator, - "length_mismatch": UploadSessionAppendBatchError._length_mismatch_validator, - "other": UploadSessionAppendBatchError._other_validator, + 'payload_too_large': UploadSessionAppendBatchError._payload_too_large_validator, + 'content_hash_mismatch': UploadSessionAppendBatchError._content_hash_mismatch_validator, + 'length_mismatch': UploadSessionAppendBatchError._length_mismatch_validator, + 'other': UploadSessionAppendBatchError._other_validator, } -UploadSessionAppendBatchError.payload_too_large = UploadSessionAppendBatchError("payload_too_large") -UploadSessionAppendBatchError.content_hash_mismatch = UploadSessionAppendBatchError( - "content_hash_mismatch" -) -UploadSessionAppendBatchError.length_mismatch = UploadSessionAppendBatchError("length_mismatch") -UploadSessionAppendBatchError.other = UploadSessionAppendBatchError("other") +UploadSessionAppendBatchError.payload_too_large = UploadSessionAppendBatchError('payload_too_large') +UploadSessionAppendBatchError.content_hash_mismatch = UploadSessionAppendBatchError('content_hash_mismatch') +UploadSessionAppendBatchError.length_mismatch = UploadSessionAppendBatchError('length_mismatch') +UploadSessionAppendBatchError.other = UploadSessionAppendBatchError('other') -UploadSessionAppendBatchResult.entries.validator = bv.List( - UploadSessionAppendBatchResultEntry_validator -) -UploadSessionAppendBatchResult._all_field_names_ = set(["entries"]) -UploadSessionAppendBatchResult._all_fields_ = [ - ("entries", UploadSessionAppendBatchResult.entries.validator) -] +UploadSessionAppendBatchResult.entries.validator = bv.List(UploadSessionAppendBatchResultEntry_validator) +UploadSessionAppendBatchResult._all_field_names_ = set(['entries']) +UploadSessionAppendBatchResult._all_fields_ = [('entries', UploadSessionAppendBatchResult.entries.validator)] UploadSessionAppendBatchResultEntry._success_validator = bv.Void() -UploadSessionAppendBatchResultEntry._failure_validator = ( - UploadSessionAppendBatchEntryError_validator -) +UploadSessionAppendBatchResultEntry._failure_validator = UploadSessionAppendBatchEntryError_validator UploadSessionAppendBatchResultEntry._tagmap = { - "success": UploadSessionAppendBatchResultEntry._success_validator, - "failure": UploadSessionAppendBatchResultEntry._failure_validator, + 'success': UploadSessionAppendBatchResultEntry._success_validator, + 'failure': UploadSessionAppendBatchResultEntry._failure_validator, } -UploadSessionAppendBatchResultEntry.success = UploadSessionAppendBatchResultEntry("success") +UploadSessionAppendBatchResultEntry.success = UploadSessionAppendBatchResultEntry('success') UploadSessionAppendError._not_found_validator = bv.Void() UploadSessionAppendError._incorrect_offset_validator = UploadSessionOffsetError_validator @@ -14930,103 +14132,85 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): UploadSessionAppendError._content_hash_mismatch_validator = bv.Void() UploadSessionAppendError._other_validator = bv.Void() UploadSessionAppendError._tagmap = { - "not_found": UploadSessionAppendError._not_found_validator, - "incorrect_offset": UploadSessionAppendError._incorrect_offset_validator, - "closed": UploadSessionAppendError._closed_validator, - "too_large": UploadSessionAppendError._too_large_validator, - "concurrent_session_invalid_offset": UploadSessionAppendError._concurrent_session_invalid_offset_validator, - "concurrent_session_invalid_data_size": UploadSessionAppendError._concurrent_session_invalid_data_size_validator, - "payload_too_large": UploadSessionAppendError._payload_too_large_validator, - "content_hash_mismatch": UploadSessionAppendError._content_hash_mismatch_validator, - "other": UploadSessionAppendError._other_validator, + 'not_found': UploadSessionAppendError._not_found_validator, + 'incorrect_offset': UploadSessionAppendError._incorrect_offset_validator, + 'closed': UploadSessionAppendError._closed_validator, + 'too_large': UploadSessionAppendError._too_large_validator, + 'concurrent_session_invalid_offset': UploadSessionAppendError._concurrent_session_invalid_offset_validator, + 'concurrent_session_invalid_data_size': UploadSessionAppendError._concurrent_session_invalid_data_size_validator, + 'payload_too_large': UploadSessionAppendError._payload_too_large_validator, + 'content_hash_mismatch': UploadSessionAppendError._content_hash_mismatch_validator, + 'other': UploadSessionAppendError._other_validator, } -UploadSessionAppendError.not_found = UploadSessionAppendError("not_found") -UploadSessionAppendError.closed = UploadSessionAppendError("closed") -UploadSessionAppendError.too_large = UploadSessionAppendError("too_large") -UploadSessionAppendError.concurrent_session_invalid_offset = UploadSessionAppendError( - "concurrent_session_invalid_offset" -) -UploadSessionAppendError.concurrent_session_invalid_data_size = UploadSessionAppendError( - "concurrent_session_invalid_data_size" -) -UploadSessionAppendError.payload_too_large = UploadSessionAppendError("payload_too_large") -UploadSessionAppendError.content_hash_mismatch = UploadSessionAppendError("content_hash_mismatch") -UploadSessionAppendError.other = UploadSessionAppendError("other") +UploadSessionAppendError.not_found = UploadSessionAppendError('not_found') +UploadSessionAppendError.closed = UploadSessionAppendError('closed') +UploadSessionAppendError.too_large = UploadSessionAppendError('too_large') +UploadSessionAppendError.concurrent_session_invalid_offset = UploadSessionAppendError('concurrent_session_invalid_offset') +UploadSessionAppendError.concurrent_session_invalid_data_size = UploadSessionAppendError('concurrent_session_invalid_data_size') +UploadSessionAppendError.payload_too_large = UploadSessionAppendError('payload_too_large') +UploadSessionAppendError.content_hash_mismatch = UploadSessionAppendError('content_hash_mismatch') +UploadSessionAppendError.other = UploadSessionAppendError('other') UploadSessionCursor.session_id.validator = bv.String() UploadSessionCursor.offset.validator = bv.UInt64() -UploadSessionCursor._all_field_names_ = set( - [ - "session_id", - "offset", - ] -) +UploadSessionCursor._all_field_names_ = set([ + 'session_id', + 'offset', +]) UploadSessionCursor._all_fields_ = [ - ("session_id", UploadSessionCursor.session_id.validator), - ("offset", UploadSessionCursor.offset.validator), + ('session_id', UploadSessionCursor.session_id.validator), + ('offset', UploadSessionCursor.offset.validator), ] UploadSessionFinishArg.cursor.validator = UploadSessionCursor_validator UploadSessionFinishArg.commit.validator = CommitInfo_validator UploadSessionFinishArg.content_hash.validator = bv.Nullable(Sha256HexHash_validator) -UploadSessionFinishArg._all_field_names_ = set( - [ - "cursor", - "commit", - "content_hash", - ] -) +UploadSessionFinishArg._all_field_names_ = set([ + 'cursor', + 'commit', + 'content_hash', +]) UploadSessionFinishArg._all_fields_ = [ - ("cursor", UploadSessionFinishArg.cursor.validator), - ("commit", UploadSessionFinishArg.commit.validator), - ("content_hash", UploadSessionFinishArg.content_hash.validator), + ('cursor', UploadSessionFinishArg.cursor.validator), + ('commit', UploadSessionFinishArg.commit.validator), + ('content_hash', UploadSessionFinishArg.content_hash.validator), ] -UploadSessionFinishBatchArg.entries.validator = bv.List( - UploadSessionFinishArg_validator, max_items=1000 -) -UploadSessionFinishBatchArg._all_field_names_ = set(["entries"]) -UploadSessionFinishBatchArg._all_fields_ = [ - ("entries", UploadSessionFinishBatchArg.entries.validator) -] +UploadSessionFinishBatchArg.entries.validator = bv.List(UploadSessionFinishArg_validator, max_items=1000) +UploadSessionFinishBatchArg._all_field_names_ = set(['entries']) +UploadSessionFinishBatchArg._all_fields_ = [('entries', UploadSessionFinishBatchArg.entries.validator)] UploadSessionFinishBatchJobStatus._complete_validator = UploadSessionFinishBatchResult_validator UploadSessionFinishBatchJobStatus._tagmap = { - "complete": UploadSessionFinishBatchJobStatus._complete_validator, + 'complete': UploadSessionFinishBatchJobStatus._complete_validator, } UploadSessionFinishBatchJobStatus._tagmap.update(async_.PollResultBase._tagmap) UploadSessionFinishBatchLaunch._complete_validator = UploadSessionFinishBatchResult_validator UploadSessionFinishBatchLaunch._other_validator = bv.Void() UploadSessionFinishBatchLaunch._tagmap = { - "complete": UploadSessionFinishBatchLaunch._complete_validator, - "other": UploadSessionFinishBatchLaunch._other_validator, + 'complete': UploadSessionFinishBatchLaunch._complete_validator, + 'other': UploadSessionFinishBatchLaunch._other_validator, } UploadSessionFinishBatchLaunch._tagmap.update(async_.LaunchResultBase._tagmap) -UploadSessionFinishBatchLaunch.other = UploadSessionFinishBatchLaunch("other") +UploadSessionFinishBatchLaunch.other = UploadSessionFinishBatchLaunch('other') -UploadSessionFinishBatchResult.entries.validator = bv.List( - UploadSessionFinishBatchResultEntry_validator -) -UploadSessionFinishBatchResult._all_field_names_ = set(["entries"]) -UploadSessionFinishBatchResult._all_fields_ = [ - ("entries", UploadSessionFinishBatchResult.entries.validator) -] +UploadSessionFinishBatchResult.entries.validator = bv.List(UploadSessionFinishBatchResultEntry_validator) +UploadSessionFinishBatchResult._all_field_names_ = set(['entries']) +UploadSessionFinishBatchResult._all_fields_ = [('entries', UploadSessionFinishBatchResult.entries.validator)] UploadSessionFinishBatchResultEntry._success_validator = FileMetadata_validator UploadSessionFinishBatchResultEntry._failure_validator = UploadSessionFinishError_validator UploadSessionFinishBatchResultEntry._tagmap = { - "success": UploadSessionFinishBatchResultEntry._success_validator, - "failure": UploadSessionFinishBatchResultEntry._failure_validator, + 'success': UploadSessionFinishBatchResultEntry._success_validator, + 'failure': UploadSessionFinishBatchResultEntry._failure_validator, } UploadSessionFinishError._lookup_failed_validator = UploadSessionLookupError_validator UploadSessionFinishError._path_validator = WriteError_validator -UploadSessionFinishError._properties_error_validator = ( - file_properties.InvalidPropertyGroupError_validator -) +UploadSessionFinishError._properties_error_validator = file_properties.InvalidPropertyGroupError_validator UploadSessionFinishError._too_many_shared_folder_targets_validator = bv.Void() UploadSessionFinishError._too_many_write_operations_validator = bv.Void() UploadSessionFinishError._concurrent_session_data_not_allowed_validator = bv.Void() @@ -15037,41 +14221,29 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): UploadSessionFinishError._encryption_not_supported_validator = bv.Void() UploadSessionFinishError._other_validator = bv.Void() UploadSessionFinishError._tagmap = { - "lookup_failed": UploadSessionFinishError._lookup_failed_validator, - "path": UploadSessionFinishError._path_validator, - "properties_error": UploadSessionFinishError._properties_error_validator, - "too_many_shared_folder_targets": UploadSessionFinishError._too_many_shared_folder_targets_validator, - "too_many_write_operations": UploadSessionFinishError._too_many_write_operations_validator, - "concurrent_session_data_not_allowed": UploadSessionFinishError._concurrent_session_data_not_allowed_validator, - "concurrent_session_not_closed": UploadSessionFinishError._concurrent_session_not_closed_validator, - "concurrent_session_missing_data": UploadSessionFinishError._concurrent_session_missing_data_validator, - "payload_too_large": UploadSessionFinishError._payload_too_large_validator, - "content_hash_mismatch": UploadSessionFinishError._content_hash_mismatch_validator, - "encryption_not_supported": UploadSessionFinishError._encryption_not_supported_validator, - "other": UploadSessionFinishError._other_validator, + 'lookup_failed': UploadSessionFinishError._lookup_failed_validator, + 'path': UploadSessionFinishError._path_validator, + 'properties_error': UploadSessionFinishError._properties_error_validator, + 'too_many_shared_folder_targets': UploadSessionFinishError._too_many_shared_folder_targets_validator, + 'too_many_write_operations': UploadSessionFinishError._too_many_write_operations_validator, + 'concurrent_session_data_not_allowed': UploadSessionFinishError._concurrent_session_data_not_allowed_validator, + 'concurrent_session_not_closed': UploadSessionFinishError._concurrent_session_not_closed_validator, + 'concurrent_session_missing_data': UploadSessionFinishError._concurrent_session_missing_data_validator, + 'payload_too_large': UploadSessionFinishError._payload_too_large_validator, + 'content_hash_mismatch': UploadSessionFinishError._content_hash_mismatch_validator, + 'encryption_not_supported': UploadSessionFinishError._encryption_not_supported_validator, + 'other': UploadSessionFinishError._other_validator, } -UploadSessionFinishError.too_many_shared_folder_targets = UploadSessionFinishError( - "too_many_shared_folder_targets" -) -UploadSessionFinishError.too_many_write_operations = UploadSessionFinishError( - "too_many_write_operations" -) -UploadSessionFinishError.concurrent_session_data_not_allowed = UploadSessionFinishError( - "concurrent_session_data_not_allowed" -) -UploadSessionFinishError.concurrent_session_not_closed = UploadSessionFinishError( - "concurrent_session_not_closed" -) -UploadSessionFinishError.concurrent_session_missing_data = UploadSessionFinishError( - "concurrent_session_missing_data" -) -UploadSessionFinishError.payload_too_large = UploadSessionFinishError("payload_too_large") -UploadSessionFinishError.content_hash_mismatch = UploadSessionFinishError("content_hash_mismatch") -UploadSessionFinishError.encryption_not_supported = UploadSessionFinishError( - "encryption_not_supported" -) -UploadSessionFinishError.other = UploadSessionFinishError("other") +UploadSessionFinishError.too_many_shared_folder_targets = UploadSessionFinishError('too_many_shared_folder_targets') +UploadSessionFinishError.too_many_write_operations = UploadSessionFinishError('too_many_write_operations') +UploadSessionFinishError.concurrent_session_data_not_allowed = UploadSessionFinishError('concurrent_session_data_not_allowed') +UploadSessionFinishError.concurrent_session_not_closed = UploadSessionFinishError('concurrent_session_not_closed') +UploadSessionFinishError.concurrent_session_missing_data = UploadSessionFinishError('concurrent_session_missing_data') +UploadSessionFinishError.payload_too_large = UploadSessionFinishError('payload_too_large') +UploadSessionFinishError.content_hash_mismatch = UploadSessionFinishError('content_hash_mismatch') +UploadSessionFinishError.encryption_not_supported = UploadSessionFinishError('encryption_not_supported') +UploadSessionFinishError.other = UploadSessionFinishError('other') UploadSessionLookupError._not_found_validator = bv.Void() UploadSessionLookupError._incorrect_offset_validator = UploadSessionOffsetError_validator @@ -15083,70 +14255,58 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): UploadSessionLookupError._payload_too_large_validator = bv.Void() UploadSessionLookupError._other_validator = bv.Void() UploadSessionLookupError._tagmap = { - "not_found": UploadSessionLookupError._not_found_validator, - "incorrect_offset": UploadSessionLookupError._incorrect_offset_validator, - "closed": UploadSessionLookupError._closed_validator, - "not_closed": UploadSessionLookupError._not_closed_validator, - "too_large": UploadSessionLookupError._too_large_validator, - "concurrent_session_invalid_offset": UploadSessionLookupError._concurrent_session_invalid_offset_validator, - "concurrent_session_invalid_data_size": UploadSessionLookupError._concurrent_session_invalid_data_size_validator, - "payload_too_large": UploadSessionLookupError._payload_too_large_validator, - "other": UploadSessionLookupError._other_validator, + 'not_found': UploadSessionLookupError._not_found_validator, + 'incorrect_offset': UploadSessionLookupError._incorrect_offset_validator, + 'closed': UploadSessionLookupError._closed_validator, + 'not_closed': UploadSessionLookupError._not_closed_validator, + 'too_large': UploadSessionLookupError._too_large_validator, + 'concurrent_session_invalid_offset': UploadSessionLookupError._concurrent_session_invalid_offset_validator, + 'concurrent_session_invalid_data_size': UploadSessionLookupError._concurrent_session_invalid_data_size_validator, + 'payload_too_large': UploadSessionLookupError._payload_too_large_validator, + 'other': UploadSessionLookupError._other_validator, } -UploadSessionLookupError.not_found = UploadSessionLookupError("not_found") -UploadSessionLookupError.closed = UploadSessionLookupError("closed") -UploadSessionLookupError.not_closed = UploadSessionLookupError("not_closed") -UploadSessionLookupError.too_large = UploadSessionLookupError("too_large") -UploadSessionLookupError.concurrent_session_invalid_offset = UploadSessionLookupError( - "concurrent_session_invalid_offset" -) -UploadSessionLookupError.concurrent_session_invalid_data_size = UploadSessionLookupError( - "concurrent_session_invalid_data_size" -) -UploadSessionLookupError.payload_too_large = UploadSessionLookupError("payload_too_large") -UploadSessionLookupError.other = UploadSessionLookupError("other") +UploadSessionLookupError.not_found = UploadSessionLookupError('not_found') +UploadSessionLookupError.closed = UploadSessionLookupError('closed') +UploadSessionLookupError.not_closed = UploadSessionLookupError('not_closed') +UploadSessionLookupError.too_large = UploadSessionLookupError('too_large') +UploadSessionLookupError.concurrent_session_invalid_offset = UploadSessionLookupError('concurrent_session_invalid_offset') +UploadSessionLookupError.concurrent_session_invalid_data_size = UploadSessionLookupError('concurrent_session_invalid_data_size') +UploadSessionLookupError.payload_too_large = UploadSessionLookupError('payload_too_large') +UploadSessionLookupError.other = UploadSessionLookupError('other') UploadSessionOffsetError.correct_offset.validator = bv.UInt64() -UploadSessionOffsetError._all_field_names_ = set(["correct_offset"]) -UploadSessionOffsetError._all_fields_ = [ - ("correct_offset", UploadSessionOffsetError.correct_offset.validator) -] +UploadSessionOffsetError._all_field_names_ = set(['correct_offset']) +UploadSessionOffsetError._all_fields_ = [('correct_offset', UploadSessionOffsetError.correct_offset.validator)] UploadSessionStartArg.close.validator = bv.Boolean() UploadSessionStartArg.session_type.validator = bv.Nullable(UploadSessionType_validator) UploadSessionStartArg.content_hash.validator = bv.Nullable(Sha256HexHash_validator) -UploadSessionStartArg._all_field_names_ = set( - [ - "close", - "session_type", - "content_hash", - ] -) +UploadSessionStartArg._all_field_names_ = set([ + 'close', + 'session_type', + 'content_hash', +]) UploadSessionStartArg._all_fields_ = [ - ("close", UploadSessionStartArg.close.validator), - ("session_type", UploadSessionStartArg.session_type.validator), - ("content_hash", UploadSessionStartArg.content_hash.validator), + ('close', UploadSessionStartArg.close.validator), + ('session_type', UploadSessionStartArg.session_type.validator), + ('content_hash', UploadSessionStartArg.content_hash.validator), ] UploadSessionStartBatchArg.session_type.validator = bv.Nullable(UploadSessionType_validator) UploadSessionStartBatchArg.num_sessions.validator = bv.UInt64(min_value=1, max_value=1000) -UploadSessionStartBatchArg._all_field_names_ = set( - [ - "session_type", - "num_sessions", - ] -) +UploadSessionStartBatchArg._all_field_names_ = set([ + 'session_type', + 'num_sessions', +]) UploadSessionStartBatchArg._all_fields_ = [ - ("session_type", UploadSessionStartBatchArg.session_type.validator), - ("num_sessions", UploadSessionStartBatchArg.num_sessions.validator), + ('session_type', UploadSessionStartBatchArg.session_type.validator), + ('num_sessions', UploadSessionStartBatchArg.num_sessions.validator), ] UploadSessionStartBatchResult.session_ids.validator = bv.List(bv.String()) -UploadSessionStartBatchResult._all_field_names_ = set(["session_ids"]) -UploadSessionStartBatchResult._all_fields_ = [ - ("session_ids", UploadSessionStartBatchResult.session_ids.validator) -] +UploadSessionStartBatchResult._all_field_names_ = set(['session_ids']) +UploadSessionStartBatchResult._all_fields_ = [('session_ids', UploadSessionStartBatchResult.session_ids.validator)] UploadSessionStartError._concurrent_session_data_not_allowed_validator = bv.Void() UploadSessionStartError._concurrent_session_close_not_allowed_validator = bv.Void() @@ -15154,63 +14314,55 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): UploadSessionStartError._content_hash_mismatch_validator = bv.Void() UploadSessionStartError._other_validator = bv.Void() UploadSessionStartError._tagmap = { - "concurrent_session_data_not_allowed": UploadSessionStartError._concurrent_session_data_not_allowed_validator, - "concurrent_session_close_not_allowed": UploadSessionStartError._concurrent_session_close_not_allowed_validator, - "payload_too_large": UploadSessionStartError._payload_too_large_validator, - "content_hash_mismatch": UploadSessionStartError._content_hash_mismatch_validator, - "other": UploadSessionStartError._other_validator, + 'concurrent_session_data_not_allowed': UploadSessionStartError._concurrent_session_data_not_allowed_validator, + 'concurrent_session_close_not_allowed': UploadSessionStartError._concurrent_session_close_not_allowed_validator, + 'payload_too_large': UploadSessionStartError._payload_too_large_validator, + 'content_hash_mismatch': UploadSessionStartError._content_hash_mismatch_validator, + 'other': UploadSessionStartError._other_validator, } -UploadSessionStartError.concurrent_session_data_not_allowed = UploadSessionStartError( - "concurrent_session_data_not_allowed" -) -UploadSessionStartError.concurrent_session_close_not_allowed = UploadSessionStartError( - "concurrent_session_close_not_allowed" -) -UploadSessionStartError.payload_too_large = UploadSessionStartError("payload_too_large") -UploadSessionStartError.content_hash_mismatch = UploadSessionStartError("content_hash_mismatch") -UploadSessionStartError.other = UploadSessionStartError("other") +UploadSessionStartError.concurrent_session_data_not_allowed = UploadSessionStartError('concurrent_session_data_not_allowed') +UploadSessionStartError.concurrent_session_close_not_allowed = UploadSessionStartError('concurrent_session_close_not_allowed') +UploadSessionStartError.payload_too_large = UploadSessionStartError('payload_too_large') +UploadSessionStartError.content_hash_mismatch = UploadSessionStartError('content_hash_mismatch') +UploadSessionStartError.other = UploadSessionStartError('other') UploadSessionStartResult.session_id.validator = bv.String() -UploadSessionStartResult._all_field_names_ = set(["session_id"]) -UploadSessionStartResult._all_fields_ = [ - ("session_id", UploadSessionStartResult.session_id.validator) -] +UploadSessionStartResult._all_field_names_ = set(['session_id']) +UploadSessionStartResult._all_fields_ = [('session_id', UploadSessionStartResult.session_id.validator)] UploadSessionType._sequential_validator = bv.Void() UploadSessionType._concurrent_validator = bv.Void() UploadSessionType._other_validator = bv.Void() UploadSessionType._tagmap = { - "sequential": UploadSessionType._sequential_validator, - "concurrent": UploadSessionType._concurrent_validator, - "other": UploadSessionType._other_validator, + 'sequential': UploadSessionType._sequential_validator, + 'concurrent': UploadSessionType._concurrent_validator, + 'other': UploadSessionType._other_validator, } -UploadSessionType.sequential = UploadSessionType("sequential") -UploadSessionType.concurrent = UploadSessionType("concurrent") -UploadSessionType.other = UploadSessionType("other") +UploadSessionType.sequential = UploadSessionType('sequential') +UploadSessionType.concurrent = UploadSessionType('concurrent') +UploadSessionType.other = UploadSessionType('other') UploadWriteFailed.reason.validator = WriteError_validator UploadWriteFailed.upload_session_id.validator = bv.String() -UploadWriteFailed._all_field_names_ = set( - [ - "reason", - "upload_session_id", - ] -) +UploadWriteFailed._all_field_names_ = set([ + 'reason', + 'upload_session_id', +]) UploadWriteFailed._all_fields_ = [ - ("reason", UploadWriteFailed.reason.validator), - ("upload_session_id", UploadWriteFailed.upload_session_id.validator), + ('reason', UploadWriteFailed.reason.validator), + ('upload_session_id', UploadWriteFailed.upload_session_id.validator), ] UserGeneratedTag.tag_text.validator = TagText_validator -UserGeneratedTag._all_field_names_ = set(["tag_text"]) -UserGeneratedTag._all_fields_ = [("tag_text", UserGeneratedTag.tag_text.validator)] +UserGeneratedTag._all_field_names_ = set(['tag_text']) +UserGeneratedTag._all_fields_ = [('tag_text', UserGeneratedTag.tag_text.validator)] VideoMetadata.duration.validator = bv.Nullable(bv.UInt64()) -VideoMetadata._field_names_ = set(["duration"]) +VideoMetadata._field_names_ = set(['duration']) VideoMetadata._all_field_names_ = MediaMetadata._all_field_names_.union(VideoMetadata._field_names_) -VideoMetadata._fields_ = [("duration", VideoMetadata.duration.validator)] +VideoMetadata._fields_ = [('duration', VideoMetadata.duration.validator)] VideoMetadata._all_fields_ = MediaMetadata._all_fields_ + VideoMetadata._fields_ WriteConflictError._file_validator = bv.Void() @@ -15218,16 +14370,16 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): WriteConflictError._file_ancestor_validator = bv.Void() WriteConflictError._other_validator = bv.Void() WriteConflictError._tagmap = { - "file": WriteConflictError._file_validator, - "folder": WriteConflictError._folder_validator, - "file_ancestor": WriteConflictError._file_ancestor_validator, - "other": WriteConflictError._other_validator, + 'file': WriteConflictError._file_validator, + 'folder': WriteConflictError._folder_validator, + 'file_ancestor': WriteConflictError._file_ancestor_validator, + 'other': WriteConflictError._other_validator, } -WriteConflictError.file = WriteConflictError("file") -WriteConflictError.folder = WriteConflictError("folder") -WriteConflictError.file_ancestor = WriteConflictError("file_ancestor") -WriteConflictError.other = WriteConflictError("other") +WriteConflictError.file = WriteConflictError('file') +WriteConflictError.folder = WriteConflictError('folder') +WriteConflictError.file_ancestor = WriteConflictError('file_ancestor') +WriteConflictError.other = WriteConflictError('other') WriteError._malformed_path_validator = MalformedPathError_validator WriteError._conflict_validator = WriteConflictError_validator @@ -15240,38 +14392,38 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): WriteError._access_restricted_validator = bv.Void() WriteError._other_validator = bv.Void() WriteError._tagmap = { - "malformed_path": WriteError._malformed_path_validator, - "conflict": WriteError._conflict_validator, - "no_write_permission": WriteError._no_write_permission_validator, - "insufficient_space": WriteError._insufficient_space_validator, - "disallowed_name": WriteError._disallowed_name_validator, - "team_folder": WriteError._team_folder_validator, - "operation_suppressed": WriteError._operation_suppressed_validator, - "too_many_write_operations": WriteError._too_many_write_operations_validator, - "access_restricted": WriteError._access_restricted_validator, - "other": WriteError._other_validator, + 'malformed_path': WriteError._malformed_path_validator, + 'conflict': WriteError._conflict_validator, + 'no_write_permission': WriteError._no_write_permission_validator, + 'insufficient_space': WriteError._insufficient_space_validator, + 'disallowed_name': WriteError._disallowed_name_validator, + 'team_folder': WriteError._team_folder_validator, + 'operation_suppressed': WriteError._operation_suppressed_validator, + 'too_many_write_operations': WriteError._too_many_write_operations_validator, + 'access_restricted': WriteError._access_restricted_validator, + 'other': WriteError._other_validator, } -WriteError.no_write_permission = WriteError("no_write_permission") -WriteError.insufficient_space = WriteError("insufficient_space") -WriteError.disallowed_name = WriteError("disallowed_name") -WriteError.team_folder = WriteError("team_folder") -WriteError.operation_suppressed = WriteError("operation_suppressed") -WriteError.too_many_write_operations = WriteError("too_many_write_operations") -WriteError.access_restricted = WriteError("access_restricted") -WriteError.other = WriteError("other") +WriteError.no_write_permission = WriteError('no_write_permission') +WriteError.insufficient_space = WriteError('insufficient_space') +WriteError.disallowed_name = WriteError('disallowed_name') +WriteError.team_folder = WriteError('team_folder') +WriteError.operation_suppressed = WriteError('operation_suppressed') +WriteError.too_many_write_operations = WriteError('too_many_write_operations') +WriteError.access_restricted = WriteError('access_restricted') +WriteError.other = WriteError('other') WriteMode._add_validator = bv.Void() WriteMode._overwrite_validator = bv.Void() WriteMode._update_validator = Rev_validator WriteMode._tagmap = { - "add": WriteMode._add_validator, - "overwrite": WriteMode._overwrite_validator, - "update": WriteMode._update_validator, + 'add': WriteMode._add_validator, + 'overwrite': WriteMode._overwrite_validator, + 'update': WriteMode._update_validator, } -WriteMode.add = WriteMode("add") -WriteMode.overwrite = WriteMode("overwrite") +WriteMode.add = WriteMode('add') +WriteMode.overwrite = WriteMode('overwrite') GetMetadataArg.include_media_info.default = False GetMetadataArg.include_deleted.default = False @@ -15324,675 +14476,810 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): UploadSessionAppendBatchArgEntry.close.default = False UploadSessionStartArg.close.default = False alpha_get_metadata = bb.Route( - "alpha/get_metadata", + 'alpha/get_metadata', 1, True, AlphaGetMetadataArg_validator, Metadata_validator, AlphaGetMetadataError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) alpha_upload = bb.Route( - "alpha/upload", + 'alpha/upload', 1, True, UploadArg_validator, FileMetadata_validator, UploadError_validator, - {"auth": "user", "host": "content", "style": "upload"}, + {'auth': 'user', + 'host': 'content', + 'style': 'upload'}, ) copy = bb.Route( - "copy", + 'copy', 1, True, RelocationArg_validator, Metadata_validator, RelocationError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) copy_v2 = bb.Route( - "copy", + 'copy', 2, False, RelocationArg_validator, RelocationResult_validator, RelocationError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) copy_batch = bb.Route( - "copy_batch", + 'copy_batch', 1, True, RelocationBatchArg_validator, RelocationBatchLaunch_validator, bv.Void(), - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) copy_batch_v2 = bb.Route( - "copy_batch", + 'copy_batch', 2, False, CopyBatchArg_validator, RelocationBatchV2Launch_validator, bv.Void(), - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) copy_batch_check = bb.Route( - "copy_batch/check", + 'copy_batch/check', 1, True, async_.PollArg_validator, RelocationBatchJobStatus_validator, async_.PollError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) copy_batch_check_v2 = bb.Route( - "copy_batch/check", + 'copy_batch/check', 2, False, async_.PollArg_validator, RelocationBatchV2JobStatus_validator, async_.PollError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) copy_reference_get = bb.Route( - "copy_reference/get", + 'copy_reference/get', 1, False, GetCopyReferenceArg_validator, GetCopyReferenceResult_validator, GetCopyReferenceError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) copy_reference_save = bb.Route( - "copy_reference/save", + 'copy_reference/save', 1, False, SaveCopyReferenceArg_validator, SaveCopyReferenceResult_validator, SaveCopyReferenceError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) create_folder = bb.Route( - "create_folder", + 'create_folder', 1, True, CreateFolderArg_validator, FolderMetadata_validator, CreateFolderError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) create_folder_v2 = bb.Route( - "create_folder", + 'create_folder', 2, False, CreateFolderArg_validator, CreateFolderResult_validator, CreateFolderError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) create_folder_batch = bb.Route( - "create_folder_batch", + 'create_folder_batch', 1, False, CreateFolderBatchArg_validator, CreateFolderBatchLaunch_validator, bv.Void(), - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) create_folder_batch_check = bb.Route( - "create_folder_batch/check", + 'create_folder_batch/check', 1, False, async_.PollArg_validator, CreateFolderBatchJobStatus_validator, async_.PollError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) delete = bb.Route( - "delete", + 'delete', 1, True, DeleteArg_validator, Metadata_validator, DeleteError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) delete_v2 = bb.Route( - "delete", + 'delete', 2, False, DeleteArg_validator, DeleteResult_validator, DeleteError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) delete_batch = bb.Route( - "delete_batch", + 'delete_batch', 1, False, DeleteBatchArg_validator, DeleteBatchLaunch_validator, bv.Void(), - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) delete_batch_check = bb.Route( - "delete_batch/check", + 'delete_batch/check', 1, False, async_.PollArg_validator, DeleteBatchJobStatus_validator, async_.PollError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) download = bb.Route( - "download", + 'download', 1, False, DownloadArg_validator, FileMetadata_validator, DownloadError_validator, - {"auth": "user", "host": "content", "style": "download"}, + {'auth': 'user', + 'host': 'content', + 'style': 'download'}, ) download_zip = bb.Route( - "download_zip", + 'download_zip', 1, False, DownloadZipArg_validator, DownloadZipResult_validator, DownloadZipError_validator, - {"auth": "user", "host": "content", "style": "download"}, + {'auth': 'user', + 'host': 'content', + 'style': 'download'}, ) export = bb.Route( - "export", + 'export', 1, False, ExportArg_validator, ExportResult_validator, ExportError_validator, - {"auth": "user", "host": "content", "style": "download"}, + {'auth': 'user', + 'host': 'content', + 'style': 'download'}, ) get_file_lock_batch = bb.Route( - "get_file_lock_batch", + 'get_file_lock_batch', 1, False, LockFileBatchArg_validator, LockFileBatchResult_validator, LockFileError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) get_metadata = bb.Route( - "get_metadata", + 'get_metadata', 1, False, GetMetadataArg_validator, Metadata_validator, GetMetadataError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) get_preview = bb.Route( - "get_preview", + 'get_preview', 1, False, PreviewArg_validator, FileMetadata_validator, PreviewError_validator, - {"auth": "user", "host": "content", "style": "download"}, + {'auth': 'user', + 'host': 'content', + 'style': 'download'}, ) get_temporary_link = bb.Route( - "get_temporary_link", + 'get_temporary_link', 1, False, GetTemporaryLinkArg_validator, GetTemporaryLinkResult_validator, GetTemporaryLinkError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) get_temporary_upload_link = bb.Route( - "get_temporary_upload_link", + 'get_temporary_upload_link', 1, False, GetTemporaryUploadLinkArg_validator, GetTemporaryUploadLinkResult_validator, bv.Void(), - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) get_thumbnail = bb.Route( - "get_thumbnail", + 'get_thumbnail', 1, False, ThumbnailArg_validator, FileMetadata_validator, ThumbnailError_validator, - {"auth": "user", "host": "content", "style": "download"}, + {'auth': 'user', + 'host': 'content', + 'style': 'download'}, ) get_thumbnail_v2 = bb.Route( - "get_thumbnail", + 'get_thumbnail', 2, False, ThumbnailV2Arg_validator, PreviewResult_validator, ThumbnailV2Error_validator, - {"auth": "app, user", "host": "content", "style": "download"}, + {'auth': 'app, user', + 'host': 'content', + 'style': 'download'}, ) get_thumbnail_batch = bb.Route( - "get_thumbnail_batch", + 'get_thumbnail_batch', 1, False, GetThumbnailBatchArg_validator, GetThumbnailBatchResult_validator, GetThumbnailBatchError_validator, - {"auth": "user", "host": "content", "style": "rpc"}, + {'auth': 'user', + 'host': 'content', + 'style': 'rpc'}, ) list_folder = bb.Route( - "list_folder", + 'list_folder', 1, False, ListFolderArg_validator, ListFolderResult_validator, ListFolderError_validator, - {"auth": "app, user", "host": "api", "style": "rpc"}, + {'auth': 'app, user', + 'host': 'api', + 'style': 'rpc'}, ) list_folder_continue = bb.Route( - "list_folder/continue", + 'list_folder/continue', 1, False, ListFolderContinueArg_validator, ListFolderResult_validator, ListFolderContinueError_validator, - {"auth": "app, user", "host": "api", "style": "rpc"}, + {'auth': 'app, user', + 'host': 'api', + 'style': 'rpc'}, ) list_folder_get_latest_cursor = bb.Route( - "list_folder/get_latest_cursor", + 'list_folder/get_latest_cursor', 1, False, ListFolderArg_validator, ListFolderGetLatestCursorResult_validator, ListFolderError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) list_folder_longpoll = bb.Route( - "list_folder/longpoll", + 'list_folder/longpoll', 1, False, ListFolderLongpollArg_validator, ListFolderLongpollResult_validator, ListFolderLongpollError_validator, - {"auth": "noauth", "host": "notify", "style": "rpc"}, + {'auth': 'noauth', + 'host': 'notify', + 'style': 'rpc'}, ) list_revisions = bb.Route( - "list_revisions", + 'list_revisions', 1, False, ListRevisionsArg_validator, ListRevisionsResult_validator, ListRevisionsError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) lock_file_batch = bb.Route( - "lock_file_batch", + 'lock_file_batch', 1, False, LockFileBatchArg_validator, LockFileBatchResult_validator, LockFileError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) move = bb.Route( - "move", + 'move', 1, True, RelocationArg_validator, Metadata_validator, RelocationError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) move_v2 = bb.Route( - "move", + 'move', 2, False, RelocationArg_validator, RelocationResult_validator, RelocationError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) move_batch = bb.Route( - "move_batch", + 'move_batch', 1, True, RelocationBatchArg_validator, RelocationBatchLaunch_validator, bv.Void(), - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) move_batch_v2 = bb.Route( - "move_batch", + 'move_batch', 2, False, MoveBatchArg_validator, RelocationBatchV2Launch_validator, bv.Void(), - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) move_batch_check = bb.Route( - "move_batch/check", + 'move_batch/check', 1, True, async_.PollArg_validator, RelocationBatchJobStatus_validator, async_.PollError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) move_batch_check_v2 = bb.Route( - "move_batch/check", + 'move_batch/check', 2, False, async_.PollArg_validator, RelocationBatchV2JobStatus_validator, async_.PollError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) paper_create = bb.Route( - "paper/create", + 'paper/create', 1, False, PaperCreateArg_validator, PaperCreateResult_validator, PaperCreateError_validator, - {"auth": "user", "host": "api", "style": "upload"}, + {'auth': 'user', + 'host': 'api', + 'style': 'upload'}, ) paper_update = bb.Route( - "paper/update", + 'paper/update', 1, False, PaperUpdateArg_validator, PaperUpdateResult_validator, PaperUpdateError_validator, - {"auth": "user", "host": "api", "style": "upload"}, + {'auth': 'user', + 'host': 'api', + 'style': 'upload'}, ) permanently_delete = bb.Route( - "permanently_delete", + 'permanently_delete', 1, False, DeleteArg_validator, bv.Void(), DeleteError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) properties_add = bb.Route( - "properties/add", + 'properties/add', 1, True, file_properties.AddPropertiesArg_validator, bv.Void(), file_properties.AddPropertiesError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) properties_overwrite = bb.Route( - "properties/overwrite", + 'properties/overwrite', 1, True, file_properties.OverwritePropertyGroupArg_validator, bv.Void(), file_properties.InvalidPropertyGroupError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) properties_update = bb.Route( - "properties/update", + 'properties/update', 1, True, file_properties.UpdatePropertiesArg_validator, bv.Void(), file_properties.UpdatePropertiesError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) restore = bb.Route( - "restore", + 'restore', 1, False, RestoreArg_validator, FileMetadata_validator, RestoreError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) save_url = bb.Route( - "save_url", + 'save_url', 1, False, SaveUrlArg_validator, SaveUrlResult_validator, SaveUrlError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) save_url_check_job_status = bb.Route( - "save_url/check_job_status", + 'save_url/check_job_status', 1, False, async_.PollArg_validator, SaveUrlJobStatus_validator, async_.PollError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) search = bb.Route( - "search", + 'search', 1, True, SearchArg_validator, SearchResult_validator, SearchError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) search_v2 = bb.Route( - "search", + 'search', 2, False, SearchV2Arg_validator, SearchV2Result_validator, SearchError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) search_continue_v2 = bb.Route( - "search/continue", + 'search/continue', 2, False, SearchV2ContinueArg_validator, SearchV2Result_validator, SearchError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) tags_add = bb.Route( - "tags/add", + 'tags/add', 1, False, AddTagArg_validator, bv.Void(), AddTagError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) tags_get = bb.Route( - "tags/get", + 'tags/get', 1, False, GetTagsArg_validator, GetTagsResult_validator, BaseTagError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) tags_remove = bb.Route( - "tags/remove", + 'tags/remove', 1, False, RemoveTagArg_validator, bv.Void(), RemoveTagError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) unlock_file_batch = bb.Route( - "unlock_file_batch", + 'unlock_file_batch', 1, False, UnlockFileBatchArg_validator, LockFileBatchResult_validator, LockFileError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) upload = bb.Route( - "upload", + 'upload', 1, False, UploadArg_validator, FileMetadata_validator, UploadError_validator, - {"auth": "user", "host": "content", "style": "upload"}, + {'auth': 'user', + 'host': 'content', + 'style': 'upload'}, ) upload_session_append = bb.Route( - "upload_session/append", + 'upload_session/append', 1, True, UploadSessionCursor_validator, bv.Void(), UploadSessionAppendError_validator, - {"auth": "user", "host": "content", "style": "upload"}, + {'auth': 'user', + 'host': 'content', + 'style': 'upload'}, ) upload_session_append_v2 = bb.Route( - "upload_session/append", + 'upload_session/append', 2, False, UploadSessionAppendArg_validator, bv.Void(), UploadSessionAppendError_validator, - {"auth": "user", "host": "content", "style": "upload"}, + {'auth': 'user', + 'host': 'content', + 'style': 'upload'}, ) upload_session_append_batch = bb.Route( - "upload_session/append_batch", + 'upload_session/append_batch', 1, False, UploadSessionAppendBatchArg_validator, UploadSessionAppendBatchResult_validator, UploadSessionAppendBatchError_validator, - {"auth": "user", "host": "content", "style": "upload"}, + {'auth': 'user', + 'host': 'content', + 'style': 'upload'}, ) upload_session_finish = bb.Route( - "upload_session/finish", + 'upload_session/finish', 1, False, UploadSessionFinishArg_validator, FileMetadata_validator, UploadSessionFinishError_validator, - {"auth": "user", "host": "content", "style": "upload"}, + {'auth': 'user', + 'host': 'content', + 'style': 'upload'}, ) upload_session_finish_batch = bb.Route( - "upload_session/finish_batch", + 'upload_session/finish_batch', 1, True, UploadSessionFinishBatchArg_validator, UploadSessionFinishBatchLaunch_validator, bv.Void(), - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) upload_session_finish_batch_v2 = bb.Route( - "upload_session/finish_batch", + 'upload_session/finish_batch', 2, False, UploadSessionFinishBatchArg_validator, UploadSessionFinishBatchResult_validator, bv.Void(), - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) upload_session_finish_batch_check = bb.Route( - "upload_session/finish_batch/check", + 'upload_session/finish_batch/check', 1, False, async_.PollArg_validator, UploadSessionFinishBatchJobStatus_validator, async_.PollError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) upload_session_start = bb.Route( - "upload_session/start", + 'upload_session/start', 1, False, UploadSessionStartArg_validator, UploadSessionStartResult_validator, UploadSessionStartError_validator, - {"auth": "user", "host": "content", "style": "upload"}, + {'auth': 'user', + 'host': 'content', + 'style': 'upload'}, ) upload_session_start_batch = bb.Route( - "upload_session/start_batch", + 'upload_session/start_batch', 1, False, UploadSessionStartBatchArg_validator, UploadSessionStartBatchResult_validator, bv.Void(), - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) ROUTES = { - "alpha/get_metadata": alpha_get_metadata, - "alpha/upload": alpha_upload, - "copy": copy, - "copy:2": copy_v2, - "copy_batch": copy_batch, - "copy_batch:2": copy_batch_v2, - "copy_batch/check": copy_batch_check, - "copy_batch/check:2": copy_batch_check_v2, - "copy_reference/get": copy_reference_get, - "copy_reference/save": copy_reference_save, - "create_folder": create_folder, - "create_folder:2": create_folder_v2, - "create_folder_batch": create_folder_batch, - "create_folder_batch/check": create_folder_batch_check, - "delete": delete, - "delete:2": delete_v2, - "delete_batch": delete_batch, - "delete_batch/check": delete_batch_check, - "download": download, - "download_zip": download_zip, - "export": export, - "get_file_lock_batch": get_file_lock_batch, - "get_metadata": get_metadata, - "get_preview": get_preview, - "get_temporary_link": get_temporary_link, - "get_temporary_upload_link": get_temporary_upload_link, - "get_thumbnail": get_thumbnail, - "get_thumbnail:2": get_thumbnail_v2, - "get_thumbnail_batch": get_thumbnail_batch, - "list_folder": list_folder, - "list_folder/continue": list_folder_continue, - "list_folder/get_latest_cursor": list_folder_get_latest_cursor, - "list_folder/longpoll": list_folder_longpoll, - "list_revisions": list_revisions, - "lock_file_batch": lock_file_batch, - "move": move, - "move:2": move_v2, - "move_batch": move_batch, - "move_batch:2": move_batch_v2, - "move_batch/check": move_batch_check, - "move_batch/check:2": move_batch_check_v2, - "paper/create": paper_create, - "paper/update": paper_update, - "permanently_delete": permanently_delete, - "properties/add": properties_add, - "properties/overwrite": properties_overwrite, - "properties/update": properties_update, - "restore": restore, - "save_url": save_url, - "save_url/check_job_status": save_url_check_job_status, - "search": search, - "search:2": search_v2, - "search/continue:2": search_continue_v2, - "tags/add": tags_add, - "tags/get": tags_get, - "tags/remove": tags_remove, - "unlock_file_batch": unlock_file_batch, - "upload": upload, - "upload_session/append": upload_session_append, - "upload_session/append:2": upload_session_append_v2, - "upload_session/append_batch": upload_session_append_batch, - "upload_session/finish": upload_session_finish, - "upload_session/finish_batch": upload_session_finish_batch, - "upload_session/finish_batch:2": upload_session_finish_batch_v2, - "upload_session/finish_batch/check": upload_session_finish_batch_check, - "upload_session/start": upload_session_start, - "upload_session/start_batch": upload_session_start_batch, + 'alpha/get_metadata': alpha_get_metadata, + 'alpha/upload': alpha_upload, + 'copy': copy, + 'copy:2': copy_v2, + 'copy_batch': copy_batch, + 'copy_batch:2': copy_batch_v2, + 'copy_batch/check': copy_batch_check, + 'copy_batch/check:2': copy_batch_check_v2, + 'copy_reference/get': copy_reference_get, + 'copy_reference/save': copy_reference_save, + 'create_folder': create_folder, + 'create_folder:2': create_folder_v2, + 'create_folder_batch': create_folder_batch, + 'create_folder_batch/check': create_folder_batch_check, + 'delete': delete, + 'delete:2': delete_v2, + 'delete_batch': delete_batch, + 'delete_batch/check': delete_batch_check, + 'download': download, + 'download_zip': download_zip, + 'export': export, + 'get_file_lock_batch': get_file_lock_batch, + 'get_metadata': get_metadata, + 'get_preview': get_preview, + 'get_temporary_link': get_temporary_link, + 'get_temporary_upload_link': get_temporary_upload_link, + 'get_thumbnail': get_thumbnail, + 'get_thumbnail:2': get_thumbnail_v2, + 'get_thumbnail_batch': get_thumbnail_batch, + 'list_folder': list_folder, + 'list_folder/continue': list_folder_continue, + 'list_folder/get_latest_cursor': list_folder_get_latest_cursor, + 'list_folder/longpoll': list_folder_longpoll, + 'list_revisions': list_revisions, + 'lock_file_batch': lock_file_batch, + 'move': move, + 'move:2': move_v2, + 'move_batch': move_batch, + 'move_batch:2': move_batch_v2, + 'move_batch/check': move_batch_check, + 'move_batch/check:2': move_batch_check_v2, + 'paper/create': paper_create, + 'paper/update': paper_update, + 'permanently_delete': permanently_delete, + 'properties/add': properties_add, + 'properties/overwrite': properties_overwrite, + 'properties/update': properties_update, + 'restore': restore, + 'save_url': save_url, + 'save_url/check_job_status': save_url_check_job_status, + 'search': search, + 'search:2': search_v2, + 'search/continue:2': search_continue_v2, + 'tags/add': tags_add, + 'tags/get': tags_get, + 'tags/remove': tags_remove, + 'unlock_file_batch': unlock_file_batch, + 'upload': upload, + 'upload_session/append': upload_session_append, + 'upload_session/append:2': upload_session_append_v2, + 'upload_session/append_batch': upload_session_append_batch, + 'upload_session/finish': upload_session_finish, + 'upload_session/finish_batch': upload_session_finish_batch, + 'upload_session/finish_batch:2': upload_session_finish_batch_v2, + 'upload_session/finish_batch/check': upload_session_finish_batch_check, + 'upload_session/start': upload_session_start, + 'upload_session/start_batch': upload_session_start_batch, } + diff --git a/dropbox/openid.py b/dropbox/openid.py index d5f48404..b1595b2c 100644 --- a/dropbox/openid.py +++ b/dropbox/openid.py @@ -7,7 +7,6 @@ from stone.backends.python_rsrc import stone_base as bb from stone.backends.python_rsrc import stone_validators as bv - class OpenIdError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -18,7 +17,7 @@ class OpenIdError(bb.Union): Missing openid claims for the associated access token. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition incorrect_openid_scopes = None # Attribute is overwritten below the class definition @@ -30,7 +29,7 @@ def is_incorrect_openid_scopes(self): :rtype: bool """ - return self._tag == "incorrect_openid_scopes" + return self._tag == 'incorrect_openid_scopes' def is_other(self): """ @@ -38,21 +37,20 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): super(OpenIdError, self)._process_custom_annotations(annotation_type, field_path, processor) - OpenIdError_validator = bv.Union(OpenIdError) - class UserInfoArgs(bb.Struct): """ No Parameters """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -60,14 +58,10 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UserInfoArgs, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UserInfoArgs, self)._process_custom_annotations(annotation_type, field_path, processor) UserInfoArgs_validator = bv.Struct(UserInfoArgs) - class UserInfoError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -75,7 +69,7 @@ class UserInfoError(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -88,7 +82,7 @@ def openid_error(cls, val): :param OpenIdError val: :rtype: UserInfoError """ - return cls("openid_error", val) + return cls('openid_error', val) def is_openid_error(self): """ @@ -96,7 +90,7 @@ def is_openid_error(self): :rtype: bool """ - return self._tag == "openid_error" + return self._tag == 'openid_error' def is_other(self): """ @@ -104,7 +98,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_openid_error(self): """ @@ -117,14 +111,10 @@ def get_openid_error(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UserInfoError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UserInfoError, self)._process_custom_annotations(annotation_type, field_path, processor) UserInfoError_validator = bv.Union(UserInfoError) - class UserInfoResult(bb.Struct): """ :ivar UserInfoResult.family_name: @@ -143,25 +133,23 @@ class UserInfoResult(bb.Struct): """ __slots__ = [ - "_family_name_value", - "_given_name_value", - "_email_value", - "_email_verified_value", - "_iss_value", - "_sub_value", + '_family_name_value', + '_given_name_value', + '_email_value', + '_email_verified_value', + '_iss_value', + '_sub_value', ] _has_required_fields = False - def __init__( - self, - family_name=None, - given_name=None, - email=None, - email_verified=None, - iss=None, - sub=None, - ): + def __init__(self, + family_name=None, + given_name=None, + email=None, + email_verified=None, + iss=None, + sub=None): self._family_name_value = bb.NOT_SET self._given_name_value = bb.NOT_SET self._email_value = bb.NOT_SET @@ -200,22 +188,19 @@ def __init__( sub = bb.Attribute("sub") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UserInfoResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UserInfoResult, self)._process_custom_annotations(annotation_type, field_path, processor) UserInfoResult_validator = bv.Struct(UserInfoResult) OpenIdError._incorrect_openid_scopes_validator = bv.Void() OpenIdError._other_validator = bv.Void() OpenIdError._tagmap = { - "incorrect_openid_scopes": OpenIdError._incorrect_openid_scopes_validator, - "other": OpenIdError._other_validator, + 'incorrect_openid_scopes': OpenIdError._incorrect_openid_scopes_validator, + 'other': OpenIdError._other_validator, } -OpenIdError.incorrect_openid_scopes = OpenIdError("incorrect_openid_scopes") -OpenIdError.other = OpenIdError("other") +OpenIdError.incorrect_openid_scopes = OpenIdError('incorrect_openid_scopes') +OpenIdError.other = OpenIdError('other') UserInfoArgs._all_field_names_ = set([]) UserInfoArgs._all_fields_ = [] @@ -223,11 +208,11 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): UserInfoError._openid_error_validator = OpenIdError_validator UserInfoError._other_validator = bv.Void() UserInfoError._tagmap = { - "openid_error": UserInfoError._openid_error_validator, - "other": UserInfoError._other_validator, + 'openid_error': UserInfoError._openid_error_validator, + 'other': UserInfoError._other_validator, } -UserInfoError.other = UserInfoError("other") +UserInfoError.other = UserInfoError('other') UserInfoResult.family_name.validator = bv.Nullable(bv.String()) UserInfoResult.given_name.validator = bv.Nullable(bv.String()) @@ -235,37 +220,38 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): UserInfoResult.email_verified.validator = bv.Nullable(bv.Boolean()) UserInfoResult.iss.validator = bv.String() UserInfoResult.sub.validator = bv.String() -UserInfoResult._all_field_names_ = set( - [ - "family_name", - "given_name", - "email", - "email_verified", - "iss", - "sub", - ] -) +UserInfoResult._all_field_names_ = set([ + 'family_name', + 'given_name', + 'email', + 'email_verified', + 'iss', + 'sub', +]) UserInfoResult._all_fields_ = [ - ("family_name", UserInfoResult.family_name.validator), - ("given_name", UserInfoResult.given_name.validator), - ("email", UserInfoResult.email.validator), - ("email_verified", UserInfoResult.email_verified.validator), - ("iss", UserInfoResult.iss.validator), - ("sub", UserInfoResult.sub.validator), + ('family_name', UserInfoResult.family_name.validator), + ('given_name', UserInfoResult.given_name.validator), + ('email', UserInfoResult.email.validator), + ('email_verified', UserInfoResult.email_verified.validator), + ('iss', UserInfoResult.iss.validator), + ('sub', UserInfoResult.sub.validator), ] -UserInfoResult.iss.default = "" -UserInfoResult.sub.default = "" +UserInfoResult.iss.default = '' +UserInfoResult.sub.default = '' userinfo = bb.Route( - "userinfo", + 'userinfo', 1, False, UserInfoArgs_validator, UserInfoResult_validator, UserInfoError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) ROUTES = { - "userinfo": userinfo, + 'userinfo': userinfo, } + diff --git a/dropbox/paper.py b/dropbox/paper.py index bb21545b..f2b42a4d 100644 --- a/dropbox/paper.py +++ b/dropbox/paper.py @@ -16,7 +16,6 @@ from dropbox import files from dropbox import sharing - class AddMember(bb.Struct): """ :ivar AddMember.permission_level: @@ -27,13 +26,15 @@ class AddMember(bb.Struct): """ __slots__ = [ - "_permission_level_value", - "_member_value", + '_permission_level_value', + '_member_value', ] _has_required_fields = True - def __init__(self, member=None, permission_level=None): + def __init__(self, + member=None, + permission_level=None): self._permission_level_value = bb.NOT_SET self._member_value = bb.NOT_SET if permission_level is not None: @@ -50,10 +51,8 @@ def __init__(self, member=None, permission_level=None): def _process_custom_annotations(self, annotation_type, field_path, processor): super(AddMember, self)._process_custom_annotations(annotation_type, field_path, processor) - AddMember_validator = bv.Struct(AddMember) - class RefPaperDoc(bb.Struct): """ :ivar RefPaperDoc.doc_id: @@ -61,12 +60,13 @@ class RefPaperDoc(bb.Struct): """ __slots__ = [ - "_doc_id_value", + '_doc_id_value', ] _has_required_fields = True - def __init__(self, doc_id=None): + def __init__(self, + doc_id=None): self._doc_id_value = bb.NOT_SET if doc_id is not None: self.doc_id = doc_id @@ -77,10 +77,8 @@ def __init__(self, doc_id=None): def _process_custom_annotations(self, annotation_type, field_path, processor): super(RefPaperDoc, self)._process_custom_annotations(annotation_type, field_path, processor) - RefPaperDoc_validator = bv.Struct(RefPaperDoc) - class AddPaperDocUser(RefPaperDoc): """ :ivar AddPaperDocUser.members: @@ -95,14 +93,18 @@ class AddPaperDocUser(RefPaperDoc): """ __slots__ = [ - "_members_value", - "_custom_message_value", - "_quiet_value", + '_members_value', + '_custom_message_value', + '_quiet_value', ] _has_required_fields = True - def __init__(self, doc_id=None, members=None, custom_message=None, quiet=None): + def __init__(self, + doc_id=None, + members=None, + custom_message=None, + quiet=None): super(AddPaperDocUser, self).__init__(doc_id) self._members_value = bb.NOT_SET self._custom_message_value = bb.NOT_SET @@ -124,14 +126,10 @@ def __init__(self, doc_id=None, members=None, custom_message=None, quiet=None): quiet = bb.Attribute("quiet") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AddPaperDocUser, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AddPaperDocUser, self)._process_custom_annotations(annotation_type, field_path, processor) AddPaperDocUser_validator = bv.Struct(AddPaperDocUser) - class AddPaperDocUserMemberResult(bb.Struct): """ Per-member result for @@ -144,13 +142,15 @@ class AddPaperDocUserMemberResult(bb.Struct): """ __slots__ = [ - "_member_value", - "_result_value", + '_member_value', + '_result_value', ] _has_required_fields = True - def __init__(self, member=None, result=None): + def __init__(self, + member=None, + result=None): self._member_value = bb.NOT_SET self._result_value = bb.NOT_SET if member is not None: @@ -165,14 +165,10 @@ def __init__(self, member=None, result=None): result = bb.Attribute("result", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AddPaperDocUserMemberResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AddPaperDocUserMemberResult, self)._process_custom_annotations(annotation_type, field_path, processor) AddPaperDocUserMemberResult_validator = bv.Struct(AddPaperDocUserMemberResult) - class AddPaperDocUserResult(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -197,7 +193,7 @@ class AddPaperDocUserResult(bb.Union): This user already has the correct permission to the Paper doc. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition success = None # Attribute is overwritten below the class definition @@ -221,7 +217,7 @@ def is_success(self): :rtype: bool """ - return self._tag == "success" + return self._tag == 'success' def is_unknown_error(self): """ @@ -229,7 +225,7 @@ def is_unknown_error(self): :rtype: bool """ - return self._tag == "unknown_error" + return self._tag == 'unknown_error' def is_sharing_outside_team_disabled(self): """ @@ -237,7 +233,7 @@ def is_sharing_outside_team_disabled(self): :rtype: bool """ - return self._tag == "sharing_outside_team_disabled" + return self._tag == 'sharing_outside_team_disabled' def is_daily_limit_reached(self): """ @@ -245,7 +241,7 @@ def is_daily_limit_reached(self): :rtype: bool """ - return self._tag == "daily_limit_reached" + return self._tag == 'daily_limit_reached' def is_user_is_owner(self): """ @@ -253,7 +249,7 @@ def is_user_is_owner(self): :rtype: bool """ - return self._tag == "user_is_owner" + return self._tag == 'user_is_owner' def is_failed_user_data_retrieval(self): """ @@ -261,7 +257,7 @@ def is_failed_user_data_retrieval(self): :rtype: bool """ - return self._tag == "failed_user_data_retrieval" + return self._tag == 'failed_user_data_retrieval' def is_permission_already_granted(self): """ @@ -269,7 +265,7 @@ def is_permission_already_granted(self): :rtype: bool """ - return self._tag == "permission_already_granted" + return self._tag == 'permission_already_granted' def is_other(self): """ @@ -277,17 +273,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AddPaperDocUserResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AddPaperDocUserResult, self)._process_custom_annotations(annotation_type, field_path, processor) AddPaperDocUserResult_validator = bv.Union(AddPaperDocUserResult) - class Cursor(bb.Struct): """ :ivar Cursor.value: @@ -309,13 +301,15 @@ class Cursor(bb.Struct): """ __slots__ = [ - "_value_value", - "_expiration_value", + '_value_value', + '_expiration_value', ] _has_required_fields = True - def __init__(self, value=None, expiration=None): + def __init__(self, + value=None, + expiration=None): self._value_value = bb.NOT_SET self._expiration_value = bb.NOT_SET if value is not None: @@ -332,10 +326,8 @@ def __init__(self, value=None, expiration=None): def _process_custom_annotations(self, annotation_type, field_path, processor): super(Cursor, self)._process_custom_annotations(annotation_type, field_path, processor) - Cursor_validator = bv.Struct(Cursor) - class PaperApiBaseError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -349,7 +341,7 @@ class PaperApiBaseError(bb.Union): `_. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition insufficient_permissions = None # Attribute is overwritten below the class definition @@ -361,7 +353,7 @@ def is_insufficient_permissions(self): :rtype: bool """ - return self._tag == "insufficient_permissions" + return self._tag == 'insufficient_permissions' def is_other(self): """ @@ -369,17 +361,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperApiBaseError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperApiBaseError, self)._process_custom_annotations(annotation_type, field_path, processor) PaperApiBaseError_validator = bv.Union(PaperApiBaseError) - class DocLookupError(PaperApiBaseError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -399,17 +387,13 @@ def is_doc_not_found(self): :rtype: bool """ - return self._tag == "doc_not_found" + return self._tag == 'doc_not_found' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DocLookupError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DocLookupError, self)._process_custom_annotations(annotation_type, field_path, processor) DocLookupError_validator = bv.Union(DocLookupError) - class DocSubscriptionLevel(bb.Union): """ The subscription level of a Paper doc. @@ -447,7 +431,7 @@ def is_default(self): :rtype: bool """ - return self._tag == "default" + return self._tag == 'default' def is_ignore(self): """ @@ -455,7 +439,7 @@ def is_ignore(self): :rtype: bool """ - return self._tag == "ignore" + return self._tag == 'ignore' def is_every(self): """ @@ -463,7 +447,7 @@ def is_every(self): :rtype: bool """ - return self._tag == "every" + return self._tag == 'every' def is_no_email(self): """ @@ -471,17 +455,13 @@ def is_no_email(self): :rtype: bool """ - return self._tag == "no_email" + return self._tag == 'no_email' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DocSubscriptionLevel, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DocSubscriptionLevel, self)._process_custom_annotations(annotation_type, field_path, processor) DocSubscriptionLevel_validator = bv.Union(DocSubscriptionLevel) - class ExportFormat(bb.Union): """ The desired export format of the Paper doc. @@ -498,7 +478,7 @@ class ExportFormat(bb.Union): Doc metadata JSON export format. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition html = None # Attribute is overwritten below the class definition @@ -514,7 +494,7 @@ def is_html(self): :rtype: bool """ - return self._tag == "html" + return self._tag == 'html' def is_markdown(self): """ @@ -522,7 +502,7 @@ def is_markdown(self): :rtype: bool """ - return self._tag == "markdown" + return self._tag == 'markdown' def is_json(self): """ @@ -530,7 +510,7 @@ def is_json(self): :rtype: bool """ - return self._tag == "json" + return self._tag == 'json' def is_other(self): """ @@ -538,17 +518,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ExportFormat, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ExportFormat, self)._process_custom_annotations(annotation_type, field_path, processor) ExportFormat_validator = bv.Union(ExportFormat) - class Folder(bb.Struct): """ Data structure representing a Paper folder. @@ -560,13 +536,15 @@ class Folder(bb.Struct): """ __slots__ = [ - "_id_value", - "_name_value", + '_id_value', + '_name_value', ] _has_required_fields = True - def __init__(self, id=None, name=None): + def __init__(self, + id=None, + name=None): self._id_value = bb.NOT_SET self._name_value = bb.NOT_SET if id is not None: @@ -583,10 +561,8 @@ def __init__(self, id=None, name=None): def _process_custom_annotations(self, annotation_type, field_path, processor): super(Folder, self)._process_custom_annotations(annotation_type, field_path, processor) - Folder_validator = bv.Struct(Folder) - class FolderSharingPolicyType(bb.Union): """ The sharing policy of a Paper folder. The sharing policy of subfolders is @@ -615,7 +591,7 @@ def is_team(self): :rtype: bool """ - return self._tag == "team" + return self._tag == 'team' def is_invite_only(self): """ @@ -623,17 +599,13 @@ def is_invite_only(self): :rtype: bool """ - return self._tag == "invite_only" + return self._tag == 'invite_only' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FolderSharingPolicyType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FolderSharingPolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) FolderSharingPolicyType_validator = bv.Union(FolderSharingPolicyType) - class FolderSubscriptionLevel(bb.Union): """ The subscription level of a Paper folder. @@ -668,7 +640,7 @@ def is_none(self): :rtype: bool """ - return self._tag == "none" + return self._tag == 'none' def is_activity_only(self): """ @@ -676,7 +648,7 @@ def is_activity_only(self): :rtype: bool """ - return self._tag == "activity_only" + return self._tag == 'activity_only' def is_daily_emails(self): """ @@ -684,7 +656,7 @@ def is_daily_emails(self): :rtype: bool """ - return self._tag == "daily_emails" + return self._tag == 'daily_emails' def is_weekly_emails(self): """ @@ -692,17 +664,13 @@ def is_weekly_emails(self): :rtype: bool """ - return self._tag == "weekly_emails" + return self._tag == 'weekly_emails' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FolderSubscriptionLevel, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FolderSubscriptionLevel, self)._process_custom_annotations(annotation_type, field_path, processor) FolderSubscriptionLevel_validator = bv.Union(FolderSubscriptionLevel) - class FoldersContainingPaperDoc(bb.Struct): """ Metadata about Paper folders containing the specififed Paper doc. @@ -714,13 +682,15 @@ class FoldersContainingPaperDoc(bb.Struct): """ __slots__ = [ - "_folder_sharing_policy_type_value", - "_folders_value", + '_folder_sharing_policy_type_value', + '_folders_value', ] _has_required_fields = False - def __init__(self, folder_sharing_policy_type=None, folders=None): + def __init__(self, + folder_sharing_policy_type=None, + folders=None): self._folder_sharing_policy_type_value = bb.NOT_SET self._folders_value = bb.NOT_SET if folder_sharing_policy_type is not None: @@ -729,22 +699,16 @@ def __init__(self, folder_sharing_policy_type=None, folders=None): self.folders = folders # Instance attribute type: FolderSharingPolicyType (validator is set below) - folder_sharing_policy_type = bb.Attribute( - "folder_sharing_policy_type", nullable=True, user_defined=True - ) + folder_sharing_policy_type = bb.Attribute("folder_sharing_policy_type", nullable=True, user_defined=True) # Instance attribute type: list of [Folder] (validator is set below) folders = bb.Attribute("folders", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FoldersContainingPaperDoc, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FoldersContainingPaperDoc, self)._process_custom_annotations(annotation_type, field_path, processor) FoldersContainingPaperDoc_validator = bv.Struct(FoldersContainingPaperDoc) - class GetDocMetadataArg(bb.Struct): """ Argument for retrieving Paper doc metadata. Accepts either a legacy Paper @@ -757,13 +721,15 @@ class GetDocMetadataArg(bb.Struct): """ __slots__ = [ - "_doc_id_value", - "_file_id_value", + '_doc_id_value', + '_file_id_value', ] _has_required_fields = False - def __init__(self, doc_id=None, file_id=None): + def __init__(self, + doc_id=None, + file_id=None): self._doc_id_value = bb.NOT_SET self._file_id_value = bb.NOT_SET if doc_id is not None: @@ -778,14 +744,10 @@ def __init__(self, doc_id=None, file_id=None): file_id = bb.Attribute("file_id", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetDocMetadataArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GetDocMetadataArg, self)._process_custom_annotations(annotation_type, field_path, processor) GetDocMetadataArg_validator = bv.Struct(GetDocMetadataArg) - class ImportFormat(bb.Union): """ The import format of the incoming data. @@ -804,7 +766,7 @@ class ImportFormat(bb.Union): provided document will be used as the doc title. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition html = None # Attribute is overwritten below the class definition @@ -820,7 +782,7 @@ def is_html(self): :rtype: bool """ - return self._tag == "html" + return self._tag == 'html' def is_markdown(self): """ @@ -828,7 +790,7 @@ def is_markdown(self): :rtype: bool """ - return self._tag == "markdown" + return self._tag == 'markdown' def is_plain_text(self): """ @@ -836,7 +798,7 @@ def is_plain_text(self): :rtype: bool """ - return self._tag == "plain_text" + return self._tag == 'plain_text' def is_other(self): """ @@ -844,17 +806,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ImportFormat, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ImportFormat, self)._process_custom_annotations(annotation_type, field_path, processor) ImportFormat_validator = bv.Union(ImportFormat) - class InviteeInfoWithPermissionLevel(bb.Struct): """ :ivar InviteeInfoWithPermissionLevel.invitee: @@ -864,13 +822,15 @@ class InviteeInfoWithPermissionLevel(bb.Struct): """ __slots__ = [ - "_invitee_value", - "_permission_level_value", + '_invitee_value', + '_permission_level_value', ] _has_required_fields = True - def __init__(self, invitee=None, permission_level=None): + def __init__(self, + invitee=None, + permission_level=None): self._invitee_value = bb.NOT_SET self._permission_level_value = bb.NOT_SET if invitee is not None: @@ -885,14 +845,10 @@ def __init__(self, invitee=None, permission_level=None): permission_level = bb.Attribute("permission_level", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(InviteeInfoWithPermissionLevel, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(InviteeInfoWithPermissionLevel, self)._process_custom_annotations(annotation_type, field_path, processor) InviteeInfoWithPermissionLevel_validator = bv.Struct(InviteeInfoWithPermissionLevel) - class ListDocsCursorError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -900,7 +856,7 @@ class ListDocsCursorError(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -913,7 +869,7 @@ def cursor_error(cls, val): :param PaperApiCursorError val: :rtype: ListDocsCursorError """ - return cls("cursor_error", val) + return cls('cursor_error', val) def is_cursor_error(self): """ @@ -921,7 +877,7 @@ def is_cursor_error(self): :rtype: bool """ - return self._tag == "cursor_error" + return self._tag == 'cursor_error' def is_other(self): """ @@ -929,7 +885,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_cursor_error(self): """ @@ -942,14 +898,10 @@ def get_cursor_error(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListDocsCursorError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ListDocsCursorError, self)._process_custom_annotations(annotation_type, field_path, processor) ListDocsCursorError_validator = bv.Union(ListDocsCursorError) - class ListPaperDocsArgs(bb.Struct): """ :ivar ListPaperDocsArgs.filter_by: @@ -966,23 +918,21 @@ class ListPaperDocsArgs(bb.Struct): """ __slots__ = [ - "_filter_by_value", - "_sort_by_value", - "_sort_order_value", - "_limit_value", - "_stop_at_date_value", + '_filter_by_value', + '_sort_by_value', + '_sort_order_value', + '_limit_value', + '_stop_at_date_value', ] _has_required_fields = False - def __init__( - self, - filter_by=None, - sort_by=None, - sort_order=None, - limit=None, - stop_at_date=None, - ): + def __init__(self, + filter_by=None, + sort_by=None, + sort_order=None, + limit=None, + stop_at_date=None): self._filter_by_value = bb.NOT_SET self._sort_by_value = bb.NOT_SET self._sort_order_value = bb.NOT_SET @@ -1015,14 +965,10 @@ def __init__( stop_at_date = bb.Attribute("stop_at_date", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListPaperDocsArgs, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ListPaperDocsArgs, self)._process_custom_annotations(annotation_type, field_path, processor) ListPaperDocsArgs_validator = bv.Struct(ListPaperDocsArgs) - class ListPaperDocsContinueArgs(bb.Struct): """ :ivar ListPaperDocsContinueArgs.cursor: @@ -1033,12 +979,13 @@ class ListPaperDocsContinueArgs(bb.Struct): """ __slots__ = [ - "_cursor_value", + '_cursor_value', ] _has_required_fields = True - def __init__(self, cursor=None): + def __init__(self, + cursor=None): self._cursor_value = bb.NOT_SET if cursor is not None: self.cursor = cursor @@ -1047,14 +994,10 @@ def __init__(self, cursor=None): cursor = bb.Attribute("cursor") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListPaperDocsContinueArgs, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ListPaperDocsContinueArgs, self)._process_custom_annotations(annotation_type, field_path, processor) ListPaperDocsContinueArgs_validator = bv.Struct(ListPaperDocsContinueArgs) - class ListPaperDocsFilterBy(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -1067,7 +1010,7 @@ class ListPaperDocsFilterBy(bb.Union): Fetches only the Paper doc IDs that the user has created. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition docs_accessed = None # Attribute is overwritten below the class definition @@ -1081,7 +1024,7 @@ def is_docs_accessed(self): :rtype: bool """ - return self._tag == "docs_accessed" + return self._tag == 'docs_accessed' def is_docs_created(self): """ @@ -1089,7 +1032,7 @@ def is_docs_created(self): :rtype: bool """ - return self._tag == "docs_created" + return self._tag == 'docs_created' def is_other(self): """ @@ -1097,17 +1040,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListPaperDocsFilterBy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ListPaperDocsFilterBy, self)._process_custom_annotations(annotation_type, field_path, processor) ListPaperDocsFilterBy_validator = bv.Union(ListPaperDocsFilterBy) - class ListPaperDocsResponse(bb.Struct): """ :ivar ListPaperDocsResponse.doc_ids: @@ -1130,14 +1069,17 @@ class ListPaperDocsResponse(bb.Struct): """ __slots__ = [ - "_doc_ids_value", - "_cursor_value", - "_has_more_value", + '_doc_ids_value', + '_cursor_value', + '_has_more_value', ] _has_required_fields = True - def __init__(self, doc_ids=None, cursor=None, has_more=None): + def __init__(self, + doc_ids=None, + cursor=None, + has_more=None): self._doc_ids_value = bb.NOT_SET self._cursor_value = bb.NOT_SET self._has_more_value = bb.NOT_SET @@ -1158,14 +1100,10 @@ def __init__(self, doc_ids=None, cursor=None, has_more=None): has_more = bb.Attribute("has_more") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListPaperDocsResponse, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ListPaperDocsResponse, self)._process_custom_annotations(annotation_type, field_path, processor) ListPaperDocsResponse_validator = bv.Struct(ListPaperDocsResponse) - class ListPaperDocsSortBy(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -1180,7 +1118,7 @@ class ListPaperDocsSortBy(bb.Union): Sorts the Paper docs by the creation time. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition accessed = None # Attribute is overwritten below the class definition @@ -1196,7 +1134,7 @@ def is_accessed(self): :rtype: bool """ - return self._tag == "accessed" + return self._tag == 'accessed' def is_modified(self): """ @@ -1204,7 +1142,7 @@ def is_modified(self): :rtype: bool """ - return self._tag == "modified" + return self._tag == 'modified' def is_created(self): """ @@ -1212,7 +1150,7 @@ def is_created(self): :rtype: bool """ - return self._tag == "created" + return self._tag == 'created' def is_other(self): """ @@ -1220,17 +1158,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListPaperDocsSortBy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ListPaperDocsSortBy, self)._process_custom_annotations(annotation_type, field_path, processor) ListPaperDocsSortBy_validator = bv.Union(ListPaperDocsSortBy) - class ListPaperDocsSortOrder(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -1243,7 +1177,7 @@ class ListPaperDocsSortOrder(bb.Union): Sorts the search result in descending order. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition ascending = None # Attribute is overwritten below the class definition @@ -1257,7 +1191,7 @@ def is_ascending(self): :rtype: bool """ - return self._tag == "ascending" + return self._tag == 'ascending' def is_descending(self): """ @@ -1265,7 +1199,7 @@ def is_descending(self): :rtype: bool """ - return self._tag == "descending" + return self._tag == 'descending' def is_other(self): """ @@ -1273,17 +1207,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListPaperDocsSortOrder, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ListPaperDocsSortOrder, self)._process_custom_annotations(annotation_type, field_path, processor) ListPaperDocsSortOrder_validator = bv.Union(ListPaperDocsSortOrder) - class ListUsersCursorError(PaperApiBaseError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -1306,7 +1236,7 @@ def cursor_error(cls, val): :param PaperApiCursorError val: :rtype: ListUsersCursorError """ - return cls("cursor_error", val) + return cls('cursor_error', val) def is_doc_not_found(self): """ @@ -1314,7 +1244,7 @@ def is_doc_not_found(self): :rtype: bool """ - return self._tag == "doc_not_found" + return self._tag == 'doc_not_found' def is_cursor_error(self): """ @@ -1322,7 +1252,7 @@ def is_cursor_error(self): :rtype: bool """ - return self._tag == "cursor_error" + return self._tag == 'cursor_error' def get_cursor_error(self): """ @@ -1335,14 +1265,10 @@ def get_cursor_error(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListUsersCursorError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ListUsersCursorError, self)._process_custom_annotations(annotation_type, field_path, processor) ListUsersCursorError_validator = bv.Union(ListUsersCursorError) - class ListUsersOnFolderArgs(RefPaperDoc): """ :ivar ListUsersOnFolderArgs.limit: @@ -1351,12 +1277,14 @@ class ListUsersOnFolderArgs(RefPaperDoc): """ __slots__ = [ - "_limit_value", + '_limit_value', ] _has_required_fields = True - def __init__(self, doc_id=None, limit=None): + def __init__(self, + doc_id=None, + limit=None): super(ListUsersOnFolderArgs, self).__init__(doc_id) self._limit_value = bb.NOT_SET if limit is not None: @@ -1366,14 +1294,10 @@ def __init__(self, doc_id=None, limit=None): limit = bb.Attribute("limit") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListUsersOnFolderArgs, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ListUsersOnFolderArgs, self)._process_custom_annotations(annotation_type, field_path, processor) ListUsersOnFolderArgs_validator = bv.Struct(ListUsersOnFolderArgs) - class ListUsersOnFolderContinueArgs(RefPaperDoc): """ :ivar ListUsersOnFolderContinueArgs.cursor: @@ -1384,12 +1308,14 @@ class ListUsersOnFolderContinueArgs(RefPaperDoc): """ __slots__ = [ - "_cursor_value", + '_cursor_value', ] _has_required_fields = True - def __init__(self, doc_id=None, cursor=None): + def __init__(self, + doc_id=None, + cursor=None): super(ListUsersOnFolderContinueArgs, self).__init__(doc_id) self._cursor_value = bb.NOT_SET if cursor is not None: @@ -1399,14 +1325,10 @@ def __init__(self, doc_id=None, cursor=None): cursor = bb.Attribute("cursor") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListUsersOnFolderContinueArgs, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ListUsersOnFolderContinueArgs, self)._process_custom_annotations(annotation_type, field_path, processor) ListUsersOnFolderContinueArgs_validator = bv.Struct(ListUsersOnFolderContinueArgs) - class ListUsersOnFolderResponse(bb.Struct): """ :ivar ListUsersOnFolderResponse.invitees: @@ -1428,15 +1350,19 @@ class ListUsersOnFolderResponse(bb.Struct): """ __slots__ = [ - "_invitees_value", - "_users_value", - "_cursor_value", - "_has_more_value", + '_invitees_value', + '_users_value', + '_cursor_value', + '_has_more_value', ] _has_required_fields = True - def __init__(self, invitees=None, users=None, cursor=None, has_more=None): + def __init__(self, + invitees=None, + users=None, + cursor=None, + has_more=None): self._invitees_value = bb.NOT_SET self._users_value = bb.NOT_SET self._cursor_value = bb.NOT_SET @@ -1463,14 +1389,10 @@ def __init__(self, invitees=None, users=None, cursor=None, has_more=None): has_more = bb.Attribute("has_more") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListUsersOnFolderResponse, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ListUsersOnFolderResponse, self)._process_custom_annotations(annotation_type, field_path, processor) ListUsersOnFolderResponse_validator = bv.Struct(ListUsersOnFolderResponse) - class ListUsersOnPaperDocArgs(RefPaperDoc): """ :ivar ListUsersOnPaperDocArgs.limit: @@ -1482,13 +1404,16 @@ class ListUsersOnPaperDocArgs(RefPaperDoc): """ __slots__ = [ - "_limit_value", - "_filter_by_value", + '_limit_value', + '_filter_by_value', ] _has_required_fields = True - def __init__(self, doc_id=None, limit=None, filter_by=None): + def __init__(self, + doc_id=None, + limit=None, + filter_by=None): super(ListUsersOnPaperDocArgs, self).__init__(doc_id) self._limit_value = bb.NOT_SET self._filter_by_value = bb.NOT_SET @@ -1504,14 +1429,10 @@ def __init__(self, doc_id=None, limit=None, filter_by=None): filter_by = bb.Attribute("filter_by", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListUsersOnPaperDocArgs, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ListUsersOnPaperDocArgs, self)._process_custom_annotations(annotation_type, field_path, processor) ListUsersOnPaperDocArgs_validator = bv.Struct(ListUsersOnPaperDocArgs) - class ListUsersOnPaperDocContinueArgs(RefPaperDoc): """ :ivar ListUsersOnPaperDocContinueArgs.cursor: @@ -1522,12 +1443,14 @@ class ListUsersOnPaperDocContinueArgs(RefPaperDoc): """ __slots__ = [ - "_cursor_value", + '_cursor_value', ] _has_required_fields = True - def __init__(self, doc_id=None, cursor=None): + def __init__(self, + doc_id=None, + cursor=None): super(ListUsersOnPaperDocContinueArgs, self).__init__(doc_id) self._cursor_value = bb.NOT_SET if cursor is not None: @@ -1537,14 +1460,10 @@ def __init__(self, doc_id=None, cursor=None): cursor = bb.Attribute("cursor") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListUsersOnPaperDocContinueArgs, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ListUsersOnPaperDocContinueArgs, self)._process_custom_annotations(annotation_type, field_path, processor) ListUsersOnPaperDocContinueArgs_validator = bv.Struct(ListUsersOnPaperDocContinueArgs) - class ListUsersOnPaperDocResponse(bb.Struct): """ :ivar ListUsersOnPaperDocResponse.invitees: @@ -1570,16 +1489,21 @@ class ListUsersOnPaperDocResponse(bb.Struct): """ __slots__ = [ - "_invitees_value", - "_users_value", - "_doc_owner_value", - "_cursor_value", - "_has_more_value", + '_invitees_value', + '_users_value', + '_doc_owner_value', + '_cursor_value', + '_has_more_value', ] _has_required_fields = True - def __init__(self, invitees=None, users=None, doc_owner=None, cursor=None, has_more=None): + def __init__(self, + invitees=None, + users=None, + doc_owner=None, + cursor=None, + has_more=None): self._invitees_value = bb.NOT_SET self._users_value = bb.NOT_SET self._doc_owner_value = bb.NOT_SET @@ -1612,14 +1536,10 @@ def __init__(self, invitees=None, users=None, doc_owner=None, cursor=None, has_m has_more = bb.Attribute("has_more") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListUsersOnPaperDocResponse, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ListUsersOnPaperDocResponse, self)._process_custom_annotations(annotation_type, field_path, processor) ListUsersOnPaperDocResponse_validator = bv.Struct(ListUsersOnPaperDocResponse) - class PaperApiCursorError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -1637,7 +1557,7 @@ class PaperApiCursorError(bb.Union): non-continue endpoint to obtain a new cursor. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition expired_cursor = None # Attribute is overwritten below the class definition @@ -1655,7 +1575,7 @@ def is_expired_cursor(self): :rtype: bool """ - return self._tag == "expired_cursor" + return self._tag == 'expired_cursor' def is_invalid_cursor(self): """ @@ -1663,7 +1583,7 @@ def is_invalid_cursor(self): :rtype: bool """ - return self._tag == "invalid_cursor" + return self._tag == 'invalid_cursor' def is_wrong_user_in_cursor(self): """ @@ -1671,7 +1591,7 @@ def is_wrong_user_in_cursor(self): :rtype: bool """ - return self._tag == "wrong_user_in_cursor" + return self._tag == 'wrong_user_in_cursor' def is_reset(self): """ @@ -1679,7 +1599,7 @@ def is_reset(self): :rtype: bool """ - return self._tag == "reset" + return self._tag == 'reset' def is_other(self): """ @@ -1687,17 +1607,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperApiCursorError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperApiCursorError, self)._process_custom_annotations(annotation_type, field_path, processor) PaperApiCursorError_validator = bv.Union(PaperApiCursorError) - class PaperDocCreateArgs(bb.Struct): """ :ivar PaperDocCreateArgs.parent_folder_id: @@ -1708,13 +1624,15 @@ class PaperDocCreateArgs(bb.Struct): """ __slots__ = [ - "_parent_folder_id_value", - "_import_format_value", + '_parent_folder_id_value', + '_import_format_value', ] _has_required_fields = True - def __init__(self, import_format=None, parent_folder_id=None): + def __init__(self, + import_format=None, + parent_folder_id=None): self._parent_folder_id_value = bb.NOT_SET self._import_format_value = bb.NOT_SET if parent_folder_id is not None: @@ -1729,14 +1647,10 @@ def __init__(self, import_format=None, parent_folder_id=None): import_format = bb.Attribute("import_format", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocCreateArgs, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperDocCreateArgs, self)._process_custom_annotations(annotation_type, field_path, processor) PaperDocCreateArgs_validator = bv.Struct(PaperDocCreateArgs) - class PaperDocCreateError(PaperApiBaseError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -1770,7 +1684,7 @@ def is_content_malformed(self): :rtype: bool """ - return self._tag == "content_malformed" + return self._tag == 'content_malformed' def is_folder_not_found(self): """ @@ -1778,7 +1692,7 @@ def is_folder_not_found(self): :rtype: bool """ - return self._tag == "folder_not_found" + return self._tag == 'folder_not_found' def is_doc_length_exceeded(self): """ @@ -1786,7 +1700,7 @@ def is_doc_length_exceeded(self): :rtype: bool """ - return self._tag == "doc_length_exceeded" + return self._tag == 'doc_length_exceeded' def is_image_size_exceeded(self): """ @@ -1794,17 +1708,13 @@ def is_image_size_exceeded(self): :rtype: bool """ - return self._tag == "image_size_exceeded" + return self._tag == 'image_size_exceeded' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocCreateError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperDocCreateError, self)._process_custom_annotations(annotation_type, field_path, processor) PaperDocCreateError_validator = bv.Union(PaperDocCreateError) - class PaperDocCreateUpdateResult(bb.Struct): """ :ivar PaperDocCreateUpdateResult.doc_id: @@ -1816,14 +1726,17 @@ class PaperDocCreateUpdateResult(bb.Struct): """ __slots__ = [ - "_doc_id_value", - "_revision_value", - "_title_value", + '_doc_id_value', + '_revision_value', + '_title_value', ] _has_required_fields = True - def __init__(self, doc_id=None, revision=None, title=None): + def __init__(self, + doc_id=None, + revision=None, + title=None): self._doc_id_value = bb.NOT_SET self._revision_value = bb.NOT_SET self._title_value = bb.NOT_SET @@ -1844,14 +1757,10 @@ def __init__(self, doc_id=None, revision=None, title=None): title = bb.Attribute("title") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocCreateUpdateResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperDocCreateUpdateResult, self)._process_custom_annotations(annotation_type, field_path, processor) PaperDocCreateUpdateResult_validator = bv.Struct(PaperDocCreateUpdateResult) - class PaperDocExport(RefPaperDoc): """ :ivar PaperDocExport.include_comments: @@ -1862,13 +1771,16 @@ class PaperDocExport(RefPaperDoc): """ __slots__ = [ - "_export_format_value", - "_include_comments_value", + '_export_format_value', + '_include_comments_value', ] _has_required_fields = True - def __init__(self, doc_id=None, export_format=None, include_comments=None): + def __init__(self, + doc_id=None, + export_format=None, + include_comments=None): super(PaperDocExport, self).__init__(doc_id) self._export_format_value = bb.NOT_SET self._include_comments_value = bb.NOT_SET @@ -1884,14 +1796,10 @@ def __init__(self, doc_id=None, export_format=None, include_comments=None): include_comments = bb.Attribute("include_comments") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocExport, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperDocExport, self)._process_custom_annotations(annotation_type, field_path, processor) PaperDocExport_validator = bv.Struct(PaperDocExport) - class PaperDocExportResult(bb.Struct): """ :ivar PaperDocExportResult.owner: @@ -1906,15 +1814,19 @@ class PaperDocExportResult(bb.Struct): """ __slots__ = [ - "_owner_value", - "_title_value", - "_revision_value", - "_mime_type_value", + '_owner_value', + '_title_value', + '_revision_value', + '_mime_type_value', ] _has_required_fields = True - def __init__(self, owner=None, title=None, revision=None, mime_type=None): + def __init__(self, + owner=None, + title=None, + revision=None, + mime_type=None): self._owner_value = bb.NOT_SET self._title_value = bb.NOT_SET self._revision_value = bb.NOT_SET @@ -1941,14 +1853,10 @@ def __init__(self, owner=None, title=None, revision=None, mime_type=None): mime_type = bb.Attribute("mime_type") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocExportResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperDocExportResult, self)._process_custom_annotations(annotation_type, field_path, processor) PaperDocExportResult_validator = bv.Struct(PaperDocExportResult) - class PaperDocGetMetadataResult(bb.Struct): """ Metadata returned by docs/get_metadata. @@ -1972,29 +1880,27 @@ class PaperDocGetMetadataResult(bb.Struct): """ __slots__ = [ - "_doc_id_value", - "_owner_value", - "_title_value", - "_created_date_value", - "_status_value", - "_revision_value", - "_last_updated_date_value", - "_last_editor_value", + '_doc_id_value', + '_owner_value', + '_title_value', + '_created_date_value', + '_status_value', + '_revision_value', + '_last_updated_date_value', + '_last_editor_value', ] _has_required_fields = True - def __init__( - self, - doc_id=None, - owner=None, - title=None, - created_date=None, - status=None, - revision=None, - last_updated_date=None, - last_editor=None, - ): + def __init__(self, + doc_id=None, + owner=None, + title=None, + created_date=None, + status=None, + revision=None, + last_updated_date=None, + last_editor=None): self._doc_id_value = bb.NOT_SET self._owner_value = bb.NOT_SET self._title_value = bb.NOT_SET @@ -2045,14 +1951,10 @@ def __init__( last_editor = bb.Attribute("last_editor") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocGetMetadataResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperDocGetMetadataResult, self)._process_custom_annotations(annotation_type, field_path, processor) PaperDocGetMetadataResult_validator = bv.Struct(PaperDocGetMetadataResult) - class PaperDocPermissionLevel(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -2065,7 +1967,7 @@ class PaperDocPermissionLevel(bb.Union): User will be granted view and comment permissions. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition edit = None # Attribute is overwritten below the class definition @@ -2079,7 +1981,7 @@ def is_edit(self): :rtype: bool """ - return self._tag == "edit" + return self._tag == 'edit' def is_view_and_comment(self): """ @@ -2087,7 +1989,7 @@ def is_view_and_comment(self): :rtype: bool """ - return self._tag == "view_and_comment" + return self._tag == 'view_and_comment' def is_other(self): """ @@ -2095,17 +1997,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocPermissionLevel, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperDocPermissionLevel, self)._process_custom_annotations(annotation_type, field_path, processor) PaperDocPermissionLevel_validator = bv.Union(PaperDocPermissionLevel) - class PaperDocSharingPolicy(RefPaperDoc): """ :ivar PaperDocSharingPolicy.sharing_policy: @@ -2113,12 +2011,14 @@ class PaperDocSharingPolicy(RefPaperDoc): """ __slots__ = [ - "_sharing_policy_value", + '_sharing_policy_value', ] _has_required_fields = True - def __init__(self, doc_id=None, sharing_policy=None): + def __init__(self, + doc_id=None, + sharing_policy=None): super(PaperDocSharingPolicy, self).__init__(doc_id) self._sharing_policy_value = bb.NOT_SET if sharing_policy is not None: @@ -2128,14 +2028,10 @@ def __init__(self, doc_id=None, sharing_policy=None): sharing_policy = bb.Attribute("sharing_policy", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocSharingPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperDocSharingPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) PaperDocSharingPolicy_validator = bv.Struct(PaperDocSharingPolicy) - class PaperDocStatus(bb.Union): """ The status of a Paper doc. @@ -2150,7 +2046,7 @@ class PaperDocStatus(bb.Union): The Paper doc is deleted. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition active = None # Attribute is overwritten below the class definition @@ -2164,7 +2060,7 @@ def is_active(self): :rtype: bool """ - return self._tag == "active" + return self._tag == 'active' def is_deleted(self): """ @@ -2172,7 +2068,7 @@ def is_deleted(self): :rtype: bool """ - return self._tag == "deleted" + return self._tag == 'deleted' def is_other(self): """ @@ -2180,17 +2076,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocStatus, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperDocStatus, self)._process_custom_annotations(annotation_type, field_path, processor) PaperDocStatus_validator = bv.Union(PaperDocStatus) - class PaperDocUpdateArgs(RefPaperDoc): """ :ivar PaperDocUpdateArgs.doc_update_policy: @@ -2203,14 +2095,18 @@ class PaperDocUpdateArgs(RefPaperDoc): """ __slots__ = [ - "_doc_update_policy_value", - "_revision_value", - "_import_format_value", + '_doc_update_policy_value', + '_revision_value', + '_import_format_value', ] _has_required_fields = True - def __init__(self, doc_id=None, doc_update_policy=None, revision=None, import_format=None): + def __init__(self, + doc_id=None, + doc_update_policy=None, + revision=None, + import_format=None): super(PaperDocUpdateArgs, self).__init__(doc_id) self._doc_update_policy_value = bb.NOT_SET self._revision_value = bb.NOT_SET @@ -2232,14 +2128,10 @@ def __init__(self, doc_id=None, doc_update_policy=None, revision=None, import_fo import_format = bb.Attribute("import_format", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocUpdateArgs, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperDocUpdateArgs, self)._process_custom_annotations(annotation_type, field_path, processor) PaperDocUpdateArgs_validator = bv.Struct(PaperDocUpdateArgs) - class PaperDocUpdateError(DocLookupError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -2281,7 +2173,7 @@ def is_content_malformed(self): :rtype: bool """ - return self._tag == "content_malformed" + return self._tag == 'content_malformed' def is_revision_mismatch(self): """ @@ -2289,7 +2181,7 @@ def is_revision_mismatch(self): :rtype: bool """ - return self._tag == "revision_mismatch" + return self._tag == 'revision_mismatch' def is_doc_length_exceeded(self): """ @@ -2297,7 +2189,7 @@ def is_doc_length_exceeded(self): :rtype: bool """ - return self._tag == "doc_length_exceeded" + return self._tag == 'doc_length_exceeded' def is_image_size_exceeded(self): """ @@ -2305,7 +2197,7 @@ def is_image_size_exceeded(self): :rtype: bool """ - return self._tag == "image_size_exceeded" + return self._tag == 'image_size_exceeded' def is_doc_archived(self): """ @@ -2313,7 +2205,7 @@ def is_doc_archived(self): :rtype: bool """ - return self._tag == "doc_archived" + return self._tag == 'doc_archived' def is_doc_deleted(self): """ @@ -2321,17 +2213,13 @@ def is_doc_deleted(self): :rtype: bool """ - return self._tag == "doc_deleted" + return self._tag == 'doc_deleted' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocUpdateError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperDocUpdateError, self)._process_custom_annotations(annotation_type, field_path, processor) PaperDocUpdateError_validator = bv.Union(PaperDocUpdateError) - class PaperDocUpdatePolicy(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -2347,7 +2235,7 @@ class PaperDocUpdatePolicy(bb.Union): The document will be overwitten at the head with the provided content. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition append = None # Attribute is overwritten below the class definition @@ -2363,7 +2251,7 @@ def is_append(self): :rtype: bool """ - return self._tag == "append" + return self._tag == 'append' def is_prepend(self): """ @@ -2371,7 +2259,7 @@ def is_prepend(self): :rtype: bool """ - return self._tag == "prepend" + return self._tag == 'prepend' def is_overwrite_all(self): """ @@ -2379,7 +2267,7 @@ def is_overwrite_all(self): :rtype: bool """ - return self._tag == "overwrite_all" + return self._tag == 'overwrite_all' def is_other(self): """ @@ -2387,17 +2275,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocUpdatePolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperDocUpdatePolicy, self)._process_custom_annotations(annotation_type, field_path, processor) PaperDocUpdatePolicy_validator = bv.Union(PaperDocUpdatePolicy) - class PaperFolderCreateArg(bb.Struct): """ :ivar PaperFolderCreateArg.name: @@ -2415,14 +2299,17 @@ class PaperFolderCreateArg(bb.Struct): """ __slots__ = [ - "_name_value", - "_parent_folder_id_value", - "_is_team_folder_value", + '_name_value', + '_parent_folder_id_value', + '_is_team_folder_value', ] _has_required_fields = True - def __init__(self, name=None, parent_folder_id=None, is_team_folder=None): + def __init__(self, + name=None, + parent_folder_id=None, + is_team_folder=None): self._name_value = bb.NOT_SET self._parent_folder_id_value = bb.NOT_SET self._is_team_folder_value = bb.NOT_SET @@ -2443,14 +2330,10 @@ def __init__(self, name=None, parent_folder_id=None, is_team_folder=None): is_team_folder = bb.Attribute("is_team_folder", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperFolderCreateArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperFolderCreateArg, self)._process_custom_annotations(annotation_type, field_path, processor) PaperFolderCreateArg_validator = bv.Struct(PaperFolderCreateArg) - class PaperFolderCreateError(PaperApiBaseError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -2474,7 +2357,7 @@ def is_folder_not_found(self): :rtype: bool """ - return self._tag == "folder_not_found" + return self._tag == 'folder_not_found' def is_invalid_folder_id(self): """ @@ -2482,17 +2365,13 @@ def is_invalid_folder_id(self): :rtype: bool """ - return self._tag == "invalid_folder_id" + return self._tag == 'invalid_folder_id' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperFolderCreateError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperFolderCreateError, self)._process_custom_annotations(annotation_type, field_path, processor) PaperFolderCreateError_validator = bv.Union(PaperFolderCreateError) - class PaperFolderCreateResult(bb.Struct): """ :ivar PaperFolderCreateResult.folder_id: @@ -2500,12 +2379,13 @@ class PaperFolderCreateResult(bb.Struct): """ __slots__ = [ - "_folder_id_value", + '_folder_id_value', ] _has_required_fields = True - def __init__(self, folder_id=None): + def __init__(self, + folder_id=None): self._folder_id_value = bb.NOT_SET if folder_id is not None: self.folder_id = folder_id @@ -2514,14 +2394,10 @@ def __init__(self, folder_id=None): folder_id = bb.Attribute("folder_id") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperFolderCreateResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperFolderCreateResult, self)._process_custom_annotations(annotation_type, field_path, processor) PaperFolderCreateResult_validator = bv.Struct(PaperFolderCreateResult) - class RemovePaperDocUser(RefPaperDoc): """ :ivar RemovePaperDocUser.member: @@ -2530,12 +2406,14 @@ class RemovePaperDocUser(RefPaperDoc): """ __slots__ = [ - "_member_value", + '_member_value', ] _has_required_fields = True - def __init__(self, doc_id=None, member=None): + def __init__(self, + doc_id=None, + member=None): super(RemovePaperDocUser, self).__init__(doc_id) self._member_value = bb.NOT_SET if member is not None: @@ -2545,14 +2423,10 @@ def __init__(self, doc_id=None, member=None): member = bb.Attribute("member", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RemovePaperDocUser, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(RemovePaperDocUser, self)._process_custom_annotations(annotation_type, field_path, processor) RemovePaperDocUser_validator = bv.Struct(RemovePaperDocUser) - class SharingPolicy(bb.Struct): """ Sharing policy of Paper doc. @@ -2565,13 +2439,15 @@ class SharingPolicy(bb.Struct): """ __slots__ = [ - "_public_sharing_policy_value", - "_team_sharing_policy_value", + '_public_sharing_policy_value', + '_team_sharing_policy_value', ] _has_required_fields = False - def __init__(self, public_sharing_policy=None, team_sharing_policy=None): + def __init__(self, + public_sharing_policy=None, + team_sharing_policy=None): self._public_sharing_policy_value = bb.NOT_SET self._team_sharing_policy_value = bb.NOT_SET if public_sharing_policy is not None: @@ -2586,14 +2462,10 @@ def __init__(self, public_sharing_policy=None, team_sharing_policy=None): team_sharing_policy = bb.Attribute("team_sharing_policy", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharingPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharingPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) SharingPolicy_validator = bv.Struct(SharingPolicy) - class SharingTeamPolicyType(bb.Union): """ The sharing policy type of the Paper doc. @@ -2624,7 +2496,7 @@ def is_people_with_link_can_edit(self): :rtype: bool """ - return self._tag == "people_with_link_can_edit" + return self._tag == 'people_with_link_can_edit' def is_people_with_link_can_view_and_comment(self): """ @@ -2632,7 +2504,7 @@ def is_people_with_link_can_view_and_comment(self): :rtype: bool """ - return self._tag == "people_with_link_can_view_and_comment" + return self._tag == 'people_with_link_can_view_and_comment' def is_invite_only(self): """ @@ -2640,17 +2512,13 @@ def is_invite_only(self): :rtype: bool """ - return self._tag == "invite_only" + return self._tag == 'invite_only' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharingTeamPolicyType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharingTeamPolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) SharingTeamPolicyType_validator = bv.Union(SharingTeamPolicyType) - class SharingPublicPolicyType(SharingTeamPolicyType): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -2670,17 +2538,13 @@ def is_disabled(self): :rtype: bool """ - return self._tag == "disabled" + return self._tag == 'disabled' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharingPublicPolicyType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharingPublicPolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) SharingPublicPolicyType_validator = bv.Union(SharingPublicPolicyType) - class UserInfoWithPermissionLevel(bb.Struct): """ :ivar UserInfoWithPermissionLevel.user: @@ -2690,13 +2554,15 @@ class UserInfoWithPermissionLevel(bb.Struct): """ __slots__ = [ - "_user_value", - "_permission_level_value", + '_user_value', + '_permission_level_value', ] _has_required_fields = True - def __init__(self, user=None, permission_level=None): + def __init__(self, + user=None, + permission_level=None): self._user_value = bb.NOT_SET self._permission_level_value = bb.NOT_SET if user is not None: @@ -2711,14 +2577,10 @@ def __init__(self, user=None, permission_level=None): permission_level = bb.Attribute("permission_level", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UserInfoWithPermissionLevel, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UserInfoWithPermissionLevel, self)._process_custom_annotations(annotation_type, field_path, processor) UserInfoWithPermissionLevel_validator = bv.Struct(UserInfoWithPermissionLevel) - class UserOnPaperDocFilter(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -2732,7 +2594,7 @@ class UserOnPaperDocFilter(bb.Union): have visited the Paper doc as well as those who have not. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition visited = None # Attribute is overwritten below the class definition @@ -2746,7 +2608,7 @@ def is_visited(self): :rtype: bool """ - return self._tag == "visited" + return self._tag == 'visited' def is_shared(self): """ @@ -2754,7 +2616,7 @@ def is_shared(self): :rtype: bool """ - return self._tag == "shared" + return self._tag == 'shared' def is_other(self): """ @@ -2762,63 +2624,52 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UserOnPaperDocFilter, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UserOnPaperDocFilter, self)._process_custom_annotations(annotation_type, field_path, processor) UserOnPaperDocFilter_validator = bv.Union(UserOnPaperDocFilter) PaperDocId_validator = bv.String() AddMember.permission_level.validator = PaperDocPermissionLevel_validator AddMember.member.validator = sharing.MemberSelector_validator -AddMember._all_field_names_ = set( - [ - "permission_level", - "member", - ] -) +AddMember._all_field_names_ = set([ + 'permission_level', + 'member', +]) AddMember._all_fields_ = [ - ("permission_level", AddMember.permission_level.validator), - ("member", AddMember.member.validator), + ('permission_level', AddMember.permission_level.validator), + ('member', AddMember.member.validator), ] RefPaperDoc.doc_id.validator = PaperDocId_validator -RefPaperDoc._all_field_names_ = set(["doc_id"]) -RefPaperDoc._all_fields_ = [("doc_id", RefPaperDoc.doc_id.validator)] +RefPaperDoc._all_field_names_ = set(['doc_id']) +RefPaperDoc._all_fields_ = [('doc_id', RefPaperDoc.doc_id.validator)] AddPaperDocUser.members.validator = bv.List(AddMember_validator, max_items=20) AddPaperDocUser.custom_message.validator = bv.Nullable(bv.String()) AddPaperDocUser.quiet.validator = bv.Boolean() -AddPaperDocUser._all_field_names_ = RefPaperDoc._all_field_names_.union( - set( - [ - "members", - "custom_message", - "quiet", - ] - ) -) +AddPaperDocUser._all_field_names_ = RefPaperDoc._all_field_names_.union(set([ + 'members', + 'custom_message', + 'quiet', +])) AddPaperDocUser._all_fields_ = RefPaperDoc._all_fields_ + [ - ("members", AddPaperDocUser.members.validator), - ("custom_message", AddPaperDocUser.custom_message.validator), - ("quiet", AddPaperDocUser.quiet.validator), + ('members', AddPaperDocUser.members.validator), + ('custom_message', AddPaperDocUser.custom_message.validator), + ('quiet', AddPaperDocUser.quiet.validator), ] AddPaperDocUserMemberResult.member.validator = sharing.MemberSelector_validator AddPaperDocUserMemberResult.result.validator = AddPaperDocUserResult_validator -AddPaperDocUserMemberResult._all_field_names_ = set( - [ - "member", - "result", - ] -) +AddPaperDocUserMemberResult._all_field_names_ = set([ + 'member', + 'result', +]) AddPaperDocUserMemberResult._all_fields_ = [ - ("member", AddPaperDocUserMemberResult.member.validator), - ("result", AddPaperDocUserMemberResult.result.validator), + ('member', AddPaperDocUserMemberResult.member.validator), + ('result', AddPaperDocUserMemberResult.result.validator), ] AddPaperDocUserResult._success_validator = bv.Void() @@ -2830,162 +2681,143 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): AddPaperDocUserResult._permission_already_granted_validator = bv.Void() AddPaperDocUserResult._other_validator = bv.Void() AddPaperDocUserResult._tagmap = { - "success": AddPaperDocUserResult._success_validator, - "unknown_error": AddPaperDocUserResult._unknown_error_validator, - "sharing_outside_team_disabled": AddPaperDocUserResult._sharing_outside_team_disabled_validator, - "daily_limit_reached": AddPaperDocUserResult._daily_limit_reached_validator, - "user_is_owner": AddPaperDocUserResult._user_is_owner_validator, - "failed_user_data_retrieval": AddPaperDocUserResult._failed_user_data_retrieval_validator, - "permission_already_granted": AddPaperDocUserResult._permission_already_granted_validator, - "other": AddPaperDocUserResult._other_validator, + 'success': AddPaperDocUserResult._success_validator, + 'unknown_error': AddPaperDocUserResult._unknown_error_validator, + 'sharing_outside_team_disabled': AddPaperDocUserResult._sharing_outside_team_disabled_validator, + 'daily_limit_reached': AddPaperDocUserResult._daily_limit_reached_validator, + 'user_is_owner': AddPaperDocUserResult._user_is_owner_validator, + 'failed_user_data_retrieval': AddPaperDocUserResult._failed_user_data_retrieval_validator, + 'permission_already_granted': AddPaperDocUserResult._permission_already_granted_validator, + 'other': AddPaperDocUserResult._other_validator, } -AddPaperDocUserResult.success = AddPaperDocUserResult("success") -AddPaperDocUserResult.unknown_error = AddPaperDocUserResult("unknown_error") -AddPaperDocUserResult.sharing_outside_team_disabled = AddPaperDocUserResult( - "sharing_outside_team_disabled" -) -AddPaperDocUserResult.daily_limit_reached = AddPaperDocUserResult("daily_limit_reached") -AddPaperDocUserResult.user_is_owner = AddPaperDocUserResult("user_is_owner") -AddPaperDocUserResult.failed_user_data_retrieval = AddPaperDocUserResult( - "failed_user_data_retrieval" -) -AddPaperDocUserResult.permission_already_granted = AddPaperDocUserResult( - "permission_already_granted" -) -AddPaperDocUserResult.other = AddPaperDocUserResult("other") +AddPaperDocUserResult.success = AddPaperDocUserResult('success') +AddPaperDocUserResult.unknown_error = AddPaperDocUserResult('unknown_error') +AddPaperDocUserResult.sharing_outside_team_disabled = AddPaperDocUserResult('sharing_outside_team_disabled') +AddPaperDocUserResult.daily_limit_reached = AddPaperDocUserResult('daily_limit_reached') +AddPaperDocUserResult.user_is_owner = AddPaperDocUserResult('user_is_owner') +AddPaperDocUserResult.failed_user_data_retrieval = AddPaperDocUserResult('failed_user_data_retrieval') +AddPaperDocUserResult.permission_already_granted = AddPaperDocUserResult('permission_already_granted') +AddPaperDocUserResult.other = AddPaperDocUserResult('other') Cursor.value.validator = bv.String() Cursor.expiration.validator = bv.Nullable(common.DropboxTimestamp_validator) -Cursor._all_field_names_ = set( - [ - "value", - "expiration", - ] -) +Cursor._all_field_names_ = set([ + 'value', + 'expiration', +]) Cursor._all_fields_ = [ - ("value", Cursor.value.validator), - ("expiration", Cursor.expiration.validator), + ('value', Cursor.value.validator), + ('expiration', Cursor.expiration.validator), ] PaperApiBaseError._insufficient_permissions_validator = bv.Void() PaperApiBaseError._other_validator = bv.Void() PaperApiBaseError._tagmap = { - "insufficient_permissions": PaperApiBaseError._insufficient_permissions_validator, - "other": PaperApiBaseError._other_validator, + 'insufficient_permissions': PaperApiBaseError._insufficient_permissions_validator, + 'other': PaperApiBaseError._other_validator, } -PaperApiBaseError.insufficient_permissions = PaperApiBaseError("insufficient_permissions") -PaperApiBaseError.other = PaperApiBaseError("other") +PaperApiBaseError.insufficient_permissions = PaperApiBaseError('insufficient_permissions') +PaperApiBaseError.other = PaperApiBaseError('other') DocLookupError._doc_not_found_validator = bv.Void() DocLookupError._tagmap = { - "doc_not_found": DocLookupError._doc_not_found_validator, + 'doc_not_found': DocLookupError._doc_not_found_validator, } DocLookupError._tagmap.update(PaperApiBaseError._tagmap) -DocLookupError.doc_not_found = DocLookupError("doc_not_found") +DocLookupError.doc_not_found = DocLookupError('doc_not_found') DocSubscriptionLevel._default_validator = bv.Void() DocSubscriptionLevel._ignore_validator = bv.Void() DocSubscriptionLevel._every_validator = bv.Void() DocSubscriptionLevel._no_email_validator = bv.Void() DocSubscriptionLevel._tagmap = { - "default": DocSubscriptionLevel._default_validator, - "ignore": DocSubscriptionLevel._ignore_validator, - "every": DocSubscriptionLevel._every_validator, - "no_email": DocSubscriptionLevel._no_email_validator, + 'default': DocSubscriptionLevel._default_validator, + 'ignore': DocSubscriptionLevel._ignore_validator, + 'every': DocSubscriptionLevel._every_validator, + 'no_email': DocSubscriptionLevel._no_email_validator, } -DocSubscriptionLevel.default = DocSubscriptionLevel("default") -DocSubscriptionLevel.ignore = DocSubscriptionLevel("ignore") -DocSubscriptionLevel.every = DocSubscriptionLevel("every") -DocSubscriptionLevel.no_email = DocSubscriptionLevel("no_email") +DocSubscriptionLevel.default = DocSubscriptionLevel('default') +DocSubscriptionLevel.ignore = DocSubscriptionLevel('ignore') +DocSubscriptionLevel.every = DocSubscriptionLevel('every') +DocSubscriptionLevel.no_email = DocSubscriptionLevel('no_email') ExportFormat._html_validator = bv.Void() ExportFormat._markdown_validator = bv.Void() ExportFormat._json_validator = bv.Void() ExportFormat._other_validator = bv.Void() ExportFormat._tagmap = { - "html": ExportFormat._html_validator, - "markdown": ExportFormat._markdown_validator, - "json": ExportFormat._json_validator, - "other": ExportFormat._other_validator, + 'html': ExportFormat._html_validator, + 'markdown': ExportFormat._markdown_validator, + 'json': ExportFormat._json_validator, + 'other': ExportFormat._other_validator, } -ExportFormat.html = ExportFormat("html") -ExportFormat.markdown = ExportFormat("markdown") -ExportFormat.json = ExportFormat("json") -ExportFormat.other = ExportFormat("other") +ExportFormat.html = ExportFormat('html') +ExportFormat.markdown = ExportFormat('markdown') +ExportFormat.json = ExportFormat('json') +ExportFormat.other = ExportFormat('other') Folder.id.validator = bv.String() Folder.name.validator = bv.String() -Folder._all_field_names_ = set( - [ - "id", - "name", - ] -) +Folder._all_field_names_ = set([ + 'id', + 'name', +]) Folder._all_fields_ = [ - ("id", Folder.id.validator), - ("name", Folder.name.validator), + ('id', Folder.id.validator), + ('name', Folder.name.validator), ] FolderSharingPolicyType._team_validator = bv.Void() FolderSharingPolicyType._invite_only_validator = bv.Void() FolderSharingPolicyType._tagmap = { - "team": FolderSharingPolicyType._team_validator, - "invite_only": FolderSharingPolicyType._invite_only_validator, + 'team': FolderSharingPolicyType._team_validator, + 'invite_only': FolderSharingPolicyType._invite_only_validator, } -FolderSharingPolicyType.team = FolderSharingPolicyType("team") -FolderSharingPolicyType.invite_only = FolderSharingPolicyType("invite_only") +FolderSharingPolicyType.team = FolderSharingPolicyType('team') +FolderSharingPolicyType.invite_only = FolderSharingPolicyType('invite_only') FolderSubscriptionLevel._none_validator = bv.Void() FolderSubscriptionLevel._activity_only_validator = bv.Void() FolderSubscriptionLevel._daily_emails_validator = bv.Void() FolderSubscriptionLevel._weekly_emails_validator = bv.Void() FolderSubscriptionLevel._tagmap = { - "none": FolderSubscriptionLevel._none_validator, - "activity_only": FolderSubscriptionLevel._activity_only_validator, - "daily_emails": FolderSubscriptionLevel._daily_emails_validator, - "weekly_emails": FolderSubscriptionLevel._weekly_emails_validator, + 'none': FolderSubscriptionLevel._none_validator, + 'activity_only': FolderSubscriptionLevel._activity_only_validator, + 'daily_emails': FolderSubscriptionLevel._daily_emails_validator, + 'weekly_emails': FolderSubscriptionLevel._weekly_emails_validator, } -FolderSubscriptionLevel.none = FolderSubscriptionLevel("none") -FolderSubscriptionLevel.activity_only = FolderSubscriptionLevel("activity_only") -FolderSubscriptionLevel.daily_emails = FolderSubscriptionLevel("daily_emails") -FolderSubscriptionLevel.weekly_emails = FolderSubscriptionLevel("weekly_emails") +FolderSubscriptionLevel.none = FolderSubscriptionLevel('none') +FolderSubscriptionLevel.activity_only = FolderSubscriptionLevel('activity_only') +FolderSubscriptionLevel.daily_emails = FolderSubscriptionLevel('daily_emails') +FolderSubscriptionLevel.weekly_emails = FolderSubscriptionLevel('weekly_emails') -FoldersContainingPaperDoc.folder_sharing_policy_type.validator = bv.Nullable( - FolderSharingPolicyType_validator -) +FoldersContainingPaperDoc.folder_sharing_policy_type.validator = bv.Nullable(FolderSharingPolicyType_validator) FoldersContainingPaperDoc.folders.validator = bv.Nullable(bv.List(Folder_validator)) -FoldersContainingPaperDoc._all_field_names_ = set( - [ - "folder_sharing_policy_type", - "folders", - ] -) +FoldersContainingPaperDoc._all_field_names_ = set([ + 'folder_sharing_policy_type', + 'folders', +]) FoldersContainingPaperDoc._all_fields_ = [ - ( - "folder_sharing_policy_type", - FoldersContainingPaperDoc.folder_sharing_policy_type.validator, - ), - ("folders", FoldersContainingPaperDoc.folders.validator), + ('folder_sharing_policy_type', FoldersContainingPaperDoc.folder_sharing_policy_type.validator), + ('folders', FoldersContainingPaperDoc.folders.validator), ] GetDocMetadataArg.doc_id.validator = bv.Nullable(PaperDocId_validator) GetDocMetadataArg.file_id.validator = bv.Nullable(files.FileId_validator) -GetDocMetadataArg._all_field_names_ = set( - [ - "doc_id", - "file_id", - ] -) +GetDocMetadataArg._all_field_names_ = set([ + 'doc_id', + 'file_id', +]) GetDocMetadataArg._all_fields_ = [ - ("doc_id", GetDocMetadataArg.doc_id.validator), - ("file_id", GetDocMetadataArg.file_id.validator), + ('doc_id', GetDocMetadataArg.doc_id.validator), + ('file_id', GetDocMetadataArg.file_id.validator), ] ImportFormat._html_validator = bv.Void() @@ -2993,92 +2825,86 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ImportFormat._plain_text_validator = bv.Void() ImportFormat._other_validator = bv.Void() ImportFormat._tagmap = { - "html": ImportFormat._html_validator, - "markdown": ImportFormat._markdown_validator, - "plain_text": ImportFormat._plain_text_validator, - "other": ImportFormat._other_validator, + 'html': ImportFormat._html_validator, + 'markdown': ImportFormat._markdown_validator, + 'plain_text': ImportFormat._plain_text_validator, + 'other': ImportFormat._other_validator, } -ImportFormat.html = ImportFormat("html") -ImportFormat.markdown = ImportFormat("markdown") -ImportFormat.plain_text = ImportFormat("plain_text") -ImportFormat.other = ImportFormat("other") +ImportFormat.html = ImportFormat('html') +ImportFormat.markdown = ImportFormat('markdown') +ImportFormat.plain_text = ImportFormat('plain_text') +ImportFormat.other = ImportFormat('other') InviteeInfoWithPermissionLevel.invitee.validator = sharing.InviteeInfo_validator InviteeInfoWithPermissionLevel.permission_level.validator = PaperDocPermissionLevel_validator -InviteeInfoWithPermissionLevel._all_field_names_ = set( - [ - "invitee", - "permission_level", - ] -) +InviteeInfoWithPermissionLevel._all_field_names_ = set([ + 'invitee', + 'permission_level', +]) InviteeInfoWithPermissionLevel._all_fields_ = [ - ("invitee", InviteeInfoWithPermissionLevel.invitee.validator), - ("permission_level", InviteeInfoWithPermissionLevel.permission_level.validator), + ('invitee', InviteeInfoWithPermissionLevel.invitee.validator), + ('permission_level', InviteeInfoWithPermissionLevel.permission_level.validator), ] ListDocsCursorError._cursor_error_validator = PaperApiCursorError_validator ListDocsCursorError._other_validator = bv.Void() ListDocsCursorError._tagmap = { - "cursor_error": ListDocsCursorError._cursor_error_validator, - "other": ListDocsCursorError._other_validator, + 'cursor_error': ListDocsCursorError._cursor_error_validator, + 'other': ListDocsCursorError._other_validator, } -ListDocsCursorError.other = ListDocsCursorError("other") +ListDocsCursorError.other = ListDocsCursorError('other') ListPaperDocsArgs.filter_by.validator = ListPaperDocsFilterBy_validator ListPaperDocsArgs.sort_by.validator = ListPaperDocsSortBy_validator ListPaperDocsArgs.sort_order.validator = ListPaperDocsSortOrder_validator ListPaperDocsArgs.limit.validator = bv.Int32(min_value=1, max_value=1000) ListPaperDocsArgs.stop_at_date.validator = bv.Nullable(common.DropboxTimestamp_validator) -ListPaperDocsArgs._all_field_names_ = set( - [ - "filter_by", - "sort_by", - "sort_order", - "limit", - "stop_at_date", - ] -) +ListPaperDocsArgs._all_field_names_ = set([ + 'filter_by', + 'sort_by', + 'sort_order', + 'limit', + 'stop_at_date', +]) ListPaperDocsArgs._all_fields_ = [ - ("filter_by", ListPaperDocsArgs.filter_by.validator), - ("sort_by", ListPaperDocsArgs.sort_by.validator), - ("sort_order", ListPaperDocsArgs.sort_order.validator), - ("limit", ListPaperDocsArgs.limit.validator), - ("stop_at_date", ListPaperDocsArgs.stop_at_date.validator), + ('filter_by', ListPaperDocsArgs.filter_by.validator), + ('sort_by', ListPaperDocsArgs.sort_by.validator), + ('sort_order', ListPaperDocsArgs.sort_order.validator), + ('limit', ListPaperDocsArgs.limit.validator), + ('stop_at_date', ListPaperDocsArgs.stop_at_date.validator), ] ListPaperDocsContinueArgs.cursor.validator = bv.String() -ListPaperDocsContinueArgs._all_field_names_ = set(["cursor"]) -ListPaperDocsContinueArgs._all_fields_ = [("cursor", ListPaperDocsContinueArgs.cursor.validator)] +ListPaperDocsContinueArgs._all_field_names_ = set(['cursor']) +ListPaperDocsContinueArgs._all_fields_ = [('cursor', ListPaperDocsContinueArgs.cursor.validator)] ListPaperDocsFilterBy._docs_accessed_validator = bv.Void() ListPaperDocsFilterBy._docs_created_validator = bv.Void() ListPaperDocsFilterBy._other_validator = bv.Void() ListPaperDocsFilterBy._tagmap = { - "docs_accessed": ListPaperDocsFilterBy._docs_accessed_validator, - "docs_created": ListPaperDocsFilterBy._docs_created_validator, - "other": ListPaperDocsFilterBy._other_validator, + 'docs_accessed': ListPaperDocsFilterBy._docs_accessed_validator, + 'docs_created': ListPaperDocsFilterBy._docs_created_validator, + 'other': ListPaperDocsFilterBy._other_validator, } -ListPaperDocsFilterBy.docs_accessed = ListPaperDocsFilterBy("docs_accessed") -ListPaperDocsFilterBy.docs_created = ListPaperDocsFilterBy("docs_created") -ListPaperDocsFilterBy.other = ListPaperDocsFilterBy("other") +ListPaperDocsFilterBy.docs_accessed = ListPaperDocsFilterBy('docs_accessed') +ListPaperDocsFilterBy.docs_created = ListPaperDocsFilterBy('docs_created') +ListPaperDocsFilterBy.other = ListPaperDocsFilterBy('other') ListPaperDocsResponse.doc_ids.validator = bv.List(PaperDocId_validator) ListPaperDocsResponse.cursor.validator = Cursor_validator ListPaperDocsResponse.has_more.validator = bv.Boolean() -ListPaperDocsResponse._all_field_names_ = set( - [ - "doc_ids", - "cursor", - "has_more", - ] -) +ListPaperDocsResponse._all_field_names_ = set([ + 'doc_ids', + 'cursor', + 'has_more', +]) ListPaperDocsResponse._all_fields_ = [ - ("doc_ids", ListPaperDocsResponse.doc_ids.validator), - ("cursor", ListPaperDocsResponse.cursor.validator), - ("has_more", ListPaperDocsResponse.has_more.validator), + ('doc_ids', ListPaperDocsResponse.doc_ids.validator), + ('cursor', ListPaperDocsResponse.cursor.validator), + ('has_more', ListPaperDocsResponse.has_more.validator), ] ListPaperDocsSortBy._accessed_validator = bv.Void() @@ -3086,116 +2912,98 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ListPaperDocsSortBy._created_validator = bv.Void() ListPaperDocsSortBy._other_validator = bv.Void() ListPaperDocsSortBy._tagmap = { - "accessed": ListPaperDocsSortBy._accessed_validator, - "modified": ListPaperDocsSortBy._modified_validator, - "created": ListPaperDocsSortBy._created_validator, - "other": ListPaperDocsSortBy._other_validator, + 'accessed': ListPaperDocsSortBy._accessed_validator, + 'modified': ListPaperDocsSortBy._modified_validator, + 'created': ListPaperDocsSortBy._created_validator, + 'other': ListPaperDocsSortBy._other_validator, } -ListPaperDocsSortBy.accessed = ListPaperDocsSortBy("accessed") -ListPaperDocsSortBy.modified = ListPaperDocsSortBy("modified") -ListPaperDocsSortBy.created = ListPaperDocsSortBy("created") -ListPaperDocsSortBy.other = ListPaperDocsSortBy("other") +ListPaperDocsSortBy.accessed = ListPaperDocsSortBy('accessed') +ListPaperDocsSortBy.modified = ListPaperDocsSortBy('modified') +ListPaperDocsSortBy.created = ListPaperDocsSortBy('created') +ListPaperDocsSortBy.other = ListPaperDocsSortBy('other') ListPaperDocsSortOrder._ascending_validator = bv.Void() ListPaperDocsSortOrder._descending_validator = bv.Void() ListPaperDocsSortOrder._other_validator = bv.Void() ListPaperDocsSortOrder._tagmap = { - "ascending": ListPaperDocsSortOrder._ascending_validator, - "descending": ListPaperDocsSortOrder._descending_validator, - "other": ListPaperDocsSortOrder._other_validator, + 'ascending': ListPaperDocsSortOrder._ascending_validator, + 'descending': ListPaperDocsSortOrder._descending_validator, + 'other': ListPaperDocsSortOrder._other_validator, } -ListPaperDocsSortOrder.ascending = ListPaperDocsSortOrder("ascending") -ListPaperDocsSortOrder.descending = ListPaperDocsSortOrder("descending") -ListPaperDocsSortOrder.other = ListPaperDocsSortOrder("other") +ListPaperDocsSortOrder.ascending = ListPaperDocsSortOrder('ascending') +ListPaperDocsSortOrder.descending = ListPaperDocsSortOrder('descending') +ListPaperDocsSortOrder.other = ListPaperDocsSortOrder('other') ListUsersCursorError._doc_not_found_validator = bv.Void() ListUsersCursorError._cursor_error_validator = PaperApiCursorError_validator ListUsersCursorError._tagmap = { - "doc_not_found": ListUsersCursorError._doc_not_found_validator, - "cursor_error": ListUsersCursorError._cursor_error_validator, + 'doc_not_found': ListUsersCursorError._doc_not_found_validator, + 'cursor_error': ListUsersCursorError._cursor_error_validator, } ListUsersCursorError._tagmap.update(PaperApiBaseError._tagmap) -ListUsersCursorError.doc_not_found = ListUsersCursorError("doc_not_found") +ListUsersCursorError.doc_not_found = ListUsersCursorError('doc_not_found') ListUsersOnFolderArgs.limit.validator = bv.Int32(min_value=1, max_value=1000) -ListUsersOnFolderArgs._all_field_names_ = RefPaperDoc._all_field_names_.union(set(["limit"])) -ListUsersOnFolderArgs._all_fields_ = RefPaperDoc._all_fields_ + [ - ("limit", ListUsersOnFolderArgs.limit.validator) -] +ListUsersOnFolderArgs._all_field_names_ = RefPaperDoc._all_field_names_.union(set(['limit'])) +ListUsersOnFolderArgs._all_fields_ = RefPaperDoc._all_fields_ + [('limit', ListUsersOnFolderArgs.limit.validator)] ListUsersOnFolderContinueArgs.cursor.validator = bv.String() -ListUsersOnFolderContinueArgs._all_field_names_ = RefPaperDoc._all_field_names_.union( - set(["cursor"]) -) -ListUsersOnFolderContinueArgs._all_fields_ = RefPaperDoc._all_fields_ + [ - ("cursor", ListUsersOnFolderContinueArgs.cursor.validator) -] +ListUsersOnFolderContinueArgs._all_field_names_ = RefPaperDoc._all_field_names_.union(set(['cursor'])) +ListUsersOnFolderContinueArgs._all_fields_ = RefPaperDoc._all_fields_ + [('cursor', ListUsersOnFolderContinueArgs.cursor.validator)] ListUsersOnFolderResponse.invitees.validator = bv.List(sharing.InviteeInfo_validator) ListUsersOnFolderResponse.users.validator = bv.List(sharing.UserInfo_validator) ListUsersOnFolderResponse.cursor.validator = Cursor_validator ListUsersOnFolderResponse.has_more.validator = bv.Boolean() -ListUsersOnFolderResponse._all_field_names_ = set( - [ - "invitees", - "users", - "cursor", - "has_more", - ] -) +ListUsersOnFolderResponse._all_field_names_ = set([ + 'invitees', + 'users', + 'cursor', + 'has_more', +]) ListUsersOnFolderResponse._all_fields_ = [ - ("invitees", ListUsersOnFolderResponse.invitees.validator), - ("users", ListUsersOnFolderResponse.users.validator), - ("cursor", ListUsersOnFolderResponse.cursor.validator), - ("has_more", ListUsersOnFolderResponse.has_more.validator), + ('invitees', ListUsersOnFolderResponse.invitees.validator), + ('users', ListUsersOnFolderResponse.users.validator), + ('cursor', ListUsersOnFolderResponse.cursor.validator), + ('has_more', ListUsersOnFolderResponse.has_more.validator), ] ListUsersOnPaperDocArgs.limit.validator = bv.Int32(min_value=1, max_value=1000) ListUsersOnPaperDocArgs.filter_by.validator = UserOnPaperDocFilter_validator -ListUsersOnPaperDocArgs._all_field_names_ = RefPaperDoc._all_field_names_.union( - set( - [ - "limit", - "filter_by", - ] - ) -) +ListUsersOnPaperDocArgs._all_field_names_ = RefPaperDoc._all_field_names_.union(set([ + 'limit', + 'filter_by', +])) ListUsersOnPaperDocArgs._all_fields_ = RefPaperDoc._all_fields_ + [ - ("limit", ListUsersOnPaperDocArgs.limit.validator), - ("filter_by", ListUsersOnPaperDocArgs.filter_by.validator), + ('limit', ListUsersOnPaperDocArgs.limit.validator), + ('filter_by', ListUsersOnPaperDocArgs.filter_by.validator), ] ListUsersOnPaperDocContinueArgs.cursor.validator = bv.String() -ListUsersOnPaperDocContinueArgs._all_field_names_ = RefPaperDoc._all_field_names_.union( - set(["cursor"]) -) -ListUsersOnPaperDocContinueArgs._all_fields_ = RefPaperDoc._all_fields_ + [ - ("cursor", ListUsersOnPaperDocContinueArgs.cursor.validator) -] +ListUsersOnPaperDocContinueArgs._all_field_names_ = RefPaperDoc._all_field_names_.union(set(['cursor'])) +ListUsersOnPaperDocContinueArgs._all_fields_ = RefPaperDoc._all_fields_ + [('cursor', ListUsersOnPaperDocContinueArgs.cursor.validator)] ListUsersOnPaperDocResponse.invitees.validator = bv.List(InviteeInfoWithPermissionLevel_validator) ListUsersOnPaperDocResponse.users.validator = bv.List(UserInfoWithPermissionLevel_validator) ListUsersOnPaperDocResponse.doc_owner.validator = sharing.UserInfo_validator ListUsersOnPaperDocResponse.cursor.validator = Cursor_validator ListUsersOnPaperDocResponse.has_more.validator = bv.Boolean() -ListUsersOnPaperDocResponse._all_field_names_ = set( - [ - "invitees", - "users", - "doc_owner", - "cursor", - "has_more", - ] -) +ListUsersOnPaperDocResponse._all_field_names_ = set([ + 'invitees', + 'users', + 'doc_owner', + 'cursor', + 'has_more', +]) ListUsersOnPaperDocResponse._all_fields_ = [ - ("invitees", ListUsersOnPaperDocResponse.invitees.validator), - ("users", ListUsersOnPaperDocResponse.users.validator), - ("doc_owner", ListUsersOnPaperDocResponse.doc_owner.validator), - ("cursor", ListUsersOnPaperDocResponse.cursor.validator), - ("has_more", ListUsersOnPaperDocResponse.has_more.validator), + ('invitees', ListUsersOnPaperDocResponse.invitees.validator), + ('users', ListUsersOnPaperDocResponse.users.validator), + ('doc_owner', ListUsersOnPaperDocResponse.doc_owner.validator), + ('cursor', ListUsersOnPaperDocResponse.cursor.validator), + ('has_more', ListUsersOnPaperDocResponse.has_more.validator), ] PaperApiCursorError._expired_cursor_validator = bv.Void() @@ -3204,30 +3012,28 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): PaperApiCursorError._reset_validator = bv.Void() PaperApiCursorError._other_validator = bv.Void() PaperApiCursorError._tagmap = { - "expired_cursor": PaperApiCursorError._expired_cursor_validator, - "invalid_cursor": PaperApiCursorError._invalid_cursor_validator, - "wrong_user_in_cursor": PaperApiCursorError._wrong_user_in_cursor_validator, - "reset": PaperApiCursorError._reset_validator, - "other": PaperApiCursorError._other_validator, + 'expired_cursor': PaperApiCursorError._expired_cursor_validator, + 'invalid_cursor': PaperApiCursorError._invalid_cursor_validator, + 'wrong_user_in_cursor': PaperApiCursorError._wrong_user_in_cursor_validator, + 'reset': PaperApiCursorError._reset_validator, + 'other': PaperApiCursorError._other_validator, } -PaperApiCursorError.expired_cursor = PaperApiCursorError("expired_cursor") -PaperApiCursorError.invalid_cursor = PaperApiCursorError("invalid_cursor") -PaperApiCursorError.wrong_user_in_cursor = PaperApiCursorError("wrong_user_in_cursor") -PaperApiCursorError.reset = PaperApiCursorError("reset") -PaperApiCursorError.other = PaperApiCursorError("other") +PaperApiCursorError.expired_cursor = PaperApiCursorError('expired_cursor') +PaperApiCursorError.invalid_cursor = PaperApiCursorError('invalid_cursor') +PaperApiCursorError.wrong_user_in_cursor = PaperApiCursorError('wrong_user_in_cursor') +PaperApiCursorError.reset = PaperApiCursorError('reset') +PaperApiCursorError.other = PaperApiCursorError('other') PaperDocCreateArgs.parent_folder_id.validator = bv.Nullable(bv.String()) PaperDocCreateArgs.import_format.validator = ImportFormat_validator -PaperDocCreateArgs._all_field_names_ = set( - [ - "parent_folder_id", - "import_format", - ] -) +PaperDocCreateArgs._all_field_names_ = set([ + 'parent_folder_id', + 'import_format', +]) PaperDocCreateArgs._all_fields_ = [ - ("parent_folder_id", PaperDocCreateArgs.parent_folder_id.validator), - ("import_format", PaperDocCreateArgs.import_format.validator), + ('parent_folder_id', PaperDocCreateArgs.parent_folder_id.validator), + ('import_format', PaperDocCreateArgs.import_format.validator), ] PaperDocCreateError._content_malformed_validator = bv.Void() @@ -3235,66 +3041,58 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): PaperDocCreateError._doc_length_exceeded_validator = bv.Void() PaperDocCreateError._image_size_exceeded_validator = bv.Void() PaperDocCreateError._tagmap = { - "content_malformed": PaperDocCreateError._content_malformed_validator, - "folder_not_found": PaperDocCreateError._folder_not_found_validator, - "doc_length_exceeded": PaperDocCreateError._doc_length_exceeded_validator, - "image_size_exceeded": PaperDocCreateError._image_size_exceeded_validator, + 'content_malformed': PaperDocCreateError._content_malformed_validator, + 'folder_not_found': PaperDocCreateError._folder_not_found_validator, + 'doc_length_exceeded': PaperDocCreateError._doc_length_exceeded_validator, + 'image_size_exceeded': PaperDocCreateError._image_size_exceeded_validator, } PaperDocCreateError._tagmap.update(PaperApiBaseError._tagmap) -PaperDocCreateError.content_malformed = PaperDocCreateError("content_malformed") -PaperDocCreateError.folder_not_found = PaperDocCreateError("folder_not_found") -PaperDocCreateError.doc_length_exceeded = PaperDocCreateError("doc_length_exceeded") -PaperDocCreateError.image_size_exceeded = PaperDocCreateError("image_size_exceeded") +PaperDocCreateError.content_malformed = PaperDocCreateError('content_malformed') +PaperDocCreateError.folder_not_found = PaperDocCreateError('folder_not_found') +PaperDocCreateError.doc_length_exceeded = PaperDocCreateError('doc_length_exceeded') +PaperDocCreateError.image_size_exceeded = PaperDocCreateError('image_size_exceeded') PaperDocCreateUpdateResult.doc_id.validator = bv.String() PaperDocCreateUpdateResult.revision.validator = bv.Int64() PaperDocCreateUpdateResult.title.validator = bv.String() -PaperDocCreateUpdateResult._all_field_names_ = set( - [ - "doc_id", - "revision", - "title", - ] -) +PaperDocCreateUpdateResult._all_field_names_ = set([ + 'doc_id', + 'revision', + 'title', +]) PaperDocCreateUpdateResult._all_fields_ = [ - ("doc_id", PaperDocCreateUpdateResult.doc_id.validator), - ("revision", PaperDocCreateUpdateResult.revision.validator), - ("title", PaperDocCreateUpdateResult.title.validator), + ('doc_id', PaperDocCreateUpdateResult.doc_id.validator), + ('revision', PaperDocCreateUpdateResult.revision.validator), + ('title', PaperDocCreateUpdateResult.title.validator), ] PaperDocExport.export_format.validator = ExportFormat_validator PaperDocExport.include_comments.validator = bv.Boolean() -PaperDocExport._all_field_names_ = RefPaperDoc._all_field_names_.union( - set( - [ - "export_format", - "include_comments", - ] - ) -) +PaperDocExport._all_field_names_ = RefPaperDoc._all_field_names_.union(set([ + 'export_format', + 'include_comments', +])) PaperDocExport._all_fields_ = RefPaperDoc._all_fields_ + [ - ("export_format", PaperDocExport.export_format.validator), - ("include_comments", PaperDocExport.include_comments.validator), + ('export_format', PaperDocExport.export_format.validator), + ('include_comments', PaperDocExport.include_comments.validator), ] PaperDocExportResult.owner.validator = bv.String() PaperDocExportResult.title.validator = bv.String() PaperDocExportResult.revision.validator = bv.Int64() PaperDocExportResult.mime_type.validator = bv.String() -PaperDocExportResult._all_field_names_ = set( - [ - "owner", - "title", - "revision", - "mime_type", - ] -) +PaperDocExportResult._all_field_names_ = set([ + 'owner', + 'title', + 'revision', + 'mime_type', +]) PaperDocExportResult._all_fields_ = [ - ("owner", PaperDocExportResult.owner.validator), - ("title", PaperDocExportResult.title.validator), - ("revision", PaperDocExportResult.revision.validator), - ("mime_type", PaperDocExportResult.mime_type.validator), + ('owner', PaperDocExportResult.owner.validator), + ('title', PaperDocExportResult.title.validator), + ('revision', PaperDocExportResult.revision.validator), + ('mime_type', PaperDocExportResult.mime_type.validator), ] PaperDocGetMetadataResult.doc_id.validator = PaperDocId_validator @@ -3305,79 +3103,69 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): PaperDocGetMetadataResult.revision.validator = bv.Int64() PaperDocGetMetadataResult.last_updated_date.validator = common.DropboxTimestamp_validator PaperDocGetMetadataResult.last_editor.validator = bv.String() -PaperDocGetMetadataResult._all_field_names_ = set( - [ - "doc_id", - "owner", - "title", - "created_date", - "status", - "revision", - "last_updated_date", - "last_editor", - ] -) +PaperDocGetMetadataResult._all_field_names_ = set([ + 'doc_id', + 'owner', + 'title', + 'created_date', + 'status', + 'revision', + 'last_updated_date', + 'last_editor', +]) PaperDocGetMetadataResult._all_fields_ = [ - ("doc_id", PaperDocGetMetadataResult.doc_id.validator), - ("owner", PaperDocGetMetadataResult.owner.validator), - ("title", PaperDocGetMetadataResult.title.validator), - ("created_date", PaperDocGetMetadataResult.created_date.validator), - ("status", PaperDocGetMetadataResult.status.validator), - ("revision", PaperDocGetMetadataResult.revision.validator), - ("last_updated_date", PaperDocGetMetadataResult.last_updated_date.validator), - ("last_editor", PaperDocGetMetadataResult.last_editor.validator), + ('doc_id', PaperDocGetMetadataResult.doc_id.validator), + ('owner', PaperDocGetMetadataResult.owner.validator), + ('title', PaperDocGetMetadataResult.title.validator), + ('created_date', PaperDocGetMetadataResult.created_date.validator), + ('status', PaperDocGetMetadataResult.status.validator), + ('revision', PaperDocGetMetadataResult.revision.validator), + ('last_updated_date', PaperDocGetMetadataResult.last_updated_date.validator), + ('last_editor', PaperDocGetMetadataResult.last_editor.validator), ] PaperDocPermissionLevel._edit_validator = bv.Void() PaperDocPermissionLevel._view_and_comment_validator = bv.Void() PaperDocPermissionLevel._other_validator = bv.Void() PaperDocPermissionLevel._tagmap = { - "edit": PaperDocPermissionLevel._edit_validator, - "view_and_comment": PaperDocPermissionLevel._view_and_comment_validator, - "other": PaperDocPermissionLevel._other_validator, + 'edit': PaperDocPermissionLevel._edit_validator, + 'view_and_comment': PaperDocPermissionLevel._view_and_comment_validator, + 'other': PaperDocPermissionLevel._other_validator, } -PaperDocPermissionLevel.edit = PaperDocPermissionLevel("edit") -PaperDocPermissionLevel.view_and_comment = PaperDocPermissionLevel("view_and_comment") -PaperDocPermissionLevel.other = PaperDocPermissionLevel("other") +PaperDocPermissionLevel.edit = PaperDocPermissionLevel('edit') +PaperDocPermissionLevel.view_and_comment = PaperDocPermissionLevel('view_and_comment') +PaperDocPermissionLevel.other = PaperDocPermissionLevel('other') PaperDocSharingPolicy.sharing_policy.validator = SharingPolicy_validator -PaperDocSharingPolicy._all_field_names_ = RefPaperDoc._all_field_names_.union( - set(["sharing_policy"]) -) -PaperDocSharingPolicy._all_fields_ = RefPaperDoc._all_fields_ + [ - ("sharing_policy", PaperDocSharingPolicy.sharing_policy.validator) -] +PaperDocSharingPolicy._all_field_names_ = RefPaperDoc._all_field_names_.union(set(['sharing_policy'])) +PaperDocSharingPolicy._all_fields_ = RefPaperDoc._all_fields_ + [('sharing_policy', PaperDocSharingPolicy.sharing_policy.validator)] PaperDocStatus._active_validator = bv.Void() PaperDocStatus._deleted_validator = bv.Void() PaperDocStatus._other_validator = bv.Void() PaperDocStatus._tagmap = { - "active": PaperDocStatus._active_validator, - "deleted": PaperDocStatus._deleted_validator, - "other": PaperDocStatus._other_validator, + 'active': PaperDocStatus._active_validator, + 'deleted': PaperDocStatus._deleted_validator, + 'other': PaperDocStatus._other_validator, } -PaperDocStatus.active = PaperDocStatus("active") -PaperDocStatus.deleted = PaperDocStatus("deleted") -PaperDocStatus.other = PaperDocStatus("other") +PaperDocStatus.active = PaperDocStatus('active') +PaperDocStatus.deleted = PaperDocStatus('deleted') +PaperDocStatus.other = PaperDocStatus('other') PaperDocUpdateArgs.doc_update_policy.validator = PaperDocUpdatePolicy_validator PaperDocUpdateArgs.revision.validator = bv.Int64() PaperDocUpdateArgs.import_format.validator = ImportFormat_validator -PaperDocUpdateArgs._all_field_names_ = RefPaperDoc._all_field_names_.union( - set( - [ - "doc_update_policy", - "revision", - "import_format", - ] - ) -) +PaperDocUpdateArgs._all_field_names_ = RefPaperDoc._all_field_names_.union(set([ + 'doc_update_policy', + 'revision', + 'import_format', +])) PaperDocUpdateArgs._all_fields_ = RefPaperDoc._all_fields_ + [ - ("doc_update_policy", PaperDocUpdateArgs.doc_update_policy.validator), - ("revision", PaperDocUpdateArgs.revision.validator), - ("import_format", PaperDocUpdateArgs.import_format.validator), + ('doc_update_policy', PaperDocUpdateArgs.doc_update_policy.validator), + ('revision', PaperDocUpdateArgs.revision.validator), + ('import_format', PaperDocUpdateArgs.import_format.validator), ] PaperDocUpdateError._content_malformed_validator = bv.Void() @@ -3387,136 +3175,126 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): PaperDocUpdateError._doc_archived_validator = bv.Void() PaperDocUpdateError._doc_deleted_validator = bv.Void() PaperDocUpdateError._tagmap = { - "content_malformed": PaperDocUpdateError._content_malformed_validator, - "revision_mismatch": PaperDocUpdateError._revision_mismatch_validator, - "doc_length_exceeded": PaperDocUpdateError._doc_length_exceeded_validator, - "image_size_exceeded": PaperDocUpdateError._image_size_exceeded_validator, - "doc_archived": PaperDocUpdateError._doc_archived_validator, - "doc_deleted": PaperDocUpdateError._doc_deleted_validator, + 'content_malformed': PaperDocUpdateError._content_malformed_validator, + 'revision_mismatch': PaperDocUpdateError._revision_mismatch_validator, + 'doc_length_exceeded': PaperDocUpdateError._doc_length_exceeded_validator, + 'image_size_exceeded': PaperDocUpdateError._image_size_exceeded_validator, + 'doc_archived': PaperDocUpdateError._doc_archived_validator, + 'doc_deleted': PaperDocUpdateError._doc_deleted_validator, } PaperDocUpdateError._tagmap.update(DocLookupError._tagmap) -PaperDocUpdateError.content_malformed = PaperDocUpdateError("content_malformed") -PaperDocUpdateError.revision_mismatch = PaperDocUpdateError("revision_mismatch") -PaperDocUpdateError.doc_length_exceeded = PaperDocUpdateError("doc_length_exceeded") -PaperDocUpdateError.image_size_exceeded = PaperDocUpdateError("image_size_exceeded") -PaperDocUpdateError.doc_archived = PaperDocUpdateError("doc_archived") -PaperDocUpdateError.doc_deleted = PaperDocUpdateError("doc_deleted") +PaperDocUpdateError.content_malformed = PaperDocUpdateError('content_malformed') +PaperDocUpdateError.revision_mismatch = PaperDocUpdateError('revision_mismatch') +PaperDocUpdateError.doc_length_exceeded = PaperDocUpdateError('doc_length_exceeded') +PaperDocUpdateError.image_size_exceeded = PaperDocUpdateError('image_size_exceeded') +PaperDocUpdateError.doc_archived = PaperDocUpdateError('doc_archived') +PaperDocUpdateError.doc_deleted = PaperDocUpdateError('doc_deleted') PaperDocUpdatePolicy._append_validator = bv.Void() PaperDocUpdatePolicy._prepend_validator = bv.Void() PaperDocUpdatePolicy._overwrite_all_validator = bv.Void() PaperDocUpdatePolicy._other_validator = bv.Void() PaperDocUpdatePolicy._tagmap = { - "append": PaperDocUpdatePolicy._append_validator, - "prepend": PaperDocUpdatePolicy._prepend_validator, - "overwrite_all": PaperDocUpdatePolicy._overwrite_all_validator, - "other": PaperDocUpdatePolicy._other_validator, + 'append': PaperDocUpdatePolicy._append_validator, + 'prepend': PaperDocUpdatePolicy._prepend_validator, + 'overwrite_all': PaperDocUpdatePolicy._overwrite_all_validator, + 'other': PaperDocUpdatePolicy._other_validator, } -PaperDocUpdatePolicy.append = PaperDocUpdatePolicy("append") -PaperDocUpdatePolicy.prepend = PaperDocUpdatePolicy("prepend") -PaperDocUpdatePolicy.overwrite_all = PaperDocUpdatePolicy("overwrite_all") -PaperDocUpdatePolicy.other = PaperDocUpdatePolicy("other") +PaperDocUpdatePolicy.append = PaperDocUpdatePolicy('append') +PaperDocUpdatePolicy.prepend = PaperDocUpdatePolicy('prepend') +PaperDocUpdatePolicy.overwrite_all = PaperDocUpdatePolicy('overwrite_all') +PaperDocUpdatePolicy.other = PaperDocUpdatePolicy('other') PaperFolderCreateArg.name.validator = bv.String() PaperFolderCreateArg.parent_folder_id.validator = bv.Nullable(bv.String()) PaperFolderCreateArg.is_team_folder.validator = bv.Nullable(bv.Boolean()) -PaperFolderCreateArg._all_field_names_ = set( - [ - "name", - "parent_folder_id", - "is_team_folder", - ] -) +PaperFolderCreateArg._all_field_names_ = set([ + 'name', + 'parent_folder_id', + 'is_team_folder', +]) PaperFolderCreateArg._all_fields_ = [ - ("name", PaperFolderCreateArg.name.validator), - ("parent_folder_id", PaperFolderCreateArg.parent_folder_id.validator), - ("is_team_folder", PaperFolderCreateArg.is_team_folder.validator), + ('name', PaperFolderCreateArg.name.validator), + ('parent_folder_id', PaperFolderCreateArg.parent_folder_id.validator), + ('is_team_folder', PaperFolderCreateArg.is_team_folder.validator), ] PaperFolderCreateError._folder_not_found_validator = bv.Void() PaperFolderCreateError._invalid_folder_id_validator = bv.Void() PaperFolderCreateError._tagmap = { - "folder_not_found": PaperFolderCreateError._folder_not_found_validator, - "invalid_folder_id": PaperFolderCreateError._invalid_folder_id_validator, + 'folder_not_found': PaperFolderCreateError._folder_not_found_validator, + 'invalid_folder_id': PaperFolderCreateError._invalid_folder_id_validator, } PaperFolderCreateError._tagmap.update(PaperApiBaseError._tagmap) -PaperFolderCreateError.folder_not_found = PaperFolderCreateError("folder_not_found") -PaperFolderCreateError.invalid_folder_id = PaperFolderCreateError("invalid_folder_id") +PaperFolderCreateError.folder_not_found = PaperFolderCreateError('folder_not_found') +PaperFolderCreateError.invalid_folder_id = PaperFolderCreateError('invalid_folder_id') PaperFolderCreateResult.folder_id.validator = bv.String() -PaperFolderCreateResult._all_field_names_ = set(["folder_id"]) -PaperFolderCreateResult._all_fields_ = [("folder_id", PaperFolderCreateResult.folder_id.validator)] +PaperFolderCreateResult._all_field_names_ = set(['folder_id']) +PaperFolderCreateResult._all_fields_ = [('folder_id', PaperFolderCreateResult.folder_id.validator)] RemovePaperDocUser.member.validator = sharing.MemberSelector_validator -RemovePaperDocUser._all_field_names_ = RefPaperDoc._all_field_names_.union(set(["member"])) -RemovePaperDocUser._all_fields_ = RefPaperDoc._all_fields_ + [ - ("member", RemovePaperDocUser.member.validator) -] +RemovePaperDocUser._all_field_names_ = RefPaperDoc._all_field_names_.union(set(['member'])) +RemovePaperDocUser._all_fields_ = RefPaperDoc._all_fields_ + [('member', RemovePaperDocUser.member.validator)] SharingPolicy.public_sharing_policy.validator = bv.Nullable(SharingPublicPolicyType_validator) SharingPolicy.team_sharing_policy.validator = bv.Nullable(SharingTeamPolicyType_validator) -SharingPolicy._all_field_names_ = set( - [ - "public_sharing_policy", - "team_sharing_policy", - ] -) +SharingPolicy._all_field_names_ = set([ + 'public_sharing_policy', + 'team_sharing_policy', +]) SharingPolicy._all_fields_ = [ - ("public_sharing_policy", SharingPolicy.public_sharing_policy.validator), - ("team_sharing_policy", SharingPolicy.team_sharing_policy.validator), + ('public_sharing_policy', SharingPolicy.public_sharing_policy.validator), + ('team_sharing_policy', SharingPolicy.team_sharing_policy.validator), ] SharingTeamPolicyType._people_with_link_can_edit_validator = bv.Void() SharingTeamPolicyType._people_with_link_can_view_and_comment_validator = bv.Void() SharingTeamPolicyType._invite_only_validator = bv.Void() SharingTeamPolicyType._tagmap = { - "people_with_link_can_edit": SharingTeamPolicyType._people_with_link_can_edit_validator, - "people_with_link_can_view_and_comment": SharingTeamPolicyType._people_with_link_can_view_and_comment_validator, - "invite_only": SharingTeamPolicyType._invite_only_validator, + 'people_with_link_can_edit': SharingTeamPolicyType._people_with_link_can_edit_validator, + 'people_with_link_can_view_and_comment': SharingTeamPolicyType._people_with_link_can_view_and_comment_validator, + 'invite_only': SharingTeamPolicyType._invite_only_validator, } -SharingTeamPolicyType.people_with_link_can_edit = SharingTeamPolicyType("people_with_link_can_edit") -SharingTeamPolicyType.people_with_link_can_view_and_comment = SharingTeamPolicyType( - "people_with_link_can_view_and_comment" -) -SharingTeamPolicyType.invite_only = SharingTeamPolicyType("invite_only") +SharingTeamPolicyType.people_with_link_can_edit = SharingTeamPolicyType('people_with_link_can_edit') +SharingTeamPolicyType.people_with_link_can_view_and_comment = SharingTeamPolicyType('people_with_link_can_view_and_comment') +SharingTeamPolicyType.invite_only = SharingTeamPolicyType('invite_only') SharingPublicPolicyType._disabled_validator = bv.Void() SharingPublicPolicyType._tagmap = { - "disabled": SharingPublicPolicyType._disabled_validator, + 'disabled': SharingPublicPolicyType._disabled_validator, } SharingPublicPolicyType._tagmap.update(SharingTeamPolicyType._tagmap) -SharingPublicPolicyType.disabled = SharingPublicPolicyType("disabled") +SharingPublicPolicyType.disabled = SharingPublicPolicyType('disabled') UserInfoWithPermissionLevel.user.validator = sharing.UserInfo_validator UserInfoWithPermissionLevel.permission_level.validator = PaperDocPermissionLevel_validator -UserInfoWithPermissionLevel._all_field_names_ = set( - [ - "user", - "permission_level", - ] -) +UserInfoWithPermissionLevel._all_field_names_ = set([ + 'user', + 'permission_level', +]) UserInfoWithPermissionLevel._all_fields_ = [ - ("user", UserInfoWithPermissionLevel.user.validator), - ("permission_level", UserInfoWithPermissionLevel.permission_level.validator), + ('user', UserInfoWithPermissionLevel.user.validator), + ('permission_level', UserInfoWithPermissionLevel.permission_level.validator), ] UserOnPaperDocFilter._visited_validator = bv.Void() UserOnPaperDocFilter._shared_validator = bv.Void() UserOnPaperDocFilter._other_validator = bv.Void() UserOnPaperDocFilter._tagmap = { - "visited": UserOnPaperDocFilter._visited_validator, - "shared": UserOnPaperDocFilter._shared_validator, - "other": UserOnPaperDocFilter._other_validator, + 'visited': UserOnPaperDocFilter._visited_validator, + 'shared': UserOnPaperDocFilter._shared_validator, + 'other': UserOnPaperDocFilter._other_validator, } -UserOnPaperDocFilter.visited = UserOnPaperDocFilter("visited") -UserOnPaperDocFilter.shared = UserOnPaperDocFilter("shared") -UserOnPaperDocFilter.other = UserOnPaperDocFilter("other") +UserOnPaperDocFilter.visited = UserOnPaperDocFilter('visited') +UserOnPaperDocFilter.shared = UserOnPaperDocFilter('shared') +UserOnPaperDocFilter.other = UserOnPaperDocFilter('other') AddMember.permission_level.default = PaperDocPermissionLevel.edit AddPaperDocUser.quiet.default = False @@ -3529,185 +3307,222 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ListUsersOnPaperDocArgs.filter_by.default = UserOnPaperDocFilter.shared PaperDocExport.include_comments.default = False docs_archive = bb.Route( - "docs/archive", + 'docs/archive', 1, True, RefPaperDoc_validator, bv.Void(), DocLookupError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) docs_create = bb.Route( - "docs/create", + 'docs/create', 1, True, PaperDocCreateArgs_validator, PaperDocCreateUpdateResult_validator, PaperDocCreateError_validator, - {"auth": "user", "host": "api", "style": "upload"}, + {'auth': 'user', + 'host': 'api', + 'style': 'upload'}, ) docs_download = bb.Route( - "docs/download", + 'docs/download', 1, True, PaperDocExport_validator, PaperDocExportResult_validator, DocLookupError_validator, - {"auth": "user", "host": "api", "style": "download"}, + {'auth': 'user', + 'host': 'api', + 'style': 'download'}, ) docs_folder_users_list = bb.Route( - "docs/folder_users/list", + 'docs/folder_users/list', 1, True, ListUsersOnFolderArgs_validator, ListUsersOnFolderResponse_validator, DocLookupError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) docs_folder_users_list_continue = bb.Route( - "docs/folder_users/list/continue", + 'docs/folder_users/list/continue', 1, True, ListUsersOnFolderContinueArgs_validator, ListUsersOnFolderResponse_validator, ListUsersCursorError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) docs_get_folder_info = bb.Route( - "docs/get_folder_info", + 'docs/get_folder_info', 1, True, RefPaperDoc_validator, FoldersContainingPaperDoc_validator, DocLookupError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) docs_get_metadata = bb.Route( - "docs/get_metadata", + 'docs/get_metadata', 1, False, GetDocMetadataArg_validator, PaperDocGetMetadataResult_validator, DocLookupError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) docs_list = bb.Route( - "docs/list", + 'docs/list', 1, True, ListPaperDocsArgs_validator, ListPaperDocsResponse_validator, bv.Void(), - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) docs_list_continue = bb.Route( - "docs/list/continue", + 'docs/list/continue', 1, True, ListPaperDocsContinueArgs_validator, ListPaperDocsResponse_validator, ListDocsCursorError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) docs_permanently_delete = bb.Route( - "docs/permanently_delete", + 'docs/permanently_delete', 1, True, RefPaperDoc_validator, bv.Void(), DocLookupError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) docs_sharing_policy_get = bb.Route( - "docs/sharing_policy/get", + 'docs/sharing_policy/get', 1, True, RefPaperDoc_validator, SharingPolicy_validator, DocLookupError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) docs_sharing_policy_set = bb.Route( - "docs/sharing_policy/set", + 'docs/sharing_policy/set', 1, True, PaperDocSharingPolicy_validator, bv.Void(), DocLookupError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) docs_update = bb.Route( - "docs/update", + 'docs/update', 1, True, PaperDocUpdateArgs_validator, PaperDocCreateUpdateResult_validator, PaperDocUpdateError_validator, - {"auth": "user", "host": "api", "style": "upload"}, + {'auth': 'user', + 'host': 'api', + 'style': 'upload'}, ) docs_users_add = bb.Route( - "docs/users/add", + 'docs/users/add', 1, True, AddPaperDocUser_validator, bv.List(AddPaperDocUserMemberResult_validator), DocLookupError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) docs_users_list = bb.Route( - "docs/users/list", + 'docs/users/list', 1, True, ListUsersOnPaperDocArgs_validator, ListUsersOnPaperDocResponse_validator, DocLookupError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) docs_users_list_continue = bb.Route( - "docs/users/list/continue", + 'docs/users/list/continue', 1, True, ListUsersOnPaperDocContinueArgs_validator, ListUsersOnPaperDocResponse_validator, ListUsersCursorError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) docs_users_remove = bb.Route( - "docs/users/remove", + 'docs/users/remove', 1, True, RemovePaperDocUser_validator, bv.Void(), DocLookupError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) folders_create = bb.Route( - "folders/create", + 'folders/create', 1, True, PaperFolderCreateArg_validator, PaperFolderCreateResult_validator, PaperFolderCreateError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) ROUTES = { - "docs/archive": docs_archive, - "docs/create": docs_create, - "docs/download": docs_download, - "docs/folder_users/list": docs_folder_users_list, - "docs/folder_users/list/continue": docs_folder_users_list_continue, - "docs/get_folder_info": docs_get_folder_info, - "docs/get_metadata": docs_get_metadata, - "docs/list": docs_list, - "docs/list/continue": docs_list_continue, - "docs/permanently_delete": docs_permanently_delete, - "docs/sharing_policy/get": docs_sharing_policy_get, - "docs/sharing_policy/set": docs_sharing_policy_set, - "docs/update": docs_update, - "docs/users/add": docs_users_add, - "docs/users/list": docs_users_list, - "docs/users/list/continue": docs_users_list_continue, - "docs/users/remove": docs_users_remove, - "folders/create": folders_create, + 'docs/archive': docs_archive, + 'docs/create': docs_create, + 'docs/download': docs_download, + 'docs/folder_users/list': docs_folder_users_list, + 'docs/folder_users/list/continue': docs_folder_users_list_continue, + 'docs/get_folder_info': docs_get_folder_info, + 'docs/get_metadata': docs_get_metadata, + 'docs/list': docs_list, + 'docs/list/continue': docs_list_continue, + 'docs/permanently_delete': docs_permanently_delete, + 'docs/sharing_policy/get': docs_sharing_policy_get, + 'docs/sharing_policy/set': docs_sharing_policy_set, + 'docs/update': docs_update, + 'docs/users/add': docs_users_add, + 'docs/users/list': docs_users_list, + 'docs/users/list/continue': docs_users_list_continue, + 'docs/users/remove': docs_users_remove, + 'folders/create': folders_create, } + diff --git a/dropbox/riviera.py b/dropbox/riviera.py index 6e72859c..fde0a038 100644 --- a/dropbox/riviera.py +++ b/dropbox/riviera.py @@ -9,7 +9,6 @@ from dropbox import async_ - class ApiExifGpsMetadata(bb.Struct): """ GPS coordinates and related tags extracted from image EXIF data. Fields are @@ -27,23 +26,21 @@ class ApiExifGpsMetadata(bb.Struct): """ __slots__ = [ - "_latitude_value", - "_longitude_value", - "_altitude_value", - "_timestamp_value", - "_datestamp_value", + '_latitude_value', + '_longitude_value', + '_altitude_value', + '_timestamp_value', + '_datestamp_value', ] _has_required_fields = False - def __init__( - self, - latitude=None, - longitude=None, - altitude=None, - timestamp=None, - datestamp=None, - ): + def __init__(self, + latitude=None, + longitude=None, + altitude=None, + timestamp=None, + datestamp=None): self._latitude_value = bb.NOT_SET self._longitude_value = bb.NOT_SET self._altitude_value = bb.NOT_SET @@ -76,14 +73,10 @@ def __init__( datestamp = bb.Attribute("datestamp") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ApiExifGpsMetadata, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ApiExifGpsMetadata, self)._process_custom_annotations(annotation_type, field_path, processor) ApiExifGpsMetadata_validator = bv.Struct(ApiExifGpsMetadata) - class ApiExifMetadata(bb.Struct): """ Image EXIF metadata. Mirrors the useful subset of the internal @@ -103,45 +96,43 @@ class ApiExifMetadata(bb.Struct): """ __slots__ = [ - "_image_width_value", - "_image_height_value", - "_camera_make_value", - "_camera_model_value", - "_lens_model_value", - "_date_time_original_value", - "_offset_time_original_value", - "_orientation_value", - "_exposure_time_value", - "_aperture_value_value", - "_iso_speed_value", - "_focal_length_value", - "_megapixels_value", - "_artist_value", - "_copyright_value", - "_gps_metadata_value", + '_image_width_value', + '_image_height_value', + '_camera_make_value', + '_camera_model_value', + '_lens_model_value', + '_date_time_original_value', + '_offset_time_original_value', + '_orientation_value', + '_exposure_time_value', + '_aperture_value_value', + '_iso_speed_value', + '_focal_length_value', + '_megapixels_value', + '_artist_value', + '_copyright_value', + '_gps_metadata_value', ] _has_required_fields = False - def __init__( - self, - image_width=None, - image_height=None, - camera_make=None, - camera_model=None, - lens_model=None, - date_time_original=None, - offset_time_original=None, - orientation=None, - exposure_time=None, - aperture_value=None, - iso_speed=None, - focal_length=None, - megapixels=None, - artist=None, - copyright=None, - gps_metadata=None, - ): + def __init__(self, + image_width=None, + image_height=None, + camera_make=None, + camera_model=None, + lens_model=None, + date_time_original=None, + offset_time_original=None, + orientation=None, + exposure_time=None, + aperture_value=None, + iso_speed=None, + focal_length=None, + megapixels=None, + artist=None, + copyright=None, + gps_metadata=None): self._image_width_value = bb.NOT_SET self._image_height_value = bb.NOT_SET self._camera_make_value = bb.NOT_SET @@ -240,14 +231,10 @@ def __init__( gps_metadata = bb.Attribute("gps_metadata", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ApiExifMetadata, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ApiExifMetadata, self)._process_custom_annotations(annotation_type, field_path, processor) ApiExifMetadata_validator = bv.Struct(ApiExifMetadata) - class ApiMediaMetadata(bb.Struct): """ Audio/video container and per-stream metadata. Mirrors the useful subset of @@ -258,15 +245,19 @@ class ApiMediaMetadata(bb.Struct): """ __slots__ = [ - "_bitrate_bps_value", - "_duration_s_value", - "_creation_time_value", - "_streams_value", + '_bitrate_bps_value', + '_duration_s_value', + '_creation_time_value', + '_streams_value', ] _has_required_fields = False - def __init__(self, bitrate_bps=None, duration_s=None, creation_time=None, streams=None): + def __init__(self, + bitrate_bps=None, + duration_s=None, + creation_time=None, + streams=None): self._bitrate_bps_value = bb.NOT_SET self._duration_s_value = bb.NOT_SET self._creation_time_value = bb.NOT_SET @@ -293,14 +284,10 @@ def __init__(self, bitrate_bps=None, duration_s=None, creation_time=None, stream streams = bb.Attribute("streams", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ApiMediaMetadata, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ApiMediaMetadata, self)._process_custom_annotations(annotation_type, field_path, processor) ApiMediaMetadata_validator = bv.Struct(ApiMediaMetadata) - class ApiMediaStream(bb.Struct): """ A single audio or video stream within a media file. @@ -318,41 +305,39 @@ class ApiMediaStream(bb.Struct): """ __slots__ = [ - "_index_value", - "_codec_type_value", - "_codec_name_value", - "_bitrate_bps_value", - "_duration_s_value", - "_width_value", - "_height_value", - "_frames_per_second_value", - "_rotation_value", - "_display_aspect_ratio_value", - "_channels_value", - "_channel_layout_value", - "_sample_rate_s_value", - "_language_iso_639_value", + '_index_value', + '_codec_type_value', + '_codec_name_value', + '_bitrate_bps_value', + '_duration_s_value', + '_width_value', + '_height_value', + '_frames_per_second_value', + '_rotation_value', + '_display_aspect_ratio_value', + '_channels_value', + '_channel_layout_value', + '_sample_rate_s_value', + '_language_iso_639_value', ] _has_required_fields = False - def __init__( - self, - index=None, - codec_type=None, - codec_name=None, - bitrate_bps=None, - duration_s=None, - width=None, - height=None, - frames_per_second=None, - rotation=None, - display_aspect_ratio=None, - channels=None, - channel_layout=None, - sample_rate_s=None, - language_iso_639=None, - ): + def __init__(self, + index=None, + codec_type=None, + codec_name=None, + bitrate_bps=None, + duration_s=None, + width=None, + height=None, + frames_per_second=None, + rotation=None, + display_aspect_ratio=None, + channels=None, + channel_layout=None, + sample_rate_s=None, + language_iso_639=None): self._index_value = bb.NOT_SET self._codec_type_value = bb.NOT_SET self._codec_name_value = bb.NOT_SET @@ -439,14 +424,10 @@ def __init__( language_iso_639 = bb.Attribute("language_iso_639") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ApiMediaStream, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ApiMediaStream, self)._process_custom_annotations(annotation_type, field_path, processor) ApiMediaStream_validator = bv.Struct(ApiMediaStream) - class ApiOfficeMetadata(bb.Struct): """ MS Office document metadata. Mirrors the internal `riviera.OfficeMetadata` @@ -460,37 +441,35 @@ class ApiOfficeMetadata(bb.Struct): """ __slots__ = [ - "_file_type_value", - "_creator_value", - "_company_value", - "_title_value", - "_subject_value", - "_keywords_value", - "_description_value", - "_total_edit_time_minutes_value", - "_pages_value", - "_words_value", - "_slides_value", - "_revision_number_value", + '_file_type_value', + '_creator_value', + '_company_value', + '_title_value', + '_subject_value', + '_keywords_value', + '_description_value', + '_total_edit_time_minutes_value', + '_pages_value', + '_words_value', + '_slides_value', + '_revision_number_value', ] _has_required_fields = False - def __init__( - self, - file_type=None, - creator=None, - company=None, - title=None, - subject=None, - keywords=None, - description=None, - total_edit_time_minutes=None, - pages=None, - words=None, - slides=None, - revision_number=None, - ): + def __init__(self, + file_type=None, + creator=None, + company=None, + title=None, + subject=None, + keywords=None, + description=None, + total_edit_time_minutes=None, + pages=None, + words=None, + slides=None, + revision_number=None): self._file_type_value = bb.NOT_SET self._creator_value = bb.NOT_SET self._company_value = bb.NOT_SET @@ -565,14 +544,10 @@ def __init__( revision_number = bb.Attribute("revision_number") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ApiOfficeMetadata, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ApiOfficeMetadata, self)._process_custom_annotations(annotation_type, field_path, processor) ApiOfficeMetadata_validator = bv.Struct(ApiOfficeMetadata) - class ApiPdfMetadata(bb.Struct): """ PDF document metadata. @@ -582,14 +557,17 @@ class ApiPdfMetadata(bb.Struct): """ __slots__ = [ - "_pages_value", - "_width_value", - "_height_value", + '_pages_value', + '_width_value', + '_height_value', ] _has_required_fields = False - def __init__(self, pages=None, width=None, height=None): + def __init__(self, + pages=None, + width=None, + height=None): self._pages_value = bb.NOT_SET self._width_value = bb.NOT_SET self._height_value = bb.NOT_SET @@ -610,27 +588,25 @@ def __init__(self, pages=None, width=None, height=None): height = bb.Attribute("height") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ApiPdfMetadata, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ApiPdfMetadata, self)._process_custom_annotations(annotation_type, field_path, processor) ApiPdfMetadata_validator = bv.Struct(ApiPdfMetadata) - class ApiStructuredTranscript(bb.Struct): """ Structured transcript for APIv2 """ __slots__ = [ - "_segments_value", - "_transcript_locale_value", + '_segments_value', + '_transcript_locale_value', ] _has_required_fields = False - def __init__(self, segments=None, transcript_locale=None): + def __init__(self, + segments=None, + transcript_locale=None): self._segments_value = bb.NOT_SET self._transcript_locale_value = bb.NOT_SET if segments is not None: @@ -645,28 +621,27 @@ def __init__(self, segments=None, transcript_locale=None): transcript_locale = bb.Attribute("transcript_locale") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ApiStructuredTranscript, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ApiStructuredTranscript, self)._process_custom_annotations(annotation_type, field_path, processor) ApiStructuredTranscript_validator = bv.Struct(ApiStructuredTranscript) - class ApiTranscriptSegment(bb.Struct): """ Transcript segment for APIv2 """ __slots__ = [ - "_text_value", - "_start_time_value", - "_end_time_value", + '_text_value', + '_start_time_value', + '_end_time_value', ] _has_required_fields = False - def __init__(self, text=None, start_time=None, end_time=None): + def __init__(self, + text=None, + start_time=None, + end_time=None): self._text_value = bb.NOT_SET self._start_time_value = bb.NOT_SET self._end_time_value = bb.NOT_SET @@ -687,14 +662,10 @@ def __init__(self, text=None, start_time=None, end_time=None): end_time = bb.Attribute("end_time") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ApiTranscriptSegment, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ApiTranscriptSegment, self)._process_custom_annotations(annotation_type, field_path, processor) ApiTranscriptSegment_validator = bv.Struct(ApiTranscriptSegment) - class ContentApiV2Error(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -707,7 +678,7 @@ class ContentApiV2Error(bb.Union): The target is a folder, not a file. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition no_audio_error = None # Attribute is overwritten below the class definition @@ -732,7 +703,7 @@ def server_error(cls, val): :param str val: :rtype: ContentApiV2Error """ - return cls("server_error", val) + return cls('server_error', val) @classmethod def user_error(cls, val): @@ -743,7 +714,7 @@ def user_error(cls, val): :param str val: :rtype: ContentApiV2Error """ - return cls("user_error", val) + return cls('user_error', val) @classmethod def media_duration_error(cls, val): @@ -754,7 +725,7 @@ def media_duration_error(cls, val): :param MediaDurationError val: :rtype: ContentApiV2Error """ - return cls("media_duration_error", val) + return cls('media_duration_error', val) def is_server_error(self): """ @@ -762,7 +733,7 @@ def is_server_error(self): :rtype: bool """ - return self._tag == "server_error" + return self._tag == 'server_error' def is_user_error(self): """ @@ -770,7 +741,7 @@ def is_user_error(self): :rtype: bool """ - return self._tag == "user_error" + return self._tag == 'user_error' def is_media_duration_error(self): """ @@ -778,7 +749,7 @@ def is_media_duration_error(self): :rtype: bool """ - return self._tag == "media_duration_error" + return self._tag == 'media_duration_error' def is_no_audio_error(self): """ @@ -786,7 +757,7 @@ def is_no_audio_error(self): :rtype: bool """ - return self._tag == "no_audio_error" + return self._tag == 'no_audio_error' def is_link_download_disabled_error(self): """ @@ -794,7 +765,7 @@ def is_link_download_disabled_error(self): :rtype: bool """ - return self._tag == "link_download_disabled_error" + return self._tag == 'link_download_disabled_error' def is_shared_link_password_protected(self): """ @@ -802,7 +773,7 @@ def is_shared_link_password_protected(self): :rtype: bool """ - return self._tag == "shared_link_password_protected" + return self._tag == 'shared_link_password_protected' def is_limit_exceeded_error(self): """ @@ -810,7 +781,7 @@ def is_limit_exceeded_error(self): :rtype: bool """ - return self._tag == "limit_exceeded_error" + return self._tag == 'limit_exceeded_error' def is_not_found_error(self): """ @@ -818,7 +789,7 @@ def is_not_found_error(self): :rtype: bool """ - return self._tag == "not_found_error" + return self._tag == 'not_found_error' def is_is_a_folder_error(self): """ @@ -826,7 +797,7 @@ def is_is_a_folder_error(self): :rtype: bool """ - return self._tag == "is_a_folder_error" + return self._tag == 'is_a_folder_error' def is_other(self): """ @@ -834,7 +805,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_server_error(self): """ @@ -867,14 +838,10 @@ def get_media_duration_error(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ContentApiV2Error, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ContentApiV2Error, self)._process_custom_annotations(annotation_type, field_path, processor) ContentApiV2Error_validator = bv.Union(ContentApiV2Error) - class ErrorCode(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -893,7 +860,7 @@ class ErrorCode(bb.Union): 503 """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition unknown_error = None # Attribute is overwritten below the class definition @@ -915,7 +882,7 @@ def is_unknown_error(self): :rtype: bool """ - return self._tag == "unknown_error" + return self._tag == 'unknown_error' def is_bad_request(self): """ @@ -923,7 +890,7 @@ def is_bad_request(self): :rtype: bool """ - return self._tag == "bad_request" + return self._tag == 'bad_request' def is_api_error(self): """ @@ -931,7 +898,7 @@ def is_api_error(self): :rtype: bool """ - return self._tag == "api_error" + return self._tag == 'api_error' def is_access_error(self): """ @@ -939,7 +906,7 @@ def is_access_error(self): :rtype: bool """ - return self._tag == "access_error" + return self._tag == 'access_error' def is_ratelimit_error(self): """ @@ -947,7 +914,7 @@ def is_ratelimit_error(self): :rtype: bool """ - return self._tag == "ratelimit_error" + return self._tag == 'ratelimit_error' def is_unavailable(self): """ @@ -955,7 +922,7 @@ def is_unavailable(self): :rtype: bool """ - return self._tag == "unavailable" + return self._tag == 'unavailable' def is_other(self): """ @@ -963,15 +930,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): super(ErrorCode, self)._process_custom_annotations(annotation_type, field_path, processor) - ErrorCode_validator = bv.Union(ErrorCode) - class FileIdOrUrl(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -979,7 +944,7 @@ class FileIdOrUrl(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -992,7 +957,7 @@ def file_id(cls, val): :param str val: :rtype: FileIdOrUrl """ - return cls("file_id", val) + return cls('file_id', val) @classmethod def url(cls, val): @@ -1003,7 +968,7 @@ def url(cls, val): :param str val: :rtype: FileIdOrUrl """ - return cls("url", val) + return cls('url', val) @classmethod def path(cls, val): @@ -1014,7 +979,7 @@ def path(cls, val): :param str val: :rtype: FileIdOrUrl """ - return cls("path", val) + return cls('path', val) def is_file_id(self): """ @@ -1022,7 +987,7 @@ def is_file_id(self): :rtype: bool """ - return self._tag == "file_id" + return self._tag == 'file_id' def is_url(self): """ @@ -1030,7 +995,7 @@ def is_url(self): :rtype: bool """ - return self._tag == "url" + return self._tag == 'url' def is_path(self): """ @@ -1038,7 +1003,7 @@ def is_path(self): :rtype: bool """ - return self._tag == "path" + return self._tag == 'path' def is_other(self): """ @@ -1046,7 +1011,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_file_id(self): """ @@ -1081,10 +1046,8 @@ def get_path(self): def _process_custom_annotations(self, annotation_type, field_path, processor): super(FileIdOrUrl, self)._process_custom_annotations(annotation_type, field_path, processor) - FileIdOrUrl_validator = bv.Union(FileIdOrUrl) - class GetMarkdownArgs(bb.Struct): """ Arguments for the asynchronous `get_markdown_async` route. Exactly one of @@ -1116,14 +1079,17 @@ class GetMarkdownArgs(bb.Struct): """ __slots__ = [ - "_file_id_or_url_value", - "_enable_ocr_value", - "_embed_images_value", + '_file_id_or_url_value', + '_enable_ocr_value', + '_embed_images_value', ] _has_required_fields = False - def __init__(self, file_id_or_url=None, enable_ocr=None, embed_images=None): + def __init__(self, + file_id_or_url=None, + enable_ocr=None, + embed_images=None): self._file_id_or_url_value = bb.NOT_SET self._enable_ocr_value = bb.NOT_SET self._embed_images_value = bb.NOT_SET @@ -1144,14 +1110,10 @@ def __init__(self, file_id_or_url=None, enable_ocr=None, embed_images=None): embed_images = bb.Attribute("embed_images") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetMarkdownArgs, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GetMarkdownArgs, self)._process_custom_annotations(annotation_type, field_path, processor) GetMarkdownArgs_validator = bv.Struct(GetMarkdownArgs) - class GetMarkdownAsyncCheckResult(bb.Union): """ Result type for EventBus async check @@ -1161,7 +1123,7 @@ class GetMarkdownAsyncCheckResult(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition in_progress = None # Attribute is overwritten below the class definition @@ -1176,7 +1138,7 @@ def complete(cls, val): :param GetMarkdownResult val: :rtype: GetMarkdownAsyncCheckResult """ - return cls("complete", val) + return cls('complete', val) @classmethod def failed(cls, val): @@ -1187,7 +1149,7 @@ def failed(cls, val): :param GetMarkdownAsyncError val: :rtype: GetMarkdownAsyncCheckResult """ - return cls("failed", val) + return cls('failed', val) def is_in_progress(self): """ @@ -1195,7 +1157,7 @@ def is_in_progress(self): :rtype: bool """ - return self._tag == "in_progress" + return self._tag == 'in_progress' def is_complete(self): """ @@ -1203,7 +1165,7 @@ def is_complete(self): :rtype: bool """ - return self._tag == "complete" + return self._tag == 'complete' def is_failed(self): """ @@ -1211,7 +1173,7 @@ def is_failed(self): :rtype: bool """ - return self._tag == "failed" + return self._tag == 'failed' def is_other(self): """ @@ -1219,7 +1181,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_complete(self): """ @@ -1242,23 +1204,22 @@ def get_failed(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetMarkdownAsyncCheckResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GetMarkdownAsyncCheckResult, self)._process_custom_annotations(annotation_type, field_path, processor) GetMarkdownAsyncCheckResult_validator = bv.Union(GetMarkdownAsyncCheckResult) - class GetMarkdownAsyncError(bb.Struct): + __slots__ = [ - "_error_code_value", - "_error_details_value", + '_error_code_value', + '_error_details_value', ] _has_required_fields = False - def __init__(self, error_code=None, error_details=None): + def __init__(self, + error_code=None, + error_details=None): self._error_code_value = bb.NOT_SET self._error_details_value = bb.NOT_SET if error_code is not None: @@ -1273,14 +1234,10 @@ def __init__(self, error_code=None, error_details=None): error_details = bb.Attribute("error_details", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetMarkdownAsyncError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GetMarkdownAsyncError, self)._process_custom_annotations(annotation_type, field_path, processor) GetMarkdownAsyncError_validator = bv.Struct(GetMarkdownAsyncError) - class GetMarkdownResult(bb.Struct): """ :ivar GetMarkdownResult.markdown: @@ -1288,12 +1245,13 @@ class GetMarkdownResult(bb.Struct): """ __slots__ = [ - "_markdown_value", + '_markdown_value', ] _has_required_fields = False - def __init__(self, markdown=None): + def __init__(self, + markdown=None): self._markdown_value = bb.NOT_SET if markdown is not None: self.markdown = markdown @@ -1302,14 +1260,10 @@ def __init__(self, markdown=None): markdown = bb.Attribute("markdown") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetMarkdownResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GetMarkdownResult, self)._process_custom_annotations(annotation_type, field_path, processor) GetMarkdownResult_validator = bv.Struct(GetMarkdownResult) - class GetMetadataArgs(bb.Struct): """ Arguments for the asynchronous `get_metadata_async` route. Exactly one of @@ -1338,12 +1292,13 @@ class GetMetadataArgs(bb.Struct): """ __slots__ = [ - "_file_id_or_url_value", + '_file_id_or_url_value', ] _has_required_fields = False - def __init__(self, file_id_or_url=None): + def __init__(self, + file_id_or_url=None): self._file_id_or_url_value = bb.NOT_SET if file_id_or_url is not None: self.file_id_or_url = file_id_or_url @@ -1352,14 +1307,10 @@ def __init__(self, file_id_or_url=None): file_id_or_url = bb.Attribute("file_id_or_url", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetMetadataArgs, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GetMetadataArgs, self)._process_custom_annotations(annotation_type, field_path, processor) GetMetadataArgs_validator = bv.Struct(GetMetadataArgs) - class GetMetadataAsyncCheckResult(bb.Union): """ Result type for EventBus async check - must end in "CheckResult" @@ -1369,7 +1320,7 @@ class GetMetadataAsyncCheckResult(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition in_progress = None # Attribute is overwritten below the class definition @@ -1384,7 +1335,7 @@ def complete(cls, val): :param GetMetadataResult val: :rtype: GetMetadataAsyncCheckResult """ - return cls("complete", val) + return cls('complete', val) @classmethod def failed(cls, val): @@ -1395,7 +1346,7 @@ def failed(cls, val): :param GetMetadataAsyncError val: :rtype: GetMetadataAsyncCheckResult """ - return cls("failed", val) + return cls('failed', val) def is_in_progress(self): """ @@ -1403,7 +1354,7 @@ def is_in_progress(self): :rtype: bool """ - return self._tag == "in_progress" + return self._tag == 'in_progress' def is_complete(self): """ @@ -1411,7 +1362,7 @@ def is_complete(self): :rtype: bool """ - return self._tag == "complete" + return self._tag == 'complete' def is_failed(self): """ @@ -1419,7 +1370,7 @@ def is_failed(self): :rtype: bool """ - return self._tag == "failed" + return self._tag == 'failed' def is_other(self): """ @@ -1427,7 +1378,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_complete(self): """ @@ -1450,23 +1401,22 @@ def get_failed(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetMetadataAsyncCheckResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GetMetadataAsyncCheckResult, self)._process_custom_annotations(annotation_type, field_path, processor) GetMetadataAsyncCheckResult_validator = bv.Union(GetMetadataAsyncCheckResult) - class GetMetadataAsyncError(bb.Struct): + __slots__ = [ - "_error_code_value", - "_error_details_value", + '_error_code_value', + '_error_details_value', ] _has_required_fields = False - def __init__(self, error_code=None, error_details=None): + def __init__(self, + error_code=None, + error_details=None): self._error_code_value = bb.NOT_SET self._error_details_value = bb.NOT_SET if error_code is not None: @@ -1481,14 +1431,10 @@ def __init__(self, error_code=None, error_details=None): error_details = bb.Attribute("error_details", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetMetadataAsyncError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GetMetadataAsyncError, self)._process_custom_annotations(annotation_type, field_path, processor) GetMetadataAsyncError_validator = bv.Struct(GetMetadataAsyncError) - class GetMetadataResult(bb.Struct): """ :ivar GetMetadataResult.metadata_type: @@ -1497,13 +1443,15 @@ class GetMetadataResult(bb.Struct): """ __slots__ = [ - "_metadata_type_value", - "_metadata_value", + '_metadata_type_value', + '_metadata_value', ] _has_required_fields = False - def __init__(self, metadata_type=None, metadata=None): + def __init__(self, + metadata_type=None, + metadata=None): self._metadata_type_value = bb.NOT_SET self._metadata_value = bb.NOT_SET if metadata_type is not None: @@ -1518,14 +1466,10 @@ def __init__(self, metadata_type=None, metadata=None): metadata = bb.Attribute("metadata", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetMetadataResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GetMetadataResult, self)._process_custom_annotations(annotation_type, field_path, processor) GetMetadataResult_validator = bv.Struct(GetMetadataResult) - class GetTranscriptArgs(bb.Struct): """ Arguments for the asynchronous `get_transcript_async` route. Exactly one of @@ -1568,21 +1512,19 @@ class GetTranscriptArgs(bb.Struct): """ __slots__ = [ - "_file_id_or_url_value", - "_timestamp_level_value", - "_included_special_words_value", - "_audio_language_value", + '_file_id_or_url_value', + '_timestamp_level_value', + '_included_special_words_value', + '_audio_language_value', ] _has_required_fields = False - def __init__( - self, - file_id_or_url=None, - timestamp_level=None, - included_special_words=None, - audio_language=None, - ): + def __init__(self, + file_id_or_url=None, + timestamp_level=None, + included_special_words=None, + audio_language=None): self._file_id_or_url_value = bb.NOT_SET self._timestamp_level_value = bb.NOT_SET self._included_special_words_value = bb.NOT_SET @@ -1609,14 +1551,10 @@ def __init__( audio_language = bb.Attribute("audio_language") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetTranscriptArgs, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GetTranscriptArgs, self)._process_custom_annotations(annotation_type, field_path, processor) GetTranscriptArgs_validator = bv.Struct(GetTranscriptArgs) - class GetTranscriptAsyncCheckResult(bb.Union): """ Result type for EventBus async check - must end in "CheckResult" @@ -1626,7 +1564,7 @@ class GetTranscriptAsyncCheckResult(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition in_progress = None # Attribute is overwritten below the class definition @@ -1641,7 +1579,7 @@ def complete(cls, val): :param GetTranscriptResult val: :rtype: GetTranscriptAsyncCheckResult """ - return cls("complete", val) + return cls('complete', val) @classmethod def failed(cls, val): @@ -1652,7 +1590,7 @@ def failed(cls, val): :param GetTranscriptAsyncError val: :rtype: GetTranscriptAsyncCheckResult """ - return cls("failed", val) + return cls('failed', val) def is_in_progress(self): """ @@ -1660,7 +1598,7 @@ def is_in_progress(self): :rtype: bool """ - return self._tag == "in_progress" + return self._tag == 'in_progress' def is_complete(self): """ @@ -1668,7 +1606,7 @@ def is_complete(self): :rtype: bool """ - return self._tag == "complete" + return self._tag == 'complete' def is_failed(self): """ @@ -1676,7 +1614,7 @@ def is_failed(self): :rtype: bool """ - return self._tag == "failed" + return self._tag == 'failed' def is_other(self): """ @@ -1684,7 +1622,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_complete(self): """ @@ -1707,23 +1645,22 @@ def get_failed(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetTranscriptAsyncCheckResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GetTranscriptAsyncCheckResult, self)._process_custom_annotations(annotation_type, field_path, processor) GetTranscriptAsyncCheckResult_validator = bv.Union(GetTranscriptAsyncCheckResult) - class GetTranscriptAsyncError(bb.Struct): + __slots__ = [ - "_error_code_value", - "_error_details_value", + '_error_code_value', + '_error_details_value', ] _has_required_fields = False - def __init__(self, error_code=None, error_details=None): + def __init__(self, + error_code=None, + error_details=None): self._error_code_value = bb.NOT_SET self._error_details_value = bb.NOT_SET if error_code is not None: @@ -1738,14 +1675,10 @@ def __init__(self, error_code=None, error_details=None): error_details = bb.Attribute("error_details", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetTranscriptAsyncError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GetTranscriptAsyncError, self)._process_custom_annotations(annotation_type, field_path, processor) GetTranscriptAsyncError_validator = bv.Struct(GetTranscriptAsyncError) - class GetTranscriptResult(bb.Struct): """ :ivar GetTranscriptResult.structured_transcript: @@ -1755,12 +1688,13 @@ class GetTranscriptResult(bb.Struct): """ __slots__ = [ - "_structured_transcript_value", + '_structured_transcript_value', ] _has_required_fields = False - def __init__(self, structured_transcript=None): + def __init__(self, + structured_transcript=None): self._structured_transcript_value = bb.NOT_SET if structured_transcript is not None: self.structured_transcript = structured_transcript @@ -1769,14 +1703,10 @@ def __init__(self, structured_transcript=None): structured_transcript = bb.Attribute("structured_transcript", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetTranscriptResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GetTranscriptResult, self)._process_custom_annotations(annotation_type, field_path, processor) GetTranscriptResult_validator = bv.Struct(GetTranscriptResult) - class MarkdownConversionApiV2Error(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -1789,7 +1719,7 @@ class MarkdownConversionApiV2Error(bb.Union): The target is a folder, not a file. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition unsupported_format_error = None # Attribute is overwritten below the class definition @@ -1816,7 +1746,7 @@ def server_error(cls, val): :param str val: :rtype: MarkdownConversionApiV2Error """ - return cls("server_error", val) + return cls('server_error', val) @classmethod def user_error(cls, val): @@ -1827,7 +1757,7 @@ def user_error(cls, val): :param str val: :rtype: MarkdownConversionApiV2Error """ - return cls("user_error", val) + return cls('user_error', val) def is_server_error(self): """ @@ -1835,7 +1765,7 @@ def is_server_error(self): :rtype: bool """ - return self._tag == "server_error" + return self._tag == 'server_error' def is_user_error(self): """ @@ -1843,7 +1773,7 @@ def is_user_error(self): :rtype: bool """ - return self._tag == "user_error" + return self._tag == 'user_error' def is_unsupported_format_error(self): """ @@ -1851,7 +1781,7 @@ def is_unsupported_format_error(self): :rtype: bool """ - return self._tag == "unsupported_format_error" + return self._tag == 'unsupported_format_error' def is_link_download_disabled_error(self): """ @@ -1859,7 +1789,7 @@ def is_link_download_disabled_error(self): :rtype: bool """ - return self._tag == "link_download_disabled_error" + return self._tag == 'link_download_disabled_error' def is_shared_link_password_protected(self): """ @@ -1867,7 +1797,7 @@ def is_shared_link_password_protected(self): :rtype: bool """ - return self._tag == "shared_link_password_protected" + return self._tag == 'shared_link_password_protected' def is_limit_exceeded_error(self): """ @@ -1875,7 +1805,7 @@ def is_limit_exceeded_error(self): :rtype: bool """ - return self._tag == "limit_exceeded_error" + return self._tag == 'limit_exceeded_error' def is_conversion_failure_error(self): """ @@ -1883,7 +1813,7 @@ def is_conversion_failure_error(self): :rtype: bool """ - return self._tag == "conversion_failure_error" + return self._tag == 'conversion_failure_error' def is_not_found_error(self): """ @@ -1891,7 +1821,7 @@ def is_not_found_error(self): :rtype: bool """ - return self._tag == "not_found_error" + return self._tag == 'not_found_error' def is_is_a_folder_error(self): """ @@ -1899,7 +1829,7 @@ def is_is_a_folder_error(self): :rtype: bool """ - return self._tag == "is_a_folder_error" + return self._tag == 'is_a_folder_error' def is_other(self): """ @@ -1907,7 +1837,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_server_error(self): """ @@ -1930,22 +1860,20 @@ def get_user_error(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MarkdownConversionApiV2Error, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MarkdownConversionApiV2Error, self)._process_custom_annotations(annotation_type, field_path, processor) MarkdownConversionApiV2Error_validator = bv.Union(MarkdownConversionApiV2Error) - class MediaDurationError(bb.Struct): + __slots__ = [ - "_limit_value", + '_limit_value', ] _has_required_fields = False - def __init__(self, limit=None): + def __init__(self, + limit=None): self._limit_value = bb.NOT_SET if limit is not None: self.limit = limit @@ -1954,14 +1882,10 @@ def __init__(self, limit=None): limit = bb.Attribute("limit") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MediaDurationError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MediaDurationError, self)._process_custom_annotations(annotation_type, field_path, processor) MediaDurationError_validator = bv.Struct(MediaDurationError) - class MetadataExtractionApiV2Error(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -1974,7 +1898,7 @@ class MetadataExtractionApiV2Error(bb.Union): The target is a folder, not a file. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition unsupported_format_error = None # Attribute is overwritten below the class definition @@ -2001,7 +1925,7 @@ def server_error(cls, val): :param str val: :rtype: MetadataExtractionApiV2Error """ - return cls("server_error", val) + return cls('server_error', val) @classmethod def user_error(cls, val): @@ -2012,7 +1936,7 @@ def user_error(cls, val): :param str val: :rtype: MetadataExtractionApiV2Error """ - return cls("user_error", val) + return cls('user_error', val) def is_server_error(self): """ @@ -2020,7 +1944,7 @@ def is_server_error(self): :rtype: bool """ - return self._tag == "server_error" + return self._tag == 'server_error' def is_user_error(self): """ @@ -2028,7 +1952,7 @@ def is_user_error(self): :rtype: bool """ - return self._tag == "user_error" + return self._tag == 'user_error' def is_unsupported_format_error(self): """ @@ -2036,7 +1960,7 @@ def is_unsupported_format_error(self): :rtype: bool """ - return self._tag == "unsupported_format_error" + return self._tag == 'unsupported_format_error' def is_link_download_disabled_error(self): """ @@ -2044,7 +1968,7 @@ def is_link_download_disabled_error(self): :rtype: bool """ - return self._tag == "link_download_disabled_error" + return self._tag == 'link_download_disabled_error' def is_shared_link_password_protected(self): """ @@ -2052,7 +1976,7 @@ def is_shared_link_password_protected(self): :rtype: bool """ - return self._tag == "shared_link_password_protected" + return self._tag == 'shared_link_password_protected' def is_limit_exceeded_error(self): """ @@ -2060,7 +1984,7 @@ def is_limit_exceeded_error(self): :rtype: bool """ - return self._tag == "limit_exceeded_error" + return self._tag == 'limit_exceeded_error' def is_conversion_failure_error(self): """ @@ -2068,7 +1992,7 @@ def is_conversion_failure_error(self): :rtype: bool """ - return self._tag == "conversion_failure_error" + return self._tag == 'conversion_failure_error' def is_not_found_error(self): """ @@ -2076,7 +2000,7 @@ def is_not_found_error(self): :rtype: bool """ - return self._tag == "not_found_error" + return self._tag == 'not_found_error' def is_is_a_folder_error(self): """ @@ -2084,7 +2008,7 @@ def is_is_a_folder_error(self): :rtype: bool """ - return self._tag == "is_a_folder_error" + return self._tag == 'is_a_folder_error' def is_other(self): """ @@ -2092,7 +2016,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_server_error(self): """ @@ -2115,14 +2039,10 @@ def get_user_error(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MetadataExtractionApiV2Error, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MetadataExtractionApiV2Error, self)._process_custom_annotations(annotation_type, field_path, processor) MetadataExtractionApiV2Error_validator = bv.Union(MetadataExtractionApiV2Error) - class MetadataType(bb.Union): """ Which metadata variant is populated in a `GetMetadataResult`, derived from @@ -2133,7 +2053,7 @@ class MetadataType(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition metadata_type_unknown = None # Attribute is overwritten below the class definition @@ -2153,7 +2073,7 @@ def is_metadata_type_unknown(self): :rtype: bool """ - return self._tag == "metadata_type_unknown" + return self._tag == 'metadata_type_unknown' def is_metadata_type_exif(self): """ @@ -2161,7 +2081,7 @@ def is_metadata_type_exif(self): :rtype: bool """ - return self._tag == "metadata_type_exif" + return self._tag == 'metadata_type_exif' def is_metadata_type_media(self): """ @@ -2169,7 +2089,7 @@ def is_metadata_type_media(self): :rtype: bool """ - return self._tag == "metadata_type_media" + return self._tag == 'metadata_type_media' def is_metadata_type_pdf(self): """ @@ -2177,7 +2097,7 @@ def is_metadata_type_pdf(self): :rtype: bool """ - return self._tag == "metadata_type_pdf" + return self._tag == 'metadata_type_pdf' def is_metadata_type_office(self): """ @@ -2185,7 +2105,7 @@ def is_metadata_type_office(self): :rtype: bool """ - return self._tag == "metadata_type_office" + return self._tag == 'metadata_type_office' def is_other(self): """ @@ -2193,17 +2113,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MetadataType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MetadataType, self)._process_custom_annotations(annotation_type, field_path, processor) MetadataType_validator = bv.Union(MetadataType) - class OfficeFileType(bb.Union): """ The kind of MS Office document that produced an `ApiOfficeMetadata` result. @@ -2213,7 +2129,7 @@ class OfficeFileType(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition office_filetype_unknown = None # Attribute is overwritten below the class definition @@ -2231,7 +2147,7 @@ def is_office_filetype_unknown(self): :rtype: bool """ - return self._tag == "office_filetype_unknown" + return self._tag == 'office_filetype_unknown' def is_office_filetype_word(self): """ @@ -2239,7 +2155,7 @@ def is_office_filetype_word(self): :rtype: bool """ - return self._tag == "office_filetype_word" + return self._tag == 'office_filetype_word' def is_office_filetype_powerpoint(self): """ @@ -2247,7 +2163,7 @@ def is_office_filetype_powerpoint(self): :rtype: bool """ - return self._tag == "office_filetype_powerpoint" + return self._tag == 'office_filetype_powerpoint' def is_office_filetype_excel(self): """ @@ -2255,7 +2171,7 @@ def is_office_filetype_excel(self): :rtype: bool """ - return self._tag == "office_filetype_excel" + return self._tag == 'office_filetype_excel' def is_other(self): """ @@ -2263,17 +2179,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(OfficeFileType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(OfficeFileType, self)._process_custom_annotations(annotation_type, field_path, processor) OfficeFileType_validator = bv.Union(OfficeFileType) - class TimestampLevel(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -2281,7 +2193,7 @@ class TimestampLevel(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition unknown = None # Attribute is overwritten below the class definition @@ -2297,7 +2209,7 @@ def is_unknown(self): :rtype: bool """ - return self._tag == "unknown" + return self._tag == 'unknown' def is_sentence(self): """ @@ -2305,7 +2217,7 @@ def is_sentence(self): :rtype: bool """ - return self._tag == "sentence" + return self._tag == 'sentence' def is_word(self): """ @@ -2313,7 +2225,7 @@ def is_word(self): :rtype: bool """ - return self._tag == "word" + return self._tag == 'word' def is_other(self): """ @@ -2321,17 +2233,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TimestampLevel, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TimestampLevel, self)._process_custom_annotations(annotation_type, field_path, processor) TimestampLevel_validator = bv.Union(TimestampLevel) - class MetadataUnion(bb.Union): """ Exactly one variant is populated, corresponding to `metadata_type`. @@ -2341,7 +2249,7 @@ class MetadataUnion(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -2354,7 +2262,7 @@ def exif(cls, val): :param ApiExifMetadata val: :rtype: MetadataUnion """ - return cls("exif", val) + return cls('exif', val) @classmethod def media(cls, val): @@ -2365,7 +2273,7 @@ def media(cls, val): :param ApiMediaMetadata val: :rtype: MetadataUnion """ - return cls("media", val) + return cls('media', val) @classmethod def pdf(cls, val): @@ -2376,7 +2284,7 @@ def pdf(cls, val): :param ApiPdfMetadata val: :rtype: MetadataUnion """ - return cls("pdf", val) + return cls('pdf', val) @classmethod def office(cls, val): @@ -2387,7 +2295,7 @@ def office(cls, val): :param ApiOfficeMetadata val: :rtype: MetadataUnion """ - return cls("office", val) + return cls('office', val) def is_exif(self): """ @@ -2395,7 +2303,7 @@ def is_exif(self): :rtype: bool """ - return self._tag == "exif" + return self._tag == 'exif' def is_media(self): """ @@ -2403,7 +2311,7 @@ def is_media(self): :rtype: bool """ - return self._tag == "media" + return self._tag == 'media' def is_pdf(self): """ @@ -2411,7 +2319,7 @@ def is_pdf(self): :rtype: bool """ - return self._tag == "pdf" + return self._tag == 'pdf' def is_office(self): """ @@ -2419,7 +2327,7 @@ def is_office(self): :rtype: bool """ - return self._tag == "office" + return self._tag == 'office' def is_other(self): """ @@ -2427,7 +2335,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_exif(self): """ @@ -2470,10 +2378,7 @@ def get_office(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MetadataUnion, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MetadataUnion, self)._process_custom_annotations(annotation_type, field_path, processor) MetadataUnion_validator = bv.Union(MetadataUnion) @@ -2482,21 +2387,19 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ApiExifGpsMetadata.altitude.validator = bv.String() ApiExifGpsMetadata.timestamp.validator = bv.String() ApiExifGpsMetadata.datestamp.validator = bv.String() -ApiExifGpsMetadata._all_field_names_ = set( - [ - "latitude", - "longitude", - "altitude", - "timestamp", - "datestamp", - ] -) +ApiExifGpsMetadata._all_field_names_ = set([ + 'latitude', + 'longitude', + 'altitude', + 'timestamp', + 'datestamp', +]) ApiExifGpsMetadata._all_fields_ = [ - ("latitude", ApiExifGpsMetadata.latitude.validator), - ("longitude", ApiExifGpsMetadata.longitude.validator), - ("altitude", ApiExifGpsMetadata.altitude.validator), - ("timestamp", ApiExifGpsMetadata.timestamp.validator), - ("datestamp", ApiExifGpsMetadata.datestamp.validator), + ('latitude', ApiExifGpsMetadata.latitude.validator), + ('longitude', ApiExifGpsMetadata.longitude.validator), + ('altitude', ApiExifGpsMetadata.altitude.validator), + ('timestamp', ApiExifGpsMetadata.timestamp.validator), + ('datestamp', ApiExifGpsMetadata.datestamp.validator), ] ApiExifMetadata.image_width.validator = bv.UInt32() @@ -2515,62 +2418,58 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ApiExifMetadata.artist.validator = bv.String() ApiExifMetadata.copyright.validator = bv.String() ApiExifMetadata.gps_metadata.validator = bv.Nullable(ApiExifGpsMetadata_validator) -ApiExifMetadata._all_field_names_ = set( - [ - "image_width", - "image_height", - "camera_make", - "camera_model", - "lens_model", - "date_time_original", - "offset_time_original", - "orientation", - "exposure_time", - "aperture_value", - "iso_speed", - "focal_length", - "megapixels", - "artist", - "copyright", - "gps_metadata", - ] -) +ApiExifMetadata._all_field_names_ = set([ + 'image_width', + 'image_height', + 'camera_make', + 'camera_model', + 'lens_model', + 'date_time_original', + 'offset_time_original', + 'orientation', + 'exposure_time', + 'aperture_value', + 'iso_speed', + 'focal_length', + 'megapixels', + 'artist', + 'copyright', + 'gps_metadata', +]) ApiExifMetadata._all_fields_ = [ - ("image_width", ApiExifMetadata.image_width.validator), - ("image_height", ApiExifMetadata.image_height.validator), - ("camera_make", ApiExifMetadata.camera_make.validator), - ("camera_model", ApiExifMetadata.camera_model.validator), - ("lens_model", ApiExifMetadata.lens_model.validator), - ("date_time_original", ApiExifMetadata.date_time_original.validator), - ("offset_time_original", ApiExifMetadata.offset_time_original.validator), - ("orientation", ApiExifMetadata.orientation.validator), - ("exposure_time", ApiExifMetadata.exposure_time.validator), - ("aperture_value", ApiExifMetadata.aperture_value.validator), - ("iso_speed", ApiExifMetadata.iso_speed.validator), - ("focal_length", ApiExifMetadata.focal_length.validator), - ("megapixels", ApiExifMetadata.megapixels.validator), - ("artist", ApiExifMetadata.artist.validator), - ("copyright", ApiExifMetadata.copyright.validator), - ("gps_metadata", ApiExifMetadata.gps_metadata.validator), + ('image_width', ApiExifMetadata.image_width.validator), + ('image_height', ApiExifMetadata.image_height.validator), + ('camera_make', ApiExifMetadata.camera_make.validator), + ('camera_model', ApiExifMetadata.camera_model.validator), + ('lens_model', ApiExifMetadata.lens_model.validator), + ('date_time_original', ApiExifMetadata.date_time_original.validator), + ('offset_time_original', ApiExifMetadata.offset_time_original.validator), + ('orientation', ApiExifMetadata.orientation.validator), + ('exposure_time', ApiExifMetadata.exposure_time.validator), + ('aperture_value', ApiExifMetadata.aperture_value.validator), + ('iso_speed', ApiExifMetadata.iso_speed.validator), + ('focal_length', ApiExifMetadata.focal_length.validator), + ('megapixels', ApiExifMetadata.megapixels.validator), + ('artist', ApiExifMetadata.artist.validator), + ('copyright', ApiExifMetadata.copyright.validator), + ('gps_metadata', ApiExifMetadata.gps_metadata.validator), ] ApiMediaMetadata.bitrate_bps.validator = bv.UInt64() ApiMediaMetadata.duration_s.validator = bv.Float64() ApiMediaMetadata.creation_time.validator = bv.String() ApiMediaMetadata.streams.validator = bv.Nullable(bv.List(ApiMediaStream_validator)) -ApiMediaMetadata._all_field_names_ = set( - [ - "bitrate_bps", - "duration_s", - "creation_time", - "streams", - ] -) +ApiMediaMetadata._all_field_names_ = set([ + 'bitrate_bps', + 'duration_s', + 'creation_time', + 'streams', +]) ApiMediaMetadata._all_fields_ = [ - ("bitrate_bps", ApiMediaMetadata.bitrate_bps.validator), - ("duration_s", ApiMediaMetadata.duration_s.validator), - ("creation_time", ApiMediaMetadata.creation_time.validator), - ("streams", ApiMediaMetadata.streams.validator), + ('bitrate_bps', ApiMediaMetadata.bitrate_bps.validator), + ('duration_s', ApiMediaMetadata.duration_s.validator), + ('creation_time', ApiMediaMetadata.creation_time.validator), + ('streams', ApiMediaMetadata.streams.validator), ] ApiMediaStream.index.validator = bv.UInt32() @@ -2587,39 +2486,37 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ApiMediaStream.channel_layout.validator = bv.String() ApiMediaStream.sample_rate_s.validator = bv.UInt64() ApiMediaStream.language_iso_639.validator = bv.String() -ApiMediaStream._all_field_names_ = set( - [ - "index", - "codec_type", - "codec_name", - "bitrate_bps", - "duration_s", - "width", - "height", - "frames_per_second", - "rotation", - "display_aspect_ratio", - "channels", - "channel_layout", - "sample_rate_s", - "language_iso_639", - ] -) +ApiMediaStream._all_field_names_ = set([ + 'index', + 'codec_type', + 'codec_name', + 'bitrate_bps', + 'duration_s', + 'width', + 'height', + 'frames_per_second', + 'rotation', + 'display_aspect_ratio', + 'channels', + 'channel_layout', + 'sample_rate_s', + 'language_iso_639', +]) ApiMediaStream._all_fields_ = [ - ("index", ApiMediaStream.index.validator), - ("codec_type", ApiMediaStream.codec_type.validator), - ("codec_name", ApiMediaStream.codec_name.validator), - ("bitrate_bps", ApiMediaStream.bitrate_bps.validator), - ("duration_s", ApiMediaStream.duration_s.validator), - ("width", ApiMediaStream.width.validator), - ("height", ApiMediaStream.height.validator), - ("frames_per_second", ApiMediaStream.frames_per_second.validator), - ("rotation", ApiMediaStream.rotation.validator), - ("display_aspect_ratio", ApiMediaStream.display_aspect_ratio.validator), - ("channels", ApiMediaStream.channels.validator), - ("channel_layout", ApiMediaStream.channel_layout.validator), - ("sample_rate_s", ApiMediaStream.sample_rate_s.validator), - ("language_iso_639", ApiMediaStream.language_iso_639.validator), + ('index', ApiMediaStream.index.validator), + ('codec_type', ApiMediaStream.codec_type.validator), + ('codec_name', ApiMediaStream.codec_name.validator), + ('bitrate_bps', ApiMediaStream.bitrate_bps.validator), + ('duration_s', ApiMediaStream.duration_s.validator), + ('width', ApiMediaStream.width.validator), + ('height', ApiMediaStream.height.validator), + ('frames_per_second', ApiMediaStream.frames_per_second.validator), + ('rotation', ApiMediaStream.rotation.validator), + ('display_aspect_ratio', ApiMediaStream.display_aspect_ratio.validator), + ('channels', ApiMediaStream.channels.validator), + ('channel_layout', ApiMediaStream.channel_layout.validator), + ('sample_rate_s', ApiMediaStream.sample_rate_s.validator), + ('language_iso_639', ApiMediaStream.language_iso_639.validator), ] ApiOfficeMetadata.file_type.validator = OfficeFileType_validator @@ -2634,80 +2531,72 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ApiOfficeMetadata.words.validator = bv.UInt32() ApiOfficeMetadata.slides.validator = bv.UInt32() ApiOfficeMetadata.revision_number.validator = bv.String() -ApiOfficeMetadata._all_field_names_ = set( - [ - "file_type", - "creator", - "company", - "title", - "subject", - "keywords", - "description", - "total_edit_time_minutes", - "pages", - "words", - "slides", - "revision_number", - ] -) +ApiOfficeMetadata._all_field_names_ = set([ + 'file_type', + 'creator', + 'company', + 'title', + 'subject', + 'keywords', + 'description', + 'total_edit_time_minutes', + 'pages', + 'words', + 'slides', + 'revision_number', +]) ApiOfficeMetadata._all_fields_ = [ - ("file_type", ApiOfficeMetadata.file_type.validator), - ("creator", ApiOfficeMetadata.creator.validator), - ("company", ApiOfficeMetadata.company.validator), - ("title", ApiOfficeMetadata.title.validator), - ("subject", ApiOfficeMetadata.subject.validator), - ("keywords", ApiOfficeMetadata.keywords.validator), - ("description", ApiOfficeMetadata.description.validator), - ("total_edit_time_minutes", ApiOfficeMetadata.total_edit_time_minutes.validator), - ("pages", ApiOfficeMetadata.pages.validator), - ("words", ApiOfficeMetadata.words.validator), - ("slides", ApiOfficeMetadata.slides.validator), - ("revision_number", ApiOfficeMetadata.revision_number.validator), + ('file_type', ApiOfficeMetadata.file_type.validator), + ('creator', ApiOfficeMetadata.creator.validator), + ('company', ApiOfficeMetadata.company.validator), + ('title', ApiOfficeMetadata.title.validator), + ('subject', ApiOfficeMetadata.subject.validator), + ('keywords', ApiOfficeMetadata.keywords.validator), + ('description', ApiOfficeMetadata.description.validator), + ('total_edit_time_minutes', ApiOfficeMetadata.total_edit_time_minutes.validator), + ('pages', ApiOfficeMetadata.pages.validator), + ('words', ApiOfficeMetadata.words.validator), + ('slides', ApiOfficeMetadata.slides.validator), + ('revision_number', ApiOfficeMetadata.revision_number.validator), ] ApiPdfMetadata.pages.validator = bv.UInt32() ApiPdfMetadata.width.validator = bv.UInt32() ApiPdfMetadata.height.validator = bv.UInt32() -ApiPdfMetadata._all_field_names_ = set( - [ - "pages", - "width", - "height", - ] -) +ApiPdfMetadata._all_field_names_ = set([ + 'pages', + 'width', + 'height', +]) ApiPdfMetadata._all_fields_ = [ - ("pages", ApiPdfMetadata.pages.validator), - ("width", ApiPdfMetadata.width.validator), - ("height", ApiPdfMetadata.height.validator), + ('pages', ApiPdfMetadata.pages.validator), + ('width', ApiPdfMetadata.width.validator), + ('height', ApiPdfMetadata.height.validator), ] ApiStructuredTranscript.segments.validator = bv.Nullable(bv.List(ApiTranscriptSegment_validator)) ApiStructuredTranscript.transcript_locale.validator = bv.String() -ApiStructuredTranscript._all_field_names_ = set( - [ - "segments", - "transcript_locale", - ] -) +ApiStructuredTranscript._all_field_names_ = set([ + 'segments', + 'transcript_locale', +]) ApiStructuredTranscript._all_fields_ = [ - ("segments", ApiStructuredTranscript.segments.validator), - ("transcript_locale", ApiStructuredTranscript.transcript_locale.validator), + ('segments', ApiStructuredTranscript.segments.validator), + ('transcript_locale', ApiStructuredTranscript.transcript_locale.validator), ] ApiTranscriptSegment.text.validator = bv.String() ApiTranscriptSegment.start_time.validator = bv.Float64() ApiTranscriptSegment.end_time.validator = bv.Float64() -ApiTranscriptSegment._all_field_names_ = set( - [ - "text", - "start_time", - "end_time", - ] -) +ApiTranscriptSegment._all_field_names_ = set([ + 'text', + 'start_time', + 'end_time', +]) ApiTranscriptSegment._all_fields_ = [ - ("text", ApiTranscriptSegment.text.validator), - ("start_time", ApiTranscriptSegment.start_time.validator), - ("end_time", ApiTranscriptSegment.end_time.validator), + ('text', ApiTranscriptSegment.text.validator), + ('start_time', ApiTranscriptSegment.start_time.validator), + ('end_time', ApiTranscriptSegment.end_time.validator), ] ContentApiV2Error._server_error_validator = bv.String() @@ -2721,27 +2610,25 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ContentApiV2Error._is_a_folder_error_validator = bv.Void() ContentApiV2Error._other_validator = bv.Void() ContentApiV2Error._tagmap = { - "server_error": ContentApiV2Error._server_error_validator, - "user_error": ContentApiV2Error._user_error_validator, - "media_duration_error": ContentApiV2Error._media_duration_error_validator, - "no_audio_error": ContentApiV2Error._no_audio_error_validator, - "link_download_disabled_error": ContentApiV2Error._link_download_disabled_error_validator, - "shared_link_password_protected": ContentApiV2Error._shared_link_password_protected_validator, - "limit_exceeded_error": ContentApiV2Error._limit_exceeded_error_validator, - "not_found_error": ContentApiV2Error._not_found_error_validator, - "is_a_folder_error": ContentApiV2Error._is_a_folder_error_validator, - "other": ContentApiV2Error._other_validator, + 'server_error': ContentApiV2Error._server_error_validator, + 'user_error': ContentApiV2Error._user_error_validator, + 'media_duration_error': ContentApiV2Error._media_duration_error_validator, + 'no_audio_error': ContentApiV2Error._no_audio_error_validator, + 'link_download_disabled_error': ContentApiV2Error._link_download_disabled_error_validator, + 'shared_link_password_protected': ContentApiV2Error._shared_link_password_protected_validator, + 'limit_exceeded_error': ContentApiV2Error._limit_exceeded_error_validator, + 'not_found_error': ContentApiV2Error._not_found_error_validator, + 'is_a_folder_error': ContentApiV2Error._is_a_folder_error_validator, + 'other': ContentApiV2Error._other_validator, } -ContentApiV2Error.no_audio_error = ContentApiV2Error("no_audio_error") -ContentApiV2Error.link_download_disabled_error = ContentApiV2Error("link_download_disabled_error") -ContentApiV2Error.shared_link_password_protected = ContentApiV2Error( - "shared_link_password_protected" -) -ContentApiV2Error.limit_exceeded_error = ContentApiV2Error("limit_exceeded_error") -ContentApiV2Error.not_found_error = ContentApiV2Error("not_found_error") -ContentApiV2Error.is_a_folder_error = ContentApiV2Error("is_a_folder_error") -ContentApiV2Error.other = ContentApiV2Error("other") +ContentApiV2Error.no_audio_error = ContentApiV2Error('no_audio_error') +ContentApiV2Error.link_download_disabled_error = ContentApiV2Error('link_download_disabled_error') +ContentApiV2Error.shared_link_password_protected = ContentApiV2Error('shared_link_password_protected') +ContentApiV2Error.limit_exceeded_error = ContentApiV2Error('limit_exceeded_error') +ContentApiV2Error.not_found_error = ContentApiV2Error('not_found_error') +ContentApiV2Error.is_a_folder_error = ContentApiV2Error('is_a_folder_error') +ContentApiV2Error.other = ContentApiV2Error('other') ErrorCode._unknown_error_validator = bv.Void() ErrorCode._bad_request_validator = bv.Void() @@ -2751,50 +2638,48 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ErrorCode._unavailable_validator = bv.Void() ErrorCode._other_validator = bv.Void() ErrorCode._tagmap = { - "unknown_error": ErrorCode._unknown_error_validator, - "bad_request": ErrorCode._bad_request_validator, - "api_error": ErrorCode._api_error_validator, - "access_error": ErrorCode._access_error_validator, - "ratelimit_error": ErrorCode._ratelimit_error_validator, - "unavailable": ErrorCode._unavailable_validator, - "other": ErrorCode._other_validator, + 'unknown_error': ErrorCode._unknown_error_validator, + 'bad_request': ErrorCode._bad_request_validator, + 'api_error': ErrorCode._api_error_validator, + 'access_error': ErrorCode._access_error_validator, + 'ratelimit_error': ErrorCode._ratelimit_error_validator, + 'unavailable': ErrorCode._unavailable_validator, + 'other': ErrorCode._other_validator, } -ErrorCode.unknown_error = ErrorCode("unknown_error") -ErrorCode.bad_request = ErrorCode("bad_request") -ErrorCode.api_error = ErrorCode("api_error") -ErrorCode.access_error = ErrorCode("access_error") -ErrorCode.ratelimit_error = ErrorCode("ratelimit_error") -ErrorCode.unavailable = ErrorCode("unavailable") -ErrorCode.other = ErrorCode("other") +ErrorCode.unknown_error = ErrorCode('unknown_error') +ErrorCode.bad_request = ErrorCode('bad_request') +ErrorCode.api_error = ErrorCode('api_error') +ErrorCode.access_error = ErrorCode('access_error') +ErrorCode.ratelimit_error = ErrorCode('ratelimit_error') +ErrorCode.unavailable = ErrorCode('unavailable') +ErrorCode.other = ErrorCode('other') FileIdOrUrl._file_id_validator = bv.String() FileIdOrUrl._url_validator = bv.String() FileIdOrUrl._path_validator = bv.String() FileIdOrUrl._other_validator = bv.Void() FileIdOrUrl._tagmap = { - "file_id": FileIdOrUrl._file_id_validator, - "url": FileIdOrUrl._url_validator, - "path": FileIdOrUrl._path_validator, - "other": FileIdOrUrl._other_validator, + 'file_id': FileIdOrUrl._file_id_validator, + 'url': FileIdOrUrl._url_validator, + 'path': FileIdOrUrl._path_validator, + 'other': FileIdOrUrl._other_validator, } -FileIdOrUrl.other = FileIdOrUrl("other") +FileIdOrUrl.other = FileIdOrUrl('other') GetMarkdownArgs.file_id_or_url.validator = bv.Nullable(FileIdOrUrl_validator) GetMarkdownArgs.enable_ocr.validator = bv.Boolean() GetMarkdownArgs.embed_images.validator = bv.Boolean() -GetMarkdownArgs._all_field_names_ = set( - [ - "file_id_or_url", - "enable_ocr", - "embed_images", - ] -) +GetMarkdownArgs._all_field_names_ = set([ + 'file_id_or_url', + 'enable_ocr', + 'embed_images', +]) GetMarkdownArgs._all_fields_ = [ - ("file_id_or_url", GetMarkdownArgs.file_id_or_url.validator), - ("enable_ocr", GetMarkdownArgs.enable_ocr.validator), - ("embed_images", GetMarkdownArgs.embed_images.validator), + ('file_id_or_url', GetMarkdownArgs.file_id_or_url.validator), + ('enable_ocr', GetMarkdownArgs.enable_ocr.validator), + ('embed_images', GetMarkdownArgs.embed_images.validator), ] GetMarkdownAsyncCheckResult._in_progress_validator = bv.Void() @@ -2802,93 +2687,85 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): GetMarkdownAsyncCheckResult._failed_validator = GetMarkdownAsyncError_validator GetMarkdownAsyncCheckResult._other_validator = bv.Void() GetMarkdownAsyncCheckResult._tagmap = { - "in_progress": GetMarkdownAsyncCheckResult._in_progress_validator, - "complete": GetMarkdownAsyncCheckResult._complete_validator, - "failed": GetMarkdownAsyncCheckResult._failed_validator, - "other": GetMarkdownAsyncCheckResult._other_validator, + 'in_progress': GetMarkdownAsyncCheckResult._in_progress_validator, + 'complete': GetMarkdownAsyncCheckResult._complete_validator, + 'failed': GetMarkdownAsyncCheckResult._failed_validator, + 'other': GetMarkdownAsyncCheckResult._other_validator, } -GetMarkdownAsyncCheckResult.in_progress = GetMarkdownAsyncCheckResult("in_progress") -GetMarkdownAsyncCheckResult.other = GetMarkdownAsyncCheckResult("other") +GetMarkdownAsyncCheckResult.in_progress = GetMarkdownAsyncCheckResult('in_progress') +GetMarkdownAsyncCheckResult.other = GetMarkdownAsyncCheckResult('other') GetMarkdownAsyncError.error_code.validator = ErrorCode_validator GetMarkdownAsyncError.error_details.validator = bv.Nullable(MarkdownConversionApiV2Error_validator) -GetMarkdownAsyncError._all_field_names_ = set( - [ - "error_code", - "error_details", - ] -) +GetMarkdownAsyncError._all_field_names_ = set([ + 'error_code', + 'error_details', +]) GetMarkdownAsyncError._all_fields_ = [ - ("error_code", GetMarkdownAsyncError.error_code.validator), - ("error_details", GetMarkdownAsyncError.error_details.validator), + ('error_code', GetMarkdownAsyncError.error_code.validator), + ('error_details', GetMarkdownAsyncError.error_details.validator), ] GetMarkdownResult.markdown.validator = bv.String() -GetMarkdownResult._all_field_names_ = set(["markdown"]) -GetMarkdownResult._all_fields_ = [("markdown", GetMarkdownResult.markdown.validator)] +GetMarkdownResult._all_field_names_ = set(['markdown']) +GetMarkdownResult._all_fields_ = [('markdown', GetMarkdownResult.markdown.validator)] GetMetadataArgs.file_id_or_url.validator = bv.Nullable(FileIdOrUrl_validator) -GetMetadataArgs._all_field_names_ = set(["file_id_or_url"]) -GetMetadataArgs._all_fields_ = [("file_id_or_url", GetMetadataArgs.file_id_or_url.validator)] +GetMetadataArgs._all_field_names_ = set(['file_id_or_url']) +GetMetadataArgs._all_fields_ = [('file_id_or_url', GetMetadataArgs.file_id_or_url.validator)] GetMetadataAsyncCheckResult._in_progress_validator = bv.Void() GetMetadataAsyncCheckResult._complete_validator = GetMetadataResult_validator GetMetadataAsyncCheckResult._failed_validator = GetMetadataAsyncError_validator GetMetadataAsyncCheckResult._other_validator = bv.Void() GetMetadataAsyncCheckResult._tagmap = { - "in_progress": GetMetadataAsyncCheckResult._in_progress_validator, - "complete": GetMetadataAsyncCheckResult._complete_validator, - "failed": GetMetadataAsyncCheckResult._failed_validator, - "other": GetMetadataAsyncCheckResult._other_validator, + 'in_progress': GetMetadataAsyncCheckResult._in_progress_validator, + 'complete': GetMetadataAsyncCheckResult._complete_validator, + 'failed': GetMetadataAsyncCheckResult._failed_validator, + 'other': GetMetadataAsyncCheckResult._other_validator, } -GetMetadataAsyncCheckResult.in_progress = GetMetadataAsyncCheckResult("in_progress") -GetMetadataAsyncCheckResult.other = GetMetadataAsyncCheckResult("other") +GetMetadataAsyncCheckResult.in_progress = GetMetadataAsyncCheckResult('in_progress') +GetMetadataAsyncCheckResult.other = GetMetadataAsyncCheckResult('other') GetMetadataAsyncError.error_code.validator = ErrorCode_validator GetMetadataAsyncError.error_details.validator = bv.Nullable(MetadataExtractionApiV2Error_validator) -GetMetadataAsyncError._all_field_names_ = set( - [ - "error_code", - "error_details", - ] -) +GetMetadataAsyncError._all_field_names_ = set([ + 'error_code', + 'error_details', +]) GetMetadataAsyncError._all_fields_ = [ - ("error_code", GetMetadataAsyncError.error_code.validator), - ("error_details", GetMetadataAsyncError.error_details.validator), + ('error_code', GetMetadataAsyncError.error_code.validator), + ('error_details', GetMetadataAsyncError.error_details.validator), ] GetMetadataResult.metadata_type.validator = MetadataType_validator GetMetadataResult.metadata.validator = bv.Nullable(MetadataUnion_validator) -GetMetadataResult._all_field_names_ = set( - [ - "metadata_type", - "metadata", - ] -) +GetMetadataResult._all_field_names_ = set([ + 'metadata_type', + 'metadata', +]) GetMetadataResult._all_fields_ = [ - ("metadata_type", GetMetadataResult.metadata_type.validator), - ("metadata", GetMetadataResult.metadata.validator), + ('metadata_type', GetMetadataResult.metadata_type.validator), + ('metadata', GetMetadataResult.metadata.validator), ] GetTranscriptArgs.file_id_or_url.validator = bv.Nullable(FileIdOrUrl_validator) GetTranscriptArgs.timestamp_level.validator = TimestampLevel_validator GetTranscriptArgs.included_special_words.validator = bv.String() GetTranscriptArgs.audio_language.validator = bv.String() -GetTranscriptArgs._all_field_names_ = set( - [ - "file_id_or_url", - "timestamp_level", - "included_special_words", - "audio_language", - ] -) +GetTranscriptArgs._all_field_names_ = set([ + 'file_id_or_url', + 'timestamp_level', + 'included_special_words', + 'audio_language', +]) GetTranscriptArgs._all_fields_ = [ - ("file_id_or_url", GetTranscriptArgs.file_id_or_url.validator), - ("timestamp_level", GetTranscriptArgs.timestamp_level.validator), - ("included_special_words", GetTranscriptArgs.included_special_words.validator), - ("audio_language", GetTranscriptArgs.audio_language.validator), + ('file_id_or_url', GetTranscriptArgs.file_id_or_url.validator), + ('timestamp_level', GetTranscriptArgs.timestamp_level.validator), + ('included_special_words', GetTranscriptArgs.included_special_words.validator), + ('audio_language', GetTranscriptArgs.audio_language.validator), ] GetTranscriptAsyncCheckResult._in_progress_validator = bv.Void() @@ -2896,33 +2773,29 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): GetTranscriptAsyncCheckResult._failed_validator = GetTranscriptAsyncError_validator GetTranscriptAsyncCheckResult._other_validator = bv.Void() GetTranscriptAsyncCheckResult._tagmap = { - "in_progress": GetTranscriptAsyncCheckResult._in_progress_validator, - "complete": GetTranscriptAsyncCheckResult._complete_validator, - "failed": GetTranscriptAsyncCheckResult._failed_validator, - "other": GetTranscriptAsyncCheckResult._other_validator, + 'in_progress': GetTranscriptAsyncCheckResult._in_progress_validator, + 'complete': GetTranscriptAsyncCheckResult._complete_validator, + 'failed': GetTranscriptAsyncCheckResult._failed_validator, + 'other': GetTranscriptAsyncCheckResult._other_validator, } -GetTranscriptAsyncCheckResult.in_progress = GetTranscriptAsyncCheckResult("in_progress") -GetTranscriptAsyncCheckResult.other = GetTranscriptAsyncCheckResult("other") +GetTranscriptAsyncCheckResult.in_progress = GetTranscriptAsyncCheckResult('in_progress') +GetTranscriptAsyncCheckResult.other = GetTranscriptAsyncCheckResult('other') GetTranscriptAsyncError.error_code.validator = ErrorCode_validator GetTranscriptAsyncError.error_details.validator = bv.Nullable(ContentApiV2Error_validator) -GetTranscriptAsyncError._all_field_names_ = set( - [ - "error_code", - "error_details", - ] -) +GetTranscriptAsyncError._all_field_names_ = set([ + 'error_code', + 'error_details', +]) GetTranscriptAsyncError._all_fields_ = [ - ("error_code", GetTranscriptAsyncError.error_code.validator), - ("error_details", GetTranscriptAsyncError.error_details.validator), + ('error_code', GetTranscriptAsyncError.error_code.validator), + ('error_details', GetTranscriptAsyncError.error_details.validator), ] GetTranscriptResult.structured_transcript.validator = bv.Nullable(ApiStructuredTranscript_validator) -GetTranscriptResult._all_field_names_ = set(["structured_transcript"]) -GetTranscriptResult._all_fields_ = [ - ("structured_transcript", GetTranscriptResult.structured_transcript.validator) -] +GetTranscriptResult._all_field_names_ = set(['structured_transcript']) +GetTranscriptResult._all_fields_ = [('structured_transcript', GetTranscriptResult.structured_transcript.validator)] MarkdownConversionApiV2Error._server_error_validator = bv.String() MarkdownConversionApiV2Error._user_error_validator = bv.String() @@ -2935,40 +2808,30 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): MarkdownConversionApiV2Error._is_a_folder_error_validator = bv.Void() MarkdownConversionApiV2Error._other_validator = bv.Void() MarkdownConversionApiV2Error._tagmap = { - "server_error": MarkdownConversionApiV2Error._server_error_validator, - "user_error": MarkdownConversionApiV2Error._user_error_validator, - "unsupported_format_error": MarkdownConversionApiV2Error._unsupported_format_error_validator, - "link_download_disabled_error": MarkdownConversionApiV2Error._link_download_disabled_error_validator, - "shared_link_password_protected": MarkdownConversionApiV2Error._shared_link_password_protected_validator, - "limit_exceeded_error": MarkdownConversionApiV2Error._limit_exceeded_error_validator, - "conversion_failure_error": MarkdownConversionApiV2Error._conversion_failure_error_validator, - "not_found_error": MarkdownConversionApiV2Error._not_found_error_validator, - "is_a_folder_error": MarkdownConversionApiV2Error._is_a_folder_error_validator, - "other": MarkdownConversionApiV2Error._other_validator, + 'server_error': MarkdownConversionApiV2Error._server_error_validator, + 'user_error': MarkdownConversionApiV2Error._user_error_validator, + 'unsupported_format_error': MarkdownConversionApiV2Error._unsupported_format_error_validator, + 'link_download_disabled_error': MarkdownConversionApiV2Error._link_download_disabled_error_validator, + 'shared_link_password_protected': MarkdownConversionApiV2Error._shared_link_password_protected_validator, + 'limit_exceeded_error': MarkdownConversionApiV2Error._limit_exceeded_error_validator, + 'conversion_failure_error': MarkdownConversionApiV2Error._conversion_failure_error_validator, + 'not_found_error': MarkdownConversionApiV2Error._not_found_error_validator, + 'is_a_folder_error': MarkdownConversionApiV2Error._is_a_folder_error_validator, + 'other': MarkdownConversionApiV2Error._other_validator, } -MarkdownConversionApiV2Error.unsupported_format_error = MarkdownConversionApiV2Error( - "unsupported_format_error" -) -MarkdownConversionApiV2Error.link_download_disabled_error = MarkdownConversionApiV2Error( - "link_download_disabled_error" -) -MarkdownConversionApiV2Error.shared_link_password_protected = MarkdownConversionApiV2Error( - "shared_link_password_protected" -) -MarkdownConversionApiV2Error.limit_exceeded_error = MarkdownConversionApiV2Error( - "limit_exceeded_error" -) -MarkdownConversionApiV2Error.conversion_failure_error = MarkdownConversionApiV2Error( - "conversion_failure_error" -) -MarkdownConversionApiV2Error.not_found_error = MarkdownConversionApiV2Error("not_found_error") -MarkdownConversionApiV2Error.is_a_folder_error = MarkdownConversionApiV2Error("is_a_folder_error") -MarkdownConversionApiV2Error.other = MarkdownConversionApiV2Error("other") +MarkdownConversionApiV2Error.unsupported_format_error = MarkdownConversionApiV2Error('unsupported_format_error') +MarkdownConversionApiV2Error.link_download_disabled_error = MarkdownConversionApiV2Error('link_download_disabled_error') +MarkdownConversionApiV2Error.shared_link_password_protected = MarkdownConversionApiV2Error('shared_link_password_protected') +MarkdownConversionApiV2Error.limit_exceeded_error = MarkdownConversionApiV2Error('limit_exceeded_error') +MarkdownConversionApiV2Error.conversion_failure_error = MarkdownConversionApiV2Error('conversion_failure_error') +MarkdownConversionApiV2Error.not_found_error = MarkdownConversionApiV2Error('not_found_error') +MarkdownConversionApiV2Error.is_a_folder_error = MarkdownConversionApiV2Error('is_a_folder_error') +MarkdownConversionApiV2Error.other = MarkdownConversionApiV2Error('other') MediaDurationError.limit.validator = bv.Int32() -MediaDurationError._all_field_names_ = set(["limit"]) -MediaDurationError._all_fields_ = [("limit", MediaDurationError.limit.validator)] +MediaDurationError._all_field_names_ = set(['limit']) +MediaDurationError._all_fields_ = [('limit', MediaDurationError.limit.validator)] MetadataExtractionApiV2Error._server_error_validator = bv.String() MetadataExtractionApiV2Error._user_error_validator = bv.String() @@ -2981,36 +2844,26 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): MetadataExtractionApiV2Error._is_a_folder_error_validator = bv.Void() MetadataExtractionApiV2Error._other_validator = bv.Void() MetadataExtractionApiV2Error._tagmap = { - "server_error": MetadataExtractionApiV2Error._server_error_validator, - "user_error": MetadataExtractionApiV2Error._user_error_validator, - "unsupported_format_error": MetadataExtractionApiV2Error._unsupported_format_error_validator, - "link_download_disabled_error": MetadataExtractionApiV2Error._link_download_disabled_error_validator, - "shared_link_password_protected": MetadataExtractionApiV2Error._shared_link_password_protected_validator, - "limit_exceeded_error": MetadataExtractionApiV2Error._limit_exceeded_error_validator, - "conversion_failure_error": MetadataExtractionApiV2Error._conversion_failure_error_validator, - "not_found_error": MetadataExtractionApiV2Error._not_found_error_validator, - "is_a_folder_error": MetadataExtractionApiV2Error._is_a_folder_error_validator, - "other": MetadataExtractionApiV2Error._other_validator, + 'server_error': MetadataExtractionApiV2Error._server_error_validator, + 'user_error': MetadataExtractionApiV2Error._user_error_validator, + 'unsupported_format_error': MetadataExtractionApiV2Error._unsupported_format_error_validator, + 'link_download_disabled_error': MetadataExtractionApiV2Error._link_download_disabled_error_validator, + 'shared_link_password_protected': MetadataExtractionApiV2Error._shared_link_password_protected_validator, + 'limit_exceeded_error': MetadataExtractionApiV2Error._limit_exceeded_error_validator, + 'conversion_failure_error': MetadataExtractionApiV2Error._conversion_failure_error_validator, + 'not_found_error': MetadataExtractionApiV2Error._not_found_error_validator, + 'is_a_folder_error': MetadataExtractionApiV2Error._is_a_folder_error_validator, + 'other': MetadataExtractionApiV2Error._other_validator, } -MetadataExtractionApiV2Error.unsupported_format_error = MetadataExtractionApiV2Error( - "unsupported_format_error" -) -MetadataExtractionApiV2Error.link_download_disabled_error = MetadataExtractionApiV2Error( - "link_download_disabled_error" -) -MetadataExtractionApiV2Error.shared_link_password_protected = MetadataExtractionApiV2Error( - "shared_link_password_protected" -) -MetadataExtractionApiV2Error.limit_exceeded_error = MetadataExtractionApiV2Error( - "limit_exceeded_error" -) -MetadataExtractionApiV2Error.conversion_failure_error = MetadataExtractionApiV2Error( - "conversion_failure_error" -) -MetadataExtractionApiV2Error.not_found_error = MetadataExtractionApiV2Error("not_found_error") -MetadataExtractionApiV2Error.is_a_folder_error = MetadataExtractionApiV2Error("is_a_folder_error") -MetadataExtractionApiV2Error.other = MetadataExtractionApiV2Error("other") +MetadataExtractionApiV2Error.unsupported_format_error = MetadataExtractionApiV2Error('unsupported_format_error') +MetadataExtractionApiV2Error.link_download_disabled_error = MetadataExtractionApiV2Error('link_download_disabled_error') +MetadataExtractionApiV2Error.shared_link_password_protected = MetadataExtractionApiV2Error('shared_link_password_protected') +MetadataExtractionApiV2Error.limit_exceeded_error = MetadataExtractionApiV2Error('limit_exceeded_error') +MetadataExtractionApiV2Error.conversion_failure_error = MetadataExtractionApiV2Error('conversion_failure_error') +MetadataExtractionApiV2Error.not_found_error = MetadataExtractionApiV2Error('not_found_error') +MetadataExtractionApiV2Error.is_a_folder_error = MetadataExtractionApiV2Error('is_a_folder_error') +MetadataExtractionApiV2Error.other = MetadataExtractionApiV2Error('other') MetadataType._metadata_type_unknown_validator = bv.Void() MetadataType._metadata_type_exif_validator = bv.Void() @@ -3019,20 +2872,20 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): MetadataType._metadata_type_office_validator = bv.Void() MetadataType._other_validator = bv.Void() MetadataType._tagmap = { - "metadata_type_unknown": MetadataType._metadata_type_unknown_validator, - "metadata_type_exif": MetadataType._metadata_type_exif_validator, - "metadata_type_media": MetadataType._metadata_type_media_validator, - "metadata_type_pdf": MetadataType._metadata_type_pdf_validator, - "metadata_type_office": MetadataType._metadata_type_office_validator, - "other": MetadataType._other_validator, + 'metadata_type_unknown': MetadataType._metadata_type_unknown_validator, + 'metadata_type_exif': MetadataType._metadata_type_exif_validator, + 'metadata_type_media': MetadataType._metadata_type_media_validator, + 'metadata_type_pdf': MetadataType._metadata_type_pdf_validator, + 'metadata_type_office': MetadataType._metadata_type_office_validator, + 'other': MetadataType._other_validator, } -MetadataType.metadata_type_unknown = MetadataType("metadata_type_unknown") -MetadataType.metadata_type_exif = MetadataType("metadata_type_exif") -MetadataType.metadata_type_media = MetadataType("metadata_type_media") -MetadataType.metadata_type_pdf = MetadataType("metadata_type_pdf") -MetadataType.metadata_type_office = MetadataType("metadata_type_office") -MetadataType.other = MetadataType("other") +MetadataType.metadata_type_unknown = MetadataType('metadata_type_unknown') +MetadataType.metadata_type_exif = MetadataType('metadata_type_exif') +MetadataType.metadata_type_media = MetadataType('metadata_type_media') +MetadataType.metadata_type_pdf = MetadataType('metadata_type_pdf') +MetadataType.metadata_type_office = MetadataType('metadata_type_office') +MetadataType.other = MetadataType('other') OfficeFileType._office_filetype_unknown_validator = bv.Void() OfficeFileType._office_filetype_word_validator = bv.Void() @@ -3040,34 +2893,34 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): OfficeFileType._office_filetype_excel_validator = bv.Void() OfficeFileType._other_validator = bv.Void() OfficeFileType._tagmap = { - "office_filetype_unknown": OfficeFileType._office_filetype_unknown_validator, - "office_filetype_word": OfficeFileType._office_filetype_word_validator, - "office_filetype_powerpoint": OfficeFileType._office_filetype_powerpoint_validator, - "office_filetype_excel": OfficeFileType._office_filetype_excel_validator, - "other": OfficeFileType._other_validator, + 'office_filetype_unknown': OfficeFileType._office_filetype_unknown_validator, + 'office_filetype_word': OfficeFileType._office_filetype_word_validator, + 'office_filetype_powerpoint': OfficeFileType._office_filetype_powerpoint_validator, + 'office_filetype_excel': OfficeFileType._office_filetype_excel_validator, + 'other': OfficeFileType._other_validator, } -OfficeFileType.office_filetype_unknown = OfficeFileType("office_filetype_unknown") -OfficeFileType.office_filetype_word = OfficeFileType("office_filetype_word") -OfficeFileType.office_filetype_powerpoint = OfficeFileType("office_filetype_powerpoint") -OfficeFileType.office_filetype_excel = OfficeFileType("office_filetype_excel") -OfficeFileType.other = OfficeFileType("other") +OfficeFileType.office_filetype_unknown = OfficeFileType('office_filetype_unknown') +OfficeFileType.office_filetype_word = OfficeFileType('office_filetype_word') +OfficeFileType.office_filetype_powerpoint = OfficeFileType('office_filetype_powerpoint') +OfficeFileType.office_filetype_excel = OfficeFileType('office_filetype_excel') +OfficeFileType.other = OfficeFileType('other') TimestampLevel._unknown_validator = bv.Void() TimestampLevel._sentence_validator = bv.Void() TimestampLevel._word_validator = bv.Void() TimestampLevel._other_validator = bv.Void() TimestampLevel._tagmap = { - "unknown": TimestampLevel._unknown_validator, - "sentence": TimestampLevel._sentence_validator, - "word": TimestampLevel._word_validator, - "other": TimestampLevel._other_validator, + 'unknown': TimestampLevel._unknown_validator, + 'sentence': TimestampLevel._sentence_validator, + 'word': TimestampLevel._word_validator, + 'other': TimestampLevel._other_validator, } -TimestampLevel.unknown = TimestampLevel("unknown") -TimestampLevel.sentence = TimestampLevel("sentence") -TimestampLevel.word = TimestampLevel("word") -TimestampLevel.other = TimestampLevel("other") +TimestampLevel.unknown = TimestampLevel('unknown') +TimestampLevel.sentence = TimestampLevel('sentence') +TimestampLevel.word = TimestampLevel('word') +TimestampLevel.other = TimestampLevel('other') MetadataUnion._exif_validator = ApiExifMetadata_validator MetadataUnion._media_validator = ApiMediaMetadata_validator @@ -3075,142 +2928,155 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): MetadataUnion._office_validator = ApiOfficeMetadata_validator MetadataUnion._other_validator = bv.Void() MetadataUnion._tagmap = { - "exif": MetadataUnion._exif_validator, - "media": MetadataUnion._media_validator, - "pdf": MetadataUnion._pdf_validator, - "office": MetadataUnion._office_validator, - "other": MetadataUnion._other_validator, + 'exif': MetadataUnion._exif_validator, + 'media': MetadataUnion._media_validator, + 'pdf': MetadataUnion._pdf_validator, + 'office': MetadataUnion._office_validator, + 'other': MetadataUnion._other_validator, } -MetadataUnion.other = MetadataUnion("other") +MetadataUnion.other = MetadataUnion('other') ApiExifGpsMetadata.latitude.default = 0.0 ApiExifGpsMetadata.longitude.default = 0.0 -ApiExifGpsMetadata.altitude.default = "" -ApiExifGpsMetadata.timestamp.default = "" -ApiExifGpsMetadata.datestamp.default = "" +ApiExifGpsMetadata.altitude.default = '' +ApiExifGpsMetadata.timestamp.default = '' +ApiExifGpsMetadata.datestamp.default = '' ApiExifMetadata.image_width.default = 0 ApiExifMetadata.image_height.default = 0 -ApiExifMetadata.camera_make.default = "" -ApiExifMetadata.camera_model.default = "" -ApiExifMetadata.lens_model.default = "" -ApiExifMetadata.date_time_original.default = "" -ApiExifMetadata.offset_time_original.default = "" +ApiExifMetadata.camera_make.default = '' +ApiExifMetadata.camera_model.default = '' +ApiExifMetadata.lens_model.default = '' +ApiExifMetadata.date_time_original.default = '' +ApiExifMetadata.offset_time_original.default = '' ApiExifMetadata.orientation.default = 0 -ApiExifMetadata.exposure_time.default = "" +ApiExifMetadata.exposure_time.default = '' ApiExifMetadata.aperture_value.default = 0.0 ApiExifMetadata.iso_speed.default = 0 -ApiExifMetadata.focal_length.default = "" +ApiExifMetadata.focal_length.default = '' ApiExifMetadata.megapixels.default = 0.0 -ApiExifMetadata.artist.default = "" -ApiExifMetadata.copyright.default = "" +ApiExifMetadata.artist.default = '' +ApiExifMetadata.copyright.default = '' ApiMediaMetadata.bitrate_bps.default = 0 ApiMediaMetadata.duration_s.default = 0.0 -ApiMediaMetadata.creation_time.default = "" +ApiMediaMetadata.creation_time.default = '' ApiMediaStream.index.default = 0 -ApiMediaStream.codec_type.default = "" -ApiMediaStream.codec_name.default = "" +ApiMediaStream.codec_type.default = '' +ApiMediaStream.codec_name.default = '' ApiMediaStream.bitrate_bps.default = 0 ApiMediaStream.duration_s.default = 0.0 ApiMediaStream.width.default = 0 ApiMediaStream.height.default = 0 ApiMediaStream.frames_per_second.default = 0.0 ApiMediaStream.rotation.default = 0 -ApiMediaStream.display_aspect_ratio.default = "" +ApiMediaStream.display_aspect_ratio.default = '' ApiMediaStream.channels.default = 0 -ApiMediaStream.channel_layout.default = "" +ApiMediaStream.channel_layout.default = '' ApiMediaStream.sample_rate_s.default = 0 -ApiMediaStream.language_iso_639.default = "" +ApiMediaStream.language_iso_639.default = '' ApiOfficeMetadata.file_type.default = OfficeFileType.office_filetype_unknown -ApiOfficeMetadata.creator.default = "" -ApiOfficeMetadata.company.default = "" -ApiOfficeMetadata.title.default = "" -ApiOfficeMetadata.subject.default = "" -ApiOfficeMetadata.keywords.default = "" -ApiOfficeMetadata.description.default = "" +ApiOfficeMetadata.creator.default = '' +ApiOfficeMetadata.company.default = '' +ApiOfficeMetadata.title.default = '' +ApiOfficeMetadata.subject.default = '' +ApiOfficeMetadata.keywords.default = '' +ApiOfficeMetadata.description.default = '' ApiOfficeMetadata.total_edit_time_minutes.default = 0 ApiOfficeMetadata.pages.default = 0 ApiOfficeMetadata.words.default = 0 ApiOfficeMetadata.slides.default = 0 -ApiOfficeMetadata.revision_number.default = "" +ApiOfficeMetadata.revision_number.default = '' ApiPdfMetadata.pages.default = 0 ApiPdfMetadata.width.default = 0 ApiPdfMetadata.height.default = 0 -ApiStructuredTranscript.transcript_locale.default = "" -ApiTranscriptSegment.text.default = "" +ApiStructuredTranscript.transcript_locale.default = '' +ApiTranscriptSegment.text.default = '' ApiTranscriptSegment.start_time.default = 0.0 ApiTranscriptSegment.end_time.default = 0.0 GetMarkdownArgs.enable_ocr.default = False GetMarkdownArgs.embed_images.default = False GetMarkdownAsyncError.error_code.default = ErrorCode.unknown_error -GetMarkdownResult.markdown.default = "" +GetMarkdownResult.markdown.default = '' GetMetadataAsyncError.error_code.default = ErrorCode.unknown_error GetMetadataResult.metadata_type.default = MetadataType.metadata_type_unknown GetTranscriptArgs.timestamp_level.default = TimestampLevel.unknown -GetTranscriptArgs.included_special_words.default = "" -GetTranscriptArgs.audio_language.default = "" +GetTranscriptArgs.included_special_words.default = '' +GetTranscriptArgs.audio_language.default = '' GetTranscriptAsyncError.error_code.default = ErrorCode.unknown_error MediaDurationError.limit.default = 0 get_markdown_async = bb.Route( - "get_markdown_async", + 'get_markdown_async', 1, False, GetMarkdownArgs_validator, async_.LaunchResultBase_validator, bv.Void(), - {"auth": "app, user", "host": "api", "style": "rpc"}, + {'auth': 'app, user', + 'host': 'api', + 'style': 'rpc'}, ) get_markdown_async_check = bb.Route( - "get_markdown_async/check", + 'get_markdown_async/check', 1, False, async_.PollArg_validator, GetMarkdownAsyncCheckResult_validator, async_.PollError_validator, - {"auth": "app, user", "host": "api", "style": "rpc"}, + {'auth': 'app, user', + 'host': 'api', + 'style': 'rpc'}, ) get_metadata_async = bb.Route( - "get_metadata_async", + 'get_metadata_async', 1, False, GetMetadataArgs_validator, async_.LaunchResultBase_validator, bv.Void(), - {"auth": "app, user", "host": "api", "style": "rpc"}, + {'auth': 'app, user', + 'host': 'api', + 'style': 'rpc'}, ) get_metadata_async_check = bb.Route( - "get_metadata_async/check", + 'get_metadata_async/check', 1, False, async_.PollArg_validator, GetMetadataAsyncCheckResult_validator, async_.PollError_validator, - {"auth": "app, user", "host": "api", "style": "rpc"}, + {'auth': 'app, user', + 'host': 'api', + 'style': 'rpc'}, ) get_transcript_async = bb.Route( - "get_transcript_async", + 'get_transcript_async', 1, False, GetTranscriptArgs_validator, async_.LaunchResultBase_validator, bv.Void(), - {"auth": "app, user", "host": "api", "style": "rpc"}, + {'auth': 'app, user', + 'host': 'api', + 'style': 'rpc'}, ) get_transcript_async_check = bb.Route( - "get_transcript_async/check", + 'get_transcript_async/check', 1, False, async_.PollArg_validator, GetTranscriptAsyncCheckResult_validator, async_.PollError_validator, - {"auth": "app, user", "host": "api", "style": "rpc"}, + {'auth': 'app, user', + 'host': 'api', + 'style': 'rpc'}, ) ROUTES = { - "get_markdown_async": get_markdown_async, - "get_markdown_async/check": get_markdown_async_check, - "get_metadata_async": get_metadata_async, - "get_metadata_async/check": get_metadata_async_check, - "get_transcript_async": get_transcript_async, - "get_transcript_async/check": get_transcript_async_check, + 'get_markdown_async': get_markdown_async, + 'get_markdown_async/check': get_markdown_async_check, + 'get_metadata_async': get_metadata_async, + 'get_metadata_async/check': get_metadata_async_check, + 'get_transcript_async': get_transcript_async, + 'get_transcript_async/check': get_transcript_async_check, } + diff --git a/dropbox/secondary_emails.py b/dropbox/secondary_emails.py index 4cd77626..7517e677 100644 --- a/dropbox/secondary_emails.py +++ b/dropbox/secondary_emails.py @@ -9,7 +9,6 @@ from dropbox import common - class SecondaryEmail(bb.Struct): """ :ivar SecondaryEmail.email: @@ -20,13 +19,15 @@ class SecondaryEmail(bb.Struct): """ __slots__ = [ - "_email_value", - "_is_verified_value", + '_email_value', + '_is_verified_value', ] _has_required_fields = True - def __init__(self, email=None, is_verified=None): + def __init__(self, + email=None, + is_verified=None): self._email_value = bb.NOT_SET self._is_verified_value = bb.NOT_SET if email is not None: @@ -41,24 +42,21 @@ def __init__(self, email=None, is_verified=None): is_verified = bb.Attribute("is_verified") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SecondaryEmail, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SecondaryEmail, self)._process_custom_annotations(annotation_type, field_path, processor) SecondaryEmail_validator = bv.Struct(SecondaryEmail) SecondaryEmail.email.validator = common.EmailAddress_validator SecondaryEmail.is_verified.validator = bv.Boolean() -SecondaryEmail._all_field_names_ = set( - [ - "email", - "is_verified", - ] -) +SecondaryEmail._all_field_names_ = set([ + 'email', + 'is_verified', +]) SecondaryEmail._all_fields_ = [ - ("email", SecondaryEmail.email.validator), - ("is_verified", SecondaryEmail.is_verified.validator), + ('email', SecondaryEmail.email.validator), + ('is_verified', SecondaryEmail.is_verified.validator), ] -ROUTES = {} +ROUTES = { +} + diff --git a/dropbox/seen_state.py b/dropbox/seen_state.py index 04591a8d..de9b34b2 100644 --- a/dropbox/seen_state.py +++ b/dropbox/seen_state.py @@ -7,7 +7,6 @@ from stone.backends.python_rsrc import stone_base as bb from stone.backends.python_rsrc import stone_validators as bv - class PlatformType(bb.Union): """ Possible platforms on which a user may view content. @@ -33,7 +32,7 @@ class PlatformType(bb.Union): mobile_android instead. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition web = None # Attribute is overwritten below the class definition @@ -57,7 +56,7 @@ def is_web(self): :rtype: bool """ - return self._tag == "web" + return self._tag == 'web' def is_desktop(self): """ @@ -65,7 +64,7 @@ def is_desktop(self): :rtype: bool """ - return self._tag == "desktop" + return self._tag == 'desktop' def is_mobile_ios(self): """ @@ -73,7 +72,7 @@ def is_mobile_ios(self): :rtype: bool """ - return self._tag == "mobile_ios" + return self._tag == 'mobile_ios' def is_mobile_android(self): """ @@ -81,7 +80,7 @@ def is_mobile_android(self): :rtype: bool """ - return self._tag == "mobile_android" + return self._tag == 'mobile_android' def is_api(self): """ @@ -89,7 +88,7 @@ def is_api(self): :rtype: bool """ - return self._tag == "api" + return self._tag == 'api' def is_unknown(self): """ @@ -97,7 +96,7 @@ def is_unknown(self): :rtype: bool """ - return self._tag == "unknown" + return self._tag == 'unknown' def is_mobile(self): """ @@ -105,7 +104,7 @@ def is_mobile(self): :rtype: bool """ - return self._tag == "mobile" + return self._tag == 'mobile' def is_other(self): """ @@ -113,13 +112,10 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PlatformType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PlatformType, self)._process_custom_annotations(annotation_type, field_path, processor) PlatformType_validator = bv.Union(PlatformType) @@ -132,23 +128,25 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): PlatformType._mobile_validator = bv.Void() PlatformType._other_validator = bv.Void() PlatformType._tagmap = { - "web": PlatformType._web_validator, - "desktop": PlatformType._desktop_validator, - "mobile_ios": PlatformType._mobile_ios_validator, - "mobile_android": PlatformType._mobile_android_validator, - "api": PlatformType._api_validator, - "unknown": PlatformType._unknown_validator, - "mobile": PlatformType._mobile_validator, - "other": PlatformType._other_validator, + 'web': PlatformType._web_validator, + 'desktop': PlatformType._desktop_validator, + 'mobile_ios': PlatformType._mobile_ios_validator, + 'mobile_android': PlatformType._mobile_android_validator, + 'api': PlatformType._api_validator, + 'unknown': PlatformType._unknown_validator, + 'mobile': PlatformType._mobile_validator, + 'other': PlatformType._other_validator, } -PlatformType.web = PlatformType("web") -PlatformType.desktop = PlatformType("desktop") -PlatformType.mobile_ios = PlatformType("mobile_ios") -PlatformType.mobile_android = PlatformType("mobile_android") -PlatformType.api = PlatformType("api") -PlatformType.unknown = PlatformType("unknown") -PlatformType.mobile = PlatformType("mobile") -PlatformType.other = PlatformType("other") +PlatformType.web = PlatformType('web') +PlatformType.desktop = PlatformType('desktop') +PlatformType.mobile_ios = PlatformType('mobile_ios') +PlatformType.mobile_android = PlatformType('mobile_android') +PlatformType.api = PlatformType('api') +PlatformType.unknown = PlatformType('unknown') +PlatformType.mobile = PlatformType('mobile') +PlatformType.other = PlatformType('other') + +ROUTES = { +} -ROUTES = {} diff --git a/dropbox/sharing.py b/dropbox/sharing.py index 6c7825d8..a2959a63 100644 --- a/dropbox/sharing.py +++ b/dropbox/sharing.py @@ -20,7 +20,6 @@ from dropbox import users from dropbox import users_common - class AccessInheritance(bb.Union): """ Information about the inheritance policy of a shared folder. @@ -35,7 +34,7 @@ class AccessInheritance(bb.Union): The shared folder does not inherit its members from the parent folder. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition inherit = None # Attribute is overwritten below the class definition @@ -49,7 +48,7 @@ def is_inherit(self): :rtype: bool """ - return self._tag == "inherit" + return self._tag == 'inherit' def is_no_inherit(self): """ @@ -57,7 +56,7 @@ def is_no_inherit(self): :rtype: bool """ - return self._tag == "no_inherit" + return self._tag == 'no_inherit' def is_other(self): """ @@ -65,17 +64,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AccessInheritance, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AccessInheritance, self)._process_custom_annotations(annotation_type, field_path, processor) AccessInheritance_validator = bv.Union(AccessInheritance) - class AccessLevel(bb.Union): """ Defines the access levels for collaborators. @@ -105,7 +100,7 @@ class AccessLevel(bb.Union): user themselves are not a member on the shared folder yet. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition owner = None # Attribute is overwritten below the class definition @@ -127,7 +122,7 @@ def is_owner(self): :rtype: bool """ - return self._tag == "owner" + return self._tag == 'owner' def is_editor(self): """ @@ -135,7 +130,7 @@ def is_editor(self): :rtype: bool """ - return self._tag == "editor" + return self._tag == 'editor' def is_viewer(self): """ @@ -143,7 +138,7 @@ def is_viewer(self): :rtype: bool """ - return self._tag == "viewer" + return self._tag == 'viewer' def is_viewer_no_comment(self): """ @@ -151,7 +146,7 @@ def is_viewer_no_comment(self): :rtype: bool """ - return self._tag == "viewer_no_comment" + return self._tag == 'viewer_no_comment' def is_traverse(self): """ @@ -159,7 +154,7 @@ def is_traverse(self): :rtype: bool """ - return self._tag == "traverse" + return self._tag == 'traverse' def is_no_access(self): """ @@ -167,7 +162,7 @@ def is_no_access(self): :rtype: bool """ - return self._tag == "no_access" + return self._tag == 'no_access' def is_other(self): """ @@ -175,15 +170,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): super(AccessLevel, self)._process_custom_annotations(annotation_type, field_path, processor) - AccessLevel_validator = bv.Union(AccessLevel) - class AclUpdatePolicy(bb.Union): """ Who can change a shared folder's access control list (ACL). In other words, @@ -200,7 +193,7 @@ class AclUpdatePolicy(bb.Union): on the same team. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition owner = None # Attribute is overwritten below the class definition @@ -214,7 +207,7 @@ def is_owner(self): :rtype: bool """ - return self._tag == "owner" + return self._tag == 'owner' def is_editors(self): """ @@ -222,7 +215,7 @@ def is_editors(self): :rtype: bool """ - return self._tag == "editors" + return self._tag == 'editors' def is_other(self): """ @@ -230,17 +223,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AclUpdatePolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AclUpdatePolicy, self)._process_custom_annotations(annotation_type, field_path, processor) AclUpdatePolicy_validator = bv.Union(AclUpdatePolicy) - class AddFileMemberArgs(bb.Struct): """ Arguments for @@ -269,27 +258,25 @@ class AddFileMemberArgs(bb.Struct): """ __slots__ = [ - "_file_value", - "_members_value", - "_custom_message_value", - "_quiet_value", - "_access_level_value", - "_add_message_as_comment_value", - "_fp_sealed_result_value", + '_file_value', + '_members_value', + '_custom_message_value', + '_quiet_value', + '_access_level_value', + '_add_message_as_comment_value', + '_fp_sealed_result_value', ] _has_required_fields = True - def __init__( - self, - file=None, - members=None, - custom_message=None, - quiet=None, - access_level=None, - add_message_as_comment=None, - fp_sealed_result=None, - ): + def __init__(self, + file=None, + members=None, + custom_message=None, + quiet=None, + access_level=None, + add_message_as_comment=None, + fp_sealed_result=None): self._file_value = bb.NOT_SET self._members_value = bb.NOT_SET self._custom_message_value = bb.NOT_SET @@ -334,14 +321,10 @@ def __init__( fp_sealed_result = bb.Attribute("fp_sealed_result", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AddFileMemberArgs, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AddFileMemberArgs, self)._process_custom_annotations(annotation_type, field_path, processor) AddFileMemberArgs_validator = bv.Struct(AddFileMemberArgs) - class AddFileMemberError(bb.Union): """ Errors for :meth:`dropbox.dropbox_client.Dropbox.sharing_add_file_member`. @@ -358,7 +341,7 @@ class AddFileMemberError(bb.Union): The current user has been banned for abuse reasons. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition rate_limit = None # Attribute is overwritten below the class definition @@ -377,7 +360,7 @@ def user_error(cls, val): :param SharingUserError val: :rtype: AddFileMemberError """ - return cls("user_error", val) + return cls('user_error', val) @classmethod def access_error(cls, val): @@ -388,7 +371,7 @@ def access_error(cls, val): :param SharingFileAccessError val: :rtype: AddFileMemberError """ - return cls("access_error", val) + return cls('access_error', val) def is_user_error(self): """ @@ -396,7 +379,7 @@ def is_user_error(self): :rtype: bool """ - return self._tag == "user_error" + return self._tag == 'user_error' def is_access_error(self): """ @@ -404,7 +387,7 @@ def is_access_error(self): :rtype: bool """ - return self._tag == "access_error" + return self._tag == 'access_error' def is_rate_limit(self): """ @@ -412,7 +395,7 @@ def is_rate_limit(self): :rtype: bool """ - return self._tag == "rate_limit" + return self._tag == 'rate_limit' def is_invalid_comment(self): """ @@ -420,7 +403,7 @@ def is_invalid_comment(self): :rtype: bool """ - return self._tag == "invalid_comment" + return self._tag == 'invalid_comment' def is_banned_member(self): """ @@ -428,7 +411,7 @@ def is_banned_member(self): :rtype: bool """ - return self._tag == "banned_member" + return self._tag == 'banned_member' def is_other(self): """ @@ -436,7 +419,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_user_error(self): """ @@ -459,14 +442,10 @@ def get_access_error(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AddFileMemberError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AddFileMemberError, self)._process_custom_annotations(annotation_type, field_path, processor) AddFileMemberError_validator = bv.Union(AddFileMemberError) - class AddFolderMemberArg(bb.Struct): """ :ivar AddFolderMemberArg.shared_folder_id: @@ -485,23 +464,21 @@ class AddFolderMemberArg(bb.Struct): """ __slots__ = [ - "_shared_folder_id_value", - "_members_value", - "_quiet_value", - "_custom_message_value", - "_fp_sealed_result_value", + '_shared_folder_id_value', + '_members_value', + '_quiet_value', + '_custom_message_value', + '_fp_sealed_result_value', ] _has_required_fields = True - def __init__( - self, - shared_folder_id=None, - members=None, - quiet=None, - custom_message=None, - fp_sealed_result=None, - ): + def __init__(self, + shared_folder_id=None, + members=None, + quiet=None, + custom_message=None, + fp_sealed_result=None): self._shared_folder_id_value = bb.NOT_SET self._members_value = bb.NOT_SET self._quiet_value = bb.NOT_SET @@ -534,14 +511,10 @@ def __init__( fp_sealed_result = bb.Attribute("fp_sealed_result", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AddFolderMemberArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AddFolderMemberArg, self)._process_custom_annotations(annotation_type, field_path, processor) AddFolderMemberArg_validator = bv.Struct(AddFolderMemberArg) - class AddFolderMemberError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -586,7 +559,7 @@ class AddFolderMemberError(bb.Union): access_error. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition email_unverified = None # Attribute is overwritten below the class definition @@ -617,7 +590,7 @@ def access_error(cls, val): :param SharedFolderAccessError val: :rtype: AddFolderMemberError """ - return cls("access_error", val) + return cls('access_error', val) @classmethod def bad_member(cls, val): @@ -628,7 +601,7 @@ def bad_member(cls, val): :param AddMemberSelectorError val: :rtype: AddFolderMemberError """ - return cls("bad_member", val) + return cls('bad_member', val) @classmethod def too_many_members(cls, val): @@ -639,7 +612,7 @@ def too_many_members(cls, val): :param int val: :rtype: AddFolderMemberError """ - return cls("too_many_members", val) + return cls('too_many_members', val) @classmethod def too_many_pending_invites(cls, val): @@ -650,7 +623,7 @@ def too_many_pending_invites(cls, val): :param int val: :rtype: AddFolderMemberError """ - return cls("too_many_pending_invites", val) + return cls('too_many_pending_invites', val) def is_access_error(self): """ @@ -658,7 +631,7 @@ def is_access_error(self): :rtype: bool """ - return self._tag == "access_error" + return self._tag == 'access_error' def is_email_unverified(self): """ @@ -666,7 +639,7 @@ def is_email_unverified(self): :rtype: bool """ - return self._tag == "email_unverified" + return self._tag == 'email_unverified' def is_banned_member(self): """ @@ -674,7 +647,7 @@ def is_banned_member(self): :rtype: bool """ - return self._tag == "banned_member" + return self._tag == 'banned_member' def is_bad_member(self): """ @@ -682,7 +655,7 @@ def is_bad_member(self): :rtype: bool """ - return self._tag == "bad_member" + return self._tag == 'bad_member' def is_cant_share_outside_team(self): """ @@ -690,7 +663,7 @@ def is_cant_share_outside_team(self): :rtype: bool """ - return self._tag == "cant_share_outside_team" + return self._tag == 'cant_share_outside_team' def is_too_many_members(self): """ @@ -698,7 +671,7 @@ def is_too_many_members(self): :rtype: bool """ - return self._tag == "too_many_members" + return self._tag == 'too_many_members' def is_too_many_pending_invites(self): """ @@ -706,7 +679,7 @@ def is_too_many_pending_invites(self): :rtype: bool """ - return self._tag == "too_many_pending_invites" + return self._tag == 'too_many_pending_invites' def is_rate_limit(self): """ @@ -714,7 +687,7 @@ def is_rate_limit(self): :rtype: bool """ - return self._tag == "rate_limit" + return self._tag == 'rate_limit' def is_too_many_invitees(self): """ @@ -722,7 +695,7 @@ def is_too_many_invitees(self): :rtype: bool """ - return self._tag == "too_many_invitees" + return self._tag == 'too_many_invitees' def is_insufficient_plan(self): """ @@ -730,7 +703,7 @@ def is_insufficient_plan(self): :rtype: bool """ - return self._tag == "insufficient_plan" + return self._tag == 'insufficient_plan' def is_team_folder(self): """ @@ -738,7 +711,7 @@ def is_team_folder(self): :rtype: bool """ - return self._tag == "team_folder" + return self._tag == 'team_folder' def is_no_permission(self): """ @@ -746,7 +719,7 @@ def is_no_permission(self): :rtype: bool """ - return self._tag == "no_permission" + return self._tag == 'no_permission' def is_invalid_shared_folder(self): """ @@ -754,7 +727,7 @@ def is_invalid_shared_folder(self): :rtype: bool """ - return self._tag == "invalid_shared_folder" + return self._tag == 'invalid_shared_folder' def is_other(self): """ @@ -762,7 +735,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_access_error(self): """ @@ -813,14 +786,10 @@ def get_too_many_pending_invites(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AddFolderMemberError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AddFolderMemberError, self)._process_custom_annotations(annotation_type, field_path, processor) AddFolderMemberError_validator = bv.Union(AddFolderMemberError) - class AddMember(bb.Struct): """ The member and type of access the member should have when added to a shared @@ -834,13 +803,15 @@ class AddMember(bb.Struct): """ __slots__ = [ - "_member_value", - "_access_level_value", + '_member_value', + '_access_level_value', ] _has_required_fields = True - def __init__(self, member=None, access_level=None): + def __init__(self, + member=None, + access_level=None): self._member_value = bb.NOT_SET self._access_level_value = bb.NOT_SET if member is not None: @@ -857,10 +828,8 @@ def __init__(self, member=None, access_level=None): def _process_custom_annotations(self, annotation_type, field_path, processor): super(AddMember, self)._process_custom_annotations(annotation_type, field_path, processor) - AddMember_validator = bv.Struct(AddMember) - class AddMemberSelectorError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -889,7 +858,7 @@ class AddMemberSelectorError(bb.Union): Sharing to a group that is not on the current user's team. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition automatic_group = None # Attribute is overwritten below the class definition @@ -910,7 +879,7 @@ def invalid_dropbox_id(cls, val): :param str val: :rtype: AddMemberSelectorError """ - return cls("invalid_dropbox_id", val) + return cls('invalid_dropbox_id', val) @classmethod def invalid_email(cls, val): @@ -921,7 +890,7 @@ def invalid_email(cls, val): :param str val: :rtype: AddMemberSelectorError """ - return cls("invalid_email", val) + return cls('invalid_email', val) @classmethod def unverified_dropbox_id(cls, val): @@ -932,7 +901,7 @@ def unverified_dropbox_id(cls, val): :param str val: :rtype: AddMemberSelectorError """ - return cls("unverified_dropbox_id", val) + return cls('unverified_dropbox_id', val) def is_automatic_group(self): """ @@ -940,7 +909,7 @@ def is_automatic_group(self): :rtype: bool """ - return self._tag == "automatic_group" + return self._tag == 'automatic_group' def is_invalid_dropbox_id(self): """ @@ -948,7 +917,7 @@ def is_invalid_dropbox_id(self): :rtype: bool """ - return self._tag == "invalid_dropbox_id" + return self._tag == 'invalid_dropbox_id' def is_invalid_email(self): """ @@ -956,7 +925,7 @@ def is_invalid_email(self): :rtype: bool """ - return self._tag == "invalid_email" + return self._tag == 'invalid_email' def is_invalid_group(self): """ @@ -964,7 +933,7 @@ def is_invalid_group(self): :rtype: bool """ - return self._tag == "invalid_group" + return self._tag == 'invalid_group' def is_unverified_dropbox_id(self): """ @@ -972,7 +941,7 @@ def is_unverified_dropbox_id(self): :rtype: bool """ - return self._tag == "unverified_dropbox_id" + return self._tag == 'unverified_dropbox_id' def is_group_deleted(self): """ @@ -980,7 +949,7 @@ def is_group_deleted(self): :rtype: bool """ - return self._tag == "group_deleted" + return self._tag == 'group_deleted' def is_group_not_on_team(self): """ @@ -988,7 +957,7 @@ def is_group_not_on_team(self): :rtype: bool """ - return self._tag == "group_not_on_team" + return self._tag == 'group_not_on_team' def is_other(self): """ @@ -996,7 +965,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_invalid_dropbox_id(self): """ @@ -1037,14 +1006,10 @@ def get_unverified_dropbox_id(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AddMemberSelectorError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AddMemberSelectorError, self)._process_custom_annotations(annotation_type, field_path, processor) AddMemberSelectorError_validator = bv.Union(AddMemberSelectorError) - class RequestedVisibility(bb.Union): """ The access permission that can be requested by the caller for the shared @@ -1080,7 +1045,7 @@ def is_public(self): :rtype: bool """ - return self._tag == "public" + return self._tag == 'public' def is_team_only(self): """ @@ -1088,7 +1053,7 @@ def is_team_only(self): :rtype: bool """ - return self._tag == "team_only" + return self._tag == 'team_only' def is_password(self): """ @@ -1096,17 +1061,13 @@ def is_password(self): :rtype: bool """ - return self._tag == "password" + return self._tag == 'password' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RequestedVisibility, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(RequestedVisibility, self)._process_custom_annotations(annotation_type, field_path, processor) RequestedVisibility_validator = bv.Union(RequestedVisibility) - class ResolvedVisibility(RequestedVisibility): """ The actual access permissions values of shared links after taking into @@ -1133,7 +1094,7 @@ class ResolvedVisibility(RequestedVisibility): Only the current user can view this link. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition team_and_password = None # Attribute is overwritten below the class definition @@ -1151,7 +1112,7 @@ def is_team_and_password(self): :rtype: bool """ - return self._tag == "team_and_password" + return self._tag == 'team_and_password' def is_shared_folder_only(self): """ @@ -1159,7 +1120,7 @@ def is_shared_folder_only(self): :rtype: bool """ - return self._tag == "shared_folder_only" + return self._tag == 'shared_folder_only' def is_no_one(self): """ @@ -1167,7 +1128,7 @@ def is_no_one(self): :rtype: bool """ - return self._tag == "no_one" + return self._tag == 'no_one' def is_only_you(self): """ @@ -1175,7 +1136,7 @@ def is_only_you(self): :rtype: bool """ - return self._tag == "only_you" + return self._tag == 'only_you' def is_other(self): """ @@ -1183,17 +1144,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ResolvedVisibility, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ResolvedVisibility, self)._process_custom_annotations(annotation_type, field_path, processor) ResolvedVisibility_validator = bv.Union(ResolvedVisibility) - class AlphaResolvedVisibility(ResolvedVisibility): """ check documentation for ResolvedVisibility. @@ -1204,14 +1161,10 @@ class AlphaResolvedVisibility(ResolvedVisibility): """ def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AlphaResolvedVisibility, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AlphaResolvedVisibility, self)._process_custom_annotations(annotation_type, field_path, processor) AlphaResolvedVisibility_validator = bv.Union(AlphaResolvedVisibility) - class AudienceExceptionContentInfo(bb.Struct): """ Information about the content that has a link audience different than that @@ -1222,12 +1175,13 @@ class AudienceExceptionContentInfo(bb.Struct): """ __slots__ = [ - "_name_value", + '_name_value', ] _has_required_fields = True - def __init__(self, name=None): + def __init__(self, + name=None): self._name_value = bb.NOT_SET if name is not None: self.name = name @@ -1236,14 +1190,10 @@ def __init__(self, name=None): name = bb.Attribute("name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AudienceExceptionContentInfo, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AudienceExceptionContentInfo, self)._process_custom_annotations(annotation_type, field_path, processor) AudienceExceptionContentInfo_validator = bv.Struct(AudienceExceptionContentInfo) - class AudienceExceptions(bb.Struct): """ The total count and truncated list of information of content inside this @@ -1257,13 +1207,15 @@ class AudienceExceptions(bb.Struct): """ __slots__ = [ - "_count_value", - "_exceptions_value", + '_count_value', + '_exceptions_value', ] _has_required_fields = True - def __init__(self, count=None, exceptions=None): + def __init__(self, + count=None, + exceptions=None): self._count_value = bb.NOT_SET self._exceptions_value = bb.NOT_SET if count is not None: @@ -1278,14 +1230,10 @@ def __init__(self, count=None, exceptions=None): exceptions = bb.Attribute("exceptions") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AudienceExceptions, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AudienceExceptions, self)._process_custom_annotations(annotation_type, field_path, processor) AudienceExceptions_validator = bv.Struct(AudienceExceptions) - class AudienceRestrictingSharedFolder(bb.Struct): """ Information about the shared folder that prevents the link audience for this @@ -1300,14 +1248,17 @@ class AudienceRestrictingSharedFolder(bb.Struct): """ __slots__ = [ - "_shared_folder_id_value", - "_name_value", - "_audience_value", + '_shared_folder_id_value', + '_name_value', + '_audience_value', ] _has_required_fields = True - def __init__(self, shared_folder_id=None, name=None, audience=None): + def __init__(self, + shared_folder_id=None, + name=None, + audience=None): self._shared_folder_id_value = bb.NOT_SET self._name_value = bb.NOT_SET self._audience_value = bb.NOT_SET @@ -1328,14 +1279,10 @@ def __init__(self, shared_folder_id=None, name=None, audience=None): audience = bb.Attribute("audience", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AudienceRestrictingSharedFolder, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AudienceRestrictingSharedFolder, self)._process_custom_annotations(annotation_type, field_path, processor) AudienceRestrictingSharedFolder_validator = bv.Struct(AudienceRestrictingSharedFolder) - class ChangeLinkExpirationPolicy(bb.Union): """ Enumerates acceptable values for team's ChangeLinkExpirationPolicy setting. @@ -1345,7 +1292,7 @@ class ChangeLinkExpirationPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition allowed = None # Attribute is overwritten below the class definition @@ -1359,7 +1306,7 @@ def is_allowed(self): :rtype: bool """ - return self._tag == "allowed" + return self._tag == 'allowed' def is_not_allowed(self): """ @@ -1367,7 +1314,7 @@ def is_not_allowed(self): :rtype: bool """ - return self._tag == "not_allowed" + return self._tag == 'not_allowed' def is_other(self): """ @@ -1375,17 +1322,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ChangeLinkExpirationPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ChangeLinkExpirationPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) ChangeLinkExpirationPolicy_validator = bv.Union(ChangeLinkExpirationPolicy) - class LinkMetadata(bb.Struct): """ Metadata for a shared link. This can be either a :class:`PathLinkMetadata` @@ -1400,14 +1343,17 @@ class LinkMetadata(bb.Struct): """ __slots__ = [ - "_url_value", - "_visibility_value", - "_expires_value", + '_url_value', + '_visibility_value', + '_expires_value', ] _has_required_fields = True - def __init__(self, url=None, visibility=None, expires=None): + def __init__(self, + url=None, + visibility=None, + expires=None): self._url_value = bb.NOT_SET self._visibility_value = bb.NOT_SET self._expires_value = bb.NOT_SET @@ -1428,35 +1374,33 @@ def __init__(self, url=None, visibility=None, expires=None): expires = bb.Attribute("expires", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LinkMetadata, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(LinkMetadata, self)._process_custom_annotations(annotation_type, field_path, processor) LinkMetadata_validator = bv.StructTree(LinkMetadata) - class CollectionLinkMetadata(LinkMetadata): """ Metadata for a collection-based shared link. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = True - def __init__(self, url=None, visibility=None, expires=None): - super(CollectionLinkMetadata, self).__init__(url, visibility, expires) + def __init__(self, + url=None, + visibility=None, + expires=None): + super(CollectionLinkMetadata, self).__init__(url, + visibility, + expires) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(CollectionLinkMetadata, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(CollectionLinkMetadata, self)._process_custom_annotations(annotation_type, field_path, processor) CollectionLinkMetadata_validator = bv.Struct(CollectionLinkMetadata) - class CreateSharedLinkArg(bb.Struct): """ :ivar CreateSharedLinkArg.path: @@ -1470,14 +1414,17 @@ class CreateSharedLinkArg(bb.Struct): """ __slots__ = [ - "_path_value", - "_short_url_value", - "_pending_upload_value", + '_path_value', + '_short_url_value', + '_pending_upload_value', ] _has_required_fields = True - def __init__(self, path=None, short_url=None, pending_upload=None): + def __init__(self, + path=None, + short_url=None, + pending_upload=None): self._path_value = bb.NOT_SET self._short_url_value = bb.NOT_SET self._pending_upload_value = bb.NOT_SET @@ -1498,14 +1445,10 @@ def __init__(self, path=None, short_url=None, pending_upload=None): pending_upload = bb.Attribute("pending_upload", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(CreateSharedLinkArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(CreateSharedLinkArg, self)._process_custom_annotations(annotation_type, field_path, processor) CreateSharedLinkArg_validator = bv.Struct(CreateSharedLinkArg) - class CreateSharedLinkError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -1513,7 +1456,7 @@ class CreateSharedLinkError(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -1526,7 +1469,7 @@ def path(cls, val): :param files.LookupError val: :rtype: CreateSharedLinkError """ - return cls("path", val) + return cls('path', val) def is_path(self): """ @@ -1534,7 +1477,7 @@ def is_path(self): :rtype: bool """ - return self._tag == "path" + return self._tag == 'path' def is_other(self): """ @@ -1542,7 +1485,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_path(self): """ @@ -1555,14 +1498,10 @@ def get_path(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(CreateSharedLinkError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(CreateSharedLinkError, self)._process_custom_annotations(annotation_type, field_path, processor) CreateSharedLinkError_validator = bv.Union(CreateSharedLinkError) - class CreateSharedLinkWithSettingsArg(bb.Struct): """ :ivar CreateSharedLinkWithSettingsArg.path: @@ -1572,13 +1511,15 @@ class CreateSharedLinkWithSettingsArg(bb.Struct): """ __slots__ = [ - "_path_value", - "_settings_value", + '_path_value', + '_settings_value', ] _has_required_fields = True - def __init__(self, path=None, settings=None): + def __init__(self, + path=None, + settings=None): self._path_value = bb.NOT_SET self._settings_value = bb.NOT_SET if path is not None: @@ -1593,14 +1534,10 @@ def __init__(self, path=None, settings=None): settings = bb.Attribute("settings", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(CreateSharedLinkWithSettingsArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(CreateSharedLinkWithSettingsArg, self)._process_custom_annotations(annotation_type, field_path, processor) CreateSharedLinkWithSettingsArg_validator = bv.Struct(CreateSharedLinkWithSettingsArg) - class CreateSharedLinkWithSettingsError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -1656,7 +1593,7 @@ def path(cls, val): :param files.LookupError val: :rtype: CreateSharedLinkWithSettingsError """ - return cls("path", val) + return cls('path', val) @classmethod def shared_link_already_exists(cls, val): @@ -1667,7 +1604,7 @@ def shared_link_already_exists(cls, val): :param SharedLinkAlreadyExistsMetadata val: :rtype: CreateSharedLinkWithSettingsError """ - return cls("shared_link_already_exists", val) + return cls('shared_link_already_exists', val) @classmethod def settings_error(cls, val): @@ -1678,7 +1615,7 @@ def settings_error(cls, val): :param SharedLinkSettingsError val: :rtype: CreateSharedLinkWithSettingsError """ - return cls("settings_error", val) + return cls('settings_error', val) def is_path(self): """ @@ -1686,7 +1623,7 @@ def is_path(self): :rtype: bool """ - return self._tag == "path" + return self._tag == 'path' def is_email_not_verified(self): """ @@ -1694,7 +1631,7 @@ def is_email_not_verified(self): :rtype: bool """ - return self._tag == "email_not_verified" + return self._tag == 'email_not_verified' def is_shared_link_already_exists(self): """ @@ -1702,7 +1639,7 @@ def is_shared_link_already_exists(self): :rtype: bool """ - return self._tag == "shared_link_already_exists" + return self._tag == 'shared_link_already_exists' def is_settings_error(self): """ @@ -1710,7 +1647,7 @@ def is_settings_error(self): :rtype: bool """ - return self._tag == "settings_error" + return self._tag == 'settings_error' def is_access_denied(self): """ @@ -1718,7 +1655,7 @@ def is_access_denied(self): :rtype: bool """ - return self._tag == "access_denied" + return self._tag == 'access_denied' def is_banned_member(self): """ @@ -1726,7 +1663,7 @@ def is_banned_member(self): :rtype: bool """ - return self._tag == "banned_member" + return self._tag == 'banned_member' def is_too_many_shared_folders(self): """ @@ -1734,7 +1671,7 @@ def is_too_many_shared_folders(self): :rtype: bool """ - return self._tag == "too_many_shared_folders" + return self._tag == 'too_many_shared_folders' def get_path(self): """ @@ -1776,14 +1713,10 @@ def get_settings_error(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(CreateSharedLinkWithSettingsError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(CreateSharedLinkWithSettingsError, self)._process_custom_annotations(annotation_type, field_path, processor) CreateSharedLinkWithSettingsError_validator = bv.Union(CreateSharedLinkWithSettingsError) - class SharedContentLinkMetadataBase(bb.Struct): """ :ivar SharedContentLinkMetadataBase.access_level: @@ -1808,27 +1741,25 @@ class SharedContentLinkMetadataBase(bb.Struct): """ __slots__ = [ - "_access_level_value", - "_audience_options_value", - "_audience_restricting_shared_folder_value", - "_current_audience_value", - "_expiry_value", - "_link_permissions_value", - "_password_protected_value", + '_access_level_value', + '_audience_options_value', + '_audience_restricting_shared_folder_value', + '_current_audience_value', + '_expiry_value', + '_link_permissions_value', + '_password_protected_value', ] _has_required_fields = True - def __init__( - self, - audience_options=None, - current_audience=None, - link_permissions=None, - password_protected=None, - access_level=None, - audience_restricting_shared_folder=None, - expiry=None, - ): + def __init__(self, + audience_options=None, + current_audience=None, + link_permissions=None, + password_protected=None, + access_level=None, + audience_restricting_shared_folder=None, + expiry=None): self._access_level_value = bb.NOT_SET self._audience_options_value = bb.NOT_SET self._audience_restricting_shared_folder_value = bb.NOT_SET @@ -1858,9 +1789,7 @@ def __init__( audience_options = bb.Attribute("audience_options") # Instance attribute type: AudienceRestrictingSharedFolder (validator is set below) - audience_restricting_shared_folder = bb.Attribute( - "audience_restricting_shared_folder", nullable=True, user_defined=True - ) + audience_restricting_shared_folder = bb.Attribute("audience_restricting_shared_folder", nullable=True, user_defined=True) # Instance attribute type: LinkAudience (validator is set below) current_audience = bb.Attribute("current_audience", user_defined=True) @@ -1875,53 +1804,42 @@ def __init__( password_protected = bb.Attribute("password_protected") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentLinkMetadataBase, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedContentLinkMetadataBase, self)._process_custom_annotations(annotation_type, field_path, processor) SharedContentLinkMetadataBase_validator = bv.Struct(SharedContentLinkMetadataBase) - class ExpectedSharedContentLinkMetadata(SharedContentLinkMetadataBase): """ The expected metadata of a shared link for a file or folder when a link is first created for the content. Absent if the link already exists. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = True - def __init__( - self, - audience_options=None, - current_audience=None, - link_permissions=None, - password_protected=None, - access_level=None, - audience_restricting_shared_folder=None, - expiry=None, - ): - super(ExpectedSharedContentLinkMetadata, self).__init__( - audience_options, - current_audience, - link_permissions, - password_protected, - access_level, - audience_restricting_shared_folder, - expiry, - ) - - def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ExpectedSharedContentLinkMetadata, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + def __init__(self, + audience_options=None, + current_audience=None, + link_permissions=None, + password_protected=None, + access_level=None, + audience_restricting_shared_folder=None, + expiry=None): + super(ExpectedSharedContentLinkMetadata, self).__init__(audience_options, + current_audience, + link_permissions, + password_protected, + access_level, + audience_restricting_shared_folder, + expiry) + + def _process_custom_annotations(self, annotation_type, field_path, processor): + super(ExpectedSharedContentLinkMetadata, self)._process_custom_annotations(annotation_type, field_path, processor) ExpectedSharedContentLinkMetadata_validator = bv.Struct(ExpectedSharedContentLinkMetadata) - class FileAction(bb.Union): """ Sharing actions that may be taken on files. @@ -1957,7 +1875,7 @@ class FileAction(bb.Union): Create a shared link to a file that allows users to edit the content. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition disable_viewer_info = None # Attribute is overwritten below the class definition @@ -1991,7 +1909,7 @@ def is_disable_viewer_info(self): :rtype: bool """ - return self._tag == "disable_viewer_info" + return self._tag == 'disable_viewer_info' def is_edit_contents(self): """ @@ -1999,7 +1917,7 @@ def is_edit_contents(self): :rtype: bool """ - return self._tag == "edit_contents" + return self._tag == 'edit_contents' def is_enable_viewer_info(self): """ @@ -2007,7 +1925,7 @@ def is_enable_viewer_info(self): :rtype: bool """ - return self._tag == "enable_viewer_info" + return self._tag == 'enable_viewer_info' def is_invite_viewer(self): """ @@ -2015,7 +1933,7 @@ def is_invite_viewer(self): :rtype: bool """ - return self._tag == "invite_viewer" + return self._tag == 'invite_viewer' def is_invite_viewer_no_comment(self): """ @@ -2023,7 +1941,7 @@ def is_invite_viewer_no_comment(self): :rtype: bool """ - return self._tag == "invite_viewer_no_comment" + return self._tag == 'invite_viewer_no_comment' def is_invite_editor(self): """ @@ -2031,7 +1949,7 @@ def is_invite_editor(self): :rtype: bool """ - return self._tag == "invite_editor" + return self._tag == 'invite_editor' def is_unshare(self): """ @@ -2039,7 +1957,7 @@ def is_unshare(self): :rtype: bool """ - return self._tag == "unshare" + return self._tag == 'unshare' def is_relinquish_membership(self): """ @@ -2047,7 +1965,7 @@ def is_relinquish_membership(self): :rtype: bool """ - return self._tag == "relinquish_membership" + return self._tag == 'relinquish_membership' def is_share_link(self): """ @@ -2055,7 +1973,7 @@ def is_share_link(self): :rtype: bool """ - return self._tag == "share_link" + return self._tag == 'share_link' def is_create_link(self): """ @@ -2063,7 +1981,7 @@ def is_create_link(self): :rtype: bool """ - return self._tag == "create_link" + return self._tag == 'create_link' def is_create_view_link(self): """ @@ -2071,7 +1989,7 @@ def is_create_view_link(self): :rtype: bool """ - return self._tag == "create_view_link" + return self._tag == 'create_view_link' def is_create_edit_link(self): """ @@ -2079,7 +1997,7 @@ def is_create_edit_link(self): :rtype: bool """ - return self._tag == "create_edit_link" + return self._tag == 'create_edit_link' def is_other(self): """ @@ -2087,15 +2005,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): super(FileAction, self)._process_custom_annotations(annotation_type, field_path, processor) - FileAction_validator = bv.Union(FileAction) - class FileErrorResult(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -2113,7 +2029,7 @@ class FileErrorResult(bb.Union): :vartype FileErrorResult.permission_denied_error: str """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -2126,7 +2042,7 @@ def file_not_found_error(cls, val): :param str val: :rtype: FileErrorResult """ - return cls("file_not_found_error", val) + return cls('file_not_found_error', val) @classmethod def invalid_file_action_error(cls, val): @@ -2137,7 +2053,7 @@ def invalid_file_action_error(cls, val): :param str val: :rtype: FileErrorResult """ - return cls("invalid_file_action_error", val) + return cls('invalid_file_action_error', val) @classmethod def permission_denied_error(cls, val): @@ -2148,7 +2064,7 @@ def permission_denied_error(cls, val): :param str val: :rtype: FileErrorResult """ - return cls("permission_denied_error", val) + return cls('permission_denied_error', val) def is_file_not_found_error(self): """ @@ -2156,7 +2072,7 @@ def is_file_not_found_error(self): :rtype: bool """ - return self._tag == "file_not_found_error" + return self._tag == 'file_not_found_error' def is_invalid_file_action_error(self): """ @@ -2164,7 +2080,7 @@ def is_invalid_file_action_error(self): :rtype: bool """ - return self._tag == "invalid_file_action_error" + return self._tag == 'invalid_file_action_error' def is_permission_denied_error(self): """ @@ -2172,7 +2088,7 @@ def is_permission_denied_error(self): :rtype: bool """ - return self._tag == "permission_denied_error" + return self._tag == 'permission_denied_error' def is_other(self): """ @@ -2180,7 +2096,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_file_not_found_error(self): """ @@ -2219,14 +2135,10 @@ def get_permission_denied_error(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileErrorResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileErrorResult, self)._process_custom_annotations(annotation_type, field_path, processor) FileErrorResult_validator = bv.Union(FileErrorResult) - class SharedLinkMetadata(bb.Struct): """ The metadata of a shared link. @@ -2255,29 +2167,27 @@ class SharedLinkMetadata(bb.Struct): """ __slots__ = [ - "_url_value", - "_id_value", - "_name_value", - "_expires_value", - "_path_lower_value", - "_link_permissions_value", - "_team_member_info_value", - "_content_owner_team_info_value", + '_url_value', + '_id_value', + '_name_value', + '_expires_value', + '_path_lower_value', + '_link_permissions_value', + '_team_member_info_value', + '_content_owner_team_info_value', ] _has_required_fields = True - def __init__( - self, - url=None, - name=None, - link_permissions=None, - id=None, - expires=None, - path_lower=None, - team_member_info=None, - content_owner_team_info=None, - ): + def __init__(self, + url=None, + name=None, + link_permissions=None, + id=None, + expires=None, + path_lower=None, + team_member_info=None, + content_owner_team_info=None): self._url_value = bb.NOT_SET self._id_value = bb.NOT_SET self._name_value = bb.NOT_SET @@ -2328,14 +2238,10 @@ def __init__( content_owner_team_info = bb.Attribute("content_owner_team_info", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkMetadata, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedLinkMetadata, self)._process_custom_annotations(annotation_type, field_path, processor) SharedLinkMetadata_validator = bv.StructTree(SharedLinkMetadata) - class FileLinkMetadata(SharedLinkMetadata): """ The metadata of a file shared link. @@ -2357,39 +2263,35 @@ class FileLinkMetadata(SharedLinkMetadata): """ __slots__ = [ - "_client_modified_value", - "_server_modified_value", - "_rev_value", - "_size_value", + '_client_modified_value', + '_server_modified_value', + '_rev_value', + '_size_value', ] _has_required_fields = True - def __init__( - self, - url=None, - name=None, - link_permissions=None, - client_modified=None, - server_modified=None, - rev=None, - size=None, - id=None, - expires=None, - path_lower=None, - team_member_info=None, - content_owner_team_info=None, - ): - super(FileLinkMetadata, self).__init__( - url, - name, - link_permissions, - id, - expires, - path_lower, - team_member_info, - content_owner_team_info, - ) + def __init__(self, + url=None, + name=None, + link_permissions=None, + client_modified=None, + server_modified=None, + rev=None, + size=None, + id=None, + expires=None, + path_lower=None, + team_member_info=None, + content_owner_team_info=None): + super(FileLinkMetadata, self).__init__(url, + name, + link_permissions, + id, + expires, + path_lower, + team_member_info, + content_owner_team_info) self._client_modified_value = bb.NOT_SET self._server_modified_value = bb.NOT_SET self._rev_value = bb.NOT_SET @@ -2416,14 +2318,10 @@ def __init__( size = bb.Attribute("size") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileLinkMetadata, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileLinkMetadata, self)._process_custom_annotations(annotation_type, field_path, processor) FileLinkMetadata_validator = bv.Struct(FileLinkMetadata) - class FileMemberActionError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -2444,7 +2342,7 @@ class FileMemberActionError(bb.Union): :vartype FileMemberActionError.no_explicit_access: MemberAccessLevelResult """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition invalid_member = None # Attribute is overwritten below the class definition @@ -2461,7 +2359,7 @@ def access_error(cls, val): :param SharingFileAccessError val: :rtype: FileMemberActionError """ - return cls("access_error", val) + return cls('access_error', val) @classmethod def no_explicit_access(cls, val): @@ -2472,7 +2370,7 @@ def no_explicit_access(cls, val): :param MemberAccessLevelResult val: :rtype: FileMemberActionError """ - return cls("no_explicit_access", val) + return cls('no_explicit_access', val) def is_invalid_member(self): """ @@ -2480,7 +2378,7 @@ def is_invalid_member(self): :rtype: bool """ - return self._tag == "invalid_member" + return self._tag == 'invalid_member' def is_no_permission(self): """ @@ -2488,7 +2386,7 @@ def is_no_permission(self): :rtype: bool """ - return self._tag == "no_permission" + return self._tag == 'no_permission' def is_access_error(self): """ @@ -2496,7 +2394,7 @@ def is_access_error(self): :rtype: bool """ - return self._tag == "access_error" + return self._tag == 'access_error' def is_no_explicit_access(self): """ @@ -2504,7 +2402,7 @@ def is_no_explicit_access(self): :rtype: bool """ - return self._tag == "no_explicit_access" + return self._tag == 'no_explicit_access' def is_other(self): """ @@ -2512,7 +2410,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_access_error(self): """ @@ -2541,14 +2439,10 @@ def get_no_explicit_access(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileMemberActionError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileMemberActionError, self)._process_custom_annotations(annotation_type, field_path, processor) FileMemberActionError_validator = bv.Union(FileMemberActionError) - class FileMemberActionIndividualResult(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -2578,7 +2472,7 @@ def success(cls, val): :param AccessLevel val: :rtype: FileMemberActionIndividualResult """ - return cls("success", val) + return cls('success', val) @classmethod def member_error(cls, val): @@ -2589,7 +2483,7 @@ def member_error(cls, val): :param FileMemberActionError val: :rtype: FileMemberActionIndividualResult """ - return cls("member_error", val) + return cls('member_error', val) def is_success(self): """ @@ -2597,7 +2491,7 @@ def is_success(self): :rtype: bool """ - return self._tag == "success" + return self._tag == 'success' def is_member_error(self): """ @@ -2605,7 +2499,7 @@ def is_member_error(self): :rtype: bool """ - return self._tag == "member_error" + return self._tag == 'member_error' def get_success(self): """ @@ -2636,14 +2530,10 @@ def get_member_error(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileMemberActionIndividualResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileMemberActionIndividualResult, self)._process_custom_annotations(annotation_type, field_path, processor) FileMemberActionIndividualResult_validator = bv.Union(FileMemberActionIndividualResult) - class FileMemberActionResult(bb.Struct): """ Per-member result for @@ -2662,15 +2552,19 @@ class FileMemberActionResult(bb.Struct): """ __slots__ = [ - "_member_value", - "_result_value", - "_sckey_sha1_value", - "_invitation_signature_value", + '_member_value', + '_result_value', + '_sckey_sha1_value', + '_invitation_signature_value', ] _has_required_fields = True - def __init__(self, member=None, result=None, sckey_sha1=None, invitation_signature=None): + def __init__(self, + member=None, + result=None, + sckey_sha1=None, + invitation_signature=None): self._member_value = bb.NOT_SET self._result_value = bb.NOT_SET self._sckey_sha1_value = bb.NOT_SET @@ -2697,14 +2591,10 @@ def __init__(self, member=None, result=None, sckey_sha1=None, invitation_signatu invitation_signature = bb.Attribute("invitation_signature", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileMemberActionResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileMemberActionResult, self)._process_custom_annotations(annotation_type, field_path, processor) FileMemberActionResult_validator = bv.Struct(FileMemberActionResult) - class FileMemberRemoveActionResult(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -2719,7 +2609,7 @@ class FileMemberRemoveActionResult(bb.Union): :vartype FileMemberRemoveActionResult.member_error: FileMemberActionError """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -2732,7 +2622,7 @@ def success(cls, val): :param MemberAccessLevelResult val: :rtype: FileMemberRemoveActionResult """ - return cls("success", val) + return cls('success', val) @classmethod def member_error(cls, val): @@ -2743,7 +2633,7 @@ def member_error(cls, val): :param FileMemberActionError val: :rtype: FileMemberRemoveActionResult """ - return cls("member_error", val) + return cls('member_error', val) def is_success(self): """ @@ -2751,7 +2641,7 @@ def is_success(self): :rtype: bool """ - return self._tag == "success" + return self._tag == 'success' def is_member_error(self): """ @@ -2759,7 +2649,7 @@ def is_member_error(self): :rtype: bool """ - return self._tag == "member_error" + return self._tag == 'member_error' def is_other(self): """ @@ -2767,7 +2657,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_success(self): """ @@ -2794,14 +2684,10 @@ def get_member_error(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileMemberRemoveActionResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileMemberRemoveActionResult, self)._process_custom_annotations(annotation_type, field_path, processor) FileMemberRemoveActionResult_validator = bv.Union(FileMemberRemoveActionResult) - class FilePermission(bb.Struct): """ Whether the user is allowed to take the sharing action on the file. @@ -2816,14 +2702,17 @@ class FilePermission(bb.Struct): """ __slots__ = [ - "_action_value", - "_allow_value", - "_reason_value", + '_action_value', + '_allow_value', + '_reason_value', ] _has_required_fields = True - def __init__(self, action=None, allow=None, reason=None): + def __init__(self, + action=None, + allow=None, + reason=None): self._action_value = bb.NOT_SET self._allow_value = bb.NOT_SET self._reason_value = bb.NOT_SET @@ -2844,14 +2733,10 @@ def __init__(self, action=None, allow=None, reason=None): reason = bb.Attribute("reason", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FilePermission, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FilePermission, self)._process_custom_annotations(annotation_type, field_path, processor) FilePermission_validator = bv.Struct(FilePermission) - class FolderAction(bb.Union): """ Actions that may be taken on shared folders. @@ -2897,7 +2782,7 @@ class FolderAction(bb.Union): Set whether the folder inherits permissions from its parent. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition change_options = None # Attribute is overwritten below the class definition @@ -2939,7 +2824,7 @@ def is_change_options(self): :rtype: bool """ - return self._tag == "change_options" + return self._tag == 'change_options' def is_disable_viewer_info(self): """ @@ -2947,7 +2832,7 @@ def is_disable_viewer_info(self): :rtype: bool """ - return self._tag == "disable_viewer_info" + return self._tag == 'disable_viewer_info' def is_edit_contents(self): """ @@ -2955,7 +2840,7 @@ def is_edit_contents(self): :rtype: bool """ - return self._tag == "edit_contents" + return self._tag == 'edit_contents' def is_enable_viewer_info(self): """ @@ -2963,7 +2848,7 @@ def is_enable_viewer_info(self): :rtype: bool """ - return self._tag == "enable_viewer_info" + return self._tag == 'enable_viewer_info' def is_invite_editor(self): """ @@ -2971,7 +2856,7 @@ def is_invite_editor(self): :rtype: bool """ - return self._tag == "invite_editor" + return self._tag == 'invite_editor' def is_invite_viewer(self): """ @@ -2979,7 +2864,7 @@ def is_invite_viewer(self): :rtype: bool """ - return self._tag == "invite_viewer" + return self._tag == 'invite_viewer' def is_invite_viewer_no_comment(self): """ @@ -2987,7 +2872,7 @@ def is_invite_viewer_no_comment(self): :rtype: bool """ - return self._tag == "invite_viewer_no_comment" + return self._tag == 'invite_viewer_no_comment' def is_relinquish_membership(self): """ @@ -2995,7 +2880,7 @@ def is_relinquish_membership(self): :rtype: bool """ - return self._tag == "relinquish_membership" + return self._tag == 'relinquish_membership' def is_unmount(self): """ @@ -3003,7 +2888,7 @@ def is_unmount(self): :rtype: bool """ - return self._tag == "unmount" + return self._tag == 'unmount' def is_unshare(self): """ @@ -3011,7 +2896,7 @@ def is_unshare(self): :rtype: bool """ - return self._tag == "unshare" + return self._tag == 'unshare' def is_leave_a_copy(self): """ @@ -3019,7 +2904,7 @@ def is_leave_a_copy(self): :rtype: bool """ - return self._tag == "leave_a_copy" + return self._tag == 'leave_a_copy' def is_share_link(self): """ @@ -3027,7 +2912,7 @@ def is_share_link(self): :rtype: bool """ - return self._tag == "share_link" + return self._tag == 'share_link' def is_create_link(self): """ @@ -3035,7 +2920,7 @@ def is_create_link(self): :rtype: bool """ - return self._tag == "create_link" + return self._tag == 'create_link' def is_create_view_link(self): """ @@ -3043,7 +2928,7 @@ def is_create_view_link(self): :rtype: bool """ - return self._tag == "create_view_link" + return self._tag == 'create_view_link' def is_create_edit_link(self): """ @@ -3051,7 +2936,7 @@ def is_create_edit_link(self): :rtype: bool """ - return self._tag == "create_edit_link" + return self._tag == 'create_edit_link' def is_set_access_inheritance(self): """ @@ -3059,7 +2944,7 @@ def is_set_access_inheritance(self): :rtype: bool """ - return self._tag == "set_access_inheritance" + return self._tag == 'set_access_inheritance' def is_other(self): """ @@ -3067,57 +2952,46 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FolderAction, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FolderAction, self)._process_custom_annotations(annotation_type, field_path, processor) FolderAction_validator = bv.Union(FolderAction) - class FolderLinkMetadata(SharedLinkMetadata): """ The metadata of a folder shared link. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = True - def __init__( - self, - url=None, - name=None, - link_permissions=None, - id=None, - expires=None, - path_lower=None, - team_member_info=None, - content_owner_team_info=None, - ): - super(FolderLinkMetadata, self).__init__( - url, - name, - link_permissions, - id, - expires, - path_lower, - team_member_info, - content_owner_team_info, - ) - - def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FolderLinkMetadata, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + def __init__(self, + url=None, + name=None, + link_permissions=None, + id=None, + expires=None, + path_lower=None, + team_member_info=None, + content_owner_team_info=None): + super(FolderLinkMetadata, self).__init__(url, + name, + link_permissions, + id, + expires, + path_lower, + team_member_info, + content_owner_team_info) + + def _process_custom_annotations(self, annotation_type, field_path, processor): + super(FolderLinkMetadata, self)._process_custom_annotations(annotation_type, field_path, processor) FolderLinkMetadata_validator = bv.Struct(FolderLinkMetadata) - class FolderPermission(bb.Struct): """ Whether the user is allowed to take the action on the shared folder. @@ -3132,14 +3006,17 @@ class FolderPermission(bb.Struct): """ __slots__ = [ - "_action_value", - "_allow_value", - "_reason_value", + '_action_value', + '_allow_value', + '_reason_value', ] _has_required_fields = True - def __init__(self, action=None, allow=None, reason=None): + def __init__(self, + action=None, + allow=None, + reason=None): self._action_value = bb.NOT_SET self._allow_value = bb.NOT_SET self._reason_value = bb.NOT_SET @@ -3160,14 +3037,10 @@ def __init__(self, action=None, allow=None, reason=None): reason = bb.Attribute("reason", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FolderPermission, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FolderPermission, self)._process_custom_annotations(annotation_type, field_path, processor) FolderPermission_validator = bv.Struct(FolderPermission) - class FolderPolicy(bb.Struct): """ A set of policies governing membership and privileges for a shared folder. @@ -3190,23 +3063,21 @@ class FolderPolicy(bb.Struct): """ __slots__ = [ - "_member_policy_value", - "_resolved_member_policy_value", - "_acl_update_policy_value", - "_shared_link_policy_value", - "_viewer_info_policy_value", + '_member_policy_value', + '_resolved_member_policy_value', + '_acl_update_policy_value', + '_shared_link_policy_value', + '_viewer_info_policy_value', ] _has_required_fields = True - def __init__( - self, - acl_update_policy=None, - shared_link_policy=None, - member_policy=None, - resolved_member_policy=None, - viewer_info_policy=None, - ): + def __init__(self, + acl_update_policy=None, + shared_link_policy=None, + member_policy=None, + resolved_member_policy=None, + viewer_info_policy=None): self._member_policy_value = bb.NOT_SET self._resolved_member_policy_value = bb.NOT_SET self._acl_update_policy_value = bb.NOT_SET @@ -3227,9 +3098,7 @@ def __init__( member_policy = bb.Attribute("member_policy", nullable=True, user_defined=True) # Instance attribute type: MemberPolicy (validator is set below) - resolved_member_policy = bb.Attribute( - "resolved_member_policy", nullable=True, user_defined=True - ) + resolved_member_policy = bb.Attribute("resolved_member_policy", nullable=True, user_defined=True) # Instance attribute type: AclUpdatePolicy (validator is set below) acl_update_policy = bb.Attribute("acl_update_policy", user_defined=True) @@ -3241,14 +3110,10 @@ def __init__( viewer_info_policy = bb.Attribute("viewer_info_policy", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FolderPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FolderPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) FolderPolicy_validator = bv.Struct(FolderPolicy) - class GetFileMetadataArg(bb.Struct): """ Arguments of @@ -3263,13 +3128,15 @@ class GetFileMetadataArg(bb.Struct): """ __slots__ = [ - "_file_value", - "_actions_value", + '_file_value', + '_actions_value', ] _has_required_fields = True - def __init__(self, file=None, actions=None): + def __init__(self, + file=None, + actions=None): self._file_value = bb.NOT_SET self._actions_value = bb.NOT_SET if file is not None: @@ -3284,14 +3151,10 @@ def __init__(self, file=None, actions=None): actions = bb.Attribute("actions", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetFileMetadataArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GetFileMetadataArg, self)._process_custom_annotations(annotation_type, field_path, processor) GetFileMetadataArg_validator = bv.Struct(GetFileMetadataArg) - class GetFileMetadataBatchArg(bb.Struct): """ Arguments of @@ -3306,13 +3169,15 @@ class GetFileMetadataBatchArg(bb.Struct): """ __slots__ = [ - "_files_value", - "_actions_value", + '_files_value', + '_actions_value', ] _has_required_fields = True - def __init__(self, files=None, actions=None): + def __init__(self, + files=None, + actions=None): self._files_value = bb.NOT_SET self._actions_value = bb.NOT_SET if files is not None: @@ -3327,14 +3192,10 @@ def __init__(self, files=None, actions=None): actions = bb.Attribute("actions", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetFileMetadataBatchArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GetFileMetadataBatchArg, self)._process_custom_annotations(annotation_type, field_path, processor) GetFileMetadataBatchArg_validator = bv.Struct(GetFileMetadataBatchArg) - class GetFileMetadataBatchResult(bb.Struct): """ Per file results of @@ -3348,13 +3209,15 @@ class GetFileMetadataBatchResult(bb.Struct): """ __slots__ = [ - "_file_value", - "_result_value", + '_file_value', + '_result_value', ] _has_required_fields = True - def __init__(self, file=None, result=None): + def __init__(self, + file=None, + result=None): self._file_value = bb.NOT_SET self._result_value = bb.NOT_SET if file is not None: @@ -3369,14 +3232,10 @@ def __init__(self, file=None, result=None): result = bb.Attribute("result", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetFileMetadataBatchResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GetFileMetadataBatchResult, self)._process_custom_annotations(annotation_type, field_path, processor) GetFileMetadataBatchResult_validator = bv.Struct(GetFileMetadataBatchResult) - class GetFileMetadataError(bb.Union): """ Error result for @@ -3387,7 +3246,7 @@ class GetFileMetadataError(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -3400,7 +3259,7 @@ def user_error(cls, val): :param SharingUserError val: :rtype: GetFileMetadataError """ - return cls("user_error", val) + return cls('user_error', val) @classmethod def access_error(cls, val): @@ -3411,7 +3270,7 @@ def access_error(cls, val): :param SharingFileAccessError val: :rtype: GetFileMetadataError """ - return cls("access_error", val) + return cls('access_error', val) def is_user_error(self): """ @@ -3419,7 +3278,7 @@ def is_user_error(self): :rtype: bool """ - return self._tag == "user_error" + return self._tag == 'user_error' def is_access_error(self): """ @@ -3427,7 +3286,7 @@ def is_access_error(self): :rtype: bool """ - return self._tag == "access_error" + return self._tag == 'access_error' def is_other(self): """ @@ -3435,7 +3294,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_user_error(self): """ @@ -3458,14 +3317,10 @@ def get_access_error(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetFileMetadataError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GetFileMetadataError, self)._process_custom_annotations(annotation_type, field_path, processor) GetFileMetadataError_validator = bv.Union(GetFileMetadataError) - class GetFileMetadataIndividualResult(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -3480,7 +3335,7 @@ class GetFileMetadataIndividualResult(bb.Union): :vartype GetFileMetadataIndividualResult.access_error: SharingFileAccessError """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -3493,7 +3348,7 @@ def metadata(cls, val): :param SharedFileMetadata val: :rtype: GetFileMetadataIndividualResult """ - return cls("metadata", val) + return cls('metadata', val) @classmethod def access_error(cls, val): @@ -3504,7 +3359,7 @@ def access_error(cls, val): :param SharingFileAccessError val: :rtype: GetFileMetadataIndividualResult """ - return cls("access_error", val) + return cls('access_error', val) def is_metadata(self): """ @@ -3512,7 +3367,7 @@ def is_metadata(self): :rtype: bool """ - return self._tag == "metadata" + return self._tag == 'metadata' def is_access_error(self): """ @@ -3520,7 +3375,7 @@ def is_access_error(self): :rtype: bool """ - return self._tag == "access_error" + return self._tag == 'access_error' def is_other(self): """ @@ -3528,7 +3383,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_metadata(self): """ @@ -3555,14 +3410,10 @@ def get_access_error(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetFileMetadataIndividualResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GetFileMetadataIndividualResult, self)._process_custom_annotations(annotation_type, field_path, processor) GetFileMetadataIndividualResult_validator = bv.Union(GetFileMetadataIndividualResult) - class GetMetadataArgs(bb.Struct): """ :ivar GetMetadataArgs.shared_folder_id: @@ -3575,13 +3426,15 @@ class GetMetadataArgs(bb.Struct): """ __slots__ = [ - "_shared_folder_id_value", - "_actions_value", + '_shared_folder_id_value', + '_actions_value', ] _has_required_fields = True - def __init__(self, shared_folder_id=None, actions=None): + def __init__(self, + shared_folder_id=None, + actions=None): self._shared_folder_id_value = bb.NOT_SET self._actions_value = bb.NOT_SET if shared_folder_id is not None: @@ -3596,14 +3449,10 @@ def __init__(self, shared_folder_id=None, actions=None): actions = bb.Attribute("actions", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetMetadataArgs, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GetMetadataArgs, self)._process_custom_annotations(annotation_type, field_path, processor) GetMetadataArgs_validator = bv.Struct(GetMetadataArgs) - class SharedLinkError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -3622,7 +3471,7 @@ class SharedLinkError(bb.Union): fields. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition shared_link_not_found = None # Attribute is overwritten below the class definition @@ -3640,7 +3489,7 @@ def is_shared_link_not_found(self): :rtype: bool """ - return self._tag == "shared_link_not_found" + return self._tag == 'shared_link_not_found' def is_shared_link_access_denied(self): """ @@ -3648,7 +3497,7 @@ def is_shared_link_access_denied(self): :rtype: bool """ - return self._tag == "shared_link_access_denied" + return self._tag == 'shared_link_access_denied' def is_unsupported_link_type(self): """ @@ -3656,7 +3505,7 @@ def is_unsupported_link_type(self): :rtype: bool """ - return self._tag == "unsupported_link_type" + return self._tag == 'unsupported_link_type' def is_unsupported_parameter_field(self): """ @@ -3664,7 +3513,7 @@ def is_unsupported_parameter_field(self): :rtype: bool """ - return self._tag == "unsupported_parameter_field" + return self._tag == 'unsupported_parameter_field' def is_other(self): """ @@ -3672,17 +3521,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedLinkError, self)._process_custom_annotations(annotation_type, field_path, processor) SharedLinkError_validator = bv.Union(SharedLinkError) - class GetSharedLinkFileError(SharedLinkError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -3702,17 +3547,13 @@ def is_shared_link_is_directory(self): :rtype: bool """ - return self._tag == "shared_link_is_directory" + return self._tag == 'shared_link_is_directory' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetSharedLinkFileError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GetSharedLinkFileError, self)._process_custom_annotations(annotation_type, field_path, processor) GetSharedLinkFileError_validator = bv.Union(GetSharedLinkFileError) - class GetSharedLinkMetadataArg(bb.Struct): """ :ivar GetSharedLinkMetadataArg.url: @@ -3726,14 +3567,17 @@ class GetSharedLinkMetadataArg(bb.Struct): """ __slots__ = [ - "_url_value", - "_path_value", - "_link_password_value", + '_url_value', + '_path_value', + '_link_password_value', ] _has_required_fields = True - def __init__(self, url=None, path=None, link_password=None): + def __init__(self, + url=None, + path=None, + link_password=None): self._url_value = bb.NOT_SET self._path_value = bb.NOT_SET self._link_password_value = bb.NOT_SET @@ -3754,14 +3598,10 @@ def __init__(self, url=None, path=None, link_password=None): link_password = bb.Attribute("link_password", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetSharedLinkMetadataArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GetSharedLinkMetadataArg, self)._process_custom_annotations(annotation_type, field_path, processor) GetSharedLinkMetadataArg_validator = bv.Struct(GetSharedLinkMetadataArg) - class GetSharedLinksArg(bb.Struct): """ :ivar GetSharedLinksArg.path: @@ -3770,12 +3610,13 @@ class GetSharedLinksArg(bb.Struct): """ __slots__ = [ - "_path_value", + '_path_value', ] _has_required_fields = False - def __init__(self, path=None): + def __init__(self, + path=None): self._path_value = bb.NOT_SET if path is not None: self.path = path @@ -3784,14 +3625,10 @@ def __init__(self, path=None): path = bb.Attribute("path", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetSharedLinksArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GetSharedLinksArg, self)._process_custom_annotations(annotation_type, field_path, processor) GetSharedLinksArg_validator = bv.Struct(GetSharedLinksArg) - class GetSharedLinksError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -3799,7 +3636,7 @@ class GetSharedLinksError(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -3812,7 +3649,7 @@ def path(cls, val): :param Optional[str] val: :rtype: GetSharedLinksError """ - return cls("path", val) + return cls('path', val) def is_path(self): """ @@ -3820,7 +3657,7 @@ def is_path(self): :rtype: bool """ - return self._tag == "path" + return self._tag == 'path' def is_other(self): """ @@ -3828,7 +3665,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_path(self): """ @@ -3841,14 +3678,10 @@ def get_path(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetSharedLinksError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GetSharedLinksError, self)._process_custom_annotations(annotation_type, field_path, processor) GetSharedLinksError_validator = bv.Union(GetSharedLinksError) - class GetSharedLinksResult(bb.Struct): """ :ivar GetSharedLinksResult.links: @@ -3856,12 +3689,13 @@ class GetSharedLinksResult(bb.Struct): """ __slots__ = [ - "_links_value", + '_links_value', ] _has_required_fields = True - def __init__(self, links=None): + def __init__(self, + links=None): self._links_value = bb.NOT_SET if links is not None: self.links = links @@ -3870,14 +3704,10 @@ def __init__(self, links=None): links = bb.Attribute("links") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetSharedLinksResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GetSharedLinksResult, self)._process_custom_annotations(annotation_type, field_path, processor) GetSharedLinksResult_validator = bv.Struct(GetSharedLinksResult) - class GroupInfo(team_common.GroupSummary): """ The information about a group. Groups is a way to manage a list of users who @@ -3894,29 +3724,29 @@ class GroupInfo(team_common.GroupSummary): """ __slots__ = [ - "_group_type_value", - "_is_member_value", - "_is_owner_value", - "_same_team_value", + '_group_type_value', + '_is_member_value', + '_is_owner_value', + '_same_team_value', ] _has_required_fields = True - def __init__( - self, - group_name=None, - group_id=None, - group_management_type=None, - group_type=None, - is_member=None, - is_owner=None, - same_team=None, - group_external_id=None, - member_count=None, - ): - super(GroupInfo, self).__init__( - group_name, group_id, group_management_type, group_external_id, member_count - ) + def __init__(self, + group_name=None, + group_id=None, + group_management_type=None, + group_type=None, + is_member=None, + is_owner=None, + same_team=None, + group_external_id=None, + member_count=None): + super(GroupInfo, self).__init__(group_name, + group_id, + group_management_type, + group_external_id, + member_count) self._group_type_value = bb.NOT_SET self._is_member_value = bb.NOT_SET self._is_owner_value = bb.NOT_SET @@ -3945,10 +3775,8 @@ def __init__( def _process_custom_annotations(self, annotation_type, field_path, processor): super(GroupInfo, self)._process_custom_annotations(annotation_type, field_path, processor) - GroupInfo_validator = bv.Struct(GroupInfo) - class MembershipInfo(bb.Struct): """ The information about a member of the shared content. @@ -3966,15 +3794,19 @@ class MembershipInfo(bb.Struct): """ __slots__ = [ - "_access_type_value", - "_permissions_value", - "_initials_value", - "_is_inherited_value", + '_access_type_value', + '_permissions_value', + '_initials_value', + '_is_inherited_value', ] _has_required_fields = True - def __init__(self, access_type=None, permissions=None, initials=None, is_inherited=None): + def __init__(self, + access_type=None, + permissions=None, + initials=None, + is_inherited=None): self._access_type_value = bb.NOT_SET self._permissions_value = bb.NOT_SET self._initials_value = bb.NOT_SET @@ -4001,14 +3833,10 @@ def __init__(self, access_type=None, permissions=None, initials=None, is_inherit is_inherited = bb.Attribute("is_inherited") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembershipInfo, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MembershipInfo, self)._process_custom_annotations(annotation_type, field_path, processor) MembershipInfo_validator = bv.Struct(MembershipInfo) - class GroupMembershipInfo(MembershipInfo): """ The information about a group member of the shared content. @@ -4018,20 +3846,21 @@ class GroupMembershipInfo(MembershipInfo): """ __slots__ = [ - "_group_value", + '_group_value', ] _has_required_fields = True - def __init__( - self, - access_type=None, - group=None, - permissions=None, - initials=None, - is_inherited=None, - ): - super(GroupMembershipInfo, self).__init__(access_type, permissions, initials, is_inherited) + def __init__(self, + access_type=None, + group=None, + permissions=None, + initials=None, + is_inherited=None): + super(GroupMembershipInfo, self).__init__(access_type, + permissions, + initials, + is_inherited) self._group_value = bb.NOT_SET if group is not None: self.group = group @@ -4040,14 +3869,10 @@ def __init__( group = bb.Attribute("group", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupMembershipInfo, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GroupMembershipInfo, self)._process_custom_annotations(annotation_type, field_path, processor) GroupMembershipInfo_validator = bv.Struct(GroupMembershipInfo) - class InsufficientPlan(bb.Struct): """ :ivar InsufficientPlan.message: @@ -4060,13 +3885,15 @@ class InsufficientPlan(bb.Struct): """ __slots__ = [ - "_message_value", - "_upsell_url_value", + '_message_value', + '_upsell_url_value', ] _has_required_fields = True - def __init__(self, message=None, upsell_url=None): + def __init__(self, + message=None, + upsell_url=None): self._message_value = bb.NOT_SET self._upsell_url_value = bb.NOT_SET if message is not None: @@ -4081,14 +3908,10 @@ def __init__(self, message=None, upsell_url=None): upsell_url = bb.Attribute("upsell_url", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(InsufficientPlan, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(InsufficientPlan, self)._process_custom_annotations(annotation_type, field_path, processor) InsufficientPlan_validator = bv.Struct(InsufficientPlan) - class InsufficientQuotaAmounts(bb.Struct): """ :ivar InsufficientQuotaAmounts.space_needed: @@ -4100,14 +3923,17 @@ class InsufficientQuotaAmounts(bb.Struct): """ __slots__ = [ - "_space_needed_value", - "_space_shortage_value", - "_space_left_value", + '_space_needed_value', + '_space_shortage_value', + '_space_left_value', ] _has_required_fields = True - def __init__(self, space_needed=None, space_shortage=None, space_left=None): + def __init__(self, + space_needed=None, + space_shortage=None, + space_left=None): self._space_needed_value = bb.NOT_SET self._space_shortage_value = bb.NOT_SET self._space_left_value = bb.NOT_SET @@ -4128,14 +3954,10 @@ def __init__(self, space_needed=None, space_shortage=None, space_left=None): space_left = bb.Attribute("space_left") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(InsufficientQuotaAmounts, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(InsufficientQuotaAmounts, self)._process_custom_annotations(annotation_type, field_path, processor) InsufficientQuotaAmounts_validator = bv.Struct(InsufficientQuotaAmounts) - class InviteeInfo(bb.Union): """ Information about the recipient of a shared content invitation. @@ -4149,7 +3971,7 @@ class InviteeInfo(bb.Union): :vartype InviteeInfo.email: str """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -4162,7 +3984,7 @@ def email(cls, val): :param str val: :rtype: InviteeInfo """ - return cls("email", val) + return cls('email', val) def is_email(self): """ @@ -4170,7 +3992,7 @@ def is_email(self): :rtype: bool """ - return self._tag == "email" + return self._tag == 'email' def is_other(self): """ @@ -4178,7 +4000,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_email(self): """ @@ -4195,10 +4017,8 @@ def get_email(self): def _process_custom_annotations(self, annotation_type, field_path, processor): super(InviteeInfo, self)._process_custom_annotations(annotation_type, field_path, processor) - InviteeInfo_validator = bv.Union(InviteeInfo) - class InviteeMembershipInfo(MembershipInfo): """ Information about an invited member of a shared content. @@ -4210,24 +4030,23 @@ class InviteeMembershipInfo(MembershipInfo): """ __slots__ = [ - "_invitee_value", - "_user_value", + '_invitee_value', + '_user_value', ] _has_required_fields = True - def __init__( - self, - access_type=None, - invitee=None, - permissions=None, - initials=None, - is_inherited=None, - user=None, - ): - super(InviteeMembershipInfo, self).__init__( - access_type, permissions, initials, is_inherited - ) + def __init__(self, + access_type=None, + invitee=None, + permissions=None, + initials=None, + is_inherited=None, + user=None): + super(InviteeMembershipInfo, self).__init__(access_type, + permissions, + initials, + is_inherited) self._invitee_value = bb.NOT_SET self._user_value = bb.NOT_SET if invitee is not None: @@ -4242,14 +4061,10 @@ def __init__( user = bb.Attribute("user", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(InviteeMembershipInfo, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(InviteeMembershipInfo, self)._process_custom_annotations(annotation_type, field_path, processor) InviteeMembershipInfo_validator = bv.Struct(InviteeMembershipInfo) - class JobError(bb.Union): """ Error occurred while performing an asynchronous job from @@ -4276,7 +4091,7 @@ class JobError(bb.Union): :vartype JobError.relinquish_folder_membership_error: RelinquishFolderMembershipError """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -4289,7 +4104,7 @@ def unshare_folder_error(cls, val): :param UnshareFolderError val: :rtype: JobError """ - return cls("unshare_folder_error", val) + return cls('unshare_folder_error', val) @classmethod def remove_folder_member_error(cls, val): @@ -4300,7 +4115,7 @@ def remove_folder_member_error(cls, val): :param RemoveFolderMemberError val: :rtype: JobError """ - return cls("remove_folder_member_error", val) + return cls('remove_folder_member_error', val) @classmethod def relinquish_folder_membership_error(cls, val): @@ -4311,7 +4126,7 @@ def relinquish_folder_membership_error(cls, val): :param RelinquishFolderMembershipError val: :rtype: JobError """ - return cls("relinquish_folder_membership_error", val) + return cls('relinquish_folder_membership_error', val) def is_unshare_folder_error(self): """ @@ -4319,7 +4134,7 @@ def is_unshare_folder_error(self): :rtype: bool """ - return self._tag == "unshare_folder_error" + return self._tag == 'unshare_folder_error' def is_remove_folder_member_error(self): """ @@ -4327,7 +4142,7 @@ def is_remove_folder_member_error(self): :rtype: bool """ - return self._tag == "remove_folder_member_error" + return self._tag == 'remove_folder_member_error' def is_relinquish_folder_membership_error(self): """ @@ -4335,7 +4150,7 @@ def is_relinquish_folder_membership_error(self): :rtype: bool """ - return self._tag == "relinquish_folder_membership_error" + return self._tag == 'relinquish_folder_membership_error' def is_other(self): """ @@ -4343,7 +4158,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_unshare_folder_error(self): """ @@ -4389,10 +4204,8 @@ def get_relinquish_folder_membership_error(self): def _process_custom_annotations(self, annotation_type, field_path, processor): super(JobError, self)._process_custom_annotations(annotation_type, field_path, processor) - JobError_validator = bv.Union(JobError) - class JobStatus(async_.PollResultBase): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -4418,7 +4231,7 @@ def failed(cls, val): :param JobError val: :rtype: JobStatus """ - return cls("failed", val) + return cls('failed', val) def is_complete(self): """ @@ -4426,7 +4239,7 @@ def is_complete(self): :rtype: bool """ - return self._tag == "complete" + return self._tag == 'complete' def is_failed(self): """ @@ -4434,7 +4247,7 @@ def is_failed(self): :rtype: bool """ - return self._tag == "failed" + return self._tag == 'failed' def get_failed(self): """ @@ -4451,10 +4264,8 @@ def get_failed(self): def _process_custom_annotations(self, annotation_type, field_path, processor): super(JobStatus, self)._process_custom_annotations(annotation_type, field_path, processor) - JobStatus_validator = bv.Union(JobStatus) - class LinkAccessLevel(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -4467,7 +4278,7 @@ class LinkAccessLevel(bb.Union): Users who use the link can edit, view and comment on the content. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition viewer = None # Attribute is overwritten below the class definition @@ -4481,7 +4292,7 @@ def is_viewer(self): :rtype: bool """ - return self._tag == "viewer" + return self._tag == 'viewer' def is_editor(self): """ @@ -4489,7 +4300,7 @@ def is_editor(self): :rtype: bool """ - return self._tag == "editor" + return self._tag == 'editor' def is_other(self): """ @@ -4497,17 +4308,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LinkAccessLevel, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(LinkAccessLevel, self)._process_custom_annotations(annotation_type, field_path, processor) LinkAccessLevel_validator = bv.Union(LinkAccessLevel) - class LinkAction(bb.Union): """ Actions that can be performed on a link. @@ -4530,7 +4337,7 @@ class LinkAction(bb.Union): Create or modify the password of the link. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition change_access_level = None # Attribute is overwritten below the class definition @@ -4552,7 +4359,7 @@ def is_change_access_level(self): :rtype: bool """ - return self._tag == "change_access_level" + return self._tag == 'change_access_level' def is_change_audience(self): """ @@ -4560,7 +4367,7 @@ def is_change_audience(self): :rtype: bool """ - return self._tag == "change_audience" + return self._tag == 'change_audience' def is_remove_expiry(self): """ @@ -4568,7 +4375,7 @@ def is_remove_expiry(self): :rtype: bool """ - return self._tag == "remove_expiry" + return self._tag == 'remove_expiry' def is_remove_password(self): """ @@ -4576,7 +4383,7 @@ def is_remove_password(self): :rtype: bool """ - return self._tag == "remove_password" + return self._tag == 'remove_password' def is_set_expiry(self): """ @@ -4584,7 +4391,7 @@ def is_set_expiry(self): :rtype: bool """ - return self._tag == "set_expiry" + return self._tag == 'set_expiry' def is_set_password(self): """ @@ -4592,7 +4399,7 @@ def is_set_password(self): :rtype: bool """ - return self._tag == "set_password" + return self._tag == 'set_password' def is_other(self): """ @@ -4600,15 +4407,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): super(LinkAction, self)._process_custom_annotations(annotation_type, field_path, processor) - LinkAction_validator = bv.Union(LinkAction) - class LinkAudience(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -4631,7 +4436,7 @@ class LinkAudience(bb.Union): Field is deprecated. Link is accessible only by members of the content. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition public = None # Attribute is overwritten below the class definition @@ -4651,7 +4456,7 @@ def is_public(self): :rtype: bool """ - return self._tag == "public" + return self._tag == 'public' def is_team(self): """ @@ -4659,7 +4464,7 @@ def is_team(self): :rtype: bool """ - return self._tag == "team" + return self._tag == 'team' def is_no_one(self): """ @@ -4667,7 +4472,7 @@ def is_no_one(self): :rtype: bool """ - return self._tag == "no_one" + return self._tag == 'no_one' def is_password(self): """ @@ -4675,7 +4480,7 @@ def is_password(self): :rtype: bool """ - return self._tag == "password" + return self._tag == 'password' def is_members(self): """ @@ -4683,7 +4488,7 @@ def is_members(self): :rtype: bool """ - return self._tag == "members" + return self._tag == 'members' def is_other(self): """ @@ -4691,17 +4496,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LinkAudience, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(LinkAudience, self)._process_custom_annotations(annotation_type, field_path, processor) LinkAudience_validator = bv.Union(LinkAudience) - class VisibilityPolicyDisallowedReason(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -4725,7 +4526,7 @@ class VisibilityPolicyDisallowedReason(bb.Union): The user does not have permission. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition delete_and_recreate = None # Attribute is overwritten below the class definition @@ -4747,7 +4548,7 @@ def is_delete_and_recreate(self): :rtype: bool """ - return self._tag == "delete_and_recreate" + return self._tag == 'delete_and_recreate' def is_restricted_by_shared_folder(self): """ @@ -4755,7 +4556,7 @@ def is_restricted_by_shared_folder(self): :rtype: bool """ - return self._tag == "restricted_by_shared_folder" + return self._tag == 'restricted_by_shared_folder' def is_restricted_by_team(self): """ @@ -4763,7 +4564,7 @@ def is_restricted_by_team(self): :rtype: bool """ - return self._tag == "restricted_by_team" + return self._tag == 'restricted_by_team' def is_user_not_on_team(self): """ @@ -4771,7 +4572,7 @@ def is_user_not_on_team(self): :rtype: bool """ - return self._tag == "user_not_on_team" + return self._tag == 'user_not_on_team' def is_user_account_type(self): """ @@ -4779,7 +4580,7 @@ def is_user_account_type(self): :rtype: bool """ - return self._tag == "user_account_type" + return self._tag == 'user_account_type' def is_permission_denied(self): """ @@ -4787,7 +4588,7 @@ def is_permission_denied(self): :rtype: bool """ - return self._tag == "permission_denied" + return self._tag == 'permission_denied' def is_other(self): """ @@ -4795,17 +4596,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(VisibilityPolicyDisallowedReason, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(VisibilityPolicyDisallowedReason, self)._process_custom_annotations(annotation_type, field_path, processor) VisibilityPolicyDisallowedReason_validator = bv.Union(VisibilityPolicyDisallowedReason) - class LinkAudienceDisallowedReason(VisibilityPolicyDisallowedReason): """ check documentation for VisibilityPolicyDisallowedReason. @@ -4816,14 +4613,10 @@ class LinkAudienceDisallowedReason(VisibilityPolicyDisallowedReason): """ def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LinkAudienceDisallowedReason, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(LinkAudienceDisallowedReason, self)._process_custom_annotations(annotation_type, field_path, processor) LinkAudienceDisallowedReason_validator = bv.Union(LinkAudienceDisallowedReason) - class LinkAudienceOption(bb.Struct): """ :ivar LinkAudienceOption.audience: @@ -4836,14 +4629,17 @@ class LinkAudienceOption(bb.Struct): """ __slots__ = [ - "_audience_value", - "_allowed_value", - "_disallowed_reason_value", + '_audience_value', + '_allowed_value', + '_disallowed_reason_value', ] _has_required_fields = True - def __init__(self, audience=None, allowed=None, disallowed_reason=None): + def __init__(self, + audience=None, + allowed=None, + disallowed_reason=None): self._audience_value = bb.NOT_SET self._allowed_value = bb.NOT_SET self._disallowed_reason_value = bb.NOT_SET @@ -4864,14 +4660,10 @@ def __init__(self, audience=None, allowed=None, disallowed_reason=None): disallowed_reason = bb.Attribute("disallowed_reason", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LinkAudienceOption, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(LinkAudienceOption, self)._process_custom_annotations(annotation_type, field_path, processor) LinkAudienceOption_validator = bv.Struct(LinkAudienceOption) - class LinkExpiry(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -4885,7 +4677,7 @@ class LinkExpiry(bb.Union): :vartype LinkExpiry.set_expiry: datetime.datetime """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition remove_expiry = None # Attribute is overwritten below the class definition @@ -4900,7 +4692,7 @@ def set_expiry(cls, val): :param datetime.datetime val: :rtype: LinkExpiry """ - return cls("set_expiry", val) + return cls('set_expiry', val) def is_remove_expiry(self): """ @@ -4908,7 +4700,7 @@ def is_remove_expiry(self): :rtype: bool """ - return self._tag == "remove_expiry" + return self._tag == 'remove_expiry' def is_set_expiry(self): """ @@ -4916,7 +4708,7 @@ def is_set_expiry(self): :rtype: bool """ - return self._tag == "set_expiry" + return self._tag == 'set_expiry' def is_other(self): """ @@ -4924,7 +4716,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_set_expiry(self): """ @@ -4941,10 +4733,8 @@ def get_set_expiry(self): def _process_custom_annotations(self, annotation_type, field_path, processor): super(LinkExpiry, self)._process_custom_annotations(annotation_type, field_path, processor) - LinkExpiry_validator = bv.Union(LinkExpiry) - class LinkPassword(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -4958,7 +4748,7 @@ class LinkPassword(bb.Union): :vartype LinkPassword.set_password: str """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition remove_password = None # Attribute is overwritten below the class definition @@ -4973,7 +4763,7 @@ def set_password(cls, val): :param str val: :rtype: LinkPassword """ - return cls("set_password", val) + return cls('set_password', val) def is_remove_password(self): """ @@ -4981,7 +4771,7 @@ def is_remove_password(self): :rtype: bool """ - return self._tag == "remove_password" + return self._tag == 'remove_password' def is_set_password(self): """ @@ -4989,7 +4779,7 @@ def is_set_password(self): :rtype: bool """ - return self._tag == "set_password" + return self._tag == 'set_password' def is_other(self): """ @@ -4997,7 +4787,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_set_password(self): """ @@ -5012,28 +4802,27 @@ def get_set_password(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LinkPassword, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(LinkPassword, self)._process_custom_annotations(annotation_type, field_path, processor) LinkPassword_validator = bv.Union(LinkPassword) - class LinkPermission(bb.Struct): """ Permissions for actions that can be performed on a link. """ __slots__ = [ - "_action_value", - "_allow_value", - "_reason_value", + '_action_value', + '_allow_value', + '_reason_value', ] _has_required_fields = True - def __init__(self, action=None, allow=None, reason=None): + def __init__(self, + action=None, + allow=None, + reason=None): self._action_value = bb.NOT_SET self._allow_value = bb.NOT_SET self._reason_value = bb.NOT_SET @@ -5054,14 +4843,10 @@ def __init__(self, action=None, allow=None, reason=None): reason = bb.Attribute("reason", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LinkPermission, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(LinkPermission, self)._process_custom_annotations(annotation_type, field_path, processor) LinkPermission_validator = bv.Struct(LinkPermission) - class LinkPermissions(bb.Struct): """ :ivar LinkPermissions.resolved_visibility: @@ -5147,61 +4932,59 @@ class LinkPermissions(bb.Struct): """ __slots__ = [ - "_resolved_visibility_value", - "_requested_visibility_value", - "_can_revoke_value", - "_revoke_failure_reason_value", - "_effective_audience_value", - "_link_access_level_value", - "_visibility_policies_value", - "_can_set_expiry_value", - "_can_remove_expiry_value", - "_allow_download_value", - "_can_allow_download_value", - "_can_disallow_download_value", - "_allow_comments_value", - "_team_restricts_comments_value", - "_audience_options_value", - "_can_set_password_value", - "_can_remove_password_value", - "_require_password_value", - "_can_use_extended_sharing_controls_value", - "_can_sync_value", - "_can_request_access_value", - "_enforce_shared_link_password_policy_value", - "_days_to_expire_policy_value", - "_change_shared_link_expiration_policy_value", + '_resolved_visibility_value', + '_requested_visibility_value', + '_can_revoke_value', + '_revoke_failure_reason_value', + '_effective_audience_value', + '_link_access_level_value', + '_visibility_policies_value', + '_can_set_expiry_value', + '_can_remove_expiry_value', + '_allow_download_value', + '_can_allow_download_value', + '_can_disallow_download_value', + '_allow_comments_value', + '_team_restricts_comments_value', + '_audience_options_value', + '_can_set_password_value', + '_can_remove_password_value', + '_require_password_value', + '_can_use_extended_sharing_controls_value', + '_can_sync_value', + '_can_request_access_value', + '_enforce_shared_link_password_policy_value', + '_days_to_expire_policy_value', + '_change_shared_link_expiration_policy_value', ] _has_required_fields = True - def __init__( - self, - can_revoke=None, - visibility_policies=None, - can_set_expiry=None, - can_remove_expiry=None, - allow_download=None, - can_allow_download=None, - can_disallow_download=None, - allow_comments=None, - team_restricts_comments=None, - resolved_visibility=None, - requested_visibility=None, - revoke_failure_reason=None, - effective_audience=None, - link_access_level=None, - audience_options=None, - can_set_password=None, - can_remove_password=None, - require_password=None, - can_use_extended_sharing_controls=None, - can_sync=None, - can_request_access=None, - enforce_shared_link_password_policy=None, - days_to_expire_policy=None, - change_shared_link_expiration_policy=None, - ): + def __init__(self, + can_revoke=None, + visibility_policies=None, + can_set_expiry=None, + can_remove_expiry=None, + allow_download=None, + can_allow_download=None, + can_disallow_download=None, + allow_comments=None, + team_restricts_comments=None, + resolved_visibility=None, + requested_visibility=None, + revoke_failure_reason=None, + effective_audience=None, + link_access_level=None, + audience_options=None, + can_set_password=None, + can_remove_password=None, + require_password=None, + can_use_extended_sharing_controls=None, + can_sync=None, + can_request_access=None, + enforce_shared_link_password_policy=None, + days_to_expire_policy=None, + change_shared_link_expiration_policy=None): self._resolved_visibility_value = bb.NOT_SET self._requested_visibility_value = bb.NOT_SET self._can_revoke_value = bb.NOT_SET @@ -5330,9 +5113,7 @@ def __init__( require_password = bb.Attribute("require_password", nullable=True) # Instance attribute type: bool (validator is set below) - can_use_extended_sharing_controls = bb.Attribute( - "can_use_extended_sharing_controls", nullable=True - ) + can_use_extended_sharing_controls = bb.Attribute("can_use_extended_sharing_controls", nullable=True) # Instance attribute type: bool (validator is set below) can_sync = bb.Attribute("can_sync", nullable=True) @@ -5341,27 +5122,19 @@ def __init__( can_request_access = bb.Attribute("can_request_access", nullable=True) # Instance attribute type: team_policies.EnforceLinkPasswordPolicy (validator is set below) - enforce_shared_link_password_policy = bb.Attribute( - "enforce_shared_link_password_policy", nullable=True, user_defined=True - ) + enforce_shared_link_password_policy = bb.Attribute("enforce_shared_link_password_policy", nullable=True, user_defined=True) # Instance attribute type: team_policies.DefaultLinkExpirationDaysPolicy (validator is set below) days_to_expire_policy = bb.Attribute("days_to_expire_policy", nullable=True, user_defined=True) # Instance attribute type: ChangeLinkExpirationPolicy (validator is set below) - change_shared_link_expiration_policy = bb.Attribute( - "change_shared_link_expiration_policy", nullable=True, user_defined=True - ) + change_shared_link_expiration_policy = bb.Attribute("change_shared_link_expiration_policy", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LinkPermissions, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(LinkPermissions, self)._process_custom_annotations(annotation_type, field_path, processor) LinkPermissions_validator = bv.Struct(LinkPermissions) - class LinkSettings(bb.Struct): """ Settings that apply to a link. @@ -5378,15 +5151,19 @@ class LinkSettings(bb.Struct): """ __slots__ = [ - "_access_level_value", - "_audience_value", - "_expiry_value", - "_password_value", + '_access_level_value', + '_audience_value', + '_expiry_value', + '_password_value', ] _has_required_fields = False - def __init__(self, access_level=None, audience=None, expiry=None, password=None): + def __init__(self, + access_level=None, + audience=None, + expiry=None, + password=None): self._access_level_value = bb.NOT_SET self._audience_value = bb.NOT_SET self._expiry_value = bb.NOT_SET @@ -5413,14 +5190,10 @@ def __init__(self, access_level=None, audience=None, expiry=None, password=None) password = bb.Attribute("password", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LinkSettings, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(LinkSettings, self)._process_custom_annotations(annotation_type, field_path, processor) LinkSettings_validator = bv.Struct(LinkSettings) - class ListFileMembersArg(bb.Struct): """ Arguments for @@ -5439,15 +5212,19 @@ class ListFileMembersArg(bb.Struct): """ __slots__ = [ - "_file_value", - "_actions_value", - "_include_inherited_value", - "_limit_value", + '_file_value', + '_actions_value', + '_include_inherited_value', + '_limit_value', ] _has_required_fields = True - def __init__(self, file=None, actions=None, include_inherited=None, limit=None): + def __init__(self, + file=None, + actions=None, + include_inherited=None, + limit=None): self._file_value = bb.NOT_SET self._actions_value = bb.NOT_SET self._include_inherited_value = bb.NOT_SET @@ -5474,14 +5251,10 @@ def __init__(self, file=None, actions=None, include_inherited=None, limit=None): limit = bb.Attribute("limit") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListFileMembersArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ListFileMembersArg, self)._process_custom_annotations(annotation_type, field_path, processor) ListFileMembersArg_validator = bv.Struct(ListFileMembersArg) - class ListFileMembersBatchArg(bb.Struct): """ Arguments for @@ -5495,13 +5268,15 @@ class ListFileMembersBatchArg(bb.Struct): """ __slots__ = [ - "_files_value", - "_limit_value", + '_files_value', + '_limit_value', ] _has_required_fields = True - def __init__(self, files=None, limit=None): + def __init__(self, + files=None, + limit=None): self._files_value = bb.NOT_SET self._limit_value = bb.NOT_SET if files is not None: @@ -5516,14 +5291,10 @@ def __init__(self, files=None, limit=None): limit = bb.Attribute("limit") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListFileMembersBatchArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ListFileMembersBatchArg, self)._process_custom_annotations(annotation_type, field_path, processor) ListFileMembersBatchArg_validator = bv.Struct(ListFileMembersBatchArg) - class ListFileMembersBatchResult(bb.Struct): """ Per-file result for @@ -5536,13 +5307,15 @@ class ListFileMembersBatchResult(bb.Struct): """ __slots__ = [ - "_file_value", - "_result_value", + '_file_value', + '_result_value', ] _has_required_fields = True - def __init__(self, file=None, result=None): + def __init__(self, + file=None, + result=None): self._file_value = bb.NOT_SET self._result_value = bb.NOT_SET if file is not None: @@ -5557,14 +5330,10 @@ def __init__(self, file=None, result=None): result = bb.Attribute("result", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListFileMembersBatchResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ListFileMembersBatchResult, self)._process_custom_annotations(annotation_type, field_path, processor) ListFileMembersBatchResult_validator = bv.Struct(ListFileMembersBatchResult) - class ListFileMembersContinueArg(bb.Struct): """ Arguments for @@ -5579,12 +5348,13 @@ class ListFileMembersContinueArg(bb.Struct): """ __slots__ = [ - "_cursor_value", + '_cursor_value', ] _has_required_fields = True - def __init__(self, cursor=None): + def __init__(self, + cursor=None): self._cursor_value = bb.NOT_SET if cursor is not None: self.cursor = cursor @@ -5593,14 +5363,10 @@ def __init__(self, cursor=None): cursor = bb.Attribute("cursor") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListFileMembersContinueArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ListFileMembersContinueArg, self)._process_custom_annotations(annotation_type, field_path, processor) ListFileMembersContinueArg_validator = bv.Struct(ListFileMembersContinueArg) - class ListFileMembersContinueError(bb.Union): """ Error for @@ -5614,7 +5380,7 @@ class ListFileMembersContinueError(bb.Union): ``ListFileMembersContinueArg.cursor`` is invalid. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition invalid_cursor = None # Attribute is overwritten below the class definition @@ -5629,7 +5395,7 @@ def user_error(cls, val): :param SharingUserError val: :rtype: ListFileMembersContinueError """ - return cls("user_error", val) + return cls('user_error', val) @classmethod def access_error(cls, val): @@ -5640,7 +5406,7 @@ def access_error(cls, val): :param SharingFileAccessError val: :rtype: ListFileMembersContinueError """ - return cls("access_error", val) + return cls('access_error', val) def is_user_error(self): """ @@ -5648,7 +5414,7 @@ def is_user_error(self): :rtype: bool """ - return self._tag == "user_error" + return self._tag == 'user_error' def is_access_error(self): """ @@ -5656,7 +5422,7 @@ def is_access_error(self): :rtype: bool """ - return self._tag == "access_error" + return self._tag == 'access_error' def is_invalid_cursor(self): """ @@ -5664,7 +5430,7 @@ def is_invalid_cursor(self): :rtype: bool """ - return self._tag == "invalid_cursor" + return self._tag == 'invalid_cursor' def is_other(self): """ @@ -5672,7 +5438,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_user_error(self): """ @@ -5695,14 +5461,10 @@ def get_access_error(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListFileMembersContinueError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ListFileMembersContinueError, self)._process_custom_annotations(annotation_type, field_path, processor) ListFileMembersContinueError_validator = bv.Union(ListFileMembersContinueError) - class ListFileMembersCountResult(bb.Struct): """ :ivar ListFileMembersCountResult.members: @@ -5713,13 +5475,15 @@ class ListFileMembersCountResult(bb.Struct): """ __slots__ = [ - "_members_value", - "_member_count_value", + '_members_value', + '_member_count_value', ] _has_required_fields = True - def __init__(self, members=None, member_count=None): + def __init__(self, + members=None, + member_count=None): self._members_value = bb.NOT_SET self._member_count_value = bb.NOT_SET if members is not None: @@ -5734,14 +5498,10 @@ def __init__(self, members=None, member_count=None): member_count = bb.Attribute("member_count") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListFileMembersCountResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ListFileMembersCountResult, self)._process_custom_annotations(annotation_type, field_path, processor) ListFileMembersCountResult_validator = bv.Struct(ListFileMembersCountResult) - class ListFileMembersError(bb.Union): """ Error for :meth:`dropbox.dropbox_client.Dropbox.sharing_list_file_members`. @@ -5751,7 +5511,7 @@ class ListFileMembersError(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -5764,7 +5524,7 @@ def user_error(cls, val): :param SharingUserError val: :rtype: ListFileMembersError """ - return cls("user_error", val) + return cls('user_error', val) @classmethod def access_error(cls, val): @@ -5775,7 +5535,7 @@ def access_error(cls, val): :param SharingFileAccessError val: :rtype: ListFileMembersError """ - return cls("access_error", val) + return cls('access_error', val) def is_user_error(self): """ @@ -5783,7 +5543,7 @@ def is_user_error(self): :rtype: bool """ - return self._tag == "user_error" + return self._tag == 'user_error' def is_access_error(self): """ @@ -5791,7 +5551,7 @@ def is_access_error(self): :rtype: bool """ - return self._tag == "access_error" + return self._tag == 'access_error' def is_other(self): """ @@ -5799,7 +5559,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_user_error(self): """ @@ -5822,14 +5582,10 @@ def get_access_error(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListFileMembersError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ListFileMembersError, self)._process_custom_annotations(annotation_type, field_path, processor) ListFileMembersError_validator = bv.Union(ListFileMembersError) - class ListFileMembersIndividualResult(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -5844,7 +5600,7 @@ class ListFileMembersIndividualResult(bb.Union): :vartype ListFileMembersIndividualResult.access_error: SharingFileAccessError """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -5857,7 +5613,7 @@ def result(cls, val): :param ListFileMembersCountResult val: :rtype: ListFileMembersIndividualResult """ - return cls("result", val) + return cls('result', val) @classmethod def access_error(cls, val): @@ -5868,7 +5624,7 @@ def access_error(cls, val): :param SharingFileAccessError val: :rtype: ListFileMembersIndividualResult """ - return cls("access_error", val) + return cls('access_error', val) def is_result(self): """ @@ -5876,7 +5632,7 @@ def is_result(self): :rtype: bool """ - return self._tag == "result" + return self._tag == 'result' def is_access_error(self): """ @@ -5884,7 +5640,7 @@ def is_access_error(self): :rtype: bool """ - return self._tag == "access_error" + return self._tag == 'access_error' def is_other(self): """ @@ -5892,7 +5648,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_result(self): """ @@ -5919,14 +5675,10 @@ def get_access_error(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListFileMembersIndividualResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ListFileMembersIndividualResult, self)._process_custom_annotations(annotation_type, field_path, processor) ListFileMembersIndividualResult_validator = bv.Union(ListFileMembersIndividualResult) - class ListFilesArg(bb.Struct): """ Arguments for @@ -5942,13 +5694,15 @@ class ListFilesArg(bb.Struct): """ __slots__ = [ - "_limit_value", - "_actions_value", + '_limit_value', + '_actions_value', ] _has_required_fields = False - def __init__(self, limit=None, actions=None): + def __init__(self, + limit=None, + actions=None): self._limit_value = bb.NOT_SET self._actions_value = bb.NOT_SET if limit is not None: @@ -5963,14 +5717,10 @@ def __init__(self, limit=None, actions=None): actions = bb.Attribute("actions", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListFilesArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ListFilesArg, self)._process_custom_annotations(annotation_type, field_path, processor) ListFilesArg_validator = bv.Struct(ListFilesArg) - class ListFilesContinueArg(bb.Struct): """ Arguments for @@ -5981,12 +5731,13 @@ class ListFilesContinueArg(bb.Struct): """ __slots__ = [ - "_cursor_value", + '_cursor_value', ] _has_required_fields = True - def __init__(self, cursor=None): + def __init__(self, + cursor=None): self._cursor_value = bb.NOT_SET if cursor is not None: self.cursor = cursor @@ -5995,14 +5746,10 @@ def __init__(self, cursor=None): cursor = bb.Attribute("cursor") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListFilesContinueArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ListFilesContinueArg, self)._process_custom_annotations(annotation_type, field_path, processor) ListFilesContinueArg_validator = bv.Struct(ListFilesContinueArg) - class ListFilesContinueError(bb.Union): """ Error results for @@ -6019,7 +5766,7 @@ class ListFilesContinueError(bb.Union): ``ListFilesContinueArg.cursor`` is invalid. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition invalid_cursor = None # Attribute is overwritten below the class definition @@ -6034,7 +5781,7 @@ def user_error(cls, val): :param SharingUserError val: :rtype: ListFilesContinueError """ - return cls("user_error", val) + return cls('user_error', val) def is_user_error(self): """ @@ -6042,7 +5789,7 @@ def is_user_error(self): :rtype: bool """ - return self._tag == "user_error" + return self._tag == 'user_error' def is_invalid_cursor(self): """ @@ -6050,7 +5797,7 @@ def is_invalid_cursor(self): :rtype: bool """ - return self._tag == "invalid_cursor" + return self._tag == 'invalid_cursor' def is_other(self): """ @@ -6058,7 +5805,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_user_error(self): """ @@ -6073,14 +5820,10 @@ def get_user_error(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListFilesContinueError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ListFilesContinueError, self)._process_custom_annotations(annotation_type, field_path, processor) ListFilesContinueError_validator = bv.Union(ListFilesContinueError) - class ListFilesResult(bb.Struct): """ Success results for @@ -6093,13 +5836,15 @@ class ListFilesResult(bb.Struct): """ __slots__ = [ - "_entries_value", - "_cursor_value", + '_entries_value', + '_cursor_value', ] _has_required_fields = True - def __init__(self, entries=None, cursor=None): + def __init__(self, + entries=None, + cursor=None): self._entries_value = bb.NOT_SET self._cursor_value = bb.NOT_SET if entries is not None: @@ -6114,14 +5859,10 @@ def __init__(self, entries=None, cursor=None): cursor = bb.Attribute("cursor", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListFilesResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ListFilesResult, self)._process_custom_annotations(annotation_type, field_path, processor) ListFilesResult_validator = bv.Struct(ListFilesResult) - class ListFolderMembersCursorArg(bb.Struct): """ :ivar ListFolderMembersCursorArg.actions: @@ -6134,13 +5875,15 @@ class ListFolderMembersCursorArg(bb.Struct): """ __slots__ = [ - "_actions_value", - "_limit_value", + '_actions_value', + '_limit_value', ] _has_required_fields = False - def __init__(self, actions=None, limit=None): + def __init__(self, + actions=None, + limit=None): self._actions_value = bb.NOT_SET self._limit_value = bb.NOT_SET if actions is not None: @@ -6155,14 +5898,10 @@ def __init__(self, actions=None, limit=None): limit = bb.Attribute("limit") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListFolderMembersCursorArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ListFolderMembersCursorArg, self)._process_custom_annotations(annotation_type, field_path, processor) ListFolderMembersCursorArg_validator = bv.Struct(ListFolderMembersCursorArg) - class ListFolderMembersArgs(ListFolderMembersCursorArg): """ :ivar ListFolderMembersArgs.shared_folder_id: @@ -6176,14 +5915,19 @@ class ListFolderMembersArgs(ListFolderMembersCursorArg): """ __slots__ = [ - "_shared_folder_id_value", - "_path_value", + '_shared_folder_id_value', + '_path_value', ] _has_required_fields = True - def __init__(self, shared_folder_id=None, actions=None, limit=None, path=None): - super(ListFolderMembersArgs, self).__init__(actions, limit) + def __init__(self, + shared_folder_id=None, + actions=None, + limit=None, + path=None): + super(ListFolderMembersArgs, self).__init__(actions, + limit) self._shared_folder_id_value = bb.NOT_SET self._path_value = bb.NOT_SET if shared_folder_id is not None: @@ -6198,14 +5942,10 @@ def __init__(self, shared_folder_id=None, actions=None, limit=None, path=None): path = bb.Attribute("path", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListFolderMembersArgs, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ListFolderMembersArgs, self)._process_custom_annotations(annotation_type, field_path, processor) ListFolderMembersArgs_validator = bv.Struct(ListFolderMembersArgs) - class ListFolderMembersContinueArg(bb.Struct): """ :ivar ListFolderMembersContinueArg.cursor: @@ -6215,12 +5955,13 @@ class ListFolderMembersContinueArg(bb.Struct): """ __slots__ = [ - "_cursor_value", + '_cursor_value', ] _has_required_fields = True - def __init__(self, cursor=None): + def __init__(self, + cursor=None): self._cursor_value = bb.NOT_SET if cursor is not None: self.cursor = cursor @@ -6229,14 +5970,10 @@ def __init__(self, cursor=None): cursor = bb.Attribute("cursor") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListFolderMembersContinueArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ListFolderMembersContinueArg, self)._process_custom_annotations(annotation_type, field_path, processor) ListFolderMembersContinueArg_validator = bv.Struct(ListFolderMembersContinueArg) - class ListFolderMembersContinueError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -6247,7 +5984,7 @@ class ListFolderMembersContinueError(bb.Union): ``ListFolderMembersContinueArg.cursor`` is invalid. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition invalid_cursor = None # Attribute is overwritten below the class definition @@ -6262,7 +5999,7 @@ def access_error(cls, val): :param SharedFolderAccessError val: :rtype: ListFolderMembersContinueError """ - return cls("access_error", val) + return cls('access_error', val) def is_access_error(self): """ @@ -6270,7 +6007,7 @@ def is_access_error(self): :rtype: bool """ - return self._tag == "access_error" + return self._tag == 'access_error' def is_invalid_cursor(self): """ @@ -6278,7 +6015,7 @@ def is_invalid_cursor(self): :rtype: bool """ - return self._tag == "invalid_cursor" + return self._tag == 'invalid_cursor' def is_other(self): """ @@ -6286,7 +6023,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_access_error(self): """ @@ -6299,14 +6036,10 @@ def get_access_error(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListFolderMembersContinueError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ListFolderMembersContinueError, self)._process_custom_annotations(annotation_type, field_path, processor) ListFolderMembersContinueError_validator = bv.Union(ListFolderMembersContinueError) - class ListFoldersArgs(bb.Struct): """ :ivar ListFoldersArgs.limit: @@ -6319,13 +6052,15 @@ class ListFoldersArgs(bb.Struct): """ __slots__ = [ - "_limit_value", - "_actions_value", + '_limit_value', + '_actions_value', ] _has_required_fields = False - def __init__(self, limit=None, actions=None): + def __init__(self, + limit=None, + actions=None): self._limit_value = bb.NOT_SET self._actions_value = bb.NOT_SET if limit is not None: @@ -6340,14 +6075,10 @@ def __init__(self, limit=None, actions=None): actions = bb.Attribute("actions", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListFoldersArgs, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ListFoldersArgs, self)._process_custom_annotations(annotation_type, field_path, processor) ListFoldersArgs_validator = bv.Struct(ListFoldersArgs) - class ListFoldersContinueArg(bb.Struct): """ :ivar ListFoldersContinueArg.cursor: @@ -6356,12 +6087,13 @@ class ListFoldersContinueArg(bb.Struct): """ __slots__ = [ - "_cursor_value", + '_cursor_value', ] _has_required_fields = True - def __init__(self, cursor=None): + def __init__(self, + cursor=None): self._cursor_value = bb.NOT_SET if cursor is not None: self.cursor = cursor @@ -6370,14 +6102,10 @@ def __init__(self, cursor=None): cursor = bb.Attribute("cursor") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListFoldersContinueArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ListFoldersContinueArg, self)._process_custom_annotations(annotation_type, field_path, processor) ListFoldersContinueArg_validator = bv.Struct(ListFoldersContinueArg) - class ListFoldersContinueError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -6388,7 +6116,7 @@ class ListFoldersContinueError(bb.Union): ``ListFoldersContinueArg.cursor`` is invalid. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition invalid_cursor = None # Attribute is overwritten below the class definition @@ -6400,7 +6128,7 @@ def is_invalid_cursor(self): :rtype: bool """ - return self._tag == "invalid_cursor" + return self._tag == 'invalid_cursor' def is_other(self): """ @@ -6408,17 +6136,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListFoldersContinueError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ListFoldersContinueError, self)._process_custom_annotations(annotation_type, field_path, processor) ListFoldersContinueError_validator = bv.Union(ListFoldersContinueError) - class ListFoldersResult(bb.Struct): """ Result for :meth:`dropbox.dropbox_client.Dropbox.sharing_list_folders` or @@ -6438,13 +6162,15 @@ class ListFoldersResult(bb.Struct): """ __slots__ = [ - "_entries_value", - "_cursor_value", + '_entries_value', + '_cursor_value', ] _has_required_fields = True - def __init__(self, entries=None, cursor=None): + def __init__(self, + entries=None, + cursor=None): self._entries_value = bb.NOT_SET self._cursor_value = bb.NOT_SET if entries is not None: @@ -6459,14 +6185,10 @@ def __init__(self, entries=None, cursor=None): cursor = bb.Attribute("cursor", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListFoldersResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ListFoldersResult, self)._process_custom_annotations(annotation_type, field_path, processor) ListFoldersResult_validator = bv.Struct(ListFoldersResult) - class ListSharedLinksArg(bb.Struct): """ :ivar ListSharedLinksArg.path: @@ -6481,14 +6203,17 @@ class ListSharedLinksArg(bb.Struct): """ __slots__ = [ - "_path_value", - "_cursor_value", - "_direct_only_value", + '_path_value', + '_cursor_value', + '_direct_only_value', ] _has_required_fields = False - def __init__(self, path=None, cursor=None, direct_only=None): + def __init__(self, + path=None, + cursor=None, + direct_only=None): self._path_value = bb.NOT_SET self._cursor_value = bb.NOT_SET self._direct_only_value = bb.NOT_SET @@ -6509,14 +6234,10 @@ def __init__(self, path=None, cursor=None, direct_only=None): direct_only = bb.Attribute("direct_only", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListSharedLinksArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ListSharedLinksArg, self)._process_custom_annotations(annotation_type, field_path, processor) ListSharedLinksArg_validator = bv.Struct(ListSharedLinksArg) - class ListSharedLinksError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -6529,7 +6250,7 @@ class ListSharedLinksError(bb.Union): obtain a new cursor. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition reset = None # Attribute is overwritten below the class definition @@ -6544,7 +6265,7 @@ def path(cls, val): :param files.LookupError val: :rtype: ListSharedLinksError """ - return cls("path", val) + return cls('path', val) def is_path(self): """ @@ -6552,7 +6273,7 @@ def is_path(self): :rtype: bool """ - return self._tag == "path" + return self._tag == 'path' def is_reset(self): """ @@ -6560,7 +6281,7 @@ def is_reset(self): :rtype: bool """ - return self._tag == "reset" + return self._tag == 'reset' def is_other(self): """ @@ -6568,7 +6289,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_path(self): """ @@ -6581,14 +6302,10 @@ def get_path(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListSharedLinksError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ListSharedLinksError, self)._process_custom_annotations(annotation_type, field_path, processor) ListSharedLinksError_validator = bv.Union(ListSharedLinksError) - class ListSharedLinksResult(bb.Struct): """ :ivar ListSharedLinksResult.links: @@ -6606,14 +6323,17 @@ class ListSharedLinksResult(bb.Struct): """ __slots__ = [ - "_links_value", - "_has_more_value", - "_cursor_value", + '_links_value', + '_has_more_value', + '_cursor_value', ] _has_required_fields = True - def __init__(self, links=None, has_more=None, cursor=None): + def __init__(self, + links=None, + has_more=None, + cursor=None): self._links_value = bb.NOT_SET self._has_more_value = bb.NOT_SET self._cursor_value = bb.NOT_SET @@ -6634,14 +6354,10 @@ def __init__(self, links=None, has_more=None, cursor=None): cursor = bb.Attribute("cursor", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListSharedLinksResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ListSharedLinksResult, self)._process_custom_annotations(annotation_type, field_path, processor) ListSharedLinksResult_validator = bv.Struct(ListSharedLinksResult) - class MemberAccessLevelResult(bb.Struct): """ Contains information about a member's access level to content after an @@ -6660,14 +6376,17 @@ class MemberAccessLevelResult(bb.Struct): """ __slots__ = [ - "_access_level_value", - "_warning_value", - "_access_details_value", + '_access_level_value', + '_warning_value', + '_access_details_value', ] _has_required_fields = False - def __init__(self, access_level=None, warning=None, access_details=None): + def __init__(self, + access_level=None, + warning=None, + access_details=None): self._access_level_value = bb.NOT_SET self._warning_value = bb.NOT_SET self._access_details_value = bb.NOT_SET @@ -6688,14 +6407,10 @@ def __init__(self, access_level=None, warning=None, access_details=None): access_details = bb.Attribute("access_details", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberAccessLevelResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MemberAccessLevelResult, self)._process_custom_annotations(annotation_type, field_path, processor) MemberAccessLevelResult_validator = bv.Struct(MemberAccessLevelResult) - class MemberAction(bb.Union): """ Actions that may be taken on members of a shared folder. @@ -6718,7 +6433,7 @@ class MemberAction(bb.Union): Remove the member from the folder. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition leave_a_copy = None # Attribute is overwritten below the class definition @@ -6740,7 +6455,7 @@ def is_leave_a_copy(self): :rtype: bool """ - return self._tag == "leave_a_copy" + return self._tag == 'leave_a_copy' def is_make_editor(self): """ @@ -6748,7 +6463,7 @@ def is_make_editor(self): :rtype: bool """ - return self._tag == "make_editor" + return self._tag == 'make_editor' def is_make_owner(self): """ @@ -6756,7 +6471,7 @@ def is_make_owner(self): :rtype: bool """ - return self._tag == "make_owner" + return self._tag == 'make_owner' def is_make_viewer(self): """ @@ -6764,7 +6479,7 @@ def is_make_viewer(self): :rtype: bool """ - return self._tag == "make_viewer" + return self._tag == 'make_viewer' def is_make_viewer_no_comment(self): """ @@ -6772,7 +6487,7 @@ def is_make_viewer_no_comment(self): :rtype: bool """ - return self._tag == "make_viewer_no_comment" + return self._tag == 'make_viewer_no_comment' def is_remove(self): """ @@ -6780,7 +6495,7 @@ def is_remove(self): :rtype: bool """ - return self._tag == "remove" + return self._tag == 'remove' def is_other(self): """ @@ -6788,17 +6503,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberAction, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MemberAction, self)._process_custom_annotations(annotation_type, field_path, processor) MemberAction_validator = bv.Union(MemberAction) - class MemberPermission(bb.Struct): """ Whether the user is allowed to take the action on the associated member. @@ -6813,14 +6524,17 @@ class MemberPermission(bb.Struct): """ __slots__ = [ - "_action_value", - "_allow_value", - "_reason_value", + '_action_value', + '_allow_value', + '_reason_value', ] _has_required_fields = True - def __init__(self, action=None, allow=None, reason=None): + def __init__(self, + action=None, + allow=None, + reason=None): self._action_value = bb.NOT_SET self._allow_value = bb.NOT_SET self._reason_value = bb.NOT_SET @@ -6841,14 +6555,10 @@ def __init__(self, action=None, allow=None, reason=None): reason = bb.Attribute("reason", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberPermission, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MemberPermission, self)._process_custom_annotations(annotation_type, field_path, processor) MemberPermission_validator = bv.Struct(MemberPermission) - class MemberPolicy(bb.Union): """ Policy governing who can be a member of a shared folder. Only applicable to @@ -6866,7 +6576,7 @@ class MemberPolicy(bb.Union): Only a teammate and approved people can become a member. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition team = None # Attribute is overwritten below the class definition @@ -6882,7 +6592,7 @@ def is_team(self): :rtype: bool """ - return self._tag == "team" + return self._tag == 'team' def is_anyone(self): """ @@ -6890,7 +6600,7 @@ def is_anyone(self): :rtype: bool """ - return self._tag == "anyone" + return self._tag == 'anyone' def is_team_and_approved(self): """ @@ -6898,7 +6608,7 @@ def is_team_and_approved(self): :rtype: bool """ - return self._tag == "team_and_approved" + return self._tag == 'team_and_approved' def is_other(self): """ @@ -6906,17 +6616,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MemberPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) MemberPolicy_validator = bv.Union(MemberPolicy) - class MemberSelector(bb.Union): """ Includes different ways to identify a member of a shared folder. @@ -6933,7 +6639,7 @@ class MemberSelector(bb.Union): :vartype MemberSelector.email: str """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -6946,7 +6652,7 @@ def dropbox_id(cls, val): :param str val: :rtype: MemberSelector """ - return cls("dropbox_id", val) + return cls('dropbox_id', val) @classmethod def email(cls, val): @@ -6957,7 +6663,7 @@ def email(cls, val): :param str val: :rtype: MemberSelector """ - return cls("email", val) + return cls('email', val) def is_dropbox_id(self): """ @@ -6965,7 +6671,7 @@ def is_dropbox_id(self): :rtype: bool """ - return self._tag == "dropbox_id" + return self._tag == 'dropbox_id' def is_email(self): """ @@ -6973,7 +6679,7 @@ def is_email(self): :rtype: bool """ - return self._tag == "email" + return self._tag == 'email' def is_other(self): """ @@ -6981,7 +6687,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_dropbox_id(self): """ @@ -7008,14 +6714,10 @@ def get_email(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberSelector, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MemberSelector, self)._process_custom_annotations(annotation_type, field_path, processor) MemberSelector_validator = bv.Union(MemberSelector) - class ModifySharedLinkSettingsArgs(bb.Struct): """ :ivar ModifySharedLinkSettingsArgs.url: @@ -7027,14 +6729,17 @@ class ModifySharedLinkSettingsArgs(bb.Struct): """ __slots__ = [ - "_url_value", - "_settings_value", - "_remove_expiration_value", + '_url_value', + '_settings_value', + '_remove_expiration_value', ] _has_required_fields = True - def __init__(self, url=None, settings=None, remove_expiration=None): + def __init__(self, + url=None, + settings=None, + remove_expiration=None): self._url_value = bb.NOT_SET self._settings_value = bb.NOT_SET self._remove_expiration_value = bb.NOT_SET @@ -7055,14 +6760,10 @@ def __init__(self, url=None, settings=None, remove_expiration=None): remove_expiration = bb.Attribute("remove_expiration") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ModifySharedLinkSettingsArgs, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ModifySharedLinkSettingsArgs, self)._process_custom_annotations(annotation_type, field_path, processor) ModifySharedLinkSettingsArgs_validator = bv.Struct(ModifySharedLinkSettingsArgs) - class ModifySharedLinkSettingsError(SharedLinkError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -7090,7 +6791,7 @@ def settings_error(cls, val): :param SharedLinkSettingsError val: :rtype: ModifySharedLinkSettingsError """ - return cls("settings_error", val) + return cls('settings_error', val) def is_settings_error(self): """ @@ -7098,7 +6799,7 @@ def is_settings_error(self): :rtype: bool """ - return self._tag == "settings_error" + return self._tag == 'settings_error' def is_email_not_verified(self): """ @@ -7106,7 +6807,7 @@ def is_email_not_verified(self): :rtype: bool """ - return self._tag == "email_not_verified" + return self._tag == 'email_not_verified' def get_settings_error(self): """ @@ -7121,14 +6822,10 @@ def get_settings_error(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ModifySharedLinkSettingsError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ModifySharedLinkSettingsError, self)._process_custom_annotations(annotation_type, field_path, processor) ModifySharedLinkSettingsError_validator = bv.Union(ModifySharedLinkSettingsError) - class MountFolderArg(bb.Struct): """ :ivar MountFolderArg.shared_folder_id: @@ -7136,12 +6833,13 @@ class MountFolderArg(bb.Struct): """ __slots__ = [ - "_shared_folder_id_value", + '_shared_folder_id_value', ] _has_required_fields = True - def __init__(self, shared_folder_id=None): + def __init__(self, + shared_folder_id=None): self._shared_folder_id_value = bb.NOT_SET if shared_folder_id is not None: self.shared_folder_id = shared_folder_id @@ -7150,14 +6848,10 @@ def __init__(self, shared_folder_id=None): shared_folder_id = bb.Attribute("shared_folder_id") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MountFolderArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MountFolderArg, self)._process_custom_annotations(annotation_type, field_path, processor) MountFolderArg_validator = bv.Struct(MountFolderArg) - class MountFolderError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -7183,7 +6877,7 @@ class MountFolderError(bb.Union): automounter is responsible for mounting it. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition inside_shared_folder = None # Attribute is overwritten below the class definition @@ -7206,7 +6900,7 @@ def access_error(cls, val): :param SharedFolderAccessError val: :rtype: MountFolderError """ - return cls("access_error", val) + return cls('access_error', val) @classmethod def insufficient_quota(cls, val): @@ -7217,7 +6911,7 @@ def insufficient_quota(cls, val): :param InsufficientQuotaAmounts val: :rtype: MountFolderError """ - return cls("insufficient_quota", val) + return cls('insufficient_quota', val) def is_access_error(self): """ @@ -7225,7 +6919,7 @@ def is_access_error(self): :rtype: bool """ - return self._tag == "access_error" + return self._tag == 'access_error' def is_inside_shared_folder(self): """ @@ -7233,7 +6927,7 @@ def is_inside_shared_folder(self): :rtype: bool """ - return self._tag == "inside_shared_folder" + return self._tag == 'inside_shared_folder' def is_insufficient_quota(self): """ @@ -7241,7 +6935,7 @@ def is_insufficient_quota(self): :rtype: bool """ - return self._tag == "insufficient_quota" + return self._tag == 'insufficient_quota' def is_already_mounted(self): """ @@ -7249,7 +6943,7 @@ def is_already_mounted(self): :rtype: bool """ - return self._tag == "already_mounted" + return self._tag == 'already_mounted' def is_no_permission(self): """ @@ -7257,7 +6951,7 @@ def is_no_permission(self): :rtype: bool """ - return self._tag == "no_permission" + return self._tag == 'no_permission' def is_not_mountable(self): """ @@ -7265,7 +6959,7 @@ def is_not_mountable(self): :rtype: bool """ - return self._tag == "not_mountable" + return self._tag == 'not_mountable' def is_must_automount(self): """ @@ -7273,7 +6967,7 @@ def is_must_automount(self): :rtype: bool """ - return self._tag == "must_automount" + return self._tag == 'must_automount' def is_other(self): """ @@ -7281,7 +6975,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_access_error(self): """ @@ -7306,14 +7000,10 @@ def get_insufficient_quota(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MountFolderError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MountFolderError, self)._process_custom_annotations(annotation_type, field_path, processor) MountFolderError_validator = bv.Union(MountFolderError) - class ParentFolderAccessInfo(bb.Struct): """ Contains information about a parent folder that a member has access to. @@ -7330,15 +7020,19 @@ class ParentFolderAccessInfo(bb.Struct): """ __slots__ = [ - "_folder_name_value", - "_shared_folder_id_value", - "_permissions_value", - "_path_value", + '_folder_name_value', + '_shared_folder_id_value', + '_permissions_value', + '_path_value', ] _has_required_fields = True - def __init__(self, folder_name=None, shared_folder_id=None, permissions=None, path=None): + def __init__(self, + folder_name=None, + shared_folder_id=None, + permissions=None, + path=None): self._folder_name_value = bb.NOT_SET self._shared_folder_id_value = bb.NOT_SET self._permissions_value = bb.NOT_SET @@ -7365,14 +7059,10 @@ def __init__(self, folder_name=None, shared_folder_id=None, permissions=None, pa path = bb.Attribute("path") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ParentFolderAccessInfo, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ParentFolderAccessInfo, self)._process_custom_annotations(annotation_type, field_path, processor) ParentFolderAccessInfo_validator = bv.Struct(ParentFolderAccessInfo) - class PathLinkMetadata(LinkMetadata): """ Metadata for a path-based shared link. @@ -7382,13 +7072,19 @@ class PathLinkMetadata(LinkMetadata): """ __slots__ = [ - "_path_value", + '_path_value', ] _has_required_fields = True - def __init__(self, url=None, visibility=None, path=None, expires=None): - super(PathLinkMetadata, self).__init__(url, visibility, expires) + def __init__(self, + url=None, + visibility=None, + path=None, + expires=None): + super(PathLinkMetadata, self).__init__(url, + visibility, + expires) self._path_value = bb.NOT_SET if path is not None: self.path = path @@ -7397,14 +7093,10 @@ def __init__(self, url=None, visibility=None, path=None, expires=None): path = bb.Attribute("path") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PathLinkMetadata, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PathLinkMetadata, self)._process_custom_annotations(annotation_type, field_path, processor) PathLinkMetadata_validator = bv.Struct(PathLinkMetadata) - class PendingUploadMode(bb.Union): """ Flag to indicate pending upload default (for linking to not-yet-existing @@ -7432,7 +7124,7 @@ def is_file(self): :rtype: bool """ - return self._tag == "file" + return self._tag == 'file' def is_folder(self): """ @@ -7440,17 +7132,13 @@ def is_folder(self): :rtype: bool """ - return self._tag == "folder" + return self._tag == 'folder' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PendingUploadMode, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PendingUploadMode, self)._process_custom_annotations(annotation_type, field_path, processor) PendingUploadMode_validator = bv.Union(PendingUploadMode) - class PermissionDeniedReason(bb.Union): """ Possible reasons the user is denied a permission. @@ -7490,7 +7178,7 @@ class PermissionDeniedReason(bb.Union): Policy cannot be changed due to restrictions from parent folder. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition user_not_same_team_as_owner = None # Attribute is overwritten below the class definition @@ -7531,7 +7219,7 @@ def insufficient_plan(cls, val): :param InsufficientPlan val: :rtype: PermissionDeniedReason """ - return cls("insufficient_plan", val) + return cls('insufficient_plan', val) def is_user_not_same_team_as_owner(self): """ @@ -7539,7 +7227,7 @@ def is_user_not_same_team_as_owner(self): :rtype: bool """ - return self._tag == "user_not_same_team_as_owner" + return self._tag == 'user_not_same_team_as_owner' def is_user_not_allowed_by_owner(self): """ @@ -7547,7 +7235,7 @@ def is_user_not_allowed_by_owner(self): :rtype: bool """ - return self._tag == "user_not_allowed_by_owner" + return self._tag == 'user_not_allowed_by_owner' def is_target_is_indirect_member(self): """ @@ -7555,7 +7243,7 @@ def is_target_is_indirect_member(self): :rtype: bool """ - return self._tag == "target_is_indirect_member" + return self._tag == 'target_is_indirect_member' def is_target_is_owner(self): """ @@ -7563,7 +7251,7 @@ def is_target_is_owner(self): :rtype: bool """ - return self._tag == "target_is_owner" + return self._tag == 'target_is_owner' def is_target_is_self(self): """ @@ -7571,7 +7259,7 @@ def is_target_is_self(self): :rtype: bool """ - return self._tag == "target_is_self" + return self._tag == 'target_is_self' def is_target_not_active(self): """ @@ -7579,7 +7267,7 @@ def is_target_not_active(self): :rtype: bool """ - return self._tag == "target_not_active" + return self._tag == 'target_not_active' def is_folder_is_limited_team_folder(self): """ @@ -7587,7 +7275,7 @@ def is_folder_is_limited_team_folder(self): :rtype: bool """ - return self._tag == "folder_is_limited_team_folder" + return self._tag == 'folder_is_limited_team_folder' def is_owner_not_on_team(self): """ @@ -7595,7 +7283,7 @@ def is_owner_not_on_team(self): :rtype: bool """ - return self._tag == "owner_not_on_team" + return self._tag == 'owner_not_on_team' def is_permission_denied(self): """ @@ -7603,7 +7291,7 @@ def is_permission_denied(self): :rtype: bool """ - return self._tag == "permission_denied" + return self._tag == 'permission_denied' def is_restricted_by_team(self): """ @@ -7611,7 +7299,7 @@ def is_restricted_by_team(self): :rtype: bool """ - return self._tag == "restricted_by_team" + return self._tag == 'restricted_by_team' def is_user_account_type(self): """ @@ -7619,7 +7307,7 @@ def is_user_account_type(self): :rtype: bool """ - return self._tag == "user_account_type" + return self._tag == 'user_account_type' def is_user_not_on_team(self): """ @@ -7627,7 +7315,7 @@ def is_user_not_on_team(self): :rtype: bool """ - return self._tag == "user_not_on_team" + return self._tag == 'user_not_on_team' def is_folder_is_inside_shared_folder(self): """ @@ -7635,7 +7323,7 @@ def is_folder_is_inside_shared_folder(self): :rtype: bool """ - return self._tag == "folder_is_inside_shared_folder" + return self._tag == 'folder_is_inside_shared_folder' def is_restricted_by_parent_folder(self): """ @@ -7643,7 +7331,7 @@ def is_restricted_by_parent_folder(self): :rtype: bool """ - return self._tag == "restricted_by_parent_folder" + return self._tag == 'restricted_by_parent_folder' def is_insufficient_plan(self): """ @@ -7651,7 +7339,7 @@ def is_insufficient_plan(self): :rtype: bool """ - return self._tag == "insufficient_plan" + return self._tag == 'insufficient_plan' def is_other(self): """ @@ -7659,7 +7347,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_insufficient_plan(self): """ @@ -7672,14 +7360,10 @@ def get_insufficient_plan(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PermissionDeniedReason, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PermissionDeniedReason, self)._process_custom_annotations(annotation_type, field_path, processor) PermissionDeniedReason_validator = bv.Union(PermissionDeniedReason) - class RelinquishAccessArg(bb.Struct): """ Removes all self-removable access from a file or folder. For folders: always @@ -7692,12 +7376,13 @@ class RelinquishAccessArg(bb.Struct): """ __slots__ = [ - "_file_id_value", + '_file_id_value', ] _has_required_fields = True - def __init__(self, file_id=None): + def __init__(self, + file_id=None): self._file_id_value = bb.NOT_SET if file_id is not None: self.file_id = file_id @@ -7706,14 +7391,10 @@ def __init__(self, file_id=None): file_id = bb.Attribute("file_id") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RelinquishAccessArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(RelinquishAccessArg, self)._process_custom_annotations(annotation_type, field_path, processor) RelinquishAccessArg_validator = bv.Struct(RelinquishAccessArg) - class RelinquishAccessError(bb.Union): """ Error result for the relinquish_access endpoint. @@ -7741,7 +7422,7 @@ class RelinquishAccessError(bb.Union): fallback. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition invalid_file_id = None # Attribute is overwritten below the class definition @@ -7763,7 +7444,7 @@ def is_invalid_file_id(self): :rtype: bool """ - return self._tag == "invalid_file_id" + return self._tag == 'invalid_file_id' def is_email_unverified(self): """ @@ -7771,7 +7452,7 @@ def is_email_unverified(self): :rtype: bool """ - return self._tag == "email_unverified" + return self._tag == 'email_unverified' def is_owner(self): """ @@ -7779,7 +7460,7 @@ def is_owner(self): :rtype: bool """ - return self._tag == "owner" + return self._tag == 'owner' def is_no_explicit_access(self): """ @@ -7787,7 +7468,7 @@ def is_no_explicit_access(self): :rtype: bool """ - return self._tag == "no_explicit_access" + return self._tag == 'no_explicit_access' def is_team_folder(self): """ @@ -7795,7 +7476,7 @@ def is_team_folder(self): :rtype: bool """ - return self._tag == "team_folder" + return self._tag == 'team_folder' def is_no_permission(self): """ @@ -7803,7 +7484,7 @@ def is_no_permission(self): :rtype: bool """ - return self._tag == "no_permission" + return self._tag == 'no_permission' def is_other(self): """ @@ -7811,23 +7492,20 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RelinquishAccessError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(RelinquishAccessError, self)._process_custom_annotations(annotation_type, field_path, processor) RelinquishAccessError_validator = bv.Union(RelinquishAccessError) - class RelinquishAccessResult(bb.Struct): """ Returns an empty response for the relinquish_access endpoint. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -7835,14 +7513,10 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RelinquishAccessResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(RelinquishAccessResult, self)._process_custom_annotations(annotation_type, field_path, processor) RelinquishAccessResult_validator = bv.Struct(RelinquishAccessResult) - class RelinquishFileMembershipArg(bb.Struct): """ :ivar RelinquishFileMembershipArg.file: @@ -7850,12 +7524,13 @@ class RelinquishFileMembershipArg(bb.Struct): """ __slots__ = [ - "_file_value", + '_file_value', ] _has_required_fields = True - def __init__(self, file=None): + def __init__(self, + file=None): self._file_value = bb.NOT_SET if file is not None: self.file = file @@ -7864,14 +7539,10 @@ def __init__(self, file=None): file = bb.Attribute("file") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RelinquishFileMembershipArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(RelinquishFileMembershipArg, self)._process_custom_annotations(annotation_type, field_path, processor) RelinquishFileMembershipArg_validator = bv.Struct(RelinquishFileMembershipArg) - class RelinquishFileMembershipError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -7885,7 +7556,7 @@ class RelinquishFileMembershipError(bb.Union): The current user does not have permission to perform this action. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition group_access = None # Attribute is overwritten below the class definition @@ -7902,7 +7573,7 @@ def access_error(cls, val): :param SharingFileAccessError val: :rtype: RelinquishFileMembershipError """ - return cls("access_error", val) + return cls('access_error', val) def is_access_error(self): """ @@ -7910,7 +7581,7 @@ def is_access_error(self): :rtype: bool """ - return self._tag == "access_error" + return self._tag == 'access_error' def is_group_access(self): """ @@ -7918,7 +7589,7 @@ def is_group_access(self): :rtype: bool """ - return self._tag == "group_access" + return self._tag == 'group_access' def is_no_permission(self): """ @@ -7926,7 +7597,7 @@ def is_no_permission(self): :rtype: bool """ - return self._tag == "no_permission" + return self._tag == 'no_permission' def is_other(self): """ @@ -7934,7 +7605,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_access_error(self): """ @@ -7947,14 +7618,10 @@ def get_access_error(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RelinquishFileMembershipError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(RelinquishFileMembershipError, self)._process_custom_annotations(annotation_type, field_path, processor) RelinquishFileMembershipError_validator = bv.Union(RelinquishFileMembershipError) - class RelinquishFolderMembershipArg(bb.Struct): """ :ivar RelinquishFolderMembershipArg.shared_folder_id: @@ -7966,13 +7633,15 @@ class RelinquishFolderMembershipArg(bb.Struct): """ __slots__ = [ - "_shared_folder_id_value", - "_leave_a_copy_value", + '_shared_folder_id_value', + '_leave_a_copy_value', ] _has_required_fields = True - def __init__(self, shared_folder_id=None, leave_a_copy=None): + def __init__(self, + shared_folder_id=None, + leave_a_copy=None): self._shared_folder_id_value = bb.NOT_SET self._leave_a_copy_value = bb.NOT_SET if shared_folder_id is not None: @@ -7987,14 +7656,10 @@ def __init__(self, shared_folder_id=None, leave_a_copy=None): leave_a_copy = bb.Attribute("leave_a_copy") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RelinquishFolderMembershipArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(RelinquishFolderMembershipArg, self)._process_custom_annotations(annotation_type, field_path, processor) RelinquishFolderMembershipArg_validator = bv.Struct(RelinquishFolderMembershipArg) - class RelinquishFolderMembershipError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -8020,7 +7685,7 @@ class RelinquishFolderMembershipError(bb.Union): can't relinquish inherited membership to folders. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition folder_owner = None # Attribute is overwritten below the class definition @@ -8045,7 +7710,7 @@ def access_error(cls, val): :param SharedFolderAccessError val: :rtype: RelinquishFolderMembershipError """ - return cls("access_error", val) + return cls('access_error', val) def is_access_error(self): """ @@ -8053,7 +7718,7 @@ def is_access_error(self): :rtype: bool """ - return self._tag == "access_error" + return self._tag == 'access_error' def is_folder_owner(self): """ @@ -8061,7 +7726,7 @@ def is_folder_owner(self): :rtype: bool """ - return self._tag == "folder_owner" + return self._tag == 'folder_owner' def is_mounted(self): """ @@ -8069,7 +7734,7 @@ def is_mounted(self): :rtype: bool """ - return self._tag == "mounted" + return self._tag == 'mounted' def is_group_access(self): """ @@ -8077,7 +7742,7 @@ def is_group_access(self): :rtype: bool """ - return self._tag == "group_access" + return self._tag == 'group_access' def is_team_folder(self): """ @@ -8085,7 +7750,7 @@ def is_team_folder(self): :rtype: bool """ - return self._tag == "team_folder" + return self._tag == 'team_folder' def is_no_permission(self): """ @@ -8093,7 +7758,7 @@ def is_no_permission(self): :rtype: bool """ - return self._tag == "no_permission" + return self._tag == 'no_permission' def is_no_explicit_access(self): """ @@ -8101,7 +7766,7 @@ def is_no_explicit_access(self): :rtype: bool """ - return self._tag == "no_explicit_access" + return self._tag == 'no_explicit_access' def is_other(self): """ @@ -8109,7 +7774,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_access_error(self): """ @@ -8122,14 +7787,10 @@ def get_access_error(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RelinquishFolderMembershipError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(RelinquishFolderMembershipError, self)._process_custom_annotations(annotation_type, field_path, processor) RelinquishFolderMembershipError_validator = bv.Union(RelinquishFolderMembershipError) - class RemoveFileMemberArg(bb.Struct): """ Arguments for @@ -8144,13 +7805,15 @@ class RemoveFileMemberArg(bb.Struct): """ __slots__ = [ - "_file_value", - "_member_value", + '_file_value', + '_member_value', ] _has_required_fields = True - def __init__(self, file=None, member=None): + def __init__(self, + file=None, + member=None): self._file_value = bb.NOT_SET self._member_value = bb.NOT_SET if file is not None: @@ -8165,14 +7828,10 @@ def __init__(self, file=None, member=None): member = bb.Attribute("member", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RemoveFileMemberArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(RemoveFileMemberArg, self)._process_custom_annotations(annotation_type, field_path, processor) RemoveFileMemberArg_validator = bv.Struct(RemoveFileMemberArg) - class RemoveFileMemberError(bb.Union): """ Errors for @@ -8189,7 +7848,7 @@ class RemoveFileMemberError(bb.Union): :vartype RemoveFileMemberError.no_explicit_access: MemberAccessLevelResult """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -8202,7 +7861,7 @@ def user_error(cls, val): :param SharingUserError val: :rtype: RemoveFileMemberError """ - return cls("user_error", val) + return cls('user_error', val) @classmethod def access_error(cls, val): @@ -8213,7 +7872,7 @@ def access_error(cls, val): :param SharingFileAccessError val: :rtype: RemoveFileMemberError """ - return cls("access_error", val) + return cls('access_error', val) @classmethod def no_explicit_access(cls, val): @@ -8224,7 +7883,7 @@ def no_explicit_access(cls, val): :param MemberAccessLevelResult val: :rtype: RemoveFileMemberError """ - return cls("no_explicit_access", val) + return cls('no_explicit_access', val) def is_user_error(self): """ @@ -8232,7 +7891,7 @@ def is_user_error(self): :rtype: bool """ - return self._tag == "user_error" + return self._tag == 'user_error' def is_access_error(self): """ @@ -8240,7 +7899,7 @@ def is_access_error(self): :rtype: bool """ - return self._tag == "access_error" + return self._tag == 'access_error' def is_no_explicit_access(self): """ @@ -8248,7 +7907,7 @@ def is_no_explicit_access(self): :rtype: bool """ - return self._tag == "no_explicit_access" + return self._tag == 'no_explicit_access' def is_other(self): """ @@ -8256,7 +7915,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_user_error(self): """ @@ -8293,14 +7952,10 @@ def get_no_explicit_access(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RemoveFileMemberError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(RemoveFileMemberError, self)._process_custom_annotations(annotation_type, field_path, processor) RemoveFileMemberError_validator = bv.Union(RemoveFileMemberError) - class RemoveFolderMemberArg(bb.Struct): """ :ivar RemoveFolderMemberArg.shared_folder_id: @@ -8315,14 +7970,17 @@ class RemoveFolderMemberArg(bb.Struct): """ __slots__ = [ - "_shared_folder_id_value", - "_member_value", - "_leave_a_copy_value", + '_shared_folder_id_value', + '_member_value', + '_leave_a_copy_value', ] _has_required_fields = True - def __init__(self, shared_folder_id=None, member=None, leave_a_copy=None): + def __init__(self, + shared_folder_id=None, + member=None, + leave_a_copy=None): self._shared_folder_id_value = bb.NOT_SET self._member_value = bb.NOT_SET self._leave_a_copy_value = bb.NOT_SET @@ -8343,14 +8001,10 @@ def __init__(self, shared_folder_id=None, member=None, leave_a_copy=None): leave_a_copy = bb.Attribute("leave_a_copy") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RemoveFolderMemberArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(RemoveFolderMemberArg, self)._process_custom_annotations(annotation_type, field_path, processor) RemoveFolderMemberArg_validator = bv.Struct(RemoveFolderMemberArg) - class RemoveFolderMemberError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -8371,7 +8025,7 @@ class RemoveFolderMemberError(bb.Union): remove this user without leaving a copy. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition folder_owner = None # Attribute is overwritten below the class definition @@ -8394,7 +8048,7 @@ def access_error(cls, val): :param SharedFolderAccessError val: :rtype: RemoveFolderMemberError """ - return cls("access_error", val) + return cls('access_error', val) @classmethod def member_error(cls, val): @@ -8405,7 +8059,7 @@ def member_error(cls, val): :param SharedFolderMemberError val: :rtype: RemoveFolderMemberError """ - return cls("member_error", val) + return cls('member_error', val) def is_access_error(self): """ @@ -8413,7 +8067,7 @@ def is_access_error(self): :rtype: bool """ - return self._tag == "access_error" + return self._tag == 'access_error' def is_member_error(self): """ @@ -8421,7 +8075,7 @@ def is_member_error(self): :rtype: bool """ - return self._tag == "member_error" + return self._tag == 'member_error' def is_folder_owner(self): """ @@ -8429,7 +8083,7 @@ def is_folder_owner(self): :rtype: bool """ - return self._tag == "folder_owner" + return self._tag == 'folder_owner' def is_group_access(self): """ @@ -8437,7 +8091,7 @@ def is_group_access(self): :rtype: bool """ - return self._tag == "group_access" + return self._tag == 'group_access' def is_team_folder(self): """ @@ -8445,7 +8099,7 @@ def is_team_folder(self): :rtype: bool """ - return self._tag == "team_folder" + return self._tag == 'team_folder' def is_no_permission(self): """ @@ -8453,7 +8107,7 @@ def is_no_permission(self): :rtype: bool """ - return self._tag == "no_permission" + return self._tag == 'no_permission' def is_too_many_files(self): """ @@ -8461,7 +8115,7 @@ def is_too_many_files(self): :rtype: bool """ - return self._tag == "too_many_files" + return self._tag == 'too_many_files' def is_other(self): """ @@ -8469,7 +8123,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_access_error(self): """ @@ -8492,14 +8146,10 @@ def get_member_error(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RemoveFolderMemberError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(RemoveFolderMemberError, self)._process_custom_annotations(annotation_type, field_path, processor) RemoveFolderMemberError_validator = bv.Union(RemoveFolderMemberError) - class RemoveMemberJobStatus(async_.PollResultBase): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -8521,7 +8171,7 @@ def complete(cls, val): :param MemberAccessLevelResult val: :rtype: RemoveMemberJobStatus """ - return cls("complete", val) + return cls('complete', val) @classmethod def failed(cls, val): @@ -8532,7 +8182,7 @@ def failed(cls, val): :param RemoveFolderMemberError val: :rtype: RemoveMemberJobStatus """ - return cls("failed", val) + return cls('failed', val) def is_complete(self): """ @@ -8540,7 +8190,7 @@ def is_complete(self): :rtype: bool """ - return self._tag == "complete" + return self._tag == 'complete' def is_failed(self): """ @@ -8548,7 +8198,7 @@ def is_failed(self): :rtype: bool """ - return self._tag == "failed" + return self._tag == 'failed' def get_complete(self): """ @@ -8574,14 +8224,10 @@ def get_failed(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RemoveMemberJobStatus, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(RemoveMemberJobStatus, self)._process_custom_annotations(annotation_type, field_path, processor) RemoveMemberJobStatus_validator = bv.Union(RemoveMemberJobStatus) - class RequestedLinkAccessLevel(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -8599,7 +8245,7 @@ class RequestedLinkAccessLevel(bb.Union): Request for the default access level the user has set. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition viewer = None # Attribute is overwritten below the class definition @@ -8617,7 +8263,7 @@ def is_viewer(self): :rtype: bool """ - return self._tag == "viewer" + return self._tag == 'viewer' def is_editor(self): """ @@ -8625,7 +8271,7 @@ def is_editor(self): :rtype: bool """ - return self._tag == "editor" + return self._tag == 'editor' def is_max(self): """ @@ -8633,7 +8279,7 @@ def is_max(self): :rtype: bool """ - return self._tag == "max" + return self._tag == 'max' def is_default(self): """ @@ -8641,7 +8287,7 @@ def is_default(self): :rtype: bool """ - return self._tag == "default" + return self._tag == 'default' def is_other(self): """ @@ -8649,17 +8295,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RequestedLinkAccessLevel, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(RequestedLinkAccessLevel, self)._process_custom_annotations(annotation_type, field_path, processor) RequestedLinkAccessLevel_validator = bv.Union(RequestedLinkAccessLevel) - class RevokeSharedLinkArg(bb.Struct): """ :ivar RevokeSharedLinkArg.url: @@ -8667,12 +8309,13 @@ class RevokeSharedLinkArg(bb.Struct): """ __slots__ = [ - "_url_value", + '_url_value', ] _has_required_fields = True - def __init__(self, url=None): + def __init__(self, + url=None): self._url_value = bb.NOT_SET if url is not None: self.url = url @@ -8681,14 +8324,10 @@ def __init__(self, url=None): url = bb.Attribute("url") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RevokeSharedLinkArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(RevokeSharedLinkArg, self)._process_custom_annotations(annotation_type, field_path, processor) RevokeSharedLinkArg_validator = bv.Struct(RevokeSharedLinkArg) - class RevokeSharedLinkError(SharedLinkError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -8708,17 +8347,13 @@ def is_shared_link_malformed(self): :rtype: bool """ - return self._tag == "shared_link_malformed" + return self._tag == 'shared_link_malformed' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RevokeSharedLinkError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(RevokeSharedLinkError, self)._process_custom_annotations(annotation_type, field_path, processor) RevokeSharedLinkError_validator = bv.Union(RevokeSharedLinkError) - class SetAccessInheritanceArg(bb.Struct): """ :ivar SetAccessInheritanceArg.access_inheritance: @@ -8728,13 +8363,15 @@ class SetAccessInheritanceArg(bb.Struct): """ __slots__ = [ - "_access_inheritance_value", - "_shared_folder_id_value", + '_access_inheritance_value', + '_shared_folder_id_value', ] _has_required_fields = True - def __init__(self, shared_folder_id=None, access_inheritance=None): + def __init__(self, + shared_folder_id=None, + access_inheritance=None): self._access_inheritance_value = bb.NOT_SET self._shared_folder_id_value = bb.NOT_SET if access_inheritance is not None: @@ -8749,14 +8386,10 @@ def __init__(self, shared_folder_id=None, access_inheritance=None): shared_folder_id = bb.Attribute("shared_folder_id") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SetAccessInheritanceArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SetAccessInheritanceArg, self)._process_custom_annotations(annotation_type, field_path, processor) SetAccessInheritanceArg_validator = bv.Struct(SetAccessInheritanceArg) - class SetAccessInheritanceError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -8770,7 +8403,7 @@ class SetAccessInheritanceError(bb.Union): The current user does not have permission to perform this action. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition no_permission = None # Attribute is overwritten below the class definition @@ -8785,7 +8418,7 @@ def access_error(cls, val): :param SharedFolderAccessError val: :rtype: SetAccessInheritanceError """ - return cls("access_error", val) + return cls('access_error', val) def is_access_error(self): """ @@ -8793,7 +8426,7 @@ def is_access_error(self): :rtype: bool """ - return self._tag == "access_error" + return self._tag == 'access_error' def is_no_permission(self): """ @@ -8801,7 +8434,7 @@ def is_no_permission(self): :rtype: bool """ - return self._tag == "no_permission" + return self._tag == 'no_permission' def is_other(self): """ @@ -8809,7 +8442,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_access_error(self): """ @@ -8824,14 +8457,10 @@ def get_access_error(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SetAccessInheritanceError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SetAccessInheritanceError, self)._process_custom_annotations(annotation_type, field_path, processor) SetAccessInheritanceError_validator = bv.Union(SetAccessInheritanceError) - class ShareFolderArgBase(bb.Struct): """ :ivar ShareFolderArgBase.acl_update_policy: @@ -8855,27 +8484,25 @@ class ShareFolderArgBase(bb.Struct): """ __slots__ = [ - "_acl_update_policy_value", - "_force_async_value", - "_member_policy_value", - "_path_value", - "_shared_link_policy_value", - "_viewer_info_policy_value", - "_access_inheritance_value", + '_acl_update_policy_value', + '_force_async_value', + '_member_policy_value', + '_path_value', + '_shared_link_policy_value', + '_viewer_info_policy_value', + '_access_inheritance_value', ] _has_required_fields = True - def __init__( - self, - path=None, - acl_update_policy=None, - force_async=None, - member_policy=None, - shared_link_policy=None, - viewer_info_policy=None, - access_inheritance=None, - ): + def __init__(self, + path=None, + acl_update_policy=None, + force_async=None, + member_policy=None, + shared_link_policy=None, + viewer_info_policy=None, + access_inheritance=None): self._acl_update_policy_value = bb.NOT_SET self._force_async_value = bb.NOT_SET self._member_policy_value = bb.NOT_SET @@ -8920,14 +8547,10 @@ def __init__( access_inheritance = bb.Attribute("access_inheritance", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShareFolderArgBase, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ShareFolderArgBase, self)._process_custom_annotations(annotation_type, field_path, processor) ShareFolderArgBase_validator = bv.Struct(ShareFolderArgBase) - class ShareFolderArg(ShareFolderArgBase): """ :ivar ShareFolderArg.actions: @@ -8940,33 +8563,29 @@ class ShareFolderArg(ShareFolderArgBase): """ __slots__ = [ - "_actions_value", - "_link_settings_value", + '_actions_value', + '_link_settings_value', ] _has_required_fields = True - def __init__( - self, - path=None, - acl_update_policy=None, - force_async=None, - member_policy=None, - shared_link_policy=None, - viewer_info_policy=None, - access_inheritance=None, - actions=None, - link_settings=None, - ): - super(ShareFolderArg, self).__init__( - path, - acl_update_policy, - force_async, - member_policy, - shared_link_policy, - viewer_info_policy, - access_inheritance, - ) + def __init__(self, + path=None, + acl_update_policy=None, + force_async=None, + member_policy=None, + shared_link_policy=None, + viewer_info_policy=None, + access_inheritance=None, + actions=None, + link_settings=None): + super(ShareFolderArg, self).__init__(path, + acl_update_policy, + force_async, + member_policy, + shared_link_policy, + viewer_info_policy, + access_inheritance) self._actions_value = bb.NOT_SET self._link_settings_value = bb.NOT_SET if actions is not None: @@ -8981,14 +8600,10 @@ def __init__( link_settings = bb.Attribute("link_settings", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShareFolderArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ShareFolderArg, self)._process_custom_annotations(annotation_type, field_path, processor) ShareFolderArg_validator = bv.Struct(ShareFolderArg) - class ShareFolderErrorBase(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -9010,7 +8625,7 @@ class ShareFolderErrorBase(bb.Union): ``ShareFolderArg.shared_link_policy``. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition email_unverified = None # Attribute is overwritten below the class definition @@ -9029,7 +8644,7 @@ def bad_path(cls, val): :param SharePathError val: :rtype: ShareFolderErrorBase """ - return cls("bad_path", val) + return cls('bad_path', val) def is_email_unverified(self): """ @@ -9037,7 +8652,7 @@ def is_email_unverified(self): :rtype: bool """ - return self._tag == "email_unverified" + return self._tag == 'email_unverified' def is_bad_path(self): """ @@ -9045,7 +8660,7 @@ def is_bad_path(self): :rtype: bool """ - return self._tag == "bad_path" + return self._tag == 'bad_path' def is_team_policy_disallows_member_policy(self): """ @@ -9053,7 +8668,7 @@ def is_team_policy_disallows_member_policy(self): :rtype: bool """ - return self._tag == "team_policy_disallows_member_policy" + return self._tag == 'team_policy_disallows_member_policy' def is_disallowed_shared_link_policy(self): """ @@ -9061,7 +8676,7 @@ def is_disallowed_shared_link_policy(self): :rtype: bool """ - return self._tag == "disallowed_shared_link_policy" + return self._tag == 'disallowed_shared_link_policy' def is_other(self): """ @@ -9069,7 +8684,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_bad_path(self): """ @@ -9084,14 +8699,10 @@ def get_bad_path(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShareFolderErrorBase, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ShareFolderErrorBase, self)._process_custom_annotations(annotation_type, field_path, processor) ShareFolderErrorBase_validator = bv.Union(ShareFolderErrorBase) - class ShareFolderError(ShareFolderErrorBase): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -9111,17 +8722,13 @@ def is_no_permission(self): :rtype: bool """ - return self._tag == "no_permission" + return self._tag == 'no_permission' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShareFolderError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ShareFolderError, self)._process_custom_annotations(annotation_type, field_path, processor) ShareFolderError_validator = bv.Union(ShareFolderError) - class ShareFolderErrorBaseV2(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -9140,7 +8747,7 @@ class ShareFolderErrorBaseV2(bb.Union): ``ShareFolderArg.shared_link_policy``. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition email_unverified = None # Attribute is overwritten below the class definition @@ -9156,7 +8763,7 @@ def is_email_unverified(self): :rtype: bool """ - return self._tag == "email_unverified" + return self._tag == 'email_unverified' def is_team_policy_disallows_member_policy(self): """ @@ -9164,7 +8771,7 @@ def is_team_policy_disallows_member_policy(self): :rtype: bool """ - return self._tag == "team_policy_disallows_member_policy" + return self._tag == 'team_policy_disallows_member_policy' def is_disallowed_shared_link_policy(self): """ @@ -9172,7 +8779,7 @@ def is_disallowed_shared_link_policy(self): :rtype: bool """ - return self._tag == "disallowed_shared_link_policy" + return self._tag == 'disallowed_shared_link_policy' def is_other(self): """ @@ -9180,17 +8787,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShareFolderErrorBaseV2, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ShareFolderErrorBaseV2, self)._process_custom_annotations(annotation_type, field_path, processor) ShareFolderErrorBaseV2_validator = bv.Union(ShareFolderErrorBaseV2) - class ShareFolderErrorV2(ShareFolderErrorBaseV2): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -9210,17 +8813,13 @@ def is_no_permission(self): :rtype: bool """ - return self._tag == "no_permission" + return self._tag == 'no_permission' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShareFolderErrorV2, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ShareFolderErrorV2, self)._process_custom_annotations(annotation_type, field_path, processor) ShareFolderErrorV2_validator = bv.Union(ShareFolderErrorV2) - class ShareFolderJobStatus(async_.PollResultBase): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -9241,7 +8840,7 @@ def complete(cls, val): :param SharedFolderMetadata val: :rtype: ShareFolderJobStatus """ - return cls("complete", val) + return cls('complete', val) @classmethod def failed(cls, val): @@ -9252,7 +8851,7 @@ def failed(cls, val): :param ShareFolderError val: :rtype: ShareFolderJobStatus """ - return cls("failed", val) + return cls('failed', val) def is_complete(self): """ @@ -9260,7 +8859,7 @@ def is_complete(self): :rtype: bool """ - return self._tag == "complete" + return self._tag == 'complete' def is_failed(self): """ @@ -9268,7 +8867,7 @@ def is_failed(self): :rtype: bool """ - return self._tag == "failed" + return self._tag == 'failed' def get_complete(self): """ @@ -9293,14 +8892,10 @@ def get_failed(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShareFolderJobStatus, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ShareFolderJobStatus, self)._process_custom_annotations(annotation_type, field_path, processor) ShareFolderJobStatus_validator = bv.Union(ShareFolderJobStatus) - class ShareFolderLaunch(async_.LaunchResultBase): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -9317,7 +8912,7 @@ def complete(cls, val): :param SharedFolderMetadata val: :rtype: ShareFolderLaunch """ - return cls("complete", val) + return cls('complete', val) def is_complete(self): """ @@ -9325,7 +8920,7 @@ def is_complete(self): :rtype: bool """ - return self._tag == "complete" + return self._tag == 'complete' def get_complete(self): """ @@ -9338,14 +8933,10 @@ def get_complete(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShareFolderLaunch, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ShareFolderLaunch, self)._process_custom_annotations(annotation_type, field_path, processor) ShareFolderLaunch_validator = bv.Union(ShareFolderLaunch) - class SharePathError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -9389,7 +8980,7 @@ class SharePathError(bb.Union): We do not support sharing the Family folder. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition is_file = None # Attribute is overwritten below the class definition @@ -9432,7 +9023,7 @@ def already_shared(cls, val): :param SharedFolderMetadata val: :rtype: SharePathError """ - return cls("already_shared", val) + return cls('already_shared', val) def is_is_file(self): """ @@ -9440,7 +9031,7 @@ def is_is_file(self): :rtype: bool """ - return self._tag == "is_file" + return self._tag == 'is_file' def is_inside_shared_folder(self): """ @@ -9448,7 +9039,7 @@ def is_inside_shared_folder(self): :rtype: bool """ - return self._tag == "inside_shared_folder" + return self._tag == 'inside_shared_folder' def is_contains_shared_folder(self): """ @@ -9456,7 +9047,7 @@ def is_contains_shared_folder(self): :rtype: bool """ - return self._tag == "contains_shared_folder" + return self._tag == 'contains_shared_folder' def is_contains_app_folder(self): """ @@ -9464,7 +9055,7 @@ def is_contains_app_folder(self): :rtype: bool """ - return self._tag == "contains_app_folder" + return self._tag == 'contains_app_folder' def is_contains_team_folder(self): """ @@ -9472,7 +9063,7 @@ def is_contains_team_folder(self): :rtype: bool """ - return self._tag == "contains_team_folder" + return self._tag == 'contains_team_folder' def is_is_app_folder(self): """ @@ -9480,7 +9071,7 @@ def is_is_app_folder(self): :rtype: bool """ - return self._tag == "is_app_folder" + return self._tag == 'is_app_folder' def is_inside_app_folder(self): """ @@ -9488,7 +9079,7 @@ def is_inside_app_folder(self): :rtype: bool """ - return self._tag == "inside_app_folder" + return self._tag == 'inside_app_folder' def is_is_public_folder(self): """ @@ -9496,7 +9087,7 @@ def is_is_public_folder(self): :rtype: bool """ - return self._tag == "is_public_folder" + return self._tag == 'is_public_folder' def is_inside_public_folder(self): """ @@ -9504,7 +9095,7 @@ def is_inside_public_folder(self): :rtype: bool """ - return self._tag == "inside_public_folder" + return self._tag == 'inside_public_folder' def is_already_shared(self): """ @@ -9512,7 +9103,7 @@ def is_already_shared(self): :rtype: bool """ - return self._tag == "already_shared" + return self._tag == 'already_shared' def is_invalid_path(self): """ @@ -9520,7 +9111,7 @@ def is_invalid_path(self): :rtype: bool """ - return self._tag == "invalid_path" + return self._tag == 'invalid_path' def is_is_osx_package(self): """ @@ -9528,7 +9119,7 @@ def is_is_osx_package(self): :rtype: bool """ - return self._tag == "is_osx_package" + return self._tag == 'is_osx_package' def is_inside_osx_package(self): """ @@ -9536,7 +9127,7 @@ def is_inside_osx_package(self): :rtype: bool """ - return self._tag == "inside_osx_package" + return self._tag == 'inside_osx_package' def is_is_vault(self): """ @@ -9544,7 +9135,7 @@ def is_is_vault(self): :rtype: bool """ - return self._tag == "is_vault" + return self._tag == 'is_vault' def is_is_vault_locked(self): """ @@ -9552,7 +9143,7 @@ def is_is_vault_locked(self): :rtype: bool """ - return self._tag == "is_vault_locked" + return self._tag == 'is_vault_locked' def is_is_family(self): """ @@ -9560,7 +9151,7 @@ def is_is_family(self): :rtype: bool """ - return self._tag == "is_family" + return self._tag == 'is_family' def is_other(self): """ @@ -9568,7 +9159,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_already_shared(self): """ @@ -9584,14 +9175,10 @@ def get_already_shared(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharePathError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharePathError, self)._process_custom_annotations(annotation_type, field_path, processor) SharePathError_validator = bv.Union(SharePathError) - class SharePathErrorBaseV2(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -9631,7 +9218,7 @@ class SharePathErrorBaseV2(bb.Union): We do not support sharing a folder inside a locked Vault. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition is_file = None # Attribute is overwritten below the class definition @@ -9670,7 +9257,7 @@ def already_shared(cls, val): :param SharedFolderMetadata val: :rtype: SharePathErrorBaseV2 """ - return cls("already_shared", val) + return cls('already_shared', val) def is_is_file(self): """ @@ -9678,7 +9265,7 @@ def is_is_file(self): :rtype: bool """ - return self._tag == "is_file" + return self._tag == 'is_file' def is_inside_shared_folder(self): """ @@ -9686,7 +9273,7 @@ def is_inside_shared_folder(self): :rtype: bool """ - return self._tag == "inside_shared_folder" + return self._tag == 'inside_shared_folder' def is_contains_shared_folder(self): """ @@ -9694,7 +9281,7 @@ def is_contains_shared_folder(self): :rtype: bool """ - return self._tag == "contains_shared_folder" + return self._tag == 'contains_shared_folder' def is_contains_team_folder(self): """ @@ -9702,7 +9289,7 @@ def is_contains_team_folder(self): :rtype: bool """ - return self._tag == "contains_team_folder" + return self._tag == 'contains_team_folder' def is_is_app_folder(self): """ @@ -9710,7 +9297,7 @@ def is_is_app_folder(self): :rtype: bool """ - return self._tag == "is_app_folder" + return self._tag == 'is_app_folder' def is_inside_app_folder(self): """ @@ -9718,7 +9305,7 @@ def is_inside_app_folder(self): :rtype: bool """ - return self._tag == "inside_app_folder" + return self._tag == 'inside_app_folder' def is_is_public_folder(self): """ @@ -9726,7 +9313,7 @@ def is_is_public_folder(self): :rtype: bool """ - return self._tag == "is_public_folder" + return self._tag == 'is_public_folder' def is_inside_public_folder(self): """ @@ -9734,7 +9321,7 @@ def is_inside_public_folder(self): :rtype: bool """ - return self._tag == "inside_public_folder" + return self._tag == 'inside_public_folder' def is_already_shared(self): """ @@ -9742,7 +9329,7 @@ def is_already_shared(self): :rtype: bool """ - return self._tag == "already_shared" + return self._tag == 'already_shared' def is_invalid_path(self): """ @@ -9750,7 +9337,7 @@ def is_invalid_path(self): :rtype: bool """ - return self._tag == "invalid_path" + return self._tag == 'invalid_path' def is_is_osx_package(self): """ @@ -9758,7 +9345,7 @@ def is_is_osx_package(self): :rtype: bool """ - return self._tag == "is_osx_package" + return self._tag == 'is_osx_package' def is_inside_osx_package(self): """ @@ -9766,7 +9353,7 @@ def is_inside_osx_package(self): :rtype: bool """ - return self._tag == "inside_osx_package" + return self._tag == 'inside_osx_package' def is_is_vault(self): """ @@ -9774,7 +9361,7 @@ def is_is_vault(self): :rtype: bool """ - return self._tag == "is_vault" + return self._tag == 'is_vault' def is_is_vault_locked(self): """ @@ -9782,7 +9369,7 @@ def is_is_vault_locked(self): :rtype: bool """ - return self._tag == "is_vault_locked" + return self._tag == 'is_vault_locked' def is_other(self): """ @@ -9790,7 +9377,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_already_shared(self): """ @@ -9806,14 +9393,10 @@ def get_already_shared(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharePathErrorBaseV2, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharePathErrorBaseV2, self)._process_custom_annotations(annotation_type, field_path, processor) SharePathErrorBaseV2_validator = bv.Union(SharePathErrorBaseV2) - class SharePathErrorV2(SharePathErrorBaseV2): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -9837,7 +9420,7 @@ def is_is_family(self): :rtype: bool """ - return self._tag == "is_family" + return self._tag == 'is_family' def is_contains_app_folder(self): """ @@ -9845,17 +9428,13 @@ def is_contains_app_folder(self): :rtype: bool """ - return self._tag == "contains_app_folder" + return self._tag == 'contains_app_folder' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharePathErrorV2, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharePathErrorV2, self)._process_custom_annotations(annotation_type, field_path, processor) SharePathErrorV2_validator = bv.Union(SharePathErrorV2) - class SharedContentLinkMetadata(SharedContentLinkMetadataBase): """ Metadata of a shared link for a file or folder. @@ -9869,33 +9448,29 @@ class SharedContentLinkMetadata(SharedContentLinkMetadataBase): """ __slots__ = [ - "_audience_exceptions_value", - "_url_value", + '_audience_exceptions_value', + '_url_value', ] _has_required_fields = True - def __init__( - self, - audience_options=None, - current_audience=None, - link_permissions=None, - password_protected=None, - url=None, - access_level=None, - audience_restricting_shared_folder=None, - expiry=None, - audience_exceptions=None, - ): - super(SharedContentLinkMetadata, self).__init__( - audience_options, - current_audience, - link_permissions, - password_protected, - access_level, - audience_restricting_shared_folder, - expiry, - ) + def __init__(self, + audience_options=None, + current_audience=None, + link_permissions=None, + password_protected=None, + url=None, + access_level=None, + audience_restricting_shared_folder=None, + expiry=None, + audience_exceptions=None): + super(SharedContentLinkMetadata, self).__init__(audience_options, + current_audience, + link_permissions, + password_protected, + access_level, + audience_restricting_shared_folder, + expiry) self._audience_exceptions_value = bb.NOT_SET self._url_value = bb.NOT_SET if audience_exceptions is not None: @@ -9910,14 +9485,10 @@ def __init__( url = bb.Attribute("url") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentLinkMetadata, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedContentLinkMetadata, self)._process_custom_annotations(annotation_type, field_path, processor) SharedContentLinkMetadata_validator = bv.Struct(SharedContentLinkMetadata) - class SharedFileMembers(bb.Struct): """ Shared file user, group, and invitee membership. Used for the results of @@ -9941,15 +9512,19 @@ class SharedFileMembers(bb.Struct): """ __slots__ = [ - "_users_value", - "_groups_value", - "_invitees_value", - "_cursor_value", + '_users_value', + '_groups_value', + '_invitees_value', + '_cursor_value', ] _has_required_fields = True - def __init__(self, users=None, groups=None, invitees=None, cursor=None): + def __init__(self, + users=None, + groups=None, + invitees=None, + cursor=None): self._users_value = bb.NOT_SET self._groups_value = bb.NOT_SET self._invitees_value = bb.NOT_SET @@ -9976,14 +9551,10 @@ def __init__(self, users=None, groups=None, invitees=None, cursor=None): cursor = bb.Attribute("cursor", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedFileMembers, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedFileMembers, self)._process_custom_annotations(annotation_type, field_path, processor) SharedFileMembers_validator = bv.Struct(SharedFileMembers) - class SharedFileMetadata(bb.Struct): """ Properties of the shared file. @@ -10034,41 +9605,39 @@ class SharedFileMetadata(bb.Struct): """ __slots__ = [ - "_access_type_value", - "_id_value", - "_expected_link_metadata_value", - "_link_metadata_value", - "_name_value", - "_owner_display_names_value", - "_owner_team_value", - "_parent_shared_folder_id_value", - "_path_display_value", - "_path_lower_value", - "_permissions_value", - "_policy_value", - "_preview_url_value", - "_time_invited_value", + '_access_type_value', + '_id_value', + '_expected_link_metadata_value', + '_link_metadata_value', + '_name_value', + '_owner_display_names_value', + '_owner_team_value', + '_parent_shared_folder_id_value', + '_path_display_value', + '_path_lower_value', + '_permissions_value', + '_policy_value', + '_preview_url_value', + '_time_invited_value', ] _has_required_fields = True - def __init__( - self, - id=None, - name=None, - policy=None, - preview_url=None, - access_type=None, - expected_link_metadata=None, - link_metadata=None, - owner_display_names=None, - owner_team=None, - parent_shared_folder_id=None, - path_display=None, - path_lower=None, - permissions=None, - time_invited=None, - ): + def __init__(self, + id=None, + name=None, + policy=None, + preview_url=None, + access_type=None, + expected_link_metadata=None, + link_metadata=None, + owner_display_names=None, + owner_team=None, + parent_shared_folder_id=None, + path_display=None, + path_lower=None, + permissions=None, + time_invited=None): self._access_type_value = bb.NOT_SET self._id_value = bb.NOT_SET self._expected_link_metadata_value = bb.NOT_SET @@ -10119,9 +9688,7 @@ def __init__( id = bb.Attribute("id") # Instance attribute type: ExpectedSharedContentLinkMetadata (validator is set below) - expected_link_metadata = bb.Attribute( - "expected_link_metadata", nullable=True, user_defined=True - ) + expected_link_metadata = bb.Attribute("expected_link_metadata", nullable=True, user_defined=True) # Instance attribute type: SharedContentLinkMetadata (validator is set below) link_metadata = bb.Attribute("link_metadata", nullable=True, user_defined=True) @@ -10157,14 +9724,10 @@ def __init__( time_invited = bb.Attribute("time_invited", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedFileMetadata, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedFileMetadata, self)._process_custom_annotations(annotation_type, field_path, processor) SharedFileMetadata_validator = bv.Struct(SharedFileMetadata) - class SharedFolderAccessError(bb.Union): """ There is an error accessing the shared folder. @@ -10185,7 +9748,7 @@ class SharedFolderAccessError(bb.Union): The shared folder is unmounted. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition invalid_id = None # Attribute is overwritten below the class definition @@ -10205,7 +9768,7 @@ def is_invalid_id(self): :rtype: bool """ - return self._tag == "invalid_id" + return self._tag == 'invalid_id' def is_not_a_member(self): """ @@ -10213,7 +9776,7 @@ def is_not_a_member(self): :rtype: bool """ - return self._tag == "not_a_member" + return self._tag == 'not_a_member' def is_invalid_member(self): """ @@ -10221,7 +9784,7 @@ def is_invalid_member(self): :rtype: bool """ - return self._tag == "invalid_member" + return self._tag == 'invalid_member' def is_email_unverified(self): """ @@ -10229,7 +9792,7 @@ def is_email_unverified(self): :rtype: bool """ - return self._tag == "email_unverified" + return self._tag == 'email_unverified' def is_unmounted(self): """ @@ -10237,7 +9800,7 @@ def is_unmounted(self): :rtype: bool """ - return self._tag == "unmounted" + return self._tag == 'unmounted' def is_other(self): """ @@ -10245,17 +9808,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedFolderAccessError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedFolderAccessError, self)._process_custom_annotations(annotation_type, field_path, processor) SharedFolderAccessError_validator = bv.Union(SharedFolderAccessError) - class SharedFolderMemberError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -10271,7 +9830,7 @@ class SharedFolderMemberError(bb.Union): :vartype SharedFolderMemberError.no_explicit_access: MemberAccessLevelResult """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition invalid_dropbox_id = None # Attribute is overwritten below the class definition @@ -10288,7 +9847,7 @@ def no_explicit_access(cls, val): :param MemberAccessLevelResult val: :rtype: SharedFolderMemberError """ - return cls("no_explicit_access", val) + return cls('no_explicit_access', val) def is_invalid_dropbox_id(self): """ @@ -10296,7 +9855,7 @@ def is_invalid_dropbox_id(self): :rtype: bool """ - return self._tag == "invalid_dropbox_id" + return self._tag == 'invalid_dropbox_id' def is_not_a_member(self): """ @@ -10304,7 +9863,7 @@ def is_not_a_member(self): :rtype: bool """ - return self._tag == "not_a_member" + return self._tag == 'not_a_member' def is_no_explicit_access(self): """ @@ -10312,7 +9871,7 @@ def is_no_explicit_access(self): :rtype: bool """ - return self._tag == "no_explicit_access" + return self._tag == 'no_explicit_access' def is_other(self): """ @@ -10320,7 +9879,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_no_explicit_access(self): """ @@ -10335,14 +9894,10 @@ def get_no_explicit_access(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedFolderMemberError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedFolderMemberError, self)._process_custom_annotations(annotation_type, field_path, processor) SharedFolderMemberError_validator = bv.Union(SharedFolderMemberError) - class SharedFolderMembers(bb.Struct): """ Shared folder user and group membership. @@ -10361,15 +9916,19 @@ class SharedFolderMembers(bb.Struct): """ __slots__ = [ - "_users_value", - "_groups_value", - "_invitees_value", - "_cursor_value", + '_users_value', + '_groups_value', + '_invitees_value', + '_cursor_value', ] _has_required_fields = True - def __init__(self, users=None, groups=None, invitees=None, cursor=None): + def __init__(self, + users=None, + groups=None, + invitees=None, + cursor=None): self._users_value = bb.NOT_SET self._groups_value = bb.NOT_SET self._invitees_value = bb.NOT_SET @@ -10396,14 +9955,10 @@ def __init__(self, users=None, groups=None, invitees=None, cursor=None): cursor = bb.Attribute("cursor", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedFolderMembers, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedFolderMembers, self)._process_custom_annotations(annotation_type, field_path, processor) SharedFolderMembers_validator = bv.Struct(SharedFolderMembers) - class SharedFolderMetadataBase(bb.Struct): """ Properties of the shared folder. @@ -10435,31 +9990,29 @@ class SharedFolderMetadataBase(bb.Struct): """ __slots__ = [ - "_access_type_value", - "_is_inside_team_folder_value", - "_is_team_folder_value", - "_owner_display_names_value", - "_owner_team_value", - "_parent_shared_folder_id_value", - "_path_display_value", - "_path_lower_value", - "_parent_folder_name_value", + '_access_type_value', + '_is_inside_team_folder_value', + '_is_team_folder_value', + '_owner_display_names_value', + '_owner_team_value', + '_parent_shared_folder_id_value', + '_path_display_value', + '_path_lower_value', + '_parent_folder_name_value', ] _has_required_fields = True - def __init__( - self, - access_type=None, - is_inside_team_folder=None, - is_team_folder=None, - owner_display_names=None, - owner_team=None, - parent_shared_folder_id=None, - path_display=None, - path_lower=None, - parent_folder_name=None, - ): + def __init__(self, + access_type=None, + is_inside_team_folder=None, + is_team_folder=None, + owner_display_names=None, + owner_team=None, + parent_shared_folder_id=None, + path_display=None, + path_lower=None, + parent_folder_name=None): self._access_type_value = bb.NOT_SET self._is_inside_team_folder_value = bb.NOT_SET self._is_team_folder_value = bb.NOT_SET @@ -10516,14 +10069,10 @@ def __init__( parent_folder_name = bb.Attribute("parent_folder_name", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedFolderMetadataBase, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedFolderMetadataBase, self)._process_custom_annotations(annotation_type, field_path, processor) SharedFolderMetadataBase_validator = bv.Struct(SharedFolderMetadataBase) - class SharedFolderMetadata(SharedFolderMetadataBase): """ The metadata which includes basic information about the shared folder. @@ -10553,51 +10102,47 @@ class SharedFolderMetadata(SharedFolderMetadataBase): """ __slots__ = [ - "_link_metadata_value", - "_name_value", - "_permissions_value", - "_policy_value", - "_preview_url_value", - "_shared_folder_id_value", - "_time_invited_value", - "_access_inheritance_value", - "_folder_id_value", + '_link_metadata_value', + '_name_value', + '_permissions_value', + '_policy_value', + '_preview_url_value', + '_shared_folder_id_value', + '_time_invited_value', + '_access_inheritance_value', + '_folder_id_value', ] _has_required_fields = True - def __init__( - self, - access_type=None, - is_inside_team_folder=None, - is_team_folder=None, - name=None, - policy=None, - preview_url=None, - shared_folder_id=None, - time_invited=None, - owner_display_names=None, - owner_team=None, - parent_shared_folder_id=None, - path_display=None, - path_lower=None, - parent_folder_name=None, - link_metadata=None, - permissions=None, - access_inheritance=None, - folder_id=None, - ): - super(SharedFolderMetadata, self).__init__( - access_type, - is_inside_team_folder, - is_team_folder, - owner_display_names, - owner_team, - parent_shared_folder_id, - path_display, - path_lower, - parent_folder_name, - ) + def __init__(self, + access_type=None, + is_inside_team_folder=None, + is_team_folder=None, + name=None, + policy=None, + preview_url=None, + shared_folder_id=None, + time_invited=None, + owner_display_names=None, + owner_team=None, + parent_shared_folder_id=None, + path_display=None, + path_lower=None, + parent_folder_name=None, + link_metadata=None, + permissions=None, + access_inheritance=None, + folder_id=None): + super(SharedFolderMetadata, self).__init__(access_type, + is_inside_team_folder, + is_team_folder, + owner_display_names, + owner_team, + parent_shared_folder_id, + path_display, + path_lower, + parent_folder_name) self._link_metadata_value = bb.NOT_SET self._name_value = bb.NOT_SET self._permissions_value = bb.NOT_SET @@ -10654,14 +10199,10 @@ def __init__( folder_id = bb.Attribute("folder_id", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedFolderMetadata, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedFolderMetadata, self)._process_custom_annotations(annotation_type, field_path, processor) SharedFolderMetadata_validator = bv.Struct(SharedFolderMetadata) - class SharedLinkAccessFailureReason(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -10682,7 +10223,7 @@ class SharedLinkAccessFailureReason(bb.Union): Access is allowed for the shared link's owner only. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition login_required = None # Attribute is overwritten below the class definition @@ -10702,7 +10243,7 @@ def is_login_required(self): :rtype: bool """ - return self._tag == "login_required" + return self._tag == 'login_required' def is_email_verify_required(self): """ @@ -10710,7 +10251,7 @@ def is_email_verify_required(self): :rtype: bool """ - return self._tag == "email_verify_required" + return self._tag == 'email_verify_required' def is_password_required(self): """ @@ -10718,7 +10259,7 @@ def is_password_required(self): :rtype: bool """ - return self._tag == "password_required" + return self._tag == 'password_required' def is_team_only(self): """ @@ -10726,7 +10267,7 @@ def is_team_only(self): :rtype: bool """ - return self._tag == "team_only" + return self._tag == 'team_only' def is_owner_only(self): """ @@ -10734,7 +10275,7 @@ def is_owner_only(self): :rtype: bool """ - return self._tag == "owner_only" + return self._tag == 'owner_only' def is_other(self): """ @@ -10742,17 +10283,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkAccessFailureReason, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedLinkAccessFailureReason, self)._process_custom_annotations(annotation_type, field_path, processor) SharedLinkAccessFailureReason_validator = bv.Union(SharedLinkAccessFailureReason) - class SharedLinkAlreadyExistsMetadata(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -10764,7 +10301,7 @@ class SharedLinkAlreadyExistsMetadata(bb.Union): :vartype SharedLinkAlreadyExistsMetadata.metadata: SharedLinkMetadata """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -10777,7 +10314,7 @@ def metadata(cls, val): :param SharedLinkMetadata val: :rtype: SharedLinkAlreadyExistsMetadata """ - return cls("metadata", val) + return cls('metadata', val) def is_metadata(self): """ @@ -10785,7 +10322,7 @@ def is_metadata(self): :rtype: bool """ - return self._tag == "metadata" + return self._tag == 'metadata' def is_other(self): """ @@ -10793,7 +10330,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_metadata(self): """ @@ -10808,14 +10345,10 @@ def get_metadata(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkAlreadyExistsMetadata, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedLinkAlreadyExistsMetadata, self)._process_custom_annotations(annotation_type, field_path, processor) SharedLinkAlreadyExistsMetadata_validator = bv.Union(SharedLinkAlreadyExistsMetadata) - class SharedLinkMetadataError(SharedLinkError): """ The potential errors for a call to get_shared_link_metadata. @@ -10826,14 +10359,10 @@ class SharedLinkMetadataError(SharedLinkError): """ def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkMetadataError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedLinkMetadataError, self)._process_custom_annotations(annotation_type, field_path, processor) SharedLinkMetadataError_validator = bv.Union(SharedLinkMetadataError) - class SharedLinkPolicy(bb.Union): """ Who can view shared links in this folder. @@ -10851,7 +10380,7 @@ class SharedLinkPolicy(bb.Union): Links can only be shared among members of the shared folder. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition anyone = None # Attribute is overwritten below the class definition @@ -10867,7 +10396,7 @@ def is_anyone(self): :rtype: bool """ - return self._tag == "anyone" + return self._tag == 'anyone' def is_team(self): """ @@ -10875,7 +10404,7 @@ def is_team(self): :rtype: bool """ - return self._tag == "team" + return self._tag == 'team' def is_members(self): """ @@ -10883,7 +10412,7 @@ def is_members(self): :rtype: bool """ - return self._tag == "members" + return self._tag == 'members' def is_other(self): """ @@ -10891,17 +10420,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedLinkPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) SharedLinkPolicy_validator = bv.Union(SharedLinkPolicy) - class SharedLinkSettings(bb.Struct): """ :ivar SharedLinkSettings.require_password: @@ -10928,27 +10453,25 @@ class SharedLinkSettings(bb.Struct): """ __slots__ = [ - "_require_password_value", - "_link_password_value", - "_expires_value", - "_audience_value", - "_access_value", - "_requested_visibility_value", - "_allow_download_value", + '_require_password_value', + '_link_password_value', + '_expires_value', + '_audience_value', + '_access_value', + '_requested_visibility_value', + '_allow_download_value', ] _has_required_fields = False - def __init__( - self, - require_password=None, - link_password=None, - expires=None, - audience=None, - access=None, - requested_visibility=None, - allow_download=None, - ): + def __init__(self, + require_password=None, + link_password=None, + expires=None, + audience=None, + access=None, + requested_visibility=None, + allow_download=None): self._require_password_value = bb.NOT_SET self._link_password_value = bb.NOT_SET self._expires_value = bb.NOT_SET @@ -10993,14 +10516,10 @@ def __init__( allow_download = bb.Attribute("allow_download", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkSettings, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedLinkSettings, self)._process_custom_annotations(annotation_type, field_path, processor) SharedLinkSettings_validator = bv.Struct(SharedLinkSettings) - class SharedLinkSettingsError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -11032,7 +10551,7 @@ def is_invalid_settings(self): :rtype: bool """ - return self._tag == "invalid_settings" + return self._tag == 'invalid_settings' def is_not_authorized(self): """ @@ -11040,17 +10559,13 @@ def is_not_authorized(self): :rtype: bool """ - return self._tag == "not_authorized" + return self._tag == 'not_authorized' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkSettingsError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedLinkSettingsError, self)._process_custom_annotations(annotation_type, field_path, processor) SharedLinkSettingsError_validator = bv.Union(SharedLinkSettingsError) - class SharingFileAccessError(bb.Union): """ User could not access this file. @@ -11074,7 +10589,7 @@ class SharingFileAccessError(bb.Union): A Mac OS X package can't be shared this way. Use a shared link instead. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition no_permission = None # Attribute is overwritten below the class definition @@ -11094,7 +10609,7 @@ def is_no_permission(self): :rtype: bool """ - return self._tag == "no_permission" + return self._tag == 'no_permission' def is_invalid_file(self): """ @@ -11102,7 +10617,7 @@ def is_invalid_file(self): :rtype: bool """ - return self._tag == "invalid_file" + return self._tag == 'invalid_file' def is_is_folder(self): """ @@ -11110,7 +10625,7 @@ def is_is_folder(self): :rtype: bool """ - return self._tag == "is_folder" + return self._tag == 'is_folder' def is_inside_public_folder(self): """ @@ -11118,7 +10633,7 @@ def is_inside_public_folder(self): :rtype: bool """ - return self._tag == "inside_public_folder" + return self._tag == 'inside_public_folder' def is_inside_osx_package(self): """ @@ -11126,7 +10641,7 @@ def is_inside_osx_package(self): :rtype: bool """ - return self._tag == "inside_osx_package" + return self._tag == 'inside_osx_package' def is_other(self): """ @@ -11134,17 +10649,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharingFileAccessError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharingFileAccessError, self)._process_custom_annotations(annotation_type, field_path, processor) SharingFileAccessError_validator = bv.Union(SharingFileAccessError) - class SharingUserError(bb.Union): """ User account had a problem preventing this action. @@ -11159,7 +10670,7 @@ class SharingUserError(bb.Union): their email address `here `_. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition email_unverified = None # Attribute is overwritten below the class definition @@ -11171,7 +10682,7 @@ def is_email_unverified(self): :rtype: bool """ - return self._tag == "email_unverified" + return self._tag == 'email_unverified' def is_other(self): """ @@ -11179,17 +10690,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharingUserError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharingUserError, self)._process_custom_annotations(annotation_type, field_path, processor) SharingUserError_validator = bv.Union(SharingUserError) - class TeamMemberInfo(bb.Struct): """ Information about a team member. @@ -11204,14 +10711,17 @@ class TeamMemberInfo(bb.Struct): """ __slots__ = [ - "_team_info_value", - "_display_name_value", - "_member_id_value", + '_team_info_value', + '_display_name_value', + '_member_id_value', ] _has_required_fields = True - def __init__(self, team_info=None, display_name=None, member_id=None): + def __init__(self, + team_info=None, + display_name=None, + member_id=None): self._team_info_value = bb.NOT_SET self._display_name_value = bb.NOT_SET self._member_id_value = bb.NOT_SET @@ -11232,14 +10742,10 @@ def __init__(self, team_info=None, display_name=None, member_id=None): member_id = bb.Attribute("member_id", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMemberInfo, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamMemberInfo, self)._process_custom_annotations(annotation_type, field_path, processor) TeamMemberInfo_validator = bv.Struct(TeamMemberInfo) - class TransferFolderArg(bb.Struct): """ :ivar TransferFolderArg.shared_folder_id: @@ -11249,13 +10755,15 @@ class TransferFolderArg(bb.Struct): """ __slots__ = [ - "_shared_folder_id_value", - "_to_dropbox_id_value", + '_shared_folder_id_value', + '_to_dropbox_id_value', ] _has_required_fields = True - def __init__(self, shared_folder_id=None, to_dropbox_id=None): + def __init__(self, + shared_folder_id=None, + to_dropbox_id=None): self._shared_folder_id_value = bb.NOT_SET self._to_dropbox_id_value = bb.NOT_SET if shared_folder_id is not None: @@ -11270,14 +10778,10 @@ def __init__(self, shared_folder_id=None, to_dropbox_id=None): to_dropbox_id = bb.Attribute("to_dropbox_id") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TransferFolderArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TransferFolderArg, self)._process_custom_annotations(annotation_type, field_path, processor) TransferFolderArg_validator = bv.Struct(TransferFolderArg) - class TransferFolderError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -11301,7 +10805,7 @@ class TransferFolderError(bb.Union): The current user does not have permission to perform this action. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition invalid_dropbox_id = None # Attribute is overwritten below the class definition @@ -11326,7 +10830,7 @@ def access_error(cls, val): :param SharedFolderAccessError val: :rtype: TransferFolderError """ - return cls("access_error", val) + return cls('access_error', val) def is_access_error(self): """ @@ -11334,7 +10838,7 @@ def is_access_error(self): :rtype: bool """ - return self._tag == "access_error" + return self._tag == 'access_error' def is_invalid_dropbox_id(self): """ @@ -11342,7 +10846,7 @@ def is_invalid_dropbox_id(self): :rtype: bool """ - return self._tag == "invalid_dropbox_id" + return self._tag == 'invalid_dropbox_id' def is_new_owner_not_a_member(self): """ @@ -11350,7 +10854,7 @@ def is_new_owner_not_a_member(self): :rtype: bool """ - return self._tag == "new_owner_not_a_member" + return self._tag == 'new_owner_not_a_member' def is_new_owner_unmounted(self): """ @@ -11358,7 +10862,7 @@ def is_new_owner_unmounted(self): :rtype: bool """ - return self._tag == "new_owner_unmounted" + return self._tag == 'new_owner_unmounted' def is_new_owner_email_unverified(self): """ @@ -11366,7 +10870,7 @@ def is_new_owner_email_unverified(self): :rtype: bool """ - return self._tag == "new_owner_email_unverified" + return self._tag == 'new_owner_email_unverified' def is_team_folder(self): """ @@ -11374,7 +10878,7 @@ def is_team_folder(self): :rtype: bool """ - return self._tag == "team_folder" + return self._tag == 'team_folder' def is_no_permission(self): """ @@ -11382,7 +10886,7 @@ def is_no_permission(self): :rtype: bool """ - return self._tag == "no_permission" + return self._tag == 'no_permission' def is_other(self): """ @@ -11390,7 +10894,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_access_error(self): """ @@ -11403,14 +10907,10 @@ def get_access_error(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TransferFolderError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TransferFolderError, self)._process_custom_annotations(annotation_type, field_path, processor) TransferFolderError_validator = bv.Union(TransferFolderError) - class UnmountFolderArg(bb.Struct): """ :ivar UnmountFolderArg.shared_folder_id: @@ -11418,12 +10918,13 @@ class UnmountFolderArg(bb.Struct): """ __slots__ = [ - "_shared_folder_id_value", + '_shared_folder_id_value', ] _has_required_fields = True - def __init__(self, shared_folder_id=None): + def __init__(self, + shared_folder_id=None): self._shared_folder_id_value = bb.NOT_SET if shared_folder_id is not None: self.shared_folder_id = shared_folder_id @@ -11432,14 +10933,10 @@ def __init__(self, shared_folder_id=None): shared_folder_id = bb.Attribute("shared_folder_id") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UnmountFolderArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UnmountFolderArg, self)._process_custom_annotations(annotation_type, field_path, processor) UnmountFolderArg_validator = bv.Struct(UnmountFolderArg) - class UnmountFolderError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -11454,7 +10951,7 @@ class UnmountFolderError(bb.Union): resides in the current user's Dropbox. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition no_permission = None # Attribute is overwritten below the class definition @@ -11471,7 +10968,7 @@ def access_error(cls, val): :param SharedFolderAccessError val: :rtype: UnmountFolderError """ - return cls("access_error", val) + return cls('access_error', val) def is_access_error(self): """ @@ -11479,7 +10976,7 @@ def is_access_error(self): :rtype: bool """ - return self._tag == "access_error" + return self._tag == 'access_error' def is_no_permission(self): """ @@ -11487,7 +10984,7 @@ def is_no_permission(self): :rtype: bool """ - return self._tag == "no_permission" + return self._tag == 'no_permission' def is_not_unmountable(self): """ @@ -11495,7 +10992,7 @@ def is_not_unmountable(self): :rtype: bool """ - return self._tag == "not_unmountable" + return self._tag == 'not_unmountable' def is_other(self): """ @@ -11503,7 +11000,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_access_error(self): """ @@ -11516,14 +11013,10 @@ def get_access_error(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UnmountFolderError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UnmountFolderError, self)._process_custom_annotations(annotation_type, field_path, processor) UnmountFolderError_validator = bv.Union(UnmountFolderError) - class UnshareFileArg(bb.Struct): """ Arguments for :meth:`dropbox.dropbox_client.Dropbox.sharing_unshare_file`. @@ -11533,12 +11026,13 @@ class UnshareFileArg(bb.Struct): """ __slots__ = [ - "_file_value", + '_file_value', ] _has_required_fields = True - def __init__(self, file=None): + def __init__(self, + file=None): self._file_value = bb.NOT_SET if file is not None: self.file = file @@ -11547,14 +11041,10 @@ def __init__(self, file=None): file = bb.Attribute("file") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UnshareFileArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UnshareFileArg, self)._process_custom_annotations(annotation_type, field_path, processor) UnshareFileArg_validator = bv.Struct(UnshareFileArg) - class UnshareFileError(bb.Union): """ Error result for @@ -11565,7 +11055,7 @@ class UnshareFileError(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -11578,7 +11068,7 @@ def user_error(cls, val): :param SharingUserError val: :rtype: UnshareFileError """ - return cls("user_error", val) + return cls('user_error', val) @classmethod def access_error(cls, val): @@ -11589,7 +11079,7 @@ def access_error(cls, val): :param SharingFileAccessError val: :rtype: UnshareFileError """ - return cls("access_error", val) + return cls('access_error', val) def is_user_error(self): """ @@ -11597,7 +11087,7 @@ def is_user_error(self): :rtype: bool """ - return self._tag == "user_error" + return self._tag == 'user_error' def is_access_error(self): """ @@ -11605,7 +11095,7 @@ def is_access_error(self): :rtype: bool """ - return self._tag == "access_error" + return self._tag == 'access_error' def is_other(self): """ @@ -11613,7 +11103,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_user_error(self): """ @@ -11636,14 +11126,10 @@ def get_access_error(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UnshareFileError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UnshareFileError, self)._process_custom_annotations(annotation_type, field_path, processor) UnshareFileError_validator = bv.Union(UnshareFileError) - class UnshareFolderArg(bb.Struct): """ :ivar UnshareFolderArg.shared_folder_id: @@ -11655,13 +11141,15 @@ class UnshareFolderArg(bb.Struct): """ __slots__ = [ - "_shared_folder_id_value", - "_leave_a_copy_value", + '_shared_folder_id_value', + '_leave_a_copy_value', ] _has_required_fields = True - def __init__(self, shared_folder_id=None, leave_a_copy=None): + def __init__(self, + shared_folder_id=None, + leave_a_copy=None): self._shared_folder_id_value = bb.NOT_SET self._leave_a_copy_value = bb.NOT_SET if shared_folder_id is not None: @@ -11676,14 +11164,10 @@ def __init__(self, shared_folder_id=None, leave_a_copy=None): leave_a_copy = bb.Attribute("leave_a_copy") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UnshareFolderArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UnshareFolderArg, self)._process_custom_annotations(annotation_type, field_path, processor) UnshareFolderArg_validator = bv.Struct(UnshareFolderArg) - class UnshareFolderError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -11698,7 +11182,7 @@ class UnshareFolderError(bb.Union): This shared folder has too many files to be unshared. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition team_folder = None # Attribute is overwritten below the class definition @@ -11717,7 +11201,7 @@ def access_error(cls, val): :param SharedFolderAccessError val: :rtype: UnshareFolderError """ - return cls("access_error", val) + return cls('access_error', val) def is_access_error(self): """ @@ -11725,7 +11209,7 @@ def is_access_error(self): :rtype: bool """ - return self._tag == "access_error" + return self._tag == 'access_error' def is_team_folder(self): """ @@ -11733,7 +11217,7 @@ def is_team_folder(self): :rtype: bool """ - return self._tag == "team_folder" + return self._tag == 'team_folder' def is_no_permission(self): """ @@ -11741,7 +11225,7 @@ def is_no_permission(self): :rtype: bool """ - return self._tag == "no_permission" + return self._tag == 'no_permission' def is_too_many_files(self): """ @@ -11749,7 +11233,7 @@ def is_too_many_files(self): :rtype: bool """ - return self._tag == "too_many_files" + return self._tag == 'too_many_files' def is_other(self): """ @@ -11757,7 +11241,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_access_error(self): """ @@ -11770,14 +11254,10 @@ def get_access_error(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UnshareFolderError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UnshareFolderError, self)._process_custom_annotations(annotation_type, field_path, processor) UnshareFolderError_validator = bv.Union(UnshareFolderError) - class UpdateFileMemberArgs(bb.Struct): """ Arguments for @@ -11792,14 +11272,17 @@ class UpdateFileMemberArgs(bb.Struct): """ __slots__ = [ - "_file_value", - "_member_value", - "_access_level_value", + '_file_value', + '_member_value', + '_access_level_value', ] _has_required_fields = True - def __init__(self, file=None, member=None, access_level=None): + def __init__(self, + file=None, + member=None, + access_level=None): self._file_value = bb.NOT_SET self._member_value = bb.NOT_SET self._access_level_value = bb.NOT_SET @@ -11820,14 +11303,10 @@ def __init__(self, file=None, member=None, access_level=None): access_level = bb.Attribute("access_level", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UpdateFileMemberArgs, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UpdateFileMemberArgs, self)._process_custom_annotations(annotation_type, field_path, processor) UpdateFileMemberArgs_validator = bv.Struct(UpdateFileMemberArgs) - class UpdateFilePolicyArg(bb.Struct): """ Arguments for @@ -11846,15 +11325,19 @@ class UpdateFilePolicyArg(bb.Struct): """ __slots__ = [ - "_file_value", - "_actions_value", - "_link_settings_value", - "_viewer_info_policy_value", + '_file_value', + '_actions_value', + '_link_settings_value', + '_viewer_info_policy_value', ] _has_required_fields = True - def __init__(self, file=None, actions=None, link_settings=None, viewer_info_policy=None): + def __init__(self, + file=None, + actions=None, + link_settings=None, + viewer_info_policy=None): self._file_value = bb.NOT_SET self._actions_value = bb.NOT_SET self._link_settings_value = bb.NOT_SET @@ -11881,14 +11364,10 @@ def __init__(self, file=None, actions=None, link_settings=None, viewer_info_poli viewer_info_policy = bb.Attribute("viewer_info_policy", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UpdateFilePolicyArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UpdateFilePolicyArg, self)._process_custom_annotations(annotation_type, field_path, processor) UpdateFilePolicyArg_validator = bv.Struct(UpdateFilePolicyArg) - class UpdateFilePolicyError(bb.Union): """ Error result for @@ -11904,7 +11383,7 @@ class UpdateFilePolicyError(bb.Union): The current user does not have permission to perform this action. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition invalid_file_settings = None # Attribute is overwritten below the class definition @@ -11921,7 +11400,7 @@ def access_error(cls, val): :param SharingFileAccessError val: :rtype: UpdateFilePolicyError """ - return cls("access_error", val) + return cls('access_error', val) def is_access_error(self): """ @@ -11929,7 +11408,7 @@ def is_access_error(self): :rtype: bool """ - return self._tag == "access_error" + return self._tag == 'access_error' def is_invalid_file_settings(self): """ @@ -11937,7 +11416,7 @@ def is_invalid_file_settings(self): :rtype: bool """ - return self._tag == "invalid_file_settings" + return self._tag == 'invalid_file_settings' def is_no_permission(self): """ @@ -11945,7 +11424,7 @@ def is_no_permission(self): :rtype: bool """ - return self._tag == "no_permission" + return self._tag == 'no_permission' def is_other(self): """ @@ -11953,7 +11432,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_access_error(self): """ @@ -11966,14 +11445,10 @@ def get_access_error(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UpdateFilePolicyError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UpdateFilePolicyError, self)._process_custom_annotations(annotation_type, field_path, processor) UpdateFilePolicyError_validator = bv.Union(UpdateFilePolicyError) - class UpdateFolderMemberArg(bb.Struct): """ :ivar UpdateFolderMemberArg.shared_folder_id: @@ -11987,14 +11462,17 @@ class UpdateFolderMemberArg(bb.Struct): """ __slots__ = [ - "_shared_folder_id_value", - "_member_value", - "_access_level_value", + '_shared_folder_id_value', + '_member_value', + '_access_level_value', ] _has_required_fields = True - def __init__(self, shared_folder_id=None, member=None, access_level=None): + def __init__(self, + shared_folder_id=None, + member=None, + access_level=None): self._shared_folder_id_value = bb.NOT_SET self._member_value = bb.NOT_SET self._access_level_value = bb.NOT_SET @@ -12015,14 +11493,10 @@ def __init__(self, shared_folder_id=None, member=None, access_level=None): access_level = bb.Attribute("access_level", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UpdateFolderMemberArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UpdateFolderMemberArg, self)._process_custom_annotations(annotation_type, field_path, processor) UpdateFolderMemberArg_validator = bv.Struct(UpdateFolderMemberArg) - class UpdateFolderMemberError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -12041,7 +11515,7 @@ class UpdateFolderMemberError(bb.Union): The current user does not have permission to perform this action. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition insufficient_plan = None # Attribute is overwritten below the class definition @@ -12058,7 +11532,7 @@ def access_error(cls, val): :param SharedFolderAccessError val: :rtype: UpdateFolderMemberError """ - return cls("access_error", val) + return cls('access_error', val) @classmethod def member_error(cls, val): @@ -12069,7 +11543,7 @@ def member_error(cls, val): :param SharedFolderMemberError val: :rtype: UpdateFolderMemberError """ - return cls("member_error", val) + return cls('member_error', val) @classmethod def no_explicit_access(cls, val): @@ -12080,7 +11554,7 @@ def no_explicit_access(cls, val): :param AddFolderMemberError val: :rtype: UpdateFolderMemberError """ - return cls("no_explicit_access", val) + return cls('no_explicit_access', val) def is_access_error(self): """ @@ -12088,7 +11562,7 @@ def is_access_error(self): :rtype: bool """ - return self._tag == "access_error" + return self._tag == 'access_error' def is_member_error(self): """ @@ -12096,7 +11570,7 @@ def is_member_error(self): :rtype: bool """ - return self._tag == "member_error" + return self._tag == 'member_error' def is_no_explicit_access(self): """ @@ -12104,7 +11578,7 @@ def is_no_explicit_access(self): :rtype: bool """ - return self._tag == "no_explicit_access" + return self._tag == 'no_explicit_access' def is_insufficient_plan(self): """ @@ -12112,7 +11586,7 @@ def is_insufficient_plan(self): :rtype: bool """ - return self._tag == "insufficient_plan" + return self._tag == 'insufficient_plan' def is_no_permission(self): """ @@ -12120,7 +11594,7 @@ def is_no_permission(self): :rtype: bool """ - return self._tag == "no_permission" + return self._tag == 'no_permission' def is_other(self): """ @@ -12128,7 +11602,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_access_error(self): """ @@ -12164,14 +11638,10 @@ def get_no_explicit_access(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UpdateFolderMemberError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UpdateFolderMemberError, self)._process_custom_annotations(annotation_type, field_path, processor) UpdateFolderMemberError_validator = bv.Union(UpdateFolderMemberError) - class UpdateFolderPolicyArg(bb.Struct): """ If any of the policies are unset, then they retain their current setting. @@ -12199,27 +11669,25 @@ class UpdateFolderPolicyArg(bb.Struct): """ __slots__ = [ - "_shared_folder_id_value", - "_member_policy_value", - "_acl_update_policy_value", - "_viewer_info_policy_value", - "_shared_link_policy_value", - "_link_settings_value", - "_actions_value", + '_shared_folder_id_value', + '_member_policy_value', + '_acl_update_policy_value', + '_viewer_info_policy_value', + '_shared_link_policy_value', + '_link_settings_value', + '_actions_value', ] _has_required_fields = True - def __init__( - self, - shared_folder_id=None, - member_policy=None, - acl_update_policy=None, - viewer_info_policy=None, - shared_link_policy=None, - link_settings=None, - actions=None, - ): + def __init__(self, + shared_folder_id=None, + member_policy=None, + acl_update_policy=None, + viewer_info_policy=None, + shared_link_policy=None, + link_settings=None, + actions=None): self._shared_folder_id_value = bb.NOT_SET self._member_policy_value = bb.NOT_SET self._acl_update_policy_value = bb.NOT_SET @@ -12264,14 +11732,10 @@ def __init__( actions = bb.Attribute("actions", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UpdateFolderPolicyArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UpdateFolderPolicyArg, self)._process_custom_annotations(annotation_type, field_path, processor) UpdateFolderPolicyArg_validator = bv.Struct(UpdateFolderPolicyArg) - class UpdateFolderPolicyError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -12293,7 +11757,7 @@ class UpdateFolderPolicyError(bb.Union): This action cannot be performed on a team shared folder. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition not_on_team = None # Attribute is overwritten below the class definition @@ -12316,7 +11780,7 @@ def access_error(cls, val): :param SharedFolderAccessError val: :rtype: UpdateFolderPolicyError """ - return cls("access_error", val) + return cls('access_error', val) def is_access_error(self): """ @@ -12324,7 +11788,7 @@ def is_access_error(self): :rtype: bool """ - return self._tag == "access_error" + return self._tag == 'access_error' def is_not_on_team(self): """ @@ -12332,7 +11796,7 @@ def is_not_on_team(self): :rtype: bool """ - return self._tag == "not_on_team" + return self._tag == 'not_on_team' def is_team_policy_disallows_member_policy(self): """ @@ -12340,7 +11804,7 @@ def is_team_policy_disallows_member_policy(self): :rtype: bool """ - return self._tag == "team_policy_disallows_member_policy" + return self._tag == 'team_policy_disallows_member_policy' def is_disallowed_shared_link_policy(self): """ @@ -12348,7 +11812,7 @@ def is_disallowed_shared_link_policy(self): :rtype: bool """ - return self._tag == "disallowed_shared_link_policy" + return self._tag == 'disallowed_shared_link_policy' def is_no_permission(self): """ @@ -12356,7 +11820,7 @@ def is_no_permission(self): :rtype: bool """ - return self._tag == "no_permission" + return self._tag == 'no_permission' def is_team_folder(self): """ @@ -12364,7 +11828,7 @@ def is_team_folder(self): :rtype: bool """ - return self._tag == "team_folder" + return self._tag == 'team_folder' def is_other(self): """ @@ -12372,7 +11836,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_access_error(self): """ @@ -12385,14 +11849,10 @@ def get_access_error(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UpdateFolderPolicyError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UpdateFolderPolicyError, self)._process_custom_annotations(annotation_type, field_path, processor) UpdateFolderPolicyError_validator = bv.Union(UpdateFolderPolicyError) - class UserMembershipInfo(MembershipInfo): """ The information about a user member of the shared content. @@ -12402,20 +11862,21 @@ class UserMembershipInfo(MembershipInfo): """ __slots__ = [ - "_user_value", + '_user_value', ] _has_required_fields = True - def __init__( - self, - access_type=None, - user=None, - permissions=None, - initials=None, - is_inherited=None, - ): - super(UserMembershipInfo, self).__init__(access_type, permissions, initials, is_inherited) + def __init__(self, + access_type=None, + user=None, + permissions=None, + initials=None, + is_inherited=None): + super(UserMembershipInfo, self).__init__(access_type, + permissions, + initials, + is_inherited) self._user_value = bb.NOT_SET if user is not None: self.user = user @@ -12424,14 +11885,10 @@ def __init__( user = bb.Attribute("user", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UserMembershipInfo, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UserMembershipInfo, self)._process_custom_annotations(annotation_type, field_path, processor) UserMembershipInfo_validator = bv.Struct(UserMembershipInfo) - class UserFileMembershipInfo(UserMembershipInfo): """ The information about a user member of the shared content with an appended @@ -12446,25 +11903,25 @@ class UserFileMembershipInfo(UserMembershipInfo): """ __slots__ = [ - "_time_last_seen_value", - "_platform_type_value", + '_time_last_seen_value', + '_platform_type_value', ] _has_required_fields = True - def __init__( - self, - access_type=None, - user=None, - permissions=None, - initials=None, - is_inherited=None, - time_last_seen=None, - platform_type=None, - ): - super(UserFileMembershipInfo, self).__init__( - access_type, user, permissions, initials, is_inherited - ) + def __init__(self, + access_type=None, + user=None, + permissions=None, + initials=None, + is_inherited=None, + time_last_seen=None, + platform_type=None): + super(UserFileMembershipInfo, self).__init__(access_type, + user, + permissions, + initials, + is_inherited) self._time_last_seen_value = bb.NOT_SET self._platform_type_value = bb.NOT_SET if time_last_seen is not None: @@ -12479,14 +11936,10 @@ def __init__( platform_type = bb.Attribute("platform_type", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UserFileMembershipInfo, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UserFileMembershipInfo, self)._process_custom_annotations(annotation_type, field_path, processor) UserFileMembershipInfo_validator = bv.Struct(UserFileMembershipInfo) - class UserInfo(bb.Struct): """ Basic information about a user. Use @@ -12508,23 +11961,21 @@ class UserInfo(bb.Struct): """ __slots__ = [ - "_account_id_value", - "_email_value", - "_display_name_value", - "_same_team_value", - "_team_member_id_value", + '_account_id_value', + '_email_value', + '_display_name_value', + '_same_team_value', + '_team_member_id_value', ] _has_required_fields = True - def __init__( - self, - account_id=None, - email=None, - display_name=None, - same_team=None, - team_member_id=None, - ): + def __init__(self, + account_id=None, + email=None, + display_name=None, + same_team=None, + team_member_id=None): self._account_id_value = bb.NOT_SET self._email_value = bb.NOT_SET self._display_name_value = bb.NOT_SET @@ -12559,10 +12010,8 @@ def __init__( def _process_custom_annotations(self, annotation_type, field_path, processor): super(UserInfo, self)._process_custom_annotations(annotation_type, field_path, processor) - UserInfo_validator = bv.Struct(UserInfo) - class ViewerInfoPolicy(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -12575,7 +12024,7 @@ class ViewerInfoPolicy(bb.Union): Viewer information is disabled on this file. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition enabled = None # Attribute is overwritten below the class definition @@ -12589,7 +12038,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == "enabled" + return self._tag == 'enabled' def is_disabled(self): """ @@ -12597,7 +12046,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == "disabled" + return self._tag == 'disabled' def is_other(self): """ @@ -12605,17 +12054,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ViewerInfoPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ViewerInfoPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) ViewerInfoPolicy_validator = bv.Union(ViewerInfoPolicy) - class Visibility(bb.Union): """ Who can access a shared link. The most open visibility is ``public``. The @@ -12641,7 +12086,7 @@ class Visibility(bb.Union): the link. Login is required. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition public = None # Attribute is overwritten below the class definition @@ -12661,7 +12106,7 @@ def is_public(self): :rtype: bool """ - return self._tag == "public" + return self._tag == 'public' def is_team_only(self): """ @@ -12669,7 +12114,7 @@ def is_team_only(self): :rtype: bool """ - return self._tag == "team_only" + return self._tag == 'team_only' def is_password(self): """ @@ -12677,7 +12122,7 @@ def is_password(self): :rtype: bool """ - return self._tag == "password" + return self._tag == 'password' def is_team_and_password(self): """ @@ -12685,7 +12130,7 @@ def is_team_and_password(self): :rtype: bool """ - return self._tag == "team_and_password" + return self._tag == 'team_and_password' def is_shared_folder_only(self): """ @@ -12693,7 +12138,7 @@ def is_shared_folder_only(self): :rtype: bool """ - return self._tag == "shared_folder_only" + return self._tag == 'shared_folder_only' def is_other(self): """ @@ -12701,15 +12146,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): super(Visibility, self)._process_custom_annotations(annotation_type, field_path, processor) - Visibility_validator = bv.Union(Visibility) - class VisibilityPolicy(bb.Struct): """ :ivar VisibilityPolicy.policy: @@ -12727,15 +12170,19 @@ class VisibilityPolicy(bb.Struct): """ __slots__ = [ - "_policy_value", - "_resolved_policy_value", - "_allowed_value", - "_disallowed_reason_value", + '_policy_value', + '_resolved_policy_value', + '_allowed_value', + '_disallowed_reason_value', ] _has_required_fields = True - def __init__(self, policy=None, resolved_policy=None, allowed=None, disallowed_reason=None): + def __init__(self, + policy=None, + resolved_policy=None, + allowed=None, + disallowed_reason=None): self._policy_value = bb.NOT_SET self._resolved_policy_value = bb.NOT_SET self._allowed_value = bb.NOT_SET @@ -12762,10 +12209,7 @@ def __init__(self, policy=None, resolved_policy=None, allowed=None, disallowed_r disallowed_reason = bb.Attribute("disallowed_reason", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(VisibilityPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(VisibilityPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) VisibilityPolicy_validator = bv.Struct(VisibilityPolicy) @@ -12774,7 +12218,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): GetSharedLinkFileArg = GetSharedLinkMetadataArg Id_validator = files.Id_validator Path_validator = files.Path_validator -PathOrId_validator = bv.String(min_length=1, pattern="((/|id:).*|nspath:[0-9]+:.*)|ns:[0-9]+(/.*)?") +PathOrId_validator = bv.String(min_length=1, pattern='((/|id:).*|nspath:[0-9]+:.*)|ns:[0-9]+(/.*)?') ReadPath_validator = files.ReadPath_validator Rev_validator = files.Rev_validator TeamInfo_validator = users.Team_validator @@ -12783,14 +12227,14 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): AccessInheritance._no_inherit_validator = bv.Void() AccessInheritance._other_validator = bv.Void() AccessInheritance._tagmap = { - "inherit": AccessInheritance._inherit_validator, - "no_inherit": AccessInheritance._no_inherit_validator, - "other": AccessInheritance._other_validator, + 'inherit': AccessInheritance._inherit_validator, + 'no_inherit': AccessInheritance._no_inherit_validator, + 'other': AccessInheritance._other_validator, } -AccessInheritance.inherit = AccessInheritance("inherit") -AccessInheritance.no_inherit = AccessInheritance("no_inherit") -AccessInheritance.other = AccessInheritance("other") +AccessInheritance.inherit = AccessInheritance('inherit') +AccessInheritance.no_inherit = AccessInheritance('no_inherit') +AccessInheritance.other = AccessInheritance('other') AccessLevel._owner_validator = bv.Void() AccessLevel._editor_validator = bv.Void() @@ -12800,35 +12244,35 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): AccessLevel._no_access_validator = bv.Void() AccessLevel._other_validator = bv.Void() AccessLevel._tagmap = { - "owner": AccessLevel._owner_validator, - "editor": AccessLevel._editor_validator, - "viewer": AccessLevel._viewer_validator, - "viewer_no_comment": AccessLevel._viewer_no_comment_validator, - "traverse": AccessLevel._traverse_validator, - "no_access": AccessLevel._no_access_validator, - "other": AccessLevel._other_validator, + 'owner': AccessLevel._owner_validator, + 'editor': AccessLevel._editor_validator, + 'viewer': AccessLevel._viewer_validator, + 'viewer_no_comment': AccessLevel._viewer_no_comment_validator, + 'traverse': AccessLevel._traverse_validator, + 'no_access': AccessLevel._no_access_validator, + 'other': AccessLevel._other_validator, } -AccessLevel.owner = AccessLevel("owner") -AccessLevel.editor = AccessLevel("editor") -AccessLevel.viewer = AccessLevel("viewer") -AccessLevel.viewer_no_comment = AccessLevel("viewer_no_comment") -AccessLevel.traverse = AccessLevel("traverse") -AccessLevel.no_access = AccessLevel("no_access") -AccessLevel.other = AccessLevel("other") +AccessLevel.owner = AccessLevel('owner') +AccessLevel.editor = AccessLevel('editor') +AccessLevel.viewer = AccessLevel('viewer') +AccessLevel.viewer_no_comment = AccessLevel('viewer_no_comment') +AccessLevel.traverse = AccessLevel('traverse') +AccessLevel.no_access = AccessLevel('no_access') +AccessLevel.other = AccessLevel('other') AclUpdatePolicy._owner_validator = bv.Void() AclUpdatePolicy._editors_validator = bv.Void() AclUpdatePolicy._other_validator = bv.Void() AclUpdatePolicy._tagmap = { - "owner": AclUpdatePolicy._owner_validator, - "editors": AclUpdatePolicy._editors_validator, - "other": AclUpdatePolicy._other_validator, + 'owner': AclUpdatePolicy._owner_validator, + 'editors': AclUpdatePolicy._editors_validator, + 'other': AclUpdatePolicy._other_validator, } -AclUpdatePolicy.owner = AclUpdatePolicy("owner") -AclUpdatePolicy.editors = AclUpdatePolicy("editors") -AclUpdatePolicy.other = AclUpdatePolicy("other") +AclUpdatePolicy.owner = AclUpdatePolicy('owner') +AclUpdatePolicy.editors = AclUpdatePolicy('editors') +AclUpdatePolicy.other = AclUpdatePolicy('other') AddFileMemberArgs.file.validator = PathOrId_validator AddFileMemberArgs.members.validator = bv.List(MemberSelector_validator) @@ -12837,28 +12281,24 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): AddFileMemberArgs.access_level.validator = bv.Nullable(AccessLevel_validator) AddFileMemberArgs.add_message_as_comment.validator = bv.Boolean() AddFileMemberArgs.fp_sealed_result.validator = bv.Nullable(bv.String()) -AddFileMemberArgs._all_field_names_ = set( - [ - "file", - "members", - "custom_message", - "quiet", - "access_level", - "add_message_as_comment", - ] -) +AddFileMemberArgs._all_field_names_ = set([ + 'file', + 'members', + 'custom_message', + 'quiet', + 'access_level', + 'add_message_as_comment', +]) AddFileMemberArgs._all_fields_ = [ - ("file", AddFileMemberArgs.file.validator), - ("members", AddFileMemberArgs.members.validator), - ("custom_message", AddFileMemberArgs.custom_message.validator), - ("quiet", AddFileMemberArgs.quiet.validator), - ("access_level", AddFileMemberArgs.access_level.validator), - ("add_message_as_comment", AddFileMemberArgs.add_message_as_comment.validator), -] -AddFileMemberArgs._all_internal_field_names_ = set(["fp_sealed_result"]) -AddFileMemberArgs._all_internal_fields_ = [ - ("fp_sealed_result", AddFileMemberArgs.fp_sealed_result.validator) + ('file', AddFileMemberArgs.file.validator), + ('members', AddFileMemberArgs.members.validator), + ('custom_message', AddFileMemberArgs.custom_message.validator), + ('quiet', AddFileMemberArgs.quiet.validator), + ('access_level', AddFileMemberArgs.access_level.validator), + ('add_message_as_comment', AddFileMemberArgs.add_message_as_comment.validator), ] +AddFileMemberArgs._all_internal_field_names_ = set(['fp_sealed_result']) +AddFileMemberArgs._all_internal_fields_ = [('fp_sealed_result', AddFileMemberArgs.fp_sealed_result.validator)] AddFileMemberError._user_error_validator = SharingUserError_validator AddFileMemberError._access_error_validator = SharingFileAccessError_validator @@ -12867,42 +12307,38 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): AddFileMemberError._banned_member_validator = bv.Void() AddFileMemberError._other_validator = bv.Void() AddFileMemberError._tagmap = { - "user_error": AddFileMemberError._user_error_validator, - "access_error": AddFileMemberError._access_error_validator, - "rate_limit": AddFileMemberError._rate_limit_validator, - "invalid_comment": AddFileMemberError._invalid_comment_validator, - "banned_member": AddFileMemberError._banned_member_validator, - "other": AddFileMemberError._other_validator, + 'user_error': AddFileMemberError._user_error_validator, + 'access_error': AddFileMemberError._access_error_validator, + 'rate_limit': AddFileMemberError._rate_limit_validator, + 'invalid_comment': AddFileMemberError._invalid_comment_validator, + 'banned_member': AddFileMemberError._banned_member_validator, + 'other': AddFileMemberError._other_validator, } -AddFileMemberError.rate_limit = AddFileMemberError("rate_limit") -AddFileMemberError.invalid_comment = AddFileMemberError("invalid_comment") -AddFileMemberError.banned_member = AddFileMemberError("banned_member") -AddFileMemberError.other = AddFileMemberError("other") +AddFileMemberError.rate_limit = AddFileMemberError('rate_limit') +AddFileMemberError.invalid_comment = AddFileMemberError('invalid_comment') +AddFileMemberError.banned_member = AddFileMemberError('banned_member') +AddFileMemberError.other = AddFileMemberError('other') AddFolderMemberArg.shared_folder_id.validator = common.SharedFolderId_validator AddFolderMemberArg.members.validator = bv.List(AddMember_validator) AddFolderMemberArg.quiet.validator = bv.Boolean() AddFolderMemberArg.custom_message.validator = bv.Nullable(bv.String(min_length=1)) AddFolderMemberArg.fp_sealed_result.validator = bv.Nullable(bv.String()) -AddFolderMemberArg._all_field_names_ = set( - [ - "shared_folder_id", - "members", - "quiet", - "custom_message", - ] -) +AddFolderMemberArg._all_field_names_ = set([ + 'shared_folder_id', + 'members', + 'quiet', + 'custom_message', +]) AddFolderMemberArg._all_fields_ = [ - ("shared_folder_id", AddFolderMemberArg.shared_folder_id.validator), - ("members", AddFolderMemberArg.members.validator), - ("quiet", AddFolderMemberArg.quiet.validator), - ("custom_message", AddFolderMemberArg.custom_message.validator), -] -AddFolderMemberArg._all_internal_field_names_ = set(["fp_sealed_result"]) -AddFolderMemberArg._all_internal_fields_ = [ - ("fp_sealed_result", AddFolderMemberArg.fp_sealed_result.validator) + ('shared_folder_id', AddFolderMemberArg.shared_folder_id.validator), + ('members', AddFolderMemberArg.members.validator), + ('quiet', AddFolderMemberArg.quiet.validator), + ('custom_message', AddFolderMemberArg.custom_message.validator), ] +AddFolderMemberArg._all_internal_field_names_ = set(['fp_sealed_result']) +AddFolderMemberArg._all_internal_fields_ = [('fp_sealed_result', AddFolderMemberArg.fp_sealed_result.validator)] AddFolderMemberError._access_error_validator = SharedFolderAccessError_validator AddFolderMemberError._email_unverified_validator = bv.Void() @@ -12919,44 +12355,42 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): AddFolderMemberError._invalid_shared_folder_validator = bv.Void() AddFolderMemberError._other_validator = bv.Void() AddFolderMemberError._tagmap = { - "access_error": AddFolderMemberError._access_error_validator, - "email_unverified": AddFolderMemberError._email_unverified_validator, - "banned_member": AddFolderMemberError._banned_member_validator, - "bad_member": AddFolderMemberError._bad_member_validator, - "cant_share_outside_team": AddFolderMemberError._cant_share_outside_team_validator, - "too_many_members": AddFolderMemberError._too_many_members_validator, - "too_many_pending_invites": AddFolderMemberError._too_many_pending_invites_validator, - "rate_limit": AddFolderMemberError._rate_limit_validator, - "too_many_invitees": AddFolderMemberError._too_many_invitees_validator, - "insufficient_plan": AddFolderMemberError._insufficient_plan_validator, - "team_folder": AddFolderMemberError._team_folder_validator, - "no_permission": AddFolderMemberError._no_permission_validator, - "invalid_shared_folder": AddFolderMemberError._invalid_shared_folder_validator, - "other": AddFolderMemberError._other_validator, + 'access_error': AddFolderMemberError._access_error_validator, + 'email_unverified': AddFolderMemberError._email_unverified_validator, + 'banned_member': AddFolderMemberError._banned_member_validator, + 'bad_member': AddFolderMemberError._bad_member_validator, + 'cant_share_outside_team': AddFolderMemberError._cant_share_outside_team_validator, + 'too_many_members': AddFolderMemberError._too_many_members_validator, + 'too_many_pending_invites': AddFolderMemberError._too_many_pending_invites_validator, + 'rate_limit': AddFolderMemberError._rate_limit_validator, + 'too_many_invitees': AddFolderMemberError._too_many_invitees_validator, + 'insufficient_plan': AddFolderMemberError._insufficient_plan_validator, + 'team_folder': AddFolderMemberError._team_folder_validator, + 'no_permission': AddFolderMemberError._no_permission_validator, + 'invalid_shared_folder': AddFolderMemberError._invalid_shared_folder_validator, + 'other': AddFolderMemberError._other_validator, } -AddFolderMemberError.email_unverified = AddFolderMemberError("email_unverified") -AddFolderMemberError.banned_member = AddFolderMemberError("banned_member") -AddFolderMemberError.cant_share_outside_team = AddFolderMemberError("cant_share_outside_team") -AddFolderMemberError.rate_limit = AddFolderMemberError("rate_limit") -AddFolderMemberError.too_many_invitees = AddFolderMemberError("too_many_invitees") -AddFolderMemberError.insufficient_plan = AddFolderMemberError("insufficient_plan") -AddFolderMemberError.team_folder = AddFolderMemberError("team_folder") -AddFolderMemberError.no_permission = AddFolderMemberError("no_permission") -AddFolderMemberError.invalid_shared_folder = AddFolderMemberError("invalid_shared_folder") -AddFolderMemberError.other = AddFolderMemberError("other") +AddFolderMemberError.email_unverified = AddFolderMemberError('email_unverified') +AddFolderMemberError.banned_member = AddFolderMemberError('banned_member') +AddFolderMemberError.cant_share_outside_team = AddFolderMemberError('cant_share_outside_team') +AddFolderMemberError.rate_limit = AddFolderMemberError('rate_limit') +AddFolderMemberError.too_many_invitees = AddFolderMemberError('too_many_invitees') +AddFolderMemberError.insufficient_plan = AddFolderMemberError('insufficient_plan') +AddFolderMemberError.team_folder = AddFolderMemberError('team_folder') +AddFolderMemberError.no_permission = AddFolderMemberError('no_permission') +AddFolderMemberError.invalid_shared_folder = AddFolderMemberError('invalid_shared_folder') +AddFolderMemberError.other = AddFolderMemberError('other') AddMember.member.validator = MemberSelector_validator AddMember.access_level.validator = bv.Nullable(AccessLevel_validator) -AddMember._all_field_names_ = set( - [ - "member", - "access_level", - ] -) +AddMember._all_field_names_ = set([ + 'member', + 'access_level', +]) AddMember._all_fields_ = [ - ("member", AddMember.member.validator), - ("access_level", AddMember.access_level.validator), + ('member', AddMember.member.validator), + ('access_level', AddMember.access_level.validator), ] AddMemberSelectorError._automatic_group_validator = bv.Void() @@ -12968,34 +12402,34 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): AddMemberSelectorError._group_not_on_team_validator = bv.Void() AddMemberSelectorError._other_validator = bv.Void() AddMemberSelectorError._tagmap = { - "automatic_group": AddMemberSelectorError._automatic_group_validator, - "invalid_dropbox_id": AddMemberSelectorError._invalid_dropbox_id_validator, - "invalid_email": AddMemberSelectorError._invalid_email_validator, - "invalid_group": AddMemberSelectorError._invalid_group_validator, - "unverified_dropbox_id": AddMemberSelectorError._unverified_dropbox_id_validator, - "group_deleted": AddMemberSelectorError._group_deleted_validator, - "group_not_on_team": AddMemberSelectorError._group_not_on_team_validator, - "other": AddMemberSelectorError._other_validator, + 'automatic_group': AddMemberSelectorError._automatic_group_validator, + 'invalid_dropbox_id': AddMemberSelectorError._invalid_dropbox_id_validator, + 'invalid_email': AddMemberSelectorError._invalid_email_validator, + 'invalid_group': AddMemberSelectorError._invalid_group_validator, + 'unverified_dropbox_id': AddMemberSelectorError._unverified_dropbox_id_validator, + 'group_deleted': AddMemberSelectorError._group_deleted_validator, + 'group_not_on_team': AddMemberSelectorError._group_not_on_team_validator, + 'other': AddMemberSelectorError._other_validator, } -AddMemberSelectorError.automatic_group = AddMemberSelectorError("automatic_group") -AddMemberSelectorError.invalid_group = AddMemberSelectorError("invalid_group") -AddMemberSelectorError.group_deleted = AddMemberSelectorError("group_deleted") -AddMemberSelectorError.group_not_on_team = AddMemberSelectorError("group_not_on_team") -AddMemberSelectorError.other = AddMemberSelectorError("other") +AddMemberSelectorError.automatic_group = AddMemberSelectorError('automatic_group') +AddMemberSelectorError.invalid_group = AddMemberSelectorError('invalid_group') +AddMemberSelectorError.group_deleted = AddMemberSelectorError('group_deleted') +AddMemberSelectorError.group_not_on_team = AddMemberSelectorError('group_not_on_team') +AddMemberSelectorError.other = AddMemberSelectorError('other') RequestedVisibility._public_validator = bv.Void() RequestedVisibility._team_only_validator = bv.Void() RequestedVisibility._password_validator = bv.Void() RequestedVisibility._tagmap = { - "public": RequestedVisibility._public_validator, - "team_only": RequestedVisibility._team_only_validator, - "password": RequestedVisibility._password_validator, + 'public': RequestedVisibility._public_validator, + 'team_only': RequestedVisibility._team_only_validator, + 'password': RequestedVisibility._password_validator, } -RequestedVisibility.public = RequestedVisibility("public") -RequestedVisibility.team_only = RequestedVisibility("team_only") -RequestedVisibility.password = RequestedVisibility("password") +RequestedVisibility.public = RequestedVisibility('public') +RequestedVisibility.team_only = RequestedVisibility('team_only') +RequestedVisibility.password = RequestedVisibility('password') ResolvedVisibility._team_and_password_validator = bv.Void() ResolvedVisibility._shared_folder_only_validator = bv.Void() @@ -13003,206 +12437,180 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ResolvedVisibility._only_you_validator = bv.Void() ResolvedVisibility._other_validator = bv.Void() ResolvedVisibility._tagmap = { - "team_and_password": ResolvedVisibility._team_and_password_validator, - "shared_folder_only": ResolvedVisibility._shared_folder_only_validator, - "no_one": ResolvedVisibility._no_one_validator, - "only_you": ResolvedVisibility._only_you_validator, - "other": ResolvedVisibility._other_validator, + 'team_and_password': ResolvedVisibility._team_and_password_validator, + 'shared_folder_only': ResolvedVisibility._shared_folder_only_validator, + 'no_one': ResolvedVisibility._no_one_validator, + 'only_you': ResolvedVisibility._only_you_validator, + 'other': ResolvedVisibility._other_validator, } ResolvedVisibility._tagmap.update(RequestedVisibility._tagmap) -ResolvedVisibility.team_and_password = ResolvedVisibility("team_and_password") -ResolvedVisibility.shared_folder_only = ResolvedVisibility("shared_folder_only") -ResolvedVisibility.no_one = ResolvedVisibility("no_one") -ResolvedVisibility.only_you = ResolvedVisibility("only_you") -ResolvedVisibility.other = ResolvedVisibility("other") +ResolvedVisibility.team_and_password = ResolvedVisibility('team_and_password') +ResolvedVisibility.shared_folder_only = ResolvedVisibility('shared_folder_only') +ResolvedVisibility.no_one = ResolvedVisibility('no_one') +ResolvedVisibility.only_you = ResolvedVisibility('only_you') +ResolvedVisibility.other = ResolvedVisibility('other') -AlphaResolvedVisibility._tagmap = {} +AlphaResolvedVisibility._tagmap = { +} AlphaResolvedVisibility._tagmap.update(ResolvedVisibility._tagmap) AudienceExceptionContentInfo.name.validator = bv.String() -AudienceExceptionContentInfo._all_field_names_ = set(["name"]) -AudienceExceptionContentInfo._all_fields_ = [("name", AudienceExceptionContentInfo.name.validator)] +AudienceExceptionContentInfo._all_field_names_ = set(['name']) +AudienceExceptionContentInfo._all_fields_ = [('name', AudienceExceptionContentInfo.name.validator)] AudienceExceptions.count.validator = bv.UInt32() AudienceExceptions.exceptions.validator = bv.List(AudienceExceptionContentInfo_validator) -AudienceExceptions._all_field_names_ = set( - [ - "count", - "exceptions", - ] -) +AudienceExceptions._all_field_names_ = set([ + 'count', + 'exceptions', +]) AudienceExceptions._all_fields_ = [ - ("count", AudienceExceptions.count.validator), - ("exceptions", AudienceExceptions.exceptions.validator), + ('count', AudienceExceptions.count.validator), + ('exceptions', AudienceExceptions.exceptions.validator), ] AudienceRestrictingSharedFolder.shared_folder_id.validator = common.SharedFolderId_validator AudienceRestrictingSharedFolder.name.validator = bv.String() AudienceRestrictingSharedFolder.audience.validator = LinkAudience_validator -AudienceRestrictingSharedFolder._all_field_names_ = set( - [ - "shared_folder_id", - "name", - "audience", - ] -) +AudienceRestrictingSharedFolder._all_field_names_ = set([ + 'shared_folder_id', + 'name', + 'audience', +]) AudienceRestrictingSharedFolder._all_fields_ = [ - ("shared_folder_id", AudienceRestrictingSharedFolder.shared_folder_id.validator), - ("name", AudienceRestrictingSharedFolder.name.validator), - ("audience", AudienceRestrictingSharedFolder.audience.validator), + ('shared_folder_id', AudienceRestrictingSharedFolder.shared_folder_id.validator), + ('name', AudienceRestrictingSharedFolder.name.validator), + ('audience', AudienceRestrictingSharedFolder.audience.validator), ] ChangeLinkExpirationPolicy._allowed_validator = bv.Void() ChangeLinkExpirationPolicy._not_allowed_validator = bv.Void() ChangeLinkExpirationPolicy._other_validator = bv.Void() ChangeLinkExpirationPolicy._tagmap = { - "allowed": ChangeLinkExpirationPolicy._allowed_validator, - "not_allowed": ChangeLinkExpirationPolicy._not_allowed_validator, - "other": ChangeLinkExpirationPolicy._other_validator, + 'allowed': ChangeLinkExpirationPolicy._allowed_validator, + 'not_allowed': ChangeLinkExpirationPolicy._not_allowed_validator, + 'other': ChangeLinkExpirationPolicy._other_validator, } -ChangeLinkExpirationPolicy.allowed = ChangeLinkExpirationPolicy("allowed") -ChangeLinkExpirationPolicy.not_allowed = ChangeLinkExpirationPolicy("not_allowed") -ChangeLinkExpirationPolicy.other = ChangeLinkExpirationPolicy("other") +ChangeLinkExpirationPolicy.allowed = ChangeLinkExpirationPolicy('allowed') +ChangeLinkExpirationPolicy.not_allowed = ChangeLinkExpirationPolicy('not_allowed') +ChangeLinkExpirationPolicy.other = ChangeLinkExpirationPolicy('other') LinkMetadata.url.validator = bv.String() LinkMetadata.visibility.validator = Visibility_validator LinkMetadata.expires.validator = bv.Nullable(common.DropboxTimestamp_validator) -LinkMetadata._field_names_ = set( - [ - "url", - "visibility", - "expires", - ] -) +LinkMetadata._field_names_ = set([ + 'url', + 'visibility', + 'expires', +]) LinkMetadata._all_field_names_ = LinkMetadata._field_names_ LinkMetadata._fields_ = [ - ("url", LinkMetadata.url.validator), - ("visibility", LinkMetadata.visibility.validator), - ("expires", LinkMetadata.expires.validator), + ('url', LinkMetadata.url.validator), + ('visibility', LinkMetadata.visibility.validator), + ('expires', LinkMetadata.expires.validator), ] LinkMetadata._all_fields_ = LinkMetadata._fields_ LinkMetadata._tag_to_subtype_ = { - ("path",): PathLinkMetadata_validator, - ("collection",): CollectionLinkMetadata_validator, + ('path',): PathLinkMetadata_validator, + ('collection',): CollectionLinkMetadata_validator, } LinkMetadata._pytype_to_tag_and_subtype_ = { - PathLinkMetadata: (("path",), PathLinkMetadata_validator), - CollectionLinkMetadata: (("collection",), CollectionLinkMetadata_validator), + PathLinkMetadata: (('path',), PathLinkMetadata_validator), + CollectionLinkMetadata: (('collection',), CollectionLinkMetadata_validator), } LinkMetadata._is_catch_all_ = True CollectionLinkMetadata._field_names_ = set([]) -CollectionLinkMetadata._all_field_names_ = LinkMetadata._all_field_names_.union( - CollectionLinkMetadata._field_names_ -) +CollectionLinkMetadata._all_field_names_ = LinkMetadata._all_field_names_.union(CollectionLinkMetadata._field_names_) CollectionLinkMetadata._fields_ = [] CollectionLinkMetadata._all_fields_ = LinkMetadata._all_fields_ + CollectionLinkMetadata._fields_ CreateSharedLinkArg.path.validator = bv.String() CreateSharedLinkArg.short_url.validator = bv.Boolean() CreateSharedLinkArg.pending_upload.validator = bv.Nullable(PendingUploadMode_validator) -CreateSharedLinkArg._all_field_names_ = set( - [ - "path", - "short_url", - "pending_upload", - ] -) +CreateSharedLinkArg._all_field_names_ = set([ + 'path', + 'short_url', + 'pending_upload', +]) CreateSharedLinkArg._all_fields_ = [ - ("path", CreateSharedLinkArg.path.validator), - ("short_url", CreateSharedLinkArg.short_url.validator), - ("pending_upload", CreateSharedLinkArg.pending_upload.validator), + ('path', CreateSharedLinkArg.path.validator), + ('short_url', CreateSharedLinkArg.short_url.validator), + ('pending_upload', CreateSharedLinkArg.pending_upload.validator), ] CreateSharedLinkError._path_validator = files.LookupError_validator CreateSharedLinkError._other_validator = bv.Void() CreateSharedLinkError._tagmap = { - "path": CreateSharedLinkError._path_validator, - "other": CreateSharedLinkError._other_validator, + 'path': CreateSharedLinkError._path_validator, + 'other': CreateSharedLinkError._other_validator, } -CreateSharedLinkError.other = CreateSharedLinkError("other") +CreateSharedLinkError.other = CreateSharedLinkError('other') CreateSharedLinkWithSettingsArg.path.validator = ReadPath_validator CreateSharedLinkWithSettingsArg.settings.validator = bv.Nullable(SharedLinkSettings_validator) -CreateSharedLinkWithSettingsArg._all_field_names_ = set( - [ - "path", - "settings", - ] -) +CreateSharedLinkWithSettingsArg._all_field_names_ = set([ + 'path', + 'settings', +]) CreateSharedLinkWithSettingsArg._all_fields_ = [ - ("path", CreateSharedLinkWithSettingsArg.path.validator), - ("settings", CreateSharedLinkWithSettingsArg.settings.validator), + ('path', CreateSharedLinkWithSettingsArg.path.validator), + ('settings', CreateSharedLinkWithSettingsArg.settings.validator), ] CreateSharedLinkWithSettingsError._path_validator = files.LookupError_validator CreateSharedLinkWithSettingsError._email_not_verified_validator = bv.Void() -CreateSharedLinkWithSettingsError._shared_link_already_exists_validator = bv.Nullable( - SharedLinkAlreadyExistsMetadata_validator -) +CreateSharedLinkWithSettingsError._shared_link_already_exists_validator = bv.Nullable(SharedLinkAlreadyExistsMetadata_validator) CreateSharedLinkWithSettingsError._settings_error_validator = SharedLinkSettingsError_validator CreateSharedLinkWithSettingsError._access_denied_validator = bv.Void() CreateSharedLinkWithSettingsError._banned_member_validator = bv.Void() CreateSharedLinkWithSettingsError._too_many_shared_folders_validator = bv.Void() CreateSharedLinkWithSettingsError._tagmap = { - "path": CreateSharedLinkWithSettingsError._path_validator, - "email_not_verified": CreateSharedLinkWithSettingsError._email_not_verified_validator, - "shared_link_already_exists": CreateSharedLinkWithSettingsError._shared_link_already_exists_validator, - "settings_error": CreateSharedLinkWithSettingsError._settings_error_validator, - "access_denied": CreateSharedLinkWithSettingsError._access_denied_validator, - "banned_member": CreateSharedLinkWithSettingsError._banned_member_validator, - "too_many_shared_folders": CreateSharedLinkWithSettingsError._too_many_shared_folders_validator, + 'path': CreateSharedLinkWithSettingsError._path_validator, + 'email_not_verified': CreateSharedLinkWithSettingsError._email_not_verified_validator, + 'shared_link_already_exists': CreateSharedLinkWithSettingsError._shared_link_already_exists_validator, + 'settings_error': CreateSharedLinkWithSettingsError._settings_error_validator, + 'access_denied': CreateSharedLinkWithSettingsError._access_denied_validator, + 'banned_member': CreateSharedLinkWithSettingsError._banned_member_validator, + 'too_many_shared_folders': CreateSharedLinkWithSettingsError._too_many_shared_folders_validator, } -CreateSharedLinkWithSettingsError.email_not_verified = CreateSharedLinkWithSettingsError( - "email_not_verified" -) -CreateSharedLinkWithSettingsError.access_denied = CreateSharedLinkWithSettingsError("access_denied") -CreateSharedLinkWithSettingsError.banned_member = CreateSharedLinkWithSettingsError("banned_member") -CreateSharedLinkWithSettingsError.too_many_shared_folders = CreateSharedLinkWithSettingsError( - "too_many_shared_folders" -) +CreateSharedLinkWithSettingsError.email_not_verified = CreateSharedLinkWithSettingsError('email_not_verified') +CreateSharedLinkWithSettingsError.access_denied = CreateSharedLinkWithSettingsError('access_denied') +CreateSharedLinkWithSettingsError.banned_member = CreateSharedLinkWithSettingsError('banned_member') +CreateSharedLinkWithSettingsError.too_many_shared_folders = CreateSharedLinkWithSettingsError('too_many_shared_folders') SharedContentLinkMetadataBase.access_level.validator = bv.Nullable(AccessLevel_validator) SharedContentLinkMetadataBase.audience_options.validator = bv.List(LinkAudience_validator) -SharedContentLinkMetadataBase.audience_restricting_shared_folder.validator = bv.Nullable( - AudienceRestrictingSharedFolder_validator -) +SharedContentLinkMetadataBase.audience_restricting_shared_folder.validator = bv.Nullable(AudienceRestrictingSharedFolder_validator) SharedContentLinkMetadataBase.current_audience.validator = LinkAudience_validator SharedContentLinkMetadataBase.expiry.validator = bv.Nullable(common.DropboxTimestamp_validator) SharedContentLinkMetadataBase.link_permissions.validator = bv.List(LinkPermission_validator) SharedContentLinkMetadataBase.password_protected.validator = bv.Boolean() -SharedContentLinkMetadataBase._all_field_names_ = set( - [ - "access_level", - "audience_options", - "audience_restricting_shared_folder", - "current_audience", - "expiry", - "link_permissions", - "password_protected", - ] -) +SharedContentLinkMetadataBase._all_field_names_ = set([ + 'access_level', + 'audience_options', + 'audience_restricting_shared_folder', + 'current_audience', + 'expiry', + 'link_permissions', + 'password_protected', +]) SharedContentLinkMetadataBase._all_fields_ = [ - ("access_level", SharedContentLinkMetadataBase.access_level.validator), - ("audience_options", SharedContentLinkMetadataBase.audience_options.validator), - ( - "audience_restricting_shared_folder", - SharedContentLinkMetadataBase.audience_restricting_shared_folder.validator, - ), - ("current_audience", SharedContentLinkMetadataBase.current_audience.validator), - ("expiry", SharedContentLinkMetadataBase.expiry.validator), - ("link_permissions", SharedContentLinkMetadataBase.link_permissions.validator), - ("password_protected", SharedContentLinkMetadataBase.password_protected.validator), + ('access_level', SharedContentLinkMetadataBase.access_level.validator), + ('audience_options', SharedContentLinkMetadataBase.audience_options.validator), + ('audience_restricting_shared_folder', SharedContentLinkMetadataBase.audience_restricting_shared_folder.validator), + ('current_audience', SharedContentLinkMetadataBase.current_audience.validator), + ('expiry', SharedContentLinkMetadataBase.expiry.validator), + ('link_permissions', SharedContentLinkMetadataBase.link_permissions.validator), + ('password_protected', SharedContentLinkMetadataBase.password_protected.validator), ] -ExpectedSharedContentLinkMetadata._all_field_names_ = ( - SharedContentLinkMetadataBase._all_field_names_.union(set([])) -) +ExpectedSharedContentLinkMetadata._all_field_names_ = SharedContentLinkMetadataBase._all_field_names_.union(set([])) ExpectedSharedContentLinkMetadata._all_fields_ = SharedContentLinkMetadataBase._all_fields_ + [] FileAction._disable_viewer_info_validator = bv.Void() @@ -13219,47 +12627,47 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): FileAction._create_edit_link_validator = bv.Void() FileAction._other_validator = bv.Void() FileAction._tagmap = { - "disable_viewer_info": FileAction._disable_viewer_info_validator, - "edit_contents": FileAction._edit_contents_validator, - "enable_viewer_info": FileAction._enable_viewer_info_validator, - "invite_viewer": FileAction._invite_viewer_validator, - "invite_viewer_no_comment": FileAction._invite_viewer_no_comment_validator, - "invite_editor": FileAction._invite_editor_validator, - "unshare": FileAction._unshare_validator, - "relinquish_membership": FileAction._relinquish_membership_validator, - "share_link": FileAction._share_link_validator, - "create_link": FileAction._create_link_validator, - "create_view_link": FileAction._create_view_link_validator, - "create_edit_link": FileAction._create_edit_link_validator, - "other": FileAction._other_validator, + 'disable_viewer_info': FileAction._disable_viewer_info_validator, + 'edit_contents': FileAction._edit_contents_validator, + 'enable_viewer_info': FileAction._enable_viewer_info_validator, + 'invite_viewer': FileAction._invite_viewer_validator, + 'invite_viewer_no_comment': FileAction._invite_viewer_no_comment_validator, + 'invite_editor': FileAction._invite_editor_validator, + 'unshare': FileAction._unshare_validator, + 'relinquish_membership': FileAction._relinquish_membership_validator, + 'share_link': FileAction._share_link_validator, + 'create_link': FileAction._create_link_validator, + 'create_view_link': FileAction._create_view_link_validator, + 'create_edit_link': FileAction._create_edit_link_validator, + 'other': FileAction._other_validator, } -FileAction.disable_viewer_info = FileAction("disable_viewer_info") -FileAction.edit_contents = FileAction("edit_contents") -FileAction.enable_viewer_info = FileAction("enable_viewer_info") -FileAction.invite_viewer = FileAction("invite_viewer") -FileAction.invite_viewer_no_comment = FileAction("invite_viewer_no_comment") -FileAction.invite_editor = FileAction("invite_editor") -FileAction.unshare = FileAction("unshare") -FileAction.relinquish_membership = FileAction("relinquish_membership") -FileAction.share_link = FileAction("share_link") -FileAction.create_link = FileAction("create_link") -FileAction.create_view_link = FileAction("create_view_link") -FileAction.create_edit_link = FileAction("create_edit_link") -FileAction.other = FileAction("other") +FileAction.disable_viewer_info = FileAction('disable_viewer_info') +FileAction.edit_contents = FileAction('edit_contents') +FileAction.enable_viewer_info = FileAction('enable_viewer_info') +FileAction.invite_viewer = FileAction('invite_viewer') +FileAction.invite_viewer_no_comment = FileAction('invite_viewer_no_comment') +FileAction.invite_editor = FileAction('invite_editor') +FileAction.unshare = FileAction('unshare') +FileAction.relinquish_membership = FileAction('relinquish_membership') +FileAction.share_link = FileAction('share_link') +FileAction.create_link = FileAction('create_link') +FileAction.create_view_link = FileAction('create_view_link') +FileAction.create_edit_link = FileAction('create_edit_link') +FileAction.other = FileAction('other') FileErrorResult._file_not_found_error_validator = files.Id_validator FileErrorResult._invalid_file_action_error_validator = files.Id_validator FileErrorResult._permission_denied_error_validator = files.Id_validator FileErrorResult._other_validator = bv.Void() FileErrorResult._tagmap = { - "file_not_found_error": FileErrorResult._file_not_found_error_validator, - "invalid_file_action_error": FileErrorResult._invalid_file_action_error_validator, - "permission_denied_error": FileErrorResult._permission_denied_error_validator, - "other": FileErrorResult._other_validator, + 'file_not_found_error': FileErrorResult._file_not_found_error_validator, + 'invalid_file_action_error': FileErrorResult._invalid_file_action_error_validator, + 'permission_denied_error': FileErrorResult._permission_denied_error_validator, + 'other': FileErrorResult._other_validator, } -FileErrorResult.other = FileErrorResult("other") +FileErrorResult.other = FileErrorResult('other') SharedLinkMetadata.url.validator = bv.String() SharedLinkMetadata.id.validator = bv.Nullable(Id_validator) @@ -13269,38 +12677,36 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): SharedLinkMetadata.link_permissions.validator = LinkPermissions_validator SharedLinkMetadata.team_member_info.validator = bv.Nullable(TeamMemberInfo_validator) SharedLinkMetadata.content_owner_team_info.validator = bv.Nullable(TeamInfo_validator) -SharedLinkMetadata._field_names_ = set( - [ - "url", - "id", - "name", - "expires", - "path_lower", - "link_permissions", - "team_member_info", - "content_owner_team_info", - ] -) +SharedLinkMetadata._field_names_ = set([ + 'url', + 'id', + 'name', + 'expires', + 'path_lower', + 'link_permissions', + 'team_member_info', + 'content_owner_team_info', +]) SharedLinkMetadata._all_field_names_ = SharedLinkMetadata._field_names_ SharedLinkMetadata._fields_ = [ - ("url", SharedLinkMetadata.url.validator), - ("id", SharedLinkMetadata.id.validator), - ("name", SharedLinkMetadata.name.validator), - ("expires", SharedLinkMetadata.expires.validator), - ("path_lower", SharedLinkMetadata.path_lower.validator), - ("link_permissions", SharedLinkMetadata.link_permissions.validator), - ("team_member_info", SharedLinkMetadata.team_member_info.validator), - ("content_owner_team_info", SharedLinkMetadata.content_owner_team_info.validator), + ('url', SharedLinkMetadata.url.validator), + ('id', SharedLinkMetadata.id.validator), + ('name', SharedLinkMetadata.name.validator), + ('expires', SharedLinkMetadata.expires.validator), + ('path_lower', SharedLinkMetadata.path_lower.validator), + ('link_permissions', SharedLinkMetadata.link_permissions.validator), + ('team_member_info', SharedLinkMetadata.team_member_info.validator), + ('content_owner_team_info', SharedLinkMetadata.content_owner_team_info.validator), ] SharedLinkMetadata._all_fields_ = SharedLinkMetadata._fields_ SharedLinkMetadata._tag_to_subtype_ = { - ("file",): FileLinkMetadata_validator, - ("folder",): FolderLinkMetadata_validator, + ('file',): FileLinkMetadata_validator, + ('folder',): FolderLinkMetadata_validator, } SharedLinkMetadata._pytype_to_tag_and_subtype_ = { - FileLinkMetadata: (("file",), FileLinkMetadata_validator), - FolderLinkMetadata: (("folder",), FolderLinkMetadata_validator), + FileLinkMetadata: (('file',), FileLinkMetadata_validator), + FolderLinkMetadata: (('folder',), FolderLinkMetadata_validator), } SharedLinkMetadata._is_catch_all_ = True @@ -13308,22 +12714,18 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): FileLinkMetadata.server_modified.validator = common.DropboxTimestamp_validator FileLinkMetadata.rev.validator = Rev_validator FileLinkMetadata.size.validator = bv.UInt64() -FileLinkMetadata._field_names_ = set( - [ - "client_modified", - "server_modified", - "rev", - "size", - ] -) -FileLinkMetadata._all_field_names_ = SharedLinkMetadata._all_field_names_.union( - FileLinkMetadata._field_names_ -) +FileLinkMetadata._field_names_ = set([ + 'client_modified', + 'server_modified', + 'rev', + 'size', +]) +FileLinkMetadata._all_field_names_ = SharedLinkMetadata._all_field_names_.union(FileLinkMetadata._field_names_) FileLinkMetadata._fields_ = [ - ("client_modified", FileLinkMetadata.client_modified.validator), - ("server_modified", FileLinkMetadata.server_modified.validator), - ("rev", FileLinkMetadata.rev.validator), - ("size", FileLinkMetadata.size.validator), + ('client_modified', FileLinkMetadata.client_modified.validator), + ('server_modified', FileLinkMetadata.server_modified.validator), + ('rev', FileLinkMetadata.rev.validator), + ('size', FileLinkMetadata.size.validator), ] FileLinkMetadata._all_fields_ = SharedLinkMetadata._all_fields_ + FileLinkMetadata._fields_ @@ -13333,68 +12735,64 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): FileMemberActionError._no_explicit_access_validator = MemberAccessLevelResult_validator FileMemberActionError._other_validator = bv.Void() FileMemberActionError._tagmap = { - "invalid_member": FileMemberActionError._invalid_member_validator, - "no_permission": FileMemberActionError._no_permission_validator, - "access_error": FileMemberActionError._access_error_validator, - "no_explicit_access": FileMemberActionError._no_explicit_access_validator, - "other": FileMemberActionError._other_validator, + 'invalid_member': FileMemberActionError._invalid_member_validator, + 'no_permission': FileMemberActionError._no_permission_validator, + 'access_error': FileMemberActionError._access_error_validator, + 'no_explicit_access': FileMemberActionError._no_explicit_access_validator, + 'other': FileMemberActionError._other_validator, } -FileMemberActionError.invalid_member = FileMemberActionError("invalid_member") -FileMemberActionError.no_permission = FileMemberActionError("no_permission") -FileMemberActionError.other = FileMemberActionError("other") +FileMemberActionError.invalid_member = FileMemberActionError('invalid_member') +FileMemberActionError.no_permission = FileMemberActionError('no_permission') +FileMemberActionError.other = FileMemberActionError('other') FileMemberActionIndividualResult._success_validator = bv.Nullable(AccessLevel_validator) FileMemberActionIndividualResult._member_error_validator = FileMemberActionError_validator FileMemberActionIndividualResult._tagmap = { - "success": FileMemberActionIndividualResult._success_validator, - "member_error": FileMemberActionIndividualResult._member_error_validator, + 'success': FileMemberActionIndividualResult._success_validator, + 'member_error': FileMemberActionIndividualResult._member_error_validator, } FileMemberActionResult.member.validator = MemberSelector_validator FileMemberActionResult.result.validator = FileMemberActionIndividualResult_validator FileMemberActionResult.sckey_sha1.validator = bv.Nullable(bv.String()) FileMemberActionResult.invitation_signature.validator = bv.Nullable(bv.List(bv.String())) -FileMemberActionResult._all_field_names_ = set( - [ - "member", - "result", - "sckey_sha1", - "invitation_signature", - ] -) +FileMemberActionResult._all_field_names_ = set([ + 'member', + 'result', + 'sckey_sha1', + 'invitation_signature', +]) FileMemberActionResult._all_fields_ = [ - ("member", FileMemberActionResult.member.validator), - ("result", FileMemberActionResult.result.validator), - ("sckey_sha1", FileMemberActionResult.sckey_sha1.validator), - ("invitation_signature", FileMemberActionResult.invitation_signature.validator), + ('member', FileMemberActionResult.member.validator), + ('result', FileMemberActionResult.result.validator), + ('sckey_sha1', FileMemberActionResult.sckey_sha1.validator), + ('invitation_signature', FileMemberActionResult.invitation_signature.validator), ] FileMemberRemoveActionResult._success_validator = MemberAccessLevelResult_validator FileMemberRemoveActionResult._member_error_validator = FileMemberActionError_validator FileMemberRemoveActionResult._other_validator = bv.Void() FileMemberRemoveActionResult._tagmap = { - "success": FileMemberRemoveActionResult._success_validator, - "member_error": FileMemberRemoveActionResult._member_error_validator, - "other": FileMemberRemoveActionResult._other_validator, + 'success': FileMemberRemoveActionResult._success_validator, + 'member_error': FileMemberRemoveActionResult._member_error_validator, + 'other': FileMemberRemoveActionResult._other_validator, } -FileMemberRemoveActionResult.other = FileMemberRemoveActionResult("other") +FileMemberRemoveActionResult.other = FileMemberRemoveActionResult('other') FilePermission.action.validator = FileAction_validator FilePermission.allow.validator = bv.Boolean() FilePermission.reason.validator = bv.Nullable(PermissionDeniedReason_validator) -FilePermission._all_field_names_ = set( - [ - "action", - "allow", - "reason", - ] -) +FilePermission._all_field_names_ = set([ + 'action', + 'allow', + 'reason', +]) FilePermission._all_fields_ = [ - ("action", FilePermission.action.validator), - ("allow", FilePermission.allow.validator), - ("reason", FilePermission.reason.validator), + ('action', FilePermission.action.validator), + ('allow', FilePermission.allow.validator), + ('reason', FilePermission.reason.validator), ] FolderAction._change_options_validator = bv.Void() @@ -13415,64 +12813,60 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): FolderAction._set_access_inheritance_validator = bv.Void() FolderAction._other_validator = bv.Void() FolderAction._tagmap = { - "change_options": FolderAction._change_options_validator, - "disable_viewer_info": FolderAction._disable_viewer_info_validator, - "edit_contents": FolderAction._edit_contents_validator, - "enable_viewer_info": FolderAction._enable_viewer_info_validator, - "invite_editor": FolderAction._invite_editor_validator, - "invite_viewer": FolderAction._invite_viewer_validator, - "invite_viewer_no_comment": FolderAction._invite_viewer_no_comment_validator, - "relinquish_membership": FolderAction._relinquish_membership_validator, - "unmount": FolderAction._unmount_validator, - "unshare": FolderAction._unshare_validator, - "leave_a_copy": FolderAction._leave_a_copy_validator, - "share_link": FolderAction._share_link_validator, - "create_link": FolderAction._create_link_validator, - "create_view_link": FolderAction._create_view_link_validator, - "create_edit_link": FolderAction._create_edit_link_validator, - "set_access_inheritance": FolderAction._set_access_inheritance_validator, - "other": FolderAction._other_validator, + 'change_options': FolderAction._change_options_validator, + 'disable_viewer_info': FolderAction._disable_viewer_info_validator, + 'edit_contents': FolderAction._edit_contents_validator, + 'enable_viewer_info': FolderAction._enable_viewer_info_validator, + 'invite_editor': FolderAction._invite_editor_validator, + 'invite_viewer': FolderAction._invite_viewer_validator, + 'invite_viewer_no_comment': FolderAction._invite_viewer_no_comment_validator, + 'relinquish_membership': FolderAction._relinquish_membership_validator, + 'unmount': FolderAction._unmount_validator, + 'unshare': FolderAction._unshare_validator, + 'leave_a_copy': FolderAction._leave_a_copy_validator, + 'share_link': FolderAction._share_link_validator, + 'create_link': FolderAction._create_link_validator, + 'create_view_link': FolderAction._create_view_link_validator, + 'create_edit_link': FolderAction._create_edit_link_validator, + 'set_access_inheritance': FolderAction._set_access_inheritance_validator, + 'other': FolderAction._other_validator, } -FolderAction.change_options = FolderAction("change_options") -FolderAction.disable_viewer_info = FolderAction("disable_viewer_info") -FolderAction.edit_contents = FolderAction("edit_contents") -FolderAction.enable_viewer_info = FolderAction("enable_viewer_info") -FolderAction.invite_editor = FolderAction("invite_editor") -FolderAction.invite_viewer = FolderAction("invite_viewer") -FolderAction.invite_viewer_no_comment = FolderAction("invite_viewer_no_comment") -FolderAction.relinquish_membership = FolderAction("relinquish_membership") -FolderAction.unmount = FolderAction("unmount") -FolderAction.unshare = FolderAction("unshare") -FolderAction.leave_a_copy = FolderAction("leave_a_copy") -FolderAction.share_link = FolderAction("share_link") -FolderAction.create_link = FolderAction("create_link") -FolderAction.create_view_link = FolderAction("create_view_link") -FolderAction.create_edit_link = FolderAction("create_edit_link") -FolderAction.set_access_inheritance = FolderAction("set_access_inheritance") -FolderAction.other = FolderAction("other") +FolderAction.change_options = FolderAction('change_options') +FolderAction.disable_viewer_info = FolderAction('disable_viewer_info') +FolderAction.edit_contents = FolderAction('edit_contents') +FolderAction.enable_viewer_info = FolderAction('enable_viewer_info') +FolderAction.invite_editor = FolderAction('invite_editor') +FolderAction.invite_viewer = FolderAction('invite_viewer') +FolderAction.invite_viewer_no_comment = FolderAction('invite_viewer_no_comment') +FolderAction.relinquish_membership = FolderAction('relinquish_membership') +FolderAction.unmount = FolderAction('unmount') +FolderAction.unshare = FolderAction('unshare') +FolderAction.leave_a_copy = FolderAction('leave_a_copy') +FolderAction.share_link = FolderAction('share_link') +FolderAction.create_link = FolderAction('create_link') +FolderAction.create_view_link = FolderAction('create_view_link') +FolderAction.create_edit_link = FolderAction('create_edit_link') +FolderAction.set_access_inheritance = FolderAction('set_access_inheritance') +FolderAction.other = FolderAction('other') FolderLinkMetadata._field_names_ = set([]) -FolderLinkMetadata._all_field_names_ = SharedLinkMetadata._all_field_names_.union( - FolderLinkMetadata._field_names_ -) +FolderLinkMetadata._all_field_names_ = SharedLinkMetadata._all_field_names_.union(FolderLinkMetadata._field_names_) FolderLinkMetadata._fields_ = [] FolderLinkMetadata._all_fields_ = SharedLinkMetadata._all_fields_ + FolderLinkMetadata._fields_ FolderPermission.action.validator = FolderAction_validator FolderPermission.allow.validator = bv.Boolean() FolderPermission.reason.validator = bv.Nullable(PermissionDeniedReason_validator) -FolderPermission._all_field_names_ = set( - [ - "action", - "allow", - "reason", - ] -) +FolderPermission._all_field_names_ = set([ + 'action', + 'allow', + 'reason', +]) FolderPermission._all_fields_ = [ - ("action", FolderPermission.action.validator), - ("allow", FolderPermission.allow.validator), - ("reason", FolderPermission.reason.validator), + ('action', FolderPermission.action.validator), + ('allow', FolderPermission.allow.validator), + ('reason', FolderPermission.reason.validator), ] FolderPolicy.member_policy.validator = bv.Nullable(MemberPolicy_validator) @@ -13480,95 +12874,85 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): FolderPolicy.acl_update_policy.validator = AclUpdatePolicy_validator FolderPolicy.shared_link_policy.validator = SharedLinkPolicy_validator FolderPolicy.viewer_info_policy.validator = bv.Nullable(ViewerInfoPolicy_validator) -FolderPolicy._all_field_names_ = set( - [ - "member_policy", - "resolved_member_policy", - "acl_update_policy", - "shared_link_policy", - "viewer_info_policy", - ] -) +FolderPolicy._all_field_names_ = set([ + 'member_policy', + 'resolved_member_policy', + 'acl_update_policy', + 'shared_link_policy', + 'viewer_info_policy', +]) FolderPolicy._all_fields_ = [ - ("member_policy", FolderPolicy.member_policy.validator), - ("resolved_member_policy", FolderPolicy.resolved_member_policy.validator), - ("acl_update_policy", FolderPolicy.acl_update_policy.validator), - ("shared_link_policy", FolderPolicy.shared_link_policy.validator), - ("viewer_info_policy", FolderPolicy.viewer_info_policy.validator), + ('member_policy', FolderPolicy.member_policy.validator), + ('resolved_member_policy', FolderPolicy.resolved_member_policy.validator), + ('acl_update_policy', FolderPolicy.acl_update_policy.validator), + ('shared_link_policy', FolderPolicy.shared_link_policy.validator), + ('viewer_info_policy', FolderPolicy.viewer_info_policy.validator), ] GetFileMetadataArg.file.validator = PathOrId_validator GetFileMetadataArg.actions.validator = bv.Nullable(bv.List(FileAction_validator)) -GetFileMetadataArg._all_field_names_ = set( - [ - "file", - "actions", - ] -) +GetFileMetadataArg._all_field_names_ = set([ + 'file', + 'actions', +]) GetFileMetadataArg._all_fields_ = [ - ("file", GetFileMetadataArg.file.validator), - ("actions", GetFileMetadataArg.actions.validator), + ('file', GetFileMetadataArg.file.validator), + ('actions', GetFileMetadataArg.actions.validator), ] GetFileMetadataBatchArg.files.validator = bv.List(PathOrId_validator, max_items=100) GetFileMetadataBatchArg.actions.validator = bv.Nullable(bv.List(FileAction_validator)) -GetFileMetadataBatchArg._all_field_names_ = set( - [ - "files", - "actions", - ] -) +GetFileMetadataBatchArg._all_field_names_ = set([ + 'files', + 'actions', +]) GetFileMetadataBatchArg._all_fields_ = [ - ("files", GetFileMetadataBatchArg.files.validator), - ("actions", GetFileMetadataBatchArg.actions.validator), + ('files', GetFileMetadataBatchArg.files.validator), + ('actions', GetFileMetadataBatchArg.actions.validator), ] GetFileMetadataBatchResult.file.validator = PathOrId_validator GetFileMetadataBatchResult.result.validator = GetFileMetadataIndividualResult_validator -GetFileMetadataBatchResult._all_field_names_ = set( - [ - "file", - "result", - ] -) +GetFileMetadataBatchResult._all_field_names_ = set([ + 'file', + 'result', +]) GetFileMetadataBatchResult._all_fields_ = [ - ("file", GetFileMetadataBatchResult.file.validator), - ("result", GetFileMetadataBatchResult.result.validator), + ('file', GetFileMetadataBatchResult.file.validator), + ('result', GetFileMetadataBatchResult.result.validator), ] GetFileMetadataError._user_error_validator = SharingUserError_validator GetFileMetadataError._access_error_validator = SharingFileAccessError_validator GetFileMetadataError._other_validator = bv.Void() GetFileMetadataError._tagmap = { - "user_error": GetFileMetadataError._user_error_validator, - "access_error": GetFileMetadataError._access_error_validator, - "other": GetFileMetadataError._other_validator, + 'user_error': GetFileMetadataError._user_error_validator, + 'access_error': GetFileMetadataError._access_error_validator, + 'other': GetFileMetadataError._other_validator, } -GetFileMetadataError.other = GetFileMetadataError("other") +GetFileMetadataError.other = GetFileMetadataError('other') GetFileMetadataIndividualResult._metadata_validator = SharedFileMetadata_validator GetFileMetadataIndividualResult._access_error_validator = SharingFileAccessError_validator GetFileMetadataIndividualResult._other_validator = bv.Void() GetFileMetadataIndividualResult._tagmap = { - "metadata": GetFileMetadataIndividualResult._metadata_validator, - "access_error": GetFileMetadataIndividualResult._access_error_validator, - "other": GetFileMetadataIndividualResult._other_validator, + 'metadata': GetFileMetadataIndividualResult._metadata_validator, + 'access_error': GetFileMetadataIndividualResult._access_error_validator, + 'other': GetFileMetadataIndividualResult._other_validator, } -GetFileMetadataIndividualResult.other = GetFileMetadataIndividualResult("other") +GetFileMetadataIndividualResult.other = GetFileMetadataIndividualResult('other') GetMetadataArgs.shared_folder_id.validator = common.SharedFolderId_validator GetMetadataArgs.actions.validator = bv.Nullable(bv.List(FolderAction_validator)) -GetMetadataArgs._all_field_names_ = set( - [ - "shared_folder_id", - "actions", - ] -) +GetMetadataArgs._all_field_names_ = set([ + 'shared_folder_id', + 'actions', +]) GetMetadataArgs._all_fields_ = [ - ("shared_folder_id", GetMetadataArgs.shared_folder_id.validator), - ("actions", GetMetadataArgs.actions.validator), + ('shared_folder_id', GetMetadataArgs.shared_folder_id.validator), + ('actions', GetMetadataArgs.actions.validator), ] SharedLinkError._shared_link_not_found_validator = bv.Void() @@ -13577,157 +12961,139 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): SharedLinkError._unsupported_parameter_field_validator = bv.Void() SharedLinkError._other_validator = bv.Void() SharedLinkError._tagmap = { - "shared_link_not_found": SharedLinkError._shared_link_not_found_validator, - "shared_link_access_denied": SharedLinkError._shared_link_access_denied_validator, - "unsupported_link_type": SharedLinkError._unsupported_link_type_validator, - "unsupported_parameter_field": SharedLinkError._unsupported_parameter_field_validator, - "other": SharedLinkError._other_validator, + 'shared_link_not_found': SharedLinkError._shared_link_not_found_validator, + 'shared_link_access_denied': SharedLinkError._shared_link_access_denied_validator, + 'unsupported_link_type': SharedLinkError._unsupported_link_type_validator, + 'unsupported_parameter_field': SharedLinkError._unsupported_parameter_field_validator, + 'other': SharedLinkError._other_validator, } -SharedLinkError.shared_link_not_found = SharedLinkError("shared_link_not_found") -SharedLinkError.shared_link_access_denied = SharedLinkError("shared_link_access_denied") -SharedLinkError.unsupported_link_type = SharedLinkError("unsupported_link_type") -SharedLinkError.unsupported_parameter_field = SharedLinkError("unsupported_parameter_field") -SharedLinkError.other = SharedLinkError("other") +SharedLinkError.shared_link_not_found = SharedLinkError('shared_link_not_found') +SharedLinkError.shared_link_access_denied = SharedLinkError('shared_link_access_denied') +SharedLinkError.unsupported_link_type = SharedLinkError('unsupported_link_type') +SharedLinkError.unsupported_parameter_field = SharedLinkError('unsupported_parameter_field') +SharedLinkError.other = SharedLinkError('other') GetSharedLinkFileError._shared_link_is_directory_validator = bv.Void() GetSharedLinkFileError._tagmap = { - "shared_link_is_directory": GetSharedLinkFileError._shared_link_is_directory_validator, + 'shared_link_is_directory': GetSharedLinkFileError._shared_link_is_directory_validator, } GetSharedLinkFileError._tagmap.update(SharedLinkError._tagmap) -GetSharedLinkFileError.shared_link_is_directory = GetSharedLinkFileError("shared_link_is_directory") +GetSharedLinkFileError.shared_link_is_directory = GetSharedLinkFileError('shared_link_is_directory') GetSharedLinkMetadataArg.url.validator = bv.String() GetSharedLinkMetadataArg.path.validator = bv.Nullable(Path_validator) GetSharedLinkMetadataArg.link_password.validator = bv.Nullable(bv.String()) -GetSharedLinkMetadataArg._all_field_names_ = set( - [ - "url", - "path", - "link_password", - ] -) +GetSharedLinkMetadataArg._all_field_names_ = set([ + 'url', + 'path', + 'link_password', +]) GetSharedLinkMetadataArg._all_fields_ = [ - ("url", GetSharedLinkMetadataArg.url.validator), - ("path", GetSharedLinkMetadataArg.path.validator), - ("link_password", GetSharedLinkMetadataArg.link_password.validator), + ('url', GetSharedLinkMetadataArg.url.validator), + ('path', GetSharedLinkMetadataArg.path.validator), + ('link_password', GetSharedLinkMetadataArg.link_password.validator), ] GetSharedLinksArg.path.validator = bv.Nullable(bv.String()) -GetSharedLinksArg._all_field_names_ = set(["path"]) -GetSharedLinksArg._all_fields_ = [("path", GetSharedLinksArg.path.validator)] +GetSharedLinksArg._all_field_names_ = set(['path']) +GetSharedLinksArg._all_fields_ = [('path', GetSharedLinksArg.path.validator)] GetSharedLinksError._path_validator = files.MalformedPathError_validator GetSharedLinksError._other_validator = bv.Void() GetSharedLinksError._tagmap = { - "path": GetSharedLinksError._path_validator, - "other": GetSharedLinksError._other_validator, + 'path': GetSharedLinksError._path_validator, + 'other': GetSharedLinksError._other_validator, } -GetSharedLinksError.other = GetSharedLinksError("other") +GetSharedLinksError.other = GetSharedLinksError('other') GetSharedLinksResult.links.validator = bv.List(LinkMetadata_validator) -GetSharedLinksResult._all_field_names_ = set(["links"]) -GetSharedLinksResult._all_fields_ = [("links", GetSharedLinksResult.links.validator)] +GetSharedLinksResult._all_field_names_ = set(['links']) +GetSharedLinksResult._all_fields_ = [('links', GetSharedLinksResult.links.validator)] GroupInfo.group_type.validator = team_common.GroupType_validator GroupInfo.is_member.validator = bv.Boolean() GroupInfo.is_owner.validator = bv.Boolean() GroupInfo.same_team.validator = bv.Boolean() -GroupInfo._all_field_names_ = team_common.GroupSummary._all_field_names_.union( - set( - [ - "group_type", - "is_member", - "is_owner", - "same_team", - ] - ) -) +GroupInfo._all_field_names_ = team_common.GroupSummary._all_field_names_.union(set([ + 'group_type', + 'is_member', + 'is_owner', + 'same_team', +])) GroupInfo._all_fields_ = team_common.GroupSummary._all_fields_ + [ - ("group_type", GroupInfo.group_type.validator), - ("is_member", GroupInfo.is_member.validator), - ("is_owner", GroupInfo.is_owner.validator), - ("same_team", GroupInfo.same_team.validator), + ('group_type', GroupInfo.group_type.validator), + ('is_member', GroupInfo.is_member.validator), + ('is_owner', GroupInfo.is_owner.validator), + ('same_team', GroupInfo.same_team.validator), ] MembershipInfo.access_type.validator = AccessLevel_validator MembershipInfo.permissions.validator = bv.Nullable(bv.List(MemberPermission_validator)) MembershipInfo.initials.validator = bv.Nullable(bv.String()) MembershipInfo.is_inherited.validator = bv.Boolean() -MembershipInfo._all_field_names_ = set( - [ - "access_type", - "permissions", - "initials", - "is_inherited", - ] -) +MembershipInfo._all_field_names_ = set([ + 'access_type', + 'permissions', + 'initials', + 'is_inherited', +]) MembershipInfo._all_fields_ = [ - ("access_type", MembershipInfo.access_type.validator), - ("permissions", MembershipInfo.permissions.validator), - ("initials", MembershipInfo.initials.validator), - ("is_inherited", MembershipInfo.is_inherited.validator), + ('access_type', MembershipInfo.access_type.validator), + ('permissions', MembershipInfo.permissions.validator), + ('initials', MembershipInfo.initials.validator), + ('is_inherited', MembershipInfo.is_inherited.validator), ] GroupMembershipInfo.group.validator = GroupInfo_validator -GroupMembershipInfo._all_field_names_ = MembershipInfo._all_field_names_.union(set(["group"])) -GroupMembershipInfo._all_fields_ = MembershipInfo._all_fields_ + [ - ("group", GroupMembershipInfo.group.validator) -] +GroupMembershipInfo._all_field_names_ = MembershipInfo._all_field_names_.union(set(['group'])) +GroupMembershipInfo._all_fields_ = MembershipInfo._all_fields_ + [('group', GroupMembershipInfo.group.validator)] InsufficientPlan.message.validator = bv.String() InsufficientPlan.upsell_url.validator = bv.Nullable(bv.String()) -InsufficientPlan._all_field_names_ = set( - [ - "message", - "upsell_url", - ] -) +InsufficientPlan._all_field_names_ = set([ + 'message', + 'upsell_url', +]) InsufficientPlan._all_fields_ = [ - ("message", InsufficientPlan.message.validator), - ("upsell_url", InsufficientPlan.upsell_url.validator), + ('message', InsufficientPlan.message.validator), + ('upsell_url', InsufficientPlan.upsell_url.validator), ] InsufficientQuotaAmounts.space_needed.validator = bv.UInt64() InsufficientQuotaAmounts.space_shortage.validator = bv.UInt64() InsufficientQuotaAmounts.space_left.validator = bv.UInt64() -InsufficientQuotaAmounts._all_field_names_ = set( - [ - "space_needed", - "space_shortage", - "space_left", - ] -) +InsufficientQuotaAmounts._all_field_names_ = set([ + 'space_needed', + 'space_shortage', + 'space_left', +]) InsufficientQuotaAmounts._all_fields_ = [ - ("space_needed", InsufficientQuotaAmounts.space_needed.validator), - ("space_shortage", InsufficientQuotaAmounts.space_shortage.validator), - ("space_left", InsufficientQuotaAmounts.space_left.validator), + ('space_needed', InsufficientQuotaAmounts.space_needed.validator), + ('space_shortage', InsufficientQuotaAmounts.space_shortage.validator), + ('space_left', InsufficientQuotaAmounts.space_left.validator), ] InviteeInfo._email_validator = common.EmailAddress_validator InviteeInfo._other_validator = bv.Void() InviteeInfo._tagmap = { - "email": InviteeInfo._email_validator, - "other": InviteeInfo._other_validator, + 'email': InviteeInfo._email_validator, + 'other': InviteeInfo._other_validator, } -InviteeInfo.other = InviteeInfo("other") +InviteeInfo.other = InviteeInfo('other') InviteeMembershipInfo.invitee.validator = InviteeInfo_validator InviteeMembershipInfo.user.validator = bv.Nullable(UserInfo_validator) -InviteeMembershipInfo._all_field_names_ = MembershipInfo._all_field_names_.union( - set( - [ - "invitee", - "user", - ] - ) -) +InviteeMembershipInfo._all_field_names_ = MembershipInfo._all_field_names_.union(set([ + 'invitee', + 'user', +])) InviteeMembershipInfo._all_fields_ = MembershipInfo._all_fields_ + [ - ("invitee", InviteeMembershipInfo.invitee.validator), - ("user", InviteeMembershipInfo.user.validator), + ('invitee', InviteeMembershipInfo.invitee.validator), + ('user', InviteeMembershipInfo.user.validator), ] JobError._unshare_folder_error_validator = UnshareFolderError_validator @@ -13735,36 +13101,36 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): JobError._relinquish_folder_membership_error_validator = RelinquishFolderMembershipError_validator JobError._other_validator = bv.Void() JobError._tagmap = { - "unshare_folder_error": JobError._unshare_folder_error_validator, - "remove_folder_member_error": JobError._remove_folder_member_error_validator, - "relinquish_folder_membership_error": JobError._relinquish_folder_membership_error_validator, - "other": JobError._other_validator, + 'unshare_folder_error': JobError._unshare_folder_error_validator, + 'remove_folder_member_error': JobError._remove_folder_member_error_validator, + 'relinquish_folder_membership_error': JobError._relinquish_folder_membership_error_validator, + 'other': JobError._other_validator, } -JobError.other = JobError("other") +JobError.other = JobError('other') JobStatus._complete_validator = bv.Void() JobStatus._failed_validator = JobError_validator JobStatus._tagmap = { - "complete": JobStatus._complete_validator, - "failed": JobStatus._failed_validator, + 'complete': JobStatus._complete_validator, + 'failed': JobStatus._failed_validator, } JobStatus._tagmap.update(async_.PollResultBase._tagmap) -JobStatus.complete = JobStatus("complete") +JobStatus.complete = JobStatus('complete') LinkAccessLevel._viewer_validator = bv.Void() LinkAccessLevel._editor_validator = bv.Void() LinkAccessLevel._other_validator = bv.Void() LinkAccessLevel._tagmap = { - "viewer": LinkAccessLevel._viewer_validator, - "editor": LinkAccessLevel._editor_validator, - "other": LinkAccessLevel._other_validator, + 'viewer': LinkAccessLevel._viewer_validator, + 'editor': LinkAccessLevel._editor_validator, + 'other': LinkAccessLevel._other_validator, } -LinkAccessLevel.viewer = LinkAccessLevel("viewer") -LinkAccessLevel.editor = LinkAccessLevel("editor") -LinkAccessLevel.other = LinkAccessLevel("other") +LinkAccessLevel.viewer = LinkAccessLevel('viewer') +LinkAccessLevel.editor = LinkAccessLevel('editor') +LinkAccessLevel.other = LinkAccessLevel('other') LinkAction._change_access_level_validator = bv.Void() LinkAction._change_audience_validator = bv.Void() @@ -13774,22 +13140,22 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): LinkAction._set_password_validator = bv.Void() LinkAction._other_validator = bv.Void() LinkAction._tagmap = { - "change_access_level": LinkAction._change_access_level_validator, - "change_audience": LinkAction._change_audience_validator, - "remove_expiry": LinkAction._remove_expiry_validator, - "remove_password": LinkAction._remove_password_validator, - "set_expiry": LinkAction._set_expiry_validator, - "set_password": LinkAction._set_password_validator, - "other": LinkAction._other_validator, + 'change_access_level': LinkAction._change_access_level_validator, + 'change_audience': LinkAction._change_audience_validator, + 'remove_expiry': LinkAction._remove_expiry_validator, + 'remove_password': LinkAction._remove_password_validator, + 'set_expiry': LinkAction._set_expiry_validator, + 'set_password': LinkAction._set_password_validator, + 'other': LinkAction._other_validator, } -LinkAction.change_access_level = LinkAction("change_access_level") -LinkAction.change_audience = LinkAction("change_audience") -LinkAction.remove_expiry = LinkAction("remove_expiry") -LinkAction.remove_password = LinkAction("remove_password") -LinkAction.set_expiry = LinkAction("set_expiry") -LinkAction.set_password = LinkAction("set_password") -LinkAction.other = LinkAction("other") +LinkAction.change_access_level = LinkAction('change_access_level') +LinkAction.change_audience = LinkAction('change_audience') +LinkAction.remove_expiry = LinkAction('remove_expiry') +LinkAction.remove_password = LinkAction('remove_password') +LinkAction.set_expiry = LinkAction('set_expiry') +LinkAction.set_password = LinkAction('set_password') +LinkAction.other = LinkAction('other') LinkAudience._public_validator = bv.Void() LinkAudience._team_validator = bv.Void() @@ -13798,20 +13164,20 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): LinkAudience._members_validator = bv.Void() LinkAudience._other_validator = bv.Void() LinkAudience._tagmap = { - "public": LinkAudience._public_validator, - "team": LinkAudience._team_validator, - "no_one": LinkAudience._no_one_validator, - "password": LinkAudience._password_validator, - "members": LinkAudience._members_validator, - "other": LinkAudience._other_validator, + 'public': LinkAudience._public_validator, + 'team': LinkAudience._team_validator, + 'no_one': LinkAudience._no_one_validator, + 'password': LinkAudience._password_validator, + 'members': LinkAudience._members_validator, + 'other': LinkAudience._other_validator, } -LinkAudience.public = LinkAudience("public") -LinkAudience.team = LinkAudience("team") -LinkAudience.no_one = LinkAudience("no_one") -LinkAudience.password = LinkAudience("password") -LinkAudience.members = LinkAudience("members") -LinkAudience.other = LinkAudience("other") +LinkAudience.public = LinkAudience('public') +LinkAudience.team = LinkAudience('team') +LinkAudience.no_one = LinkAudience('no_one') +LinkAudience.password = LinkAudience('password') +LinkAudience.members = LinkAudience('members') +LinkAudience.other = LinkAudience('other') VisibilityPolicyDisallowedReason._delete_and_recreate_validator = bv.Void() VisibilityPolicyDisallowedReason._restricted_by_shared_folder_validator = bv.Void() @@ -13821,100 +13187,83 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): VisibilityPolicyDisallowedReason._permission_denied_validator = bv.Void() VisibilityPolicyDisallowedReason._other_validator = bv.Void() VisibilityPolicyDisallowedReason._tagmap = { - "delete_and_recreate": VisibilityPolicyDisallowedReason._delete_and_recreate_validator, - "restricted_by_shared_folder": VisibilityPolicyDisallowedReason._restricted_by_shared_folder_validator, - "restricted_by_team": VisibilityPolicyDisallowedReason._restricted_by_team_validator, - "user_not_on_team": VisibilityPolicyDisallowedReason._user_not_on_team_validator, - "user_account_type": VisibilityPolicyDisallowedReason._user_account_type_validator, - "permission_denied": VisibilityPolicyDisallowedReason._permission_denied_validator, - "other": VisibilityPolicyDisallowedReason._other_validator, + 'delete_and_recreate': VisibilityPolicyDisallowedReason._delete_and_recreate_validator, + 'restricted_by_shared_folder': VisibilityPolicyDisallowedReason._restricted_by_shared_folder_validator, + 'restricted_by_team': VisibilityPolicyDisallowedReason._restricted_by_team_validator, + 'user_not_on_team': VisibilityPolicyDisallowedReason._user_not_on_team_validator, + 'user_account_type': VisibilityPolicyDisallowedReason._user_account_type_validator, + 'permission_denied': VisibilityPolicyDisallowedReason._permission_denied_validator, + 'other': VisibilityPolicyDisallowedReason._other_validator, } -VisibilityPolicyDisallowedReason.delete_and_recreate = VisibilityPolicyDisallowedReason( - "delete_and_recreate" -) -VisibilityPolicyDisallowedReason.restricted_by_shared_folder = VisibilityPolicyDisallowedReason( - "restricted_by_shared_folder" -) -VisibilityPolicyDisallowedReason.restricted_by_team = VisibilityPolicyDisallowedReason( - "restricted_by_team" -) -VisibilityPolicyDisallowedReason.user_not_on_team = VisibilityPolicyDisallowedReason( - "user_not_on_team" -) -VisibilityPolicyDisallowedReason.user_account_type = VisibilityPolicyDisallowedReason( - "user_account_type" -) -VisibilityPolicyDisallowedReason.permission_denied = VisibilityPolicyDisallowedReason( - "permission_denied" -) -VisibilityPolicyDisallowedReason.other = VisibilityPolicyDisallowedReason("other") +VisibilityPolicyDisallowedReason.delete_and_recreate = VisibilityPolicyDisallowedReason('delete_and_recreate') +VisibilityPolicyDisallowedReason.restricted_by_shared_folder = VisibilityPolicyDisallowedReason('restricted_by_shared_folder') +VisibilityPolicyDisallowedReason.restricted_by_team = VisibilityPolicyDisallowedReason('restricted_by_team') +VisibilityPolicyDisallowedReason.user_not_on_team = VisibilityPolicyDisallowedReason('user_not_on_team') +VisibilityPolicyDisallowedReason.user_account_type = VisibilityPolicyDisallowedReason('user_account_type') +VisibilityPolicyDisallowedReason.permission_denied = VisibilityPolicyDisallowedReason('permission_denied') +VisibilityPolicyDisallowedReason.other = VisibilityPolicyDisallowedReason('other') -LinkAudienceDisallowedReason._tagmap = {} +LinkAudienceDisallowedReason._tagmap = { +} LinkAudienceDisallowedReason._tagmap.update(VisibilityPolicyDisallowedReason._tagmap) LinkAudienceOption.audience.validator = LinkAudience_validator LinkAudienceOption.allowed.validator = bv.Boolean() LinkAudienceOption.disallowed_reason.validator = bv.Nullable(LinkAudienceDisallowedReason_validator) -LinkAudienceOption._all_field_names_ = set( - [ - "audience", - "allowed", - "disallowed_reason", - ] -) +LinkAudienceOption._all_field_names_ = set([ + 'audience', + 'allowed', + 'disallowed_reason', +]) LinkAudienceOption._all_fields_ = [ - ("audience", LinkAudienceOption.audience.validator), - ("allowed", LinkAudienceOption.allowed.validator), - ("disallowed_reason", LinkAudienceOption.disallowed_reason.validator), + ('audience', LinkAudienceOption.audience.validator), + ('allowed', LinkAudienceOption.allowed.validator), + ('disallowed_reason', LinkAudienceOption.disallowed_reason.validator), ] LinkExpiry._remove_expiry_validator = bv.Void() LinkExpiry._set_expiry_validator = common.DropboxTimestamp_validator LinkExpiry._other_validator = bv.Void() LinkExpiry._tagmap = { - "remove_expiry": LinkExpiry._remove_expiry_validator, - "set_expiry": LinkExpiry._set_expiry_validator, - "other": LinkExpiry._other_validator, + 'remove_expiry': LinkExpiry._remove_expiry_validator, + 'set_expiry': LinkExpiry._set_expiry_validator, + 'other': LinkExpiry._other_validator, } -LinkExpiry.remove_expiry = LinkExpiry("remove_expiry") -LinkExpiry.other = LinkExpiry("other") +LinkExpiry.remove_expiry = LinkExpiry('remove_expiry') +LinkExpiry.other = LinkExpiry('other') LinkPassword._remove_password_validator = bv.Void() LinkPassword._set_password_validator = bv.String() LinkPassword._other_validator = bv.Void() LinkPassword._tagmap = { - "remove_password": LinkPassword._remove_password_validator, - "set_password": LinkPassword._set_password_validator, - "other": LinkPassword._other_validator, + 'remove_password': LinkPassword._remove_password_validator, + 'set_password': LinkPassword._set_password_validator, + 'other': LinkPassword._other_validator, } -LinkPassword.remove_password = LinkPassword("remove_password") -LinkPassword.other = LinkPassword("other") +LinkPassword.remove_password = LinkPassword('remove_password') +LinkPassword.other = LinkPassword('other') LinkPermission.action.validator = LinkAction_validator LinkPermission.allow.validator = bv.Boolean() LinkPermission.reason.validator = bv.Nullable(PermissionDeniedReason_validator) -LinkPermission._all_field_names_ = set( - [ - "action", - "allow", - "reason", - ] -) +LinkPermission._all_field_names_ = set([ + 'action', + 'allow', + 'reason', +]) LinkPermission._all_fields_ = [ - ("action", LinkPermission.action.validator), - ("allow", LinkPermission.allow.validator), - ("reason", LinkPermission.reason.validator), + ('action', LinkPermission.action.validator), + ('allow', LinkPermission.allow.validator), + ('reason', LinkPermission.reason.validator), ] LinkPermissions.resolved_visibility.validator = bv.Nullable(ResolvedVisibility_validator) LinkPermissions.requested_visibility.validator = bv.Nullable(RequestedVisibility_validator) LinkPermissions.can_revoke.validator = bv.Boolean() -LinkPermissions.revoke_failure_reason.validator = bv.Nullable( - SharedLinkAccessFailureReason_validator -) +LinkPermissions.revoke_failure_reason.validator = bv.Nullable(SharedLinkAccessFailureReason_validator) LinkPermissions.effective_audience.validator = bv.Nullable(LinkAudience_validator) LinkPermissions.link_access_level.validator = bv.Nullable(LinkAccessLevel_validator) LinkPermissions.visibility_policies.validator = bv.List(VisibilityPolicy_validator) @@ -13932,384 +13281,333 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): LinkPermissions.can_use_extended_sharing_controls.validator = bv.Nullable(bv.Boolean()) LinkPermissions.can_sync.validator = bv.Nullable(bv.Boolean()) LinkPermissions.can_request_access.validator = bv.Nullable(bv.Boolean()) -LinkPermissions.enforce_shared_link_password_policy.validator = bv.Nullable( - team_policies.EnforceLinkPasswordPolicy_validator -) -LinkPermissions.days_to_expire_policy.validator = bv.Nullable( - team_policies.DefaultLinkExpirationDaysPolicy_validator -) -LinkPermissions.change_shared_link_expiration_policy.validator = bv.Nullable( - ChangeLinkExpirationPolicy_validator -) -LinkPermissions._all_field_names_ = set( - [ - "resolved_visibility", - "requested_visibility", - "can_revoke", - "revoke_failure_reason", - "effective_audience", - "link_access_level", - "visibility_policies", - "can_set_expiry", - "can_remove_expiry", - "allow_download", - "can_allow_download", - "can_disallow_download", - "allow_comments", - "team_restricts_comments", - "audience_options", - "can_set_password", - "can_remove_password", - "require_password", - "can_use_extended_sharing_controls", - "can_sync", - "can_request_access", - "enforce_shared_link_password_policy", - "days_to_expire_policy", - "change_shared_link_expiration_policy", - ] -) +LinkPermissions.enforce_shared_link_password_policy.validator = bv.Nullable(team_policies.EnforceLinkPasswordPolicy_validator) +LinkPermissions.days_to_expire_policy.validator = bv.Nullable(team_policies.DefaultLinkExpirationDaysPolicy_validator) +LinkPermissions.change_shared_link_expiration_policy.validator = bv.Nullable(ChangeLinkExpirationPolicy_validator) +LinkPermissions._all_field_names_ = set([ + 'resolved_visibility', + 'requested_visibility', + 'can_revoke', + 'revoke_failure_reason', + 'effective_audience', + 'link_access_level', + 'visibility_policies', + 'can_set_expiry', + 'can_remove_expiry', + 'allow_download', + 'can_allow_download', + 'can_disallow_download', + 'allow_comments', + 'team_restricts_comments', + 'audience_options', + 'can_set_password', + 'can_remove_password', + 'require_password', + 'can_use_extended_sharing_controls', + 'can_sync', + 'can_request_access', + 'enforce_shared_link_password_policy', + 'days_to_expire_policy', + 'change_shared_link_expiration_policy', +]) LinkPermissions._all_fields_ = [ - ("resolved_visibility", LinkPermissions.resolved_visibility.validator), - ("requested_visibility", LinkPermissions.requested_visibility.validator), - ("can_revoke", LinkPermissions.can_revoke.validator), - ("revoke_failure_reason", LinkPermissions.revoke_failure_reason.validator), - ("effective_audience", LinkPermissions.effective_audience.validator), - ("link_access_level", LinkPermissions.link_access_level.validator), - ("visibility_policies", LinkPermissions.visibility_policies.validator), - ("can_set_expiry", LinkPermissions.can_set_expiry.validator), - ("can_remove_expiry", LinkPermissions.can_remove_expiry.validator), - ("allow_download", LinkPermissions.allow_download.validator), - ("can_allow_download", LinkPermissions.can_allow_download.validator), - ("can_disallow_download", LinkPermissions.can_disallow_download.validator), - ("allow_comments", LinkPermissions.allow_comments.validator), - ("team_restricts_comments", LinkPermissions.team_restricts_comments.validator), - ("audience_options", LinkPermissions.audience_options.validator), - ("can_set_password", LinkPermissions.can_set_password.validator), - ("can_remove_password", LinkPermissions.can_remove_password.validator), - ("require_password", LinkPermissions.require_password.validator), - ( - "can_use_extended_sharing_controls", - LinkPermissions.can_use_extended_sharing_controls.validator, - ), - ("can_sync", LinkPermissions.can_sync.validator), - ("can_request_access", LinkPermissions.can_request_access.validator), - ( - "enforce_shared_link_password_policy", - LinkPermissions.enforce_shared_link_password_policy.validator, - ), - ("days_to_expire_policy", LinkPermissions.days_to_expire_policy.validator), - ( - "change_shared_link_expiration_policy", - LinkPermissions.change_shared_link_expiration_policy.validator, - ), + ('resolved_visibility', LinkPermissions.resolved_visibility.validator), + ('requested_visibility', LinkPermissions.requested_visibility.validator), + ('can_revoke', LinkPermissions.can_revoke.validator), + ('revoke_failure_reason', LinkPermissions.revoke_failure_reason.validator), + ('effective_audience', LinkPermissions.effective_audience.validator), + ('link_access_level', LinkPermissions.link_access_level.validator), + ('visibility_policies', LinkPermissions.visibility_policies.validator), + ('can_set_expiry', LinkPermissions.can_set_expiry.validator), + ('can_remove_expiry', LinkPermissions.can_remove_expiry.validator), + ('allow_download', LinkPermissions.allow_download.validator), + ('can_allow_download', LinkPermissions.can_allow_download.validator), + ('can_disallow_download', LinkPermissions.can_disallow_download.validator), + ('allow_comments', LinkPermissions.allow_comments.validator), + ('team_restricts_comments', LinkPermissions.team_restricts_comments.validator), + ('audience_options', LinkPermissions.audience_options.validator), + ('can_set_password', LinkPermissions.can_set_password.validator), + ('can_remove_password', LinkPermissions.can_remove_password.validator), + ('require_password', LinkPermissions.require_password.validator), + ('can_use_extended_sharing_controls', LinkPermissions.can_use_extended_sharing_controls.validator), + ('can_sync', LinkPermissions.can_sync.validator), + ('can_request_access', LinkPermissions.can_request_access.validator), + ('enforce_shared_link_password_policy', LinkPermissions.enforce_shared_link_password_policy.validator), + ('days_to_expire_policy', LinkPermissions.days_to_expire_policy.validator), + ('change_shared_link_expiration_policy', LinkPermissions.change_shared_link_expiration_policy.validator), ] LinkSettings.access_level.validator = bv.Nullable(AccessLevel_validator) LinkSettings.audience.validator = bv.Nullable(LinkAudience_validator) LinkSettings.expiry.validator = bv.Nullable(LinkExpiry_validator) LinkSettings.password.validator = bv.Nullable(LinkPassword_validator) -LinkSettings._all_field_names_ = set( - [ - "access_level", - "audience", - "expiry", - "password", - ] -) +LinkSettings._all_field_names_ = set([ + 'access_level', + 'audience', + 'expiry', + 'password', +]) LinkSettings._all_fields_ = [ - ("access_level", LinkSettings.access_level.validator), - ("audience", LinkSettings.audience.validator), - ("expiry", LinkSettings.expiry.validator), - ("password", LinkSettings.password.validator), + ('access_level', LinkSettings.access_level.validator), + ('audience', LinkSettings.audience.validator), + ('expiry', LinkSettings.expiry.validator), + ('password', LinkSettings.password.validator), ] ListFileMembersArg.file.validator = PathOrId_validator ListFileMembersArg.actions.validator = bv.Nullable(bv.List(MemberAction_validator)) ListFileMembersArg.include_inherited.validator = bv.Boolean() ListFileMembersArg.limit.validator = bv.UInt32(min_value=1, max_value=300) -ListFileMembersArg._all_field_names_ = set( - [ - "file", - "actions", - "include_inherited", - "limit", - ] -) +ListFileMembersArg._all_field_names_ = set([ + 'file', + 'actions', + 'include_inherited', + 'limit', +]) ListFileMembersArg._all_fields_ = [ - ("file", ListFileMembersArg.file.validator), - ("actions", ListFileMembersArg.actions.validator), - ("include_inherited", ListFileMembersArg.include_inherited.validator), - ("limit", ListFileMembersArg.limit.validator), + ('file', ListFileMembersArg.file.validator), + ('actions', ListFileMembersArg.actions.validator), + ('include_inherited', ListFileMembersArg.include_inherited.validator), + ('limit', ListFileMembersArg.limit.validator), ] ListFileMembersBatchArg.files.validator = bv.List(PathOrId_validator, max_items=100) ListFileMembersBatchArg.limit.validator = bv.UInt32(max_value=3000) -ListFileMembersBatchArg._all_field_names_ = set( - [ - "files", - "limit", - ] -) +ListFileMembersBatchArg._all_field_names_ = set([ + 'files', + 'limit', +]) ListFileMembersBatchArg._all_fields_ = [ - ("files", ListFileMembersBatchArg.files.validator), - ("limit", ListFileMembersBatchArg.limit.validator), + ('files', ListFileMembersBatchArg.files.validator), + ('limit', ListFileMembersBatchArg.limit.validator), ] ListFileMembersBatchResult.file.validator = PathOrId_validator ListFileMembersBatchResult.result.validator = ListFileMembersIndividualResult_validator -ListFileMembersBatchResult._all_field_names_ = set( - [ - "file", - "result", - ] -) +ListFileMembersBatchResult._all_field_names_ = set([ + 'file', + 'result', +]) ListFileMembersBatchResult._all_fields_ = [ - ("file", ListFileMembersBatchResult.file.validator), - ("result", ListFileMembersBatchResult.result.validator), + ('file', ListFileMembersBatchResult.file.validator), + ('result', ListFileMembersBatchResult.result.validator), ] ListFileMembersContinueArg.cursor.validator = bv.String() -ListFileMembersContinueArg._all_field_names_ = set(["cursor"]) -ListFileMembersContinueArg._all_fields_ = [("cursor", ListFileMembersContinueArg.cursor.validator)] +ListFileMembersContinueArg._all_field_names_ = set(['cursor']) +ListFileMembersContinueArg._all_fields_ = [('cursor', ListFileMembersContinueArg.cursor.validator)] ListFileMembersContinueError._user_error_validator = SharingUserError_validator ListFileMembersContinueError._access_error_validator = SharingFileAccessError_validator ListFileMembersContinueError._invalid_cursor_validator = bv.Void() ListFileMembersContinueError._other_validator = bv.Void() ListFileMembersContinueError._tagmap = { - "user_error": ListFileMembersContinueError._user_error_validator, - "access_error": ListFileMembersContinueError._access_error_validator, - "invalid_cursor": ListFileMembersContinueError._invalid_cursor_validator, - "other": ListFileMembersContinueError._other_validator, + 'user_error': ListFileMembersContinueError._user_error_validator, + 'access_error': ListFileMembersContinueError._access_error_validator, + 'invalid_cursor': ListFileMembersContinueError._invalid_cursor_validator, + 'other': ListFileMembersContinueError._other_validator, } -ListFileMembersContinueError.invalid_cursor = ListFileMembersContinueError("invalid_cursor") -ListFileMembersContinueError.other = ListFileMembersContinueError("other") +ListFileMembersContinueError.invalid_cursor = ListFileMembersContinueError('invalid_cursor') +ListFileMembersContinueError.other = ListFileMembersContinueError('other') ListFileMembersCountResult.members.validator = SharedFileMembers_validator ListFileMembersCountResult.member_count.validator = bv.UInt32() -ListFileMembersCountResult._all_field_names_ = set( - [ - "members", - "member_count", - ] -) +ListFileMembersCountResult._all_field_names_ = set([ + 'members', + 'member_count', +]) ListFileMembersCountResult._all_fields_ = [ - ("members", ListFileMembersCountResult.members.validator), - ("member_count", ListFileMembersCountResult.member_count.validator), + ('members', ListFileMembersCountResult.members.validator), + ('member_count', ListFileMembersCountResult.member_count.validator), ] ListFileMembersError._user_error_validator = SharingUserError_validator ListFileMembersError._access_error_validator = SharingFileAccessError_validator ListFileMembersError._other_validator = bv.Void() ListFileMembersError._tagmap = { - "user_error": ListFileMembersError._user_error_validator, - "access_error": ListFileMembersError._access_error_validator, - "other": ListFileMembersError._other_validator, + 'user_error': ListFileMembersError._user_error_validator, + 'access_error': ListFileMembersError._access_error_validator, + 'other': ListFileMembersError._other_validator, } -ListFileMembersError.other = ListFileMembersError("other") +ListFileMembersError.other = ListFileMembersError('other') ListFileMembersIndividualResult._result_validator = ListFileMembersCountResult_validator ListFileMembersIndividualResult._access_error_validator = SharingFileAccessError_validator ListFileMembersIndividualResult._other_validator = bv.Void() ListFileMembersIndividualResult._tagmap = { - "result": ListFileMembersIndividualResult._result_validator, - "access_error": ListFileMembersIndividualResult._access_error_validator, - "other": ListFileMembersIndividualResult._other_validator, + 'result': ListFileMembersIndividualResult._result_validator, + 'access_error': ListFileMembersIndividualResult._access_error_validator, + 'other': ListFileMembersIndividualResult._other_validator, } -ListFileMembersIndividualResult.other = ListFileMembersIndividualResult("other") +ListFileMembersIndividualResult.other = ListFileMembersIndividualResult('other') ListFilesArg.limit.validator = bv.UInt32(min_value=1, max_value=300) ListFilesArg.actions.validator = bv.Nullable(bv.List(FileAction_validator)) -ListFilesArg._all_field_names_ = set( - [ - "limit", - "actions", - ] -) +ListFilesArg._all_field_names_ = set([ + 'limit', + 'actions', +]) ListFilesArg._all_fields_ = [ - ("limit", ListFilesArg.limit.validator), - ("actions", ListFilesArg.actions.validator), + ('limit', ListFilesArg.limit.validator), + ('actions', ListFilesArg.actions.validator), ] ListFilesContinueArg.cursor.validator = bv.String() -ListFilesContinueArg._all_field_names_ = set(["cursor"]) -ListFilesContinueArg._all_fields_ = [("cursor", ListFilesContinueArg.cursor.validator)] +ListFilesContinueArg._all_field_names_ = set(['cursor']) +ListFilesContinueArg._all_fields_ = [('cursor', ListFilesContinueArg.cursor.validator)] ListFilesContinueError._user_error_validator = SharingUserError_validator ListFilesContinueError._invalid_cursor_validator = bv.Void() ListFilesContinueError._other_validator = bv.Void() ListFilesContinueError._tagmap = { - "user_error": ListFilesContinueError._user_error_validator, - "invalid_cursor": ListFilesContinueError._invalid_cursor_validator, - "other": ListFilesContinueError._other_validator, + 'user_error': ListFilesContinueError._user_error_validator, + 'invalid_cursor': ListFilesContinueError._invalid_cursor_validator, + 'other': ListFilesContinueError._other_validator, } -ListFilesContinueError.invalid_cursor = ListFilesContinueError("invalid_cursor") -ListFilesContinueError.other = ListFilesContinueError("other") +ListFilesContinueError.invalid_cursor = ListFilesContinueError('invalid_cursor') +ListFilesContinueError.other = ListFilesContinueError('other') ListFilesResult.entries.validator = bv.List(SharedFileMetadata_validator) ListFilesResult.cursor.validator = bv.Nullable(bv.String()) -ListFilesResult._all_field_names_ = set( - [ - "entries", - "cursor", - ] -) +ListFilesResult._all_field_names_ = set([ + 'entries', + 'cursor', +]) ListFilesResult._all_fields_ = [ - ("entries", ListFilesResult.entries.validator), - ("cursor", ListFilesResult.cursor.validator), + ('entries', ListFilesResult.entries.validator), + ('cursor', ListFilesResult.cursor.validator), ] ListFolderMembersCursorArg.actions.validator = bv.Nullable(bv.List(MemberAction_validator)) ListFolderMembersCursorArg.limit.validator = bv.UInt32(min_value=1, max_value=1000) -ListFolderMembersCursorArg._all_field_names_ = set( - [ - "actions", - "limit", - ] -) +ListFolderMembersCursorArg._all_field_names_ = set([ + 'actions', + 'limit', +]) ListFolderMembersCursorArg._all_fields_ = [ - ("actions", ListFolderMembersCursorArg.actions.validator), - ("limit", ListFolderMembersCursorArg.limit.validator), + ('actions', ListFolderMembersCursorArg.actions.validator), + ('limit', ListFolderMembersCursorArg.limit.validator), ] ListFolderMembersArgs.shared_folder_id.validator = common.SharedFolderId_validator ListFolderMembersArgs.path.validator = bv.Nullable(bv.String()) -ListFolderMembersArgs._all_field_names_ = ListFolderMembersCursorArg._all_field_names_.union( - set( - [ - "shared_folder_id", - "path", - ] - ) -) +ListFolderMembersArgs._all_field_names_ = ListFolderMembersCursorArg._all_field_names_.union(set([ + 'shared_folder_id', + 'path', +])) ListFolderMembersArgs._all_fields_ = ListFolderMembersCursorArg._all_fields_ + [ - ("shared_folder_id", ListFolderMembersArgs.shared_folder_id.validator), - ("path", ListFolderMembersArgs.path.validator), + ('shared_folder_id', ListFolderMembersArgs.shared_folder_id.validator), + ('path', ListFolderMembersArgs.path.validator), ] ListFolderMembersContinueArg.cursor.validator = bv.String() -ListFolderMembersContinueArg._all_field_names_ = set(["cursor"]) -ListFolderMembersContinueArg._all_fields_ = [ - ("cursor", ListFolderMembersContinueArg.cursor.validator) -] +ListFolderMembersContinueArg._all_field_names_ = set(['cursor']) +ListFolderMembersContinueArg._all_fields_ = [('cursor', ListFolderMembersContinueArg.cursor.validator)] ListFolderMembersContinueError._access_error_validator = SharedFolderAccessError_validator ListFolderMembersContinueError._invalid_cursor_validator = bv.Void() ListFolderMembersContinueError._other_validator = bv.Void() ListFolderMembersContinueError._tagmap = { - "access_error": ListFolderMembersContinueError._access_error_validator, - "invalid_cursor": ListFolderMembersContinueError._invalid_cursor_validator, - "other": ListFolderMembersContinueError._other_validator, + 'access_error': ListFolderMembersContinueError._access_error_validator, + 'invalid_cursor': ListFolderMembersContinueError._invalid_cursor_validator, + 'other': ListFolderMembersContinueError._other_validator, } -ListFolderMembersContinueError.invalid_cursor = ListFolderMembersContinueError("invalid_cursor") -ListFolderMembersContinueError.other = ListFolderMembersContinueError("other") +ListFolderMembersContinueError.invalid_cursor = ListFolderMembersContinueError('invalid_cursor') +ListFolderMembersContinueError.other = ListFolderMembersContinueError('other') ListFoldersArgs.limit.validator = bv.UInt32(min_value=1, max_value=1000) ListFoldersArgs.actions.validator = bv.Nullable(bv.List(FolderAction_validator)) -ListFoldersArgs._all_field_names_ = set( - [ - "limit", - "actions", - ] -) +ListFoldersArgs._all_field_names_ = set([ + 'limit', + 'actions', +]) ListFoldersArgs._all_fields_ = [ - ("limit", ListFoldersArgs.limit.validator), - ("actions", ListFoldersArgs.actions.validator), + ('limit', ListFoldersArgs.limit.validator), + ('actions', ListFoldersArgs.actions.validator), ] ListFoldersContinueArg.cursor.validator = bv.String() -ListFoldersContinueArg._all_field_names_ = set(["cursor"]) -ListFoldersContinueArg._all_fields_ = [("cursor", ListFoldersContinueArg.cursor.validator)] +ListFoldersContinueArg._all_field_names_ = set(['cursor']) +ListFoldersContinueArg._all_fields_ = [('cursor', ListFoldersContinueArg.cursor.validator)] ListFoldersContinueError._invalid_cursor_validator = bv.Void() ListFoldersContinueError._other_validator = bv.Void() ListFoldersContinueError._tagmap = { - "invalid_cursor": ListFoldersContinueError._invalid_cursor_validator, - "other": ListFoldersContinueError._other_validator, + 'invalid_cursor': ListFoldersContinueError._invalid_cursor_validator, + 'other': ListFoldersContinueError._other_validator, } -ListFoldersContinueError.invalid_cursor = ListFoldersContinueError("invalid_cursor") -ListFoldersContinueError.other = ListFoldersContinueError("other") +ListFoldersContinueError.invalid_cursor = ListFoldersContinueError('invalid_cursor') +ListFoldersContinueError.other = ListFoldersContinueError('other') ListFoldersResult.entries.validator = bv.List(SharedFolderMetadata_validator) ListFoldersResult.cursor.validator = bv.Nullable(bv.String()) -ListFoldersResult._all_field_names_ = set( - [ - "entries", - "cursor", - ] -) +ListFoldersResult._all_field_names_ = set([ + 'entries', + 'cursor', +]) ListFoldersResult._all_fields_ = [ - ("entries", ListFoldersResult.entries.validator), - ("cursor", ListFoldersResult.cursor.validator), + ('entries', ListFoldersResult.entries.validator), + ('cursor', ListFoldersResult.cursor.validator), ] ListSharedLinksArg.path.validator = bv.Nullable(ReadPath_validator) ListSharedLinksArg.cursor.validator = bv.Nullable(bv.String()) ListSharedLinksArg.direct_only.validator = bv.Nullable(bv.Boolean()) -ListSharedLinksArg._all_field_names_ = set( - [ - "path", - "cursor", - "direct_only", - ] -) +ListSharedLinksArg._all_field_names_ = set([ + 'path', + 'cursor', + 'direct_only', +]) ListSharedLinksArg._all_fields_ = [ - ("path", ListSharedLinksArg.path.validator), - ("cursor", ListSharedLinksArg.cursor.validator), - ("direct_only", ListSharedLinksArg.direct_only.validator), + ('path', ListSharedLinksArg.path.validator), + ('cursor', ListSharedLinksArg.cursor.validator), + ('direct_only', ListSharedLinksArg.direct_only.validator), ] ListSharedLinksError._path_validator = files.LookupError_validator ListSharedLinksError._reset_validator = bv.Void() ListSharedLinksError._other_validator = bv.Void() ListSharedLinksError._tagmap = { - "path": ListSharedLinksError._path_validator, - "reset": ListSharedLinksError._reset_validator, - "other": ListSharedLinksError._other_validator, + 'path': ListSharedLinksError._path_validator, + 'reset': ListSharedLinksError._reset_validator, + 'other': ListSharedLinksError._other_validator, } -ListSharedLinksError.reset = ListSharedLinksError("reset") -ListSharedLinksError.other = ListSharedLinksError("other") +ListSharedLinksError.reset = ListSharedLinksError('reset') +ListSharedLinksError.other = ListSharedLinksError('other') ListSharedLinksResult.links.validator = bv.List(SharedLinkMetadata_validator) ListSharedLinksResult.has_more.validator = bv.Boolean() ListSharedLinksResult.cursor.validator = bv.Nullable(bv.String()) -ListSharedLinksResult._all_field_names_ = set( - [ - "links", - "has_more", - "cursor", - ] -) +ListSharedLinksResult._all_field_names_ = set([ + 'links', + 'has_more', + 'cursor', +]) ListSharedLinksResult._all_fields_ = [ - ("links", ListSharedLinksResult.links.validator), - ("has_more", ListSharedLinksResult.has_more.validator), - ("cursor", ListSharedLinksResult.cursor.validator), + ('links', ListSharedLinksResult.links.validator), + ('has_more', ListSharedLinksResult.has_more.validator), + ('cursor', ListSharedLinksResult.cursor.validator), ] MemberAccessLevelResult.access_level.validator = bv.Nullable(AccessLevel_validator) MemberAccessLevelResult.warning.validator = bv.Nullable(bv.String()) -MemberAccessLevelResult.access_details.validator = bv.Nullable( - bv.List(ParentFolderAccessInfo_validator) -) -MemberAccessLevelResult._all_field_names_ = set( - [ - "access_level", - "warning", - "access_details", - ] -) +MemberAccessLevelResult.access_details.validator = bv.Nullable(bv.List(ParentFolderAccessInfo_validator)) +MemberAccessLevelResult._all_field_names_ = set([ + 'access_level', + 'warning', + 'access_details', +]) MemberAccessLevelResult._all_fields_ = [ - ("access_level", MemberAccessLevelResult.access_level.validator), - ("warning", MemberAccessLevelResult.warning.validator), - ("access_details", MemberAccessLevelResult.access_details.validator), + ('access_level', MemberAccessLevelResult.access_level.validator), + ('warning', MemberAccessLevelResult.warning.validator), + ('access_details', MemberAccessLevelResult.access_details.validator), ] MemberAction._leave_a_copy_validator = bv.Void() @@ -14320,37 +13618,35 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): MemberAction._remove_validator = bv.Void() MemberAction._other_validator = bv.Void() MemberAction._tagmap = { - "leave_a_copy": MemberAction._leave_a_copy_validator, - "make_editor": MemberAction._make_editor_validator, - "make_owner": MemberAction._make_owner_validator, - "make_viewer": MemberAction._make_viewer_validator, - "make_viewer_no_comment": MemberAction._make_viewer_no_comment_validator, - "remove": MemberAction._remove_validator, - "other": MemberAction._other_validator, + 'leave_a_copy': MemberAction._leave_a_copy_validator, + 'make_editor': MemberAction._make_editor_validator, + 'make_owner': MemberAction._make_owner_validator, + 'make_viewer': MemberAction._make_viewer_validator, + 'make_viewer_no_comment': MemberAction._make_viewer_no_comment_validator, + 'remove': MemberAction._remove_validator, + 'other': MemberAction._other_validator, } -MemberAction.leave_a_copy = MemberAction("leave_a_copy") -MemberAction.make_editor = MemberAction("make_editor") -MemberAction.make_owner = MemberAction("make_owner") -MemberAction.make_viewer = MemberAction("make_viewer") -MemberAction.make_viewer_no_comment = MemberAction("make_viewer_no_comment") -MemberAction.remove = MemberAction("remove") -MemberAction.other = MemberAction("other") +MemberAction.leave_a_copy = MemberAction('leave_a_copy') +MemberAction.make_editor = MemberAction('make_editor') +MemberAction.make_owner = MemberAction('make_owner') +MemberAction.make_viewer = MemberAction('make_viewer') +MemberAction.make_viewer_no_comment = MemberAction('make_viewer_no_comment') +MemberAction.remove = MemberAction('remove') +MemberAction.other = MemberAction('other') MemberPermission.action.validator = MemberAction_validator MemberPermission.allow.validator = bv.Boolean() MemberPermission.reason.validator = bv.Nullable(PermissionDeniedReason_validator) -MemberPermission._all_field_names_ = set( - [ - "action", - "allow", - "reason", - ] -) +MemberPermission._all_field_names_ = set([ + 'action', + 'allow', + 'reason', +]) MemberPermission._all_fields_ = [ - ("action", MemberPermission.action.validator), - ("allow", MemberPermission.allow.validator), - ("reason", MemberPermission.reason.validator), + ('action', MemberPermission.action.validator), + ('allow', MemberPermission.allow.validator), + ('reason', MemberPermission.reason.validator), ] MemberPolicy._team_validator = bv.Void() @@ -14358,59 +13654,55 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): MemberPolicy._team_and_approved_validator = bv.Void() MemberPolicy._other_validator = bv.Void() MemberPolicy._tagmap = { - "team": MemberPolicy._team_validator, - "anyone": MemberPolicy._anyone_validator, - "team_and_approved": MemberPolicy._team_and_approved_validator, - "other": MemberPolicy._other_validator, + 'team': MemberPolicy._team_validator, + 'anyone': MemberPolicy._anyone_validator, + 'team_and_approved': MemberPolicy._team_and_approved_validator, + 'other': MemberPolicy._other_validator, } -MemberPolicy.team = MemberPolicy("team") -MemberPolicy.anyone = MemberPolicy("anyone") -MemberPolicy.team_and_approved = MemberPolicy("team_and_approved") -MemberPolicy.other = MemberPolicy("other") +MemberPolicy.team = MemberPolicy('team') +MemberPolicy.anyone = MemberPolicy('anyone') +MemberPolicy.team_and_approved = MemberPolicy('team_and_approved') +MemberPolicy.other = MemberPolicy('other') MemberSelector._dropbox_id_validator = DropboxId_validator MemberSelector._email_validator = common.EmailAddress_validator MemberSelector._other_validator = bv.Void() MemberSelector._tagmap = { - "dropbox_id": MemberSelector._dropbox_id_validator, - "email": MemberSelector._email_validator, - "other": MemberSelector._other_validator, + 'dropbox_id': MemberSelector._dropbox_id_validator, + 'email': MemberSelector._email_validator, + 'other': MemberSelector._other_validator, } -MemberSelector.other = MemberSelector("other") +MemberSelector.other = MemberSelector('other') ModifySharedLinkSettingsArgs.url.validator = bv.String() ModifySharedLinkSettingsArgs.settings.validator = SharedLinkSettings_validator ModifySharedLinkSettingsArgs.remove_expiration.validator = bv.Boolean() -ModifySharedLinkSettingsArgs._all_field_names_ = set( - [ - "url", - "settings", - "remove_expiration", - ] -) +ModifySharedLinkSettingsArgs._all_field_names_ = set([ + 'url', + 'settings', + 'remove_expiration', +]) ModifySharedLinkSettingsArgs._all_fields_ = [ - ("url", ModifySharedLinkSettingsArgs.url.validator), - ("settings", ModifySharedLinkSettingsArgs.settings.validator), - ("remove_expiration", ModifySharedLinkSettingsArgs.remove_expiration.validator), + ('url', ModifySharedLinkSettingsArgs.url.validator), + ('settings', ModifySharedLinkSettingsArgs.settings.validator), + ('remove_expiration', ModifySharedLinkSettingsArgs.remove_expiration.validator), ] ModifySharedLinkSettingsError._settings_error_validator = SharedLinkSettingsError_validator ModifySharedLinkSettingsError._email_not_verified_validator = bv.Void() ModifySharedLinkSettingsError._tagmap = { - "settings_error": ModifySharedLinkSettingsError._settings_error_validator, - "email_not_verified": ModifySharedLinkSettingsError._email_not_verified_validator, + 'settings_error': ModifySharedLinkSettingsError._settings_error_validator, + 'email_not_verified': ModifySharedLinkSettingsError._email_not_verified_validator, } ModifySharedLinkSettingsError._tagmap.update(SharedLinkError._tagmap) -ModifySharedLinkSettingsError.email_not_verified = ModifySharedLinkSettingsError( - "email_not_verified" -) +ModifySharedLinkSettingsError.email_not_verified = ModifySharedLinkSettingsError('email_not_verified') MountFolderArg.shared_folder_id.validator = common.SharedFolderId_validator -MountFolderArg._all_field_names_ = set(["shared_folder_id"]) -MountFolderArg._all_fields_ = [("shared_folder_id", MountFolderArg.shared_folder_id.validator)] +MountFolderArg._all_field_names_ = set(['shared_folder_id']) +MountFolderArg._all_fields_ = [('shared_folder_id', MountFolderArg.shared_folder_id.validator)] MountFolderError._access_error_validator = SharedFolderAccessError_validator MountFolderError._inside_shared_folder_validator = bv.Void() @@ -14421,59 +13713,55 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): MountFolderError._must_automount_validator = bv.Void() MountFolderError._other_validator = bv.Void() MountFolderError._tagmap = { - "access_error": MountFolderError._access_error_validator, - "inside_shared_folder": MountFolderError._inside_shared_folder_validator, - "insufficient_quota": MountFolderError._insufficient_quota_validator, - "already_mounted": MountFolderError._already_mounted_validator, - "no_permission": MountFolderError._no_permission_validator, - "not_mountable": MountFolderError._not_mountable_validator, - "must_automount": MountFolderError._must_automount_validator, - "other": MountFolderError._other_validator, + 'access_error': MountFolderError._access_error_validator, + 'inside_shared_folder': MountFolderError._inside_shared_folder_validator, + 'insufficient_quota': MountFolderError._insufficient_quota_validator, + 'already_mounted': MountFolderError._already_mounted_validator, + 'no_permission': MountFolderError._no_permission_validator, + 'not_mountable': MountFolderError._not_mountable_validator, + 'must_automount': MountFolderError._must_automount_validator, + 'other': MountFolderError._other_validator, } -MountFolderError.inside_shared_folder = MountFolderError("inside_shared_folder") -MountFolderError.already_mounted = MountFolderError("already_mounted") -MountFolderError.no_permission = MountFolderError("no_permission") -MountFolderError.not_mountable = MountFolderError("not_mountable") -MountFolderError.must_automount = MountFolderError("must_automount") -MountFolderError.other = MountFolderError("other") +MountFolderError.inside_shared_folder = MountFolderError('inside_shared_folder') +MountFolderError.already_mounted = MountFolderError('already_mounted') +MountFolderError.no_permission = MountFolderError('no_permission') +MountFolderError.not_mountable = MountFolderError('not_mountable') +MountFolderError.must_automount = MountFolderError('must_automount') +MountFolderError.other = MountFolderError('other') ParentFolderAccessInfo.folder_name.validator = bv.String() ParentFolderAccessInfo.shared_folder_id.validator = common.SharedFolderId_validator ParentFolderAccessInfo.permissions.validator = bv.List(MemberPermission_validator) ParentFolderAccessInfo.path.validator = bv.String() -ParentFolderAccessInfo._all_field_names_ = set( - [ - "folder_name", - "shared_folder_id", - "permissions", - "path", - ] -) +ParentFolderAccessInfo._all_field_names_ = set([ + 'folder_name', + 'shared_folder_id', + 'permissions', + 'path', +]) ParentFolderAccessInfo._all_fields_ = [ - ("folder_name", ParentFolderAccessInfo.folder_name.validator), - ("shared_folder_id", ParentFolderAccessInfo.shared_folder_id.validator), - ("permissions", ParentFolderAccessInfo.permissions.validator), - ("path", ParentFolderAccessInfo.path.validator), + ('folder_name', ParentFolderAccessInfo.folder_name.validator), + ('shared_folder_id', ParentFolderAccessInfo.shared_folder_id.validator), + ('permissions', ParentFolderAccessInfo.permissions.validator), + ('path', ParentFolderAccessInfo.path.validator), ] PathLinkMetadata.path.validator = bv.String() -PathLinkMetadata._field_names_ = set(["path"]) -PathLinkMetadata._all_field_names_ = LinkMetadata._all_field_names_.union( - PathLinkMetadata._field_names_ -) -PathLinkMetadata._fields_ = [("path", PathLinkMetadata.path.validator)] +PathLinkMetadata._field_names_ = set(['path']) +PathLinkMetadata._all_field_names_ = LinkMetadata._all_field_names_.union(PathLinkMetadata._field_names_) +PathLinkMetadata._fields_ = [('path', PathLinkMetadata.path.validator)] PathLinkMetadata._all_fields_ = LinkMetadata._all_fields_ + PathLinkMetadata._fields_ PendingUploadMode._file_validator = bv.Void() PendingUploadMode._folder_validator = bv.Void() PendingUploadMode._tagmap = { - "file": PendingUploadMode._file_validator, - "folder": PendingUploadMode._folder_validator, + 'file': PendingUploadMode._file_validator, + 'folder': PendingUploadMode._folder_validator, } -PendingUploadMode.file = PendingUploadMode("file") -PendingUploadMode.folder = PendingUploadMode("folder") +PendingUploadMode.file = PendingUploadMode('file') +PendingUploadMode.folder = PendingUploadMode('folder') PermissionDeniedReason._user_not_same_team_as_owner_validator = bv.Void() PermissionDeniedReason._user_not_allowed_by_owner_validator = bv.Void() @@ -14492,55 +13780,43 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): PermissionDeniedReason._insufficient_plan_validator = InsufficientPlan_validator PermissionDeniedReason._other_validator = bv.Void() PermissionDeniedReason._tagmap = { - "user_not_same_team_as_owner": PermissionDeniedReason._user_not_same_team_as_owner_validator, - "user_not_allowed_by_owner": PermissionDeniedReason._user_not_allowed_by_owner_validator, - "target_is_indirect_member": PermissionDeniedReason._target_is_indirect_member_validator, - "target_is_owner": PermissionDeniedReason._target_is_owner_validator, - "target_is_self": PermissionDeniedReason._target_is_self_validator, - "target_not_active": PermissionDeniedReason._target_not_active_validator, - "folder_is_limited_team_folder": PermissionDeniedReason._folder_is_limited_team_folder_validator, - "owner_not_on_team": PermissionDeniedReason._owner_not_on_team_validator, - "permission_denied": PermissionDeniedReason._permission_denied_validator, - "restricted_by_team": PermissionDeniedReason._restricted_by_team_validator, - "user_account_type": PermissionDeniedReason._user_account_type_validator, - "user_not_on_team": PermissionDeniedReason._user_not_on_team_validator, - "folder_is_inside_shared_folder": PermissionDeniedReason._folder_is_inside_shared_folder_validator, - "restricted_by_parent_folder": PermissionDeniedReason._restricted_by_parent_folder_validator, - "insufficient_plan": PermissionDeniedReason._insufficient_plan_validator, - "other": PermissionDeniedReason._other_validator, + 'user_not_same_team_as_owner': PermissionDeniedReason._user_not_same_team_as_owner_validator, + 'user_not_allowed_by_owner': PermissionDeniedReason._user_not_allowed_by_owner_validator, + 'target_is_indirect_member': PermissionDeniedReason._target_is_indirect_member_validator, + 'target_is_owner': PermissionDeniedReason._target_is_owner_validator, + 'target_is_self': PermissionDeniedReason._target_is_self_validator, + 'target_not_active': PermissionDeniedReason._target_not_active_validator, + 'folder_is_limited_team_folder': PermissionDeniedReason._folder_is_limited_team_folder_validator, + 'owner_not_on_team': PermissionDeniedReason._owner_not_on_team_validator, + 'permission_denied': PermissionDeniedReason._permission_denied_validator, + 'restricted_by_team': PermissionDeniedReason._restricted_by_team_validator, + 'user_account_type': PermissionDeniedReason._user_account_type_validator, + 'user_not_on_team': PermissionDeniedReason._user_not_on_team_validator, + 'folder_is_inside_shared_folder': PermissionDeniedReason._folder_is_inside_shared_folder_validator, + 'restricted_by_parent_folder': PermissionDeniedReason._restricted_by_parent_folder_validator, + 'insufficient_plan': PermissionDeniedReason._insufficient_plan_validator, + 'other': PermissionDeniedReason._other_validator, } -PermissionDeniedReason.user_not_same_team_as_owner = PermissionDeniedReason( - "user_not_same_team_as_owner" -) -PermissionDeniedReason.user_not_allowed_by_owner = PermissionDeniedReason( - "user_not_allowed_by_owner" -) -PermissionDeniedReason.target_is_indirect_member = PermissionDeniedReason( - "target_is_indirect_member" -) -PermissionDeniedReason.target_is_owner = PermissionDeniedReason("target_is_owner") -PermissionDeniedReason.target_is_self = PermissionDeniedReason("target_is_self") -PermissionDeniedReason.target_not_active = PermissionDeniedReason("target_not_active") -PermissionDeniedReason.folder_is_limited_team_folder = PermissionDeniedReason( - "folder_is_limited_team_folder" -) -PermissionDeniedReason.owner_not_on_team = PermissionDeniedReason("owner_not_on_team") -PermissionDeniedReason.permission_denied = PermissionDeniedReason("permission_denied") -PermissionDeniedReason.restricted_by_team = PermissionDeniedReason("restricted_by_team") -PermissionDeniedReason.user_account_type = PermissionDeniedReason("user_account_type") -PermissionDeniedReason.user_not_on_team = PermissionDeniedReason("user_not_on_team") -PermissionDeniedReason.folder_is_inside_shared_folder = PermissionDeniedReason( - "folder_is_inside_shared_folder" -) -PermissionDeniedReason.restricted_by_parent_folder = PermissionDeniedReason( - "restricted_by_parent_folder" -) -PermissionDeniedReason.other = PermissionDeniedReason("other") +PermissionDeniedReason.user_not_same_team_as_owner = PermissionDeniedReason('user_not_same_team_as_owner') +PermissionDeniedReason.user_not_allowed_by_owner = PermissionDeniedReason('user_not_allowed_by_owner') +PermissionDeniedReason.target_is_indirect_member = PermissionDeniedReason('target_is_indirect_member') +PermissionDeniedReason.target_is_owner = PermissionDeniedReason('target_is_owner') +PermissionDeniedReason.target_is_self = PermissionDeniedReason('target_is_self') +PermissionDeniedReason.target_not_active = PermissionDeniedReason('target_not_active') +PermissionDeniedReason.folder_is_limited_team_folder = PermissionDeniedReason('folder_is_limited_team_folder') +PermissionDeniedReason.owner_not_on_team = PermissionDeniedReason('owner_not_on_team') +PermissionDeniedReason.permission_denied = PermissionDeniedReason('permission_denied') +PermissionDeniedReason.restricted_by_team = PermissionDeniedReason('restricted_by_team') +PermissionDeniedReason.user_account_type = PermissionDeniedReason('user_account_type') +PermissionDeniedReason.user_not_on_team = PermissionDeniedReason('user_not_on_team') +PermissionDeniedReason.folder_is_inside_shared_folder = PermissionDeniedReason('folder_is_inside_shared_folder') +PermissionDeniedReason.restricted_by_parent_folder = PermissionDeniedReason('restricted_by_parent_folder') +PermissionDeniedReason.other = PermissionDeniedReason('other') RelinquishAccessArg.file_id.validator = bv.String() -RelinquishAccessArg._all_field_names_ = set(["file_id"]) -RelinquishAccessArg._all_fields_ = [("file_id", RelinquishAccessArg.file_id.validator)] +RelinquishAccessArg._all_field_names_ = set(['file_id']) +RelinquishAccessArg._all_fields_ = [('file_id', RelinquishAccessArg.file_id.validator)] RelinquishAccessError._invalid_file_id_validator = bv.Void() RelinquishAccessError._email_unverified_validator = bv.Void() @@ -14550,56 +13826,54 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): RelinquishAccessError._no_permission_validator = bv.Void() RelinquishAccessError._other_validator = bv.Void() RelinquishAccessError._tagmap = { - "invalid_file_id": RelinquishAccessError._invalid_file_id_validator, - "email_unverified": RelinquishAccessError._email_unverified_validator, - "owner": RelinquishAccessError._owner_validator, - "no_explicit_access": RelinquishAccessError._no_explicit_access_validator, - "team_folder": RelinquishAccessError._team_folder_validator, - "no_permission": RelinquishAccessError._no_permission_validator, - "other": RelinquishAccessError._other_validator, + 'invalid_file_id': RelinquishAccessError._invalid_file_id_validator, + 'email_unverified': RelinquishAccessError._email_unverified_validator, + 'owner': RelinquishAccessError._owner_validator, + 'no_explicit_access': RelinquishAccessError._no_explicit_access_validator, + 'team_folder': RelinquishAccessError._team_folder_validator, + 'no_permission': RelinquishAccessError._no_permission_validator, + 'other': RelinquishAccessError._other_validator, } -RelinquishAccessError.invalid_file_id = RelinquishAccessError("invalid_file_id") -RelinquishAccessError.email_unverified = RelinquishAccessError("email_unverified") -RelinquishAccessError.owner = RelinquishAccessError("owner") -RelinquishAccessError.no_explicit_access = RelinquishAccessError("no_explicit_access") -RelinquishAccessError.team_folder = RelinquishAccessError("team_folder") -RelinquishAccessError.no_permission = RelinquishAccessError("no_permission") -RelinquishAccessError.other = RelinquishAccessError("other") +RelinquishAccessError.invalid_file_id = RelinquishAccessError('invalid_file_id') +RelinquishAccessError.email_unverified = RelinquishAccessError('email_unverified') +RelinquishAccessError.owner = RelinquishAccessError('owner') +RelinquishAccessError.no_explicit_access = RelinquishAccessError('no_explicit_access') +RelinquishAccessError.team_folder = RelinquishAccessError('team_folder') +RelinquishAccessError.no_permission = RelinquishAccessError('no_permission') +RelinquishAccessError.other = RelinquishAccessError('other') RelinquishAccessResult._all_field_names_ = set([]) RelinquishAccessResult._all_fields_ = [] RelinquishFileMembershipArg.file.validator = PathOrId_validator -RelinquishFileMembershipArg._all_field_names_ = set(["file"]) -RelinquishFileMembershipArg._all_fields_ = [("file", RelinquishFileMembershipArg.file.validator)] +RelinquishFileMembershipArg._all_field_names_ = set(['file']) +RelinquishFileMembershipArg._all_fields_ = [('file', RelinquishFileMembershipArg.file.validator)] RelinquishFileMembershipError._access_error_validator = SharingFileAccessError_validator RelinquishFileMembershipError._group_access_validator = bv.Void() RelinquishFileMembershipError._no_permission_validator = bv.Void() RelinquishFileMembershipError._other_validator = bv.Void() RelinquishFileMembershipError._tagmap = { - "access_error": RelinquishFileMembershipError._access_error_validator, - "group_access": RelinquishFileMembershipError._group_access_validator, - "no_permission": RelinquishFileMembershipError._no_permission_validator, - "other": RelinquishFileMembershipError._other_validator, + 'access_error': RelinquishFileMembershipError._access_error_validator, + 'group_access': RelinquishFileMembershipError._group_access_validator, + 'no_permission': RelinquishFileMembershipError._no_permission_validator, + 'other': RelinquishFileMembershipError._other_validator, } -RelinquishFileMembershipError.group_access = RelinquishFileMembershipError("group_access") -RelinquishFileMembershipError.no_permission = RelinquishFileMembershipError("no_permission") -RelinquishFileMembershipError.other = RelinquishFileMembershipError("other") +RelinquishFileMembershipError.group_access = RelinquishFileMembershipError('group_access') +RelinquishFileMembershipError.no_permission = RelinquishFileMembershipError('no_permission') +RelinquishFileMembershipError.other = RelinquishFileMembershipError('other') RelinquishFolderMembershipArg.shared_folder_id.validator = common.SharedFolderId_validator RelinquishFolderMembershipArg.leave_a_copy.validator = bv.Boolean() -RelinquishFolderMembershipArg._all_field_names_ = set( - [ - "shared_folder_id", - "leave_a_copy", - ] -) +RelinquishFolderMembershipArg._all_field_names_ = set([ + 'shared_folder_id', + 'leave_a_copy', +]) RelinquishFolderMembershipArg._all_fields_ = [ - ("shared_folder_id", RelinquishFolderMembershipArg.shared_folder_id.validator), - ("leave_a_copy", RelinquishFolderMembershipArg.leave_a_copy.validator), + ('shared_folder_id', RelinquishFolderMembershipArg.shared_folder_id.validator), + ('leave_a_copy', RelinquishFolderMembershipArg.leave_a_copy.validator), ] RelinquishFolderMembershipError._access_error_validator = SharedFolderAccessError_validator @@ -14611,37 +13885,33 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): RelinquishFolderMembershipError._no_explicit_access_validator = bv.Void() RelinquishFolderMembershipError._other_validator = bv.Void() RelinquishFolderMembershipError._tagmap = { - "access_error": RelinquishFolderMembershipError._access_error_validator, - "folder_owner": RelinquishFolderMembershipError._folder_owner_validator, - "mounted": RelinquishFolderMembershipError._mounted_validator, - "group_access": RelinquishFolderMembershipError._group_access_validator, - "team_folder": RelinquishFolderMembershipError._team_folder_validator, - "no_permission": RelinquishFolderMembershipError._no_permission_validator, - "no_explicit_access": RelinquishFolderMembershipError._no_explicit_access_validator, - "other": RelinquishFolderMembershipError._other_validator, + 'access_error': RelinquishFolderMembershipError._access_error_validator, + 'folder_owner': RelinquishFolderMembershipError._folder_owner_validator, + 'mounted': RelinquishFolderMembershipError._mounted_validator, + 'group_access': RelinquishFolderMembershipError._group_access_validator, + 'team_folder': RelinquishFolderMembershipError._team_folder_validator, + 'no_permission': RelinquishFolderMembershipError._no_permission_validator, + 'no_explicit_access': RelinquishFolderMembershipError._no_explicit_access_validator, + 'other': RelinquishFolderMembershipError._other_validator, } -RelinquishFolderMembershipError.folder_owner = RelinquishFolderMembershipError("folder_owner") -RelinquishFolderMembershipError.mounted = RelinquishFolderMembershipError("mounted") -RelinquishFolderMembershipError.group_access = RelinquishFolderMembershipError("group_access") -RelinquishFolderMembershipError.team_folder = RelinquishFolderMembershipError("team_folder") -RelinquishFolderMembershipError.no_permission = RelinquishFolderMembershipError("no_permission") -RelinquishFolderMembershipError.no_explicit_access = RelinquishFolderMembershipError( - "no_explicit_access" -) -RelinquishFolderMembershipError.other = RelinquishFolderMembershipError("other") +RelinquishFolderMembershipError.folder_owner = RelinquishFolderMembershipError('folder_owner') +RelinquishFolderMembershipError.mounted = RelinquishFolderMembershipError('mounted') +RelinquishFolderMembershipError.group_access = RelinquishFolderMembershipError('group_access') +RelinquishFolderMembershipError.team_folder = RelinquishFolderMembershipError('team_folder') +RelinquishFolderMembershipError.no_permission = RelinquishFolderMembershipError('no_permission') +RelinquishFolderMembershipError.no_explicit_access = RelinquishFolderMembershipError('no_explicit_access') +RelinquishFolderMembershipError.other = RelinquishFolderMembershipError('other') RemoveFileMemberArg.file.validator = PathOrId_validator RemoveFileMemberArg.member.validator = MemberSelector_validator -RemoveFileMemberArg._all_field_names_ = set( - [ - "file", - "member", - ] -) +RemoveFileMemberArg._all_field_names_ = set([ + 'file', + 'member', +]) RemoveFileMemberArg._all_fields_ = [ - ("file", RemoveFileMemberArg.file.validator), - ("member", RemoveFileMemberArg.member.validator), + ('file', RemoveFileMemberArg.file.validator), + ('member', RemoveFileMemberArg.member.validator), ] RemoveFileMemberError._user_error_validator = SharingUserError_validator @@ -14649,28 +13919,26 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): RemoveFileMemberError._no_explicit_access_validator = MemberAccessLevelResult_validator RemoveFileMemberError._other_validator = bv.Void() RemoveFileMemberError._tagmap = { - "user_error": RemoveFileMemberError._user_error_validator, - "access_error": RemoveFileMemberError._access_error_validator, - "no_explicit_access": RemoveFileMemberError._no_explicit_access_validator, - "other": RemoveFileMemberError._other_validator, + 'user_error': RemoveFileMemberError._user_error_validator, + 'access_error': RemoveFileMemberError._access_error_validator, + 'no_explicit_access': RemoveFileMemberError._no_explicit_access_validator, + 'other': RemoveFileMemberError._other_validator, } -RemoveFileMemberError.other = RemoveFileMemberError("other") +RemoveFileMemberError.other = RemoveFileMemberError('other') RemoveFolderMemberArg.shared_folder_id.validator = common.SharedFolderId_validator RemoveFolderMemberArg.member.validator = MemberSelector_validator RemoveFolderMemberArg.leave_a_copy.validator = bv.Boolean() -RemoveFolderMemberArg._all_field_names_ = set( - [ - "shared_folder_id", - "member", - "leave_a_copy", - ] -) +RemoveFolderMemberArg._all_field_names_ = set([ + 'shared_folder_id', + 'member', + 'leave_a_copy', +]) RemoveFolderMemberArg._all_fields_ = [ - ("shared_folder_id", RemoveFolderMemberArg.shared_folder_id.validator), - ("member", RemoveFolderMemberArg.member.validator), - ("leave_a_copy", RemoveFolderMemberArg.leave_a_copy.validator), + ('shared_folder_id', RemoveFolderMemberArg.shared_folder_id.validator), + ('member', RemoveFolderMemberArg.member.validator), + ('leave_a_copy', RemoveFolderMemberArg.leave_a_copy.validator), ] RemoveFolderMemberError._access_error_validator = SharedFolderAccessError_validator @@ -14682,28 +13950,28 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): RemoveFolderMemberError._too_many_files_validator = bv.Void() RemoveFolderMemberError._other_validator = bv.Void() RemoveFolderMemberError._tagmap = { - "access_error": RemoveFolderMemberError._access_error_validator, - "member_error": RemoveFolderMemberError._member_error_validator, - "folder_owner": RemoveFolderMemberError._folder_owner_validator, - "group_access": RemoveFolderMemberError._group_access_validator, - "team_folder": RemoveFolderMemberError._team_folder_validator, - "no_permission": RemoveFolderMemberError._no_permission_validator, - "too_many_files": RemoveFolderMemberError._too_many_files_validator, - "other": RemoveFolderMemberError._other_validator, + 'access_error': RemoveFolderMemberError._access_error_validator, + 'member_error': RemoveFolderMemberError._member_error_validator, + 'folder_owner': RemoveFolderMemberError._folder_owner_validator, + 'group_access': RemoveFolderMemberError._group_access_validator, + 'team_folder': RemoveFolderMemberError._team_folder_validator, + 'no_permission': RemoveFolderMemberError._no_permission_validator, + 'too_many_files': RemoveFolderMemberError._too_many_files_validator, + 'other': RemoveFolderMemberError._other_validator, } -RemoveFolderMemberError.folder_owner = RemoveFolderMemberError("folder_owner") -RemoveFolderMemberError.group_access = RemoveFolderMemberError("group_access") -RemoveFolderMemberError.team_folder = RemoveFolderMemberError("team_folder") -RemoveFolderMemberError.no_permission = RemoveFolderMemberError("no_permission") -RemoveFolderMemberError.too_many_files = RemoveFolderMemberError("too_many_files") -RemoveFolderMemberError.other = RemoveFolderMemberError("other") +RemoveFolderMemberError.folder_owner = RemoveFolderMemberError('folder_owner') +RemoveFolderMemberError.group_access = RemoveFolderMemberError('group_access') +RemoveFolderMemberError.team_folder = RemoveFolderMemberError('team_folder') +RemoveFolderMemberError.no_permission = RemoveFolderMemberError('no_permission') +RemoveFolderMemberError.too_many_files = RemoveFolderMemberError('too_many_files') +RemoveFolderMemberError.other = RemoveFolderMemberError('other') RemoveMemberJobStatus._complete_validator = MemberAccessLevelResult_validator RemoveMemberJobStatus._failed_validator = RemoveFolderMemberError_validator RemoveMemberJobStatus._tagmap = { - "complete": RemoveMemberJobStatus._complete_validator, - "failed": RemoveMemberJobStatus._failed_validator, + 'complete': RemoveMemberJobStatus._complete_validator, + 'failed': RemoveMemberJobStatus._failed_validator, } RemoveMemberJobStatus._tagmap.update(async_.PollResultBase._tagmap) @@ -14713,55 +13981,53 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): RequestedLinkAccessLevel._default_validator = bv.Void() RequestedLinkAccessLevel._other_validator = bv.Void() RequestedLinkAccessLevel._tagmap = { - "viewer": RequestedLinkAccessLevel._viewer_validator, - "editor": RequestedLinkAccessLevel._editor_validator, - "max": RequestedLinkAccessLevel._max_validator, - "default": RequestedLinkAccessLevel._default_validator, - "other": RequestedLinkAccessLevel._other_validator, + 'viewer': RequestedLinkAccessLevel._viewer_validator, + 'editor': RequestedLinkAccessLevel._editor_validator, + 'max': RequestedLinkAccessLevel._max_validator, + 'default': RequestedLinkAccessLevel._default_validator, + 'other': RequestedLinkAccessLevel._other_validator, } -RequestedLinkAccessLevel.viewer = RequestedLinkAccessLevel("viewer") -RequestedLinkAccessLevel.editor = RequestedLinkAccessLevel("editor") -RequestedLinkAccessLevel.max = RequestedLinkAccessLevel("max") -RequestedLinkAccessLevel.default = RequestedLinkAccessLevel("default") -RequestedLinkAccessLevel.other = RequestedLinkAccessLevel("other") +RequestedLinkAccessLevel.viewer = RequestedLinkAccessLevel('viewer') +RequestedLinkAccessLevel.editor = RequestedLinkAccessLevel('editor') +RequestedLinkAccessLevel.max = RequestedLinkAccessLevel('max') +RequestedLinkAccessLevel.default = RequestedLinkAccessLevel('default') +RequestedLinkAccessLevel.other = RequestedLinkAccessLevel('other') RevokeSharedLinkArg.url.validator = bv.String() -RevokeSharedLinkArg._all_field_names_ = set(["url"]) -RevokeSharedLinkArg._all_fields_ = [("url", RevokeSharedLinkArg.url.validator)] +RevokeSharedLinkArg._all_field_names_ = set(['url']) +RevokeSharedLinkArg._all_fields_ = [('url', RevokeSharedLinkArg.url.validator)] RevokeSharedLinkError._shared_link_malformed_validator = bv.Void() RevokeSharedLinkError._tagmap = { - "shared_link_malformed": RevokeSharedLinkError._shared_link_malformed_validator, + 'shared_link_malformed': RevokeSharedLinkError._shared_link_malformed_validator, } RevokeSharedLinkError._tagmap.update(SharedLinkError._tagmap) -RevokeSharedLinkError.shared_link_malformed = RevokeSharedLinkError("shared_link_malformed") +RevokeSharedLinkError.shared_link_malformed = RevokeSharedLinkError('shared_link_malformed') SetAccessInheritanceArg.access_inheritance.validator = AccessInheritance_validator SetAccessInheritanceArg.shared_folder_id.validator = common.SharedFolderId_validator -SetAccessInheritanceArg._all_field_names_ = set( - [ - "access_inheritance", - "shared_folder_id", - ] -) +SetAccessInheritanceArg._all_field_names_ = set([ + 'access_inheritance', + 'shared_folder_id', +]) SetAccessInheritanceArg._all_fields_ = [ - ("access_inheritance", SetAccessInheritanceArg.access_inheritance.validator), - ("shared_folder_id", SetAccessInheritanceArg.shared_folder_id.validator), + ('access_inheritance', SetAccessInheritanceArg.access_inheritance.validator), + ('shared_folder_id', SetAccessInheritanceArg.shared_folder_id.validator), ] SetAccessInheritanceError._access_error_validator = SharedFolderAccessError_validator SetAccessInheritanceError._no_permission_validator = bv.Void() SetAccessInheritanceError._other_validator = bv.Void() SetAccessInheritanceError._tagmap = { - "access_error": SetAccessInheritanceError._access_error_validator, - "no_permission": SetAccessInheritanceError._no_permission_validator, - "other": SetAccessInheritanceError._other_validator, + 'access_error': SetAccessInheritanceError._access_error_validator, + 'no_permission': SetAccessInheritanceError._no_permission_validator, + 'other': SetAccessInheritanceError._other_validator, } -SetAccessInheritanceError.no_permission = SetAccessInheritanceError("no_permission") -SetAccessInheritanceError.other = SetAccessInheritanceError("other") +SetAccessInheritanceError.no_permission = SetAccessInheritanceError('no_permission') +SetAccessInheritanceError.other = SetAccessInheritanceError('other') ShareFolderArgBase.acl_update_policy.validator = bv.Nullable(AclUpdatePolicy_validator) ShareFolderArgBase.force_async.validator = bv.Boolean() @@ -14770,40 +14036,34 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ShareFolderArgBase.shared_link_policy.validator = bv.Nullable(SharedLinkPolicy_validator) ShareFolderArgBase.viewer_info_policy.validator = bv.Nullable(ViewerInfoPolicy_validator) ShareFolderArgBase.access_inheritance.validator = AccessInheritance_validator -ShareFolderArgBase._all_field_names_ = set( - [ - "acl_update_policy", - "force_async", - "member_policy", - "path", - "shared_link_policy", - "viewer_info_policy", - "access_inheritance", - ] -) +ShareFolderArgBase._all_field_names_ = set([ + 'acl_update_policy', + 'force_async', + 'member_policy', + 'path', + 'shared_link_policy', + 'viewer_info_policy', + 'access_inheritance', +]) ShareFolderArgBase._all_fields_ = [ - ("acl_update_policy", ShareFolderArgBase.acl_update_policy.validator), - ("force_async", ShareFolderArgBase.force_async.validator), - ("member_policy", ShareFolderArgBase.member_policy.validator), - ("path", ShareFolderArgBase.path.validator), - ("shared_link_policy", ShareFolderArgBase.shared_link_policy.validator), - ("viewer_info_policy", ShareFolderArgBase.viewer_info_policy.validator), - ("access_inheritance", ShareFolderArgBase.access_inheritance.validator), + ('acl_update_policy', ShareFolderArgBase.acl_update_policy.validator), + ('force_async', ShareFolderArgBase.force_async.validator), + ('member_policy', ShareFolderArgBase.member_policy.validator), + ('path', ShareFolderArgBase.path.validator), + ('shared_link_policy', ShareFolderArgBase.shared_link_policy.validator), + ('viewer_info_policy', ShareFolderArgBase.viewer_info_policy.validator), + ('access_inheritance', ShareFolderArgBase.access_inheritance.validator), ] ShareFolderArg.actions.validator = bv.Nullable(bv.List(FolderAction_validator)) ShareFolderArg.link_settings.validator = bv.Nullable(LinkSettings_validator) -ShareFolderArg._all_field_names_ = ShareFolderArgBase._all_field_names_.union( - set( - [ - "actions", - "link_settings", - ] - ) -) +ShareFolderArg._all_field_names_ = ShareFolderArgBase._all_field_names_.union(set([ + 'actions', + 'link_settings', +])) ShareFolderArg._all_fields_ = ShareFolderArgBase._all_fields_ + [ - ("actions", ShareFolderArg.actions.validator), - ("link_settings", ShareFolderArg.link_settings.validator), + ('actions', ShareFolderArg.actions.validator), + ('link_settings', ShareFolderArg.link_settings.validator), ] ShareFolderErrorBase._email_unverified_validator = bv.Void() @@ -14812,69 +14072,61 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ShareFolderErrorBase._disallowed_shared_link_policy_validator = bv.Void() ShareFolderErrorBase._other_validator = bv.Void() ShareFolderErrorBase._tagmap = { - "email_unverified": ShareFolderErrorBase._email_unverified_validator, - "bad_path": ShareFolderErrorBase._bad_path_validator, - "team_policy_disallows_member_policy": ShareFolderErrorBase._team_policy_disallows_member_policy_validator, - "disallowed_shared_link_policy": ShareFolderErrorBase._disallowed_shared_link_policy_validator, - "other": ShareFolderErrorBase._other_validator, + 'email_unverified': ShareFolderErrorBase._email_unverified_validator, + 'bad_path': ShareFolderErrorBase._bad_path_validator, + 'team_policy_disallows_member_policy': ShareFolderErrorBase._team_policy_disallows_member_policy_validator, + 'disallowed_shared_link_policy': ShareFolderErrorBase._disallowed_shared_link_policy_validator, + 'other': ShareFolderErrorBase._other_validator, } -ShareFolderErrorBase.email_unverified = ShareFolderErrorBase("email_unverified") -ShareFolderErrorBase.team_policy_disallows_member_policy = ShareFolderErrorBase( - "team_policy_disallows_member_policy" -) -ShareFolderErrorBase.disallowed_shared_link_policy = ShareFolderErrorBase( - "disallowed_shared_link_policy" -) -ShareFolderErrorBase.other = ShareFolderErrorBase("other") +ShareFolderErrorBase.email_unverified = ShareFolderErrorBase('email_unverified') +ShareFolderErrorBase.team_policy_disallows_member_policy = ShareFolderErrorBase('team_policy_disallows_member_policy') +ShareFolderErrorBase.disallowed_shared_link_policy = ShareFolderErrorBase('disallowed_shared_link_policy') +ShareFolderErrorBase.other = ShareFolderErrorBase('other') ShareFolderError._no_permission_validator = bv.Void() ShareFolderError._tagmap = { - "no_permission": ShareFolderError._no_permission_validator, + 'no_permission': ShareFolderError._no_permission_validator, } ShareFolderError._tagmap.update(ShareFolderErrorBase._tagmap) -ShareFolderError.no_permission = ShareFolderError("no_permission") +ShareFolderError.no_permission = ShareFolderError('no_permission') ShareFolderErrorBaseV2._email_unverified_validator = bv.Void() ShareFolderErrorBaseV2._team_policy_disallows_member_policy_validator = bv.Void() ShareFolderErrorBaseV2._disallowed_shared_link_policy_validator = bv.Void() ShareFolderErrorBaseV2._other_validator = bv.Void() ShareFolderErrorBaseV2._tagmap = { - "email_unverified": ShareFolderErrorBaseV2._email_unverified_validator, - "team_policy_disallows_member_policy": ShareFolderErrorBaseV2._team_policy_disallows_member_policy_validator, - "disallowed_shared_link_policy": ShareFolderErrorBaseV2._disallowed_shared_link_policy_validator, - "other": ShareFolderErrorBaseV2._other_validator, + 'email_unverified': ShareFolderErrorBaseV2._email_unverified_validator, + 'team_policy_disallows_member_policy': ShareFolderErrorBaseV2._team_policy_disallows_member_policy_validator, + 'disallowed_shared_link_policy': ShareFolderErrorBaseV2._disallowed_shared_link_policy_validator, + 'other': ShareFolderErrorBaseV2._other_validator, } -ShareFolderErrorBaseV2.email_unverified = ShareFolderErrorBaseV2("email_unverified") -ShareFolderErrorBaseV2.team_policy_disallows_member_policy = ShareFolderErrorBaseV2( - "team_policy_disallows_member_policy" -) -ShareFolderErrorBaseV2.disallowed_shared_link_policy = ShareFolderErrorBaseV2( - "disallowed_shared_link_policy" -) -ShareFolderErrorBaseV2.other = ShareFolderErrorBaseV2("other") +ShareFolderErrorBaseV2.email_unverified = ShareFolderErrorBaseV2('email_unverified') +ShareFolderErrorBaseV2.team_policy_disallows_member_policy = ShareFolderErrorBaseV2('team_policy_disallows_member_policy') +ShareFolderErrorBaseV2.disallowed_shared_link_policy = ShareFolderErrorBaseV2('disallowed_shared_link_policy') +ShareFolderErrorBaseV2.other = ShareFolderErrorBaseV2('other') ShareFolderErrorV2._no_permission_validator = bv.Void() ShareFolderErrorV2._tagmap = { - "no_permission": ShareFolderErrorV2._no_permission_validator, + 'no_permission': ShareFolderErrorV2._no_permission_validator, } ShareFolderErrorV2._tagmap.update(ShareFolderErrorBaseV2._tagmap) -ShareFolderErrorV2.no_permission = ShareFolderErrorV2("no_permission") +ShareFolderErrorV2.no_permission = ShareFolderErrorV2('no_permission') ShareFolderJobStatus._complete_validator = SharedFolderMetadata_validator ShareFolderJobStatus._failed_validator = ShareFolderError_validator ShareFolderJobStatus._tagmap = { - "complete": ShareFolderJobStatus._complete_validator, - "failed": ShareFolderJobStatus._failed_validator, + 'complete': ShareFolderJobStatus._complete_validator, + 'failed': ShareFolderJobStatus._failed_validator, } ShareFolderJobStatus._tagmap.update(async_.PollResultBase._tagmap) ShareFolderLaunch._complete_validator = SharedFolderMetadata_validator ShareFolderLaunch._tagmap = { - "complete": ShareFolderLaunch._complete_validator, + 'complete': ShareFolderLaunch._complete_validator, } ShareFolderLaunch._tagmap.update(async_.LaunchResultBase._tagmap) @@ -14896,41 +14148,41 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): SharePathError._is_family_validator = bv.Void() SharePathError._other_validator = bv.Void() SharePathError._tagmap = { - "is_file": SharePathError._is_file_validator, - "inside_shared_folder": SharePathError._inside_shared_folder_validator, - "contains_shared_folder": SharePathError._contains_shared_folder_validator, - "contains_app_folder": SharePathError._contains_app_folder_validator, - "contains_team_folder": SharePathError._contains_team_folder_validator, - "is_app_folder": SharePathError._is_app_folder_validator, - "inside_app_folder": SharePathError._inside_app_folder_validator, - "is_public_folder": SharePathError._is_public_folder_validator, - "inside_public_folder": SharePathError._inside_public_folder_validator, - "already_shared": SharePathError._already_shared_validator, - "invalid_path": SharePathError._invalid_path_validator, - "is_osx_package": SharePathError._is_osx_package_validator, - "inside_osx_package": SharePathError._inside_osx_package_validator, - "is_vault": SharePathError._is_vault_validator, - "is_vault_locked": SharePathError._is_vault_locked_validator, - "is_family": SharePathError._is_family_validator, - "other": SharePathError._other_validator, + 'is_file': SharePathError._is_file_validator, + 'inside_shared_folder': SharePathError._inside_shared_folder_validator, + 'contains_shared_folder': SharePathError._contains_shared_folder_validator, + 'contains_app_folder': SharePathError._contains_app_folder_validator, + 'contains_team_folder': SharePathError._contains_team_folder_validator, + 'is_app_folder': SharePathError._is_app_folder_validator, + 'inside_app_folder': SharePathError._inside_app_folder_validator, + 'is_public_folder': SharePathError._is_public_folder_validator, + 'inside_public_folder': SharePathError._inside_public_folder_validator, + 'already_shared': SharePathError._already_shared_validator, + 'invalid_path': SharePathError._invalid_path_validator, + 'is_osx_package': SharePathError._is_osx_package_validator, + 'inside_osx_package': SharePathError._inside_osx_package_validator, + 'is_vault': SharePathError._is_vault_validator, + 'is_vault_locked': SharePathError._is_vault_locked_validator, + 'is_family': SharePathError._is_family_validator, + 'other': SharePathError._other_validator, } -SharePathError.is_file = SharePathError("is_file") -SharePathError.inside_shared_folder = SharePathError("inside_shared_folder") -SharePathError.contains_shared_folder = SharePathError("contains_shared_folder") -SharePathError.contains_app_folder = SharePathError("contains_app_folder") -SharePathError.contains_team_folder = SharePathError("contains_team_folder") -SharePathError.is_app_folder = SharePathError("is_app_folder") -SharePathError.inside_app_folder = SharePathError("inside_app_folder") -SharePathError.is_public_folder = SharePathError("is_public_folder") -SharePathError.inside_public_folder = SharePathError("inside_public_folder") -SharePathError.invalid_path = SharePathError("invalid_path") -SharePathError.is_osx_package = SharePathError("is_osx_package") -SharePathError.inside_osx_package = SharePathError("inside_osx_package") -SharePathError.is_vault = SharePathError("is_vault") -SharePathError.is_vault_locked = SharePathError("is_vault_locked") -SharePathError.is_family = SharePathError("is_family") -SharePathError.other = SharePathError("other") +SharePathError.is_file = SharePathError('is_file') +SharePathError.inside_shared_folder = SharePathError('inside_shared_folder') +SharePathError.contains_shared_folder = SharePathError('contains_shared_folder') +SharePathError.contains_app_folder = SharePathError('contains_app_folder') +SharePathError.contains_team_folder = SharePathError('contains_team_folder') +SharePathError.is_app_folder = SharePathError('is_app_folder') +SharePathError.inside_app_folder = SharePathError('inside_app_folder') +SharePathError.is_public_folder = SharePathError('is_public_folder') +SharePathError.inside_public_folder = SharePathError('inside_public_folder') +SharePathError.invalid_path = SharePathError('invalid_path') +SharePathError.is_osx_package = SharePathError('is_osx_package') +SharePathError.inside_osx_package = SharePathError('inside_osx_package') +SharePathError.is_vault = SharePathError('is_vault') +SharePathError.is_vault_locked = SharePathError('is_vault_locked') +SharePathError.is_family = SharePathError('is_family') +SharePathError.other = SharePathError('other') SharePathErrorBaseV2._is_file_validator = bv.Void() SharePathErrorBaseV2._inside_shared_folder_validator = bv.Void() @@ -14948,88 +14200,80 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): SharePathErrorBaseV2._is_vault_locked_validator = bv.Void() SharePathErrorBaseV2._other_validator = bv.Void() SharePathErrorBaseV2._tagmap = { - "is_file": SharePathErrorBaseV2._is_file_validator, - "inside_shared_folder": SharePathErrorBaseV2._inside_shared_folder_validator, - "contains_shared_folder": SharePathErrorBaseV2._contains_shared_folder_validator, - "contains_team_folder": SharePathErrorBaseV2._contains_team_folder_validator, - "is_app_folder": SharePathErrorBaseV2._is_app_folder_validator, - "inside_app_folder": SharePathErrorBaseV2._inside_app_folder_validator, - "is_public_folder": SharePathErrorBaseV2._is_public_folder_validator, - "inside_public_folder": SharePathErrorBaseV2._inside_public_folder_validator, - "already_shared": SharePathErrorBaseV2._already_shared_validator, - "invalid_path": SharePathErrorBaseV2._invalid_path_validator, - "is_osx_package": SharePathErrorBaseV2._is_osx_package_validator, - "inside_osx_package": SharePathErrorBaseV2._inside_osx_package_validator, - "is_vault": SharePathErrorBaseV2._is_vault_validator, - "is_vault_locked": SharePathErrorBaseV2._is_vault_locked_validator, - "other": SharePathErrorBaseV2._other_validator, + 'is_file': SharePathErrorBaseV2._is_file_validator, + 'inside_shared_folder': SharePathErrorBaseV2._inside_shared_folder_validator, + 'contains_shared_folder': SharePathErrorBaseV2._contains_shared_folder_validator, + 'contains_team_folder': SharePathErrorBaseV2._contains_team_folder_validator, + 'is_app_folder': SharePathErrorBaseV2._is_app_folder_validator, + 'inside_app_folder': SharePathErrorBaseV2._inside_app_folder_validator, + 'is_public_folder': SharePathErrorBaseV2._is_public_folder_validator, + 'inside_public_folder': SharePathErrorBaseV2._inside_public_folder_validator, + 'already_shared': SharePathErrorBaseV2._already_shared_validator, + 'invalid_path': SharePathErrorBaseV2._invalid_path_validator, + 'is_osx_package': SharePathErrorBaseV2._is_osx_package_validator, + 'inside_osx_package': SharePathErrorBaseV2._inside_osx_package_validator, + 'is_vault': SharePathErrorBaseV2._is_vault_validator, + 'is_vault_locked': SharePathErrorBaseV2._is_vault_locked_validator, + 'other': SharePathErrorBaseV2._other_validator, } -SharePathErrorBaseV2.is_file = SharePathErrorBaseV2("is_file") -SharePathErrorBaseV2.inside_shared_folder = SharePathErrorBaseV2("inside_shared_folder") -SharePathErrorBaseV2.contains_shared_folder = SharePathErrorBaseV2("contains_shared_folder") -SharePathErrorBaseV2.contains_team_folder = SharePathErrorBaseV2("contains_team_folder") -SharePathErrorBaseV2.is_app_folder = SharePathErrorBaseV2("is_app_folder") -SharePathErrorBaseV2.inside_app_folder = SharePathErrorBaseV2("inside_app_folder") -SharePathErrorBaseV2.is_public_folder = SharePathErrorBaseV2("is_public_folder") -SharePathErrorBaseV2.inside_public_folder = SharePathErrorBaseV2("inside_public_folder") -SharePathErrorBaseV2.invalid_path = SharePathErrorBaseV2("invalid_path") -SharePathErrorBaseV2.is_osx_package = SharePathErrorBaseV2("is_osx_package") -SharePathErrorBaseV2.inside_osx_package = SharePathErrorBaseV2("inside_osx_package") -SharePathErrorBaseV2.is_vault = SharePathErrorBaseV2("is_vault") -SharePathErrorBaseV2.is_vault_locked = SharePathErrorBaseV2("is_vault_locked") -SharePathErrorBaseV2.other = SharePathErrorBaseV2("other") +SharePathErrorBaseV2.is_file = SharePathErrorBaseV2('is_file') +SharePathErrorBaseV2.inside_shared_folder = SharePathErrorBaseV2('inside_shared_folder') +SharePathErrorBaseV2.contains_shared_folder = SharePathErrorBaseV2('contains_shared_folder') +SharePathErrorBaseV2.contains_team_folder = SharePathErrorBaseV2('contains_team_folder') +SharePathErrorBaseV2.is_app_folder = SharePathErrorBaseV2('is_app_folder') +SharePathErrorBaseV2.inside_app_folder = SharePathErrorBaseV2('inside_app_folder') +SharePathErrorBaseV2.is_public_folder = SharePathErrorBaseV2('is_public_folder') +SharePathErrorBaseV2.inside_public_folder = SharePathErrorBaseV2('inside_public_folder') +SharePathErrorBaseV2.invalid_path = SharePathErrorBaseV2('invalid_path') +SharePathErrorBaseV2.is_osx_package = SharePathErrorBaseV2('is_osx_package') +SharePathErrorBaseV2.inside_osx_package = SharePathErrorBaseV2('inside_osx_package') +SharePathErrorBaseV2.is_vault = SharePathErrorBaseV2('is_vault') +SharePathErrorBaseV2.is_vault_locked = SharePathErrorBaseV2('is_vault_locked') +SharePathErrorBaseV2.other = SharePathErrorBaseV2('other') SharePathErrorV2._is_family_validator = bv.Void() SharePathErrorV2._contains_app_folder_validator = bv.Void() SharePathErrorV2._tagmap = { - "is_family": SharePathErrorV2._is_family_validator, - "contains_app_folder": SharePathErrorV2._contains_app_folder_validator, + 'is_family': SharePathErrorV2._is_family_validator, + 'contains_app_folder': SharePathErrorV2._contains_app_folder_validator, } SharePathErrorV2._tagmap.update(SharePathErrorBaseV2._tagmap) -SharePathErrorV2.is_family = SharePathErrorV2("is_family") -SharePathErrorV2.contains_app_folder = SharePathErrorV2("contains_app_folder") +SharePathErrorV2.is_family = SharePathErrorV2('is_family') +SharePathErrorV2.contains_app_folder = SharePathErrorV2('contains_app_folder') SharedContentLinkMetadata.audience_exceptions.validator = bv.Nullable(AudienceExceptions_validator) SharedContentLinkMetadata.url.validator = bv.String() -SharedContentLinkMetadata._all_field_names_ = SharedContentLinkMetadataBase._all_field_names_.union( - set( - [ - "audience_exceptions", - "url", - ] - ) -) +SharedContentLinkMetadata._all_field_names_ = SharedContentLinkMetadataBase._all_field_names_.union(set([ + 'audience_exceptions', + 'url', +])) SharedContentLinkMetadata._all_fields_ = SharedContentLinkMetadataBase._all_fields_ + [ - ("audience_exceptions", SharedContentLinkMetadata.audience_exceptions.validator), - ("url", SharedContentLinkMetadata.url.validator), + ('audience_exceptions', SharedContentLinkMetadata.audience_exceptions.validator), + ('url', SharedContentLinkMetadata.url.validator), ] SharedFileMembers.users.validator = bv.List(UserFileMembershipInfo_validator) SharedFileMembers.groups.validator = bv.List(GroupMembershipInfo_validator) SharedFileMembers.invitees.validator = bv.List(InviteeMembershipInfo_validator) SharedFileMembers.cursor.validator = bv.Nullable(bv.String()) -SharedFileMembers._all_field_names_ = set( - [ - "users", - "groups", - "invitees", - "cursor", - ] -) +SharedFileMembers._all_field_names_ = set([ + 'users', + 'groups', + 'invitees', + 'cursor', +]) SharedFileMembers._all_fields_ = [ - ("users", SharedFileMembers.users.validator), - ("groups", SharedFileMembers.groups.validator), - ("invitees", SharedFileMembers.invitees.validator), - ("cursor", SharedFileMembers.cursor.validator), + ('users', SharedFileMembers.users.validator), + ('groups', SharedFileMembers.groups.validator), + ('invitees', SharedFileMembers.invitees.validator), + ('cursor', SharedFileMembers.cursor.validator), ] SharedFileMetadata.access_type.validator = bv.Nullable(AccessLevel_validator) SharedFileMetadata.id.validator = files.FileId_validator -SharedFileMetadata.expected_link_metadata.validator = bv.Nullable( - ExpectedSharedContentLinkMetadata_validator -) +SharedFileMetadata.expected_link_metadata.validator = bv.Nullable(ExpectedSharedContentLinkMetadata_validator) SharedFileMetadata.link_metadata.validator = bv.Nullable(SharedContentLinkMetadata_validator) SharedFileMetadata.name.validator = bv.String() SharedFileMetadata.owner_display_names.validator = bv.Nullable(bv.List(bv.String())) @@ -15041,39 +14285,37 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): SharedFileMetadata.policy.validator = FolderPolicy_validator SharedFileMetadata.preview_url.validator = bv.String() SharedFileMetadata.time_invited.validator = bv.Nullable(common.DropboxTimestamp_validator) -SharedFileMetadata._all_field_names_ = set( - [ - "access_type", - "id", - "expected_link_metadata", - "link_metadata", - "name", - "owner_display_names", - "owner_team", - "parent_shared_folder_id", - "path_display", - "path_lower", - "permissions", - "policy", - "preview_url", - "time_invited", - ] -) +SharedFileMetadata._all_field_names_ = set([ + 'access_type', + 'id', + 'expected_link_metadata', + 'link_metadata', + 'name', + 'owner_display_names', + 'owner_team', + 'parent_shared_folder_id', + 'path_display', + 'path_lower', + 'permissions', + 'policy', + 'preview_url', + 'time_invited', +]) SharedFileMetadata._all_fields_ = [ - ("access_type", SharedFileMetadata.access_type.validator), - ("id", SharedFileMetadata.id.validator), - ("expected_link_metadata", SharedFileMetadata.expected_link_metadata.validator), - ("link_metadata", SharedFileMetadata.link_metadata.validator), - ("name", SharedFileMetadata.name.validator), - ("owner_display_names", SharedFileMetadata.owner_display_names.validator), - ("owner_team", SharedFileMetadata.owner_team.validator), - ("parent_shared_folder_id", SharedFileMetadata.parent_shared_folder_id.validator), - ("path_display", SharedFileMetadata.path_display.validator), - ("path_lower", SharedFileMetadata.path_lower.validator), - ("permissions", SharedFileMetadata.permissions.validator), - ("policy", SharedFileMetadata.policy.validator), - ("preview_url", SharedFileMetadata.preview_url.validator), - ("time_invited", SharedFileMetadata.time_invited.validator), + ('access_type', SharedFileMetadata.access_type.validator), + ('id', SharedFileMetadata.id.validator), + ('expected_link_metadata', SharedFileMetadata.expected_link_metadata.validator), + ('link_metadata', SharedFileMetadata.link_metadata.validator), + ('name', SharedFileMetadata.name.validator), + ('owner_display_names', SharedFileMetadata.owner_display_names.validator), + ('owner_team', SharedFileMetadata.owner_team.validator), + ('parent_shared_folder_id', SharedFileMetadata.parent_shared_folder_id.validator), + ('path_display', SharedFileMetadata.path_display.validator), + ('path_lower', SharedFileMetadata.path_lower.validator), + ('permissions', SharedFileMetadata.permissions.validator), + ('policy', SharedFileMetadata.policy.validator), + ('preview_url', SharedFileMetadata.preview_url.validator), + ('time_invited', SharedFileMetadata.time_invited.validator), ] SharedFolderAccessError._invalid_id_validator = bv.Void() @@ -15083,53 +14325,51 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): SharedFolderAccessError._unmounted_validator = bv.Void() SharedFolderAccessError._other_validator = bv.Void() SharedFolderAccessError._tagmap = { - "invalid_id": SharedFolderAccessError._invalid_id_validator, - "not_a_member": SharedFolderAccessError._not_a_member_validator, - "invalid_member": SharedFolderAccessError._invalid_member_validator, - "email_unverified": SharedFolderAccessError._email_unverified_validator, - "unmounted": SharedFolderAccessError._unmounted_validator, - "other": SharedFolderAccessError._other_validator, + 'invalid_id': SharedFolderAccessError._invalid_id_validator, + 'not_a_member': SharedFolderAccessError._not_a_member_validator, + 'invalid_member': SharedFolderAccessError._invalid_member_validator, + 'email_unverified': SharedFolderAccessError._email_unverified_validator, + 'unmounted': SharedFolderAccessError._unmounted_validator, + 'other': SharedFolderAccessError._other_validator, } -SharedFolderAccessError.invalid_id = SharedFolderAccessError("invalid_id") -SharedFolderAccessError.not_a_member = SharedFolderAccessError("not_a_member") -SharedFolderAccessError.invalid_member = SharedFolderAccessError("invalid_member") -SharedFolderAccessError.email_unverified = SharedFolderAccessError("email_unverified") -SharedFolderAccessError.unmounted = SharedFolderAccessError("unmounted") -SharedFolderAccessError.other = SharedFolderAccessError("other") +SharedFolderAccessError.invalid_id = SharedFolderAccessError('invalid_id') +SharedFolderAccessError.not_a_member = SharedFolderAccessError('not_a_member') +SharedFolderAccessError.invalid_member = SharedFolderAccessError('invalid_member') +SharedFolderAccessError.email_unverified = SharedFolderAccessError('email_unverified') +SharedFolderAccessError.unmounted = SharedFolderAccessError('unmounted') +SharedFolderAccessError.other = SharedFolderAccessError('other') SharedFolderMemberError._invalid_dropbox_id_validator = bv.Void() SharedFolderMemberError._not_a_member_validator = bv.Void() SharedFolderMemberError._no_explicit_access_validator = MemberAccessLevelResult_validator SharedFolderMemberError._other_validator = bv.Void() SharedFolderMemberError._tagmap = { - "invalid_dropbox_id": SharedFolderMemberError._invalid_dropbox_id_validator, - "not_a_member": SharedFolderMemberError._not_a_member_validator, - "no_explicit_access": SharedFolderMemberError._no_explicit_access_validator, - "other": SharedFolderMemberError._other_validator, + 'invalid_dropbox_id': SharedFolderMemberError._invalid_dropbox_id_validator, + 'not_a_member': SharedFolderMemberError._not_a_member_validator, + 'no_explicit_access': SharedFolderMemberError._no_explicit_access_validator, + 'other': SharedFolderMemberError._other_validator, } -SharedFolderMemberError.invalid_dropbox_id = SharedFolderMemberError("invalid_dropbox_id") -SharedFolderMemberError.not_a_member = SharedFolderMemberError("not_a_member") -SharedFolderMemberError.other = SharedFolderMemberError("other") +SharedFolderMemberError.invalid_dropbox_id = SharedFolderMemberError('invalid_dropbox_id') +SharedFolderMemberError.not_a_member = SharedFolderMemberError('not_a_member') +SharedFolderMemberError.other = SharedFolderMemberError('other') SharedFolderMembers.users.validator = bv.List(UserMembershipInfo_validator) SharedFolderMembers.groups.validator = bv.List(GroupMembershipInfo_validator) SharedFolderMembers.invitees.validator = bv.List(InviteeMembershipInfo_validator) SharedFolderMembers.cursor.validator = bv.Nullable(bv.String()) -SharedFolderMembers._all_field_names_ = set( - [ - "users", - "groups", - "invitees", - "cursor", - ] -) +SharedFolderMembers._all_field_names_ = set([ + 'users', + 'groups', + 'invitees', + 'cursor', +]) SharedFolderMembers._all_fields_ = [ - ("users", SharedFolderMembers.users.validator), - ("groups", SharedFolderMembers.groups.validator), - ("invitees", SharedFolderMembers.invitees.validator), - ("cursor", SharedFolderMembers.cursor.validator), + ('users', SharedFolderMembers.users.validator), + ('groups', SharedFolderMembers.groups.validator), + ('invitees', SharedFolderMembers.invitees.validator), + ('cursor', SharedFolderMembers.cursor.validator), ] SharedFolderMetadataBase.access_type.validator = AccessLevel_validator @@ -15137,38 +14377,31 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): SharedFolderMetadataBase.is_team_folder.validator = bv.Boolean() SharedFolderMetadataBase.owner_display_names.validator = bv.Nullable(bv.List(bv.String())) SharedFolderMetadataBase.owner_team.validator = bv.Nullable(users.Team_validator) -SharedFolderMetadataBase.parent_shared_folder_id.validator = bv.Nullable( - common.SharedFolderId_validator -) +SharedFolderMetadataBase.parent_shared_folder_id.validator = bv.Nullable(common.SharedFolderId_validator) SharedFolderMetadataBase.path_display.validator = bv.Nullable(bv.String()) SharedFolderMetadataBase.path_lower.validator = bv.Nullable(bv.String()) SharedFolderMetadataBase.parent_folder_name.validator = bv.Nullable(bv.String()) -SharedFolderMetadataBase._all_field_names_ = set( - [ - "access_type", - "is_inside_team_folder", - "is_team_folder", - "owner_display_names", - "owner_team", - "parent_shared_folder_id", - "path_display", - "path_lower", - "parent_folder_name", - ] -) +SharedFolderMetadataBase._all_field_names_ = set([ + 'access_type', + 'is_inside_team_folder', + 'is_team_folder', + 'owner_display_names', + 'owner_team', + 'parent_shared_folder_id', + 'path_display', + 'path_lower', + 'parent_folder_name', +]) SharedFolderMetadataBase._all_fields_ = [ - ("access_type", SharedFolderMetadataBase.access_type.validator), - ("is_inside_team_folder", SharedFolderMetadataBase.is_inside_team_folder.validator), - ("is_team_folder", SharedFolderMetadataBase.is_team_folder.validator), - ("owner_display_names", SharedFolderMetadataBase.owner_display_names.validator), - ("owner_team", SharedFolderMetadataBase.owner_team.validator), - ( - "parent_shared_folder_id", - SharedFolderMetadataBase.parent_shared_folder_id.validator, - ), - ("path_display", SharedFolderMetadataBase.path_display.validator), - ("path_lower", SharedFolderMetadataBase.path_lower.validator), - ("parent_folder_name", SharedFolderMetadataBase.parent_folder_name.validator), + ('access_type', SharedFolderMetadataBase.access_type.validator), + ('is_inside_team_folder', SharedFolderMetadataBase.is_inside_team_folder.validator), + ('is_team_folder', SharedFolderMetadataBase.is_team_folder.validator), + ('owner_display_names', SharedFolderMetadataBase.owner_display_names.validator), + ('owner_team', SharedFolderMetadataBase.owner_team.validator), + ('parent_shared_folder_id', SharedFolderMetadataBase.parent_shared_folder_id.validator), + ('path_display', SharedFolderMetadataBase.path_display.validator), + ('path_lower', SharedFolderMetadataBase.path_lower.validator), + ('parent_folder_name', SharedFolderMetadataBase.parent_folder_name.validator), ] SharedFolderMetadata.link_metadata.validator = bv.Nullable(SharedContentLinkMetadata_validator) @@ -15180,31 +14413,27 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): SharedFolderMetadata.time_invited.validator = common.DropboxTimestamp_validator SharedFolderMetadata.access_inheritance.validator = AccessInheritance_validator SharedFolderMetadata.folder_id.validator = bv.Nullable(files.FileId_validator) -SharedFolderMetadata._all_field_names_ = SharedFolderMetadataBase._all_field_names_.union( - set( - [ - "link_metadata", - "name", - "permissions", - "policy", - "preview_url", - "shared_folder_id", - "time_invited", - "access_inheritance", - "folder_id", - ] - ) -) +SharedFolderMetadata._all_field_names_ = SharedFolderMetadataBase._all_field_names_.union(set([ + 'link_metadata', + 'name', + 'permissions', + 'policy', + 'preview_url', + 'shared_folder_id', + 'time_invited', + 'access_inheritance', + 'folder_id', +])) SharedFolderMetadata._all_fields_ = SharedFolderMetadataBase._all_fields_ + [ - ("link_metadata", SharedFolderMetadata.link_metadata.validator), - ("name", SharedFolderMetadata.name.validator), - ("permissions", SharedFolderMetadata.permissions.validator), - ("policy", SharedFolderMetadata.policy.validator), - ("preview_url", SharedFolderMetadata.preview_url.validator), - ("shared_folder_id", SharedFolderMetadata.shared_folder_id.validator), - ("time_invited", SharedFolderMetadata.time_invited.validator), - ("access_inheritance", SharedFolderMetadata.access_inheritance.validator), - ("folder_id", SharedFolderMetadata.folder_id.validator), + ('link_metadata', SharedFolderMetadata.link_metadata.validator), + ('name', SharedFolderMetadata.name.validator), + ('permissions', SharedFolderMetadata.permissions.validator), + ('policy', SharedFolderMetadata.policy.validator), + ('preview_url', SharedFolderMetadata.preview_url.validator), + ('shared_folder_id', SharedFolderMetadata.shared_folder_id.validator), + ('time_invited', SharedFolderMetadata.time_invited.validator), + ('access_inheritance', SharedFolderMetadata.access_inheritance.validator), + ('folder_id', SharedFolderMetadata.folder_id.validator), ] SharedLinkAccessFailureReason._login_required_validator = bv.Void() @@ -15214,33 +14443,32 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): SharedLinkAccessFailureReason._owner_only_validator = bv.Void() SharedLinkAccessFailureReason._other_validator = bv.Void() SharedLinkAccessFailureReason._tagmap = { - "login_required": SharedLinkAccessFailureReason._login_required_validator, - "email_verify_required": SharedLinkAccessFailureReason._email_verify_required_validator, - "password_required": SharedLinkAccessFailureReason._password_required_validator, - "team_only": SharedLinkAccessFailureReason._team_only_validator, - "owner_only": SharedLinkAccessFailureReason._owner_only_validator, - "other": SharedLinkAccessFailureReason._other_validator, + 'login_required': SharedLinkAccessFailureReason._login_required_validator, + 'email_verify_required': SharedLinkAccessFailureReason._email_verify_required_validator, + 'password_required': SharedLinkAccessFailureReason._password_required_validator, + 'team_only': SharedLinkAccessFailureReason._team_only_validator, + 'owner_only': SharedLinkAccessFailureReason._owner_only_validator, + 'other': SharedLinkAccessFailureReason._other_validator, } -SharedLinkAccessFailureReason.login_required = SharedLinkAccessFailureReason("login_required") -SharedLinkAccessFailureReason.email_verify_required = SharedLinkAccessFailureReason( - "email_verify_required" -) -SharedLinkAccessFailureReason.password_required = SharedLinkAccessFailureReason("password_required") -SharedLinkAccessFailureReason.team_only = SharedLinkAccessFailureReason("team_only") -SharedLinkAccessFailureReason.owner_only = SharedLinkAccessFailureReason("owner_only") -SharedLinkAccessFailureReason.other = SharedLinkAccessFailureReason("other") +SharedLinkAccessFailureReason.login_required = SharedLinkAccessFailureReason('login_required') +SharedLinkAccessFailureReason.email_verify_required = SharedLinkAccessFailureReason('email_verify_required') +SharedLinkAccessFailureReason.password_required = SharedLinkAccessFailureReason('password_required') +SharedLinkAccessFailureReason.team_only = SharedLinkAccessFailureReason('team_only') +SharedLinkAccessFailureReason.owner_only = SharedLinkAccessFailureReason('owner_only') +SharedLinkAccessFailureReason.other = SharedLinkAccessFailureReason('other') SharedLinkAlreadyExistsMetadata._metadata_validator = SharedLinkMetadata_validator SharedLinkAlreadyExistsMetadata._other_validator = bv.Void() SharedLinkAlreadyExistsMetadata._tagmap = { - "metadata": SharedLinkAlreadyExistsMetadata._metadata_validator, - "other": SharedLinkAlreadyExistsMetadata._other_validator, + 'metadata': SharedLinkAlreadyExistsMetadata._metadata_validator, + 'other': SharedLinkAlreadyExistsMetadata._other_validator, } -SharedLinkAlreadyExistsMetadata.other = SharedLinkAlreadyExistsMetadata("other") +SharedLinkAlreadyExistsMetadata.other = SharedLinkAlreadyExistsMetadata('other') -SharedLinkMetadataError._tagmap = {} +SharedLinkMetadataError._tagmap = { +} SharedLinkMetadataError._tagmap.update(SharedLinkError._tagmap) SharedLinkPolicy._anyone_validator = bv.Void() @@ -15248,16 +14476,16 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): SharedLinkPolicy._members_validator = bv.Void() SharedLinkPolicy._other_validator = bv.Void() SharedLinkPolicy._tagmap = { - "anyone": SharedLinkPolicy._anyone_validator, - "team": SharedLinkPolicy._team_validator, - "members": SharedLinkPolicy._members_validator, - "other": SharedLinkPolicy._other_validator, + 'anyone': SharedLinkPolicy._anyone_validator, + 'team': SharedLinkPolicy._team_validator, + 'members': SharedLinkPolicy._members_validator, + 'other': SharedLinkPolicy._other_validator, } -SharedLinkPolicy.anyone = SharedLinkPolicy("anyone") -SharedLinkPolicy.team = SharedLinkPolicy("team") -SharedLinkPolicy.members = SharedLinkPolicy("members") -SharedLinkPolicy.other = SharedLinkPolicy("other") +SharedLinkPolicy.anyone = SharedLinkPolicy('anyone') +SharedLinkPolicy.team = SharedLinkPolicy('team') +SharedLinkPolicy.members = SharedLinkPolicy('members') +SharedLinkPolicy.other = SharedLinkPolicy('other') SharedLinkSettings.require_password.validator = bv.Nullable(bv.Boolean()) SharedLinkSettings.link_password.validator = bv.Nullable(bv.String()) @@ -15266,36 +14494,34 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): SharedLinkSettings.access.validator = bv.Nullable(RequestedLinkAccessLevel_validator) SharedLinkSettings.requested_visibility.validator = bv.Nullable(RequestedVisibility_validator) SharedLinkSettings.allow_download.validator = bv.Nullable(bv.Boolean()) -SharedLinkSettings._all_field_names_ = set( - [ - "require_password", - "link_password", - "expires", - "audience", - "access", - "requested_visibility", - "allow_download", - ] -) +SharedLinkSettings._all_field_names_ = set([ + 'require_password', + 'link_password', + 'expires', + 'audience', + 'access', + 'requested_visibility', + 'allow_download', +]) SharedLinkSettings._all_fields_ = [ - ("require_password", SharedLinkSettings.require_password.validator), - ("link_password", SharedLinkSettings.link_password.validator), - ("expires", SharedLinkSettings.expires.validator), - ("audience", SharedLinkSettings.audience.validator), - ("access", SharedLinkSettings.access.validator), - ("requested_visibility", SharedLinkSettings.requested_visibility.validator), - ("allow_download", SharedLinkSettings.allow_download.validator), + ('require_password', SharedLinkSettings.require_password.validator), + ('link_password', SharedLinkSettings.link_password.validator), + ('expires', SharedLinkSettings.expires.validator), + ('audience', SharedLinkSettings.audience.validator), + ('access', SharedLinkSettings.access.validator), + ('requested_visibility', SharedLinkSettings.requested_visibility.validator), + ('allow_download', SharedLinkSettings.allow_download.validator), ] SharedLinkSettingsError._invalid_settings_validator = bv.Void() SharedLinkSettingsError._not_authorized_validator = bv.Void() SharedLinkSettingsError._tagmap = { - "invalid_settings": SharedLinkSettingsError._invalid_settings_validator, - "not_authorized": SharedLinkSettingsError._not_authorized_validator, + 'invalid_settings': SharedLinkSettingsError._invalid_settings_validator, + 'not_authorized': SharedLinkSettingsError._not_authorized_validator, } -SharedLinkSettingsError.invalid_settings = SharedLinkSettingsError("invalid_settings") -SharedLinkSettingsError.not_authorized = SharedLinkSettingsError("not_authorized") +SharedLinkSettingsError.invalid_settings = SharedLinkSettingsError('invalid_settings') +SharedLinkSettingsError.not_authorized = SharedLinkSettingsError('not_authorized') SharingFileAccessError._no_permission_validator = bv.Void() SharingFileAccessError._invalid_file_validator = bv.Void() @@ -15304,58 +14530,54 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): SharingFileAccessError._inside_osx_package_validator = bv.Void() SharingFileAccessError._other_validator = bv.Void() SharingFileAccessError._tagmap = { - "no_permission": SharingFileAccessError._no_permission_validator, - "invalid_file": SharingFileAccessError._invalid_file_validator, - "is_folder": SharingFileAccessError._is_folder_validator, - "inside_public_folder": SharingFileAccessError._inside_public_folder_validator, - "inside_osx_package": SharingFileAccessError._inside_osx_package_validator, - "other": SharingFileAccessError._other_validator, + 'no_permission': SharingFileAccessError._no_permission_validator, + 'invalid_file': SharingFileAccessError._invalid_file_validator, + 'is_folder': SharingFileAccessError._is_folder_validator, + 'inside_public_folder': SharingFileAccessError._inside_public_folder_validator, + 'inside_osx_package': SharingFileAccessError._inside_osx_package_validator, + 'other': SharingFileAccessError._other_validator, } -SharingFileAccessError.no_permission = SharingFileAccessError("no_permission") -SharingFileAccessError.invalid_file = SharingFileAccessError("invalid_file") -SharingFileAccessError.is_folder = SharingFileAccessError("is_folder") -SharingFileAccessError.inside_public_folder = SharingFileAccessError("inside_public_folder") -SharingFileAccessError.inside_osx_package = SharingFileAccessError("inside_osx_package") -SharingFileAccessError.other = SharingFileAccessError("other") +SharingFileAccessError.no_permission = SharingFileAccessError('no_permission') +SharingFileAccessError.invalid_file = SharingFileAccessError('invalid_file') +SharingFileAccessError.is_folder = SharingFileAccessError('is_folder') +SharingFileAccessError.inside_public_folder = SharingFileAccessError('inside_public_folder') +SharingFileAccessError.inside_osx_package = SharingFileAccessError('inside_osx_package') +SharingFileAccessError.other = SharingFileAccessError('other') SharingUserError._email_unverified_validator = bv.Void() SharingUserError._other_validator = bv.Void() SharingUserError._tagmap = { - "email_unverified": SharingUserError._email_unverified_validator, - "other": SharingUserError._other_validator, + 'email_unverified': SharingUserError._email_unverified_validator, + 'other': SharingUserError._other_validator, } -SharingUserError.email_unverified = SharingUserError("email_unverified") -SharingUserError.other = SharingUserError("other") +SharingUserError.email_unverified = SharingUserError('email_unverified') +SharingUserError.other = SharingUserError('other') TeamMemberInfo.team_info.validator = TeamInfo_validator TeamMemberInfo.display_name.validator = bv.String() TeamMemberInfo.member_id.validator = bv.Nullable(bv.String()) -TeamMemberInfo._all_field_names_ = set( - [ - "team_info", - "display_name", - "member_id", - ] -) +TeamMemberInfo._all_field_names_ = set([ + 'team_info', + 'display_name', + 'member_id', +]) TeamMemberInfo._all_fields_ = [ - ("team_info", TeamMemberInfo.team_info.validator), - ("display_name", TeamMemberInfo.display_name.validator), - ("member_id", TeamMemberInfo.member_id.validator), + ('team_info', TeamMemberInfo.team_info.validator), + ('display_name', TeamMemberInfo.display_name.validator), + ('member_id', TeamMemberInfo.member_id.validator), ] TransferFolderArg.shared_folder_id.validator = common.SharedFolderId_validator TransferFolderArg.to_dropbox_id.validator = DropboxId_validator -TransferFolderArg._all_field_names_ = set( - [ - "shared_folder_id", - "to_dropbox_id", - ] -) +TransferFolderArg._all_field_names_ = set([ + 'shared_folder_id', + 'to_dropbox_id', +]) TransferFolderArg._all_fields_ = [ - ("shared_folder_id", TransferFolderArg.shared_folder_id.validator), - ("to_dropbox_id", TransferFolderArg.to_dropbox_id.validator), + ('shared_folder_id', TransferFolderArg.shared_folder_id.validator), + ('to_dropbox_id', TransferFolderArg.to_dropbox_id.validator), ] TransferFolderError._access_error_validator = SharedFolderAccessError_validator @@ -15367,69 +14589,67 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): TransferFolderError._no_permission_validator = bv.Void() TransferFolderError._other_validator = bv.Void() TransferFolderError._tagmap = { - "access_error": TransferFolderError._access_error_validator, - "invalid_dropbox_id": TransferFolderError._invalid_dropbox_id_validator, - "new_owner_not_a_member": TransferFolderError._new_owner_not_a_member_validator, - "new_owner_unmounted": TransferFolderError._new_owner_unmounted_validator, - "new_owner_email_unverified": TransferFolderError._new_owner_email_unverified_validator, - "team_folder": TransferFolderError._team_folder_validator, - "no_permission": TransferFolderError._no_permission_validator, - "other": TransferFolderError._other_validator, + 'access_error': TransferFolderError._access_error_validator, + 'invalid_dropbox_id': TransferFolderError._invalid_dropbox_id_validator, + 'new_owner_not_a_member': TransferFolderError._new_owner_not_a_member_validator, + 'new_owner_unmounted': TransferFolderError._new_owner_unmounted_validator, + 'new_owner_email_unverified': TransferFolderError._new_owner_email_unverified_validator, + 'team_folder': TransferFolderError._team_folder_validator, + 'no_permission': TransferFolderError._no_permission_validator, + 'other': TransferFolderError._other_validator, } -TransferFolderError.invalid_dropbox_id = TransferFolderError("invalid_dropbox_id") -TransferFolderError.new_owner_not_a_member = TransferFolderError("new_owner_not_a_member") -TransferFolderError.new_owner_unmounted = TransferFolderError("new_owner_unmounted") -TransferFolderError.new_owner_email_unverified = TransferFolderError("new_owner_email_unverified") -TransferFolderError.team_folder = TransferFolderError("team_folder") -TransferFolderError.no_permission = TransferFolderError("no_permission") -TransferFolderError.other = TransferFolderError("other") +TransferFolderError.invalid_dropbox_id = TransferFolderError('invalid_dropbox_id') +TransferFolderError.new_owner_not_a_member = TransferFolderError('new_owner_not_a_member') +TransferFolderError.new_owner_unmounted = TransferFolderError('new_owner_unmounted') +TransferFolderError.new_owner_email_unverified = TransferFolderError('new_owner_email_unverified') +TransferFolderError.team_folder = TransferFolderError('team_folder') +TransferFolderError.no_permission = TransferFolderError('no_permission') +TransferFolderError.other = TransferFolderError('other') UnmountFolderArg.shared_folder_id.validator = common.SharedFolderId_validator -UnmountFolderArg._all_field_names_ = set(["shared_folder_id"]) -UnmountFolderArg._all_fields_ = [("shared_folder_id", UnmountFolderArg.shared_folder_id.validator)] +UnmountFolderArg._all_field_names_ = set(['shared_folder_id']) +UnmountFolderArg._all_fields_ = [('shared_folder_id', UnmountFolderArg.shared_folder_id.validator)] UnmountFolderError._access_error_validator = SharedFolderAccessError_validator UnmountFolderError._no_permission_validator = bv.Void() UnmountFolderError._not_unmountable_validator = bv.Void() UnmountFolderError._other_validator = bv.Void() UnmountFolderError._tagmap = { - "access_error": UnmountFolderError._access_error_validator, - "no_permission": UnmountFolderError._no_permission_validator, - "not_unmountable": UnmountFolderError._not_unmountable_validator, - "other": UnmountFolderError._other_validator, + 'access_error': UnmountFolderError._access_error_validator, + 'no_permission': UnmountFolderError._no_permission_validator, + 'not_unmountable': UnmountFolderError._not_unmountable_validator, + 'other': UnmountFolderError._other_validator, } -UnmountFolderError.no_permission = UnmountFolderError("no_permission") -UnmountFolderError.not_unmountable = UnmountFolderError("not_unmountable") -UnmountFolderError.other = UnmountFolderError("other") +UnmountFolderError.no_permission = UnmountFolderError('no_permission') +UnmountFolderError.not_unmountable = UnmountFolderError('not_unmountable') +UnmountFolderError.other = UnmountFolderError('other') UnshareFileArg.file.validator = PathOrId_validator -UnshareFileArg._all_field_names_ = set(["file"]) -UnshareFileArg._all_fields_ = [("file", UnshareFileArg.file.validator)] +UnshareFileArg._all_field_names_ = set(['file']) +UnshareFileArg._all_fields_ = [('file', UnshareFileArg.file.validator)] UnshareFileError._user_error_validator = SharingUserError_validator UnshareFileError._access_error_validator = SharingFileAccessError_validator UnshareFileError._other_validator = bv.Void() UnshareFileError._tagmap = { - "user_error": UnshareFileError._user_error_validator, - "access_error": UnshareFileError._access_error_validator, - "other": UnshareFileError._other_validator, + 'user_error': UnshareFileError._user_error_validator, + 'access_error': UnshareFileError._access_error_validator, + 'other': UnshareFileError._other_validator, } -UnshareFileError.other = UnshareFileError("other") +UnshareFileError.other = UnshareFileError('other') UnshareFolderArg.shared_folder_id.validator = common.SharedFolderId_validator UnshareFolderArg.leave_a_copy.validator = bv.Boolean() -UnshareFolderArg._all_field_names_ = set( - [ - "shared_folder_id", - "leave_a_copy", - ] -) +UnshareFolderArg._all_field_names_ = set([ + 'shared_folder_id', + 'leave_a_copy', +]) UnshareFolderArg._all_fields_ = [ - ("shared_folder_id", UnshareFolderArg.shared_folder_id.validator), - ("leave_a_copy", UnshareFolderArg.leave_a_copy.validator), + ('shared_folder_id', UnshareFolderArg.shared_folder_id.validator), + ('leave_a_copy', UnshareFolderArg.leave_a_copy.validator), ] UnshareFolderError._access_error_validator = SharedFolderAccessError_validator @@ -15438,51 +14658,47 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): UnshareFolderError._too_many_files_validator = bv.Void() UnshareFolderError._other_validator = bv.Void() UnshareFolderError._tagmap = { - "access_error": UnshareFolderError._access_error_validator, - "team_folder": UnshareFolderError._team_folder_validator, - "no_permission": UnshareFolderError._no_permission_validator, - "too_many_files": UnshareFolderError._too_many_files_validator, - "other": UnshareFolderError._other_validator, + 'access_error': UnshareFolderError._access_error_validator, + 'team_folder': UnshareFolderError._team_folder_validator, + 'no_permission': UnshareFolderError._no_permission_validator, + 'too_many_files': UnshareFolderError._too_many_files_validator, + 'other': UnshareFolderError._other_validator, } -UnshareFolderError.team_folder = UnshareFolderError("team_folder") -UnshareFolderError.no_permission = UnshareFolderError("no_permission") -UnshareFolderError.too_many_files = UnshareFolderError("too_many_files") -UnshareFolderError.other = UnshareFolderError("other") +UnshareFolderError.team_folder = UnshareFolderError('team_folder') +UnshareFolderError.no_permission = UnshareFolderError('no_permission') +UnshareFolderError.too_many_files = UnshareFolderError('too_many_files') +UnshareFolderError.other = UnshareFolderError('other') UpdateFileMemberArgs.file.validator = PathOrId_validator UpdateFileMemberArgs.member.validator = MemberSelector_validator UpdateFileMemberArgs.access_level.validator = AccessLevel_validator -UpdateFileMemberArgs._all_field_names_ = set( - [ - "file", - "member", - "access_level", - ] -) +UpdateFileMemberArgs._all_field_names_ = set([ + 'file', + 'member', + 'access_level', +]) UpdateFileMemberArgs._all_fields_ = [ - ("file", UpdateFileMemberArgs.file.validator), - ("member", UpdateFileMemberArgs.member.validator), - ("access_level", UpdateFileMemberArgs.access_level.validator), + ('file', UpdateFileMemberArgs.file.validator), + ('member', UpdateFileMemberArgs.member.validator), + ('access_level', UpdateFileMemberArgs.access_level.validator), ] UpdateFilePolicyArg.file.validator = PathOrId_validator UpdateFilePolicyArg.actions.validator = bv.Nullable(bv.List(FileAction_validator)) UpdateFilePolicyArg.link_settings.validator = bv.Nullable(LinkSettings_validator) UpdateFilePolicyArg.viewer_info_policy.validator = bv.Nullable(ViewerInfoPolicy_validator) -UpdateFilePolicyArg._all_field_names_ = set( - [ - "file", - "actions", - "link_settings", - "viewer_info_policy", - ] -) +UpdateFilePolicyArg._all_field_names_ = set([ + 'file', + 'actions', + 'link_settings', + 'viewer_info_policy', +]) UpdateFilePolicyArg._all_fields_ = [ - ("file", UpdateFilePolicyArg.file.validator), - ("actions", UpdateFilePolicyArg.actions.validator), - ("link_settings", UpdateFilePolicyArg.link_settings.validator), - ("viewer_info_policy", UpdateFilePolicyArg.viewer_info_policy.validator), + ('file', UpdateFilePolicyArg.file.validator), + ('actions', UpdateFilePolicyArg.actions.validator), + ('link_settings', UpdateFilePolicyArg.link_settings.validator), + ('viewer_info_policy', UpdateFilePolicyArg.viewer_info_policy.validator), ] UpdateFilePolicyError._access_error_validator = SharingFileAccessError_validator @@ -15490,30 +14706,28 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): UpdateFilePolicyError._no_permission_validator = bv.Void() UpdateFilePolicyError._other_validator = bv.Void() UpdateFilePolicyError._tagmap = { - "access_error": UpdateFilePolicyError._access_error_validator, - "invalid_file_settings": UpdateFilePolicyError._invalid_file_settings_validator, - "no_permission": UpdateFilePolicyError._no_permission_validator, - "other": UpdateFilePolicyError._other_validator, + 'access_error': UpdateFilePolicyError._access_error_validator, + 'invalid_file_settings': UpdateFilePolicyError._invalid_file_settings_validator, + 'no_permission': UpdateFilePolicyError._no_permission_validator, + 'other': UpdateFilePolicyError._other_validator, } -UpdateFilePolicyError.invalid_file_settings = UpdateFilePolicyError("invalid_file_settings") -UpdateFilePolicyError.no_permission = UpdateFilePolicyError("no_permission") -UpdateFilePolicyError.other = UpdateFilePolicyError("other") +UpdateFilePolicyError.invalid_file_settings = UpdateFilePolicyError('invalid_file_settings') +UpdateFilePolicyError.no_permission = UpdateFilePolicyError('no_permission') +UpdateFilePolicyError.other = UpdateFilePolicyError('other') UpdateFolderMemberArg.shared_folder_id.validator = common.SharedFolderId_validator UpdateFolderMemberArg.member.validator = MemberSelector_validator UpdateFolderMemberArg.access_level.validator = AccessLevel_validator -UpdateFolderMemberArg._all_field_names_ = set( - [ - "shared_folder_id", - "member", - "access_level", - ] -) +UpdateFolderMemberArg._all_field_names_ = set([ + 'shared_folder_id', + 'member', + 'access_level', +]) UpdateFolderMemberArg._all_fields_ = [ - ("shared_folder_id", UpdateFolderMemberArg.shared_folder_id.validator), - ("member", UpdateFolderMemberArg.member.validator), - ("access_level", UpdateFolderMemberArg.access_level.validator), + ('shared_folder_id', UpdateFolderMemberArg.shared_folder_id.validator), + ('member', UpdateFolderMemberArg.member.validator), + ('access_level', UpdateFolderMemberArg.access_level.validator), ] UpdateFolderMemberError._access_error_validator = SharedFolderAccessError_validator @@ -15523,17 +14737,17 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): UpdateFolderMemberError._no_permission_validator = bv.Void() UpdateFolderMemberError._other_validator = bv.Void() UpdateFolderMemberError._tagmap = { - "access_error": UpdateFolderMemberError._access_error_validator, - "member_error": UpdateFolderMemberError._member_error_validator, - "no_explicit_access": UpdateFolderMemberError._no_explicit_access_validator, - "insufficient_plan": UpdateFolderMemberError._insufficient_plan_validator, - "no_permission": UpdateFolderMemberError._no_permission_validator, - "other": UpdateFolderMemberError._other_validator, + 'access_error': UpdateFolderMemberError._access_error_validator, + 'member_error': UpdateFolderMemberError._member_error_validator, + 'no_explicit_access': UpdateFolderMemberError._no_explicit_access_validator, + 'insufficient_plan': UpdateFolderMemberError._insufficient_plan_validator, + 'no_permission': UpdateFolderMemberError._no_permission_validator, + 'other': UpdateFolderMemberError._other_validator, } -UpdateFolderMemberError.insufficient_plan = UpdateFolderMemberError("insufficient_plan") -UpdateFolderMemberError.no_permission = UpdateFolderMemberError("no_permission") -UpdateFolderMemberError.other = UpdateFolderMemberError("other") +UpdateFolderMemberError.insufficient_plan = UpdateFolderMemberError('insufficient_plan') +UpdateFolderMemberError.no_permission = UpdateFolderMemberError('no_permission') +UpdateFolderMemberError.other = UpdateFolderMemberError('other') UpdateFolderPolicyArg.shared_folder_id.validator = common.SharedFolderId_validator UpdateFolderPolicyArg.member_policy.validator = bv.Nullable(MemberPolicy_validator) @@ -15542,25 +14756,23 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): UpdateFolderPolicyArg.shared_link_policy.validator = bv.Nullable(SharedLinkPolicy_validator) UpdateFolderPolicyArg.link_settings.validator = bv.Nullable(LinkSettings_validator) UpdateFolderPolicyArg.actions.validator = bv.Nullable(bv.List(FolderAction_validator)) -UpdateFolderPolicyArg._all_field_names_ = set( - [ - "shared_folder_id", - "member_policy", - "acl_update_policy", - "viewer_info_policy", - "shared_link_policy", - "link_settings", - "actions", - ] -) +UpdateFolderPolicyArg._all_field_names_ = set([ + 'shared_folder_id', + 'member_policy', + 'acl_update_policy', + 'viewer_info_policy', + 'shared_link_policy', + 'link_settings', + 'actions', +]) UpdateFolderPolicyArg._all_fields_ = [ - ("shared_folder_id", UpdateFolderPolicyArg.shared_folder_id.validator), - ("member_policy", UpdateFolderPolicyArg.member_policy.validator), - ("acl_update_policy", UpdateFolderPolicyArg.acl_update_policy.validator), - ("viewer_info_policy", UpdateFolderPolicyArg.viewer_info_policy.validator), - ("shared_link_policy", UpdateFolderPolicyArg.shared_link_policy.validator), - ("link_settings", UpdateFolderPolicyArg.link_settings.validator), - ("actions", UpdateFolderPolicyArg.actions.validator), + ('shared_folder_id', UpdateFolderPolicyArg.shared_folder_id.validator), + ('member_policy', UpdateFolderPolicyArg.member_policy.validator), + ('acl_update_policy', UpdateFolderPolicyArg.acl_update_policy.validator), + ('viewer_info_policy', UpdateFolderPolicyArg.viewer_info_policy.validator), + ('shared_link_policy', UpdateFolderPolicyArg.shared_link_policy.validator), + ('link_settings', UpdateFolderPolicyArg.link_settings.validator), + ('actions', UpdateFolderPolicyArg.actions.validator), ] UpdateFolderPolicyError._access_error_validator = SharedFolderAccessError_validator @@ -15571,45 +14783,35 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): UpdateFolderPolicyError._team_folder_validator = bv.Void() UpdateFolderPolicyError._other_validator = bv.Void() UpdateFolderPolicyError._tagmap = { - "access_error": UpdateFolderPolicyError._access_error_validator, - "not_on_team": UpdateFolderPolicyError._not_on_team_validator, - "team_policy_disallows_member_policy": UpdateFolderPolicyError._team_policy_disallows_member_policy_validator, - "disallowed_shared_link_policy": UpdateFolderPolicyError._disallowed_shared_link_policy_validator, - "no_permission": UpdateFolderPolicyError._no_permission_validator, - "team_folder": UpdateFolderPolicyError._team_folder_validator, - "other": UpdateFolderPolicyError._other_validator, + 'access_error': UpdateFolderPolicyError._access_error_validator, + 'not_on_team': UpdateFolderPolicyError._not_on_team_validator, + 'team_policy_disallows_member_policy': UpdateFolderPolicyError._team_policy_disallows_member_policy_validator, + 'disallowed_shared_link_policy': UpdateFolderPolicyError._disallowed_shared_link_policy_validator, + 'no_permission': UpdateFolderPolicyError._no_permission_validator, + 'team_folder': UpdateFolderPolicyError._team_folder_validator, + 'other': UpdateFolderPolicyError._other_validator, } -UpdateFolderPolicyError.not_on_team = UpdateFolderPolicyError("not_on_team") -UpdateFolderPolicyError.team_policy_disallows_member_policy = UpdateFolderPolicyError( - "team_policy_disallows_member_policy" -) -UpdateFolderPolicyError.disallowed_shared_link_policy = UpdateFolderPolicyError( - "disallowed_shared_link_policy" -) -UpdateFolderPolicyError.no_permission = UpdateFolderPolicyError("no_permission") -UpdateFolderPolicyError.team_folder = UpdateFolderPolicyError("team_folder") -UpdateFolderPolicyError.other = UpdateFolderPolicyError("other") +UpdateFolderPolicyError.not_on_team = UpdateFolderPolicyError('not_on_team') +UpdateFolderPolicyError.team_policy_disallows_member_policy = UpdateFolderPolicyError('team_policy_disallows_member_policy') +UpdateFolderPolicyError.disallowed_shared_link_policy = UpdateFolderPolicyError('disallowed_shared_link_policy') +UpdateFolderPolicyError.no_permission = UpdateFolderPolicyError('no_permission') +UpdateFolderPolicyError.team_folder = UpdateFolderPolicyError('team_folder') +UpdateFolderPolicyError.other = UpdateFolderPolicyError('other') UserMembershipInfo.user.validator = UserInfo_validator -UserMembershipInfo._all_field_names_ = MembershipInfo._all_field_names_.union(set(["user"])) -UserMembershipInfo._all_fields_ = MembershipInfo._all_fields_ + [ - ("user", UserMembershipInfo.user.validator) -] +UserMembershipInfo._all_field_names_ = MembershipInfo._all_field_names_.union(set(['user'])) +UserMembershipInfo._all_fields_ = MembershipInfo._all_fields_ + [('user', UserMembershipInfo.user.validator)] UserFileMembershipInfo.time_last_seen.validator = bv.Nullable(common.DropboxTimestamp_validator) UserFileMembershipInfo.platform_type.validator = bv.Nullable(seen_state.PlatformType_validator) -UserFileMembershipInfo._all_field_names_ = UserMembershipInfo._all_field_names_.union( - set( - [ - "time_last_seen", - "platform_type", - ] - ) -) +UserFileMembershipInfo._all_field_names_ = UserMembershipInfo._all_field_names_.union(set([ + 'time_last_seen', + 'platform_type', +])) UserFileMembershipInfo._all_fields_ = UserMembershipInfo._all_fields_ + [ - ("time_last_seen", UserFileMembershipInfo.time_last_seen.validator), - ("platform_type", UserFileMembershipInfo.platform_type.validator), + ('time_last_seen', UserFileMembershipInfo.time_last_seen.validator), + ('platform_type', UserFileMembershipInfo.platform_type.validator), ] UserInfo.account_id.validator = users_common.AccountId_validator @@ -15617,35 +14819,33 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): UserInfo.display_name.validator = bv.String() UserInfo.same_team.validator = bv.Boolean() UserInfo.team_member_id.validator = bv.Nullable(bv.String()) -UserInfo._all_field_names_ = set( - [ - "account_id", - "email", - "display_name", - "same_team", - "team_member_id", - ] -) +UserInfo._all_field_names_ = set([ + 'account_id', + 'email', + 'display_name', + 'same_team', + 'team_member_id', +]) UserInfo._all_fields_ = [ - ("account_id", UserInfo.account_id.validator), - ("email", UserInfo.email.validator), - ("display_name", UserInfo.display_name.validator), - ("same_team", UserInfo.same_team.validator), - ("team_member_id", UserInfo.team_member_id.validator), + ('account_id', UserInfo.account_id.validator), + ('email', UserInfo.email.validator), + ('display_name', UserInfo.display_name.validator), + ('same_team', UserInfo.same_team.validator), + ('team_member_id', UserInfo.team_member_id.validator), ] ViewerInfoPolicy._enabled_validator = bv.Void() ViewerInfoPolicy._disabled_validator = bv.Void() ViewerInfoPolicy._other_validator = bv.Void() ViewerInfoPolicy._tagmap = { - "enabled": ViewerInfoPolicy._enabled_validator, - "disabled": ViewerInfoPolicy._disabled_validator, - "other": ViewerInfoPolicy._other_validator, + 'enabled': ViewerInfoPolicy._enabled_validator, + 'disabled': ViewerInfoPolicy._disabled_validator, + 'other': ViewerInfoPolicy._other_validator, } -ViewerInfoPolicy.enabled = ViewerInfoPolicy("enabled") -ViewerInfoPolicy.disabled = ViewerInfoPolicy("disabled") -ViewerInfoPolicy.other = ViewerInfoPolicy("other") +ViewerInfoPolicy.enabled = ViewerInfoPolicy('enabled') +ViewerInfoPolicy.disabled = ViewerInfoPolicy('disabled') +ViewerInfoPolicy.other = ViewerInfoPolicy('other') Visibility._public_validator = bv.Void() Visibility._team_only_validator = bv.Void() @@ -15654,40 +14854,36 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): Visibility._shared_folder_only_validator = bv.Void() Visibility._other_validator = bv.Void() Visibility._tagmap = { - "public": Visibility._public_validator, - "team_only": Visibility._team_only_validator, - "password": Visibility._password_validator, - "team_and_password": Visibility._team_and_password_validator, - "shared_folder_only": Visibility._shared_folder_only_validator, - "other": Visibility._other_validator, + 'public': Visibility._public_validator, + 'team_only': Visibility._team_only_validator, + 'password': Visibility._password_validator, + 'team_and_password': Visibility._team_and_password_validator, + 'shared_folder_only': Visibility._shared_folder_only_validator, + 'other': Visibility._other_validator, } -Visibility.public = Visibility("public") -Visibility.team_only = Visibility("team_only") -Visibility.password = Visibility("password") -Visibility.team_and_password = Visibility("team_and_password") -Visibility.shared_folder_only = Visibility("shared_folder_only") -Visibility.other = Visibility("other") +Visibility.public = Visibility('public') +Visibility.team_only = Visibility('team_only') +Visibility.password = Visibility('password') +Visibility.team_and_password = Visibility('team_and_password') +Visibility.shared_folder_only = Visibility('shared_folder_only') +Visibility.other = Visibility('other') VisibilityPolicy.policy.validator = RequestedVisibility_validator VisibilityPolicy.resolved_policy.validator = AlphaResolvedVisibility_validator VisibilityPolicy.allowed.validator = bv.Boolean() -VisibilityPolicy.disallowed_reason.validator = bv.Nullable( - VisibilityPolicyDisallowedReason_validator -) -VisibilityPolicy._all_field_names_ = set( - [ - "policy", - "resolved_policy", - "allowed", - "disallowed_reason", - ] -) +VisibilityPolicy.disallowed_reason.validator = bv.Nullable(VisibilityPolicyDisallowedReason_validator) +VisibilityPolicy._all_field_names_ = set([ + 'policy', + 'resolved_policy', + 'allowed', + 'disallowed_reason', +]) VisibilityPolicy._all_fields_ = [ - ("policy", VisibilityPolicy.policy.validator), - ("resolved_policy", VisibilityPolicy.resolved_policy.validator), - ("allowed", VisibilityPolicy.allowed.validator), - ("disallowed_reason", VisibilityPolicy.disallowed_reason.validator), + ('policy', VisibilityPolicy.policy.validator), + ('resolved_policy', VisibilityPolicy.resolved_policy.validator), + ('allowed', VisibilityPolicy.allowed.validator), + ('disallowed_reason', VisibilityPolicy.disallowed_reason.validator), ] AddFileMemberArgs.quiet.default = False @@ -15709,445 +14905,534 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): SharedFolderMetadata.access_inheritance.default = AccessInheritance.inherit UnshareFolderArg.leave_a_copy.default = False add_file_member = bb.Route( - "add_file_member", + 'add_file_member', 1, False, AddFileMemberArgs_validator, bv.List(FileMemberActionResult_validator), AddFileMemberError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) add_folder_member = bb.Route( - "add_folder_member", + 'add_folder_member', 1, False, AddFolderMemberArg_validator, bv.Void(), AddFolderMemberError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) check_job_status = bb.Route( - "check_job_status", + 'check_job_status', 1, False, async_.PollArg_validator, JobStatus_validator, async_.PollError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) check_remove_member_job_status = bb.Route( - "check_remove_member_job_status", + 'check_remove_member_job_status', 1, False, async_.PollArg_validator, RemoveMemberJobStatus_validator, async_.PollError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) check_share_job_status = bb.Route( - "check_share_job_status", + 'check_share_job_status', 1, False, async_.PollArg_validator, ShareFolderJobStatus_validator, async_.PollError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) create_shared_link = bb.Route( - "create_shared_link", + 'create_shared_link', 1, True, CreateSharedLinkArg_validator, PathLinkMetadata_validator, CreateSharedLinkError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) create_shared_link_with_settings = bb.Route( - "create_shared_link_with_settings", + 'create_shared_link_with_settings', 1, False, CreateSharedLinkWithSettingsArg_validator, SharedLinkMetadata_validator, CreateSharedLinkWithSettingsError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) get_file_metadata = bb.Route( - "get_file_metadata", + 'get_file_metadata', 1, False, GetFileMetadataArg_validator, SharedFileMetadata_validator, GetFileMetadataError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) get_file_metadata_batch = bb.Route( - "get_file_metadata/batch", + 'get_file_metadata/batch', 1, False, GetFileMetadataBatchArg_validator, bv.List(GetFileMetadataBatchResult_validator), SharingUserError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) get_folder_metadata = bb.Route( - "get_folder_metadata", + 'get_folder_metadata', 1, False, GetMetadataArgs_validator, SharedFolderMetadata_validator, SharedFolderAccessError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) get_shared_link_file = bb.Route( - "get_shared_link_file", + 'get_shared_link_file', 1, False, GetSharedLinkFileArg_validator, SharedLinkMetadata_validator, GetSharedLinkFileError_validator, - {"auth": "app, user", "host": "content", "style": "download"}, + {'auth': 'app, user', + 'host': 'content', + 'style': 'download'}, ) get_shared_link_metadata = bb.Route( - "get_shared_link_metadata", + 'get_shared_link_metadata', 1, False, GetSharedLinkMetadataArg_validator, SharedLinkMetadata_validator, SharedLinkMetadataError_validator, - {"auth": "app, user", "host": "api", "style": "rpc"}, + {'auth': 'app, user', + 'host': 'api', + 'style': 'rpc'}, ) get_shared_links = bb.Route( - "get_shared_links", + 'get_shared_links', 1, True, GetSharedLinksArg_validator, GetSharedLinksResult_validator, GetSharedLinksError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) list_file_members = bb.Route( - "list_file_members", + 'list_file_members', 1, False, ListFileMembersArg_validator, SharedFileMembers_validator, ListFileMembersError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) list_file_members_batch = bb.Route( - "list_file_members/batch", + 'list_file_members/batch', 1, False, ListFileMembersBatchArg_validator, bv.List(ListFileMembersBatchResult_validator), SharingUserError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) list_file_members_continue = bb.Route( - "list_file_members/continue", + 'list_file_members/continue', 1, False, ListFileMembersContinueArg_validator, SharedFileMembers_validator, ListFileMembersContinueError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) list_folder_members = bb.Route( - "list_folder_members", + 'list_folder_members', 1, False, ListFolderMembersArgs_validator, SharedFolderMembers_validator, SharedFolderAccessError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) list_folder_members_continue = bb.Route( - "list_folder_members/continue", + 'list_folder_members/continue', 1, False, ListFolderMembersContinueArg_validator, SharedFolderMembers_validator, ListFolderMembersContinueError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) list_folders = bb.Route( - "list_folders", + 'list_folders', 1, False, ListFoldersArgs_validator, ListFoldersResult_validator, bv.Void(), - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) list_folders_continue = bb.Route( - "list_folders/continue", + 'list_folders/continue', 1, False, ListFoldersContinueArg_validator, ListFoldersResult_validator, ListFoldersContinueError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) list_mountable_folders = bb.Route( - "list_mountable_folders", + 'list_mountable_folders', 1, False, ListFoldersArgs_validator, ListFoldersResult_validator, bv.Void(), - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) list_mountable_folders_continue = bb.Route( - "list_mountable_folders/continue", + 'list_mountable_folders/continue', 1, False, ListFoldersContinueArg_validator, ListFoldersResult_validator, ListFoldersContinueError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) list_received_files = bb.Route( - "list_received_files", + 'list_received_files', 1, False, ListFilesArg_validator, ListFilesResult_validator, SharingUserError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) list_received_files_continue = bb.Route( - "list_received_files/continue", + 'list_received_files/continue', 1, False, ListFilesContinueArg_validator, ListFilesResult_validator, ListFilesContinueError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) list_shared_links = bb.Route( - "list_shared_links", + 'list_shared_links', 1, False, ListSharedLinksArg_validator, ListSharedLinksResult_validator, ListSharedLinksError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) modify_shared_link_settings = bb.Route( - "modify_shared_link_settings", + 'modify_shared_link_settings', 1, False, ModifySharedLinkSettingsArgs_validator, SharedLinkMetadata_validator, ModifySharedLinkSettingsError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) mount_folder = bb.Route( - "mount_folder", + 'mount_folder', 1, False, MountFolderArg_validator, SharedFolderMetadata_validator, MountFolderError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) relinquish_access = bb.Route( - "relinquish_access", + 'relinquish_access', 1, False, RelinquishAccessArg_validator, RelinquishAccessResult_validator, RelinquishAccessError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) relinquish_file_membership = bb.Route( - "relinquish_file_membership", + 'relinquish_file_membership', 1, False, RelinquishFileMembershipArg_validator, bv.Void(), RelinquishFileMembershipError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) relinquish_folder_membership = bb.Route( - "relinquish_folder_membership", + 'relinquish_folder_membership', 1, False, RelinquishFolderMembershipArg_validator, async_.LaunchEmptyResult_validator, RelinquishFolderMembershipError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) remove_file_member = bb.Route( - "remove_file_member", + 'remove_file_member', 1, True, RemoveFileMemberArg_validator, FileMemberActionIndividualResult_validator, RemoveFileMemberError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) remove_file_member_2 = bb.Route( - "remove_file_member_2", + 'remove_file_member_2', 1, False, RemoveFileMemberArg_validator, FileMemberRemoveActionResult_validator, RemoveFileMemberError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) remove_folder_member = bb.Route( - "remove_folder_member", + 'remove_folder_member', 1, False, RemoveFolderMemberArg_validator, async_.LaunchResultBase_validator, RemoveFolderMemberError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) revoke_shared_link = bb.Route( - "revoke_shared_link", + 'revoke_shared_link', 1, False, RevokeSharedLinkArg_validator, bv.Void(), RevokeSharedLinkError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) set_access_inheritance = bb.Route( - "set_access_inheritance", + 'set_access_inheritance', 1, False, SetAccessInheritanceArg_validator, ShareFolderLaunch_validator, SetAccessInheritanceError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) share_folder = bb.Route( - "share_folder", + 'share_folder', 1, False, ShareFolderArg_validator, ShareFolderLaunch_validator, ShareFolderError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) transfer_folder = bb.Route( - "transfer_folder", + 'transfer_folder', 1, False, TransferFolderArg_validator, bv.Void(), TransferFolderError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) unmount_folder = bb.Route( - "unmount_folder", + 'unmount_folder', 1, False, UnmountFolderArg_validator, bv.Void(), UnmountFolderError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) unshare_file = bb.Route( - "unshare_file", + 'unshare_file', 1, False, UnshareFileArg_validator, bv.Void(), UnshareFileError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) unshare_folder = bb.Route( - "unshare_folder", + 'unshare_folder', 1, False, UnshareFolderArg_validator, async_.LaunchEmptyResult_validator, UnshareFolderError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) update_file_member = bb.Route( - "update_file_member", + 'update_file_member', 1, False, UpdateFileMemberArgs_validator, MemberAccessLevelResult_validator, FileMemberActionError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) update_file_policy = bb.Route( - "update_file_policy", + 'update_file_policy', 1, False, UpdateFilePolicyArg_validator, SharedFileMetadata_validator, UpdateFilePolicyError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) update_folder_member = bb.Route( - "update_folder_member", + 'update_folder_member', 1, False, UpdateFolderMemberArg_validator, MemberAccessLevelResult_validator, UpdateFolderMemberError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) update_folder_policy = bb.Route( - "update_folder_policy", + 'update_folder_policy', 1, False, UpdateFolderPolicyArg_validator, SharedFolderMetadata_validator, UpdateFolderPolicyError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) ROUTES = { - "add_file_member": add_file_member, - "add_folder_member": add_folder_member, - "check_job_status": check_job_status, - "check_remove_member_job_status": check_remove_member_job_status, - "check_share_job_status": check_share_job_status, - "create_shared_link": create_shared_link, - "create_shared_link_with_settings": create_shared_link_with_settings, - "get_file_metadata": get_file_metadata, - "get_file_metadata/batch": get_file_metadata_batch, - "get_folder_metadata": get_folder_metadata, - "get_shared_link_file": get_shared_link_file, - "get_shared_link_metadata": get_shared_link_metadata, - "get_shared_links": get_shared_links, - "list_file_members": list_file_members, - "list_file_members/batch": list_file_members_batch, - "list_file_members/continue": list_file_members_continue, - "list_folder_members": list_folder_members, - "list_folder_members/continue": list_folder_members_continue, - "list_folders": list_folders, - "list_folders/continue": list_folders_continue, - "list_mountable_folders": list_mountable_folders, - "list_mountable_folders/continue": list_mountable_folders_continue, - "list_received_files": list_received_files, - "list_received_files/continue": list_received_files_continue, - "list_shared_links": list_shared_links, - "modify_shared_link_settings": modify_shared_link_settings, - "mount_folder": mount_folder, - "relinquish_access": relinquish_access, - "relinquish_file_membership": relinquish_file_membership, - "relinquish_folder_membership": relinquish_folder_membership, - "remove_file_member": remove_file_member, - "remove_file_member_2": remove_file_member_2, - "remove_folder_member": remove_folder_member, - "revoke_shared_link": revoke_shared_link, - "set_access_inheritance": set_access_inheritance, - "share_folder": share_folder, - "transfer_folder": transfer_folder, - "unmount_folder": unmount_folder, - "unshare_file": unshare_file, - "unshare_folder": unshare_folder, - "update_file_member": update_file_member, - "update_file_policy": update_file_policy, - "update_folder_member": update_folder_member, - "update_folder_policy": update_folder_policy, + 'add_file_member': add_file_member, + 'add_folder_member': add_folder_member, + 'check_job_status': check_job_status, + 'check_remove_member_job_status': check_remove_member_job_status, + 'check_share_job_status': check_share_job_status, + 'create_shared_link': create_shared_link, + 'create_shared_link_with_settings': create_shared_link_with_settings, + 'get_file_metadata': get_file_metadata, + 'get_file_metadata/batch': get_file_metadata_batch, + 'get_folder_metadata': get_folder_metadata, + 'get_shared_link_file': get_shared_link_file, + 'get_shared_link_metadata': get_shared_link_metadata, + 'get_shared_links': get_shared_links, + 'list_file_members': list_file_members, + 'list_file_members/batch': list_file_members_batch, + 'list_file_members/continue': list_file_members_continue, + 'list_folder_members': list_folder_members, + 'list_folder_members/continue': list_folder_members_continue, + 'list_folders': list_folders, + 'list_folders/continue': list_folders_continue, + 'list_mountable_folders': list_mountable_folders, + 'list_mountable_folders/continue': list_mountable_folders_continue, + 'list_received_files': list_received_files, + 'list_received_files/continue': list_received_files_continue, + 'list_shared_links': list_shared_links, + 'modify_shared_link_settings': modify_shared_link_settings, + 'mount_folder': mount_folder, + 'relinquish_access': relinquish_access, + 'relinquish_file_membership': relinquish_file_membership, + 'relinquish_folder_membership': relinquish_folder_membership, + 'remove_file_member': remove_file_member, + 'remove_file_member_2': remove_file_member_2, + 'remove_folder_member': remove_folder_member, + 'revoke_shared_link': revoke_shared_link, + 'set_access_inheritance': set_access_inheritance, + 'share_folder': share_folder, + 'transfer_folder': transfer_folder, + 'unmount_folder': unmount_folder, + 'unshare_file': unshare_file, + 'unshare_folder': unshare_folder, + 'update_file_member': update_file_member, + 'update_file_policy': update_file_policy, + 'update_folder_member': update_folder_member, + 'update_folder_policy': update_folder_policy, } + diff --git a/dropbox/stone_base.py b/dropbox/stone_base.py index 4177f487..b912eebd 100644 --- a/dropbox/stone_base.py +++ b/dropbox/stone_base.py @@ -1 +1 @@ -from stone.backends.python_rsrc.stone_base import * # noqa: F403 +from stone.backends.python_rsrc.stone_base import * diff --git a/dropbox/stone_serializers.py b/dropbox/stone_serializers.py index 2ed497c0..669b985d 100644 --- a/dropbox/stone_serializers.py +++ b/dropbox/stone_serializers.py @@ -1 +1 @@ -from stone.backends.python_rsrc.stone_serializers import * # noqa: F403 +from stone.backends.python_rsrc.stone_serializers import * diff --git a/dropbox/stone_validators.py b/dropbox/stone_validators.py index 01f76e79..2f41d57d 100644 --- a/dropbox/stone_validators.py +++ b/dropbox/stone_validators.py @@ -1 +1 @@ -from stone.backends.python_rsrc.stone_validators import * # noqa: F403 +from stone.backends.python_rsrc.stone_validators import * diff --git a/dropbox/team.py b/dropbox/team.py index 6c82b976..317d5ba8 100644 --- a/dropbox/team.py +++ b/dropbox/team.py @@ -18,7 +18,6 @@ from dropbox import users from dropbox import users_common - class DeviceSession(bb.Struct): """ :ivar DeviceSession.session_id: @@ -34,16 +33,21 @@ class DeviceSession(bb.Struct): """ __slots__ = [ - "_session_id_value", - "_ip_address_value", - "_country_value", - "_created_value", - "_updated_value", + '_session_id_value', + '_ip_address_value', + '_country_value', + '_created_value', + '_updated_value', ] _has_required_fields = True - def __init__(self, session_id=None, ip_address=None, country=None, created=None, updated=None): + def __init__(self, + session_id=None, + ip_address=None, + country=None, + created=None, + updated=None): self._session_id_value = bb.NOT_SET self._ip_address_value = bb.NOT_SET self._country_value = bb.NOT_SET @@ -76,14 +80,10 @@ def __init__(self, session_id=None, ip_address=None, country=None, created=None, updated = bb.Attribute("updated", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeviceSession, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DeviceSession, self)._process_custom_annotations(annotation_type, field_path, processor) DeviceSession_validator = bv.Struct(DeviceSession) - class ActiveWebSession(DeviceSession): """ Information on active web sessions. @@ -99,27 +99,29 @@ class ActiveWebSession(DeviceSession): """ __slots__ = [ - "_user_agent_value", - "_os_value", - "_browser_value", - "_expires_value", + '_user_agent_value', + '_os_value', + '_browser_value', + '_expires_value', ] _has_required_fields = True - def __init__( - self, - session_id=None, - user_agent=None, - os=None, - browser=None, - ip_address=None, - country=None, - created=None, - updated=None, - expires=None, - ): - super(ActiveWebSession, self).__init__(session_id, ip_address, country, created, updated) + def __init__(self, + session_id=None, + user_agent=None, + os=None, + browser=None, + ip_address=None, + country=None, + created=None, + updated=None, + expires=None): + super(ActiveWebSession, self).__init__(session_id, + ip_address, + country, + created, + updated) self._user_agent_value = bb.NOT_SET self._os_value = bb.NOT_SET self._browser_value = bb.NOT_SET @@ -146,14 +148,10 @@ def __init__( expires = bb.Attribute("expires", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ActiveWebSession, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ActiveWebSession, self)._process_custom_annotations(annotation_type, field_path, processor) ActiveWebSession_validator = bv.Struct(ActiveWebSession) - class AddSecondaryEmailResult(bb.Union): """ Result of trying to add a secondary email to a user. 'success' is the only @@ -195,7 +193,7 @@ class AddSecondaryEmailResult(bb.Union): :vartype AddSecondaryEmailResult.rate_limited: str """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -208,7 +206,7 @@ def success(cls, val): :param secondary_emails.SecondaryEmail val: :rtype: AddSecondaryEmailResult """ - return cls("success", val) + return cls('success', val) @classmethod def unavailable(cls, val): @@ -219,7 +217,7 @@ def unavailable(cls, val): :param str val: :rtype: AddSecondaryEmailResult """ - return cls("unavailable", val) + return cls('unavailable', val) @classmethod def already_pending(cls, val): @@ -230,7 +228,7 @@ def already_pending(cls, val): :param str val: :rtype: AddSecondaryEmailResult """ - return cls("already_pending", val) + return cls('already_pending', val) @classmethod def already_owned_by_user(cls, val): @@ -241,7 +239,7 @@ def already_owned_by_user(cls, val): :param str val: :rtype: AddSecondaryEmailResult """ - return cls("already_owned_by_user", val) + return cls('already_owned_by_user', val) @classmethod def reached_limit(cls, val): @@ -252,7 +250,7 @@ def reached_limit(cls, val): :param str val: :rtype: AddSecondaryEmailResult """ - return cls("reached_limit", val) + return cls('reached_limit', val) @classmethod def transient_error(cls, val): @@ -263,7 +261,7 @@ def transient_error(cls, val): :param str val: :rtype: AddSecondaryEmailResult """ - return cls("transient_error", val) + return cls('transient_error', val) @classmethod def too_many_updates(cls, val): @@ -274,7 +272,7 @@ def too_many_updates(cls, val): :param str val: :rtype: AddSecondaryEmailResult """ - return cls("too_many_updates", val) + return cls('too_many_updates', val) @classmethod def unknown_error(cls, val): @@ -285,7 +283,7 @@ def unknown_error(cls, val): :param str val: :rtype: AddSecondaryEmailResult """ - return cls("unknown_error", val) + return cls('unknown_error', val) @classmethod def rate_limited(cls, val): @@ -296,7 +294,7 @@ def rate_limited(cls, val): :param str val: :rtype: AddSecondaryEmailResult """ - return cls("rate_limited", val) + return cls('rate_limited', val) def is_success(self): """ @@ -304,7 +302,7 @@ def is_success(self): :rtype: bool """ - return self._tag == "success" + return self._tag == 'success' def is_unavailable(self): """ @@ -312,7 +310,7 @@ def is_unavailable(self): :rtype: bool """ - return self._tag == "unavailable" + return self._tag == 'unavailable' def is_already_pending(self): """ @@ -320,7 +318,7 @@ def is_already_pending(self): :rtype: bool """ - return self._tag == "already_pending" + return self._tag == 'already_pending' def is_already_owned_by_user(self): """ @@ -328,7 +326,7 @@ def is_already_owned_by_user(self): :rtype: bool """ - return self._tag == "already_owned_by_user" + return self._tag == 'already_owned_by_user' def is_reached_limit(self): """ @@ -336,7 +334,7 @@ def is_reached_limit(self): :rtype: bool """ - return self._tag == "reached_limit" + return self._tag == 'reached_limit' def is_transient_error(self): """ @@ -344,7 +342,7 @@ def is_transient_error(self): :rtype: bool """ - return self._tag == "transient_error" + return self._tag == 'transient_error' def is_too_many_updates(self): """ @@ -352,7 +350,7 @@ def is_too_many_updates(self): :rtype: bool """ - return self._tag == "too_many_updates" + return self._tag == 'too_many_updates' def is_unknown_error(self): """ @@ -360,7 +358,7 @@ def is_unknown_error(self): :rtype: bool """ - return self._tag == "unknown_error" + return self._tag == 'unknown_error' def is_rate_limited(self): """ @@ -368,7 +366,7 @@ def is_rate_limited(self): :rtype: bool """ - return self._tag == "rate_limited" + return self._tag == 'rate_limited' def is_other(self): """ @@ -376,7 +374,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_success(self): """ @@ -488,14 +486,10 @@ def get_rate_limited(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AddSecondaryEmailResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AddSecondaryEmailResult, self)._process_custom_annotations(annotation_type, field_path, processor) AddSecondaryEmailResult_validator = bv.Union(AddSecondaryEmailResult) - class AddSecondaryEmailsArg(bb.Struct): """ :ivar AddSecondaryEmailsArg.new_secondary_emails: @@ -503,12 +497,13 @@ class AddSecondaryEmailsArg(bb.Struct): """ __slots__ = [ - "_new_secondary_emails_value", + '_new_secondary_emails_value', ] _has_required_fields = True - def __init__(self, new_secondary_emails=None): + def __init__(self, + new_secondary_emails=None): self._new_secondary_emails_value = bb.NOT_SET if new_secondary_emails is not None: self.new_secondary_emails = new_secondary_emails @@ -517,14 +512,10 @@ def __init__(self, new_secondary_emails=None): new_secondary_emails = bb.Attribute("new_secondary_emails") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AddSecondaryEmailsArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AddSecondaryEmailsArg, self)._process_custom_annotations(annotation_type, field_path, processor) AddSecondaryEmailsArg_validator = bv.Struct(AddSecondaryEmailsArg) - class AddSecondaryEmailsError(bb.Union): """ Error returned when adding secondary emails fails. @@ -539,7 +530,7 @@ class AddSecondaryEmailsError(bb.Union): A maximum of 20 secondary emails can be added in a single call. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition secondary_emails_disabled = None # Attribute is overwritten below the class definition @@ -553,7 +544,7 @@ def is_secondary_emails_disabled(self): :rtype: bool """ - return self._tag == "secondary_emails_disabled" + return self._tag == 'secondary_emails_disabled' def is_too_many_emails(self): """ @@ -561,7 +552,7 @@ def is_too_many_emails(self): :rtype: bool """ - return self._tag == "too_many_emails" + return self._tag == 'too_many_emails' def is_other(self): """ @@ -569,17 +560,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AddSecondaryEmailsError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AddSecondaryEmailsError, self)._process_custom_annotations(annotation_type, field_path, processor) AddSecondaryEmailsError_validator = bv.Union(AddSecondaryEmailsError) - class AddSecondaryEmailsResult(bb.Struct): """ :ivar AddSecondaryEmailsResult.results: @@ -587,12 +574,13 @@ class AddSecondaryEmailsResult(bb.Struct): """ __slots__ = [ - "_results_value", + '_results_value', ] _has_required_fields = True - def __init__(self, results=None): + def __init__(self, + results=None): self._results_value = bb.NOT_SET if results is not None: self.results = results @@ -601,14 +589,10 @@ def __init__(self, results=None): results = bb.Attribute("results") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AddSecondaryEmailsResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AddSecondaryEmailsResult, self)._process_custom_annotations(annotation_type, field_path, processor) AddSecondaryEmailsResult_validator = bv.Struct(AddSecondaryEmailsResult) - class AdminTier(bb.Union): """ Describes which team-related admin permissions a user has. @@ -645,7 +629,7 @@ def is_team_admin(self): :rtype: bool """ - return self._tag == "team_admin" + return self._tag == 'team_admin' def is_user_management_admin(self): """ @@ -653,7 +637,7 @@ def is_user_management_admin(self): :rtype: bool """ - return self._tag == "user_management_admin" + return self._tag == 'user_management_admin' def is_support_admin(self): """ @@ -661,7 +645,7 @@ def is_support_admin(self): :rtype: bool """ - return self._tag == "support_admin" + return self._tag == 'support_admin' def is_member_only(self): """ @@ -669,15 +653,13 @@ def is_member_only(self): :rtype: bool """ - return self._tag == "member_only" + return self._tag == 'member_only' def _process_custom_annotations(self, annotation_type, field_path, processor): super(AdminTier, self)._process_custom_annotations(annotation_type, field_path, processor) - AdminTier_validator = bv.Union(AdminTier) - class ApiApp(bb.Struct): """ Information on linked third party applications. @@ -697,25 +679,23 @@ class ApiApp(bb.Struct): """ __slots__ = [ - "_app_id_value", - "_app_name_value", - "_publisher_value", - "_publisher_url_value", - "_linked_value", - "_is_app_folder_value", + '_app_id_value', + '_app_name_value', + '_publisher_value', + '_publisher_url_value', + '_linked_value', + '_is_app_folder_value', ] _has_required_fields = True - def __init__( - self, - app_id=None, - app_name=None, - is_app_folder=None, - publisher=None, - publisher_url=None, - linked=None, - ): + def __init__(self, + app_id=None, + app_name=None, + is_app_folder=None, + publisher=None, + publisher_url=None, + linked=None): self._app_id_value = bb.NOT_SET self._app_name_value = bb.NOT_SET self._publisher_value = bb.NOT_SET @@ -756,10 +736,8 @@ def __init__( def _process_custom_annotations(self, annotation_type, field_path, processor): super(ApiApp, self)._process_custom_annotations(annotation_type, field_path, processor) - ApiApp_validator = bv.Struct(ApiApp) - class BaseDfbReport(bb.Struct): """ Base report structure. @@ -769,12 +747,13 @@ class BaseDfbReport(bb.Struct): """ __slots__ = [ - "_start_date_value", + '_start_date_value', ] _has_required_fields = True - def __init__(self, start_date=None): + def __init__(self, + start_date=None): self._start_date_value = bb.NOT_SET if start_date is not None: self.start_date = start_date @@ -783,14 +762,10 @@ def __init__(self, start_date=None): start_date = bb.Attribute("start_date") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(BaseDfbReport, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(BaseDfbReport, self)._process_custom_annotations(annotation_type, field_path, processor) BaseDfbReport_validator = bv.Struct(BaseDfbReport) - class BaseTeamFolderError(bb.Union): """ Base error that all errors for existing team folders should extend. @@ -800,7 +775,7 @@ class BaseTeamFolderError(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -813,7 +788,7 @@ def access_error(cls, val): :param TeamFolderAccessError val: :rtype: BaseTeamFolderError """ - return cls("access_error", val) + return cls('access_error', val) @classmethod def status_error(cls, val): @@ -824,7 +799,7 @@ def status_error(cls, val): :param TeamFolderInvalidStatusError val: :rtype: BaseTeamFolderError """ - return cls("status_error", val) + return cls('status_error', val) @classmethod def team_shared_dropbox_error(cls, val): @@ -835,7 +810,7 @@ def team_shared_dropbox_error(cls, val): :param TeamFolderTeamSharedDropboxError val: :rtype: BaseTeamFolderError """ - return cls("team_shared_dropbox_error", val) + return cls('team_shared_dropbox_error', val) def is_access_error(self): """ @@ -843,7 +818,7 @@ def is_access_error(self): :rtype: bool """ - return self._tag == "access_error" + return self._tag == 'access_error' def is_status_error(self): """ @@ -851,7 +826,7 @@ def is_status_error(self): :rtype: bool """ - return self._tag == "status_error" + return self._tag == 'status_error' def is_team_shared_dropbox_error(self): """ @@ -859,7 +834,7 @@ def is_team_shared_dropbox_error(self): :rtype: bool """ - return self._tag == "team_shared_dropbox_error" + return self._tag == 'team_shared_dropbox_error' def is_other(self): """ @@ -867,7 +842,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_access_error(self): """ @@ -900,14 +875,10 @@ def get_team_shared_dropbox_error(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(BaseTeamFolderError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(BaseTeamFolderError, self)._process_custom_annotations(annotation_type, field_path, processor) BaseTeamFolderError_validator = bv.Union(BaseTeamFolderError) - class CustomQuotaError(bb.Union): """ Error returned when getting member custom quota. @@ -920,7 +891,7 @@ class CustomQuotaError(bb.Union): A maximum of 1000 users can be set for a single call. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition too_many_users = None # Attribute is overwritten below the class definition @@ -932,7 +903,7 @@ def is_too_many_users(self): :rtype: bool """ - return self._tag == "too_many_users" + return self._tag == 'too_many_users' def is_other(self): """ @@ -940,17 +911,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(CustomQuotaError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(CustomQuotaError, self)._process_custom_annotations(annotation_type, field_path, processor) CustomQuotaError_validator = bv.Union(CustomQuotaError) - class CustomQuotaResult(bb.Union): """ User custom quota. @@ -967,7 +934,7 @@ class CustomQuotaResult(bb.Union): :vartype CustomQuotaResult.invalid_user: UserSelectorArg """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -980,7 +947,7 @@ def success(cls, val): :param UserCustomQuotaResult val: :rtype: CustomQuotaResult """ - return cls("success", val) + return cls('success', val) @classmethod def invalid_user(cls, val): @@ -991,7 +958,7 @@ def invalid_user(cls, val): :param UserSelectorArg val: :rtype: CustomQuotaResult """ - return cls("invalid_user", val) + return cls('invalid_user', val) def is_success(self): """ @@ -999,7 +966,7 @@ def is_success(self): :rtype: bool """ - return self._tag == "success" + return self._tag == 'success' def is_invalid_user(self): """ @@ -1007,7 +974,7 @@ def is_invalid_user(self): :rtype: bool """ - return self._tag == "invalid_user" + return self._tag == 'invalid_user' def is_other(self): """ @@ -1015,7 +982,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_success(self): """ @@ -1042,14 +1009,10 @@ def get_invalid_user(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(CustomQuotaResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(CustomQuotaResult, self)._process_custom_annotations(annotation_type, field_path, processor) CustomQuotaResult_validator = bv.Union(CustomQuotaResult) - class CustomQuotaUsersArg(bb.Struct): """ :ivar CustomQuotaUsersArg.users: @@ -1057,12 +1020,13 @@ class CustomQuotaUsersArg(bb.Struct): """ __slots__ = [ - "_users_value", + '_users_value', ] _has_required_fields = True - def __init__(self, users=None): + def __init__(self, + users=None): self._users_value = bb.NOT_SET if users is not None: self.users = users @@ -1071,14 +1035,10 @@ def __init__(self, users=None): users = bb.Attribute("users") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(CustomQuotaUsersArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(CustomQuotaUsersArg, self)._process_custom_annotations(annotation_type, field_path, processor) CustomQuotaUsersArg_validator = bv.Struct(CustomQuotaUsersArg) - class DateRange(bb.Struct): """ Input arguments that can be provided for most reports. @@ -1091,13 +1051,15 @@ class DateRange(bb.Struct): """ __slots__ = [ - "_start_date_value", - "_end_date_value", + '_start_date_value', + '_end_date_value', ] _has_required_fields = False - def __init__(self, start_date=None, end_date=None): + def __init__(self, + start_date=None, + end_date=None): self._start_date_value = bb.NOT_SET self._end_date_value = bb.NOT_SET if start_date is not None: @@ -1114,10 +1076,8 @@ def __init__(self, start_date=None, end_date=None): def _process_custom_annotations(self, annotation_type, field_path, processor): super(DateRange, self)._process_custom_annotations(annotation_type, field_path, processor) - DateRange_validator = bv.Struct(DateRange) - class DateRangeError(bb.Union): """ Errors that can originate from problems in input arguments to reports. @@ -1127,7 +1087,7 @@ class DateRangeError(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -1137,17 +1097,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DateRangeError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DateRangeError, self)._process_custom_annotations(annotation_type, field_path, processor) DateRangeError_validator = bv.Union(DateRangeError) - class DeleteSecondaryEmailResult(bb.Union): """ Result of trying to delete a secondary email address. 'success' is the only @@ -1171,7 +1127,7 @@ class DeleteSecondaryEmailResult(bb.Union): :vartype DeleteSecondaryEmailResult.cannot_remove_primary: str """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -1184,7 +1140,7 @@ def success(cls, val): :param str val: :rtype: DeleteSecondaryEmailResult """ - return cls("success", val) + return cls('success', val) @classmethod def not_found(cls, val): @@ -1195,7 +1151,7 @@ def not_found(cls, val): :param str val: :rtype: DeleteSecondaryEmailResult """ - return cls("not_found", val) + return cls('not_found', val) @classmethod def cannot_remove_primary(cls, val): @@ -1206,7 +1162,7 @@ def cannot_remove_primary(cls, val): :param str val: :rtype: DeleteSecondaryEmailResult """ - return cls("cannot_remove_primary", val) + return cls('cannot_remove_primary', val) def is_success(self): """ @@ -1214,7 +1170,7 @@ def is_success(self): :rtype: bool """ - return self._tag == "success" + return self._tag == 'success' def is_not_found(self): """ @@ -1222,7 +1178,7 @@ def is_not_found(self): :rtype: bool """ - return self._tag == "not_found" + return self._tag == 'not_found' def is_cannot_remove_primary(self): """ @@ -1230,7 +1186,7 @@ def is_cannot_remove_primary(self): :rtype: bool """ - return self._tag == "cannot_remove_primary" + return self._tag == 'cannot_remove_primary' def is_other(self): """ @@ -1238,7 +1194,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_success(self): """ @@ -1278,14 +1234,10 @@ def get_cannot_remove_primary(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeleteSecondaryEmailResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DeleteSecondaryEmailResult, self)._process_custom_annotations(annotation_type, field_path, processor) DeleteSecondaryEmailResult_validator = bv.Union(DeleteSecondaryEmailResult) - class DeleteSecondaryEmailsArg(bb.Struct): """ :ivar DeleteSecondaryEmailsArg.emails_to_delete: @@ -1293,12 +1245,13 @@ class DeleteSecondaryEmailsArg(bb.Struct): """ __slots__ = [ - "_emails_to_delete_value", + '_emails_to_delete_value', ] _has_required_fields = True - def __init__(self, emails_to_delete=None): + def __init__(self, + emails_to_delete=None): self._emails_to_delete_value = bb.NOT_SET if emails_to_delete is not None: self.emails_to_delete = emails_to_delete @@ -1307,22 +1260,20 @@ def __init__(self, emails_to_delete=None): emails_to_delete = bb.Attribute("emails_to_delete") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeleteSecondaryEmailsArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DeleteSecondaryEmailsArg, self)._process_custom_annotations(annotation_type, field_path, processor) DeleteSecondaryEmailsArg_validator = bv.Struct(DeleteSecondaryEmailsArg) - class DeleteSecondaryEmailsResult(bb.Struct): + __slots__ = [ - "_results_value", + '_results_value', ] _has_required_fields = True - def __init__(self, results=None): + def __init__(self, + results=None): self._results_value = bb.NOT_SET if results is not None: self.results = results @@ -1331,14 +1282,10 @@ def __init__(self, results=None): results = bb.Attribute("results") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeleteSecondaryEmailsResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DeleteSecondaryEmailsResult, self)._process_custom_annotations(annotation_type, field_path, processor) DeleteSecondaryEmailsResult_validator = bv.Struct(DeleteSecondaryEmailsResult) - class DesktopClientSession(DeviceSession): """ Information about linked Dropbox desktop client sessions. @@ -1356,31 +1303,31 @@ class DesktopClientSession(DeviceSession): """ __slots__ = [ - "_host_name_value", - "_client_type_value", - "_client_version_value", - "_platform_value", - "_is_delete_on_unlink_supported_value", + '_host_name_value', + '_client_type_value', + '_client_version_value', + '_platform_value', + '_is_delete_on_unlink_supported_value', ] _has_required_fields = True - def __init__( - self, - session_id=None, - host_name=None, - client_type=None, - client_version=None, - platform=None, - is_delete_on_unlink_supported=None, - ip_address=None, - country=None, - created=None, - updated=None, - ): - super(DesktopClientSession, self).__init__( - session_id, ip_address, country, created, updated - ) + def __init__(self, + session_id=None, + host_name=None, + client_type=None, + client_version=None, + platform=None, + is_delete_on_unlink_supported=None, + ip_address=None, + country=None, + created=None, + updated=None): + super(DesktopClientSession, self).__init__(session_id, + ip_address, + country, + created, + updated) self._host_name_value = bb.NOT_SET self._client_type_value = bb.NOT_SET self._client_version_value = bb.NOT_SET @@ -1413,14 +1360,10 @@ def __init__( is_delete_on_unlink_supported = bb.Attribute("is_delete_on_unlink_supported") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DesktopClientSession, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DesktopClientSession, self)._process_custom_annotations(annotation_type, field_path, processor) DesktopClientSession_validator = bv.Struct(DesktopClientSession) - class DesktopPlatform(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -1435,7 +1378,7 @@ class DesktopPlatform(bb.Union): Official Linux Dropbox desktop client. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition windows = None # Attribute is overwritten below the class definition @@ -1451,7 +1394,7 @@ def is_windows(self): :rtype: bool """ - return self._tag == "windows" + return self._tag == 'windows' def is_mac(self): """ @@ -1459,7 +1402,7 @@ def is_mac(self): :rtype: bool """ - return self._tag == "mac" + return self._tag == 'mac' def is_linux(self): """ @@ -1467,7 +1410,7 @@ def is_linux(self): :rtype: bool """ - return self._tag == "linux" + return self._tag == 'linux' def is_other(self): """ @@ -1475,17 +1418,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DesktopPlatform, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DesktopPlatform, self)._process_custom_annotations(annotation_type, field_path, processor) DesktopPlatform_validator = bv.Union(DesktopPlatform) - class DeviceSessionArg(bb.Struct): """ :ivar DeviceSessionArg.session_id: @@ -1495,13 +1434,15 @@ class DeviceSessionArg(bb.Struct): """ __slots__ = [ - "_session_id_value", - "_team_member_id_value", + '_session_id_value', + '_team_member_id_value', ] _has_required_fields = True - def __init__(self, session_id=None, team_member_id=None): + def __init__(self, + session_id=None, + team_member_id=None): self._session_id_value = bb.NOT_SET self._team_member_id_value = bb.NOT_SET if session_id is not None: @@ -1516,14 +1457,10 @@ def __init__(self, session_id=None, team_member_id=None): team_member_id = bb.Attribute("team_member_id") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeviceSessionArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DeviceSessionArg, self)._process_custom_annotations(annotation_type, field_path, processor) DeviceSessionArg_validator = bv.Struct(DeviceSessionArg) - class DevicesActive(bb.Struct): """ Each of the items is an array of values, one value per day. The value is the @@ -1548,27 +1485,25 @@ class DevicesActive(bb.Struct): """ __slots__ = [ - "_windows_value", - "_macos_value", - "_linux_value", - "_ios_value", - "_android_value", - "_other_value", - "_total_value", + '_windows_value', + '_macos_value', + '_linux_value', + '_ios_value', + '_android_value', + '_other_value', + '_total_value', ] _has_required_fields = True - def __init__( - self, - windows=None, - macos=None, - linux=None, - ios=None, - android=None, - other=None, - total=None, - ): + def __init__(self, + windows=None, + macos=None, + linux=None, + ios=None, + android=None, + other=None, + total=None): self._windows_value = bb.NOT_SET self._macos_value = bb.NOT_SET self._linux_value = bb.NOT_SET @@ -1613,14 +1548,10 @@ def __init__( total = bb.Attribute("total") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DevicesActive, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DevicesActive, self)._process_custom_annotations(annotation_type, field_path, processor) DevicesActive_validator = bv.Struct(DevicesActive) - class ExcludedUsersListArg(bb.Struct): """ Excluded users list argument. @@ -1630,12 +1561,13 @@ class ExcludedUsersListArg(bb.Struct): """ __slots__ = [ - "_limit_value", + '_limit_value', ] _has_required_fields = False - def __init__(self, limit=None): + def __init__(self, + limit=None): self._limit_value = bb.NOT_SET if limit is not None: self.limit = limit @@ -1644,14 +1576,10 @@ def __init__(self, limit=None): limit = bb.Attribute("limit") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ExcludedUsersListArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ExcludedUsersListArg, self)._process_custom_annotations(annotation_type, field_path, processor) ExcludedUsersListArg_validator = bv.Struct(ExcludedUsersListArg) - class ExcludedUsersListContinueArg(bb.Struct): """ Excluded users list continue argument. @@ -1661,12 +1589,13 @@ class ExcludedUsersListContinueArg(bb.Struct): """ __slots__ = [ - "_cursor_value", + '_cursor_value', ] _has_required_fields = True - def __init__(self, cursor=None): + def __init__(self, + cursor=None): self._cursor_value = bb.NOT_SET if cursor is not None: self.cursor = cursor @@ -1675,14 +1604,10 @@ def __init__(self, cursor=None): cursor = bb.Attribute("cursor") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ExcludedUsersListContinueArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ExcludedUsersListContinueArg, self)._process_custom_annotations(annotation_type, field_path, processor) ExcludedUsersListContinueArg_validator = bv.Struct(ExcludedUsersListContinueArg) - class ExcludedUsersListContinueError(bb.Union): """ Excluded users list continue error. @@ -1695,7 +1620,7 @@ class ExcludedUsersListContinueError(bb.Union): The cursor is invalid. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition invalid_cursor = None # Attribute is overwritten below the class definition @@ -1707,7 +1632,7 @@ def is_invalid_cursor(self): :rtype: bool """ - return self._tag == "invalid_cursor" + return self._tag == 'invalid_cursor' def is_other(self): """ @@ -1715,17 +1640,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ExcludedUsersListContinueError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ExcludedUsersListContinueError, self)._process_custom_annotations(annotation_type, field_path, processor) ExcludedUsersListContinueError_validator = bv.Union(ExcludedUsersListContinueError) - class ExcludedUsersListError(bb.Union): """ Excluded users list error. @@ -1738,7 +1659,7 @@ class ExcludedUsersListError(bb.Union): An error occurred. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition list_error = None # Attribute is overwritten below the class definition @@ -1750,7 +1671,7 @@ def is_list_error(self): :rtype: bool """ - return self._tag == "list_error" + return self._tag == 'list_error' def is_other(self): """ @@ -1758,17 +1679,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ExcludedUsersListError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ExcludedUsersListError, self)._process_custom_annotations(annotation_type, field_path, processor) ExcludedUsersListError_validator = bv.Union(ExcludedUsersListError) - class ExcludedUsersListResult(bb.Struct): """ Excluded users list result. @@ -1785,14 +1702,17 @@ class ExcludedUsersListResult(bb.Struct): """ __slots__ = [ - "_users_value", - "_cursor_value", - "_has_more_value", + '_users_value', + '_cursor_value', + '_has_more_value', ] _has_required_fields = True - def __init__(self, users=None, has_more=None, cursor=None): + def __init__(self, + users=None, + has_more=None, + cursor=None): self._users_value = bb.NOT_SET self._cursor_value = bb.NOT_SET self._has_more_value = bb.NOT_SET @@ -1813,14 +1733,10 @@ def __init__(self, users=None, has_more=None, cursor=None): has_more = bb.Attribute("has_more") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ExcludedUsersListResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ExcludedUsersListResult, self)._process_custom_annotations(annotation_type, field_path, processor) ExcludedUsersListResult_validator = bv.Struct(ExcludedUsersListResult) - class ExcludedUsersUpdateArg(bb.Struct): """ Argument of excluded users update operation. Should include a list of users @@ -1832,12 +1748,13 @@ class ExcludedUsersUpdateArg(bb.Struct): """ __slots__ = [ - "_users_value", + '_users_value', ] _has_required_fields = False - def __init__(self, users=None): + def __init__(self, + users=None): self._users_value = bb.NOT_SET if users is not None: self.users = users @@ -1846,14 +1763,10 @@ def __init__(self, users=None): users = bb.Attribute("users", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ExcludedUsersUpdateArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ExcludedUsersUpdateArg, self)._process_custom_annotations(annotation_type, field_path, processor) ExcludedUsersUpdateArg_validator = bv.Struct(ExcludedUsersUpdateArg) - class ExcludedUsersUpdateError(bb.Union): """ Excluded users update error. @@ -1868,7 +1781,7 @@ class ExcludedUsersUpdateError(bb.Union): A maximum of 1000 users for each of addition/removal can be supplied. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition users_not_in_team = None # Attribute is overwritten below the class definition @@ -1882,7 +1795,7 @@ def is_users_not_in_team(self): :rtype: bool """ - return self._tag == "users_not_in_team" + return self._tag == 'users_not_in_team' def is_too_many_users(self): """ @@ -1890,7 +1803,7 @@ def is_too_many_users(self): :rtype: bool """ - return self._tag == "too_many_users" + return self._tag == 'too_many_users' def is_other(self): """ @@ -1898,17 +1811,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ExcludedUsersUpdateError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ExcludedUsersUpdateError, self)._process_custom_annotations(annotation_type, field_path, processor) ExcludedUsersUpdateError_validator = bv.Union(ExcludedUsersUpdateError) - class ExcludedUsersUpdateResult(bb.Struct): """ Excluded users update result. @@ -1918,12 +1827,13 @@ class ExcludedUsersUpdateResult(bb.Struct): """ __slots__ = [ - "_status_value", + '_status_value', ] _has_required_fields = True - def __init__(self, status=None): + def __init__(self, + status=None): self._status_value = bb.NOT_SET if status is not None: self.status = status @@ -1932,14 +1842,10 @@ def __init__(self, status=None): status = bb.Attribute("status", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ExcludedUsersUpdateResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ExcludedUsersUpdateResult, self)._process_custom_annotations(annotation_type, field_path, processor) ExcludedUsersUpdateResult_validator = bv.Struct(ExcludedUsersUpdateResult) - class ExcludedUsersUpdateStatus(bb.Union): """ Excluded users update operation status. @@ -1952,7 +1858,7 @@ class ExcludedUsersUpdateStatus(bb.Union): Update successful. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition success = None # Attribute is overwritten below the class definition @@ -1964,7 +1870,7 @@ def is_success(self): :rtype: bool """ - return self._tag == "success" + return self._tag == 'success' def is_other(self): """ @@ -1972,17 +1878,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ExcludedUsersUpdateStatus, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ExcludedUsersUpdateStatus, self)._process_custom_annotations(annotation_type, field_path, processor) ExcludedUsersUpdateStatus_validator = bv.Union(ExcludedUsersUpdateStatus) - class Feature(bb.Union): """ A set of features that a Dropbox Business account may support. @@ -2003,7 +1905,7 @@ class Feature(bb.Union): Does this team have team member folder. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition upload_api_rate_limit = None # Attribute is overwritten below the class definition @@ -2023,7 +1925,7 @@ def is_upload_api_rate_limit(self): :rtype: bool """ - return self._tag == "upload_api_rate_limit" + return self._tag == 'upload_api_rate_limit' def is_has_team_shared_dropbox(self): """ @@ -2031,7 +1933,7 @@ def is_has_team_shared_dropbox(self): :rtype: bool """ - return self._tag == "has_team_shared_dropbox" + return self._tag == 'has_team_shared_dropbox' def is_has_team_file_events(self): """ @@ -2039,7 +1941,7 @@ def is_has_team_file_events(self): :rtype: bool """ - return self._tag == "has_team_file_events" + return self._tag == 'has_team_file_events' def is_has_team_selective_sync(self): """ @@ -2047,7 +1949,7 @@ def is_has_team_selective_sync(self): :rtype: bool """ - return self._tag == "has_team_selective_sync" + return self._tag == 'has_team_selective_sync' def is_has_distinct_member_homes(self): """ @@ -2055,7 +1957,7 @@ def is_has_distinct_member_homes(self): :rtype: bool """ - return self._tag == "has_distinct_member_homes" + return self._tag == 'has_distinct_member_homes' def is_other(self): """ @@ -2063,15 +1965,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): super(Feature, self)._process_custom_annotations(annotation_type, field_path, processor) - Feature_validator = bv.Union(Feature) - class FeatureValue(bb.Union): """ The values correspond to entries in :class:`Feature`. You may get different @@ -2082,7 +1982,7 @@ class FeatureValue(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -2095,7 +1995,7 @@ def upload_api_rate_limit(cls, val): :param UploadApiRateLimitValue val: :rtype: FeatureValue """ - return cls("upload_api_rate_limit", val) + return cls('upload_api_rate_limit', val) @classmethod def has_team_shared_dropbox(cls, val): @@ -2106,7 +2006,7 @@ def has_team_shared_dropbox(cls, val): :param HasTeamSharedDropboxValue val: :rtype: FeatureValue """ - return cls("has_team_shared_dropbox", val) + return cls('has_team_shared_dropbox', val) @classmethod def has_team_file_events(cls, val): @@ -2117,7 +2017,7 @@ def has_team_file_events(cls, val): :param HasTeamFileEventsValue val: :rtype: FeatureValue """ - return cls("has_team_file_events", val) + return cls('has_team_file_events', val) @classmethod def has_team_selective_sync(cls, val): @@ -2128,7 +2028,7 @@ def has_team_selective_sync(cls, val): :param HasTeamSelectiveSyncValue val: :rtype: FeatureValue """ - return cls("has_team_selective_sync", val) + return cls('has_team_selective_sync', val) @classmethod def has_distinct_member_homes(cls, val): @@ -2139,7 +2039,7 @@ def has_distinct_member_homes(cls, val): :param HasDistinctMemberHomesValue val: :rtype: FeatureValue """ - return cls("has_distinct_member_homes", val) + return cls('has_distinct_member_homes', val) def is_upload_api_rate_limit(self): """ @@ -2147,7 +2047,7 @@ def is_upload_api_rate_limit(self): :rtype: bool """ - return self._tag == "upload_api_rate_limit" + return self._tag == 'upload_api_rate_limit' def is_has_team_shared_dropbox(self): """ @@ -2155,7 +2055,7 @@ def is_has_team_shared_dropbox(self): :rtype: bool """ - return self._tag == "has_team_shared_dropbox" + return self._tag == 'has_team_shared_dropbox' def is_has_team_file_events(self): """ @@ -2163,7 +2063,7 @@ def is_has_team_file_events(self): :rtype: bool """ - return self._tag == "has_team_file_events" + return self._tag == 'has_team_file_events' def is_has_team_selective_sync(self): """ @@ -2171,7 +2071,7 @@ def is_has_team_selective_sync(self): :rtype: bool """ - return self._tag == "has_team_selective_sync" + return self._tag == 'has_team_selective_sync' def is_has_distinct_member_homes(self): """ @@ -2179,7 +2079,7 @@ def is_has_distinct_member_homes(self): :rtype: bool """ - return self._tag == "has_distinct_member_homes" + return self._tag == 'has_distinct_member_homes' def is_other(self): """ @@ -2187,7 +2087,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_upload_api_rate_limit(self): """ @@ -2240,14 +2140,10 @@ def get_has_distinct_member_homes(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FeatureValue, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FeatureValue, self)._process_custom_annotations(annotation_type, field_path, processor) FeatureValue_validator = bv.Union(FeatureValue) - class FeaturesGetValuesBatchArg(bb.Struct): """ :ivar FeaturesGetValuesBatchArg.features: @@ -2256,12 +2152,13 @@ class FeaturesGetValuesBatchArg(bb.Struct): """ __slots__ = [ - "_features_value", + '_features_value', ] _has_required_fields = True - def __init__(self, features=None): + def __init__(self, + features=None): self._features_value = bb.NOT_SET if features is not None: self.features = features @@ -2270,14 +2167,10 @@ def __init__(self, features=None): features = bb.Attribute("features") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FeaturesGetValuesBatchArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FeaturesGetValuesBatchArg, self)._process_custom_annotations(annotation_type, field_path, processor) FeaturesGetValuesBatchArg_validator = bv.Struct(FeaturesGetValuesBatchArg) - class FeaturesGetValuesBatchError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -2289,7 +2182,7 @@ class FeaturesGetValuesBatchError(bb.Union): :class:`FeaturesGetValuesBatchArg`.features list. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition empty_features_list = None # Attribute is overwritten below the class definition @@ -2301,7 +2194,7 @@ def is_empty_features_list(self): :rtype: bool """ - return self._tag == "empty_features_list" + return self._tag == 'empty_features_list' def is_other(self): """ @@ -2309,25 +2202,23 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FeaturesGetValuesBatchError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FeaturesGetValuesBatchError, self)._process_custom_annotations(annotation_type, field_path, processor) FeaturesGetValuesBatchError_validator = bv.Union(FeaturesGetValuesBatchError) - class FeaturesGetValuesBatchResult(bb.Struct): + __slots__ = [ - "_values_value", + '_values_value', ] _has_required_fields = True - def __init__(self, values=None): + def __init__(self, + values=None): self._values_value = bb.NOT_SET if values is not None: self.values = values @@ -2336,14 +2227,10 @@ def __init__(self, values=None): values = bb.Attribute("values") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FeaturesGetValuesBatchResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FeaturesGetValuesBatchResult, self)._process_custom_annotations(annotation_type, field_path, processor) FeaturesGetValuesBatchResult_validator = bv.Struct(FeaturesGetValuesBatchResult) - class GetActivityReport(BaseDfbReport): """ Activity Report Result. Each of the items in the storage report is an array @@ -2388,42 +2275,40 @@ class GetActivityReport(BaseDfbReport): """ __slots__ = [ - "_adds_value", - "_edits_value", - "_deletes_value", - "_active_users_28_day_value", - "_active_users_7_day_value", - "_active_users_1_day_value", - "_active_shared_folders_28_day_value", - "_active_shared_folders_7_day_value", - "_active_shared_folders_1_day_value", - "_shared_links_created_value", - "_shared_links_viewed_by_team_value", - "_shared_links_viewed_by_outside_user_value", - "_shared_links_viewed_by_not_logged_in_value", - "_shared_links_viewed_total_value", + '_adds_value', + '_edits_value', + '_deletes_value', + '_active_users_28_day_value', + '_active_users_7_day_value', + '_active_users_1_day_value', + '_active_shared_folders_28_day_value', + '_active_shared_folders_7_day_value', + '_active_shared_folders_1_day_value', + '_shared_links_created_value', + '_shared_links_viewed_by_team_value', + '_shared_links_viewed_by_outside_user_value', + '_shared_links_viewed_by_not_logged_in_value', + '_shared_links_viewed_total_value', ] _has_required_fields = True - def __init__( - self, - start_date=None, - adds=None, - edits=None, - deletes=None, - active_users_28_day=None, - active_users_7_day=None, - active_users_1_day=None, - active_shared_folders_28_day=None, - active_shared_folders_7_day=None, - active_shared_folders_1_day=None, - shared_links_created=None, - shared_links_viewed_by_team=None, - shared_links_viewed_by_outside_user=None, - shared_links_viewed_by_not_logged_in=None, - shared_links_viewed_total=None, - ): + def __init__(self, + start_date=None, + adds=None, + edits=None, + deletes=None, + active_users_28_day=None, + active_users_7_day=None, + active_users_1_day=None, + active_shared_folders_28_day=None, + active_shared_folders_7_day=None, + active_shared_folders_1_day=None, + shared_links_created=None, + shared_links_viewed_by_team=None, + shared_links_viewed_by_outside_user=None, + shared_links_viewed_by_not_logged_in=None, + shared_links_viewed_total=None): super(GetActivityReport, self).__init__(start_date) self._adds_value = bb.NOT_SET self._edits_value = bb.NOT_SET @@ -2511,14 +2396,10 @@ def __init__( shared_links_viewed_total = bb.Attribute("shared_links_viewed_total") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetActivityReport, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GetActivityReport, self)._process_custom_annotations(annotation_type, field_path, processor) GetActivityReport_validator = bv.Struct(GetActivityReport) - class GetDevicesReport(BaseDfbReport): """ Devices Report Result. Contains subsections for different time ranges of @@ -2535,14 +2416,18 @@ class GetDevicesReport(BaseDfbReport): """ __slots__ = [ - "_active_1_day_value", - "_active_7_day_value", - "_active_28_day_value", + '_active_1_day_value', + '_active_7_day_value', + '_active_28_day_value', ] _has_required_fields = True - def __init__(self, start_date=None, active_1_day=None, active_7_day=None, active_28_day=None): + def __init__(self, + start_date=None, + active_1_day=None, + active_7_day=None, + active_28_day=None): super(GetDevicesReport, self).__init__(start_date) self._active_1_day_value = bb.NOT_SET self._active_7_day_value = bb.NOT_SET @@ -2564,14 +2449,10 @@ def __init__(self, start_date=None, active_1_day=None, active_7_day=None, active active_28_day = bb.Attribute("active_28_day", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetDevicesReport, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GetDevicesReport, self)._process_custom_annotations(annotation_type, field_path, processor) GetDevicesReport_validator = bv.Struct(GetDevicesReport) - class GetMembershipReport(BaseDfbReport): """ Membership Report Result. Each of the items in the storage report is an @@ -2591,24 +2472,22 @@ class GetMembershipReport(BaseDfbReport): """ __slots__ = [ - "_team_size_value", - "_pending_invites_value", - "_members_joined_value", - "_suspended_members_value", - "_licenses_value", + '_team_size_value', + '_pending_invites_value', + '_members_joined_value', + '_suspended_members_value', + '_licenses_value', ] _has_required_fields = True - def __init__( - self, - start_date=None, - team_size=None, - pending_invites=None, - members_joined=None, - suspended_members=None, - licenses=None, - ): + def __init__(self, + start_date=None, + team_size=None, + pending_invites=None, + members_joined=None, + suspended_members=None, + licenses=None): super(GetMembershipReport, self).__init__(start_date) self._team_size_value = bb.NOT_SET self._pending_invites_value = bb.NOT_SET @@ -2642,14 +2521,10 @@ def __init__( licenses = bb.Attribute("licenses") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetMembershipReport, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GetMembershipReport, self)._process_custom_annotations(annotation_type, field_path, processor) GetMembershipReport_validator = bv.Struct(GetMembershipReport) - class GetStorageReport(BaseDfbReport): """ Storage Report Result. Each of the items in the storage report is an array @@ -2677,24 +2552,22 @@ class GetStorageReport(BaseDfbReport): """ __slots__ = [ - "_total_usage_value", - "_shared_usage_value", - "_unshared_usage_value", - "_shared_folders_value", - "_member_storage_map_value", + '_total_usage_value', + '_shared_usage_value', + '_unshared_usage_value', + '_shared_folders_value', + '_member_storage_map_value', ] _has_required_fields = True - def __init__( - self, - start_date=None, - total_usage=None, - shared_usage=None, - unshared_usage=None, - shared_folders=None, - member_storage_map=None, - ): + def __init__(self, + start_date=None, + total_usage=None, + shared_usage=None, + unshared_usage=None, + shared_folders=None, + member_storage_map=None): super(GetStorageReport, self).__init__(start_date) self._total_usage_value = bb.NOT_SET self._shared_usage_value = bb.NOT_SET @@ -2728,14 +2601,10 @@ def __init__( member_storage_map = bb.Attribute("member_storage_map") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetStorageReport, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GetStorageReport, self)._process_custom_annotations(annotation_type, field_path, processor) GetStorageReport_validator = bv.Struct(GetStorageReport) - class GroupAccessType(bb.Union): """ Role of a user in group. @@ -2762,7 +2631,7 @@ def is_member(self): :rtype: bool """ - return self._tag == "member" + return self._tag == 'member' def is_owner(self): """ @@ -2770,17 +2639,13 @@ def is_owner(self): :rtype: bool """ - return self._tag == "owner" + return self._tag == 'owner' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupAccessType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GroupAccessType, self)._process_custom_annotations(annotation_type, field_path, processor) GroupAccessType_validator = bv.Union(GroupAccessType) - class GroupCreateArg(bb.Struct): """ :ivar GroupCreateArg.group_name: @@ -2796,21 +2661,19 @@ class GroupCreateArg(bb.Struct): """ __slots__ = [ - "_group_name_value", - "_add_creator_as_owner_value", - "_group_external_id_value", - "_group_management_type_value", + '_group_name_value', + '_add_creator_as_owner_value', + '_group_external_id_value', + '_group_management_type_value', ] _has_required_fields = True - def __init__( - self, - group_name=None, - add_creator_as_owner=None, - group_external_id=None, - group_management_type=None, - ): + def __init__(self, + group_name=None, + add_creator_as_owner=None, + group_external_id=None, + group_management_type=None): self._group_name_value = bb.NOT_SET self._add_creator_as_owner_value = bb.NOT_SET self._group_external_id_value = bb.NOT_SET @@ -2837,14 +2700,10 @@ def __init__( group_management_type = bb.Attribute("group_management_type", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupCreateArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GroupCreateArg, self)._process_custom_annotations(annotation_type, field_path, processor) GroupCreateArg_validator = bv.Struct(GroupCreateArg) - class GroupCreateError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -2861,7 +2720,7 @@ class GroupCreateError(bb.Union): System-managed group cannot be manually created. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition group_name_already_used = None # Attribute is overwritten below the class definition @@ -2879,7 +2738,7 @@ def is_group_name_already_used(self): :rtype: bool """ - return self._tag == "group_name_already_used" + return self._tag == 'group_name_already_used' def is_group_name_invalid(self): """ @@ -2887,7 +2746,7 @@ def is_group_name_invalid(self): :rtype: bool """ - return self._tag == "group_name_invalid" + return self._tag == 'group_name_invalid' def is_external_id_already_in_use(self): """ @@ -2895,7 +2754,7 @@ def is_external_id_already_in_use(self): :rtype: bool """ - return self._tag == "external_id_already_in_use" + return self._tag == 'external_id_already_in_use' def is_system_managed_group_disallowed(self): """ @@ -2903,7 +2762,7 @@ def is_system_managed_group_disallowed(self): :rtype: bool """ - return self._tag == "system_managed_group_disallowed" + return self._tag == 'system_managed_group_disallowed' def is_other(self): """ @@ -2911,17 +2770,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupCreateError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GroupCreateError, self)._process_custom_annotations(annotation_type, field_path, processor) GroupCreateError_validator = bv.Union(GroupCreateError) - class GroupSelectorError(bb.Union): """ Error that can be raised when :class:`GroupSelector` is used. @@ -2934,7 +2789,7 @@ class GroupSelectorError(bb.Union): No matching group found. No groups match the specified group ID. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition group_not_found = None # Attribute is overwritten below the class definition @@ -2946,7 +2801,7 @@ def is_group_not_found(self): :rtype: bool """ - return self._tag == "group_not_found" + return self._tag == 'group_not_found' def is_other(self): """ @@ -2954,17 +2809,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupSelectorError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GroupSelectorError, self)._process_custom_annotations(annotation_type, field_path, processor) GroupSelectorError_validator = bv.Union(GroupSelectorError) - class GroupSelectorWithTeamGroupError(GroupSelectorError): """ Error that can be raised when :class:`GroupSelector` is used and team groups @@ -2987,17 +2838,13 @@ def is_system_managed_group_disallowed(self): :rtype: bool """ - return self._tag == "system_managed_group_disallowed" + return self._tag == 'system_managed_group_disallowed' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupSelectorWithTeamGroupError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GroupSelectorWithTeamGroupError, self)._process_custom_annotations(annotation_type, field_path, processor) GroupSelectorWithTeamGroupError_validator = bv.Union(GroupSelectorWithTeamGroupError) - class GroupDeleteError(GroupSelectorWithTeamGroupError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -3017,17 +2864,13 @@ def is_group_already_deleted(self): :rtype: bool """ - return self._tag == "group_already_deleted" + return self._tag == 'group_already_deleted' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupDeleteError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GroupDeleteError, self)._process_custom_annotations(annotation_type, field_path, processor) GroupDeleteError_validator = bv.Union(GroupDeleteError) - class GroupFullInfo(team_common.GroupSummary): """ Full description of a group. @@ -3040,25 +2883,25 @@ class GroupFullInfo(team_common.GroupSummary): """ __slots__ = [ - "_members_value", - "_created_value", + '_members_value', + '_created_value', ] _has_required_fields = True - def __init__( - self, - group_name=None, - group_id=None, - group_management_type=None, - created=None, - group_external_id=None, - member_count=None, - members=None, - ): - super(GroupFullInfo, self).__init__( - group_name, group_id, group_management_type, group_external_id, member_count - ) + def __init__(self, + group_name=None, + group_id=None, + group_management_type=None, + created=None, + group_external_id=None, + member_count=None, + members=None): + super(GroupFullInfo, self).__init__(group_name, + group_id, + group_management_type, + group_external_id, + member_count) self._members_value = bb.NOT_SET self._created_value = bb.NOT_SET if members is not None: @@ -3073,14 +2916,10 @@ def __init__( created = bb.Attribute("created") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupFullInfo, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GroupFullInfo, self)._process_custom_annotations(annotation_type, field_path, processor) GroupFullInfo_validator = bv.Struct(GroupFullInfo) - class GroupMemberInfo(bb.Struct): """ Profile of group member, and role in group. @@ -3092,13 +2931,15 @@ class GroupMemberInfo(bb.Struct): """ __slots__ = [ - "_profile_value", - "_access_type_value", + '_profile_value', + '_access_type_value', ] _has_required_fields = True - def __init__(self, profile=None, access_type=None): + def __init__(self, + profile=None, + access_type=None): self._profile_value = bb.NOT_SET self._access_type_value = bb.NOT_SET if profile is not None: @@ -3113,14 +2954,10 @@ def __init__(self, profile=None, access_type=None): access_type = bb.Attribute("access_type", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupMemberInfo, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GroupMemberInfo, self)._process_custom_annotations(annotation_type, field_path, processor) GroupMemberInfo_validator = bv.Struct(GroupMemberInfo) - class GroupMemberSelector(bb.Struct): """ Argument for selecting a group and a single user. @@ -3132,13 +2969,15 @@ class GroupMemberSelector(bb.Struct): """ __slots__ = [ - "_group_value", - "_user_value", + '_group_value', + '_user_value', ] _has_required_fields = True - def __init__(self, group=None, user=None): + def __init__(self, + group=None, + user=None): self._group_value = bb.NOT_SET self._user_value = bb.NOT_SET if group is not None: @@ -3153,14 +2992,10 @@ def __init__(self, group=None, user=None): user = bb.Attribute("user", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupMemberSelector, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GroupMemberSelector, self)._process_custom_annotations(annotation_type, field_path, processor) GroupMemberSelector_validator = bv.Struct(GroupMemberSelector) - class GroupMemberSelectorError(GroupSelectorWithTeamGroupError): """ Error that can be raised when :class:`GroupMemberSelector` is used, and the @@ -3183,17 +3018,13 @@ def is_member_not_in_group(self): :rtype: bool """ - return self._tag == "member_not_in_group" + return self._tag == 'member_not_in_group' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupMemberSelectorError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GroupMemberSelectorError, self)._process_custom_annotations(annotation_type, field_path, processor) GroupMemberSelectorError_validator = bv.Union(GroupMemberSelectorError) - class GroupMemberSetAccessTypeError(GroupMemberSelectorError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -3213,17 +3044,13 @@ def is_user_cannot_be_manager_of_company_managed_group(self): :rtype: bool """ - return self._tag == "user_cannot_be_manager_of_company_managed_group" + return self._tag == 'user_cannot_be_manager_of_company_managed_group' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupMemberSetAccessTypeError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GroupMemberSetAccessTypeError, self)._process_custom_annotations(annotation_type, field_path, processor) GroupMemberSetAccessTypeError_validator = bv.Union(GroupMemberSetAccessTypeError) - class IncludeMembersArg(bb.Struct): """ :ivar IncludeMembersArg.return_members: @@ -3233,12 +3060,13 @@ class IncludeMembersArg(bb.Struct): """ __slots__ = [ - "_return_members_value", + '_return_members_value', ] _has_required_fields = False - def __init__(self, return_members=None): + def __init__(self, + return_members=None): self._return_members_value = bb.NOT_SET if return_members is not None: self.return_members = return_members @@ -3247,14 +3075,10 @@ def __init__(self, return_members=None): return_members = bb.Attribute("return_members") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(IncludeMembersArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(IncludeMembersArg, self)._process_custom_annotations(annotation_type, field_path, processor) IncludeMembersArg_validator = bv.Struct(IncludeMembersArg) - class GroupMembersAddArg(IncludeMembersArg): """ :ivar GroupMembersAddArg.group: @@ -3264,13 +3088,16 @@ class GroupMembersAddArg(IncludeMembersArg): """ __slots__ = [ - "_group_value", - "_members_value", + '_group_value', + '_members_value', ] _has_required_fields = True - def __init__(self, group=None, members=None, return_members=None): + def __init__(self, + group=None, + members=None, + return_members=None): super(GroupMembersAddArg, self).__init__(return_members) self._group_value = bb.NOT_SET self._members_value = bb.NOT_SET @@ -3286,14 +3113,10 @@ def __init__(self, group=None, members=None, return_members=None): members = bb.Attribute("members") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupMembersAddArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GroupMembersAddArg, self)._process_custom_annotations(annotation_type, field_path, processor) GroupMembersAddArg_validator = bv.Struct(GroupMembersAddArg) - class GroupMembersAddError(GroupSelectorWithTeamGroupError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -3340,7 +3163,7 @@ def members_not_in_team(cls, val): :param list of [str] val: :rtype: GroupMembersAddError """ - return cls("members_not_in_team", val) + return cls('members_not_in_team', val) @classmethod def users_not_found(cls, val): @@ -3351,7 +3174,7 @@ def users_not_found(cls, val): :param list of [str] val: :rtype: GroupMembersAddError """ - return cls("users_not_found", val) + return cls('users_not_found', val) @classmethod def user_cannot_be_manager_of_company_managed_group(cls, val): @@ -3363,7 +3186,7 @@ def user_cannot_be_manager_of_company_managed_group(cls, val): :param list of [str] val: :rtype: GroupMembersAddError """ - return cls("user_cannot_be_manager_of_company_managed_group", val) + return cls('user_cannot_be_manager_of_company_managed_group', val) def is_duplicate_user(self): """ @@ -3371,7 +3194,7 @@ def is_duplicate_user(self): :rtype: bool """ - return self._tag == "duplicate_user" + return self._tag == 'duplicate_user' def is_group_not_in_team(self): """ @@ -3379,7 +3202,7 @@ def is_group_not_in_team(self): :rtype: bool """ - return self._tag == "group_not_in_team" + return self._tag == 'group_not_in_team' def is_members_not_in_team(self): """ @@ -3387,7 +3210,7 @@ def is_members_not_in_team(self): :rtype: bool """ - return self._tag == "members_not_in_team" + return self._tag == 'members_not_in_team' def is_users_not_found(self): """ @@ -3395,7 +3218,7 @@ def is_users_not_found(self): :rtype: bool """ - return self._tag == "users_not_found" + return self._tag == 'users_not_found' def is_user_must_be_active_to_be_owner(self): """ @@ -3403,7 +3226,7 @@ def is_user_must_be_active_to_be_owner(self): :rtype: bool """ - return self._tag == "user_must_be_active_to_be_owner" + return self._tag == 'user_must_be_active_to_be_owner' def is_user_cannot_be_manager_of_company_managed_group(self): """ @@ -3411,7 +3234,7 @@ def is_user_cannot_be_manager_of_company_managed_group(self): :rtype: bool """ - return self._tag == "user_cannot_be_manager_of_company_managed_group" + return self._tag == 'user_cannot_be_manager_of_company_managed_group' def get_members_not_in_team(self): """ @@ -3454,14 +3277,10 @@ def get_user_cannot_be_manager_of_company_managed_group(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupMembersAddError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GroupMembersAddError, self)._process_custom_annotations(annotation_type, field_path, processor) GroupMembersAddError_validator = bv.Union(GroupMembersAddError) - class GroupMembersChangeResult(bb.Struct): """ Result returned by @@ -3478,13 +3297,15 @@ class GroupMembersChangeResult(bb.Struct): """ __slots__ = [ - "_group_info_value", - "_async_job_id_value", + '_group_info_value', + '_async_job_id_value', ] _has_required_fields = True - def __init__(self, group_info=None, async_job_id=None): + def __init__(self, + group_info=None, + async_job_id=None): self._group_info_value = bb.NOT_SET self._async_job_id_value = bb.NOT_SET if group_info is not None: @@ -3499,14 +3320,10 @@ def __init__(self, group_info=None, async_job_id=None): async_job_id = bb.Attribute("async_job_id") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupMembersChangeResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GroupMembersChangeResult, self)._process_custom_annotations(annotation_type, field_path, processor) GroupMembersChangeResult_validator = bv.Struct(GroupMembersChangeResult) - class GroupMembersRemoveArg(IncludeMembersArg): """ :ivar GroupMembersRemoveArg.group: @@ -3516,13 +3333,16 @@ class GroupMembersRemoveArg(IncludeMembersArg): """ __slots__ = [ - "_group_value", - "_users_value", + '_group_value', + '_users_value', ] _has_required_fields = True - def __init__(self, group=None, users=None, return_members=None): + def __init__(self, + group=None, + users=None, + return_members=None): super(GroupMembersRemoveArg, self).__init__(return_members) self._group_value = bb.NOT_SET self._users_value = bb.NOT_SET @@ -3538,14 +3358,10 @@ def __init__(self, group=None, users=None, return_members=None): users = bb.Attribute("users") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupMembersRemoveArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GroupMembersRemoveArg, self)._process_custom_annotations(annotation_type, field_path, processor) GroupMembersRemoveArg_validator = bv.Struct(GroupMembersRemoveArg) - class GroupMembersSelectorError(GroupSelectorWithTeamGroupError): """ Error that can be raised when :class:`GroupMembersSelector` is used, and the @@ -3568,17 +3384,13 @@ def is_member_not_in_group(self): :rtype: bool """ - return self._tag == "member_not_in_group" + return self._tag == 'member_not_in_group' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupMembersSelectorError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GroupMembersSelectorError, self)._process_custom_annotations(annotation_type, field_path, processor) GroupMembersSelectorError_validator = bv.Union(GroupMembersSelectorError) - class GroupMembersRemoveError(GroupMembersSelectorError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -3608,7 +3420,7 @@ def members_not_in_team(cls, val): :param list of [str] val: :rtype: GroupMembersRemoveError """ - return cls("members_not_in_team", val) + return cls('members_not_in_team', val) @classmethod def users_not_found(cls, val): @@ -3619,7 +3431,7 @@ def users_not_found(cls, val): :param list of [str] val: :rtype: GroupMembersRemoveError """ - return cls("users_not_found", val) + return cls('users_not_found', val) def is_group_not_in_team(self): """ @@ -3627,7 +3439,7 @@ def is_group_not_in_team(self): :rtype: bool """ - return self._tag == "group_not_in_team" + return self._tag == 'group_not_in_team' def is_members_not_in_team(self): """ @@ -3635,7 +3447,7 @@ def is_members_not_in_team(self): :rtype: bool """ - return self._tag == "members_not_in_team" + return self._tag == 'members_not_in_team' def is_users_not_found(self): """ @@ -3643,7 +3455,7 @@ def is_users_not_found(self): :rtype: bool """ - return self._tag == "users_not_found" + return self._tag == 'users_not_found' def get_members_not_in_team(self): """ @@ -3670,14 +3482,10 @@ def get_users_not_found(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupMembersRemoveError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GroupMembersRemoveError, self)._process_custom_annotations(annotation_type, field_path, processor) GroupMembersRemoveError_validator = bv.Union(GroupMembersRemoveError) - class GroupMembersSelector(bb.Struct): """ Argument for selecting a group and a list of users. @@ -3689,13 +3497,15 @@ class GroupMembersSelector(bb.Struct): """ __slots__ = [ - "_group_value", - "_users_value", + '_group_value', + '_users_value', ] _has_required_fields = True - def __init__(self, group=None, users=None): + def __init__(self, + group=None, + users=None): self._group_value = bb.NOT_SET self._users_value = bb.NOT_SET if group is not None: @@ -3710,14 +3520,10 @@ def __init__(self, group=None, users=None): users = bb.Attribute("users", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupMembersSelector, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GroupMembersSelector, self)._process_custom_annotations(annotation_type, field_path, processor) GroupMembersSelector_validator = bv.Struct(GroupMembersSelector) - class GroupMembersSetAccessTypeArg(GroupMemberSelector): """ :ivar GroupMembersSetAccessTypeArg.access_type: @@ -3729,14 +3535,19 @@ class GroupMembersSetAccessTypeArg(GroupMemberSelector): """ __slots__ = [ - "_access_type_value", - "_return_members_value", + '_access_type_value', + '_return_members_value', ] _has_required_fields = True - def __init__(self, group=None, user=None, access_type=None, return_members=None): - super(GroupMembersSetAccessTypeArg, self).__init__(group, user) + def __init__(self, + group=None, + user=None, + access_type=None, + return_members=None): + super(GroupMembersSetAccessTypeArg, self).__init__(group, + user) self._access_type_value = bb.NOT_SET self._return_members_value = bb.NOT_SET if access_type is not None: @@ -3751,14 +3562,10 @@ def __init__(self, group=None, user=None, access_type=None, return_members=None) return_members = bb.Attribute("return_members") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupMembersSetAccessTypeArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GroupMembersSetAccessTypeArg, self)._process_custom_annotations(annotation_type, field_path, processor) GroupMembersSetAccessTypeArg_validator = bv.Struct(GroupMembersSetAccessTypeArg) - class GroupSelector(bb.Union): """ Argument for selecting a single group, either by group_id or by external @@ -3787,7 +3594,7 @@ def group_id(cls, val): :param str val: :rtype: GroupSelector """ - return cls("group_id", val) + return cls('group_id', val) @classmethod def group_external_id(cls, val): @@ -3798,7 +3605,7 @@ def group_external_id(cls, val): :param str val: :rtype: GroupSelector """ - return cls("group_external_id", val) + return cls('group_external_id', val) def is_group_id(self): """ @@ -3806,7 +3613,7 @@ def is_group_id(self): :rtype: bool """ - return self._tag == "group_id" + return self._tag == 'group_id' def is_group_external_id(self): """ @@ -3814,7 +3621,7 @@ def is_group_external_id(self): :rtype: bool """ - return self._tag == "group_external_id" + return self._tag == 'group_external_id' def get_group_id(self): """ @@ -3841,14 +3648,10 @@ def get_group_external_id(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupSelector, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GroupSelector, self)._process_custom_annotations(annotation_type, field_path, processor) GroupSelector_validator = bv.Union(GroupSelector) - class GroupUpdateArgs(IncludeMembersArg): """ :ivar GroupUpdateArgs.group: @@ -3864,22 +3667,20 @@ class GroupUpdateArgs(IncludeMembersArg): """ __slots__ = [ - "_group_value", - "_new_group_name_value", - "_new_group_external_id_value", - "_new_group_management_type_value", + '_group_value', + '_new_group_name_value', + '_new_group_external_id_value', + '_new_group_management_type_value', ] _has_required_fields = True - def __init__( - self, - group=None, - return_members=None, - new_group_name=None, - new_group_external_id=None, - new_group_management_type=None, - ): + def __init__(self, + group=None, + return_members=None, + new_group_name=None, + new_group_external_id=None, + new_group_management_type=None): super(GroupUpdateArgs, self).__init__(return_members) self._group_value = bb.NOT_SET self._new_group_name_value = bb.NOT_SET @@ -3904,19 +3705,13 @@ def __init__( new_group_external_id = bb.Attribute("new_group_external_id", nullable=True) # Instance attribute type: team_common.GroupManagementType (validator is set below) - new_group_management_type = bb.Attribute( - "new_group_management_type", nullable=True, user_defined=True - ) + new_group_management_type = bb.Attribute("new_group_management_type", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupUpdateArgs, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GroupUpdateArgs, self)._process_custom_annotations(annotation_type, field_path, processor) GroupUpdateArgs_validator = bv.Struct(GroupUpdateArgs) - class GroupUpdateError(GroupSelectorWithTeamGroupError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -3944,7 +3739,7 @@ def is_group_name_already_used(self): :rtype: bool """ - return self._tag == "group_name_already_used" + return self._tag == 'group_name_already_used' def is_group_name_invalid(self): """ @@ -3952,7 +3747,7 @@ def is_group_name_invalid(self): :rtype: bool """ - return self._tag == "group_name_invalid" + return self._tag == 'group_name_invalid' def is_external_id_already_in_use(self): """ @@ -3960,17 +3755,13 @@ def is_external_id_already_in_use(self): :rtype: bool """ - return self._tag == "external_id_already_in_use" + return self._tag == 'external_id_already_in_use' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupUpdateError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GroupUpdateError, self)._process_custom_annotations(annotation_type, field_path, processor) GroupUpdateError_validator = bv.Union(GroupUpdateError) - class GroupsGetInfoError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -3981,7 +3772,7 @@ class GroupsGetInfoError(bb.Union): The group is not on your team. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition group_not_on_team = None # Attribute is overwritten below the class definition @@ -3993,7 +3784,7 @@ def is_group_not_on_team(self): :rtype: bool """ - return self._tag == "group_not_on_team" + return self._tag == 'group_not_on_team' def is_other(self): """ @@ -4001,17 +3792,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupsGetInfoError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GroupsGetInfoError, self)._process_custom_annotations(annotation_type, field_path, processor) GroupsGetInfoError_validator = bv.Union(GroupsGetInfoError) - class GroupsGetInfoItem(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -4040,7 +3827,7 @@ def id_not_found(cls, val): :param str val: :rtype: GroupsGetInfoItem """ - return cls("id_not_found", val) + return cls('id_not_found', val) @classmethod def group_info(cls, val): @@ -4051,7 +3838,7 @@ def group_info(cls, val): :param GroupFullInfo val: :rtype: GroupsGetInfoItem """ - return cls("group_info", val) + return cls('group_info', val) def is_id_not_found(self): """ @@ -4059,7 +3846,7 @@ def is_id_not_found(self): :rtype: bool """ - return self._tag == "id_not_found" + return self._tag == 'id_not_found' def is_group_info(self): """ @@ -4067,7 +3854,7 @@ def is_group_info(self): :rtype: bool """ - return self._tag == "group_info" + return self._tag == 'group_info' def get_id_not_found(self): """ @@ -4097,14 +3884,10 @@ def get_group_info(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupsGetInfoItem, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GroupsGetInfoItem, self)._process_custom_annotations(annotation_type, field_path, processor) GroupsGetInfoItem_validator = bv.Union(GroupsGetInfoItem) - class GroupsListArg(bb.Struct): """ :ivar GroupsListArg.limit: @@ -4112,12 +3895,13 @@ class GroupsListArg(bb.Struct): """ __slots__ = [ - "_limit_value", + '_limit_value', ] _has_required_fields = False - def __init__(self, limit=None): + def __init__(self, + limit=None): self._limit_value = bb.NOT_SET if limit is not None: self.limit = limit @@ -4126,14 +3910,10 @@ def __init__(self, limit=None): limit = bb.Attribute("limit") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupsListArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GroupsListArg, self)._process_custom_annotations(annotation_type, field_path, processor) GroupsListArg_validator = bv.Struct(GroupsListArg) - class GroupsListContinueArg(bb.Struct): """ :ivar GroupsListContinueArg.cursor: @@ -4141,12 +3921,13 @@ class GroupsListContinueArg(bb.Struct): """ __slots__ = [ - "_cursor_value", + '_cursor_value', ] _has_required_fields = True - def __init__(self, cursor=None): + def __init__(self, + cursor=None): self._cursor_value = bb.NOT_SET if cursor is not None: self.cursor = cursor @@ -4155,14 +3936,10 @@ def __init__(self, cursor=None): cursor = bb.Attribute("cursor") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupsListContinueArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GroupsListContinueArg, self)._process_custom_annotations(annotation_type, field_path, processor) GroupsListContinueArg_validator = bv.Struct(GroupsListContinueArg) - class GroupsListContinueError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -4173,7 +3950,7 @@ class GroupsListContinueError(bb.Union): The cursor is invalid. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition invalid_cursor = None # Attribute is overwritten below the class definition @@ -4185,7 +3962,7 @@ def is_invalid_cursor(self): :rtype: bool """ - return self._tag == "invalid_cursor" + return self._tag == 'invalid_cursor' def is_other(self): """ @@ -4193,17 +3970,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupsListContinueError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GroupsListContinueError, self)._process_custom_annotations(annotation_type, field_path, processor) GroupsListContinueError_validator = bv.Union(GroupsListContinueError) - class GroupsListResult(bb.Struct): """ :ivar GroupsListResult.cursor: @@ -4218,14 +3991,17 @@ class GroupsListResult(bb.Struct): """ __slots__ = [ - "_groups_value", - "_cursor_value", - "_has_more_value", + '_groups_value', + '_cursor_value', + '_has_more_value', ] _has_required_fields = True - def __init__(self, groups=None, cursor=None, has_more=None): + def __init__(self, + groups=None, + cursor=None, + has_more=None): self._groups_value = bb.NOT_SET self._cursor_value = bb.NOT_SET self._has_more_value = bb.NOT_SET @@ -4246,14 +4022,10 @@ def __init__(self, groups=None, cursor=None, has_more=None): has_more = bb.Attribute("has_more") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupsListResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GroupsListResult, self)._process_custom_annotations(annotation_type, field_path, processor) GroupsListResult_validator = bv.Struct(GroupsListResult) - class GroupsMembersListArg(bb.Struct): """ :ivar GroupsMembersListArg.group: @@ -4263,13 +4035,15 @@ class GroupsMembersListArg(bb.Struct): """ __slots__ = [ - "_group_value", - "_limit_value", + '_group_value', + '_limit_value', ] _has_required_fields = True - def __init__(self, group=None, limit=None): + def __init__(self, + group=None, + limit=None): self._group_value = bb.NOT_SET self._limit_value = bb.NOT_SET if group is not None: @@ -4284,14 +4058,10 @@ def __init__(self, group=None, limit=None): limit = bb.Attribute("limit") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupsMembersListArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GroupsMembersListArg, self)._process_custom_annotations(annotation_type, field_path, processor) GroupsMembersListArg_validator = bv.Struct(GroupsMembersListArg) - class GroupsMembersListContinueArg(bb.Struct): """ :ivar GroupsMembersListContinueArg.cursor: @@ -4299,12 +4069,13 @@ class GroupsMembersListContinueArg(bb.Struct): """ __slots__ = [ - "_cursor_value", + '_cursor_value', ] _has_required_fields = True - def __init__(self, cursor=None): + def __init__(self, + cursor=None): self._cursor_value = bb.NOT_SET if cursor is not None: self.cursor = cursor @@ -4313,14 +4084,10 @@ def __init__(self, cursor=None): cursor = bb.Attribute("cursor") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupsMembersListContinueArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GroupsMembersListContinueArg, self)._process_custom_annotations(annotation_type, field_path, processor) GroupsMembersListContinueArg_validator = bv.Struct(GroupsMembersListContinueArg) - class GroupsMembersListContinueError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -4331,7 +4098,7 @@ class GroupsMembersListContinueError(bb.Union): The cursor is invalid. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition invalid_cursor = None # Attribute is overwritten below the class definition @@ -4343,7 +4110,7 @@ def is_invalid_cursor(self): :rtype: bool """ - return self._tag == "invalid_cursor" + return self._tag == 'invalid_cursor' def is_other(self): """ @@ -4351,17 +4118,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupsMembersListContinueError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GroupsMembersListContinueError, self)._process_custom_annotations(annotation_type, field_path, processor) GroupsMembersListContinueError_validator = bv.Union(GroupsMembersListContinueError) - class GroupsMembersListResult(bb.Struct): """ :ivar GroupsMembersListResult.cursor: @@ -4376,14 +4139,17 @@ class GroupsMembersListResult(bb.Struct): """ __slots__ = [ - "_members_value", - "_cursor_value", - "_has_more_value", + '_members_value', + '_cursor_value', + '_has_more_value', ] _has_required_fields = True - def __init__(self, members=None, cursor=None, has_more=None): + def __init__(self, + members=None, + cursor=None, + has_more=None): self._members_value = bb.NOT_SET self._cursor_value = bb.NOT_SET self._has_more_value = bb.NOT_SET @@ -4404,14 +4170,10 @@ def __init__(self, members=None, cursor=None, has_more=None): has_more = bb.Attribute("has_more") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupsMembersListResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GroupsMembersListResult, self)._process_custom_annotations(annotation_type, field_path, processor) GroupsMembersListResult_validator = bv.Struct(GroupsMembersListResult) - class GroupsPollError(async_.PollError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -4431,17 +4193,13 @@ def is_access_denied(self): :rtype: bool """ - return self._tag == "access_denied" + return self._tag == 'access_denied' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupsPollError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GroupsPollError, self)._process_custom_annotations(annotation_type, field_path, processor) GroupsPollError_validator = bv.Union(GroupsPollError) - class GroupsSelector(bb.Union): """ Argument for selecting a list of groups, either by group_ids, or external @@ -4470,7 +4228,7 @@ def group_ids(cls, val): :param list of [str] val: :rtype: GroupsSelector """ - return cls("group_ids", val) + return cls('group_ids', val) @classmethod def group_external_ids(cls, val): @@ -4481,7 +4239,7 @@ def group_external_ids(cls, val): :param list of [str] val: :rtype: GroupsSelector """ - return cls("group_external_ids", val) + return cls('group_external_ids', val) def is_group_ids(self): """ @@ -4489,7 +4247,7 @@ def is_group_ids(self): :rtype: bool """ - return self._tag == "group_ids" + return self._tag == 'group_ids' def is_group_external_ids(self): """ @@ -4497,7 +4255,7 @@ def is_group_external_ids(self): :rtype: bool """ - return self._tag == "group_external_ids" + return self._tag == 'group_external_ids' def get_group_ids(self): """ @@ -4524,14 +4282,10 @@ def get_group_external_ids(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupsSelector, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GroupsSelector, self)._process_custom_annotations(annotation_type, field_path, processor) GroupsSelector_validator = bv.Union(GroupsSelector) - class HasDistinctMemberHomesValue(bb.Union): """ The value for ``Feature.has_distinct_member_homes``. @@ -4545,7 +4299,7 @@ class HasDistinctMemberHomesValue(bb.Union): :vartype HasDistinctMemberHomesValue.has_distinct_member_homes: bool """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -4558,7 +4312,7 @@ def has_distinct_member_homes(cls, val): :param bool val: :rtype: HasDistinctMemberHomesValue """ - return cls("has_distinct_member_homes", val) + return cls('has_distinct_member_homes', val) def is_has_distinct_member_homes(self): """ @@ -4566,7 +4320,7 @@ def is_has_distinct_member_homes(self): :rtype: bool """ - return self._tag == "has_distinct_member_homes" + return self._tag == 'has_distinct_member_homes' def is_other(self): """ @@ -4574,7 +4328,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_has_distinct_member_homes(self): """ @@ -4589,14 +4343,10 @@ def get_has_distinct_member_homes(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(HasDistinctMemberHomesValue, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(HasDistinctMemberHomesValue, self)._process_custom_annotations(annotation_type, field_path, processor) HasDistinctMemberHomesValue_validator = bv.Union(HasDistinctMemberHomesValue) - class HasTeamFileEventsValue(bb.Union): """ The value for ``Feature.has_team_file_events``. @@ -4610,7 +4360,7 @@ class HasTeamFileEventsValue(bb.Union): :vartype HasTeamFileEventsValue.enabled: bool """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -4623,7 +4373,7 @@ def enabled(cls, val): :param bool val: :rtype: HasTeamFileEventsValue """ - return cls("enabled", val) + return cls('enabled', val) def is_enabled(self): """ @@ -4631,7 +4381,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == "enabled" + return self._tag == 'enabled' def is_other(self): """ @@ -4639,7 +4389,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_enabled(self): """ @@ -4654,14 +4404,10 @@ def get_enabled(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(HasTeamFileEventsValue, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(HasTeamFileEventsValue, self)._process_custom_annotations(annotation_type, field_path, processor) HasTeamFileEventsValue_validator = bv.Union(HasTeamFileEventsValue) - class HasTeamSelectiveSyncValue(bb.Union): """ The value for ``Feature.has_team_selective_sync``. @@ -4675,7 +4421,7 @@ class HasTeamSelectiveSyncValue(bb.Union): :vartype HasTeamSelectiveSyncValue.has_team_selective_sync: bool """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -4688,7 +4434,7 @@ def has_team_selective_sync(cls, val): :param bool val: :rtype: HasTeamSelectiveSyncValue """ - return cls("has_team_selective_sync", val) + return cls('has_team_selective_sync', val) def is_has_team_selective_sync(self): """ @@ -4696,7 +4442,7 @@ def is_has_team_selective_sync(self): :rtype: bool """ - return self._tag == "has_team_selective_sync" + return self._tag == 'has_team_selective_sync' def is_other(self): """ @@ -4704,7 +4450,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_has_team_selective_sync(self): """ @@ -4719,14 +4465,10 @@ def get_has_team_selective_sync(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(HasTeamSelectiveSyncValue, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(HasTeamSelectiveSyncValue, self)._process_custom_annotations(annotation_type, field_path, processor) HasTeamSelectiveSyncValue_validator = bv.Union(HasTeamSelectiveSyncValue) - class HasTeamSharedDropboxValue(bb.Union): """ The value for ``Feature.has_team_shared_dropbox``. @@ -4740,7 +4482,7 @@ class HasTeamSharedDropboxValue(bb.Union): :vartype HasTeamSharedDropboxValue.has_team_shared_dropbox: bool """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -4753,7 +4495,7 @@ def has_team_shared_dropbox(cls, val): :param bool val: :rtype: HasTeamSharedDropboxValue """ - return cls("has_team_shared_dropbox", val) + return cls('has_team_shared_dropbox', val) def is_has_team_shared_dropbox(self): """ @@ -4761,7 +4503,7 @@ def is_has_team_shared_dropbox(self): :rtype: bool """ - return self._tag == "has_team_shared_dropbox" + return self._tag == 'has_team_shared_dropbox' def is_other(self): """ @@ -4769,7 +4511,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_has_team_shared_dropbox(self): """ @@ -4784,14 +4526,10 @@ def get_has_team_shared_dropbox(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(HasTeamSharedDropboxValue, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(HasTeamSharedDropboxValue, self)._process_custom_annotations(annotation_type, field_path, processor) HasTeamSharedDropboxValue_validator = bv.Union(HasTeamSharedDropboxValue) - class LegalHoldHeldRevisionMetadata(bb.Struct): """ :ivar LegalHoldHeldRevisionMetadata.new_filename: @@ -4819,33 +4557,31 @@ class LegalHoldHeldRevisionMetadata(bb.Struct): """ __slots__ = [ - "_new_filename_value", - "_original_revision_id_value", - "_original_file_path_value", - "_server_modified_value", - "_author_member_id_value", - "_author_member_status_value", - "_author_email_value", - "_file_type_value", - "_size_value", - "_content_hash_value", + '_new_filename_value', + '_original_revision_id_value', + '_original_file_path_value', + '_server_modified_value', + '_author_member_id_value', + '_author_member_status_value', + '_author_email_value', + '_file_type_value', + '_size_value', + '_content_hash_value', ] _has_required_fields = True - def __init__( - self, - new_filename=None, - original_revision_id=None, - original_file_path=None, - server_modified=None, - author_member_id=None, - author_member_status=None, - author_email=None, - file_type=None, - size=None, - content_hash=None, - ): + def __init__(self, + new_filename=None, + original_revision_id=None, + original_file_path=None, + server_modified=None, + author_member_id=None, + author_member_status=None, + author_email=None, + file_type=None, + size=None, + content_hash=None): self._new_filename_value = bb.NOT_SET self._original_revision_id_value = bb.NOT_SET self._original_file_path_value = bb.NOT_SET @@ -4908,14 +4644,10 @@ def __init__( content_hash = bb.Attribute("content_hash") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldHeldRevisionMetadata, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(LegalHoldHeldRevisionMetadata, self)._process_custom_annotations(annotation_type, field_path, processor) LegalHoldHeldRevisionMetadata_validator = bv.Struct(LegalHoldHeldRevisionMetadata) - class LegalHoldPolicy(bb.Struct): """ :ivar LegalHoldPolicy.id: @@ -4937,29 +4669,27 @@ class LegalHoldPolicy(bb.Struct): """ __slots__ = [ - "_id_value", - "_name_value", - "_description_value", - "_activation_time_value", - "_members_value", - "_status_value", - "_start_date_value", - "_end_date_value", + '_id_value', + '_name_value', + '_description_value', + '_activation_time_value', + '_members_value', + '_status_value', + '_start_date_value', + '_end_date_value', ] _has_required_fields = True - def __init__( - self, - id=None, - name=None, - members=None, - status=None, - start_date=None, - description=None, - activation_time=None, - end_date=None, - ): + def __init__(self, + id=None, + name=None, + members=None, + status=None, + start_date=None, + description=None, + activation_time=None, + end_date=None): self._id_value = bb.NOT_SET self._name_value = bb.NOT_SET self._description_value = bb.NOT_SET @@ -5010,14 +4740,10 @@ def __init__( end_date = bb.Attribute("end_date", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(LegalHoldPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) LegalHoldPolicy_validator = bv.Struct(LegalHoldPolicy) - class LegalHoldStatus(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -5038,7 +4764,7 @@ class LegalHoldStatus(bb.Union): The legal hold policy is releasing. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition active = None # Attribute is overwritten below the class definition @@ -5060,7 +4786,7 @@ def is_active(self): :rtype: bool """ - return self._tag == "active" + return self._tag == 'active' def is_released(self): """ @@ -5068,7 +4794,7 @@ def is_released(self): :rtype: bool """ - return self._tag == "released" + return self._tag == 'released' def is_activating(self): """ @@ -5076,7 +4802,7 @@ def is_activating(self): :rtype: bool """ - return self._tag == "activating" + return self._tag == 'activating' def is_updating(self): """ @@ -5084,7 +4810,7 @@ def is_updating(self): :rtype: bool """ - return self._tag == "updating" + return self._tag == 'updating' def is_exporting(self): """ @@ -5092,7 +4818,7 @@ def is_exporting(self): :rtype: bool """ - return self._tag == "exporting" + return self._tag == 'exporting' def is_releasing(self): """ @@ -5100,7 +4826,7 @@ def is_releasing(self): :rtype: bool """ - return self._tag == "releasing" + return self._tag == 'releasing' def is_other(self): """ @@ -5108,17 +4834,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldStatus, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(LegalHoldStatus, self)._process_custom_annotations(annotation_type, field_path, processor) LegalHoldStatus_validator = bv.Union(LegalHoldStatus) - class LegalHoldsError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -5131,7 +4853,7 @@ class LegalHoldsError(bb.Union): You don't have permissions to perform this action. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition unknown_legal_hold_error = None # Attribute is overwritten below the class definition @@ -5145,7 +4867,7 @@ def is_unknown_legal_hold_error(self): :rtype: bool """ - return self._tag == "unknown_legal_hold_error" + return self._tag == 'unknown_legal_hold_error' def is_insufficient_permissions(self): """ @@ -5153,7 +4875,7 @@ def is_insufficient_permissions(self): :rtype: bool """ - return self._tag == "insufficient_permissions" + return self._tag == 'insufficient_permissions' def is_other(self): """ @@ -5161,17 +4883,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldsError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(LegalHoldsError, self)._process_custom_annotations(annotation_type, field_path, processor) LegalHoldsError_validator = bv.Union(LegalHoldsError) - class LegalHoldsGetPolicyArg(bb.Struct): """ :ivar LegalHoldsGetPolicyArg.id: @@ -5179,12 +4897,13 @@ class LegalHoldsGetPolicyArg(bb.Struct): """ __slots__ = [ - "_id_value", + '_id_value', ] _has_required_fields = True - def __init__(self, id=None): + def __init__(self, + id=None): self._id_value = bb.NOT_SET if id is not None: self.id = id @@ -5193,14 +4912,10 @@ def __init__(self, id=None): id = bb.Attribute("id") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldsGetPolicyArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(LegalHoldsGetPolicyArg, self)._process_custom_annotations(annotation_type, field_path, processor) LegalHoldsGetPolicyArg_validator = bv.Struct(LegalHoldsGetPolicyArg) - class LegalHoldsGetPolicyError(LegalHoldsError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -5220,17 +4935,13 @@ def is_legal_hold_policy_not_found(self): :rtype: bool """ - return self._tag == "legal_hold_policy_not_found" + return self._tag == 'legal_hold_policy_not_found' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldsGetPolicyError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(LegalHoldsGetPolicyError, self)._process_custom_annotations(annotation_type, field_path, processor) LegalHoldsGetPolicyError_validator = bv.Union(LegalHoldsGetPolicyError) - class LegalHoldsListHeldRevisionResult(bb.Struct): """ :ivar LegalHoldsListHeldRevisionResult.entries: @@ -5246,14 +4957,17 @@ class LegalHoldsListHeldRevisionResult(bb.Struct): """ __slots__ = [ - "_entries_value", - "_cursor_value", - "_has_more_value", + '_entries_value', + '_cursor_value', + '_has_more_value', ] _has_required_fields = True - def __init__(self, entries=None, has_more=None, cursor=None): + def __init__(self, + entries=None, + has_more=None, + cursor=None): self._entries_value = bb.NOT_SET self._cursor_value = bb.NOT_SET self._has_more_value = bb.NOT_SET @@ -5274,14 +4988,10 @@ def __init__(self, entries=None, has_more=None, cursor=None): has_more = bb.Attribute("has_more") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldsListHeldRevisionResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(LegalHoldsListHeldRevisionResult, self)._process_custom_annotations(annotation_type, field_path, processor) LegalHoldsListHeldRevisionResult_validator = bv.Struct(LegalHoldsListHeldRevisionResult) - class LegalHoldsListHeldRevisionsArg(bb.Struct): """ :ivar LegalHoldsListHeldRevisionsArg.id: @@ -5289,12 +4999,13 @@ class LegalHoldsListHeldRevisionsArg(bb.Struct): """ __slots__ = [ - "_id_value", + '_id_value', ] _has_required_fields = True - def __init__(self, id=None): + def __init__(self, + id=None): self._id_value = bb.NOT_SET if id is not None: self.id = id @@ -5303,14 +5014,10 @@ def __init__(self, id=None): id = bb.Attribute("id") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldsListHeldRevisionsArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(LegalHoldsListHeldRevisionsArg, self)._process_custom_annotations(annotation_type, field_path, processor) LegalHoldsListHeldRevisionsArg_validator = bv.Struct(LegalHoldsListHeldRevisionsArg) - class LegalHoldsListHeldRevisionsContinueArg(bb.Struct): """ :ivar LegalHoldsListHeldRevisionsContinueArg.id: @@ -5322,13 +5029,15 @@ class LegalHoldsListHeldRevisionsContinueArg(bb.Struct): """ __slots__ = [ - "_id_value", - "_cursor_value", + '_id_value', + '_cursor_value', ] _has_required_fields = True - def __init__(self, id=None, cursor=None): + def __init__(self, + id=None, + cursor=None): self._id_value = bb.NOT_SET self._cursor_value = bb.NOT_SET if id is not None: @@ -5343,14 +5052,10 @@ def __init__(self, id=None, cursor=None): cursor = bb.Attribute("cursor", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldsListHeldRevisionsContinueArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(LegalHoldsListHeldRevisionsContinueArg, self)._process_custom_annotations(annotation_type, field_path, processor) LegalHoldsListHeldRevisionsContinueArg_validator = bv.Struct(LegalHoldsListHeldRevisionsContinueArg) - class LegalHoldsListHeldRevisionsContinueError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -5367,7 +5072,7 @@ class LegalHoldsListHeldRevisionsContinueError(bb.Union): again with an empty cursor to obtain a new cursor. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition unknown_legal_hold_error = None # Attribute is overwritten below the class definition @@ -5383,7 +5088,7 @@ def is_unknown_legal_hold_error(self): :rtype: bool """ - return self._tag == "unknown_legal_hold_error" + return self._tag == 'unknown_legal_hold_error' def is_transient_error(self): """ @@ -5391,7 +5096,7 @@ def is_transient_error(self): :rtype: bool """ - return self._tag == "transient_error" + return self._tag == 'transient_error' def is_reset(self): """ @@ -5399,7 +5104,7 @@ def is_reset(self): :rtype: bool """ - return self._tag == "reset" + return self._tag == 'reset' def is_other(self): """ @@ -5407,18 +5112,12 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldsListHeldRevisionsContinueError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - - -LegalHoldsListHeldRevisionsContinueError_validator = bv.Union( - LegalHoldsListHeldRevisionsContinueError -) + super(LegalHoldsListHeldRevisionsContinueError, self)._process_custom_annotations(annotation_type, field_path, processor) +LegalHoldsListHeldRevisionsContinueError_validator = bv.Union(LegalHoldsListHeldRevisionsContinueError) class LegalHoldsListHeldRevisionsError(LegalHoldsError): """ @@ -5447,7 +5146,7 @@ def is_transient_error(self): :rtype: bool """ - return self._tag == "transient_error" + return self._tag == 'transient_error' def is_legal_hold_still_empty(self): """ @@ -5455,7 +5154,7 @@ def is_legal_hold_still_empty(self): :rtype: bool """ - return self._tag == "legal_hold_still_empty" + return self._tag == 'legal_hold_still_empty' def is_inactive_legal_hold(self): """ @@ -5463,17 +5162,13 @@ def is_inactive_legal_hold(self): :rtype: bool """ - return self._tag == "inactive_legal_hold" + return self._tag == 'inactive_legal_hold' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldsListHeldRevisionsError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(LegalHoldsListHeldRevisionsError, self)._process_custom_annotations(annotation_type, field_path, processor) LegalHoldsListHeldRevisionsError_validator = bv.Union(LegalHoldsListHeldRevisionsError) - class LegalHoldsListPoliciesArg(bb.Struct): """ :ivar LegalHoldsListPoliciesArg.include_released: @@ -5481,12 +5176,13 @@ class LegalHoldsListPoliciesArg(bb.Struct): """ __slots__ = [ - "_include_released_value", + '_include_released_value', ] _has_required_fields = False - def __init__(self, include_released=None): + def __init__(self, + include_released=None): self._include_released_value = bb.NOT_SET if include_released is not None: self.include_released = include_released @@ -5495,14 +5191,10 @@ def __init__(self, include_released=None): include_released = bb.Attribute("include_released") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldsListPoliciesArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(LegalHoldsListPoliciesArg, self)._process_custom_annotations(annotation_type, field_path, processor) LegalHoldsListPoliciesArg_validator = bv.Struct(LegalHoldsListPoliciesArg) - class LegalHoldsListPoliciesError(LegalHoldsError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -5522,25 +5214,23 @@ def is_transient_error(self): :rtype: bool """ - return self._tag == "transient_error" + return self._tag == 'transient_error' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldsListPoliciesError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(LegalHoldsListPoliciesError, self)._process_custom_annotations(annotation_type, field_path, processor) LegalHoldsListPoliciesError_validator = bv.Union(LegalHoldsListPoliciesError) - class LegalHoldsListPoliciesResult(bb.Struct): + __slots__ = [ - "_policies_value", + '_policies_value', ] _has_required_fields = True - def __init__(self, policies=None): + def __init__(self, + policies=None): self._policies_value = bb.NOT_SET if policies is not None: self.policies = policies @@ -5549,14 +5239,10 @@ def __init__(self, policies=None): policies = bb.Attribute("policies") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldsListPoliciesResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(LegalHoldsListPoliciesResult, self)._process_custom_annotations(annotation_type, field_path, processor) LegalHoldsListPoliciesResult_validator = bv.Struct(LegalHoldsListPoliciesResult) - class LegalHoldsPolicyCreateArg(bb.Struct): """ :ivar LegalHoldsPolicyCreateArg.name: @@ -5572,16 +5258,21 @@ class LegalHoldsPolicyCreateArg(bb.Struct): """ __slots__ = [ - "_name_value", - "_description_value", - "_members_value", - "_start_date_value", - "_end_date_value", + '_name_value', + '_description_value', + '_members_value', + '_start_date_value', + '_end_date_value', ] _has_required_fields = True - def __init__(self, name=None, members=None, description=None, start_date=None, end_date=None): + def __init__(self, + name=None, + members=None, + description=None, + start_date=None, + end_date=None): self._name_value = bb.NOT_SET self._description_value = bb.NOT_SET self._members_value = bb.NOT_SET @@ -5614,14 +5305,10 @@ def __init__(self, name=None, members=None, description=None, start_date=None, e end_date = bb.Attribute("end_date", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldsPolicyCreateArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(LegalHoldsPolicyCreateArg, self)._process_custom_annotations(annotation_type, field_path, processor) LegalHoldsPolicyCreateArg_validator = bv.Struct(LegalHoldsPolicyCreateArg) - class LegalHoldsPolicyCreateError(LegalHoldsError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -5670,7 +5357,7 @@ def is_start_date_is_later_than_end_date(self): :rtype: bool """ - return self._tag == "start_date_is_later_than_end_date" + return self._tag == 'start_date_is_later_than_end_date' def is_empty_members_list(self): """ @@ -5678,7 +5365,7 @@ def is_empty_members_list(self): :rtype: bool """ - return self._tag == "empty_members_list" + return self._tag == 'empty_members_list' def is_invalid_members(self): """ @@ -5686,7 +5373,7 @@ def is_invalid_members(self): :rtype: bool """ - return self._tag == "invalid_members" + return self._tag == 'invalid_members' def is_number_of_users_on_hold_is_greater_than_hold_limitation(self): """ @@ -5694,7 +5381,7 @@ def is_number_of_users_on_hold_is_greater_than_hold_limitation(self): :rtype: bool """ - return self._tag == "number_of_users_on_hold_is_greater_than_hold_limitation" + return self._tag == 'number_of_users_on_hold_is_greater_than_hold_limitation' def is_transient_error(self): """ @@ -5702,7 +5389,7 @@ def is_transient_error(self): :rtype: bool """ - return self._tag == "transient_error" + return self._tag == 'transient_error' def is_name_must_be_unique(self): """ @@ -5710,7 +5397,7 @@ def is_name_must_be_unique(self): :rtype: bool """ - return self._tag == "name_must_be_unique" + return self._tag == 'name_must_be_unique' def is_team_exceeded_legal_hold_quota(self): """ @@ -5718,7 +5405,7 @@ def is_team_exceeded_legal_hold_quota(self): :rtype: bool """ - return self._tag == "team_exceeded_legal_hold_quota" + return self._tag == 'team_exceeded_legal_hold_quota' def is_invalid_date(self): """ @@ -5726,17 +5413,13 @@ def is_invalid_date(self): :rtype: bool """ - return self._tag == "invalid_date" + return self._tag == 'invalid_date' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldsPolicyCreateError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(LegalHoldsPolicyCreateError, self)._process_custom_annotations(annotation_type, field_path, processor) LegalHoldsPolicyCreateError_validator = bv.Union(LegalHoldsPolicyCreateError) - class LegalHoldsPolicyReleaseArg(bb.Struct): """ :ivar LegalHoldsPolicyReleaseArg.id: @@ -5744,12 +5427,13 @@ class LegalHoldsPolicyReleaseArg(bb.Struct): """ __slots__ = [ - "_id_value", + '_id_value', ] _has_required_fields = True - def __init__(self, id=None): + def __init__(self, + id=None): self._id_value = bb.NOT_SET if id is not None: self.id = id @@ -5758,14 +5442,10 @@ def __init__(self, id=None): id = bb.Attribute("id") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldsPolicyReleaseArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(LegalHoldsPolicyReleaseArg, self)._process_custom_annotations(annotation_type, field_path, processor) LegalHoldsPolicyReleaseArg_validator = bv.Struct(LegalHoldsPolicyReleaseArg) - class LegalHoldsPolicyReleaseError(LegalHoldsError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -5793,7 +5473,7 @@ def is_legal_hold_performing_another_operation(self): :rtype: bool """ - return self._tag == "legal_hold_performing_another_operation" + return self._tag == 'legal_hold_performing_another_operation' def is_legal_hold_already_releasing(self): """ @@ -5801,7 +5481,7 @@ def is_legal_hold_already_releasing(self): :rtype: bool """ - return self._tag == "legal_hold_already_releasing" + return self._tag == 'legal_hold_already_releasing' def is_legal_hold_policy_not_found(self): """ @@ -5809,17 +5489,13 @@ def is_legal_hold_policy_not_found(self): :rtype: bool """ - return self._tag == "legal_hold_policy_not_found" + return self._tag == 'legal_hold_policy_not_found' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldsPolicyReleaseError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(LegalHoldsPolicyReleaseError, self)._process_custom_annotations(annotation_type, field_path, processor) LegalHoldsPolicyReleaseError_validator = bv.Union(LegalHoldsPolicyReleaseError) - class LegalHoldsPolicyUpdateArg(bb.Struct): """ :ivar LegalHoldsPolicyUpdateArg.id: @@ -5833,15 +5509,19 @@ class LegalHoldsPolicyUpdateArg(bb.Struct): """ __slots__ = [ - "_id_value", - "_name_value", - "_description_value", - "_members_value", + '_id_value', + '_name_value', + '_description_value', + '_members_value', ] _has_required_fields = True - def __init__(self, id=None, name=None, description=None, members=None): + def __init__(self, + id=None, + name=None, + description=None, + members=None): self._id_value = bb.NOT_SET self._name_value = bb.NOT_SET self._description_value = bb.NOT_SET @@ -5868,14 +5548,10 @@ def __init__(self, id=None, name=None, description=None, members=None): members = bb.Attribute("members", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldsPolicyUpdateArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(LegalHoldsPolicyUpdateArg, self)._process_custom_annotations(annotation_type, field_path, processor) LegalHoldsPolicyUpdateArg_validator = bv.Struct(LegalHoldsPolicyUpdateArg) - class LegalHoldsPolicyUpdateError(LegalHoldsError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -5924,7 +5600,7 @@ def is_transient_error(self): :rtype: bool """ - return self._tag == "transient_error" + return self._tag == 'transient_error' def is_inactive_legal_hold(self): """ @@ -5932,7 +5608,7 @@ def is_inactive_legal_hold(self): :rtype: bool """ - return self._tag == "inactive_legal_hold" + return self._tag == 'inactive_legal_hold' def is_legal_hold_performing_another_operation(self): """ @@ -5940,7 +5616,7 @@ def is_legal_hold_performing_another_operation(self): :rtype: bool """ - return self._tag == "legal_hold_performing_another_operation" + return self._tag == 'legal_hold_performing_another_operation' def is_invalid_members(self): """ @@ -5948,7 +5624,7 @@ def is_invalid_members(self): :rtype: bool """ - return self._tag == "invalid_members" + return self._tag == 'invalid_members' def is_number_of_users_on_hold_is_greater_than_hold_limitation(self): """ @@ -5956,7 +5632,7 @@ def is_number_of_users_on_hold_is_greater_than_hold_limitation(self): :rtype: bool """ - return self._tag == "number_of_users_on_hold_is_greater_than_hold_limitation" + return self._tag == 'number_of_users_on_hold_is_greater_than_hold_limitation' def is_empty_members_list(self): """ @@ -5964,7 +5640,7 @@ def is_empty_members_list(self): :rtype: bool """ - return self._tag == "empty_members_list" + return self._tag == 'empty_members_list' def is_name_must_be_unique(self): """ @@ -5972,7 +5648,7 @@ def is_name_must_be_unique(self): :rtype: bool """ - return self._tag == "name_must_be_unique" + return self._tag == 'name_must_be_unique' def is_legal_hold_policy_not_found(self): """ @@ -5980,17 +5656,13 @@ def is_legal_hold_policy_not_found(self): :rtype: bool """ - return self._tag == "legal_hold_policy_not_found" + return self._tag == 'legal_hold_policy_not_found' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldsPolicyUpdateError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(LegalHoldsPolicyUpdateError, self)._process_custom_annotations(annotation_type, field_path, processor) LegalHoldsPolicyUpdateError_validator = bv.Union(LegalHoldsPolicyUpdateError) - class ListMemberAppsArg(bb.Struct): """ :ivar ListMemberAppsArg.team_member_id: @@ -5998,12 +5670,13 @@ class ListMemberAppsArg(bb.Struct): """ __slots__ = [ - "_team_member_id_value", + '_team_member_id_value', ] _has_required_fields = True - def __init__(self, team_member_id=None): + def __init__(self, + team_member_id=None): self._team_member_id_value = bb.NOT_SET if team_member_id is not None: self.team_member_id = team_member_id @@ -6012,14 +5685,10 @@ def __init__(self, team_member_id=None): team_member_id = bb.Attribute("team_member_id") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListMemberAppsArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ListMemberAppsArg, self)._process_custom_annotations(annotation_type, field_path, processor) ListMemberAppsArg_validator = bv.Struct(ListMemberAppsArg) - class ListMemberAppsError(bb.Union): """ Error returned by @@ -6033,7 +5702,7 @@ class ListMemberAppsError(bb.Union): Member not found. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition member_not_found = None # Attribute is overwritten below the class definition @@ -6045,7 +5714,7 @@ def is_member_not_found(self): :rtype: bool """ - return self._tag == "member_not_found" + return self._tag == 'member_not_found' def is_other(self): """ @@ -6053,17 +5722,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListMemberAppsError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ListMemberAppsError, self)._process_custom_annotations(annotation_type, field_path, processor) ListMemberAppsError_validator = bv.Union(ListMemberAppsError) - class ListMemberAppsResult(bb.Struct): """ :ivar ListMemberAppsResult.linked_api_apps: @@ -6071,12 +5736,13 @@ class ListMemberAppsResult(bb.Struct): """ __slots__ = [ - "_linked_api_apps_value", + '_linked_api_apps_value', ] _has_required_fields = True - def __init__(self, linked_api_apps=None): + def __init__(self, + linked_api_apps=None): self._linked_api_apps_value = bb.NOT_SET if linked_api_apps is not None: self.linked_api_apps = linked_api_apps @@ -6085,14 +5751,10 @@ def __init__(self, linked_api_apps=None): linked_api_apps = bb.Attribute("linked_api_apps") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListMemberAppsResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ListMemberAppsResult, self)._process_custom_annotations(annotation_type, field_path, processor) ListMemberAppsResult_validator = bv.Struct(ListMemberAppsResult) - class ListMemberDevicesArg(bb.Struct): """ :ivar ListMemberDevicesArg.team_member_id: @@ -6106,21 +5768,19 @@ class ListMemberDevicesArg(bb.Struct): """ __slots__ = [ - "_team_member_id_value", - "_include_web_sessions_value", - "_include_desktop_clients_value", - "_include_mobile_clients_value", + '_team_member_id_value', + '_include_web_sessions_value', + '_include_desktop_clients_value', + '_include_mobile_clients_value', ] _has_required_fields = True - def __init__( - self, - team_member_id=None, - include_web_sessions=None, - include_desktop_clients=None, - include_mobile_clients=None, - ): + def __init__(self, + team_member_id=None, + include_web_sessions=None, + include_desktop_clients=None, + include_mobile_clients=None): self._team_member_id_value = bb.NOT_SET self._include_web_sessions_value = bb.NOT_SET self._include_desktop_clients_value = bb.NOT_SET @@ -6147,14 +5807,10 @@ def __init__( include_mobile_clients = bb.Attribute("include_mobile_clients") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListMemberDevicesArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ListMemberDevicesArg, self)._process_custom_annotations(annotation_type, field_path, processor) ListMemberDevicesArg_validator = bv.Struct(ListMemberDevicesArg) - class ListMemberDevicesError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -6165,7 +5821,7 @@ class ListMemberDevicesError(bb.Union): Member not found. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition member_not_found = None # Attribute is overwritten below the class definition @@ -6177,7 +5833,7 @@ def is_member_not_found(self): :rtype: bool """ - return self._tag == "member_not_found" + return self._tag == 'member_not_found' def is_other(self): """ @@ -6185,17 +5841,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListMemberDevicesError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ListMemberDevicesError, self)._process_custom_annotations(annotation_type, field_path, processor) ListMemberDevicesError_validator = bv.Union(ListMemberDevicesError) - class ListMemberDevicesResult(bb.Struct): """ :ivar ListMemberDevicesResult.active_web_sessions: @@ -6207,19 +5859,17 @@ class ListMemberDevicesResult(bb.Struct): """ __slots__ = [ - "_active_web_sessions_value", - "_desktop_client_sessions_value", - "_mobile_client_sessions_value", + '_active_web_sessions_value', + '_desktop_client_sessions_value', + '_mobile_client_sessions_value', ] _has_required_fields = False - def __init__( - self, - active_web_sessions=None, - desktop_client_sessions=None, - mobile_client_sessions=None, - ): + def __init__(self, + active_web_sessions=None, + desktop_client_sessions=None, + mobile_client_sessions=None): self._active_web_sessions_value = bb.NOT_SET self._desktop_client_sessions_value = bb.NOT_SET self._mobile_client_sessions_value = bb.NOT_SET @@ -6240,14 +5890,10 @@ def __init__( mobile_client_sessions = bb.Attribute("mobile_client_sessions", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListMemberDevicesResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ListMemberDevicesResult, self)._process_custom_annotations(annotation_type, field_path, processor) ListMemberDevicesResult_validator = bv.Struct(ListMemberDevicesResult) - class ListMembersAppsArg(bb.Struct): """ Arguments for @@ -6262,12 +5908,13 @@ class ListMembersAppsArg(bb.Struct): """ __slots__ = [ - "_cursor_value", + '_cursor_value', ] _has_required_fields = False - def __init__(self, cursor=None): + def __init__(self, + cursor=None): self._cursor_value = bb.NOT_SET if cursor is not None: self.cursor = cursor @@ -6276,14 +5923,10 @@ def __init__(self, cursor=None): cursor = bb.Attribute("cursor", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListMembersAppsArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ListMembersAppsArg, self)._process_custom_annotations(annotation_type, field_path, processor) ListMembersAppsArg_validator = bv.Struct(ListMembersAppsArg) - class ListMembersAppsError(bb.Union): """ Error returned by @@ -6299,7 +5942,7 @@ class ListMembersAppsError(bb.Union): again with an empty cursor to obtain a new cursor. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition reset = None # Attribute is overwritten below the class definition @@ -6311,7 +5954,7 @@ def is_reset(self): :rtype: bool """ - return self._tag == "reset" + return self._tag == 'reset' def is_other(self): """ @@ -6319,17 +5962,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListMembersAppsError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ListMembersAppsError, self)._process_custom_annotations(annotation_type, field_path, processor) ListMembersAppsError_validator = bv.Union(ListMembersAppsError) - class ListMembersAppsResult(bb.Struct): """ Information returned by @@ -6348,14 +5987,17 @@ class ListMembersAppsResult(bb.Struct): """ __slots__ = [ - "_apps_value", - "_has_more_value", - "_cursor_value", + '_apps_value', + '_has_more_value', + '_cursor_value', ] _has_required_fields = True - def __init__(self, apps=None, has_more=None, cursor=None): + def __init__(self, + apps=None, + has_more=None, + cursor=None): self._apps_value = bb.NOT_SET self._has_more_value = bb.NOT_SET self._cursor_value = bb.NOT_SET @@ -6376,14 +6018,10 @@ def __init__(self, apps=None, has_more=None, cursor=None): cursor = bb.Attribute("cursor", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListMembersAppsResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ListMembersAppsResult, self)._process_custom_annotations(annotation_type, field_path, processor) ListMembersAppsResult_validator = bv.Struct(ListMembersAppsResult) - class ListMembersDevicesArg(bb.Struct): """ :ivar ListMembersDevicesArg.cursor: @@ -6401,21 +6039,19 @@ class ListMembersDevicesArg(bb.Struct): """ __slots__ = [ - "_cursor_value", - "_include_web_sessions_value", - "_include_desktop_clients_value", - "_include_mobile_clients_value", + '_cursor_value', + '_include_web_sessions_value', + '_include_desktop_clients_value', + '_include_mobile_clients_value', ] _has_required_fields = False - def __init__( - self, - cursor=None, - include_web_sessions=None, - include_desktop_clients=None, - include_mobile_clients=None, - ): + def __init__(self, + cursor=None, + include_web_sessions=None, + include_desktop_clients=None, + include_mobile_clients=None): self._cursor_value = bb.NOT_SET self._include_web_sessions_value = bb.NOT_SET self._include_desktop_clients_value = bb.NOT_SET @@ -6442,14 +6078,10 @@ def __init__( include_mobile_clients = bb.Attribute("include_mobile_clients") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListMembersDevicesArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ListMembersDevicesArg, self)._process_custom_annotations(annotation_type, field_path, processor) ListMembersDevicesArg_validator = bv.Struct(ListMembersDevicesArg) - class ListMembersDevicesError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -6462,7 +6094,7 @@ class ListMembersDevicesError(bb.Union): again with an empty cursor to obtain a new cursor. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition reset = None # Attribute is overwritten below the class definition @@ -6474,7 +6106,7 @@ def is_reset(self): :rtype: bool """ - return self._tag == "reset" + return self._tag == 'reset' def is_other(self): """ @@ -6482,17 +6114,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListMembersDevicesError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ListMembersDevicesError, self)._process_custom_annotations(annotation_type, field_path, processor) ListMembersDevicesError_validator = bv.Union(ListMembersDevicesError) - class ListMembersDevicesResult(bb.Struct): """ :ivar ListMembersDevicesResult.devices: @@ -6508,14 +6136,17 @@ class ListMembersDevicesResult(bb.Struct): """ __slots__ = [ - "_devices_value", - "_has_more_value", - "_cursor_value", + '_devices_value', + '_has_more_value', + '_cursor_value', ] _has_required_fields = True - def __init__(self, devices=None, has_more=None, cursor=None): + def __init__(self, + devices=None, + has_more=None, + cursor=None): self._devices_value = bb.NOT_SET self._has_more_value = bb.NOT_SET self._cursor_value = bb.NOT_SET @@ -6536,14 +6167,10 @@ def __init__(self, devices=None, has_more=None, cursor=None): cursor = bb.Attribute("cursor", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListMembersDevicesResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ListMembersDevicesResult, self)._process_custom_annotations(annotation_type, field_path, processor) ListMembersDevicesResult_validator = bv.Struct(ListMembersDevicesResult) - class ListTeamAppsArg(bb.Struct): """ Arguments for @@ -6558,12 +6185,13 @@ class ListTeamAppsArg(bb.Struct): """ __slots__ = [ - "_cursor_value", + '_cursor_value', ] _has_required_fields = False - def __init__(self, cursor=None): + def __init__(self, + cursor=None): self._cursor_value = bb.NOT_SET if cursor is not None: self.cursor = cursor @@ -6572,14 +6200,10 @@ def __init__(self, cursor=None): cursor = bb.Attribute("cursor", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListTeamAppsArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ListTeamAppsArg, self)._process_custom_annotations(annotation_type, field_path, processor) ListTeamAppsArg_validator = bv.Struct(ListTeamAppsArg) - class ListTeamAppsError(bb.Union): """ Error returned by @@ -6595,7 +6219,7 @@ class ListTeamAppsError(bb.Union): again with an empty cursor to obtain a new cursor. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition reset = None # Attribute is overwritten below the class definition @@ -6607,7 +6231,7 @@ def is_reset(self): :rtype: bool """ - return self._tag == "reset" + return self._tag == 'reset' def is_other(self): """ @@ -6615,17 +6239,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListTeamAppsError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ListTeamAppsError, self)._process_custom_annotations(annotation_type, field_path, processor) ListTeamAppsError_validator = bv.Union(ListTeamAppsError) - class ListTeamAppsResult(bb.Struct): """ Information returned by @@ -6644,14 +6264,17 @@ class ListTeamAppsResult(bb.Struct): """ __slots__ = [ - "_apps_value", - "_has_more_value", - "_cursor_value", + '_apps_value', + '_has_more_value', + '_cursor_value', ] _has_required_fields = True - def __init__(self, apps=None, has_more=None, cursor=None): + def __init__(self, + apps=None, + has_more=None, + cursor=None): self._apps_value = bb.NOT_SET self._has_more_value = bb.NOT_SET self._cursor_value = bb.NOT_SET @@ -6672,14 +6295,10 @@ def __init__(self, apps=None, has_more=None, cursor=None): cursor = bb.Attribute("cursor", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListTeamAppsResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ListTeamAppsResult, self)._process_custom_annotations(annotation_type, field_path, processor) ListTeamAppsResult_validator = bv.Struct(ListTeamAppsResult) - class ListTeamDevicesArg(bb.Struct): """ :ivar ListTeamDevicesArg.cursor: @@ -6697,21 +6316,19 @@ class ListTeamDevicesArg(bb.Struct): """ __slots__ = [ - "_cursor_value", - "_include_web_sessions_value", - "_include_desktop_clients_value", - "_include_mobile_clients_value", + '_cursor_value', + '_include_web_sessions_value', + '_include_desktop_clients_value', + '_include_mobile_clients_value', ] _has_required_fields = False - def __init__( - self, - cursor=None, - include_web_sessions=None, - include_desktop_clients=None, - include_mobile_clients=None, - ): + def __init__(self, + cursor=None, + include_web_sessions=None, + include_desktop_clients=None, + include_mobile_clients=None): self._cursor_value = bb.NOT_SET self._include_web_sessions_value = bb.NOT_SET self._include_desktop_clients_value = bb.NOT_SET @@ -6738,14 +6355,10 @@ def __init__( include_mobile_clients = bb.Attribute("include_mobile_clients") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListTeamDevicesArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ListTeamDevicesArg, self)._process_custom_annotations(annotation_type, field_path, processor) ListTeamDevicesArg_validator = bv.Struct(ListTeamDevicesArg) - class ListTeamDevicesError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -6758,7 +6371,7 @@ class ListTeamDevicesError(bb.Union): again with an empty cursor to obtain a new cursor. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition reset = None # Attribute is overwritten below the class definition @@ -6770,7 +6383,7 @@ def is_reset(self): :rtype: bool """ - return self._tag == "reset" + return self._tag == 'reset' def is_other(self): """ @@ -6778,17 +6391,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListTeamDevicesError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ListTeamDevicesError, self)._process_custom_annotations(annotation_type, field_path, processor) ListTeamDevicesError_validator = bv.Union(ListTeamDevicesError) - class ListTeamDevicesResult(bb.Struct): """ :ivar ListTeamDevicesResult.devices: @@ -6804,14 +6413,17 @@ class ListTeamDevicesResult(bb.Struct): """ __slots__ = [ - "_devices_value", - "_has_more_value", - "_cursor_value", + '_devices_value', + '_has_more_value', + '_cursor_value', ] _has_required_fields = True - def __init__(self, devices=None, has_more=None, cursor=None): + def __init__(self, + devices=None, + has_more=None, + cursor=None): self._devices_value = bb.NOT_SET self._has_more_value = bb.NOT_SET self._cursor_value = bb.NOT_SET @@ -6832,14 +6444,10 @@ def __init__(self, devices=None, has_more=None, cursor=None): cursor = bb.Attribute("cursor", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListTeamDevicesResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ListTeamDevicesResult, self)._process_custom_annotations(annotation_type, field_path, processor) ListTeamDevicesResult_validator = bv.Struct(ListTeamDevicesResult) - class MemberAccess(bb.Struct): """ Specify access type a member should have when joined to a group. @@ -6851,13 +6459,15 @@ class MemberAccess(bb.Struct): """ __slots__ = [ - "_user_value", - "_access_type_value", + '_user_value', + '_access_type_value', ] _has_required_fields = True - def __init__(self, user=None, access_type=None): + def __init__(self, + user=None, + access_type=None): self._user_value = bb.NOT_SET self._access_type_value = bb.NOT_SET if user is not None: @@ -6872,14 +6482,10 @@ def __init__(self, user=None, access_type=None): access_type = bb.Attribute("access_type", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberAccess, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MemberAccess, self)._process_custom_annotations(annotation_type, field_path, processor) MemberAccess_validator = bv.Struct(MemberAccess) - class MemberAddArgBase(bb.Struct): """ :ivar MemberAddArgBase.member_given_name: @@ -6901,27 +6507,25 @@ class MemberAddArgBase(bb.Struct): """ __slots__ = [ - "_member_email_value", - "_member_given_name_value", - "_member_surname_value", - "_member_external_id_value", - "_member_persistent_id_value", - "_send_welcome_email_value", - "_is_directory_restricted_value", + '_member_email_value', + '_member_given_name_value', + '_member_surname_value', + '_member_external_id_value', + '_member_persistent_id_value', + '_send_welcome_email_value', + '_is_directory_restricted_value', ] _has_required_fields = True - def __init__( - self, - member_email=None, - member_given_name=None, - member_surname=None, - member_external_id=None, - member_persistent_id=None, - send_welcome_email=None, - is_directory_restricted=None, - ): + def __init__(self, + member_email=None, + member_given_name=None, + member_surname=None, + member_external_id=None, + member_persistent_id=None, + send_welcome_email=None, + is_directory_restricted=None): self._member_email_value = bb.NOT_SET self._member_given_name_value = bb.NOT_SET self._member_surname_value = bb.NOT_SET @@ -6966,41 +6570,34 @@ def __init__( is_directory_restricted = bb.Attribute("is_directory_restricted", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberAddArgBase, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MemberAddArgBase, self)._process_custom_annotations(annotation_type, field_path, processor) MemberAddArgBase_validator = bv.Struct(MemberAddArgBase) - class MemberAddArg(MemberAddArgBase): + __slots__ = [ - "_role_value", + '_role_value', ] _has_required_fields = True - def __init__( - self, - member_email=None, - member_given_name=None, - member_surname=None, - member_external_id=None, - member_persistent_id=None, - send_welcome_email=None, - is_directory_restricted=None, - role=None, - ): - super(MemberAddArg, self).__init__( - member_email, - member_given_name, - member_surname, - member_external_id, - member_persistent_id, - send_welcome_email, - is_directory_restricted, - ) + def __init__(self, + member_email=None, + member_given_name=None, + member_surname=None, + member_external_id=None, + member_persistent_id=None, + send_welcome_email=None, + is_directory_restricted=None, + role=None): + super(MemberAddArg, self).__init__(member_email, + member_given_name, + member_surname, + member_external_id, + member_persistent_id, + send_welcome_email, + is_directory_restricted) self._role_value = bb.NOT_SET if role is not None: self.role = role @@ -7009,14 +6606,10 @@ def __init__( role = bb.Attribute("role", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberAddArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MemberAddArg, self)._process_custom_annotations(annotation_type, field_path, processor) MemberAddArg_validator = bv.Struct(MemberAddArg) - class MemberAddResultBase(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -7073,7 +6666,7 @@ def team_license_limit(cls, val): :param str val: :rtype: MemberAddResultBase """ - return cls("team_license_limit", val) + return cls('team_license_limit', val) @classmethod def free_team_member_limit_reached(cls, val): @@ -7084,7 +6677,7 @@ def free_team_member_limit_reached(cls, val): :param str val: :rtype: MemberAddResultBase """ - return cls("free_team_member_limit_reached", val) + return cls('free_team_member_limit_reached', val) @classmethod def user_already_on_team(cls, val): @@ -7095,7 +6688,7 @@ def user_already_on_team(cls, val): :param str val: :rtype: MemberAddResultBase """ - return cls("user_already_on_team", val) + return cls('user_already_on_team', val) @classmethod def user_on_another_team(cls, val): @@ -7106,7 +6699,7 @@ def user_on_another_team(cls, val): :param str val: :rtype: MemberAddResultBase """ - return cls("user_on_another_team", val) + return cls('user_on_another_team', val) @classmethod def user_already_paired(cls, val): @@ -7117,7 +6710,7 @@ def user_already_paired(cls, val): :param str val: :rtype: MemberAddResultBase """ - return cls("user_already_paired", val) + return cls('user_already_paired', val) @classmethod def user_migration_failed(cls, val): @@ -7128,7 +6721,7 @@ def user_migration_failed(cls, val): :param str val: :rtype: MemberAddResultBase """ - return cls("user_migration_failed", val) + return cls('user_migration_failed', val) @classmethod def duplicate_external_member_id(cls, val): @@ -7139,7 +6732,7 @@ def duplicate_external_member_id(cls, val): :param str val: :rtype: MemberAddResultBase """ - return cls("duplicate_external_member_id", val) + return cls('duplicate_external_member_id', val) @classmethod def duplicate_member_persistent_id(cls, val): @@ -7150,7 +6743,7 @@ def duplicate_member_persistent_id(cls, val): :param str val: :rtype: MemberAddResultBase """ - return cls("duplicate_member_persistent_id", val) + return cls('duplicate_member_persistent_id', val) @classmethod def persistent_id_disabled(cls, val): @@ -7161,7 +6754,7 @@ def persistent_id_disabled(cls, val): :param str val: :rtype: MemberAddResultBase """ - return cls("persistent_id_disabled", val) + return cls('persistent_id_disabled', val) @classmethod def user_creation_failed(cls, val): @@ -7172,7 +6765,7 @@ def user_creation_failed(cls, val): :param str val: :rtype: MemberAddResultBase """ - return cls("user_creation_failed", val) + return cls('user_creation_failed', val) def is_team_license_limit(self): """ @@ -7180,7 +6773,7 @@ def is_team_license_limit(self): :rtype: bool """ - return self._tag == "team_license_limit" + return self._tag == 'team_license_limit' def is_free_team_member_limit_reached(self): """ @@ -7188,7 +6781,7 @@ def is_free_team_member_limit_reached(self): :rtype: bool """ - return self._tag == "free_team_member_limit_reached" + return self._tag == 'free_team_member_limit_reached' def is_user_already_on_team(self): """ @@ -7196,7 +6789,7 @@ def is_user_already_on_team(self): :rtype: bool """ - return self._tag == "user_already_on_team" + return self._tag == 'user_already_on_team' def is_user_on_another_team(self): """ @@ -7204,7 +6797,7 @@ def is_user_on_another_team(self): :rtype: bool """ - return self._tag == "user_on_another_team" + return self._tag == 'user_on_another_team' def is_user_already_paired(self): """ @@ -7212,7 +6805,7 @@ def is_user_already_paired(self): :rtype: bool """ - return self._tag == "user_already_paired" + return self._tag == 'user_already_paired' def is_user_migration_failed(self): """ @@ -7220,7 +6813,7 @@ def is_user_migration_failed(self): :rtype: bool """ - return self._tag == "user_migration_failed" + return self._tag == 'user_migration_failed' def is_duplicate_external_member_id(self): """ @@ -7228,7 +6821,7 @@ def is_duplicate_external_member_id(self): :rtype: bool """ - return self._tag == "duplicate_external_member_id" + return self._tag == 'duplicate_external_member_id' def is_duplicate_member_persistent_id(self): """ @@ -7236,7 +6829,7 @@ def is_duplicate_member_persistent_id(self): :rtype: bool """ - return self._tag == "duplicate_member_persistent_id" + return self._tag == 'duplicate_member_persistent_id' def is_persistent_id_disabled(self): """ @@ -7244,7 +6837,7 @@ def is_persistent_id_disabled(self): :rtype: bool """ - return self._tag == "persistent_id_disabled" + return self._tag == 'persistent_id_disabled' def is_user_creation_failed(self): """ @@ -7252,7 +6845,7 @@ def is_user_creation_failed(self): :rtype: bool """ - return self._tag == "user_creation_failed" + return self._tag == 'user_creation_failed' def get_team_license_limit(self): """ @@ -7382,14 +6975,10 @@ def get_user_creation_failed(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberAddResultBase, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MemberAddResultBase, self)._process_custom_annotations(annotation_type, field_path, processor) MemberAddResultBase_validator = bv.Union(MemberAddResultBase) - class MemberAddResult(MemberAddResultBase): """ Describes the result of attempting to add a single user to the team. @@ -7415,7 +7004,7 @@ def success(cls, val): :param TeamMemberInfo val: :rtype: MemberAddResult """ - return cls("success", val) + return cls('success', val) def is_success(self): """ @@ -7423,7 +7012,7 @@ def is_success(self): :rtype: bool """ - return self._tag == "success" + return self._tag == 'success' def get_success(self): """ @@ -7438,41 +7027,34 @@ def get_success(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberAddResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MemberAddResult, self)._process_custom_annotations(annotation_type, field_path, processor) MemberAddResult_validator = bv.Union(MemberAddResult) - class MemberAddV2Arg(MemberAddArgBase): + __slots__ = [ - "_role_ids_value", + '_role_ids_value', ] _has_required_fields = True - def __init__( - self, - member_email=None, - member_given_name=None, - member_surname=None, - member_external_id=None, - member_persistent_id=None, - send_welcome_email=None, - is_directory_restricted=None, - role_ids=None, - ): - super(MemberAddV2Arg, self).__init__( - member_email, - member_given_name, - member_surname, - member_external_id, - member_persistent_id, - send_welcome_email, - is_directory_restricted, - ) + def __init__(self, + member_email=None, + member_given_name=None, + member_surname=None, + member_external_id=None, + member_persistent_id=None, + send_welcome_email=None, + is_directory_restricted=None, + role_ids=None): + super(MemberAddV2Arg, self).__init__(member_email, + member_given_name, + member_surname, + member_external_id, + member_persistent_id, + send_welcome_email, + is_directory_restricted) self._role_ids_value = bb.NOT_SET if role_ids is not None: self.role_ids = role_ids @@ -7481,14 +7063,10 @@ def __init__( role_ids = bb.Attribute("role_ids", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberAddV2Arg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MemberAddV2Arg, self)._process_custom_annotations(annotation_type, field_path, processor) MemberAddV2Arg_validator = bv.Struct(MemberAddV2Arg) - class MemberAddV2Result(MemberAddResultBase): """ Describes the result of attempting to add a single user to the team. @@ -7505,7 +7083,7 @@ class MemberAddV2Result(MemberAddResultBase): :vartype MemberAddV2Result.success: TeamMemberInfoV2 """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -7518,7 +7096,7 @@ def success(cls, val): :param TeamMemberInfoV2 val: :rtype: MemberAddV2Result """ - return cls("success", val) + return cls('success', val) def is_success(self): """ @@ -7526,7 +7104,7 @@ def is_success(self): :rtype: bool """ - return self._tag == "success" + return self._tag == 'success' def is_other(self): """ @@ -7534,7 +7112,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_success(self): """ @@ -7549,14 +7127,10 @@ def get_success(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberAddV2Result, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MemberAddV2Result, self)._process_custom_annotations(annotation_type, field_path, processor) MemberAddV2Result_validator = bv.Union(MemberAddV2Result) - class MemberDevices(bb.Struct): """ Information on devices of a team's member. @@ -7572,21 +7146,19 @@ class MemberDevices(bb.Struct): """ __slots__ = [ - "_team_member_id_value", - "_web_sessions_value", - "_desktop_clients_value", - "_mobile_clients_value", + '_team_member_id_value', + '_web_sessions_value', + '_desktop_clients_value', + '_mobile_clients_value', ] _has_required_fields = True - def __init__( - self, - team_member_id=None, - web_sessions=None, - desktop_clients=None, - mobile_clients=None, - ): + def __init__(self, + team_member_id=None, + web_sessions=None, + desktop_clients=None, + mobile_clients=None): self._team_member_id_value = bb.NOT_SET self._web_sessions_value = bb.NOT_SET self._desktop_clients_value = bb.NOT_SET @@ -7613,14 +7185,10 @@ def __init__( mobile_clients = bb.Attribute("mobile_clients", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberDevices, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MemberDevices, self)._process_custom_annotations(annotation_type, field_path, processor) MemberDevices_validator = bv.Struct(MemberDevices) - class MemberLinkedApps(bb.Struct): """ Information on linked applications of a team member. @@ -7632,13 +7200,15 @@ class MemberLinkedApps(bb.Struct): """ __slots__ = [ - "_team_member_id_value", - "_linked_api_apps_value", + '_team_member_id_value', + '_linked_api_apps_value', ] _has_required_fields = True - def __init__(self, team_member_id=None, linked_api_apps=None): + def __init__(self, + team_member_id=None, + linked_api_apps=None): self._team_member_id_value = bb.NOT_SET self._linked_api_apps_value = bb.NOT_SET if team_member_id is not None: @@ -7653,14 +7223,10 @@ def __init__(self, team_member_id=None, linked_api_apps=None): linked_api_apps = bb.Attribute("linked_api_apps") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberLinkedApps, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MemberLinkedApps, self)._process_custom_annotations(annotation_type, field_path, processor) MemberLinkedApps_validator = bv.Struct(MemberLinkedApps) - class MemberProfile(bb.Struct): """ Basic member profile. @@ -7704,43 +7270,41 @@ class MemberProfile(bb.Struct): """ __slots__ = [ - "_team_member_id_value", - "_external_id_value", - "_account_id_value", - "_email_value", - "_email_verified_value", - "_secondary_emails_value", - "_status_value", - "_name_value", - "_membership_type_value", - "_invited_on_value", - "_joined_on_value", - "_suspended_on_value", - "_persistent_id_value", - "_is_directory_restricted_value", - "_profile_photo_url_value", + '_team_member_id_value', + '_external_id_value', + '_account_id_value', + '_email_value', + '_email_verified_value', + '_secondary_emails_value', + '_status_value', + '_name_value', + '_membership_type_value', + '_invited_on_value', + '_joined_on_value', + '_suspended_on_value', + '_persistent_id_value', + '_is_directory_restricted_value', + '_profile_photo_url_value', ] _has_required_fields = True - def __init__( - self, - team_member_id=None, - email=None, - email_verified=None, - status=None, - name=None, - membership_type=None, - external_id=None, - account_id=None, - secondary_emails=None, - invited_on=None, - joined_on=None, - suspended_on=None, - persistent_id=None, - is_directory_restricted=None, - profile_photo_url=None, - ): + def __init__(self, + team_member_id=None, + email=None, + email_verified=None, + status=None, + name=None, + membership_type=None, + external_id=None, + account_id=None, + secondary_emails=None, + invited_on=None, + joined_on=None, + suspended_on=None, + persistent_id=None, + is_directory_restricted=None, + profile_photo_url=None): self._team_member_id_value = bb.NOT_SET self._external_id_value = bb.NOT_SET self._account_id_value = bb.NOT_SET @@ -7833,14 +7397,10 @@ def __init__( profile_photo_url = bb.Attribute("profile_photo_url", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberProfile, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MemberProfile, self)._process_custom_annotations(annotation_type, field_path, processor) MemberProfile_validator = bv.Struct(MemberProfile) - class UserSelectorError(bb.Union): """ Error that can be returned whenever a struct derived from @@ -7865,17 +7425,13 @@ def is_user_not_found(self): :rtype: bool """ - return self._tag == "user_not_found" + return self._tag == 'user_not_found' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UserSelectorError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UserSelectorError, self)._process_custom_annotations(annotation_type, field_path, processor) UserSelectorError_validator = bv.Union(UserSelectorError) - class MemberSelectorError(UserSelectorError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -7895,17 +7451,13 @@ def is_user_not_in_team(self): :rtype: bool """ - return self._tag == "user_not_in_team" + return self._tag == 'user_not_in_team' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberSelectorError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MemberSelectorError, self)._process_custom_annotations(annotation_type, field_path, processor) MemberSelectorError_validator = bv.Union(MemberSelectorError) - class MembersAddArgBase(bb.Struct): """ :ivar MembersAddArgBase.force_async: @@ -7913,12 +7465,13 @@ class MembersAddArgBase(bb.Struct): """ __slots__ = [ - "_force_async_value", + '_force_async_value', ] _has_required_fields = False - def __init__(self, force_async=None): + def __init__(self, + force_async=None): self._force_async_value = bb.NOT_SET if force_async is not None: self.force_async = force_async @@ -7927,14 +7480,10 @@ def __init__(self, force_async=None): force_async = bb.Attribute("force_async") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersAddArgBase, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MembersAddArgBase, self)._process_custom_annotations(annotation_type, field_path, processor) MembersAddArgBase_validator = bv.Struct(MembersAddArgBase) - class MembersAddArg(MembersAddArgBase): """ :ivar MembersAddArg.new_members: @@ -7942,12 +7491,14 @@ class MembersAddArg(MembersAddArgBase): """ __slots__ = [ - "_new_members_value", + '_new_members_value', ] _has_required_fields = True - def __init__(self, new_members=None, force_async=None): + def __init__(self, + new_members=None, + force_async=None): super(MembersAddArg, self).__init__(force_async) self._new_members_value = bb.NOT_SET if new_members is not None: @@ -7957,14 +7508,10 @@ def __init__(self, new_members=None, force_async=None): new_members = bb.Attribute("new_members") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersAddArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MembersAddArg, self)._process_custom_annotations(annotation_type, field_path, processor) MembersAddArg_validator = bv.Struct(MembersAddArg) - class MembersAddJobStatus(async_.PollResultBase): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -7992,7 +7539,7 @@ def complete(cls, val): :param list of [MemberAddResult] val: :rtype: MembersAddJobStatus """ - return cls("complete", val) + return cls('complete', val) @classmethod def failed(cls, val): @@ -8003,7 +7550,7 @@ def failed(cls, val): :param str val: :rtype: MembersAddJobStatus """ - return cls("failed", val) + return cls('failed', val) def is_complete(self): """ @@ -8011,7 +7558,7 @@ def is_complete(self): :rtype: bool """ - return self._tag == "complete" + return self._tag == 'complete' def is_failed(self): """ @@ -8019,7 +7566,7 @@ def is_failed(self): :rtype: bool """ - return self._tag == "failed" + return self._tag == 'failed' def get_complete(self): """ @@ -8050,14 +7597,10 @@ def get_failed(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersAddJobStatus, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MembersAddJobStatus, self)._process_custom_annotations(annotation_type, field_path, processor) MembersAddJobStatus_validator = bv.Union(MembersAddJobStatus) - class MembersAddJobStatusV2Result(async_.PollResultBase): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -8076,7 +7619,7 @@ class MembersAddJobStatusV2Result(async_.PollResultBase): :vartype MembersAddJobStatusV2Result.failed: str """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -8089,7 +7632,7 @@ def complete(cls, val): :param list of [MemberAddV2Result] val: :rtype: MembersAddJobStatusV2Result """ - return cls("complete", val) + return cls('complete', val) @classmethod def failed(cls, val): @@ -8100,7 +7643,7 @@ def failed(cls, val): :param str val: :rtype: MembersAddJobStatusV2Result """ - return cls("failed", val) + return cls('failed', val) def is_complete(self): """ @@ -8108,7 +7651,7 @@ def is_complete(self): :rtype: bool """ - return self._tag == "complete" + return self._tag == 'complete' def is_failed(self): """ @@ -8116,7 +7659,7 @@ def is_failed(self): :rtype: bool """ - return self._tag == "failed" + return self._tag == 'failed' def is_other(self): """ @@ -8124,7 +7667,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_complete(self): """ @@ -8155,14 +7698,10 @@ def get_failed(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersAddJobStatusV2Result, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MembersAddJobStatusV2Result, self)._process_custom_annotations(annotation_type, field_path, processor) MembersAddJobStatusV2Result_validator = bv.Union(MembersAddJobStatusV2Result) - class MembersAddLaunch(async_.LaunchResultBase): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -8179,7 +7718,7 @@ def complete(cls, val): :param list of [MemberAddResult] val: :rtype: MembersAddLaunch """ - return cls("complete", val) + return cls('complete', val) def is_complete(self): """ @@ -8187,7 +7726,7 @@ def is_complete(self): :rtype: bool """ - return self._tag == "complete" + return self._tag == 'complete' def get_complete(self): """ @@ -8200,14 +7739,10 @@ def get_complete(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersAddLaunch, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MembersAddLaunch, self)._process_custom_annotations(annotation_type, field_path, processor) MembersAddLaunch_validator = bv.Union(MembersAddLaunch) - class MembersAddLaunchV2Result(async_.LaunchResultBase): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -8215,7 +7750,7 @@ class MembersAddLaunchV2Result(async_.LaunchResultBase): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -8228,7 +7763,7 @@ def complete(cls, val): :param list of [MemberAddV2Result] val: :rtype: MembersAddLaunchV2Result """ - return cls("complete", val) + return cls('complete', val) def is_complete(self): """ @@ -8236,7 +7771,7 @@ def is_complete(self): :rtype: bool """ - return self._tag == "complete" + return self._tag == 'complete' def is_other(self): """ @@ -8244,7 +7779,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_complete(self): """ @@ -8257,14 +7792,10 @@ def get_complete(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersAddLaunchV2Result, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MembersAddLaunchV2Result, self)._process_custom_annotations(annotation_type, field_path, processor) MembersAddLaunchV2Result_validator = bv.Union(MembersAddLaunchV2Result) - class MembersAddV2Arg(MembersAddArgBase): """ :ivar MembersAddV2Arg.new_members: @@ -8272,12 +7803,14 @@ class MembersAddV2Arg(MembersAddArgBase): """ __slots__ = [ - "_new_members_value", + '_new_members_value', ] _has_required_fields = True - def __init__(self, new_members=None, force_async=None): + def __init__(self, + new_members=None, + force_async=None): super(MembersAddV2Arg, self).__init__(force_async) self._new_members_value = bb.NOT_SET if new_members is not None: @@ -8287,14 +7820,10 @@ def __init__(self, new_members=None, force_async=None): new_members = bb.Attribute("new_members") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersAddV2Arg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MembersAddV2Arg, self)._process_custom_annotations(annotation_type, field_path, processor) MembersAddV2Arg_validator = bv.Struct(MembersAddV2Arg) - class MembersDeactivateBaseArg(bb.Struct): """ Exactly one of team_member_id, email, or external_id must be provided to @@ -8305,12 +7834,13 @@ class MembersDeactivateBaseArg(bb.Struct): """ __slots__ = [ - "_user_value", + '_user_value', ] _has_required_fields = True - def __init__(self, user=None): + def __init__(self, + user=None): self._user_value = bb.NOT_SET if user is not None: self.user = user @@ -8319,14 +7849,10 @@ def __init__(self, user=None): user = bb.Attribute("user", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersDeactivateBaseArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MembersDeactivateBaseArg, self)._process_custom_annotations(annotation_type, field_path, processor) MembersDeactivateBaseArg_validator = bv.Struct(MembersDeactivateBaseArg) - class MembersDataTransferArg(MembersDeactivateBaseArg): """ :ivar MembersDataTransferArg.transfer_dest_id: @@ -8336,13 +7862,16 @@ class MembersDataTransferArg(MembersDeactivateBaseArg): """ __slots__ = [ - "_transfer_dest_id_value", - "_transfer_admin_id_value", + '_transfer_dest_id_value', + '_transfer_admin_id_value', ] _has_required_fields = True - def __init__(self, user=None, transfer_dest_id=None, transfer_admin_id=None): + def __init__(self, + user=None, + transfer_dest_id=None, + transfer_admin_id=None): super(MembersDataTransferArg, self).__init__(user) self._transfer_dest_id_value = bb.NOT_SET self._transfer_admin_id_value = bb.NOT_SET @@ -8358,14 +7887,10 @@ def __init__(self, user=None, transfer_dest_id=None, transfer_admin_id=None): transfer_admin_id = bb.Attribute("transfer_admin_id", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersDataTransferArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MembersDataTransferArg, self)._process_custom_annotations(annotation_type, field_path, processor) MembersDataTransferArg_validator = bv.Struct(MembersDataTransferArg) - class MembersDeactivateArg(MembersDeactivateBaseArg): """ :ivar MembersDeactivateArg.wipe_data: @@ -8374,12 +7899,14 @@ class MembersDeactivateArg(MembersDeactivateBaseArg): """ __slots__ = [ - "_wipe_data_value", + '_wipe_data_value', ] _has_required_fields = True - def __init__(self, user=None, wipe_data=None): + def __init__(self, + user=None, + wipe_data=None): super(MembersDeactivateArg, self).__init__(user) self._wipe_data_value = bb.NOT_SET if wipe_data is not None: @@ -8389,14 +7916,10 @@ def __init__(self, user=None, wipe_data=None): wipe_data = bb.Attribute("wipe_data") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersDeactivateArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MembersDeactivateArg, self)._process_custom_annotations(annotation_type, field_path, processor) MembersDeactivateArg_validator = bv.Struct(MembersDeactivateArg) - class MembersDeactivateError(UserSelectorError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -8407,7 +7930,7 @@ class MembersDeactivateError(UserSelectorError): The user is not a member of the team. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition user_not_in_team = None # Attribute is overwritten below the class definition @@ -8419,7 +7942,7 @@ def is_user_not_in_team(self): :rtype: bool """ - return self._tag == "user_not_in_team" + return self._tag == 'user_not_in_team' def is_other(self): """ @@ -8427,17 +7950,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersDeactivateError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MembersDeactivateError, self)._process_custom_annotations(annotation_type, field_path, processor) MembersDeactivateError_validator = bv.Union(MembersDeactivateError) - class MembersPermanentlyDeleteFilesError(MembersDeactivateError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -8466,7 +7985,7 @@ def is_transfer_in_progress(self): :rtype: bool """ - return self._tag == "transfer_in_progress" + return self._tag == 'transfer_in_progress' def is_already_transferred(self): """ @@ -8474,7 +7993,7 @@ def is_already_transferred(self): :rtype: bool """ - return self._tag == "already_transferred" + return self._tag == 'already_transferred' def is_already_transferred_or_deleted(self): """ @@ -8482,17 +8001,13 @@ def is_already_transferred_or_deleted(self): :rtype: bool """ - return self._tag == "already_transferred_or_deleted" + return self._tag == 'already_transferred_or_deleted' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersPermanentlyDeleteFilesError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MembersPermanentlyDeleteFilesError, self)._process_custom_annotations(annotation_type, field_path, processor) MembersPermanentlyDeleteFilesError_validator = bv.Union(MembersPermanentlyDeleteFilesError) - class MembersDeleteFormerMemberFilesError(MembersPermanentlyDeleteFilesError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -8512,17 +8027,13 @@ def is_user_not_removed(self): :rtype: bool """ - return self._tag == "user_not_removed" + return self._tag == 'user_not_removed' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersDeleteFormerMemberFilesError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MembersDeleteFormerMemberFilesError, self)._process_custom_annotations(annotation_type, field_path, processor) MembersDeleteFormerMemberFilesError_validator = bv.Union(MembersDeleteFormerMemberFilesError) - class MembersDeleteProfilePhotoArg(bb.Struct): """ :ivar MembersDeleteProfilePhotoArg.user: @@ -8530,12 +8041,13 @@ class MembersDeleteProfilePhotoArg(bb.Struct): """ __slots__ = [ - "_user_value", + '_user_value', ] _has_required_fields = True - def __init__(self, user=None): + def __init__(self, + user=None): self._user_value = bb.NOT_SET if user is not None: self.user = user @@ -8544,14 +8056,10 @@ def __init__(self, user=None): user = bb.Attribute("user", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersDeleteProfilePhotoArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MembersDeleteProfilePhotoArg, self)._process_custom_annotations(annotation_type, field_path, processor) MembersDeleteProfilePhotoArg_validator = bv.Struct(MembersDeleteProfilePhotoArg) - class MembersDeleteProfilePhotoError(MemberSelectorError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -8562,7 +8070,7 @@ class MembersDeleteProfilePhotoError(MemberSelectorError): Modifying deleted users is not allowed. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition set_profile_disallowed = None # Attribute is overwritten below the class definition @@ -8574,7 +8082,7 @@ def is_set_profile_disallowed(self): :rtype: bool """ - return self._tag == "set_profile_disallowed" + return self._tag == 'set_profile_disallowed' def is_other(self): """ @@ -8582,17 +8090,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersDeleteProfilePhotoError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MembersDeleteProfilePhotoError, self)._process_custom_annotations(annotation_type, field_path, processor) MembersDeleteProfilePhotoError_validator = bv.Union(MembersDeleteProfilePhotoError) - class MembersFormerMemberArg(bb.Struct): """ Exactly one of team_member_id, email, or external_id must be provided to @@ -8603,12 +8107,13 @@ class MembersFormerMemberArg(bb.Struct): """ __slots__ = [ - "_user_value", + '_user_value', ] _has_required_fields = True - def __init__(self, user=None): + def __init__(self, + user=None): self._user_value = bb.NOT_SET if user is not None: self.user = user @@ -8617,14 +8122,10 @@ def __init__(self, user=None): user = bb.Attribute("user", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersFormerMemberArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MembersFormerMemberArg, self)._process_custom_annotations(annotation_type, field_path, processor) MembersFormerMemberArg_validator = bv.Struct(MembersFormerMemberArg) - class MembersGetAvailableTeamMemberRolesResult(bb.Struct): """ Available TeamMemberRole for the connected team. To be used with @@ -8635,12 +8136,13 @@ class MembersGetAvailableTeamMemberRolesResult(bb.Struct): """ __slots__ = [ - "_roles_value", + '_roles_value', ] _has_required_fields = True - def __init__(self, roles=None): + def __init__(self, + roles=None): self._roles_value = bb.NOT_SET if roles is not None: self.roles = roles @@ -8649,15 +8151,9 @@ def __init__(self, roles=None): 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 - ) - - -MembersGetAvailableTeamMemberRolesResult_validator = bv.Struct( - MembersGetAvailableTeamMemberRolesResult -) + super(MembersGetAvailableTeamMemberRolesResult, self)._process_custom_annotations(annotation_type, field_path, processor) +MembersGetAvailableTeamMemberRolesResult_validator = bv.Struct(MembersGetAvailableTeamMemberRolesResult) class MembersGetInfoArgs(bb.Struct): """ @@ -8666,12 +8162,13 @@ class MembersGetInfoArgs(bb.Struct): """ __slots__ = [ - "_members_value", + '_members_value', ] _has_required_fields = True - def __init__(self, members=None): + def __init__(self, + members=None): self._members_value = bb.NOT_SET if members is not None: self.members = members @@ -8680,14 +8177,10 @@ def __init__(self, members=None): members = bb.Attribute("members") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersGetInfoArgs, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MembersGetInfoArgs, self)._process_custom_annotations(annotation_type, field_path, processor) MembersGetInfoArgs_validator = bv.Struct(MembersGetInfoArgs) - class MembersGetInfoError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -8695,7 +8188,7 @@ class MembersGetInfoError(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -8705,17 +8198,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersGetInfoError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MembersGetInfoError, self)._process_custom_annotations(annotation_type, field_path, processor) MembersGetInfoError_validator = bv.Union(MembersGetInfoError) - class MembersGetInfoItemBase(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -8742,7 +8231,7 @@ def id_not_found(cls, val): :param str val: :rtype: MembersGetInfoItemBase """ - return cls("id_not_found", val) + return cls('id_not_found', val) def is_id_not_found(self): """ @@ -8750,7 +8239,7 @@ def is_id_not_found(self): :rtype: bool """ - return self._tag == "id_not_found" + return self._tag == 'id_not_found' def get_id_not_found(self): """ @@ -8769,14 +8258,10 @@ def get_id_not_found(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersGetInfoItemBase, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MembersGetInfoItemBase, self)._process_custom_annotations(annotation_type, field_path, processor) MembersGetInfoItemBase_validator = bv.Union(MembersGetInfoItemBase) - class MembersGetInfoItem(MembersGetInfoItemBase): """ Describes a result obtained for a single user whose id was specified in the @@ -8800,7 +8285,7 @@ def member_info(cls, val): :param TeamMemberInfo val: :rtype: MembersGetInfoItem """ - return cls("member_info", val) + return cls('member_info', val) def is_member_info(self): """ @@ -8808,7 +8293,7 @@ def is_member_info(self): :rtype: bool """ - return self._tag == "member_info" + return self._tag == 'member_info' def get_member_info(self): """ @@ -8823,14 +8308,10 @@ def get_member_info(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersGetInfoItem, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MembersGetInfoItem, self)._process_custom_annotations(annotation_type, field_path, processor) MembersGetInfoItem_validator = bv.Union(MembersGetInfoItem) - class MembersGetInfoItemV2(MembersGetInfoItemBase): """ Describes a result obtained for a single user whose id was specified in the @@ -8845,7 +8326,7 @@ class MembersGetInfoItemV2(MembersGetInfoItemBase): :vartype MembersGetInfoItemV2.member_info: TeamMemberInfoV2 """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -8858,7 +8339,7 @@ def member_info(cls, val): :param TeamMemberInfoV2 val: :rtype: MembersGetInfoItemV2 """ - return cls("member_info", val) + return cls('member_info', val) def is_member_info(self): """ @@ -8866,7 +8347,7 @@ def is_member_info(self): :rtype: bool """ - return self._tag == "member_info" + return self._tag == 'member_info' def is_other(self): """ @@ -8874,7 +8355,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_member_info(self): """ @@ -8889,14 +8370,10 @@ def get_member_info(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersGetInfoItemV2, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MembersGetInfoItemV2, self)._process_custom_annotations(annotation_type, field_path, processor) MembersGetInfoItemV2_validator = bv.Union(MembersGetInfoItemV2) - class MembersGetInfoV2Arg(bb.Struct): """ :ivar MembersGetInfoV2Arg.members: @@ -8904,12 +8381,13 @@ class MembersGetInfoV2Arg(bb.Struct): """ __slots__ = [ - "_members_value", + '_members_value', ] _has_required_fields = True - def __init__(self, members=None): + def __init__(self, + members=None): self._members_value = bb.NOT_SET if members is not None: self.members = members @@ -8918,14 +8396,10 @@ def __init__(self, members=None): members = bb.Attribute("members") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersGetInfoV2Arg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MembersGetInfoV2Arg, self)._process_custom_annotations(annotation_type, field_path, processor) MembersGetInfoV2Arg_validator = bv.Struct(MembersGetInfoV2Arg) - class MembersGetInfoV2Result(bb.Struct): """ :ivar MembersGetInfoV2Result.members_info: @@ -8933,12 +8407,13 @@ class MembersGetInfoV2Result(bb.Struct): """ __slots__ = [ - "_members_info_value", + '_members_info_value', ] _has_required_fields = True - def __init__(self, members_info=None): + def __init__(self, + members_info=None): self._members_info_value = bb.NOT_SET if members_info is not None: self.members_info = members_info @@ -8947,14 +8422,10 @@ def __init__(self, members_info=None): members_info = bb.Attribute("members_info") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersGetInfoV2Result, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MembersGetInfoV2Result, self)._process_custom_annotations(annotation_type, field_path, processor) MembersGetInfoV2Result_validator = bv.Struct(MembersGetInfoV2Result) - class MembersInfo(bb.Struct): """ :ivar MembersInfo.team_member_ids: @@ -8964,13 +8435,15 @@ class MembersInfo(bb.Struct): """ __slots__ = [ - "_team_member_ids_value", - "_permanently_deleted_users_value", + '_team_member_ids_value', + '_permanently_deleted_users_value', ] _has_required_fields = True - def __init__(self, team_member_ids=None, permanently_deleted_users=None): + def __init__(self, + team_member_ids=None, + permanently_deleted_users=None): self._team_member_ids_value = bb.NOT_SET self._permanently_deleted_users_value = bb.NOT_SET if team_member_ids is not None: @@ -8987,10 +8460,8 @@ def __init__(self, team_member_ids=None, permanently_deleted_users=None): def _process_custom_annotations(self, annotation_type, field_path, processor): super(MembersInfo, self)._process_custom_annotations(annotation_type, field_path, processor) - MembersInfo_validator = bv.Struct(MembersInfo) - class MembersListArg(bb.Struct): """ :ivar MembersListArg.limit: @@ -9000,13 +8471,15 @@ class MembersListArg(bb.Struct): """ __slots__ = [ - "_limit_value", - "_include_removed_value", + '_limit_value', + '_include_removed_value', ] _has_required_fields = False - def __init__(self, limit=None, include_removed=None): + def __init__(self, + limit=None, + include_removed=None): self._limit_value = bb.NOT_SET self._include_removed_value = bb.NOT_SET if limit is not None: @@ -9021,14 +8494,10 @@ def __init__(self, limit=None, include_removed=None): include_removed = bb.Attribute("include_removed") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersListArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MembersListArg, self)._process_custom_annotations(annotation_type, field_path, processor) MembersListArg_validator = bv.Struct(MembersListArg) - class MembersListContinueArg(bb.Struct): """ :ivar MembersListContinueArg.cursor: @@ -9036,12 +8505,13 @@ class MembersListContinueArg(bb.Struct): """ __slots__ = [ - "_cursor_value", + '_cursor_value', ] _has_required_fields = True - def __init__(self, cursor=None): + def __init__(self, + cursor=None): self._cursor_value = bb.NOT_SET if cursor is not None: self.cursor = cursor @@ -9050,14 +8520,10 @@ def __init__(self, cursor=None): cursor = bb.Attribute("cursor") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersListContinueArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MembersListContinueArg, self)._process_custom_annotations(annotation_type, field_path, processor) MembersListContinueArg_validator = bv.Struct(MembersListContinueArg) - class MembersListContinueError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -9068,7 +8534,7 @@ class MembersListContinueError(bb.Union): The cursor is invalid. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition invalid_cursor = None # Attribute is overwritten below the class definition @@ -9080,7 +8546,7 @@ def is_invalid_cursor(self): :rtype: bool """ - return self._tag == "invalid_cursor" + return self._tag == 'invalid_cursor' def is_other(self): """ @@ -9088,17 +8554,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersListContinueError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MembersListContinueError, self)._process_custom_annotations(annotation_type, field_path, processor) MembersListContinueError_validator = bv.Union(MembersListContinueError) - class MembersListError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -9106,7 +8568,7 @@ class MembersListError(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -9116,17 +8578,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersListError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MembersListError, self)._process_custom_annotations(annotation_type, field_path, processor) MembersListError_validator = bv.Union(MembersListError) - class MembersListResult(bb.Struct): """ :ivar MembersListResult.members: @@ -9143,14 +8601,17 @@ class MembersListResult(bb.Struct): """ __slots__ = [ - "_members_value", - "_cursor_value", - "_has_more_value", + '_members_value', + '_cursor_value', + '_has_more_value', ] _has_required_fields = True - def __init__(self, members=None, cursor=None, has_more=None): + def __init__(self, + members=None, + cursor=None, + has_more=None): self._members_value = bb.NOT_SET self._cursor_value = bb.NOT_SET self._has_more_value = bb.NOT_SET @@ -9171,14 +8632,10 @@ def __init__(self, members=None, cursor=None, has_more=None): has_more = bb.Attribute("has_more") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersListResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MembersListResult, self)._process_custom_annotations(annotation_type, field_path, processor) MembersListResult_validator = bv.Struct(MembersListResult) - class MembersListV2Result(bb.Struct): """ :ivar MembersListV2Result.members: @@ -9195,14 +8652,17 @@ class MembersListV2Result(bb.Struct): """ __slots__ = [ - "_members_value", - "_cursor_value", - "_has_more_value", + '_members_value', + '_cursor_value', + '_has_more_value', ] _has_required_fields = True - def __init__(self, members=None, cursor=None, has_more=None): + def __init__(self, + members=None, + cursor=None, + has_more=None): self._members_value = bb.NOT_SET self._cursor_value = bb.NOT_SET self._has_more_value = bb.NOT_SET @@ -9223,14 +8683,10 @@ def __init__(self, members=None, cursor=None, has_more=None): has_more = bb.Attribute("has_more") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersListV2Result, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MembersListV2Result, self)._process_custom_annotations(annotation_type, field_path, processor) MembersListV2Result_validator = bv.Struct(MembersListV2Result) - class MembersRecoverArg(bb.Struct): """ Exactly one of team_member_id, email, or external_id must be provided to @@ -9241,12 +8697,13 @@ class MembersRecoverArg(bb.Struct): """ __slots__ = [ - "_user_value", + '_user_value', ] _has_required_fields = True - def __init__(self, user=None): + def __init__(self, + user=None): self._user_value = bb.NOT_SET if user is not None: self.user = user @@ -9255,14 +8712,10 @@ def __init__(self, user=None): user = bb.Attribute("user", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersRecoverArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MembersRecoverArg, self)._process_custom_annotations(annotation_type, field_path, processor) MembersRecoverArg_validator = bv.Struct(MembersRecoverArg) - class MembersRecoverError(UserSelectorError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -9277,7 +8730,7 @@ class MembersRecoverError(UserSelectorError): Team is full. The organization has no available licenses. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition user_unrecoverable = None # Attribute is overwritten below the class definition @@ -9293,7 +8746,7 @@ def is_user_unrecoverable(self): :rtype: bool """ - return self._tag == "user_unrecoverable" + return self._tag == 'user_unrecoverable' def is_user_not_in_team(self): """ @@ -9301,7 +8754,7 @@ def is_user_not_in_team(self): :rtype: bool """ - return self._tag == "user_not_in_team" + return self._tag == 'user_not_in_team' def is_team_license_limit(self): """ @@ -9309,7 +8762,7 @@ def is_team_license_limit(self): :rtype: bool """ - return self._tag == "team_license_limit" + return self._tag == 'team_license_limit' def is_other(self): """ @@ -9317,17 +8770,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersRecoverError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MembersRecoverError, self)._process_custom_annotations(annotation_type, field_path, processor) MembersRecoverError_validator = bv.Union(MembersRecoverError) - class MembersRemoveArg(MembersDeactivateArg): """ :ivar MembersRemoveArg.transfer_dest_id: @@ -9356,26 +8805,25 @@ class MembersRemoveArg(MembersDeactivateArg): """ __slots__ = [ - "_transfer_dest_id_value", - "_transfer_admin_id_value", - "_keep_account_value", - "_retain_team_shares_value", - "_permanently_delete_files_value", + '_transfer_dest_id_value', + '_transfer_admin_id_value', + '_keep_account_value', + '_retain_team_shares_value', + '_permanently_delete_files_value', ] _has_required_fields = True - def __init__( - self, - user=None, - wipe_data=None, - transfer_dest_id=None, - transfer_admin_id=None, - keep_account=None, - retain_team_shares=None, - permanently_delete_files=None, - ): - super(MembersRemoveArg, self).__init__(user, wipe_data) + def __init__(self, + user=None, + wipe_data=None, + transfer_dest_id=None, + transfer_admin_id=None, + keep_account=None, + retain_team_shares=None, + permanently_delete_files=None): + super(MembersRemoveArg, self).__init__(user, + wipe_data) self._transfer_dest_id_value = bb.NOT_SET self._transfer_admin_id_value = bb.NOT_SET self._keep_account_value = bb.NOT_SET @@ -9408,14 +8856,10 @@ def __init__( permanently_delete_files = bb.Attribute("permanently_delete_files") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersRemoveArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MembersRemoveArg, self)._process_custom_annotations(annotation_type, field_path, processor) MembersRemoveArg_validator = bv.Struct(MembersRemoveArg) - class MembersTransferFilesError(MembersPermanentlyDeleteFilesError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -9468,7 +8912,7 @@ def is_removed_and_transfer_dest_should_differ(self): :rtype: bool """ - return self._tag == "removed_and_transfer_dest_should_differ" + return self._tag == 'removed_and_transfer_dest_should_differ' def is_removed_and_transfer_admin_should_differ(self): """ @@ -9476,7 +8920,7 @@ def is_removed_and_transfer_admin_should_differ(self): :rtype: bool """ - return self._tag == "removed_and_transfer_admin_should_differ" + return self._tag == 'removed_and_transfer_admin_should_differ' def is_transfer_dest_user_not_found(self): """ @@ -9484,7 +8928,7 @@ def is_transfer_dest_user_not_found(self): :rtype: bool """ - return self._tag == "transfer_dest_user_not_found" + return self._tag == 'transfer_dest_user_not_found' def is_transfer_dest_user_not_in_team(self): """ @@ -9492,7 +8936,7 @@ def is_transfer_dest_user_not_in_team(self): :rtype: bool """ - return self._tag == "transfer_dest_user_not_in_team" + return self._tag == 'transfer_dest_user_not_in_team' def is_transfer_admin_user_not_in_team(self): """ @@ -9500,7 +8944,7 @@ def is_transfer_admin_user_not_in_team(self): :rtype: bool """ - return self._tag == "transfer_admin_user_not_in_team" + return self._tag == 'transfer_admin_user_not_in_team' def is_transfer_admin_user_not_found(self): """ @@ -9508,7 +8952,7 @@ def is_transfer_admin_user_not_found(self): :rtype: bool """ - return self._tag == "transfer_admin_user_not_found" + return self._tag == 'transfer_admin_user_not_found' def is_unspecified_transfer_admin_id(self): """ @@ -9516,7 +8960,7 @@ def is_unspecified_transfer_admin_id(self): :rtype: bool """ - return self._tag == "unspecified_transfer_admin_id" + return self._tag == 'unspecified_transfer_admin_id' def is_transfer_admin_is_not_admin(self): """ @@ -9524,7 +8968,7 @@ def is_transfer_admin_is_not_admin(self): :rtype: bool """ - return self._tag == "transfer_admin_is_not_admin" + return self._tag == 'transfer_admin_is_not_admin' def is_recipient_not_verified(self): """ @@ -9532,17 +8976,13 @@ def is_recipient_not_verified(self): :rtype: bool """ - return self._tag == "recipient_not_verified" + return self._tag == 'recipient_not_verified' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersTransferFilesError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MembersTransferFilesError, self)._process_custom_annotations(annotation_type, field_path, processor) MembersTransferFilesError_validator = bv.Union(MembersTransferFilesError) - class MembersRemoveError(MembersTransferFilesError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -9626,7 +9066,7 @@ def is_remove_last_admin(self): :rtype: bool """ - return self._tag == "remove_last_admin" + return self._tag == 'remove_last_admin' def is_cannot_keep_account_and_transfer(self): """ @@ -9634,7 +9074,7 @@ def is_cannot_keep_account_and_transfer(self): :rtype: bool """ - return self._tag == "cannot_keep_account_and_transfer" + return self._tag == 'cannot_keep_account_and_transfer' def is_cannot_keep_account_and_delete_data(self): """ @@ -9642,7 +9082,7 @@ def is_cannot_keep_account_and_delete_data(self): :rtype: bool """ - return self._tag == "cannot_keep_account_and_delete_data" + return self._tag == 'cannot_keep_account_and_delete_data' def is_cannot_keep_account_and_permanently_delete(self): """ @@ -9650,7 +9090,7 @@ def is_cannot_keep_account_and_permanently_delete(self): :rtype: bool """ - return self._tag == "cannot_keep_account_and_permanently_delete" + return self._tag == 'cannot_keep_account_and_permanently_delete' def is_email_address_too_long_to_be_disabled(self): """ @@ -9658,7 +9098,7 @@ def is_email_address_too_long_to_be_disabled(self): :rtype: bool """ - return self._tag == "email_address_too_long_to_be_disabled" + return self._tag == 'email_address_too_long_to_be_disabled' def is_cannot_keep_invited_user_account(self): """ @@ -9666,7 +9106,7 @@ def is_cannot_keep_invited_user_account(self): :rtype: bool """ - return self._tag == "cannot_keep_invited_user_account" + return self._tag == 'cannot_keep_invited_user_account' def is_cannot_retain_shares_when_data_wiped(self): """ @@ -9674,7 +9114,7 @@ def is_cannot_retain_shares_when_data_wiped(self): :rtype: bool """ - return self._tag == "cannot_retain_shares_when_data_wiped" + return self._tag == 'cannot_retain_shares_when_data_wiped' def is_cannot_retain_shares_when_no_account_kept(self): """ @@ -9682,7 +9122,7 @@ def is_cannot_retain_shares_when_no_account_kept(self): :rtype: bool """ - return self._tag == "cannot_retain_shares_when_no_account_kept" + return self._tag == 'cannot_retain_shares_when_no_account_kept' def is_cannot_retain_shares_when_team_external_sharing_off(self): """ @@ -9690,7 +9130,7 @@ def is_cannot_retain_shares_when_team_external_sharing_off(self): :rtype: bool """ - return self._tag == "cannot_retain_shares_when_team_external_sharing_off" + return self._tag == 'cannot_retain_shares_when_team_external_sharing_off' def is_cannot_keep_account(self): """ @@ -9698,7 +9138,7 @@ def is_cannot_keep_account(self): :rtype: bool """ - return self._tag == "cannot_keep_account" + return self._tag == 'cannot_keep_account' def is_cannot_keep_account_under_legal_hold(self): """ @@ -9706,7 +9146,7 @@ def is_cannot_keep_account_under_legal_hold(self): :rtype: bool """ - return self._tag == "cannot_keep_account_under_legal_hold" + return self._tag == 'cannot_keep_account_under_legal_hold' def is_cannot_keep_account_required_to_sign_tos(self): """ @@ -9714,7 +9154,7 @@ def is_cannot_keep_account_required_to_sign_tos(self): :rtype: bool """ - return self._tag == "cannot_keep_account_required_to_sign_tos" + return self._tag == 'cannot_keep_account_required_to_sign_tos' def is_cannot_permanently_delete_and_transfer(self): """ @@ -9722,7 +9162,7 @@ def is_cannot_permanently_delete_and_transfer(self): :rtype: bool """ - return self._tag == "cannot_permanently_delete_and_transfer" + return self._tag == 'cannot_permanently_delete_and_transfer' def is_member_is_transfer_destination(self): """ @@ -9730,17 +9170,13 @@ def is_member_is_transfer_destination(self): :rtype: bool """ - return self._tag == "member_is_transfer_destination" + return self._tag == 'member_is_transfer_destination' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersRemoveError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MembersRemoveError, self)._process_custom_annotations(annotation_type, field_path, processor) MembersRemoveError_validator = bv.Union(MembersRemoveError) - class MembersSendWelcomeError(MemberSelectorError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -9748,7 +9184,7 @@ class MembersSendWelcomeError(MemberSelectorError): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -9758,17 +9194,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersSendWelcomeError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MembersSendWelcomeError, self)._process_custom_annotations(annotation_type, field_path, processor) MembersSendWelcomeError_validator = bv.Union(MembersSendWelcomeError) - class MembersSetPermissions2Arg(bb.Struct): """ Exactly one of team_member_id, email, or external_id must be provided to @@ -9782,13 +9214,15 @@ class MembersSetPermissions2Arg(bb.Struct): """ __slots__ = [ - "_user_value", - "_new_roles_value", + '_user_value', + '_new_roles_value', ] _has_required_fields = True - def __init__(self, user=None, new_roles=None): + def __init__(self, + user=None, + new_roles=None): self._user_value = bb.NOT_SET self._new_roles_value = bb.NOT_SET if user is not None: @@ -9803,14 +9237,10 @@ def __init__(self, user=None, new_roles=None): new_roles = bb.Attribute("new_roles", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersSetPermissions2Arg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MembersSetPermissions2Arg, self)._process_custom_annotations(annotation_type, field_path, processor) MembersSetPermissions2Arg_validator = bv.Struct(MembersSetPermissions2Arg) - class MembersSetPermissions2Error(UserSelectorError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -9829,7 +9259,7 @@ class MembersSetPermissions2Error(UserSelectorError): exist on this team. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition last_admin = None # Attribute is overwritten below the class definition @@ -9847,7 +9277,7 @@ def is_last_admin(self): :rtype: bool """ - return self._tag == "last_admin" + return self._tag == 'last_admin' def is_user_not_in_team(self): """ @@ -9855,7 +9285,7 @@ def is_user_not_in_team(self): :rtype: bool """ - return self._tag == "user_not_in_team" + return self._tag == 'user_not_in_team' def is_cannot_set_permissions(self): """ @@ -9863,7 +9293,7 @@ def is_cannot_set_permissions(self): :rtype: bool """ - return self._tag == "cannot_set_permissions" + return self._tag == 'cannot_set_permissions' def is_role_not_found(self): """ @@ -9871,7 +9301,7 @@ def is_role_not_found(self): :rtype: bool """ - return self._tag == "role_not_found" + return self._tag == 'role_not_found' def is_other(self): """ @@ -9879,17 +9309,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersSetPermissions2Error, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MembersSetPermissions2Error, self)._process_custom_annotations(annotation_type, field_path, processor) MembersSetPermissions2Error_validator = bv.Union(MembersSetPermissions2Error) - class MembersSetPermissions2Result(bb.Struct): """ :ivar MembersSetPermissions2Result.team_member_id: @@ -9899,13 +9325,15 @@ class MembersSetPermissions2Result(bb.Struct): """ __slots__ = [ - "_team_member_id_value", - "_roles_value", + '_team_member_id_value', + '_roles_value', ] _has_required_fields = True - def __init__(self, team_member_id=None, roles=None): + def __init__(self, + team_member_id=None, + roles=None): self._team_member_id_value = bb.NOT_SET self._roles_value = bb.NOT_SET if team_member_id is not None: @@ -9920,14 +9348,10 @@ def __init__(self, team_member_id=None, roles=None): roles = bb.Attribute("roles", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersSetPermissions2Result, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MembersSetPermissions2Result, self)._process_custom_annotations(annotation_type, field_path, processor) MembersSetPermissions2Result_validator = bv.Struct(MembersSetPermissions2Result) - class MembersSetPermissionsArg(bb.Struct): """ Exactly one of team_member_id, email, or external_id must be provided to @@ -9940,13 +9364,15 @@ class MembersSetPermissionsArg(bb.Struct): """ __slots__ = [ - "_user_value", - "_new_role_value", + '_user_value', + '_new_role_value', ] _has_required_fields = True - def __init__(self, user=None, new_role=None): + def __init__(self, + user=None, + new_role=None): self._user_value = bb.NOT_SET self._new_role_value = bb.NOT_SET if user is not None: @@ -9961,14 +9387,10 @@ def __init__(self, user=None, new_role=None): new_role = bb.Attribute("new_role", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersSetPermissionsArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MembersSetPermissionsArg, self)._process_custom_annotations(annotation_type, field_path, processor) MembersSetPermissionsArg_validator = bv.Struct(MembersSetPermissionsArg) - class MembersSetPermissionsError(UserSelectorError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -9985,7 +9407,7 @@ class MembersSetPermissionsError(UserSelectorError): Team is full. The organization has no available licenses. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition last_admin = None # Attribute is overwritten below the class definition @@ -10003,7 +9425,7 @@ def is_last_admin(self): :rtype: bool """ - return self._tag == "last_admin" + return self._tag == 'last_admin' def is_user_not_in_team(self): """ @@ -10011,7 +9433,7 @@ def is_user_not_in_team(self): :rtype: bool """ - return self._tag == "user_not_in_team" + return self._tag == 'user_not_in_team' def is_cannot_set_permissions(self): """ @@ -10019,7 +9441,7 @@ def is_cannot_set_permissions(self): :rtype: bool """ - return self._tag == "cannot_set_permissions" + return self._tag == 'cannot_set_permissions' def is_team_license_limit(self): """ @@ -10027,7 +9449,7 @@ def is_team_license_limit(self): :rtype: bool """ - return self._tag == "team_license_limit" + return self._tag == 'team_license_limit' def is_other(self): """ @@ -10035,17 +9457,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersSetPermissionsError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MembersSetPermissionsError, self)._process_custom_annotations(annotation_type, field_path, processor) MembersSetPermissionsError_validator = bv.Union(MembersSetPermissionsError) - class MembersSetPermissionsResult(bb.Struct): """ :ivar MembersSetPermissionsResult.team_member_id: @@ -10055,13 +9473,15 @@ class MembersSetPermissionsResult(bb.Struct): """ __slots__ = [ - "_team_member_id_value", - "_role_value", + '_team_member_id_value', + '_role_value', ] _has_required_fields = True - def __init__(self, team_member_id=None, role=None): + def __init__(self, + team_member_id=None, + role=None): self._team_member_id_value = bb.NOT_SET self._role_value = bb.NOT_SET if team_member_id is not None: @@ -10076,14 +9496,10 @@ def __init__(self, team_member_id=None, role=None): role = bb.Attribute("role", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersSetPermissionsResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MembersSetPermissionsResult, self)._process_custom_annotations(annotation_type, field_path, processor) MembersSetPermissionsResult_validator = bv.Struct(MembersSetPermissionsResult) - class MembersSetProfileArg(bb.Struct): """ Exactly one of team_member_id, email, or external_id must be provided to @@ -10108,27 +9524,25 @@ class MembersSetProfileArg(bb.Struct): """ __slots__ = [ - "_user_value", - "_new_email_value", - "_new_external_id_value", - "_new_given_name_value", - "_new_surname_value", - "_new_persistent_id_value", - "_new_is_directory_restricted_value", + '_user_value', + '_new_email_value', + '_new_external_id_value', + '_new_given_name_value', + '_new_surname_value', + '_new_persistent_id_value', + '_new_is_directory_restricted_value', ] _has_required_fields = True - def __init__( - self, - user=None, - new_email=None, - new_external_id=None, - new_given_name=None, - new_surname=None, - new_persistent_id=None, - new_is_directory_restricted=None, - ): + def __init__(self, + user=None, + new_email=None, + new_external_id=None, + new_given_name=None, + new_surname=None, + new_persistent_id=None, + new_is_directory_restricted=None): self._user_value = bb.NOT_SET self._new_email_value = bb.NOT_SET self._new_external_id_value = bb.NOT_SET @@ -10173,14 +9587,10 @@ def __init__( new_is_directory_restricted = bb.Attribute("new_is_directory_restricted", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersSetProfileArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MembersSetProfileArg, self)._process_custom_annotations(annotation_type, field_path, processor) MembersSetProfileArg_validator = bv.Struct(MembersSetProfileArg) - class MembersSetProfileError(MemberSelectorError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -10209,7 +9619,7 @@ class MembersSetProfileError(MemberSelectorError): Directory Restrictions option is not available. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition external_id_and_new_external_id_unsafe = None # Attribute is overwritten below the class definition @@ -10237,7 +9647,7 @@ def is_external_id_and_new_external_id_unsafe(self): :rtype: bool """ - return self._tag == "external_id_and_new_external_id_unsafe" + return self._tag == 'external_id_and_new_external_id_unsafe' def is_no_new_data_specified(self): """ @@ -10245,7 +9655,7 @@ def is_no_new_data_specified(self): :rtype: bool """ - return self._tag == "no_new_data_specified" + return self._tag == 'no_new_data_specified' def is_email_reserved_for_other_user(self): """ @@ -10253,7 +9663,7 @@ def is_email_reserved_for_other_user(self): :rtype: bool """ - return self._tag == "email_reserved_for_other_user" + return self._tag == 'email_reserved_for_other_user' def is_external_id_used_by_other_user(self): """ @@ -10261,7 +9671,7 @@ def is_external_id_used_by_other_user(self): :rtype: bool """ - return self._tag == "external_id_used_by_other_user" + return self._tag == 'external_id_used_by_other_user' def is_set_profile_disallowed(self): """ @@ -10269,7 +9679,7 @@ def is_set_profile_disallowed(self): :rtype: bool """ - return self._tag == "set_profile_disallowed" + return self._tag == 'set_profile_disallowed' def is_param_cannot_be_empty(self): """ @@ -10277,7 +9687,7 @@ def is_param_cannot_be_empty(self): :rtype: bool """ - return self._tag == "param_cannot_be_empty" + return self._tag == 'param_cannot_be_empty' def is_persistent_id_disabled(self): """ @@ -10285,7 +9695,7 @@ def is_persistent_id_disabled(self): :rtype: bool """ - return self._tag == "persistent_id_disabled" + return self._tag == 'persistent_id_disabled' def is_persistent_id_used_by_other_user(self): """ @@ -10293,7 +9703,7 @@ def is_persistent_id_used_by_other_user(self): :rtype: bool """ - return self._tag == "persistent_id_used_by_other_user" + return self._tag == 'persistent_id_used_by_other_user' def is_directory_restricted_off(self): """ @@ -10301,7 +9711,7 @@ def is_directory_restricted_off(self): :rtype: bool """ - return self._tag == "directory_restricted_off" + return self._tag == 'directory_restricted_off' def is_other(self): """ @@ -10309,17 +9719,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersSetProfileError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MembersSetProfileError, self)._process_custom_annotations(annotation_type, field_path, processor) MembersSetProfileError_validator = bv.Union(MembersSetProfileError) - class MembersSetProfilePhotoArg(bb.Struct): """ :ivar MembersSetProfilePhotoArg.user: @@ -10329,13 +9735,15 @@ class MembersSetProfilePhotoArg(bb.Struct): """ __slots__ = [ - "_user_value", - "_photo_value", + '_user_value', + '_photo_value', ] _has_required_fields = True - def __init__(self, user=None, photo=None): + def __init__(self, + user=None, + photo=None): self._user_value = bb.NOT_SET self._photo_value = bb.NOT_SET if user is not None: @@ -10350,14 +9758,10 @@ def __init__(self, user=None, photo=None): photo = bb.Attribute("photo", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersSetProfilePhotoArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MembersSetProfilePhotoArg, self)._process_custom_annotations(annotation_type, field_path, processor) MembersSetProfilePhotoArg_validator = bv.Struct(MembersSetProfilePhotoArg) - class MembersSetProfilePhotoError(MemberSelectorError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -10368,7 +9772,7 @@ class MembersSetProfilePhotoError(MemberSelectorError): Modifying deleted users is not allowed. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition set_profile_disallowed = None # Attribute is overwritten below the class definition @@ -10383,7 +9787,7 @@ def photo_error(cls, val): :param account.SetProfilePhotoError val: :rtype: MembersSetProfilePhotoError """ - return cls("photo_error", val) + return cls('photo_error', val) def is_set_profile_disallowed(self): """ @@ -10391,7 +9795,7 @@ def is_set_profile_disallowed(self): :rtype: bool """ - return self._tag == "set_profile_disallowed" + return self._tag == 'set_profile_disallowed' def is_photo_error(self): """ @@ -10399,7 +9803,7 @@ def is_photo_error(self): :rtype: bool """ - return self._tag == "photo_error" + return self._tag == 'photo_error' def is_other(self): """ @@ -10407,7 +9811,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_photo_error(self): """ @@ -10420,14 +9824,10 @@ def get_photo_error(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersSetProfilePhotoError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MembersSetProfilePhotoError, self)._process_custom_annotations(annotation_type, field_path, processor) MembersSetProfilePhotoError_validator = bv.Union(MembersSetProfilePhotoError) - class MembersSuspendError(MembersDeactivateError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -10455,7 +9855,7 @@ def is_suspend_inactive_user(self): :rtype: bool """ - return self._tag == "suspend_inactive_user" + return self._tag == 'suspend_inactive_user' def is_suspend_last_admin(self): """ @@ -10463,7 +9863,7 @@ def is_suspend_last_admin(self): :rtype: bool """ - return self._tag == "suspend_last_admin" + return self._tag == 'suspend_last_admin' def is_team_license_limit(self): """ @@ -10471,17 +9871,13 @@ def is_team_license_limit(self): :rtype: bool """ - return self._tag == "team_license_limit" + return self._tag == 'team_license_limit' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersSuspendError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MembersSuspendError, self)._process_custom_annotations(annotation_type, field_path, processor) MembersSuspendError_validator = bv.Union(MembersSuspendError) - class MembersTransferFormerMembersFilesError(MembersTransferFilesError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -10514,7 +9910,7 @@ def is_user_data_is_being_transferred(self): :rtype: bool """ - return self._tag == "user_data_is_being_transferred" + return self._tag == 'user_data_is_being_transferred' def is_user_not_removed(self): """ @@ -10522,7 +9918,7 @@ def is_user_not_removed(self): :rtype: bool """ - return self._tag == "user_not_removed" + return self._tag == 'user_not_removed' def is_user_data_cannot_be_transferred(self): """ @@ -10530,7 +9926,7 @@ def is_user_data_cannot_be_transferred(self): :rtype: bool """ - return self._tag == "user_data_cannot_be_transferred" + return self._tag == 'user_data_cannot_be_transferred' def is_user_data_already_transferred(self): """ @@ -10538,17 +9934,13 @@ def is_user_data_already_transferred(self): :rtype: bool """ - return self._tag == "user_data_already_transferred" + return self._tag == 'user_data_already_transferred' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersTransferFormerMembersFilesError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MembersTransferFormerMembersFilesError, self)._process_custom_annotations(annotation_type, field_path, processor) MembersTransferFormerMembersFilesError_validator = bv.Union(MembersTransferFormerMembersFilesError) - class MembersUnsuspendArg(bb.Struct): """ Exactly one of team_member_id, email, or external_id must be provided to @@ -10559,12 +9951,13 @@ class MembersUnsuspendArg(bb.Struct): """ __slots__ = [ - "_user_value", + '_user_value', ] _has_required_fields = True - def __init__(self, user=None): + def __init__(self, + user=None): self._user_value = bb.NOT_SET if user is not None: self.user = user @@ -10573,14 +9966,10 @@ def __init__(self, user=None): user = bb.Attribute("user", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersUnsuspendArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MembersUnsuspendArg, self)._process_custom_annotations(annotation_type, field_path, processor) MembersUnsuspendArg_validator = bv.Struct(MembersUnsuspendArg) - class MembersUnsuspendError(MembersDeactivateError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -10604,7 +9993,7 @@ def is_unsuspend_non_suspended_member(self): :rtype: bool """ - return self._tag == "unsuspend_non_suspended_member" + return self._tag == 'unsuspend_non_suspended_member' def is_team_license_limit(self): """ @@ -10612,17 +10001,13 @@ def is_team_license_limit(self): :rtype: bool """ - return self._tag == "team_license_limit" + return self._tag == 'team_license_limit' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersUnsuspendError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MembersUnsuspendError, self)._process_custom_annotations(annotation_type, field_path, processor) MembersUnsuspendError_validator = bv.Union(MembersUnsuspendError) - class MobileClientPlatform(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -10641,7 +10026,7 @@ class MobileClientPlatform(bb.Union): Official Dropbox Blackberry client. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition iphone = None # Attribute is overwritten below the class definition @@ -10661,7 +10046,7 @@ def is_iphone(self): :rtype: bool """ - return self._tag == "iphone" + return self._tag == 'iphone' def is_ipad(self): """ @@ -10669,7 +10054,7 @@ def is_ipad(self): :rtype: bool """ - return self._tag == "ipad" + return self._tag == 'ipad' def is_android(self): """ @@ -10677,7 +10062,7 @@ def is_android(self): :rtype: bool """ - return self._tag == "android" + return self._tag == 'android' def is_windows_phone(self): """ @@ -10685,7 +10070,7 @@ def is_windows_phone(self): :rtype: bool """ - return self._tag == "windows_phone" + return self._tag == 'windows_phone' def is_blackberry(self): """ @@ -10693,7 +10078,7 @@ def is_blackberry(self): :rtype: bool """ - return self._tag == "blackberry" + return self._tag == 'blackberry' def is_other(self): """ @@ -10701,17 +10086,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MobileClientPlatform, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MobileClientPlatform, self)._process_custom_annotations(annotation_type, field_path, processor) MobileClientPlatform_validator = bv.Union(MobileClientPlatform) - class MobileClientSession(DeviceSession): """ Information about linked Dropbox mobile client sessions. @@ -10729,29 +10110,31 @@ class MobileClientSession(DeviceSession): """ __slots__ = [ - "_device_name_value", - "_client_type_value", - "_client_version_value", - "_os_version_value", - "_last_carrier_value", + '_device_name_value', + '_client_type_value', + '_client_version_value', + '_os_version_value', + '_last_carrier_value', ] _has_required_fields = True - def __init__( - self, - session_id=None, - device_name=None, - client_type=None, - ip_address=None, - country=None, - created=None, - updated=None, - client_version=None, - os_version=None, - last_carrier=None, - ): - super(MobileClientSession, self).__init__(session_id, ip_address, country, created, updated) + def __init__(self, + session_id=None, + device_name=None, + client_type=None, + ip_address=None, + country=None, + created=None, + updated=None, + client_version=None, + os_version=None, + last_carrier=None): + super(MobileClientSession, self).__init__(session_id, + ip_address, + country, + created, + updated) self._device_name_value = bb.NOT_SET self._client_type_value = bb.NOT_SET self._client_version_value = bb.NOT_SET @@ -10784,14 +10167,10 @@ def __init__( last_carrier = bb.Attribute("last_carrier", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MobileClientSession, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MobileClientSession, self)._process_custom_annotations(annotation_type, field_path, processor) MobileClientSession_validator = bv.Struct(MobileClientSession) - class NamespaceMetadata(bb.Struct): """ Properties of a namespace. @@ -10811,23 +10190,21 @@ class NamespaceMetadata(bb.Struct): """ __slots__ = [ - "_name_value", - "_namespace_id_value", - "_namespace_type_value", - "_team_member_id_value", - "_quota_limit_value", + '_name_value', + '_namespace_id_value', + '_namespace_type_value', + '_team_member_id_value', + '_quota_limit_value', ] _has_required_fields = True - def __init__( - self, - name=None, - namespace_id=None, - namespace_type=None, - team_member_id=None, - quota_limit=None, - ): + def __init__(self, + name=None, + namespace_id=None, + namespace_type=None, + team_member_id=None, + quota_limit=None): self._name_value = bb.NOT_SET self._namespace_id_value = bb.NOT_SET self._namespace_type_value = bb.NOT_SET @@ -10860,14 +10237,10 @@ def __init__( quota_limit = bb.Attribute("quota_limit") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(NamespaceMetadata, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(NamespaceMetadata, self)._process_custom_annotations(annotation_type, field_path, processor) NamespaceMetadata_validator = bv.Struct(NamespaceMetadata) - class NamespaceType(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -10886,7 +10259,7 @@ class NamespaceType(bb.Union): Team member's root folder. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition app_folder = None # Attribute is overwritten below the class definition @@ -10906,7 +10279,7 @@ def is_app_folder(self): :rtype: bool """ - return self._tag == "app_folder" + return self._tag == 'app_folder' def is_shared_folder(self): """ @@ -10914,7 +10287,7 @@ def is_shared_folder(self): :rtype: bool """ - return self._tag == "shared_folder" + return self._tag == 'shared_folder' def is_team_folder(self): """ @@ -10922,7 +10295,7 @@ def is_team_folder(self): :rtype: bool """ - return self._tag == "team_folder" + return self._tag == 'team_folder' def is_team_member_folder(self): """ @@ -10930,7 +10303,7 @@ def is_team_member_folder(self): :rtype: bool """ - return self._tag == "team_member_folder" + return self._tag == 'team_member_folder' def is_team_member_root(self): """ @@ -10938,7 +10311,7 @@ def is_team_member_root(self): :rtype: bool """ - return self._tag == "team_member_root" + return self._tag == 'team_member_root' def is_other(self): """ @@ -10946,17 +10319,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(NamespaceType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(NamespaceType, self)._process_custom_annotations(annotation_type, field_path, processor) NamespaceType_validator = bv.Union(NamespaceType) - class RemoveCustomQuotaResult(bb.Union): """ User result for setting member custom quota. @@ -10973,7 +10342,7 @@ class RemoveCustomQuotaResult(bb.Union): :vartype RemoveCustomQuotaResult.invalid_user: UserSelectorArg """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -10986,7 +10355,7 @@ def success(cls, val): :param UserSelectorArg val: :rtype: RemoveCustomQuotaResult """ - return cls("success", val) + return cls('success', val) @classmethod def invalid_user(cls, val): @@ -10997,7 +10366,7 @@ def invalid_user(cls, val): :param UserSelectorArg val: :rtype: RemoveCustomQuotaResult """ - return cls("invalid_user", val) + return cls('invalid_user', val) def is_success(self): """ @@ -11005,7 +10374,7 @@ def is_success(self): :rtype: bool """ - return self._tag == "success" + return self._tag == 'success' def is_invalid_user(self): """ @@ -11013,7 +10382,7 @@ def is_invalid_user(self): :rtype: bool """ - return self._tag == "invalid_user" + return self._tag == 'invalid_user' def is_other(self): """ @@ -11021,7 +10390,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_success(self): """ @@ -11048,14 +10417,10 @@ def get_invalid_user(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RemoveCustomQuotaResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(RemoveCustomQuotaResult, self)._process_custom_annotations(annotation_type, field_path, processor) RemoveCustomQuotaResult_validator = bv.Union(RemoveCustomQuotaResult) - class RemovedStatus(bb.Struct): """ :ivar RemovedStatus.is_recoverable: @@ -11065,13 +10430,15 @@ class RemovedStatus(bb.Struct): """ __slots__ = [ - "_is_recoverable_value", - "_is_disconnected_value", + '_is_recoverable_value', + '_is_disconnected_value', ] _has_required_fields = True - def __init__(self, is_recoverable=None, is_disconnected=None): + def __init__(self, + is_recoverable=None, + is_disconnected=None): self._is_recoverable_value = bb.NOT_SET self._is_disconnected_value = bb.NOT_SET if is_recoverable is not None: @@ -11086,14 +10453,10 @@ def __init__(self, is_recoverable=None, is_disconnected=None): is_disconnected = bb.Attribute("is_disconnected") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RemovedStatus, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(RemovedStatus, self)._process_custom_annotations(annotation_type, field_path, processor) RemovedStatus_validator = bv.Struct(RemovedStatus) - class ResendSecondaryEmailResult(bb.Union): """ Result of trying to resend verification email to a secondary email address. @@ -11118,7 +10481,7 @@ class ResendSecondaryEmailResult(bb.Union): :vartype ResendSecondaryEmailResult.rate_limited: str """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -11131,7 +10494,7 @@ def success(cls, val): :param str val: :rtype: ResendSecondaryEmailResult """ - return cls("success", val) + return cls('success', val) @classmethod def not_pending(cls, val): @@ -11142,7 +10505,7 @@ def not_pending(cls, val): :param str val: :rtype: ResendSecondaryEmailResult """ - return cls("not_pending", val) + return cls('not_pending', val) @classmethod def rate_limited(cls, val): @@ -11153,7 +10516,7 @@ def rate_limited(cls, val): :param str val: :rtype: ResendSecondaryEmailResult """ - return cls("rate_limited", val) + return cls('rate_limited', val) def is_success(self): """ @@ -11161,7 +10524,7 @@ def is_success(self): :rtype: bool """ - return self._tag == "success" + return self._tag == 'success' def is_not_pending(self): """ @@ -11169,7 +10532,7 @@ def is_not_pending(self): :rtype: bool """ - return self._tag == "not_pending" + return self._tag == 'not_pending' def is_rate_limited(self): """ @@ -11177,7 +10540,7 @@ def is_rate_limited(self): :rtype: bool """ - return self._tag == "rate_limited" + return self._tag == 'rate_limited' def is_other(self): """ @@ -11185,7 +10548,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_success(self): """ @@ -11226,14 +10589,10 @@ def get_rate_limited(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ResendSecondaryEmailResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ResendSecondaryEmailResult, self)._process_custom_annotations(annotation_type, field_path, processor) ResendSecondaryEmailResult_validator = bv.Union(ResendSecondaryEmailResult) - class ResendVerificationEmailArg(bb.Struct): """ :ivar ResendVerificationEmailArg.emails_to_resend: @@ -11241,12 +10600,13 @@ class ResendVerificationEmailArg(bb.Struct): """ __slots__ = [ - "_emails_to_resend_value", + '_emails_to_resend_value', ] _has_required_fields = True - def __init__(self, emails_to_resend=None): + def __init__(self, + emails_to_resend=None): self._emails_to_resend_value = bb.NOT_SET if emails_to_resend is not None: self.emails_to_resend = emails_to_resend @@ -11255,26 +10615,23 @@ def __init__(self, emails_to_resend=None): emails_to_resend = bb.Attribute("emails_to_resend") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ResendVerificationEmailArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ResendVerificationEmailArg, self)._process_custom_annotations(annotation_type, field_path, processor) ResendVerificationEmailArg_validator = bv.Struct(ResendVerificationEmailArg) - class ResendVerificationEmailResult(bb.Struct): """ List of users and resend results. """ __slots__ = [ - "_results_value", + '_results_value', ] _has_required_fields = True - def __init__(self, results=None): + def __init__(self, + results=None): self._results_value = bb.NOT_SET if results is not None: self.results = results @@ -11283,14 +10640,10 @@ def __init__(self, results=None): results = bb.Attribute("results") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ResendVerificationEmailResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ResendVerificationEmailResult, self)._process_custom_annotations(annotation_type, field_path, processor) ResendVerificationEmailResult_validator = bv.Struct(ResendVerificationEmailResult) - class RevokeDesktopClientArg(DeviceSessionArg): """ :ivar RevokeDesktopClientArg.delete_on_unlink: @@ -11300,13 +10653,17 @@ class RevokeDesktopClientArg(DeviceSessionArg): """ __slots__ = [ - "_delete_on_unlink_value", + '_delete_on_unlink_value', ] _has_required_fields = True - def __init__(self, session_id=None, team_member_id=None, delete_on_unlink=None): - super(RevokeDesktopClientArg, self).__init__(session_id, team_member_id) + def __init__(self, + session_id=None, + team_member_id=None, + delete_on_unlink=None): + super(RevokeDesktopClientArg, self).__init__(session_id, + team_member_id) self._delete_on_unlink_value = bb.NOT_SET if delete_on_unlink is not None: self.delete_on_unlink = delete_on_unlink @@ -11315,14 +10672,10 @@ def __init__(self, session_id=None, team_member_id=None, delete_on_unlink=None): delete_on_unlink = bb.Attribute("delete_on_unlink") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RevokeDesktopClientArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(RevokeDesktopClientArg, self)._process_custom_annotations(annotation_type, field_path, processor) RevokeDesktopClientArg_validator = bv.Struct(RevokeDesktopClientArg) - class RevokeDeviceSessionArg(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -11351,7 +10704,7 @@ def web_session(cls, val): :param DeviceSessionArg val: :rtype: RevokeDeviceSessionArg """ - return cls("web_session", val) + return cls('web_session', val) @classmethod def desktop_client(cls, val): @@ -11362,7 +10715,7 @@ def desktop_client(cls, val): :param RevokeDesktopClientArg val: :rtype: RevokeDeviceSessionArg """ - return cls("desktop_client", val) + return cls('desktop_client', val) @classmethod def mobile_client(cls, val): @@ -11373,7 +10726,7 @@ def mobile_client(cls, val): :param DeviceSessionArg val: :rtype: RevokeDeviceSessionArg """ - return cls("mobile_client", val) + return cls('mobile_client', val) def is_web_session(self): """ @@ -11381,7 +10734,7 @@ def is_web_session(self): :rtype: bool """ - return self._tag == "web_session" + return self._tag == 'web_session' def is_desktop_client(self): """ @@ -11389,7 +10742,7 @@ def is_desktop_client(self): :rtype: bool """ - return self._tag == "desktop_client" + return self._tag == 'desktop_client' def is_mobile_client(self): """ @@ -11397,7 +10750,7 @@ def is_mobile_client(self): :rtype: bool """ - return self._tag == "mobile_client" + return self._tag == 'mobile_client' def get_web_session(self): """ @@ -11436,22 +10789,20 @@ def get_mobile_client(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RevokeDeviceSessionArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(RevokeDeviceSessionArg, self)._process_custom_annotations(annotation_type, field_path, processor) RevokeDeviceSessionArg_validator = bv.Union(RevokeDeviceSessionArg) - class RevokeDeviceSessionBatchArg(bb.Struct): + __slots__ = [ - "_revoke_devices_value", + '_revoke_devices_value', ] _has_required_fields = True - def __init__(self, revoke_devices=None): + def __init__(self, + revoke_devices=None): self._revoke_devices_value = bb.NOT_SET if revoke_devices is not None: self.revoke_devices = revoke_devices @@ -11460,14 +10811,10 @@ def __init__(self, revoke_devices=None): revoke_devices = bb.Attribute("revoke_devices") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RevokeDeviceSessionBatchArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(RevokeDeviceSessionBatchArg, self)._process_custom_annotations(annotation_type, field_path, processor) RevokeDeviceSessionBatchArg_validator = bv.Struct(RevokeDeviceSessionBatchArg) - class RevokeDeviceSessionBatchError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -11475,7 +10822,7 @@ class RevokeDeviceSessionBatchError(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -11485,25 +10832,23 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RevokeDeviceSessionBatchError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(RevokeDeviceSessionBatchError, self)._process_custom_annotations(annotation_type, field_path, processor) RevokeDeviceSessionBatchError_validator = bv.Union(RevokeDeviceSessionBatchError) - class RevokeDeviceSessionBatchResult(bb.Struct): + __slots__ = [ - "_revoke_devices_status_value", + '_revoke_devices_status_value', ] _has_required_fields = True - def __init__(self, revoke_devices_status=None): + def __init__(self, + revoke_devices_status=None): self._revoke_devices_status_value = bb.NOT_SET if revoke_devices_status is not None: self.revoke_devices_status = revoke_devices_status @@ -11512,14 +10857,10 @@ def __init__(self, revoke_devices_status=None): revoke_devices_status = bb.Attribute("revoke_devices_status") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RevokeDeviceSessionBatchResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(RevokeDeviceSessionBatchResult, self)._process_custom_annotations(annotation_type, field_path, processor) RevokeDeviceSessionBatchResult_validator = bv.Struct(RevokeDeviceSessionBatchResult) - class RevokeDeviceSessionError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -11532,7 +10873,7 @@ class RevokeDeviceSessionError(bb.Union): Member not found. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition device_session_not_found = None # Attribute is overwritten below the class definition @@ -11546,7 +10887,7 @@ def is_device_session_not_found(self): :rtype: bool """ - return self._tag == "device_session_not_found" + return self._tag == 'device_session_not_found' def is_member_not_found(self): """ @@ -11554,7 +10895,7 @@ def is_member_not_found(self): :rtype: bool """ - return self._tag == "member_not_found" + return self._tag == 'member_not_found' def is_other(self): """ @@ -11562,17 +10903,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RevokeDeviceSessionError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(RevokeDeviceSessionError, self)._process_custom_annotations(annotation_type, field_path, processor) RevokeDeviceSessionError_validator = bv.Union(RevokeDeviceSessionError) - class RevokeDeviceSessionStatus(bb.Struct): """ :ivar RevokeDeviceSessionStatus.success: @@ -11582,13 +10919,15 @@ class RevokeDeviceSessionStatus(bb.Struct): """ __slots__ = [ - "_success_value", - "_error_type_value", + '_success_value', + '_error_type_value', ] _has_required_fields = True - def __init__(self, success=None, error_type=None): + def __init__(self, + success=None, + error_type=None): self._success_value = bb.NOT_SET self._error_type_value = bb.NOT_SET if success is not None: @@ -11603,14 +10942,10 @@ def __init__(self, success=None, error_type=None): error_type = bb.Attribute("error_type", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RevokeDeviceSessionStatus, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(RevokeDeviceSessionStatus, self)._process_custom_annotations(annotation_type, field_path, processor) RevokeDeviceSessionStatus_validator = bv.Struct(RevokeDeviceSessionStatus) - class RevokeLinkedApiAppArg(bb.Struct): """ :ivar RevokeLinkedApiAppArg.app_id: @@ -11623,14 +10958,17 @@ class RevokeLinkedApiAppArg(bb.Struct): """ __slots__ = [ - "_app_id_value", - "_team_member_id_value", - "_keep_app_folder_value", + '_app_id_value', + '_team_member_id_value', + '_keep_app_folder_value', ] _has_required_fields = True - def __init__(self, app_id=None, team_member_id=None, keep_app_folder=None): + def __init__(self, + app_id=None, + team_member_id=None, + keep_app_folder=None): self._app_id_value = bb.NOT_SET self._team_member_id_value = bb.NOT_SET self._keep_app_folder_value = bb.NOT_SET @@ -11651,22 +10989,20 @@ def __init__(self, app_id=None, team_member_id=None, keep_app_folder=None): keep_app_folder = bb.Attribute("keep_app_folder") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RevokeLinkedApiAppArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(RevokeLinkedApiAppArg, self)._process_custom_annotations(annotation_type, field_path, processor) RevokeLinkedApiAppArg_validator = bv.Struct(RevokeLinkedApiAppArg) - class RevokeLinkedApiAppBatchArg(bb.Struct): + __slots__ = [ - "_revoke_linked_app_value", + '_revoke_linked_app_value', ] _has_required_fields = True - def __init__(self, revoke_linked_app=None): + def __init__(self, + revoke_linked_app=None): self._revoke_linked_app_value = bb.NOT_SET if revoke_linked_app is not None: self.revoke_linked_app = revoke_linked_app @@ -11675,14 +11011,10 @@ def __init__(self, revoke_linked_app=None): revoke_linked_app = bb.Attribute("revoke_linked_app") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RevokeLinkedApiAppBatchArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(RevokeLinkedApiAppBatchArg, self)._process_custom_annotations(annotation_type, field_path, processor) RevokeLinkedApiAppBatchArg_validator = bv.Struct(RevokeLinkedApiAppBatchArg) - class RevokeLinkedAppBatchError(bb.Union): """ Error returned by @@ -11693,7 +11025,7 @@ class RevokeLinkedAppBatchError(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -11703,25 +11035,23 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RevokeLinkedAppBatchError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(RevokeLinkedAppBatchError, self)._process_custom_annotations(annotation_type, field_path, processor) RevokeLinkedAppBatchError_validator = bv.Union(RevokeLinkedAppBatchError) - class RevokeLinkedAppBatchResult(bb.Struct): + __slots__ = [ - "_revoke_linked_app_status_value", + '_revoke_linked_app_status_value', ] _has_required_fields = True - def __init__(self, revoke_linked_app_status=None): + def __init__(self, + revoke_linked_app_status=None): self._revoke_linked_app_status_value = bb.NOT_SET if revoke_linked_app_status is not None: self.revoke_linked_app_status = revoke_linked_app_status @@ -11730,14 +11060,10 @@ def __init__(self, revoke_linked_app_status=None): revoke_linked_app_status = bb.Attribute("revoke_linked_app_status") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RevokeLinkedAppBatchResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(RevokeLinkedAppBatchResult, self)._process_custom_annotations(annotation_type, field_path, processor) RevokeLinkedAppBatchResult_validator = bv.Struct(RevokeLinkedAppBatchResult) - class RevokeLinkedAppError(bb.Union): """ Error returned by @@ -11755,7 +11081,7 @@ class RevokeLinkedAppError(bb.Union): App folder removal is not supported. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition app_not_found = None # Attribute is overwritten below the class definition @@ -11771,7 +11097,7 @@ def is_app_not_found(self): :rtype: bool """ - return self._tag == "app_not_found" + return self._tag == 'app_not_found' def is_member_not_found(self): """ @@ -11779,7 +11105,7 @@ def is_member_not_found(self): :rtype: bool """ - return self._tag == "member_not_found" + return self._tag == 'member_not_found' def is_app_folder_removal_not_supported(self): """ @@ -11787,7 +11113,7 @@ def is_app_folder_removal_not_supported(self): :rtype: bool """ - return self._tag == "app_folder_removal_not_supported" + return self._tag == 'app_folder_removal_not_supported' def is_other(self): """ @@ -11795,17 +11121,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RevokeLinkedAppError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(RevokeLinkedAppError, self)._process_custom_annotations(annotation_type, field_path, processor) RevokeLinkedAppError_validator = bv.Union(RevokeLinkedAppError) - class RevokeLinkedAppStatus(bb.Struct): """ :ivar RevokeLinkedAppStatus.success: @@ -11815,13 +11137,15 @@ class RevokeLinkedAppStatus(bb.Struct): """ __slots__ = [ - "_success_value", - "_error_type_value", + '_success_value', + '_error_type_value', ] _has_required_fields = True - def __init__(self, success=None, error_type=None): + def __init__(self, + success=None, + error_type=None): self._success_value = bb.NOT_SET self._error_type_value = bb.NOT_SET if success is not None: @@ -11836,14 +11160,10 @@ def __init__(self, success=None, error_type=None): error_type = bb.Attribute("error_type", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RevokeLinkedAppStatus, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(RevokeLinkedAppStatus, self)._process_custom_annotations(annotation_type, field_path, processor) RevokeLinkedAppStatus_validator = bv.Struct(RevokeLinkedAppStatus) - class SetCustomQuotaArg(bb.Struct): """ :ivar SetCustomQuotaArg.users_and_quotas: @@ -11851,12 +11171,13 @@ class SetCustomQuotaArg(bb.Struct): """ __slots__ = [ - "_users_and_quotas_value", + '_users_and_quotas_value', ] _has_required_fields = True - def __init__(self, users_and_quotas=None): + def __init__(self, + users_and_quotas=None): self._users_and_quotas_value = bb.NOT_SET if users_and_quotas is not None: self.users_and_quotas = users_and_quotas @@ -11865,14 +11186,10 @@ def __init__(self, users_and_quotas=None): users_and_quotas = bb.Attribute("users_and_quotas") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SetCustomQuotaArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SetCustomQuotaArg, self)._process_custom_annotations(annotation_type, field_path, processor) SetCustomQuotaArg_validator = bv.Struct(SetCustomQuotaArg) - class SetCustomQuotaError(CustomQuotaError): """ Error returned when setting member custom quota. @@ -11895,17 +11212,13 @@ def is_some_users_are_excluded(self): :rtype: bool """ - return self._tag == "some_users_are_excluded" + return self._tag == 'some_users_are_excluded' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SetCustomQuotaError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SetCustomQuotaError, self)._process_custom_annotations(annotation_type, field_path, processor) SetCustomQuotaError_validator = bv.Union(SetCustomQuotaError) - class SharingAllowlistAddArgs(bb.Struct): """ Structure representing Approve List entries. Domain and emails are @@ -11919,13 +11232,15 @@ class SharingAllowlistAddArgs(bb.Struct): """ __slots__ = [ - "_domains_value", - "_emails_value", + '_domains_value', + '_emails_value', ] _has_required_fields = False - def __init__(self, domains=None, emails=None): + def __init__(self, + domains=None, + emails=None): self._domains_value = bb.NOT_SET self._emails_value = bb.NOT_SET if domains is not None: @@ -11940,14 +11255,10 @@ def __init__(self, domains=None, emails=None): emails = bb.Attribute("emails", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharingAllowlistAddArgs, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharingAllowlistAddArgs, self)._process_custom_annotations(annotation_type, field_path, processor) SharingAllowlistAddArgs_validator = bv.Struct(SharingAllowlistAddArgs) - class SharingAllowlistAddError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -11970,7 +11281,7 @@ class SharingAllowlistAddError(bb.Union): :vartype SharingAllowlistAddError.entries_already_exist: str """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition no_entries_provided = None # Attribute is overwritten below the class definition @@ -11991,7 +11302,7 @@ def malformed_entry(cls, val): :param str val: :rtype: SharingAllowlistAddError """ - return cls("malformed_entry", val) + return cls('malformed_entry', val) @classmethod def entries_already_exist(cls, val): @@ -12002,7 +11313,7 @@ def entries_already_exist(cls, val): :param str val: :rtype: SharingAllowlistAddError """ - return cls("entries_already_exist", val) + return cls('entries_already_exist', val) def is_malformed_entry(self): """ @@ -12010,7 +11321,7 @@ def is_malformed_entry(self): :rtype: bool """ - return self._tag == "malformed_entry" + return self._tag == 'malformed_entry' def is_no_entries_provided(self): """ @@ -12018,7 +11329,7 @@ def is_no_entries_provided(self): :rtype: bool """ - return self._tag == "no_entries_provided" + return self._tag == 'no_entries_provided' def is_too_many_entries_provided(self): """ @@ -12026,7 +11337,7 @@ def is_too_many_entries_provided(self): :rtype: bool """ - return self._tag == "too_many_entries_provided" + return self._tag == 'too_many_entries_provided' def is_team_limit_reached(self): """ @@ -12034,7 +11345,7 @@ def is_team_limit_reached(self): :rtype: bool """ - return self._tag == "team_limit_reached" + return self._tag == 'team_limit_reached' def is_unknown_error(self): """ @@ -12042,7 +11353,7 @@ def is_unknown_error(self): :rtype: bool """ - return self._tag == "unknown_error" + return self._tag == 'unknown_error' def is_entries_already_exist(self): """ @@ -12050,7 +11361,7 @@ def is_entries_already_exist(self): :rtype: bool """ - return self._tag == "entries_already_exist" + return self._tag == 'entries_already_exist' def is_other(self): """ @@ -12058,7 +11369,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_malformed_entry(self): """ @@ -12085,21 +11396,18 @@ def get_entries_already_exist(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharingAllowlistAddError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharingAllowlistAddError, self)._process_custom_annotations(annotation_type, field_path, processor) SharingAllowlistAddError_validator = bv.Union(SharingAllowlistAddError) - class SharingAllowlistAddResponse(bb.Struct): """ This struct is empty. The comment here is intentionally emitted to avoid indentation issues with Stone. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -12107,14 +11415,10 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharingAllowlistAddResponse, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharingAllowlistAddResponse, self)._process_custom_annotations(annotation_type, field_path, processor) SharingAllowlistAddResponse_validator = bv.Struct(SharingAllowlistAddResponse) - class SharingAllowlistListArg(bb.Struct): """ :ivar SharingAllowlistListArg.limit: @@ -12122,12 +11426,13 @@ class SharingAllowlistListArg(bb.Struct): """ __slots__ = [ - "_limit_value", + '_limit_value', ] _has_required_fields = False - def __init__(self, limit=None): + def __init__(self, + limit=None): self._limit_value = bb.NOT_SET if limit is not None: self.limit = limit @@ -12136,14 +11441,10 @@ def __init__(self, limit=None): limit = bb.Attribute("limit") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharingAllowlistListArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharingAllowlistListArg, self)._process_custom_annotations(annotation_type, field_path, processor) SharingAllowlistListArg_validator = bv.Struct(SharingAllowlistListArg) - class SharingAllowlistListContinueArg(bb.Struct): """ :ivar SharingAllowlistListContinueArg.cursor: @@ -12153,12 +11454,13 @@ class SharingAllowlistListContinueArg(bb.Struct): """ __slots__ = [ - "_cursor_value", + '_cursor_value', ] _has_required_fields = True - def __init__(self, cursor=None): + def __init__(self, + cursor=None): self._cursor_value = bb.NOT_SET if cursor is not None: self.cursor = cursor @@ -12167,14 +11469,10 @@ def __init__(self, cursor=None): cursor = bb.Attribute("cursor") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharingAllowlistListContinueArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharingAllowlistListContinueArg, self)._process_custom_annotations(annotation_type, field_path, processor) SharingAllowlistListContinueArg_validator = bv.Struct(SharingAllowlistListContinueArg) - class SharingAllowlistListContinueError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -12185,7 +11483,7 @@ class SharingAllowlistListContinueError(bb.Union): Provided cursor is not valid. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition invalid_cursor = None # Attribute is overwritten below the class definition @@ -12197,7 +11495,7 @@ def is_invalid_cursor(self): :rtype: bool """ - return self._tag == "invalid_cursor" + return self._tag == 'invalid_cursor' def is_other(self): """ @@ -12205,24 +11503,21 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharingAllowlistListContinueError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharingAllowlistListContinueError, self)._process_custom_annotations(annotation_type, field_path, processor) SharingAllowlistListContinueError_validator = bv.Union(SharingAllowlistListContinueError) - class SharingAllowlistListError(bb.Struct): """ This struct is empty. The comment here is intentionally emitted to avoid indentation issues with Stone. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -12230,14 +11525,10 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharingAllowlistListError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharingAllowlistListError, self)._process_custom_annotations(annotation_type, field_path, processor) SharingAllowlistListError_validator = bv.Struct(SharingAllowlistListError) - class SharingAllowlistListResponse(bb.Struct): """ :ivar SharingAllowlistListResponse.domains: @@ -12254,15 +11545,19 @@ class SharingAllowlistListResponse(bb.Struct): """ __slots__ = [ - "_domains_value", - "_emails_value", - "_cursor_value", - "_has_more_value", + '_domains_value', + '_emails_value', + '_cursor_value', + '_has_more_value', ] _has_required_fields = True - def __init__(self, domains=None, emails=None, cursor=None, has_more=None): + def __init__(self, + domains=None, + emails=None, + cursor=None, + has_more=None): self._domains_value = bb.NOT_SET self._emails_value = bb.NOT_SET self._cursor_value = bb.NOT_SET @@ -12289,14 +11584,10 @@ def __init__(self, domains=None, emails=None, cursor=None, has_more=None): has_more = bb.Attribute("has_more") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharingAllowlistListResponse, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharingAllowlistListResponse, self)._process_custom_annotations(annotation_type, field_path, processor) SharingAllowlistListResponse_validator = bv.Struct(SharingAllowlistListResponse) - class SharingAllowlistRemoveArgs(bb.Struct): """ :ivar SharingAllowlistRemoveArgs.domains: @@ -12307,13 +11598,15 @@ class SharingAllowlistRemoveArgs(bb.Struct): """ __slots__ = [ - "_domains_value", - "_emails_value", + '_domains_value', + '_emails_value', ] _has_required_fields = False - def __init__(self, domains=None, emails=None): + def __init__(self, + domains=None, + emails=None): self._domains_value = bb.NOT_SET self._emails_value = bb.NOT_SET if domains is not None: @@ -12328,14 +11621,10 @@ def __init__(self, domains=None, emails=None): emails = bb.Attribute("emails", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharingAllowlistRemoveArgs, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharingAllowlistRemoveArgs, self)._process_custom_annotations(annotation_type, field_path, processor) SharingAllowlistRemoveArgs_validator = bv.Struct(SharingAllowlistRemoveArgs) - class SharingAllowlistRemoveError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -12356,7 +11645,7 @@ class SharingAllowlistRemoveError(bb.Union): Unknown error. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition no_entries_provided = None # Attribute is overwritten below the class definition @@ -12375,7 +11664,7 @@ def malformed_entry(cls, val): :param str val: :rtype: SharingAllowlistRemoveError """ - return cls("malformed_entry", val) + return cls('malformed_entry', val) @classmethod def entries_do_not_exist(cls, val): @@ -12386,7 +11675,7 @@ def entries_do_not_exist(cls, val): :param str val: :rtype: SharingAllowlistRemoveError """ - return cls("entries_do_not_exist", val) + return cls('entries_do_not_exist', val) def is_malformed_entry(self): """ @@ -12394,7 +11683,7 @@ def is_malformed_entry(self): :rtype: bool """ - return self._tag == "malformed_entry" + return self._tag == 'malformed_entry' def is_entries_do_not_exist(self): """ @@ -12402,7 +11691,7 @@ def is_entries_do_not_exist(self): :rtype: bool """ - return self._tag == "entries_do_not_exist" + return self._tag == 'entries_do_not_exist' def is_no_entries_provided(self): """ @@ -12410,7 +11699,7 @@ def is_no_entries_provided(self): :rtype: bool """ - return self._tag == "no_entries_provided" + return self._tag == 'no_entries_provided' def is_too_many_entries_provided(self): """ @@ -12418,7 +11707,7 @@ def is_too_many_entries_provided(self): :rtype: bool """ - return self._tag == "too_many_entries_provided" + return self._tag == 'too_many_entries_provided' def is_unknown_error(self): """ @@ -12426,7 +11715,7 @@ def is_unknown_error(self): :rtype: bool """ - return self._tag == "unknown_error" + return self._tag == 'unknown_error' def is_other(self): """ @@ -12434,7 +11723,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_malformed_entry(self): """ @@ -12461,21 +11750,18 @@ def get_entries_do_not_exist(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharingAllowlistRemoveError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharingAllowlistRemoveError, self)._process_custom_annotations(annotation_type, field_path, processor) SharingAllowlistRemoveError_validator = bv.Union(SharingAllowlistRemoveError) - class SharingAllowlistRemoveResponse(bb.Struct): """ This struct is empty. The comment here is intentionally emitted to avoid indentation issues with Stone. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -12483,14 +11769,10 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharingAllowlistRemoveResponse, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharingAllowlistRemoveResponse, self)._process_custom_annotations(annotation_type, field_path, processor) SharingAllowlistRemoveResponse_validator = bv.Struct(SharingAllowlistRemoveResponse) - class StorageBucket(bb.Struct): """ Describes the number of users in a specific storage bucket. @@ -12504,13 +11786,15 @@ class StorageBucket(bb.Struct): """ __slots__ = [ - "_bucket_value", - "_users_value", + '_bucket_value', + '_users_value', ] _has_required_fields = True - def __init__(self, bucket=None, users=None): + def __init__(self, + bucket=None, + users=None): self._bucket_value = bb.NOT_SET self._users_value = bb.NOT_SET if bucket is not None: @@ -12525,14 +11809,10 @@ def __init__(self, bucket=None, users=None): users = bb.Attribute("users") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(StorageBucket, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(StorageBucket, self)._process_custom_annotations(annotation_type, field_path, processor) StorageBucket_validator = bv.Struct(StorageBucket) - class TeamFolderAccessError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -12546,7 +11826,7 @@ class TeamFolderAccessError(bb.Union): folder. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition invalid_team_folder_id = None # Attribute is overwritten below the class definition @@ -12560,7 +11840,7 @@ def is_invalid_team_folder_id(self): :rtype: bool """ - return self._tag == "invalid_team_folder_id" + return self._tag == 'invalid_team_folder_id' def is_no_access(self): """ @@ -12568,7 +11848,7 @@ def is_no_access(self): :rtype: bool """ - return self._tag == "no_access" + return self._tag == 'no_access' def is_other(self): """ @@ -12576,17 +11856,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderAccessError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamFolderAccessError, self)._process_custom_annotations(annotation_type, field_path, processor) TeamFolderAccessError_validator = bv.Union(TeamFolderAccessError) - class TeamFolderActivateError(BaseTeamFolderError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -12595,14 +11871,10 @@ class TeamFolderActivateError(BaseTeamFolderError): """ def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderActivateError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamFolderActivateError, self)._process_custom_annotations(annotation_type, field_path, processor) TeamFolderActivateError_validator = bv.Union(TeamFolderActivateError) - class TeamFolderIdArg(bb.Struct): """ :ivar TeamFolderIdArg.team_folder_id: @@ -12610,12 +11882,13 @@ class TeamFolderIdArg(bb.Struct): """ __slots__ = [ - "_team_folder_id_value", + '_team_folder_id_value', ] _has_required_fields = True - def __init__(self, team_folder_id=None): + def __init__(self, + team_folder_id=None): self._team_folder_id_value = bb.NOT_SET if team_folder_id is not None: self.team_folder_id = team_folder_id @@ -12624,14 +11897,10 @@ def __init__(self, team_folder_id=None): team_folder_id = bb.Attribute("team_folder_id") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderIdArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamFolderIdArg, self)._process_custom_annotations(annotation_type, field_path, processor) TeamFolderIdArg_validator = bv.Struct(TeamFolderIdArg) - class TeamFolderArchiveArg(TeamFolderIdArg): """ :ivar TeamFolderArchiveArg.force_async_off: @@ -12639,12 +11908,14 @@ class TeamFolderArchiveArg(TeamFolderIdArg): """ __slots__ = [ - "_force_async_off_value", + '_force_async_off_value', ] _has_required_fields = True - def __init__(self, team_folder_id=None, force_async_off=None): + def __init__(self, + team_folder_id=None, + force_async_off=None): super(TeamFolderArchiveArg, self).__init__(team_folder_id) self._force_async_off_value = bb.NOT_SET if force_async_off is not None: @@ -12654,14 +11925,10 @@ def __init__(self, team_folder_id=None, force_async_off=None): force_async_off = bb.Attribute("force_async_off") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderArchiveArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamFolderArchiveArg, self)._process_custom_annotations(annotation_type, field_path, processor) TeamFolderArchiveArg_validator = bv.Struct(TeamFolderArchiveArg) - class TeamFolderArchiveError(BaseTeamFolderError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -12670,14 +11937,10 @@ class TeamFolderArchiveError(BaseTeamFolderError): """ def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderArchiveError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamFolderArchiveError, self)._process_custom_annotations(annotation_type, field_path, processor) TeamFolderArchiveError_validator = bv.Union(TeamFolderArchiveError) - class TeamFolderArchiveJobStatus(async_.PollResultBase): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -12703,7 +11966,7 @@ def complete(cls, val): :param TeamFolderMetadata val: :rtype: TeamFolderArchiveJobStatus """ - return cls("complete", val) + return cls('complete', val) @classmethod def failed(cls, val): @@ -12714,7 +11977,7 @@ def failed(cls, val): :param TeamFolderArchiveError val: :rtype: TeamFolderArchiveJobStatus """ - return cls("failed", val) + return cls('failed', val) def is_complete(self): """ @@ -12722,7 +11985,7 @@ def is_complete(self): :rtype: bool """ - return self._tag == "complete" + return self._tag == 'complete' def is_failed(self): """ @@ -12730,7 +11993,7 @@ def is_failed(self): :rtype: bool """ - return self._tag == "failed" + return self._tag == 'failed' def get_complete(self): """ @@ -12759,14 +12022,10 @@ def get_failed(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderArchiveJobStatus, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamFolderArchiveJobStatus, self)._process_custom_annotations(annotation_type, field_path, processor) TeamFolderArchiveJobStatus_validator = bv.Union(TeamFolderArchiveJobStatus) - class TeamFolderArchiveLaunch(async_.LaunchResultBase): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -12783,7 +12042,7 @@ def complete(cls, val): :param TeamFolderMetadata val: :rtype: TeamFolderArchiveLaunch """ - return cls("complete", val) + return cls('complete', val) def is_complete(self): """ @@ -12791,7 +12050,7 @@ def is_complete(self): :rtype: bool """ - return self._tag == "complete" + return self._tag == 'complete' def get_complete(self): """ @@ -12804,14 +12063,10 @@ def get_complete(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderArchiveLaunch, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamFolderArchiveLaunch, self)._process_custom_annotations(annotation_type, field_path, processor) TeamFolderArchiveLaunch_validator = bv.Union(TeamFolderArchiveLaunch) - class TeamFolderCreateArg(bb.Struct): """ :ivar TeamFolderCreateArg.name: @@ -12822,13 +12077,15 @@ class TeamFolderCreateArg(bb.Struct): """ __slots__ = [ - "_name_value", - "_sync_setting_value", + '_name_value', + '_sync_setting_value', ] _has_required_fields = True - def __init__(self, name=None, sync_setting=None): + def __init__(self, + name=None, + sync_setting=None): self._name_value = bb.NOT_SET self._sync_setting_value = bb.NOT_SET if name is not None: @@ -12843,14 +12100,10 @@ def __init__(self, name=None, sync_setting=None): sync_setting = bb.Attribute("sync_setting", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderCreateArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamFolderCreateArg, self)._process_custom_annotations(annotation_type, field_path, processor) TeamFolderCreateArg_validator = bv.Struct(TeamFolderCreateArg) - class TeamFolderCreateError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -12871,7 +12124,7 @@ class TeamFolderCreateError(bb.Union): plan. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition invalid_folder_name = None # Attribute is overwritten below the class definition @@ -12892,7 +12145,7 @@ def sync_settings_error(cls, val): :param files.SyncSettingsError val: :rtype: TeamFolderCreateError """ - return cls("sync_settings_error", val) + return cls('sync_settings_error', val) def is_invalid_folder_name(self): """ @@ -12900,7 +12153,7 @@ def is_invalid_folder_name(self): :rtype: bool """ - return self._tag == "invalid_folder_name" + return self._tag == 'invalid_folder_name' def is_folder_name_already_used(self): """ @@ -12908,7 +12161,7 @@ def is_folder_name_already_used(self): :rtype: bool """ - return self._tag == "folder_name_already_used" + return self._tag == 'folder_name_already_used' def is_folder_name_reserved(self): """ @@ -12916,7 +12169,7 @@ def is_folder_name_reserved(self): :rtype: bool """ - return self._tag == "folder_name_reserved" + return self._tag == 'folder_name_reserved' def is_sync_settings_error(self): """ @@ -12924,7 +12177,7 @@ def is_sync_settings_error(self): :rtype: bool """ - return self._tag == "sync_settings_error" + return self._tag == 'sync_settings_error' def is_folder_count_limit_exceeded(self): """ @@ -12932,7 +12185,7 @@ def is_folder_count_limit_exceeded(self): :rtype: bool """ - return self._tag == "folder_count_limit_exceeded" + return self._tag == 'folder_count_limit_exceeded' def is_other(self): """ @@ -12940,7 +12193,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_sync_settings_error(self): """ @@ -12955,14 +12208,10 @@ def get_sync_settings_error(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderCreateError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamFolderCreateError, self)._process_custom_annotations(annotation_type, field_path, processor) TeamFolderCreateError_validator = bv.Union(TeamFolderCreateError) - class TeamFolderGetInfoItem(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -12990,7 +12239,7 @@ def id_not_found(cls, val): :param str val: :rtype: TeamFolderGetInfoItem """ - return cls("id_not_found", val) + return cls('id_not_found', val) @classmethod def team_folder_metadata(cls, val): @@ -13001,7 +12250,7 @@ def team_folder_metadata(cls, val): :param TeamFolderMetadata val: :rtype: TeamFolderGetInfoItem """ - return cls("team_folder_metadata", val) + return cls('team_folder_metadata', val) def is_id_not_found(self): """ @@ -13009,7 +12258,7 @@ def is_id_not_found(self): :rtype: bool """ - return self._tag == "id_not_found" + return self._tag == 'id_not_found' def is_team_folder_metadata(self): """ @@ -13017,7 +12266,7 @@ def is_team_folder_metadata(self): :rtype: bool """ - return self._tag == "team_folder_metadata" + return self._tag == 'team_folder_metadata' def get_id_not_found(self): """ @@ -13046,14 +12295,10 @@ def get_team_folder_metadata(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderGetInfoItem, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamFolderGetInfoItem, self)._process_custom_annotations(annotation_type, field_path, processor) TeamFolderGetInfoItem_validator = bv.Union(TeamFolderGetInfoItem) - class TeamFolderIdListArg(bb.Struct): """ :ivar TeamFolderIdListArg.team_folder_ids: @@ -13061,12 +12306,13 @@ class TeamFolderIdListArg(bb.Struct): """ __slots__ = [ - "_team_folder_ids_value", + '_team_folder_ids_value', ] _has_required_fields = True - def __init__(self, team_folder_ids=None): + def __init__(self, + team_folder_ids=None): self._team_folder_ids_value = bb.NOT_SET if team_folder_ids is not None: self.team_folder_ids = team_folder_ids @@ -13075,14 +12321,10 @@ def __init__(self, team_folder_ids=None): team_folder_ids = bb.Attribute("team_folder_ids") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderIdListArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamFolderIdListArg, self)._process_custom_annotations(annotation_type, field_path, processor) TeamFolderIdListArg_validator = bv.Struct(TeamFolderIdListArg) - class TeamFolderInvalidStatusError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -13097,7 +12339,7 @@ class TeamFolderInvalidStatusError(bb.Union): The folder is being archived and the operation did not succeed. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition active = None # Attribute is overwritten below the class definition @@ -13113,7 +12355,7 @@ def is_active(self): :rtype: bool """ - return self._tag == "active" + return self._tag == 'active' def is_archived(self): """ @@ -13121,7 +12363,7 @@ def is_archived(self): :rtype: bool """ - return self._tag == "archived" + return self._tag == 'archived' def is_archive_in_progress(self): """ @@ -13129,7 +12371,7 @@ def is_archive_in_progress(self): :rtype: bool """ - return self._tag == "archive_in_progress" + return self._tag == 'archive_in_progress' def is_other(self): """ @@ -13137,17 +12379,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderInvalidStatusError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamFolderInvalidStatusError, self)._process_custom_annotations(annotation_type, field_path, processor) TeamFolderInvalidStatusError_validator = bv.Union(TeamFolderInvalidStatusError) - class TeamFolderListArg(bb.Struct): """ :ivar TeamFolderListArg.limit: @@ -13155,12 +12393,13 @@ class TeamFolderListArg(bb.Struct): """ __slots__ = [ - "_limit_value", + '_limit_value', ] _has_required_fields = False - def __init__(self, limit=None): + def __init__(self, + limit=None): self._limit_value = bb.NOT_SET if limit is not None: self.limit = limit @@ -13169,14 +12408,10 @@ def __init__(self, limit=None): limit = bb.Attribute("limit") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderListArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamFolderListArg, self)._process_custom_annotations(annotation_type, field_path, processor) TeamFolderListArg_validator = bv.Struct(TeamFolderListArg) - class TeamFolderListContinueArg(bb.Struct): """ :ivar TeamFolderListContinueArg.cursor: @@ -13184,12 +12419,13 @@ class TeamFolderListContinueArg(bb.Struct): """ __slots__ = [ - "_cursor_value", + '_cursor_value', ] _has_required_fields = True - def __init__(self, cursor=None): + def __init__(self, + cursor=None): self._cursor_value = bb.NOT_SET if cursor is not None: self.cursor = cursor @@ -13198,14 +12434,10 @@ def __init__(self, cursor=None): cursor = bb.Attribute("cursor") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderListContinueArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamFolderListContinueArg, self)._process_custom_annotations(annotation_type, field_path, processor) TeamFolderListContinueArg_validator = bv.Struct(TeamFolderListContinueArg) - class TeamFolderListContinueError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -13216,7 +12448,7 @@ class TeamFolderListContinueError(bb.Union): The cursor is invalid. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition invalid_cursor = None # Attribute is overwritten below the class definition @@ -13228,7 +12460,7 @@ def is_invalid_cursor(self): :rtype: bool """ - return self._tag == "invalid_cursor" + return self._tag == 'invalid_cursor' def is_other(self): """ @@ -13236,25 +12468,23 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderListContinueError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamFolderListContinueError, self)._process_custom_annotations(annotation_type, field_path, processor) TeamFolderListContinueError_validator = bv.Union(TeamFolderListContinueError) - class TeamFolderListError(bb.Struct): + __slots__ = [ - "_access_error_value", + '_access_error_value', ] _has_required_fields = True - def __init__(self, access_error=None): + def __init__(self, + access_error=None): self._access_error_value = bb.NOT_SET if access_error is not None: self.access_error = access_error @@ -13263,14 +12493,10 @@ def __init__(self, access_error=None): access_error = bb.Attribute("access_error", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderListError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamFolderListError, self)._process_custom_annotations(annotation_type, field_path, processor) TeamFolderListError_validator = bv.Struct(TeamFolderListError) - class TeamFolderListResult(bb.Struct): """ Result for :meth:`dropbox.dropbox_client.Dropbox.team_team_folder_list` and @@ -13290,14 +12516,17 @@ class TeamFolderListResult(bb.Struct): """ __slots__ = [ - "_team_folders_value", - "_cursor_value", - "_has_more_value", + '_team_folders_value', + '_cursor_value', + '_has_more_value', ] _has_required_fields = True - def __init__(self, team_folders=None, cursor=None, has_more=None): + def __init__(self, + team_folders=None, + cursor=None, + has_more=None): self._team_folders_value = bb.NOT_SET self._cursor_value = bb.NOT_SET self._has_more_value = bb.NOT_SET @@ -13318,14 +12547,10 @@ def __init__(self, team_folders=None, cursor=None, has_more=None): has_more = bb.Attribute("has_more") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderListResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamFolderListResult, self)._process_custom_annotations(annotation_type, field_path, processor) TeamFolderListResult_validator = bv.Struct(TeamFolderListResult) - class TeamFolderMetadata(bb.Struct): """ Properties of a team folder. @@ -13347,27 +12572,25 @@ class TeamFolderMetadata(bb.Struct): """ __slots__ = [ - "_team_folder_id_value", - "_name_value", - "_status_value", - "_is_team_shared_dropbox_value", - "_sync_setting_value", - "_content_sync_settings_value", - "_quota_limit_value", + '_team_folder_id_value', + '_name_value', + '_status_value', + '_is_team_shared_dropbox_value', + '_sync_setting_value', + '_content_sync_settings_value', + '_quota_limit_value', ] _has_required_fields = True - def __init__( - self, - team_folder_id=None, - name=None, - status=None, - is_team_shared_dropbox=None, - sync_setting=None, - content_sync_settings=None, - quota_limit=None, - ): + def __init__(self, + team_folder_id=None, + name=None, + status=None, + is_team_shared_dropbox=None, + sync_setting=None, + content_sync_settings=None, + quota_limit=None): self._team_folder_id_value = bb.NOT_SET self._name_value = bb.NOT_SET self._status_value = bb.NOT_SET @@ -13412,14 +12635,10 @@ def __init__( quota_limit = bb.Attribute("quota_limit") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderMetadata, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamFolderMetadata, self)._process_custom_annotations(annotation_type, field_path, processor) TeamFolderMetadata_validator = bv.Struct(TeamFolderMetadata) - class TeamFolderPermanentlyDeleteError(BaseTeamFolderError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -13428,14 +12647,10 @@ class TeamFolderPermanentlyDeleteError(BaseTeamFolderError): """ def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderPermanentlyDeleteError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamFolderPermanentlyDeleteError, self)._process_custom_annotations(annotation_type, field_path, processor) TeamFolderPermanentlyDeleteError_validator = bv.Union(TeamFolderPermanentlyDeleteError) - class TeamFolderRenameArg(TeamFolderIdArg): """ :ivar TeamFolderRenameArg.name: @@ -13443,12 +12658,14 @@ class TeamFolderRenameArg(TeamFolderIdArg): """ __slots__ = [ - "_name_value", + '_name_value', ] _has_required_fields = True - def __init__(self, team_folder_id=None, name=None): + def __init__(self, + team_folder_id=None, + name=None): super(TeamFolderRenameArg, self).__init__(team_folder_id) self._name_value = bb.NOT_SET if name is not None: @@ -13458,14 +12675,10 @@ def __init__(self, team_folder_id=None, name=None): name = bb.Attribute("name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderRenameArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamFolderRenameArg, self)._process_custom_annotations(annotation_type, field_path, processor) TeamFolderRenameArg_validator = bv.Struct(TeamFolderRenameArg) - class TeamFolderRenameError(BaseTeamFolderError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -13493,7 +12706,7 @@ def is_invalid_folder_name(self): :rtype: bool """ - return self._tag == "invalid_folder_name" + return self._tag == 'invalid_folder_name' def is_folder_name_already_used(self): """ @@ -13501,7 +12714,7 @@ def is_folder_name_already_used(self): :rtype: bool """ - return self._tag == "folder_name_already_used" + return self._tag == 'folder_name_already_used' def is_folder_name_reserved(self): """ @@ -13509,17 +12722,13 @@ def is_folder_name_reserved(self): :rtype: bool """ - return self._tag == "folder_name_reserved" + return self._tag == 'folder_name_reserved' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderRenameError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamFolderRenameError, self)._process_custom_annotations(annotation_type, field_path, processor) TeamFolderRenameError_validator = bv.Union(TeamFolderRenameError) - class TeamFolderRestoreError(BaseTeamFolderError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -13528,14 +12737,10 @@ class TeamFolderRestoreError(BaseTeamFolderError): """ def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderRestoreError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamFolderRestoreError, self)._process_custom_annotations(annotation_type, field_path, processor) TeamFolderRestoreError_validator = bv.Union(TeamFolderRestoreError) - class TeamFolderStatus(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -13554,7 +12759,7 @@ class TeamFolderStatus(bb.Union): The team folder is unmounted and can be restored. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition active = None # Attribute is overwritten below the class definition @@ -13572,7 +12777,7 @@ def is_active(self): :rtype: bool """ - return self._tag == "active" + return self._tag == 'active' def is_archived(self): """ @@ -13580,7 +12785,7 @@ def is_archived(self): :rtype: bool """ - return self._tag == "archived" + return self._tag == 'archived' def is_archive_in_progress(self): """ @@ -13588,7 +12793,7 @@ def is_archive_in_progress(self): :rtype: bool """ - return self._tag == "archive_in_progress" + return self._tag == 'archive_in_progress' def is_inactive(self): """ @@ -13596,7 +12801,7 @@ def is_inactive(self): :rtype: bool """ - return self._tag == "inactive" + return self._tag == 'inactive' def is_other(self): """ @@ -13604,17 +12809,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderStatus, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamFolderStatus, self)._process_custom_annotations(annotation_type, field_path, processor) TeamFolderStatus_validator = bv.Union(TeamFolderStatus) - class TeamFolderTeamSharedDropboxError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -13625,7 +12826,7 @@ class TeamFolderTeamSharedDropboxError(bb.Union): This action is not allowed for a shared team root. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition disallowed = None # Attribute is overwritten below the class definition @@ -13637,7 +12838,7 @@ def is_disallowed(self): :rtype: bool """ - return self._tag == "disallowed" + return self._tag == 'disallowed' def is_other(self): """ @@ -13645,17 +12846,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderTeamSharedDropboxError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamFolderTeamSharedDropboxError, self)._process_custom_annotations(annotation_type, field_path, processor) TeamFolderTeamSharedDropboxError_validator = bv.Union(TeamFolderTeamSharedDropboxError) - class TeamFolderUpdateSyncSettingsArg(TeamFolderIdArg): """ :ivar TeamFolderUpdateSyncSettingsArg.sync_setting: @@ -13666,13 +12863,16 @@ class TeamFolderUpdateSyncSettingsArg(TeamFolderIdArg): """ __slots__ = [ - "_sync_setting_value", - "_content_sync_settings_value", + '_sync_setting_value', + '_content_sync_settings_value', ] _has_required_fields = True - def __init__(self, team_folder_id=None, sync_setting=None, content_sync_settings=None): + def __init__(self, + team_folder_id=None, + sync_setting=None, + content_sync_settings=None): super(TeamFolderUpdateSyncSettingsArg, self).__init__(team_folder_id) self._sync_setting_value = bb.NOT_SET self._content_sync_settings_value = bb.NOT_SET @@ -13688,14 +12888,10 @@ def __init__(self, team_folder_id=None, sync_setting=None, content_sync_settings content_sync_settings = bb.Attribute("content_sync_settings", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderUpdateSyncSettingsArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamFolderUpdateSyncSettingsArg, self)._process_custom_annotations(annotation_type, field_path, processor) TeamFolderUpdateSyncSettingsArg_validator = bv.Struct(TeamFolderUpdateSyncSettingsArg) - class TeamFolderUpdateSyncSettingsError(BaseTeamFolderError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -13716,7 +12912,7 @@ def sync_settings_error(cls, val): :param files.SyncSettingsError val: :rtype: TeamFolderUpdateSyncSettingsError """ - return cls("sync_settings_error", val) + return cls('sync_settings_error', val) def is_sync_settings_error(self): """ @@ -13724,7 +12920,7 @@ def is_sync_settings_error(self): :rtype: bool """ - return self._tag == "sync_settings_error" + return self._tag == 'sync_settings_error' def get_sync_settings_error(self): """ @@ -13739,14 +12935,10 @@ def get_sync_settings_error(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderUpdateSyncSettingsError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamFolderUpdateSyncSettingsError, self)._process_custom_annotations(annotation_type, field_path, processor) TeamFolderUpdateSyncSettingsError_validator = bv.Union(TeamFolderUpdateSyncSettingsError) - class TeamGetInfoResult(bb.Struct): """ :ivar TeamGetInfoResult.name: @@ -13763,25 +12955,23 @@ class TeamGetInfoResult(bb.Struct): """ __slots__ = [ - "_name_value", - "_team_id_value", - "_num_licensed_users_value", - "_num_provisioned_users_value", - "_num_used_licenses_value", - "_policies_value", + '_name_value', + '_team_id_value', + '_num_licensed_users_value', + '_num_provisioned_users_value', + '_num_used_licenses_value', + '_policies_value', ] _has_required_fields = True - def __init__( - self, - name=None, - team_id=None, - num_licensed_users=None, - num_provisioned_users=None, - policies=None, - num_used_licenses=None, - ): + def __init__(self, + name=None, + team_id=None, + num_licensed_users=None, + num_provisioned_users=None, + policies=None, + num_used_licenses=None): self._name_value = bb.NOT_SET self._team_id_value = bb.NOT_SET self._num_licensed_users_value = bb.NOT_SET @@ -13820,14 +13010,10 @@ def __init__( policies = bb.Attribute("policies", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamGetInfoResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamGetInfoResult, self)._process_custom_annotations(annotation_type, field_path, processor) TeamGetInfoResult_validator = bv.Struct(TeamGetInfoResult) - class TeamMemberInfo(bb.Struct): """ Information about a team member. @@ -13839,13 +13025,15 @@ class TeamMemberInfo(bb.Struct): """ __slots__ = [ - "_profile_value", - "_role_value", + '_profile_value', + '_role_value', ] _has_required_fields = True - def __init__(self, profile=None, role=None): + def __init__(self, + profile=None, + role=None): self._profile_value = bb.NOT_SET self._role_value = bb.NOT_SET if profile is not None: @@ -13860,14 +13048,10 @@ def __init__(self, profile=None, role=None): role = bb.Attribute("role", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMemberInfo, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamMemberInfo, self)._process_custom_annotations(annotation_type, field_path, processor) TeamMemberInfo_validator = bv.Struct(TeamMemberInfo) - class TeamMemberInfoV2(bb.Struct): """ Information about a team member. @@ -13879,13 +13063,15 @@ class TeamMemberInfoV2(bb.Struct): """ __slots__ = [ - "_profile_value", - "_roles_value", + '_profile_value', + '_roles_value', ] _has_required_fields = True - def __init__(self, profile=None, roles=None): + def __init__(self, + profile=None, + roles=None): self._profile_value = bb.NOT_SET self._roles_value = bb.NOT_SET if profile is not None: @@ -13900,14 +13086,10 @@ def __init__(self, profile=None, roles=None): roles = bb.Attribute("roles", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMemberInfoV2, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamMemberInfoV2, self)._process_custom_annotations(annotation_type, field_path, processor) TeamMemberInfoV2_validator = bv.Struct(TeamMemberInfoV2) - class TeamMemberInfoV2Result(bb.Struct): """ Information about a team member, after the change, like at @@ -13918,12 +13100,13 @@ class TeamMemberInfoV2Result(bb.Struct): """ __slots__ = [ - "_member_info_value", + '_member_info_value', ] _has_required_fields = True - def __init__(self, member_info=None): + def __init__(self, + member_info=None): self._member_info_value = bb.NOT_SET if member_info is not None: self.member_info = member_info @@ -13932,14 +13115,10 @@ def __init__(self, member_info=None): member_info = bb.Attribute("member_info", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMemberInfoV2Result, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamMemberInfoV2Result, self)._process_custom_annotations(annotation_type, field_path, processor) TeamMemberInfoV2Result_validator = bv.Struct(TeamMemberInfoV2Result) - class TeamMemberProfile(MemberProfile): """ Profile of a user as a member of a team. @@ -13953,51 +13132,47 @@ class TeamMemberProfile(MemberProfile): """ __slots__ = [ - "_groups_value", - "_member_folder_id_value", - "_root_folder_id_value", + '_groups_value', + '_member_folder_id_value', + '_root_folder_id_value', ] _has_required_fields = True - def __init__( - self, - team_member_id=None, - email=None, - email_verified=None, - status=None, - name=None, - membership_type=None, - groups=None, - member_folder_id=None, - root_folder_id=None, - external_id=None, - account_id=None, - secondary_emails=None, - invited_on=None, - joined_on=None, - suspended_on=None, - persistent_id=None, - is_directory_restricted=None, - profile_photo_url=None, - ): - super(TeamMemberProfile, self).__init__( - team_member_id, - email, - email_verified, - status, - name, - membership_type, - external_id, - account_id, - secondary_emails, - invited_on, - joined_on, - suspended_on, - persistent_id, - is_directory_restricted, - profile_photo_url, - ) + def __init__(self, + team_member_id=None, + email=None, + email_verified=None, + status=None, + name=None, + membership_type=None, + groups=None, + member_folder_id=None, + root_folder_id=None, + external_id=None, + account_id=None, + secondary_emails=None, + invited_on=None, + joined_on=None, + suspended_on=None, + persistent_id=None, + is_directory_restricted=None, + profile_photo_url=None): + super(TeamMemberProfile, self).__init__(team_member_id, + email, + email_verified, + status, + name, + membership_type, + external_id, + account_id, + secondary_emails, + invited_on, + joined_on, + suspended_on, + persistent_id, + is_directory_restricted, + profile_photo_url) self._groups_value = bb.NOT_SET self._member_folder_id_value = bb.NOT_SET self._root_folder_id_value = bb.NOT_SET @@ -14018,14 +13193,10 @@ def __init__( root_folder_id = bb.Attribute("root_folder_id") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMemberProfile, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamMemberProfile, self)._process_custom_annotations(annotation_type, field_path, processor) TeamMemberProfile_validator = bv.Struct(TeamMemberProfile) - class TeamMemberRole(bb.Struct): """ A role which can be attached to a team member. This replaces AdminTier; each @@ -14041,14 +13212,17 @@ class TeamMemberRole(bb.Struct): """ __slots__ = [ - "_role_id_value", - "_name_value", - "_description_value", + '_role_id_value', + '_name_value', + '_description_value', ] _has_required_fields = True - def __init__(self, role_id=None, name=None, description=None): + def __init__(self, + role_id=None, + name=None, + description=None): self._role_id_value = bb.NOT_SET self._name_value = bb.NOT_SET self._description_value = bb.NOT_SET @@ -14069,14 +13243,10 @@ def __init__(self, role_id=None, name=None, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMemberRole, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamMemberRole, self)._process_custom_annotations(annotation_type, field_path, processor) TeamMemberRole_validator = bv.Struct(TeamMemberRole) - class TeamMemberStatus(bb.Union): """ The user's status as a member of a specific team. @@ -14115,7 +13285,7 @@ def removed(cls, val): :param RemovedStatus val: :rtype: TeamMemberStatus """ - return cls("removed", val) + return cls('removed', val) def is_active(self): """ @@ -14123,7 +13293,7 @@ def is_active(self): :rtype: bool """ - return self._tag == "active" + return self._tag == 'active' def is_invited(self): """ @@ -14131,7 +13301,7 @@ def is_invited(self): :rtype: bool """ - return self._tag == "invited" + return self._tag == 'invited' def is_suspended(self): """ @@ -14139,7 +13309,7 @@ def is_suspended(self): :rtype: bool """ - return self._tag == "suspended" + return self._tag == 'suspended' def is_removed(self): """ @@ -14147,7 +13317,7 @@ def is_removed(self): :rtype: bool """ - return self._tag == "removed" + return self._tag == 'removed' def get_removed(self): """ @@ -14163,14 +13333,10 @@ def get_removed(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMemberStatus, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamMemberStatus, self)._process_custom_annotations(annotation_type, field_path, processor) TeamMemberStatus_validator = bv.Union(TeamMemberStatus) - class TeamMembershipType(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -14197,7 +13363,7 @@ def is_full(self): :rtype: bool """ - return self._tag == "full" + return self._tag == 'full' def is_limited(self): """ @@ -14205,17 +13371,13 @@ def is_limited(self): :rtype: bool """ - return self._tag == "limited" + return self._tag == 'limited' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMembershipType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamMembershipType, self)._process_custom_annotations(annotation_type, field_path, processor) TeamMembershipType_validator = bv.Union(TeamMembershipType) - class TeamNamespacesListArg(bb.Struct): """ :ivar TeamNamespacesListArg.limit: @@ -14223,12 +13385,13 @@ class TeamNamespacesListArg(bb.Struct): """ __slots__ = [ - "_limit_value", + '_limit_value', ] _has_required_fields = False - def __init__(self, limit=None): + def __init__(self, + limit=None): self._limit_value = bb.NOT_SET if limit is not None: self.limit = limit @@ -14237,14 +13400,10 @@ def __init__(self, limit=None): limit = bb.Attribute("limit") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamNamespacesListArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamNamespacesListArg, self)._process_custom_annotations(annotation_type, field_path, processor) TeamNamespacesListArg_validator = bv.Struct(TeamNamespacesListArg) - class TeamNamespacesListContinueArg(bb.Struct): """ :ivar TeamNamespacesListContinueArg.cursor: @@ -14253,12 +13412,13 @@ class TeamNamespacesListContinueArg(bb.Struct): """ __slots__ = [ - "_cursor_value", + '_cursor_value', ] _has_required_fields = True - def __init__(self, cursor=None): + def __init__(self, + cursor=None): self._cursor_value = bb.NOT_SET if cursor is not None: self.cursor = cursor @@ -14267,14 +13427,10 @@ def __init__(self, cursor=None): cursor = bb.Attribute("cursor") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamNamespacesListContinueArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamNamespacesListContinueArg, self)._process_custom_annotations(annotation_type, field_path, processor) TeamNamespacesListContinueArg_validator = bv.Struct(TeamNamespacesListContinueArg) - class TeamNamespacesListError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -14285,7 +13441,7 @@ class TeamNamespacesListError(bb.Union): Argument passed in is invalid. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition invalid_arg = None # Attribute is overwritten below the class definition @@ -14297,7 +13453,7 @@ def is_invalid_arg(self): :rtype: bool """ - return self._tag == "invalid_arg" + return self._tag == 'invalid_arg' def is_other(self): """ @@ -14305,17 +13461,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamNamespacesListError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamNamespacesListError, self)._process_custom_annotations(annotation_type, field_path, processor) TeamNamespacesListError_validator = bv.Union(TeamNamespacesListError) - class TeamNamespacesListContinueError(TeamNamespacesListError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -14335,17 +13487,13 @@ def is_invalid_cursor(self): :rtype: bool """ - return self._tag == "invalid_cursor" + return self._tag == 'invalid_cursor' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamNamespacesListContinueError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamNamespacesListContinueError, self)._process_custom_annotations(annotation_type, field_path, processor) TeamNamespacesListContinueError_validator = bv.Union(TeamNamespacesListContinueError) - class TeamNamespacesListResult(bb.Struct): """ Result for :meth:`dropbox.dropbox_client.Dropbox.team_namespaces_list`. @@ -14363,14 +13511,17 @@ class TeamNamespacesListResult(bb.Struct): """ __slots__ = [ - "_namespaces_value", - "_cursor_value", - "_has_more_value", + '_namespaces_value', + '_cursor_value', + '_has_more_value', ] _has_required_fields = True - def __init__(self, namespaces=None, cursor=None, has_more=None): + def __init__(self, + namespaces=None, + cursor=None, + has_more=None): self._namespaces_value = bb.NOT_SET self._cursor_value = bb.NOT_SET self._has_more_value = bb.NOT_SET @@ -14391,14 +13542,10 @@ def __init__(self, namespaces=None, cursor=None, has_more=None): has_more = bb.Attribute("has_more") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamNamespacesListResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamNamespacesListResult, self)._process_custom_annotations(annotation_type, field_path, processor) TeamNamespacesListResult_validator = bv.Struct(TeamNamespacesListResult) - class TeamReportFailureReason(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -14416,7 +13563,7 @@ class TeamReportFailureReason(bb.Union): data. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition temporary_error = None # Attribute is overwritten below the class definition @@ -14432,7 +13579,7 @@ def is_temporary_error(self): :rtype: bool """ - return self._tag == "temporary_error" + return self._tag == 'temporary_error' def is_many_reports_at_once(self): """ @@ -14440,7 +13587,7 @@ def is_many_reports_at_once(self): :rtype: bool """ - return self._tag == "many_reports_at_once" + return self._tag == 'many_reports_at_once' def is_too_much_data(self): """ @@ -14448,7 +13595,7 @@ def is_too_much_data(self): :rtype: bool """ - return self._tag == "too_much_data" + return self._tag == 'too_much_data' def is_other(self): """ @@ -14456,17 +13603,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamReportFailureReason, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamReportFailureReason, self)._process_custom_annotations(annotation_type, field_path, processor) TeamReportFailureReason_validator = bv.Union(TeamReportFailureReason) - class TokenGetAuthenticatedAdminError(bb.Union): """ Error returned by @@ -14485,7 +13628,7 @@ class TokenGetAuthenticatedAdminError(bb.Union): member of the team or no longer a team admin. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition mapping_not_found = None # Attribute is overwritten below the class definition @@ -14499,7 +13642,7 @@ def is_mapping_not_found(self): :rtype: bool """ - return self._tag == "mapping_not_found" + return self._tag == 'mapping_not_found' def is_admin_not_active(self): """ @@ -14507,7 +13650,7 @@ def is_admin_not_active(self): :rtype: bool """ - return self._tag == "admin_not_active" + return self._tag == 'admin_not_active' def is_other(self): """ @@ -14515,17 +13658,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TokenGetAuthenticatedAdminError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TokenGetAuthenticatedAdminError, self)._process_custom_annotations(annotation_type, field_path, processor) TokenGetAuthenticatedAdminError_validator = bv.Union(TokenGetAuthenticatedAdminError) - class TokenGetAuthenticatedAdminResult(bb.Struct): """ Results for @@ -14536,12 +13675,13 @@ class TokenGetAuthenticatedAdminResult(bb.Struct): """ __slots__ = [ - "_admin_profile_value", + '_admin_profile_value', ] _has_required_fields = True - def __init__(self, admin_profile=None): + def __init__(self, + admin_profile=None): self._admin_profile_value = bb.NOT_SET if admin_profile is not None: self.admin_profile = admin_profile @@ -14550,14 +13690,10 @@ def __init__(self, admin_profile=None): admin_profile = bb.Attribute("admin_profile", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TokenGetAuthenticatedAdminResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TokenGetAuthenticatedAdminResult, self)._process_custom_annotations(annotation_type, field_path, processor) TokenGetAuthenticatedAdminResult_validator = bv.Struct(TokenGetAuthenticatedAdminResult) - class UploadApiRateLimitValue(bb.Union): """ The value for ``Feature.upload_api_rate_limit``. @@ -14574,7 +13710,7 @@ class UploadApiRateLimitValue(bb.Union): :vartype UploadApiRateLimitValue.limit: int """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition unlimited = None # Attribute is overwritten below the class definition @@ -14589,7 +13725,7 @@ def limit(cls, val): :param int val: :rtype: UploadApiRateLimitValue """ - return cls("limit", val) + return cls('limit', val) def is_unlimited(self): """ @@ -14597,7 +13733,7 @@ def is_unlimited(self): :rtype: bool """ - return self._tag == "unlimited" + return self._tag == 'unlimited' def is_limit(self): """ @@ -14605,7 +13741,7 @@ def is_limit(self): :rtype: bool """ - return self._tag == "limit" + return self._tag == 'limit' def is_other(self): """ @@ -14613,7 +13749,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_limit(self): """ @@ -14628,14 +13764,10 @@ def get_limit(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UploadApiRateLimitValue, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UploadApiRateLimitValue, self)._process_custom_annotations(annotation_type, field_path, processor) UploadApiRateLimitValue_validator = bv.Union(UploadApiRateLimitValue) - class UserAddResult(bb.Union): """ Result of trying to add secondary emails to a user. 'success' is the only @@ -14662,7 +13794,7 @@ class UserAddResult(bb.Union): :vartype UserAddResult.placeholder_user: UserSelectorArg """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -14675,7 +13807,7 @@ def success(cls, val): :param UserSecondaryEmailsResult val: :rtype: UserAddResult """ - return cls("success", val) + return cls('success', val) @classmethod def invalid_user(cls, val): @@ -14686,7 +13818,7 @@ def invalid_user(cls, val): :param UserSelectorArg val: :rtype: UserAddResult """ - return cls("invalid_user", val) + return cls('invalid_user', val) @classmethod def unverified(cls, val): @@ -14697,7 +13829,7 @@ def unverified(cls, val): :param UserSelectorArg val: :rtype: UserAddResult """ - return cls("unverified", val) + return cls('unverified', val) @classmethod def placeholder_user(cls, val): @@ -14708,7 +13840,7 @@ def placeholder_user(cls, val): :param UserSelectorArg val: :rtype: UserAddResult """ - return cls("placeholder_user", val) + return cls('placeholder_user', val) def is_success(self): """ @@ -14716,7 +13848,7 @@ def is_success(self): :rtype: bool """ - return self._tag == "success" + return self._tag == 'success' def is_invalid_user(self): """ @@ -14724,7 +13856,7 @@ def is_invalid_user(self): :rtype: bool """ - return self._tag == "invalid_user" + return self._tag == 'invalid_user' def is_unverified(self): """ @@ -14732,7 +13864,7 @@ def is_unverified(self): :rtype: bool """ - return self._tag == "unverified" + return self._tag == 'unverified' def is_placeholder_user(self): """ @@ -14740,7 +13872,7 @@ def is_placeholder_user(self): :rtype: bool """ - return self._tag == "placeholder_user" + return self._tag == 'placeholder_user' def is_other(self): """ @@ -14748,7 +13880,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_success(self): """ @@ -14800,27 +13932,25 @@ def get_placeholder_user(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UserAddResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UserAddResult, self)._process_custom_annotations(annotation_type, field_path, processor) UserAddResult_validator = bv.Union(UserAddResult) - class UserCustomQuotaArg(bb.Struct): """ User and their required custom quota in GB (1 TB = 1024 GB). """ __slots__ = [ - "_user_value", - "_quota_gb_value", + '_user_value', + '_quota_gb_value', ] _has_required_fields = True - def __init__(self, user=None, quota_gb=None): + def __init__(self, + user=None, + quota_gb=None): self._user_value = bb.NOT_SET self._quota_gb_value = bb.NOT_SET if user is not None: @@ -14835,14 +13965,10 @@ def __init__(self, user=None, quota_gb=None): quota_gb = bb.Attribute("quota_gb") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UserCustomQuotaArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UserCustomQuotaArg, self)._process_custom_annotations(annotation_type, field_path, processor) UserCustomQuotaArg_validator = bv.Struct(UserCustomQuotaArg) - class UserCustomQuotaResult(bb.Struct): """ User and their custom quota in GB (1 TB = 1024 GB). No quota returns if the @@ -14850,13 +13976,15 @@ class UserCustomQuotaResult(bb.Struct): """ __slots__ = [ - "_user_value", - "_quota_gb_value", + '_user_value', + '_quota_gb_value', ] _has_required_fields = True - def __init__(self, user=None, quota_gb=None): + def __init__(self, + user=None, + quota_gb=None): self._user_value = bb.NOT_SET self._quota_gb_value = bb.NOT_SET if user is not None: @@ -14871,23 +13999,22 @@ def __init__(self, user=None, quota_gb=None): quota_gb = bb.Attribute("quota_gb", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UserCustomQuotaResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UserCustomQuotaResult, self)._process_custom_annotations(annotation_type, field_path, processor) UserCustomQuotaResult_validator = bv.Struct(UserCustomQuotaResult) - class UserDeleteEmailsResult(bb.Struct): + __slots__ = [ - "_user_value", - "_results_value", + '_user_value', + '_results_value', ] _has_required_fields = True - def __init__(self, user=None, results=None): + def __init__(self, + user=None, + results=None): self._user_value = bb.NOT_SET self._results_value = bb.NOT_SET if user is not None: @@ -14902,14 +14029,10 @@ def __init__(self, user=None, results=None): results = bb.Attribute("results") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UserDeleteEmailsResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UserDeleteEmailsResult, self)._process_custom_annotations(annotation_type, field_path, processor) UserDeleteEmailsResult_validator = bv.Struct(UserDeleteEmailsResult) - class UserDeleteResult(bb.Union): """ Result of trying to delete a user's secondary emails. 'success' is the only @@ -14930,7 +14053,7 @@ class UserDeleteResult(bb.Union): :vartype UserDeleteResult.invalid_user: UserSelectorArg """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -14943,7 +14066,7 @@ def success(cls, val): :param UserDeleteEmailsResult val: :rtype: UserDeleteResult """ - return cls("success", val) + return cls('success', val) @classmethod def invalid_user(cls, val): @@ -14954,7 +14077,7 @@ def invalid_user(cls, val): :param UserSelectorArg val: :rtype: UserDeleteResult """ - return cls("invalid_user", val) + return cls('invalid_user', val) def is_success(self): """ @@ -14962,7 +14085,7 @@ def is_success(self): :rtype: bool """ - return self._tag == "success" + return self._tag == 'success' def is_invalid_user(self): """ @@ -14970,7 +14093,7 @@ def is_invalid_user(self): :rtype: bool """ - return self._tag == "invalid_user" + return self._tag == 'invalid_user' def is_other(self): """ @@ -14978,7 +14101,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_success(self): """ @@ -15006,23 +14129,22 @@ def get_invalid_user(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UserDeleteResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UserDeleteResult, self)._process_custom_annotations(annotation_type, field_path, processor) UserDeleteResult_validator = bv.Union(UserDeleteResult) - class UserResendEmailsResult(bb.Struct): + __slots__ = [ - "_user_value", - "_results_value", + '_user_value', + '_results_value', ] _has_required_fields = True - def __init__(self, user=None, results=None): + def __init__(self, + user=None, + results=None): self._user_value = bb.NOT_SET self._results_value = bb.NOT_SET if user is not None: @@ -15037,14 +14159,10 @@ def __init__(self, user=None, results=None): results = bb.Attribute("results") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UserResendEmailsResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UserResendEmailsResult, self)._process_custom_annotations(annotation_type, field_path, processor) UserResendEmailsResult_validator = bv.Struct(UserResendEmailsResult) - class UserResendResult(bb.Union): """ Result of trying to resend verification emails to a user. 'success' is the @@ -15065,7 +14183,7 @@ class UserResendResult(bb.Union): :vartype UserResendResult.invalid_user: UserSelectorArg """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -15078,7 +14196,7 @@ def success(cls, val): :param UserResendEmailsResult val: :rtype: UserResendResult """ - return cls("success", val) + return cls('success', val) @classmethod def invalid_user(cls, val): @@ -15089,7 +14207,7 @@ def invalid_user(cls, val): :param UserSelectorArg val: :rtype: UserResendResult """ - return cls("invalid_user", val) + return cls('invalid_user', val) def is_success(self): """ @@ -15097,7 +14215,7 @@ def is_success(self): :rtype: bool """ - return self._tag == "success" + return self._tag == 'success' def is_invalid_user(self): """ @@ -15105,7 +14223,7 @@ def is_invalid_user(self): :rtype: bool """ - return self._tag == "invalid_user" + return self._tag == 'invalid_user' def is_other(self): """ @@ -15113,7 +14231,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_success(self): """ @@ -15141,27 +14259,25 @@ def get_invalid_user(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UserResendResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UserResendResult, self)._process_custom_annotations(annotation_type, field_path, processor) UserResendResult_validator = bv.Union(UserResendResult) - class UserSecondaryEmailsArg(bb.Struct): """ User and a list of secondary emails. """ __slots__ = [ - "_user_value", - "_secondary_emails_value", + '_user_value', + '_secondary_emails_value', ] _has_required_fields = True - def __init__(self, user=None, secondary_emails=None): + def __init__(self, + user=None, + secondary_emails=None): self._user_value = bb.NOT_SET self._secondary_emails_value = bb.NOT_SET if user is not None: @@ -15176,23 +14292,22 @@ def __init__(self, user=None, secondary_emails=None): secondary_emails = bb.Attribute("secondary_emails") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UserSecondaryEmailsArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UserSecondaryEmailsArg, self)._process_custom_annotations(annotation_type, field_path, processor) UserSecondaryEmailsArg_validator = bv.Struct(UserSecondaryEmailsArg) - class UserSecondaryEmailsResult(bb.Struct): + __slots__ = [ - "_user_value", - "_results_value", + '_user_value', + '_results_value', ] _has_required_fields = True - def __init__(self, user=None, results=None): + def __init__(self, + user=None, + results=None): self._user_value = bb.NOT_SET self._results_value = bb.NOT_SET if user is not None: @@ -15207,14 +14322,10 @@ def __init__(self, user=None, results=None): results = bb.Attribute("results") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UserSecondaryEmailsResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UserSecondaryEmailsResult, self)._process_custom_annotations(annotation_type, field_path, processor) UserSecondaryEmailsResult_validator = bv.Struct(UserSecondaryEmailsResult) - class UserSelectorArg(bb.Union): """ Argument for selecting a single user, either by team_member_id, external_id @@ -15236,7 +14347,7 @@ def team_member_id(cls, val): :param str val: :rtype: UserSelectorArg """ - return cls("team_member_id", val) + return cls('team_member_id', val) @classmethod def external_id(cls, val): @@ -15247,7 +14358,7 @@ def external_id(cls, val): :param str val: :rtype: UserSelectorArg """ - return cls("external_id", val) + return cls('external_id', val) @classmethod def email(cls, val): @@ -15258,7 +14369,7 @@ def email(cls, val): :param str val: :rtype: UserSelectorArg """ - return cls("email", val) + return cls('email', val) def is_team_member_id(self): """ @@ -15266,7 +14377,7 @@ def is_team_member_id(self): :rtype: bool """ - return self._tag == "team_member_id" + return self._tag == 'team_member_id' def is_external_id(self): """ @@ -15274,7 +14385,7 @@ def is_external_id(self): :rtype: bool """ - return self._tag == "external_id" + return self._tag == 'external_id' def is_email(self): """ @@ -15282,7 +14393,7 @@ def is_email(self): :rtype: bool """ - return self._tag == "email" + return self._tag == 'email' def get_team_member_id(self): """ @@ -15315,14 +14426,10 @@ def get_email(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UserSelectorArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UserSelectorArg, self)._process_custom_annotations(annotation_type, field_path, processor) UserSelectorArg_validator = bv.Union(UserSelectorArg) - class UsersSelectorArg(bb.Union): """ Argument for selecting a list of users, either by team_member_ids, @@ -15354,7 +14461,7 @@ def team_member_ids(cls, val): :param list of [str] val: :rtype: UsersSelectorArg """ - return cls("team_member_ids", val) + return cls('team_member_ids', val) @classmethod def external_ids(cls, val): @@ -15365,7 +14472,7 @@ def external_ids(cls, val): :param list of [str] val: :rtype: UsersSelectorArg """ - return cls("external_ids", val) + return cls('external_ids', val) @classmethod def emails(cls, val): @@ -15376,7 +14483,7 @@ def emails(cls, val): :param list of [str] val: :rtype: UsersSelectorArg """ - return cls("emails", val) + return cls('emails', val) def is_team_member_ids(self): """ @@ -15384,7 +14491,7 @@ def is_team_member_ids(self): :rtype: bool """ - return self._tag == "team_member_ids" + return self._tag == 'team_member_ids' def is_external_ids(self): """ @@ -15392,7 +14499,7 @@ def is_external_ids(self): :rtype: bool """ - return self._tag == "external_ids" + return self._tag == 'external_ids' def is_emails(self): """ @@ -15400,7 +14507,7 @@ def is_emails(self): :rtype: bool """ - return self._tag == "emails" + return self._tag == 'emails' def get_team_member_ids(self): """ @@ -15439,15 +14546,12 @@ def get_emails(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UsersSelectorArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UsersSelectorArg, self)._process_custom_annotations(annotation_type, field_path, processor) UsersSelectorArg_validator = bv.Union(UsersSelectorArg) GroupsGetInfoResult_validator = bv.List(GroupsGetInfoItem_validator) -LegalHoldId_validator = bv.String(pattern="^pid_dbhid:.+") +LegalHoldId_validator = bv.String(pattern='^pid_dbhid:.+') LegalHoldPolicyDescription_validator = bv.String(max_length=501) LegalHoldPolicyName_validator = bv.String(max_length=140) LegalHoldsGetPolicyResult_validator = LegalHoldPolicy_validator @@ -15459,50 +14563,44 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ListHeldRevisionCursor_validator = bv.String(min_length=1) MembersGetInfoResult_validator = bv.List(MembersGetInfoItem_validator) NumberPerDay_validator = bv.List(bv.Nullable(bv.UInt64())) -Path_validator = bv.String(pattern="(/(.|[\\r\\n])*)?") -TeamMemberRoleId_validator = bv.String(max_length=128, pattern="pid_dbtmr:.*") +Path_validator = bv.String(pattern='(/(.|[\\r\\n])*)?') +TeamMemberRoleId_validator = bv.String(max_length=128, pattern='pid_dbtmr:.*') UserQuota_validator = bv.UInt32(min_value=2) DeviceSession.session_id.validator = bv.String() DeviceSession.ip_address.validator = bv.Nullable(bv.String()) DeviceSession.country.validator = bv.Nullable(bv.String()) DeviceSession.created.validator = bv.Nullable(common.DropboxTimestamp_validator) DeviceSession.updated.validator = bv.Nullable(common.DropboxTimestamp_validator) -DeviceSession._all_field_names_ = set( - [ - "session_id", - "ip_address", - "country", - "created", - "updated", - ] -) +DeviceSession._all_field_names_ = set([ + 'session_id', + 'ip_address', + 'country', + 'created', + 'updated', +]) DeviceSession._all_fields_ = [ - ("session_id", DeviceSession.session_id.validator), - ("ip_address", DeviceSession.ip_address.validator), - ("country", DeviceSession.country.validator), - ("created", DeviceSession.created.validator), - ("updated", DeviceSession.updated.validator), + ('session_id', DeviceSession.session_id.validator), + ('ip_address', DeviceSession.ip_address.validator), + ('country', DeviceSession.country.validator), + ('created', DeviceSession.created.validator), + ('updated', DeviceSession.updated.validator), ] ActiveWebSession.user_agent.validator = bv.String() ActiveWebSession.os.validator = bv.String() ActiveWebSession.browser.validator = bv.String() ActiveWebSession.expires.validator = bv.Nullable(common.DropboxTimestamp_validator) -ActiveWebSession._all_field_names_ = DeviceSession._all_field_names_.union( - set( - [ - "user_agent", - "os", - "browser", - "expires", - ] - ) -) +ActiveWebSession._all_field_names_ = DeviceSession._all_field_names_.union(set([ + 'user_agent', + 'os', + 'browser', + 'expires', +])) ActiveWebSession._all_fields_ = DeviceSession._all_fields_ + [ - ("user_agent", ActiveWebSession.user_agent.validator), - ("os", ActiveWebSession.os.validator), - ("browser", ActiveWebSession.browser.validator), - ("expires", ActiveWebSession.expires.validator), + ('user_agent', ActiveWebSession.user_agent.validator), + ('os', ActiveWebSession.os.validator), + ('browser', ActiveWebSession.browser.validator), + ('expires', ActiveWebSession.expires.validator), ] AddSecondaryEmailResult._success_validator = secondary_emails.SecondaryEmail_validator @@ -15516,60 +14614,56 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): AddSecondaryEmailResult._rate_limited_validator = common.EmailAddress_validator AddSecondaryEmailResult._other_validator = bv.Void() AddSecondaryEmailResult._tagmap = { - "success": AddSecondaryEmailResult._success_validator, - "unavailable": AddSecondaryEmailResult._unavailable_validator, - "already_pending": AddSecondaryEmailResult._already_pending_validator, - "already_owned_by_user": AddSecondaryEmailResult._already_owned_by_user_validator, - "reached_limit": AddSecondaryEmailResult._reached_limit_validator, - "transient_error": AddSecondaryEmailResult._transient_error_validator, - "too_many_updates": AddSecondaryEmailResult._too_many_updates_validator, - "unknown_error": AddSecondaryEmailResult._unknown_error_validator, - "rate_limited": AddSecondaryEmailResult._rate_limited_validator, - "other": AddSecondaryEmailResult._other_validator, + 'success': AddSecondaryEmailResult._success_validator, + 'unavailable': AddSecondaryEmailResult._unavailable_validator, + 'already_pending': AddSecondaryEmailResult._already_pending_validator, + 'already_owned_by_user': AddSecondaryEmailResult._already_owned_by_user_validator, + 'reached_limit': AddSecondaryEmailResult._reached_limit_validator, + 'transient_error': AddSecondaryEmailResult._transient_error_validator, + 'too_many_updates': AddSecondaryEmailResult._too_many_updates_validator, + 'unknown_error': AddSecondaryEmailResult._unknown_error_validator, + 'rate_limited': AddSecondaryEmailResult._rate_limited_validator, + 'other': AddSecondaryEmailResult._other_validator, } -AddSecondaryEmailResult.other = AddSecondaryEmailResult("other") +AddSecondaryEmailResult.other = AddSecondaryEmailResult('other') AddSecondaryEmailsArg.new_secondary_emails.validator = bv.List(UserSecondaryEmailsArg_validator) -AddSecondaryEmailsArg._all_field_names_ = set(["new_secondary_emails"]) -AddSecondaryEmailsArg._all_fields_ = [ - ("new_secondary_emails", AddSecondaryEmailsArg.new_secondary_emails.validator) -] +AddSecondaryEmailsArg._all_field_names_ = set(['new_secondary_emails']) +AddSecondaryEmailsArg._all_fields_ = [('new_secondary_emails', AddSecondaryEmailsArg.new_secondary_emails.validator)] AddSecondaryEmailsError._secondary_emails_disabled_validator = bv.Void() AddSecondaryEmailsError._too_many_emails_validator = bv.Void() AddSecondaryEmailsError._other_validator = bv.Void() AddSecondaryEmailsError._tagmap = { - "secondary_emails_disabled": AddSecondaryEmailsError._secondary_emails_disabled_validator, - "too_many_emails": AddSecondaryEmailsError._too_many_emails_validator, - "other": AddSecondaryEmailsError._other_validator, + 'secondary_emails_disabled': AddSecondaryEmailsError._secondary_emails_disabled_validator, + 'too_many_emails': AddSecondaryEmailsError._too_many_emails_validator, + 'other': AddSecondaryEmailsError._other_validator, } -AddSecondaryEmailsError.secondary_emails_disabled = AddSecondaryEmailsError( - "secondary_emails_disabled" -) -AddSecondaryEmailsError.too_many_emails = AddSecondaryEmailsError("too_many_emails") -AddSecondaryEmailsError.other = AddSecondaryEmailsError("other") +AddSecondaryEmailsError.secondary_emails_disabled = AddSecondaryEmailsError('secondary_emails_disabled') +AddSecondaryEmailsError.too_many_emails = AddSecondaryEmailsError('too_many_emails') +AddSecondaryEmailsError.other = AddSecondaryEmailsError('other') AddSecondaryEmailsResult.results.validator = bv.List(UserAddResult_validator) -AddSecondaryEmailsResult._all_field_names_ = set(["results"]) -AddSecondaryEmailsResult._all_fields_ = [("results", AddSecondaryEmailsResult.results.validator)] +AddSecondaryEmailsResult._all_field_names_ = set(['results']) +AddSecondaryEmailsResult._all_fields_ = [('results', AddSecondaryEmailsResult.results.validator)] AdminTier._team_admin_validator = bv.Void() AdminTier._user_management_admin_validator = bv.Void() AdminTier._support_admin_validator = bv.Void() AdminTier._member_only_validator = bv.Void() AdminTier._tagmap = { - "team_admin": AdminTier._team_admin_validator, - "user_management_admin": AdminTier._user_management_admin_validator, - "support_admin": AdminTier._support_admin_validator, - "member_only": AdminTier._member_only_validator, + 'team_admin': AdminTier._team_admin_validator, + 'user_management_admin': AdminTier._user_management_admin_validator, + 'support_admin': AdminTier._support_admin_validator, + 'member_only': AdminTier._member_only_validator, } -AdminTier.team_admin = AdminTier("team_admin") -AdminTier.user_management_admin = AdminTier("user_management_admin") -AdminTier.support_admin = AdminTier("support_admin") -AdminTier.member_only = AdminTier("member_only") +AdminTier.team_admin = AdminTier('team_admin') +AdminTier.user_management_admin = AdminTier('user_management_admin') +AdminTier.support_admin = AdminTier('support_admin') +AdminTier.member_only = AdminTier('member_only') ApiApp.app_id.validator = bv.String() ApiApp.app_name.validator = bv.String() @@ -15577,139 +14671,122 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ApiApp.publisher_url.validator = bv.Nullable(bv.String()) ApiApp.linked.validator = bv.Nullable(common.DropboxTimestamp_validator) ApiApp.is_app_folder.validator = bv.Boolean() -ApiApp._all_field_names_ = set( - [ - "app_id", - "app_name", - "publisher", - "publisher_url", - "linked", - "is_app_folder", - ] -) +ApiApp._all_field_names_ = set([ + 'app_id', + 'app_name', + 'publisher', + 'publisher_url', + 'linked', + 'is_app_folder', +]) ApiApp._all_fields_ = [ - ("app_id", ApiApp.app_id.validator), - ("app_name", ApiApp.app_name.validator), - ("publisher", ApiApp.publisher.validator), - ("publisher_url", ApiApp.publisher_url.validator), - ("linked", ApiApp.linked.validator), - ("is_app_folder", ApiApp.is_app_folder.validator), + ('app_id', ApiApp.app_id.validator), + ('app_name', ApiApp.app_name.validator), + ('publisher', ApiApp.publisher.validator), + ('publisher_url', ApiApp.publisher_url.validator), + ('linked', ApiApp.linked.validator), + ('is_app_folder', ApiApp.is_app_folder.validator), ] BaseDfbReport.start_date.validator = bv.String() -BaseDfbReport._all_field_names_ = set(["start_date"]) -BaseDfbReport._all_fields_ = [("start_date", BaseDfbReport.start_date.validator)] +BaseDfbReport._all_field_names_ = set(['start_date']) +BaseDfbReport._all_fields_ = [('start_date', BaseDfbReport.start_date.validator)] BaseTeamFolderError._access_error_validator = TeamFolderAccessError_validator BaseTeamFolderError._status_error_validator = TeamFolderInvalidStatusError_validator -BaseTeamFolderError._team_shared_dropbox_error_validator = ( - TeamFolderTeamSharedDropboxError_validator -) +BaseTeamFolderError._team_shared_dropbox_error_validator = TeamFolderTeamSharedDropboxError_validator BaseTeamFolderError._other_validator = bv.Void() BaseTeamFolderError._tagmap = { - "access_error": BaseTeamFolderError._access_error_validator, - "status_error": BaseTeamFolderError._status_error_validator, - "team_shared_dropbox_error": BaseTeamFolderError._team_shared_dropbox_error_validator, - "other": BaseTeamFolderError._other_validator, + 'access_error': BaseTeamFolderError._access_error_validator, + 'status_error': BaseTeamFolderError._status_error_validator, + 'team_shared_dropbox_error': BaseTeamFolderError._team_shared_dropbox_error_validator, + 'other': BaseTeamFolderError._other_validator, } -BaseTeamFolderError.other = BaseTeamFolderError("other") +BaseTeamFolderError.other = BaseTeamFolderError('other') CustomQuotaError._too_many_users_validator = bv.Void() CustomQuotaError._other_validator = bv.Void() CustomQuotaError._tagmap = { - "too_many_users": CustomQuotaError._too_many_users_validator, - "other": CustomQuotaError._other_validator, + 'too_many_users': CustomQuotaError._too_many_users_validator, + 'other': CustomQuotaError._other_validator, } -CustomQuotaError.too_many_users = CustomQuotaError("too_many_users") -CustomQuotaError.other = CustomQuotaError("other") +CustomQuotaError.too_many_users = CustomQuotaError('too_many_users') +CustomQuotaError.other = CustomQuotaError('other') CustomQuotaResult._success_validator = UserCustomQuotaResult_validator CustomQuotaResult._invalid_user_validator = UserSelectorArg_validator CustomQuotaResult._other_validator = bv.Void() CustomQuotaResult._tagmap = { - "success": CustomQuotaResult._success_validator, - "invalid_user": CustomQuotaResult._invalid_user_validator, - "other": CustomQuotaResult._other_validator, + 'success': CustomQuotaResult._success_validator, + 'invalid_user': CustomQuotaResult._invalid_user_validator, + 'other': CustomQuotaResult._other_validator, } -CustomQuotaResult.other = CustomQuotaResult("other") +CustomQuotaResult.other = CustomQuotaResult('other') CustomQuotaUsersArg.users.validator = bv.List(UserSelectorArg_validator) -CustomQuotaUsersArg._all_field_names_ = set(["users"]) -CustomQuotaUsersArg._all_fields_ = [("users", CustomQuotaUsersArg.users.validator)] +CustomQuotaUsersArg._all_field_names_ = set(['users']) +CustomQuotaUsersArg._all_fields_ = [('users', CustomQuotaUsersArg.users.validator)] DateRange.start_date.validator = bv.Nullable(common.Date_validator) DateRange.end_date.validator = bv.Nullable(common.Date_validator) -DateRange._all_field_names_ = set( - [ - "start_date", - "end_date", - ] -) +DateRange._all_field_names_ = set([ + 'start_date', + 'end_date', +]) DateRange._all_fields_ = [ - ("start_date", DateRange.start_date.validator), - ("end_date", DateRange.end_date.validator), + ('start_date', DateRange.start_date.validator), + ('end_date', DateRange.end_date.validator), ] DateRangeError._other_validator = bv.Void() DateRangeError._tagmap = { - "other": DateRangeError._other_validator, + 'other': DateRangeError._other_validator, } -DateRangeError.other = DateRangeError("other") +DateRangeError.other = DateRangeError('other') DeleteSecondaryEmailResult._success_validator = common.EmailAddress_validator DeleteSecondaryEmailResult._not_found_validator = common.EmailAddress_validator DeleteSecondaryEmailResult._cannot_remove_primary_validator = common.EmailAddress_validator DeleteSecondaryEmailResult._other_validator = bv.Void() DeleteSecondaryEmailResult._tagmap = { - "success": DeleteSecondaryEmailResult._success_validator, - "not_found": DeleteSecondaryEmailResult._not_found_validator, - "cannot_remove_primary": DeleteSecondaryEmailResult._cannot_remove_primary_validator, - "other": DeleteSecondaryEmailResult._other_validator, + 'success': DeleteSecondaryEmailResult._success_validator, + 'not_found': DeleteSecondaryEmailResult._not_found_validator, + 'cannot_remove_primary': DeleteSecondaryEmailResult._cannot_remove_primary_validator, + 'other': DeleteSecondaryEmailResult._other_validator, } -DeleteSecondaryEmailResult.other = DeleteSecondaryEmailResult("other") +DeleteSecondaryEmailResult.other = DeleteSecondaryEmailResult('other') DeleteSecondaryEmailsArg.emails_to_delete.validator = bv.List(UserSecondaryEmailsArg_validator) -DeleteSecondaryEmailsArg._all_field_names_ = set(["emails_to_delete"]) -DeleteSecondaryEmailsArg._all_fields_ = [ - ("emails_to_delete", DeleteSecondaryEmailsArg.emails_to_delete.validator) -] +DeleteSecondaryEmailsArg._all_field_names_ = set(['emails_to_delete']) +DeleteSecondaryEmailsArg._all_fields_ = [('emails_to_delete', DeleteSecondaryEmailsArg.emails_to_delete.validator)] DeleteSecondaryEmailsResult.results.validator = bv.List(UserDeleteResult_validator) -DeleteSecondaryEmailsResult._all_field_names_ = set(["results"]) -DeleteSecondaryEmailsResult._all_fields_ = [ - ("results", DeleteSecondaryEmailsResult.results.validator) -] +DeleteSecondaryEmailsResult._all_field_names_ = set(['results']) +DeleteSecondaryEmailsResult._all_fields_ = [('results', DeleteSecondaryEmailsResult.results.validator)] DesktopClientSession.host_name.validator = bv.String() DesktopClientSession.client_type.validator = DesktopPlatform_validator DesktopClientSession.client_version.validator = bv.String() DesktopClientSession.platform.validator = bv.String() DesktopClientSession.is_delete_on_unlink_supported.validator = bv.Boolean() -DesktopClientSession._all_field_names_ = DeviceSession._all_field_names_.union( - set( - [ - "host_name", - "client_type", - "client_version", - "platform", - "is_delete_on_unlink_supported", - ] - ) -) +DesktopClientSession._all_field_names_ = DeviceSession._all_field_names_.union(set([ + 'host_name', + 'client_type', + 'client_version', + 'platform', + 'is_delete_on_unlink_supported', +])) DesktopClientSession._all_fields_ = DeviceSession._all_fields_ + [ - ("host_name", DesktopClientSession.host_name.validator), - ("client_type", DesktopClientSession.client_type.validator), - ("client_version", DesktopClientSession.client_version.validator), - ("platform", DesktopClientSession.platform.validator), - ( - "is_delete_on_unlink_supported", - DesktopClientSession.is_delete_on_unlink_supported.validator, - ), + ('host_name', DesktopClientSession.host_name.validator), + ('client_type', DesktopClientSession.client_type.validator), + ('client_version', DesktopClientSession.client_version.validator), + ('platform', DesktopClientSession.platform.validator), + ('is_delete_on_unlink_supported', DesktopClientSession.is_delete_on_unlink_supported.validator), ] DesktopPlatform._windows_validator = bv.Void() @@ -15717,28 +14794,26 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): DesktopPlatform._linux_validator = bv.Void() DesktopPlatform._other_validator = bv.Void() DesktopPlatform._tagmap = { - "windows": DesktopPlatform._windows_validator, - "mac": DesktopPlatform._mac_validator, - "linux": DesktopPlatform._linux_validator, - "other": DesktopPlatform._other_validator, + 'windows': DesktopPlatform._windows_validator, + 'mac': DesktopPlatform._mac_validator, + 'linux': DesktopPlatform._linux_validator, + 'other': DesktopPlatform._other_validator, } -DesktopPlatform.windows = DesktopPlatform("windows") -DesktopPlatform.mac = DesktopPlatform("mac") -DesktopPlatform.linux = DesktopPlatform("linux") -DesktopPlatform.other = DesktopPlatform("other") +DesktopPlatform.windows = DesktopPlatform('windows') +DesktopPlatform.mac = DesktopPlatform('mac') +DesktopPlatform.linux = DesktopPlatform('linux') +DesktopPlatform.other = DesktopPlatform('other') DeviceSessionArg.session_id.validator = bv.String() DeviceSessionArg.team_member_id.validator = bv.String() -DeviceSessionArg._all_field_names_ = set( - [ - "session_id", - "team_member_id", - ] -) +DeviceSessionArg._all_field_names_ = set([ + 'session_id', + 'team_member_id', +]) DeviceSessionArg._all_fields_ = [ - ("session_id", DeviceSessionArg.session_id.validator), - ("team_member_id", DeviceSessionArg.team_member_id.validator), + ('session_id', DeviceSessionArg.session_id.validator), + ('team_member_id', DeviceSessionArg.team_member_id.validator), ] DevicesActive.windows.validator = NumberPerDay_validator @@ -15748,103 +14823,97 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): DevicesActive.android.validator = NumberPerDay_validator DevicesActive.other.validator = NumberPerDay_validator DevicesActive.total.validator = NumberPerDay_validator -DevicesActive._all_field_names_ = set( - [ - "windows", - "macos", - "linux", - "ios", - "android", - "other", - "total", - ] -) +DevicesActive._all_field_names_ = set([ + 'windows', + 'macos', + 'linux', + 'ios', + 'android', + 'other', + 'total', +]) DevicesActive._all_fields_ = [ - ("windows", DevicesActive.windows.validator), - ("macos", DevicesActive.macos.validator), - ("linux", DevicesActive.linux.validator), - ("ios", DevicesActive.ios.validator), - ("android", DevicesActive.android.validator), - ("other", DevicesActive.other.validator), - ("total", DevicesActive.total.validator), + ('windows', DevicesActive.windows.validator), + ('macos', DevicesActive.macos.validator), + ('linux', DevicesActive.linux.validator), + ('ios', DevicesActive.ios.validator), + ('android', DevicesActive.android.validator), + ('other', DevicesActive.other.validator), + ('total', DevicesActive.total.validator), ] ExcludedUsersListArg.limit.validator = bv.UInt32(min_value=1, max_value=1000) -ExcludedUsersListArg._all_field_names_ = set(["limit"]) -ExcludedUsersListArg._all_fields_ = [("limit", ExcludedUsersListArg.limit.validator)] +ExcludedUsersListArg._all_field_names_ = set(['limit']) +ExcludedUsersListArg._all_fields_ = [('limit', ExcludedUsersListArg.limit.validator)] ExcludedUsersListContinueArg.cursor.validator = bv.String() -ExcludedUsersListContinueArg._all_field_names_ = set(["cursor"]) -ExcludedUsersListContinueArg._all_fields_ = [ - ("cursor", ExcludedUsersListContinueArg.cursor.validator) -] +ExcludedUsersListContinueArg._all_field_names_ = set(['cursor']) +ExcludedUsersListContinueArg._all_fields_ = [('cursor', ExcludedUsersListContinueArg.cursor.validator)] ExcludedUsersListContinueError._invalid_cursor_validator = bv.Void() ExcludedUsersListContinueError._other_validator = bv.Void() ExcludedUsersListContinueError._tagmap = { - "invalid_cursor": ExcludedUsersListContinueError._invalid_cursor_validator, - "other": ExcludedUsersListContinueError._other_validator, + 'invalid_cursor': ExcludedUsersListContinueError._invalid_cursor_validator, + 'other': ExcludedUsersListContinueError._other_validator, } -ExcludedUsersListContinueError.invalid_cursor = ExcludedUsersListContinueError("invalid_cursor") -ExcludedUsersListContinueError.other = ExcludedUsersListContinueError("other") +ExcludedUsersListContinueError.invalid_cursor = ExcludedUsersListContinueError('invalid_cursor') +ExcludedUsersListContinueError.other = ExcludedUsersListContinueError('other') ExcludedUsersListError._list_error_validator = bv.Void() ExcludedUsersListError._other_validator = bv.Void() ExcludedUsersListError._tagmap = { - "list_error": ExcludedUsersListError._list_error_validator, - "other": ExcludedUsersListError._other_validator, + 'list_error': ExcludedUsersListError._list_error_validator, + 'other': ExcludedUsersListError._other_validator, } -ExcludedUsersListError.list_error = ExcludedUsersListError("list_error") -ExcludedUsersListError.other = ExcludedUsersListError("other") +ExcludedUsersListError.list_error = ExcludedUsersListError('list_error') +ExcludedUsersListError.other = ExcludedUsersListError('other') ExcludedUsersListResult.users.validator = bv.List(MemberProfile_validator) ExcludedUsersListResult.cursor.validator = bv.Nullable(bv.String()) ExcludedUsersListResult.has_more.validator = bv.Boolean() -ExcludedUsersListResult._all_field_names_ = set( - [ - "users", - "cursor", - "has_more", - ] -) +ExcludedUsersListResult._all_field_names_ = set([ + 'users', + 'cursor', + 'has_more', +]) ExcludedUsersListResult._all_fields_ = [ - ("users", ExcludedUsersListResult.users.validator), - ("cursor", ExcludedUsersListResult.cursor.validator), - ("has_more", ExcludedUsersListResult.has_more.validator), + ('users', ExcludedUsersListResult.users.validator), + ('cursor', ExcludedUsersListResult.cursor.validator), + ('has_more', ExcludedUsersListResult.has_more.validator), ] ExcludedUsersUpdateArg.users.validator = bv.Nullable(bv.List(UserSelectorArg_validator)) -ExcludedUsersUpdateArg._all_field_names_ = set(["users"]) -ExcludedUsersUpdateArg._all_fields_ = [("users", ExcludedUsersUpdateArg.users.validator)] +ExcludedUsersUpdateArg._all_field_names_ = set(['users']) +ExcludedUsersUpdateArg._all_fields_ = [('users', ExcludedUsersUpdateArg.users.validator)] ExcludedUsersUpdateError._users_not_in_team_validator = bv.Void() ExcludedUsersUpdateError._too_many_users_validator = bv.Void() ExcludedUsersUpdateError._other_validator = bv.Void() ExcludedUsersUpdateError._tagmap = { - "users_not_in_team": ExcludedUsersUpdateError._users_not_in_team_validator, - "too_many_users": ExcludedUsersUpdateError._too_many_users_validator, - "other": ExcludedUsersUpdateError._other_validator, + 'users_not_in_team': ExcludedUsersUpdateError._users_not_in_team_validator, + 'too_many_users': ExcludedUsersUpdateError._too_many_users_validator, + 'other': ExcludedUsersUpdateError._other_validator, } -ExcludedUsersUpdateError.users_not_in_team = ExcludedUsersUpdateError("users_not_in_team") -ExcludedUsersUpdateError.too_many_users = ExcludedUsersUpdateError("too_many_users") -ExcludedUsersUpdateError.other = ExcludedUsersUpdateError("other") +ExcludedUsersUpdateError.users_not_in_team = ExcludedUsersUpdateError('users_not_in_team') +ExcludedUsersUpdateError.too_many_users = ExcludedUsersUpdateError('too_many_users') +ExcludedUsersUpdateError.other = ExcludedUsersUpdateError('other') ExcludedUsersUpdateResult.status.validator = ExcludedUsersUpdateStatus_validator -ExcludedUsersUpdateResult._all_field_names_ = set(["status"]) -ExcludedUsersUpdateResult._all_fields_ = [("status", ExcludedUsersUpdateResult.status.validator)] +ExcludedUsersUpdateResult._all_field_names_ = set(['status']) +ExcludedUsersUpdateResult._all_fields_ = [('status', ExcludedUsersUpdateResult.status.validator)] ExcludedUsersUpdateStatus._success_validator = bv.Void() ExcludedUsersUpdateStatus._other_validator = bv.Void() ExcludedUsersUpdateStatus._tagmap = { - "success": ExcludedUsersUpdateStatus._success_validator, - "other": ExcludedUsersUpdateStatus._other_validator, + 'success': ExcludedUsersUpdateStatus._success_validator, + 'other': ExcludedUsersUpdateStatus._other_validator, } -ExcludedUsersUpdateStatus.success = ExcludedUsersUpdateStatus("success") -ExcludedUsersUpdateStatus.other = ExcludedUsersUpdateStatus("other") +ExcludedUsersUpdateStatus.success = ExcludedUsersUpdateStatus('success') +ExcludedUsersUpdateStatus.other = ExcludedUsersUpdateStatus('other') Feature._upload_api_rate_limit_validator = bv.Void() Feature._has_team_shared_dropbox_validator = bv.Void() @@ -15853,20 +14922,20 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): Feature._has_distinct_member_homes_validator = bv.Void() Feature._other_validator = bv.Void() Feature._tagmap = { - "upload_api_rate_limit": Feature._upload_api_rate_limit_validator, - "has_team_shared_dropbox": Feature._has_team_shared_dropbox_validator, - "has_team_file_events": Feature._has_team_file_events_validator, - "has_team_selective_sync": Feature._has_team_selective_sync_validator, - "has_distinct_member_homes": Feature._has_distinct_member_homes_validator, - "other": Feature._other_validator, + 'upload_api_rate_limit': Feature._upload_api_rate_limit_validator, + 'has_team_shared_dropbox': Feature._has_team_shared_dropbox_validator, + 'has_team_file_events': Feature._has_team_file_events_validator, + 'has_team_selective_sync': Feature._has_team_selective_sync_validator, + 'has_distinct_member_homes': Feature._has_distinct_member_homes_validator, + 'other': Feature._other_validator, } -Feature.upload_api_rate_limit = Feature("upload_api_rate_limit") -Feature.has_team_shared_dropbox = Feature("has_team_shared_dropbox") -Feature.has_team_file_events = Feature("has_team_file_events") -Feature.has_team_selective_sync = Feature("has_team_selective_sync") -Feature.has_distinct_member_homes = Feature("has_distinct_member_homes") -Feature.other = Feature("other") +Feature.upload_api_rate_limit = Feature('upload_api_rate_limit') +Feature.has_team_shared_dropbox = Feature('has_team_shared_dropbox') +Feature.has_team_file_events = Feature('has_team_file_events') +Feature.has_team_selective_sync = Feature('has_team_selective_sync') +Feature.has_distinct_member_homes = Feature('has_distinct_member_homes') +Feature.other = Feature('other') FeatureValue._upload_api_rate_limit_validator = UploadApiRateLimitValue_validator FeatureValue._has_team_shared_dropbox_validator = HasTeamSharedDropboxValue_validator @@ -15875,37 +14944,33 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): FeatureValue._has_distinct_member_homes_validator = HasDistinctMemberHomesValue_validator FeatureValue._other_validator = bv.Void() FeatureValue._tagmap = { - "upload_api_rate_limit": FeatureValue._upload_api_rate_limit_validator, - "has_team_shared_dropbox": FeatureValue._has_team_shared_dropbox_validator, - "has_team_file_events": FeatureValue._has_team_file_events_validator, - "has_team_selective_sync": FeatureValue._has_team_selective_sync_validator, - "has_distinct_member_homes": FeatureValue._has_distinct_member_homes_validator, - "other": FeatureValue._other_validator, + 'upload_api_rate_limit': FeatureValue._upload_api_rate_limit_validator, + 'has_team_shared_dropbox': FeatureValue._has_team_shared_dropbox_validator, + 'has_team_file_events': FeatureValue._has_team_file_events_validator, + 'has_team_selective_sync': FeatureValue._has_team_selective_sync_validator, + 'has_distinct_member_homes': FeatureValue._has_distinct_member_homes_validator, + 'other': FeatureValue._other_validator, } -FeatureValue.other = FeatureValue("other") +FeatureValue.other = FeatureValue('other') FeaturesGetValuesBatchArg.features.validator = bv.List(Feature_validator) -FeaturesGetValuesBatchArg._all_field_names_ = set(["features"]) -FeaturesGetValuesBatchArg._all_fields_ = [ - ("features", FeaturesGetValuesBatchArg.features.validator) -] +FeaturesGetValuesBatchArg._all_field_names_ = set(['features']) +FeaturesGetValuesBatchArg._all_fields_ = [('features', FeaturesGetValuesBatchArg.features.validator)] FeaturesGetValuesBatchError._empty_features_list_validator = bv.Void() FeaturesGetValuesBatchError._other_validator = bv.Void() FeaturesGetValuesBatchError._tagmap = { - "empty_features_list": FeaturesGetValuesBatchError._empty_features_list_validator, - "other": FeaturesGetValuesBatchError._other_validator, + 'empty_features_list': FeaturesGetValuesBatchError._empty_features_list_validator, + 'other': FeaturesGetValuesBatchError._other_validator, } -FeaturesGetValuesBatchError.empty_features_list = FeaturesGetValuesBatchError("empty_features_list") -FeaturesGetValuesBatchError.other = FeaturesGetValuesBatchError("other") +FeaturesGetValuesBatchError.empty_features_list = FeaturesGetValuesBatchError('empty_features_list') +FeaturesGetValuesBatchError.other = FeaturesGetValuesBatchError('other') FeaturesGetValuesBatchResult.values.validator = bv.List(FeatureValue_validator) -FeaturesGetValuesBatchResult._all_field_names_ = set(["values"]) -FeaturesGetValuesBatchResult._all_fields_ = [ - ("values", FeaturesGetValuesBatchResult.values.validator) -] +FeaturesGetValuesBatchResult._all_field_names_ = set(['values']) +FeaturesGetValuesBatchResult._all_fields_ = [('values', FeaturesGetValuesBatchResult.values.validator)] GetActivityReport.adds.validator = NumberPerDay_validator GetActivityReport.edits.validator = NumberPerDay_validator @@ -15921,80 +14986,51 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): GetActivityReport.shared_links_viewed_by_outside_user.validator = NumberPerDay_validator GetActivityReport.shared_links_viewed_by_not_logged_in.validator = NumberPerDay_validator GetActivityReport.shared_links_viewed_total.validator = NumberPerDay_validator -GetActivityReport._all_field_names_ = BaseDfbReport._all_field_names_.union( - set( - [ - "adds", - "edits", - "deletes", - "active_users_28_day", - "active_users_7_day", - "active_users_1_day", - "active_shared_folders_28_day", - "active_shared_folders_7_day", - "active_shared_folders_1_day", - "shared_links_created", - "shared_links_viewed_by_team", - "shared_links_viewed_by_outside_user", - "shared_links_viewed_by_not_logged_in", - "shared_links_viewed_total", - ] - ) -) +GetActivityReport._all_field_names_ = BaseDfbReport._all_field_names_.union(set([ + 'adds', + 'edits', + 'deletes', + 'active_users_28_day', + 'active_users_7_day', + 'active_users_1_day', + 'active_shared_folders_28_day', + 'active_shared_folders_7_day', + 'active_shared_folders_1_day', + 'shared_links_created', + 'shared_links_viewed_by_team', + 'shared_links_viewed_by_outside_user', + 'shared_links_viewed_by_not_logged_in', + 'shared_links_viewed_total', +])) GetActivityReport._all_fields_ = BaseDfbReport._all_fields_ + [ - ("adds", GetActivityReport.adds.validator), - ("edits", GetActivityReport.edits.validator), - ("deletes", GetActivityReport.deletes.validator), - ("active_users_28_day", GetActivityReport.active_users_28_day.validator), - ("active_users_7_day", GetActivityReport.active_users_7_day.validator), - ("active_users_1_day", GetActivityReport.active_users_1_day.validator), - ( - "active_shared_folders_28_day", - GetActivityReport.active_shared_folders_28_day.validator, - ), - ( - "active_shared_folders_7_day", - GetActivityReport.active_shared_folders_7_day.validator, - ), - ( - "active_shared_folders_1_day", - GetActivityReport.active_shared_folders_1_day.validator, - ), - ("shared_links_created", GetActivityReport.shared_links_created.validator), - ( - "shared_links_viewed_by_team", - GetActivityReport.shared_links_viewed_by_team.validator, - ), - ( - "shared_links_viewed_by_outside_user", - GetActivityReport.shared_links_viewed_by_outside_user.validator, - ), - ( - "shared_links_viewed_by_not_logged_in", - GetActivityReport.shared_links_viewed_by_not_logged_in.validator, - ), - ( - "shared_links_viewed_total", - GetActivityReport.shared_links_viewed_total.validator, - ), + ('adds', GetActivityReport.adds.validator), + ('edits', GetActivityReport.edits.validator), + ('deletes', GetActivityReport.deletes.validator), + ('active_users_28_day', GetActivityReport.active_users_28_day.validator), + ('active_users_7_day', GetActivityReport.active_users_7_day.validator), + ('active_users_1_day', GetActivityReport.active_users_1_day.validator), + ('active_shared_folders_28_day', GetActivityReport.active_shared_folders_28_day.validator), + ('active_shared_folders_7_day', GetActivityReport.active_shared_folders_7_day.validator), + ('active_shared_folders_1_day', GetActivityReport.active_shared_folders_1_day.validator), + ('shared_links_created', GetActivityReport.shared_links_created.validator), + ('shared_links_viewed_by_team', GetActivityReport.shared_links_viewed_by_team.validator), + ('shared_links_viewed_by_outside_user', GetActivityReport.shared_links_viewed_by_outside_user.validator), + ('shared_links_viewed_by_not_logged_in', GetActivityReport.shared_links_viewed_by_not_logged_in.validator), + ('shared_links_viewed_total', GetActivityReport.shared_links_viewed_total.validator), ] GetDevicesReport.active_1_day.validator = DevicesActive_validator GetDevicesReport.active_7_day.validator = DevicesActive_validator GetDevicesReport.active_28_day.validator = DevicesActive_validator -GetDevicesReport._all_field_names_ = BaseDfbReport._all_field_names_.union( - set( - [ - "active_1_day", - "active_7_day", - "active_28_day", - ] - ) -) +GetDevicesReport._all_field_names_ = BaseDfbReport._all_field_names_.union(set([ + 'active_1_day', + 'active_7_day', + 'active_28_day', +])) GetDevicesReport._all_fields_ = BaseDfbReport._all_fields_ + [ - ("active_1_day", GetDevicesReport.active_1_day.validator), - ("active_7_day", GetDevicesReport.active_7_day.validator), - ("active_28_day", GetDevicesReport.active_28_day.validator), + ('active_1_day', GetDevicesReport.active_1_day.validator), + ('active_7_day', GetDevicesReport.active_7_day.validator), + ('active_28_day', GetDevicesReport.active_28_day.validator), ] GetMembershipReport.team_size.validator = NumberPerDay_validator @@ -16002,23 +15038,19 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): GetMembershipReport.members_joined.validator = NumberPerDay_validator GetMembershipReport.suspended_members.validator = NumberPerDay_validator GetMembershipReport.licenses.validator = NumberPerDay_validator -GetMembershipReport._all_field_names_ = BaseDfbReport._all_field_names_.union( - set( - [ - "team_size", - "pending_invites", - "members_joined", - "suspended_members", - "licenses", - ] - ) -) +GetMembershipReport._all_field_names_ = BaseDfbReport._all_field_names_.union(set([ + 'team_size', + 'pending_invites', + 'members_joined', + 'suspended_members', + 'licenses', +])) GetMembershipReport._all_fields_ = BaseDfbReport._all_fields_ + [ - ("team_size", GetMembershipReport.team_size.validator), - ("pending_invites", GetMembershipReport.pending_invites.validator), - ("members_joined", GetMembershipReport.members_joined.validator), - ("suspended_members", GetMembershipReport.suspended_members.validator), - ("licenses", GetMembershipReport.licenses.validator), + ('team_size', GetMembershipReport.team_size.validator), + ('pending_invites', GetMembershipReport.pending_invites.validator), + ('members_joined', GetMembershipReport.members_joined.validator), + ('suspended_members', GetMembershipReport.suspended_members.validator), + ('licenses', GetMembershipReport.licenses.validator), ] GetStorageReport.total_usage.validator = NumberPerDay_validator @@ -16026,54 +15058,46 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): GetStorageReport.unshared_usage.validator = NumberPerDay_validator GetStorageReport.shared_folders.validator = NumberPerDay_validator GetStorageReport.member_storage_map.validator = bv.List(bv.List(StorageBucket_validator)) -GetStorageReport._all_field_names_ = BaseDfbReport._all_field_names_.union( - set( - [ - "total_usage", - "shared_usage", - "unshared_usage", - "shared_folders", - "member_storage_map", - ] - ) -) +GetStorageReport._all_field_names_ = BaseDfbReport._all_field_names_.union(set([ + 'total_usage', + 'shared_usage', + 'unshared_usage', + 'shared_folders', + 'member_storage_map', +])) GetStorageReport._all_fields_ = BaseDfbReport._all_fields_ + [ - ("total_usage", GetStorageReport.total_usage.validator), - ("shared_usage", GetStorageReport.shared_usage.validator), - ("unshared_usage", GetStorageReport.unshared_usage.validator), - ("shared_folders", GetStorageReport.shared_folders.validator), - ("member_storage_map", GetStorageReport.member_storage_map.validator), + ('total_usage', GetStorageReport.total_usage.validator), + ('shared_usage', GetStorageReport.shared_usage.validator), + ('unshared_usage', GetStorageReport.unshared_usage.validator), + ('shared_folders', GetStorageReport.shared_folders.validator), + ('member_storage_map', GetStorageReport.member_storage_map.validator), ] GroupAccessType._member_validator = bv.Void() GroupAccessType._owner_validator = bv.Void() GroupAccessType._tagmap = { - "member": GroupAccessType._member_validator, - "owner": GroupAccessType._owner_validator, + 'member': GroupAccessType._member_validator, + 'owner': GroupAccessType._owner_validator, } -GroupAccessType.member = GroupAccessType("member") -GroupAccessType.owner = GroupAccessType("owner") +GroupAccessType.member = GroupAccessType('member') +GroupAccessType.owner = GroupAccessType('owner') GroupCreateArg.group_name.validator = bv.String() GroupCreateArg.add_creator_as_owner.validator = bv.Boolean() GroupCreateArg.group_external_id.validator = bv.Nullable(team_common.GroupExternalId_validator) -GroupCreateArg.group_management_type.validator = bv.Nullable( - team_common.GroupManagementType_validator -) -GroupCreateArg._all_field_names_ = set( - [ - "group_name", - "add_creator_as_owner", - "group_external_id", - "group_management_type", - ] -) +GroupCreateArg.group_management_type.validator = bv.Nullable(team_common.GroupManagementType_validator) +GroupCreateArg._all_field_names_ = set([ + 'group_name', + 'add_creator_as_owner', + 'group_external_id', + 'group_management_type', +]) GroupCreateArg._all_fields_ = [ - ("group_name", GroupCreateArg.group_name.validator), - ("add_creator_as_owner", GroupCreateArg.add_creator_as_owner.validator), - ("group_external_id", GroupCreateArg.group_external_id.validator), - ("group_management_type", GroupCreateArg.group_management_type.validator), + ('group_name', GroupCreateArg.group_name.validator), + ('add_creator_as_owner', GroupCreateArg.add_creator_as_owner.validator), + ('group_external_id', GroupCreateArg.group_external_id.validator), + ('group_management_type', GroupCreateArg.group_management_type.validator), ] GroupCreateError._group_name_already_used_validator = bv.Void() @@ -16082,125 +15106,107 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): GroupCreateError._system_managed_group_disallowed_validator = bv.Void() GroupCreateError._other_validator = bv.Void() GroupCreateError._tagmap = { - "group_name_already_used": GroupCreateError._group_name_already_used_validator, - "group_name_invalid": GroupCreateError._group_name_invalid_validator, - "external_id_already_in_use": GroupCreateError._external_id_already_in_use_validator, - "system_managed_group_disallowed": GroupCreateError._system_managed_group_disallowed_validator, - "other": GroupCreateError._other_validator, + 'group_name_already_used': GroupCreateError._group_name_already_used_validator, + 'group_name_invalid': GroupCreateError._group_name_invalid_validator, + 'external_id_already_in_use': GroupCreateError._external_id_already_in_use_validator, + 'system_managed_group_disallowed': GroupCreateError._system_managed_group_disallowed_validator, + 'other': GroupCreateError._other_validator, } -GroupCreateError.group_name_already_used = GroupCreateError("group_name_already_used") -GroupCreateError.group_name_invalid = GroupCreateError("group_name_invalid") -GroupCreateError.external_id_already_in_use = GroupCreateError("external_id_already_in_use") -GroupCreateError.system_managed_group_disallowed = GroupCreateError( - "system_managed_group_disallowed" -) -GroupCreateError.other = GroupCreateError("other") +GroupCreateError.group_name_already_used = GroupCreateError('group_name_already_used') +GroupCreateError.group_name_invalid = GroupCreateError('group_name_invalid') +GroupCreateError.external_id_already_in_use = GroupCreateError('external_id_already_in_use') +GroupCreateError.system_managed_group_disallowed = GroupCreateError('system_managed_group_disallowed') +GroupCreateError.other = GroupCreateError('other') GroupSelectorError._group_not_found_validator = bv.Void() GroupSelectorError._other_validator = bv.Void() GroupSelectorError._tagmap = { - "group_not_found": GroupSelectorError._group_not_found_validator, - "other": GroupSelectorError._other_validator, + 'group_not_found': GroupSelectorError._group_not_found_validator, + 'other': GroupSelectorError._other_validator, } -GroupSelectorError.group_not_found = GroupSelectorError("group_not_found") -GroupSelectorError.other = GroupSelectorError("other") +GroupSelectorError.group_not_found = GroupSelectorError('group_not_found') +GroupSelectorError.other = GroupSelectorError('other') GroupSelectorWithTeamGroupError._system_managed_group_disallowed_validator = bv.Void() GroupSelectorWithTeamGroupError._tagmap = { - "system_managed_group_disallowed": GroupSelectorWithTeamGroupError._system_managed_group_disallowed_validator, + 'system_managed_group_disallowed': GroupSelectorWithTeamGroupError._system_managed_group_disallowed_validator, } GroupSelectorWithTeamGroupError._tagmap.update(GroupSelectorError._tagmap) -GroupSelectorWithTeamGroupError.system_managed_group_disallowed = GroupSelectorWithTeamGroupError( - "system_managed_group_disallowed" -) +GroupSelectorWithTeamGroupError.system_managed_group_disallowed = GroupSelectorWithTeamGroupError('system_managed_group_disallowed') GroupDeleteError._group_already_deleted_validator = bv.Void() GroupDeleteError._tagmap = { - "group_already_deleted": GroupDeleteError._group_already_deleted_validator, + 'group_already_deleted': GroupDeleteError._group_already_deleted_validator, } GroupDeleteError._tagmap.update(GroupSelectorWithTeamGroupError._tagmap) -GroupDeleteError.group_already_deleted = GroupDeleteError("group_already_deleted") +GroupDeleteError.group_already_deleted = GroupDeleteError('group_already_deleted') GroupFullInfo.members.validator = bv.Nullable(bv.List(GroupMemberInfo_validator)) GroupFullInfo.created.validator = bv.UInt64() -GroupFullInfo._all_field_names_ = team_common.GroupSummary._all_field_names_.union( - set( - [ - "members", - "created", - ] - ) -) +GroupFullInfo._all_field_names_ = team_common.GroupSummary._all_field_names_.union(set([ + 'members', + 'created', +])) GroupFullInfo._all_fields_ = team_common.GroupSummary._all_fields_ + [ - ("members", GroupFullInfo.members.validator), - ("created", GroupFullInfo.created.validator), + ('members', GroupFullInfo.members.validator), + ('created', GroupFullInfo.created.validator), ] GroupMemberInfo.profile.validator = MemberProfile_validator GroupMemberInfo.access_type.validator = GroupAccessType_validator -GroupMemberInfo._all_field_names_ = set( - [ - "profile", - "access_type", - ] -) +GroupMemberInfo._all_field_names_ = set([ + 'profile', + 'access_type', +]) GroupMemberInfo._all_fields_ = [ - ("profile", GroupMemberInfo.profile.validator), - ("access_type", GroupMemberInfo.access_type.validator), + ('profile', GroupMemberInfo.profile.validator), + ('access_type', GroupMemberInfo.access_type.validator), ] GroupMemberSelector.group.validator = GroupSelector_validator GroupMemberSelector.user.validator = UserSelectorArg_validator -GroupMemberSelector._all_field_names_ = set( - [ - "group", - "user", - ] -) +GroupMemberSelector._all_field_names_ = set([ + 'group', + 'user', +]) GroupMemberSelector._all_fields_ = [ - ("group", GroupMemberSelector.group.validator), - ("user", GroupMemberSelector.user.validator), + ('group', GroupMemberSelector.group.validator), + ('user', GroupMemberSelector.user.validator), ] GroupMemberSelectorError._member_not_in_group_validator = bv.Void() GroupMemberSelectorError._tagmap = { - "member_not_in_group": GroupMemberSelectorError._member_not_in_group_validator, + 'member_not_in_group': GroupMemberSelectorError._member_not_in_group_validator, } GroupMemberSelectorError._tagmap.update(GroupSelectorWithTeamGroupError._tagmap) -GroupMemberSelectorError.member_not_in_group = GroupMemberSelectorError("member_not_in_group") +GroupMemberSelectorError.member_not_in_group = GroupMemberSelectorError('member_not_in_group') GroupMemberSetAccessTypeError._user_cannot_be_manager_of_company_managed_group_validator = bv.Void() GroupMemberSetAccessTypeError._tagmap = { - "user_cannot_be_manager_of_company_managed_group": GroupMemberSetAccessTypeError._user_cannot_be_manager_of_company_managed_group_validator, + 'user_cannot_be_manager_of_company_managed_group': GroupMemberSetAccessTypeError._user_cannot_be_manager_of_company_managed_group_validator, } GroupMemberSetAccessTypeError._tagmap.update(GroupMemberSelectorError._tagmap) -GroupMemberSetAccessTypeError.user_cannot_be_manager_of_company_managed_group = ( - GroupMemberSetAccessTypeError("user_cannot_be_manager_of_company_managed_group") -) +GroupMemberSetAccessTypeError.user_cannot_be_manager_of_company_managed_group = GroupMemberSetAccessTypeError('user_cannot_be_manager_of_company_managed_group') IncludeMembersArg.return_members.validator = bv.Boolean() -IncludeMembersArg._all_field_names_ = set(["return_members"]) -IncludeMembersArg._all_fields_ = [("return_members", IncludeMembersArg.return_members.validator)] +IncludeMembersArg._all_field_names_ = set(['return_members']) +IncludeMembersArg._all_fields_ = [('return_members', IncludeMembersArg.return_members.validator)] GroupMembersAddArg.group.validator = GroupSelector_validator GroupMembersAddArg.members.validator = bv.List(MemberAccess_validator) -GroupMembersAddArg._all_field_names_ = IncludeMembersArg._all_field_names_.union( - set( - [ - "group", - "members", - ] - ) -) +GroupMembersAddArg._all_field_names_ = IncludeMembersArg._all_field_names_.union(set([ + 'group', + 'members', +])) GroupMembersAddArg._all_fields_ = IncludeMembersArg._all_fields_ + [ - ("group", GroupMembersAddArg.group.validator), - ("members", GroupMembersAddArg.members.validator), + ('group', GroupMembersAddArg.group.validator), + ('members', GroupMembersAddArg.members.validator), ] GroupMembersAddError._duplicate_user_validator = bv.Void() @@ -16208,291 +15214,261 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): GroupMembersAddError._members_not_in_team_validator = bv.List(bv.String()) GroupMembersAddError._users_not_found_validator = bv.List(bv.String()) GroupMembersAddError._user_must_be_active_to_be_owner_validator = bv.Void() -GroupMembersAddError._user_cannot_be_manager_of_company_managed_group_validator = bv.List( - bv.String() -) +GroupMembersAddError._user_cannot_be_manager_of_company_managed_group_validator = bv.List(bv.String()) GroupMembersAddError._tagmap = { - "duplicate_user": GroupMembersAddError._duplicate_user_validator, - "group_not_in_team": GroupMembersAddError._group_not_in_team_validator, - "members_not_in_team": GroupMembersAddError._members_not_in_team_validator, - "users_not_found": GroupMembersAddError._users_not_found_validator, - "user_must_be_active_to_be_owner": GroupMembersAddError._user_must_be_active_to_be_owner_validator, - "user_cannot_be_manager_of_company_managed_group": GroupMembersAddError._user_cannot_be_manager_of_company_managed_group_validator, + 'duplicate_user': GroupMembersAddError._duplicate_user_validator, + 'group_not_in_team': GroupMembersAddError._group_not_in_team_validator, + 'members_not_in_team': GroupMembersAddError._members_not_in_team_validator, + 'users_not_found': GroupMembersAddError._users_not_found_validator, + 'user_must_be_active_to_be_owner': GroupMembersAddError._user_must_be_active_to_be_owner_validator, + 'user_cannot_be_manager_of_company_managed_group': GroupMembersAddError._user_cannot_be_manager_of_company_managed_group_validator, } GroupMembersAddError._tagmap.update(GroupSelectorWithTeamGroupError._tagmap) -GroupMembersAddError.duplicate_user = GroupMembersAddError("duplicate_user") -GroupMembersAddError.group_not_in_team = GroupMembersAddError("group_not_in_team") -GroupMembersAddError.user_must_be_active_to_be_owner = GroupMembersAddError( - "user_must_be_active_to_be_owner" -) +GroupMembersAddError.duplicate_user = GroupMembersAddError('duplicate_user') +GroupMembersAddError.group_not_in_team = GroupMembersAddError('group_not_in_team') +GroupMembersAddError.user_must_be_active_to_be_owner = GroupMembersAddError('user_must_be_active_to_be_owner') GroupMembersChangeResult.group_info.validator = GroupFullInfo_validator GroupMembersChangeResult.async_job_id.validator = async_.AsyncJobId_validator -GroupMembersChangeResult._all_field_names_ = set( - [ - "group_info", - "async_job_id", - ] -) +GroupMembersChangeResult._all_field_names_ = set([ + 'group_info', + 'async_job_id', +]) GroupMembersChangeResult._all_fields_ = [ - ("group_info", GroupMembersChangeResult.group_info.validator), - ("async_job_id", GroupMembersChangeResult.async_job_id.validator), + ('group_info', GroupMembersChangeResult.group_info.validator), + ('async_job_id', GroupMembersChangeResult.async_job_id.validator), ] GroupMembersRemoveArg.group.validator = GroupSelector_validator GroupMembersRemoveArg.users.validator = bv.List(UserSelectorArg_validator) -GroupMembersRemoveArg._all_field_names_ = IncludeMembersArg._all_field_names_.union( - set( - [ - "group", - "users", - ] - ) -) +GroupMembersRemoveArg._all_field_names_ = IncludeMembersArg._all_field_names_.union(set([ + 'group', + 'users', +])) GroupMembersRemoveArg._all_fields_ = IncludeMembersArg._all_fields_ + [ - ("group", GroupMembersRemoveArg.group.validator), - ("users", GroupMembersRemoveArg.users.validator), + ('group', GroupMembersRemoveArg.group.validator), + ('users', GroupMembersRemoveArg.users.validator), ] GroupMembersSelectorError._member_not_in_group_validator = bv.Void() GroupMembersSelectorError._tagmap = { - "member_not_in_group": GroupMembersSelectorError._member_not_in_group_validator, + 'member_not_in_group': GroupMembersSelectorError._member_not_in_group_validator, } GroupMembersSelectorError._tagmap.update(GroupSelectorWithTeamGroupError._tagmap) -GroupMembersSelectorError.member_not_in_group = GroupMembersSelectorError("member_not_in_group") +GroupMembersSelectorError.member_not_in_group = GroupMembersSelectorError('member_not_in_group') GroupMembersRemoveError._group_not_in_team_validator = bv.Void() GroupMembersRemoveError._members_not_in_team_validator = bv.List(bv.String()) GroupMembersRemoveError._users_not_found_validator = bv.List(bv.String()) GroupMembersRemoveError._tagmap = { - "group_not_in_team": GroupMembersRemoveError._group_not_in_team_validator, - "members_not_in_team": GroupMembersRemoveError._members_not_in_team_validator, - "users_not_found": GroupMembersRemoveError._users_not_found_validator, + 'group_not_in_team': GroupMembersRemoveError._group_not_in_team_validator, + 'members_not_in_team': GroupMembersRemoveError._members_not_in_team_validator, + 'users_not_found': GroupMembersRemoveError._users_not_found_validator, } GroupMembersRemoveError._tagmap.update(GroupMembersSelectorError._tagmap) -GroupMembersRemoveError.group_not_in_team = GroupMembersRemoveError("group_not_in_team") +GroupMembersRemoveError.group_not_in_team = GroupMembersRemoveError('group_not_in_team') GroupMembersSelector.group.validator = GroupSelector_validator GroupMembersSelector.users.validator = UsersSelectorArg_validator -GroupMembersSelector._all_field_names_ = set( - [ - "group", - "users", - ] -) +GroupMembersSelector._all_field_names_ = set([ + 'group', + 'users', +]) GroupMembersSelector._all_fields_ = [ - ("group", GroupMembersSelector.group.validator), - ("users", GroupMembersSelector.users.validator), + ('group', GroupMembersSelector.group.validator), + ('users', GroupMembersSelector.users.validator), ] GroupMembersSetAccessTypeArg.access_type.validator = GroupAccessType_validator GroupMembersSetAccessTypeArg.return_members.validator = bv.Boolean() -GroupMembersSetAccessTypeArg._all_field_names_ = GroupMemberSelector._all_field_names_.union( - set( - [ - "access_type", - "return_members", - ] - ) -) +GroupMembersSetAccessTypeArg._all_field_names_ = GroupMemberSelector._all_field_names_.union(set([ + 'access_type', + 'return_members', +])) GroupMembersSetAccessTypeArg._all_fields_ = GroupMemberSelector._all_fields_ + [ - ("access_type", GroupMembersSetAccessTypeArg.access_type.validator), - ("return_members", GroupMembersSetAccessTypeArg.return_members.validator), + ('access_type', GroupMembersSetAccessTypeArg.access_type.validator), + ('return_members', GroupMembersSetAccessTypeArg.return_members.validator), ] GroupSelector._group_id_validator = team_common.GroupId_validator GroupSelector._group_external_id_validator = team_common.GroupExternalId_validator GroupSelector._tagmap = { - "group_id": GroupSelector._group_id_validator, - "group_external_id": GroupSelector._group_external_id_validator, + 'group_id': GroupSelector._group_id_validator, + 'group_external_id': GroupSelector._group_external_id_validator, } GroupUpdateArgs.group.validator = GroupSelector_validator GroupUpdateArgs.new_group_name.validator = bv.Nullable(bv.String()) GroupUpdateArgs.new_group_external_id.validator = bv.Nullable(team_common.GroupExternalId_validator) -GroupUpdateArgs.new_group_management_type.validator = bv.Nullable( - team_common.GroupManagementType_validator -) -GroupUpdateArgs._all_field_names_ = IncludeMembersArg._all_field_names_.union( - set( - [ - "group", - "new_group_name", - "new_group_external_id", - "new_group_management_type", - ] - ) -) +GroupUpdateArgs.new_group_management_type.validator = bv.Nullable(team_common.GroupManagementType_validator) +GroupUpdateArgs._all_field_names_ = IncludeMembersArg._all_field_names_.union(set([ + 'group', + 'new_group_name', + 'new_group_external_id', + 'new_group_management_type', +])) GroupUpdateArgs._all_fields_ = IncludeMembersArg._all_fields_ + [ - ("group", GroupUpdateArgs.group.validator), - ("new_group_name", GroupUpdateArgs.new_group_name.validator), - ("new_group_external_id", GroupUpdateArgs.new_group_external_id.validator), - ("new_group_management_type", GroupUpdateArgs.new_group_management_type.validator), + ('group', GroupUpdateArgs.group.validator), + ('new_group_name', GroupUpdateArgs.new_group_name.validator), + ('new_group_external_id', GroupUpdateArgs.new_group_external_id.validator), + ('new_group_management_type', GroupUpdateArgs.new_group_management_type.validator), ] GroupUpdateError._group_name_already_used_validator = bv.Void() GroupUpdateError._group_name_invalid_validator = bv.Void() GroupUpdateError._external_id_already_in_use_validator = bv.Void() GroupUpdateError._tagmap = { - "group_name_already_used": GroupUpdateError._group_name_already_used_validator, - "group_name_invalid": GroupUpdateError._group_name_invalid_validator, - "external_id_already_in_use": GroupUpdateError._external_id_already_in_use_validator, + 'group_name_already_used': GroupUpdateError._group_name_already_used_validator, + 'group_name_invalid': GroupUpdateError._group_name_invalid_validator, + 'external_id_already_in_use': GroupUpdateError._external_id_already_in_use_validator, } GroupUpdateError._tagmap.update(GroupSelectorWithTeamGroupError._tagmap) -GroupUpdateError.group_name_already_used = GroupUpdateError("group_name_already_used") -GroupUpdateError.group_name_invalid = GroupUpdateError("group_name_invalid") -GroupUpdateError.external_id_already_in_use = GroupUpdateError("external_id_already_in_use") +GroupUpdateError.group_name_already_used = GroupUpdateError('group_name_already_used') +GroupUpdateError.group_name_invalid = GroupUpdateError('group_name_invalid') +GroupUpdateError.external_id_already_in_use = GroupUpdateError('external_id_already_in_use') GroupsGetInfoError._group_not_on_team_validator = bv.Void() GroupsGetInfoError._other_validator = bv.Void() GroupsGetInfoError._tagmap = { - "group_not_on_team": GroupsGetInfoError._group_not_on_team_validator, - "other": GroupsGetInfoError._other_validator, + 'group_not_on_team': GroupsGetInfoError._group_not_on_team_validator, + 'other': GroupsGetInfoError._other_validator, } -GroupsGetInfoError.group_not_on_team = GroupsGetInfoError("group_not_on_team") -GroupsGetInfoError.other = GroupsGetInfoError("other") +GroupsGetInfoError.group_not_on_team = GroupsGetInfoError('group_not_on_team') +GroupsGetInfoError.other = GroupsGetInfoError('other') GroupsGetInfoItem._id_not_found_validator = bv.String() GroupsGetInfoItem._group_info_validator = GroupFullInfo_validator GroupsGetInfoItem._tagmap = { - "id_not_found": GroupsGetInfoItem._id_not_found_validator, - "group_info": GroupsGetInfoItem._group_info_validator, + 'id_not_found': GroupsGetInfoItem._id_not_found_validator, + 'group_info': GroupsGetInfoItem._group_info_validator, } GroupsListArg.limit.validator = bv.UInt32(min_value=1, max_value=1000) -GroupsListArg._all_field_names_ = set(["limit"]) -GroupsListArg._all_fields_ = [("limit", GroupsListArg.limit.validator)] +GroupsListArg._all_field_names_ = set(['limit']) +GroupsListArg._all_fields_ = [('limit', GroupsListArg.limit.validator)] GroupsListContinueArg.cursor.validator = bv.String() -GroupsListContinueArg._all_field_names_ = set(["cursor"]) -GroupsListContinueArg._all_fields_ = [("cursor", GroupsListContinueArg.cursor.validator)] +GroupsListContinueArg._all_field_names_ = set(['cursor']) +GroupsListContinueArg._all_fields_ = [('cursor', GroupsListContinueArg.cursor.validator)] GroupsListContinueError._invalid_cursor_validator = bv.Void() GroupsListContinueError._other_validator = bv.Void() GroupsListContinueError._tagmap = { - "invalid_cursor": GroupsListContinueError._invalid_cursor_validator, - "other": GroupsListContinueError._other_validator, + 'invalid_cursor': GroupsListContinueError._invalid_cursor_validator, + 'other': GroupsListContinueError._other_validator, } -GroupsListContinueError.invalid_cursor = GroupsListContinueError("invalid_cursor") -GroupsListContinueError.other = GroupsListContinueError("other") +GroupsListContinueError.invalid_cursor = GroupsListContinueError('invalid_cursor') +GroupsListContinueError.other = GroupsListContinueError('other') GroupsListResult.groups.validator = bv.List(team_common.GroupSummary_validator) GroupsListResult.cursor.validator = bv.String() GroupsListResult.has_more.validator = bv.Boolean() -GroupsListResult._all_field_names_ = set( - [ - "groups", - "cursor", - "has_more", - ] -) +GroupsListResult._all_field_names_ = set([ + 'groups', + 'cursor', + 'has_more', +]) GroupsListResult._all_fields_ = [ - ("groups", GroupsListResult.groups.validator), - ("cursor", GroupsListResult.cursor.validator), - ("has_more", GroupsListResult.has_more.validator), + ('groups', GroupsListResult.groups.validator), + ('cursor', GroupsListResult.cursor.validator), + ('has_more', GroupsListResult.has_more.validator), ] GroupsMembersListArg.group.validator = GroupSelector_validator GroupsMembersListArg.limit.validator = bv.UInt32(min_value=1, max_value=1000) -GroupsMembersListArg._all_field_names_ = set( - [ - "group", - "limit", - ] -) +GroupsMembersListArg._all_field_names_ = set([ + 'group', + 'limit', +]) GroupsMembersListArg._all_fields_ = [ - ("group", GroupsMembersListArg.group.validator), - ("limit", GroupsMembersListArg.limit.validator), + ('group', GroupsMembersListArg.group.validator), + ('limit', GroupsMembersListArg.limit.validator), ] GroupsMembersListContinueArg.cursor.validator = bv.String() -GroupsMembersListContinueArg._all_field_names_ = set(["cursor"]) -GroupsMembersListContinueArg._all_fields_ = [ - ("cursor", GroupsMembersListContinueArg.cursor.validator) -] +GroupsMembersListContinueArg._all_field_names_ = set(['cursor']) +GroupsMembersListContinueArg._all_fields_ = [('cursor', GroupsMembersListContinueArg.cursor.validator)] GroupsMembersListContinueError._invalid_cursor_validator = bv.Void() GroupsMembersListContinueError._other_validator = bv.Void() GroupsMembersListContinueError._tagmap = { - "invalid_cursor": GroupsMembersListContinueError._invalid_cursor_validator, - "other": GroupsMembersListContinueError._other_validator, + 'invalid_cursor': GroupsMembersListContinueError._invalid_cursor_validator, + 'other': GroupsMembersListContinueError._other_validator, } -GroupsMembersListContinueError.invalid_cursor = GroupsMembersListContinueError("invalid_cursor") -GroupsMembersListContinueError.other = GroupsMembersListContinueError("other") +GroupsMembersListContinueError.invalid_cursor = GroupsMembersListContinueError('invalid_cursor') +GroupsMembersListContinueError.other = GroupsMembersListContinueError('other') GroupsMembersListResult.members.validator = bv.List(GroupMemberInfo_validator) GroupsMembersListResult.cursor.validator = bv.String() GroupsMembersListResult.has_more.validator = bv.Boolean() -GroupsMembersListResult._all_field_names_ = set( - [ - "members", - "cursor", - "has_more", - ] -) +GroupsMembersListResult._all_field_names_ = set([ + 'members', + 'cursor', + 'has_more', +]) GroupsMembersListResult._all_fields_ = [ - ("members", GroupsMembersListResult.members.validator), - ("cursor", GroupsMembersListResult.cursor.validator), - ("has_more", GroupsMembersListResult.has_more.validator), + ('members', GroupsMembersListResult.members.validator), + ('cursor', GroupsMembersListResult.cursor.validator), + ('has_more', GroupsMembersListResult.has_more.validator), ] GroupsPollError._access_denied_validator = bv.Void() GroupsPollError._tagmap = { - "access_denied": GroupsPollError._access_denied_validator, + 'access_denied': GroupsPollError._access_denied_validator, } GroupsPollError._tagmap.update(async_.PollError._tagmap) -GroupsPollError.access_denied = GroupsPollError("access_denied") +GroupsPollError.access_denied = GroupsPollError('access_denied') GroupsSelector._group_ids_validator = bv.List(team_common.GroupId_validator) GroupsSelector._group_external_ids_validator = bv.List(bv.String()) GroupsSelector._tagmap = { - "group_ids": GroupsSelector._group_ids_validator, - "group_external_ids": GroupsSelector._group_external_ids_validator, + 'group_ids': GroupsSelector._group_ids_validator, + 'group_external_ids': GroupsSelector._group_external_ids_validator, } HasDistinctMemberHomesValue._has_distinct_member_homes_validator = bv.Boolean() HasDistinctMemberHomesValue._other_validator = bv.Void() HasDistinctMemberHomesValue._tagmap = { - "has_distinct_member_homes": HasDistinctMemberHomesValue._has_distinct_member_homes_validator, - "other": HasDistinctMemberHomesValue._other_validator, + 'has_distinct_member_homes': HasDistinctMemberHomesValue._has_distinct_member_homes_validator, + 'other': HasDistinctMemberHomesValue._other_validator, } -HasDistinctMemberHomesValue.other = HasDistinctMemberHomesValue("other") +HasDistinctMemberHomesValue.other = HasDistinctMemberHomesValue('other') HasTeamFileEventsValue._enabled_validator = bv.Boolean() HasTeamFileEventsValue._other_validator = bv.Void() HasTeamFileEventsValue._tagmap = { - "enabled": HasTeamFileEventsValue._enabled_validator, - "other": HasTeamFileEventsValue._other_validator, + 'enabled': HasTeamFileEventsValue._enabled_validator, + 'other': HasTeamFileEventsValue._other_validator, } -HasTeamFileEventsValue.other = HasTeamFileEventsValue("other") +HasTeamFileEventsValue.other = HasTeamFileEventsValue('other') HasTeamSelectiveSyncValue._has_team_selective_sync_validator = bv.Boolean() HasTeamSelectiveSyncValue._other_validator = bv.Void() HasTeamSelectiveSyncValue._tagmap = { - "has_team_selective_sync": HasTeamSelectiveSyncValue._has_team_selective_sync_validator, - "other": HasTeamSelectiveSyncValue._other_validator, + 'has_team_selective_sync': HasTeamSelectiveSyncValue._has_team_selective_sync_validator, + 'other': HasTeamSelectiveSyncValue._other_validator, } -HasTeamSelectiveSyncValue.other = HasTeamSelectiveSyncValue("other") +HasTeamSelectiveSyncValue.other = HasTeamSelectiveSyncValue('other') HasTeamSharedDropboxValue._has_team_shared_dropbox_validator = bv.Boolean() HasTeamSharedDropboxValue._other_validator = bv.Void() HasTeamSharedDropboxValue._tagmap = { - "has_team_shared_dropbox": HasTeamSharedDropboxValue._has_team_shared_dropbox_validator, - "other": HasTeamSharedDropboxValue._other_validator, + 'has_team_shared_dropbox': HasTeamSharedDropboxValue._has_team_shared_dropbox_validator, + 'other': HasTeamSharedDropboxValue._other_validator, } -HasTeamSharedDropboxValue.other = HasTeamSharedDropboxValue("other") +HasTeamSharedDropboxValue.other = HasTeamSharedDropboxValue('other') LegalHoldHeldRevisionMetadata.new_filename.validator = bv.String() LegalHoldHeldRevisionMetadata.original_revision_id.validator = files.Rev_validator @@ -16504,37 +15480,29 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): LegalHoldHeldRevisionMetadata.file_type.validator = bv.String() LegalHoldHeldRevisionMetadata.size.validator = bv.UInt64() LegalHoldHeldRevisionMetadata.content_hash.validator = files.Sha256HexHash_validator -LegalHoldHeldRevisionMetadata._all_field_names_ = set( - [ - "new_filename", - "original_revision_id", - "original_file_path", - "server_modified", - "author_member_id", - "author_member_status", - "author_email", - "file_type", - "size", - "content_hash", - ] -) +LegalHoldHeldRevisionMetadata._all_field_names_ = set([ + 'new_filename', + 'original_revision_id', + 'original_file_path', + 'server_modified', + 'author_member_id', + 'author_member_status', + 'author_email', + 'file_type', + 'size', + 'content_hash', +]) LegalHoldHeldRevisionMetadata._all_fields_ = [ - ("new_filename", LegalHoldHeldRevisionMetadata.new_filename.validator), - ( - "original_revision_id", - LegalHoldHeldRevisionMetadata.original_revision_id.validator, - ), - ("original_file_path", LegalHoldHeldRevisionMetadata.original_file_path.validator), - ("server_modified", LegalHoldHeldRevisionMetadata.server_modified.validator), - ("author_member_id", LegalHoldHeldRevisionMetadata.author_member_id.validator), - ( - "author_member_status", - LegalHoldHeldRevisionMetadata.author_member_status.validator, - ), - ("author_email", LegalHoldHeldRevisionMetadata.author_email.validator), - ("file_type", LegalHoldHeldRevisionMetadata.file_type.validator), - ("size", LegalHoldHeldRevisionMetadata.size.validator), - ("content_hash", LegalHoldHeldRevisionMetadata.content_hash.validator), + ('new_filename', LegalHoldHeldRevisionMetadata.new_filename.validator), + ('original_revision_id', LegalHoldHeldRevisionMetadata.original_revision_id.validator), + ('original_file_path', LegalHoldHeldRevisionMetadata.original_file_path.validator), + ('server_modified', LegalHoldHeldRevisionMetadata.server_modified.validator), + ('author_member_id', LegalHoldHeldRevisionMetadata.author_member_id.validator), + ('author_member_status', LegalHoldHeldRevisionMetadata.author_member_status.validator), + ('author_email', LegalHoldHeldRevisionMetadata.author_email.validator), + ('file_type', LegalHoldHeldRevisionMetadata.file_type.validator), + ('size', LegalHoldHeldRevisionMetadata.size.validator), + ('content_hash', LegalHoldHeldRevisionMetadata.content_hash.validator), ] LegalHoldPolicy.id.validator = LegalHoldId_validator @@ -16545,27 +15513,25 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): LegalHoldPolicy.status.validator = LegalHoldStatus_validator LegalHoldPolicy.start_date.validator = common.DropboxTimestamp_validator LegalHoldPolicy.end_date.validator = bv.Nullable(common.DropboxTimestamp_validator) -LegalHoldPolicy._all_field_names_ = set( - [ - "id", - "name", - "description", - "activation_time", - "members", - "status", - "start_date", - "end_date", - ] -) +LegalHoldPolicy._all_field_names_ = set([ + 'id', + 'name', + 'description', + 'activation_time', + 'members', + 'status', + 'start_date', + 'end_date', +]) LegalHoldPolicy._all_fields_ = [ - ("id", LegalHoldPolicy.id.validator), - ("name", LegalHoldPolicy.name.validator), - ("description", LegalHoldPolicy.description.validator), - ("activation_time", LegalHoldPolicy.activation_time.validator), - ("members", LegalHoldPolicy.members.validator), - ("status", LegalHoldPolicy.status.validator), - ("start_date", LegalHoldPolicy.start_date.validator), - ("end_date", LegalHoldPolicy.end_date.validator), + ('id', LegalHoldPolicy.id.validator), + ('name', LegalHoldPolicy.name.validator), + ('description', LegalHoldPolicy.description.validator), + ('activation_time', LegalHoldPolicy.activation_time.validator), + ('members', LegalHoldPolicy.members.validator), + ('status', LegalHoldPolicy.status.validator), + ('start_date', LegalHoldPolicy.start_date.validator), + ('end_date', LegalHoldPolicy.end_date.validator), ] LegalHoldStatus._active_validator = bv.Void() @@ -16576,85 +15542,75 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): LegalHoldStatus._releasing_validator = bv.Void() LegalHoldStatus._other_validator = bv.Void() LegalHoldStatus._tagmap = { - "active": LegalHoldStatus._active_validator, - "released": LegalHoldStatus._released_validator, - "activating": LegalHoldStatus._activating_validator, - "updating": LegalHoldStatus._updating_validator, - "exporting": LegalHoldStatus._exporting_validator, - "releasing": LegalHoldStatus._releasing_validator, - "other": LegalHoldStatus._other_validator, + 'active': LegalHoldStatus._active_validator, + 'released': LegalHoldStatus._released_validator, + 'activating': LegalHoldStatus._activating_validator, + 'updating': LegalHoldStatus._updating_validator, + 'exporting': LegalHoldStatus._exporting_validator, + 'releasing': LegalHoldStatus._releasing_validator, + 'other': LegalHoldStatus._other_validator, } -LegalHoldStatus.active = LegalHoldStatus("active") -LegalHoldStatus.released = LegalHoldStatus("released") -LegalHoldStatus.activating = LegalHoldStatus("activating") -LegalHoldStatus.updating = LegalHoldStatus("updating") -LegalHoldStatus.exporting = LegalHoldStatus("exporting") -LegalHoldStatus.releasing = LegalHoldStatus("releasing") -LegalHoldStatus.other = LegalHoldStatus("other") +LegalHoldStatus.active = LegalHoldStatus('active') +LegalHoldStatus.released = LegalHoldStatus('released') +LegalHoldStatus.activating = LegalHoldStatus('activating') +LegalHoldStatus.updating = LegalHoldStatus('updating') +LegalHoldStatus.exporting = LegalHoldStatus('exporting') +LegalHoldStatus.releasing = LegalHoldStatus('releasing') +LegalHoldStatus.other = LegalHoldStatus('other') LegalHoldsError._unknown_legal_hold_error_validator = bv.Void() LegalHoldsError._insufficient_permissions_validator = bv.Void() LegalHoldsError._other_validator = bv.Void() LegalHoldsError._tagmap = { - "unknown_legal_hold_error": LegalHoldsError._unknown_legal_hold_error_validator, - "insufficient_permissions": LegalHoldsError._insufficient_permissions_validator, - "other": LegalHoldsError._other_validator, + 'unknown_legal_hold_error': LegalHoldsError._unknown_legal_hold_error_validator, + 'insufficient_permissions': LegalHoldsError._insufficient_permissions_validator, + 'other': LegalHoldsError._other_validator, } -LegalHoldsError.unknown_legal_hold_error = LegalHoldsError("unknown_legal_hold_error") -LegalHoldsError.insufficient_permissions = LegalHoldsError("insufficient_permissions") -LegalHoldsError.other = LegalHoldsError("other") +LegalHoldsError.unknown_legal_hold_error = LegalHoldsError('unknown_legal_hold_error') +LegalHoldsError.insufficient_permissions = LegalHoldsError('insufficient_permissions') +LegalHoldsError.other = LegalHoldsError('other') LegalHoldsGetPolicyArg.id.validator = LegalHoldId_validator -LegalHoldsGetPolicyArg._all_field_names_ = set(["id"]) -LegalHoldsGetPolicyArg._all_fields_ = [("id", LegalHoldsGetPolicyArg.id.validator)] +LegalHoldsGetPolicyArg._all_field_names_ = set(['id']) +LegalHoldsGetPolicyArg._all_fields_ = [('id', LegalHoldsGetPolicyArg.id.validator)] LegalHoldsGetPolicyError._legal_hold_policy_not_found_validator = bv.Void() LegalHoldsGetPolicyError._tagmap = { - "legal_hold_policy_not_found": LegalHoldsGetPolicyError._legal_hold_policy_not_found_validator, + 'legal_hold_policy_not_found': LegalHoldsGetPolicyError._legal_hold_policy_not_found_validator, } LegalHoldsGetPolicyError._tagmap.update(LegalHoldsError._tagmap) -LegalHoldsGetPolicyError.legal_hold_policy_not_found = LegalHoldsGetPolicyError( - "legal_hold_policy_not_found" -) +LegalHoldsGetPolicyError.legal_hold_policy_not_found = LegalHoldsGetPolicyError('legal_hold_policy_not_found') -LegalHoldsListHeldRevisionResult.entries.validator = bv.List( - LegalHoldHeldRevisionMetadata_validator -) +LegalHoldsListHeldRevisionResult.entries.validator = bv.List(LegalHoldHeldRevisionMetadata_validator) LegalHoldsListHeldRevisionResult.cursor.validator = bv.Nullable(ListHeldRevisionCursor_validator) LegalHoldsListHeldRevisionResult.has_more.validator = bv.Boolean() -LegalHoldsListHeldRevisionResult._all_field_names_ = set( - [ - "entries", - "cursor", - "has_more", - ] -) +LegalHoldsListHeldRevisionResult._all_field_names_ = set([ + 'entries', + 'cursor', + 'has_more', +]) LegalHoldsListHeldRevisionResult._all_fields_ = [ - ("entries", LegalHoldsListHeldRevisionResult.entries.validator), - ("cursor", LegalHoldsListHeldRevisionResult.cursor.validator), - ("has_more", LegalHoldsListHeldRevisionResult.has_more.validator), + ('entries', LegalHoldsListHeldRevisionResult.entries.validator), + ('cursor', LegalHoldsListHeldRevisionResult.cursor.validator), + ('has_more', LegalHoldsListHeldRevisionResult.has_more.validator), ] LegalHoldsListHeldRevisionsArg.id.validator = LegalHoldId_validator -LegalHoldsListHeldRevisionsArg._all_field_names_ = set(["id"]) -LegalHoldsListHeldRevisionsArg._all_fields_ = [("id", LegalHoldsListHeldRevisionsArg.id.validator)] +LegalHoldsListHeldRevisionsArg._all_field_names_ = set(['id']) +LegalHoldsListHeldRevisionsArg._all_fields_ = [('id', LegalHoldsListHeldRevisionsArg.id.validator)] LegalHoldsListHeldRevisionsContinueArg.id.validator = LegalHoldId_validator -LegalHoldsListHeldRevisionsContinueArg.cursor.validator = bv.Nullable( - ListHeldRevisionCursor_validator -) -LegalHoldsListHeldRevisionsContinueArg._all_field_names_ = set( - [ - "id", - "cursor", - ] -) +LegalHoldsListHeldRevisionsContinueArg.cursor.validator = bv.Nullable(ListHeldRevisionCursor_validator) +LegalHoldsListHeldRevisionsContinueArg._all_field_names_ = set([ + 'id', + 'cursor', +]) LegalHoldsListHeldRevisionsContinueArg._all_fields_ = [ - ("id", LegalHoldsListHeldRevisionsContinueArg.id.validator), - ("cursor", LegalHoldsListHeldRevisionsContinueArg.cursor.validator), + ('id', LegalHoldsListHeldRevisionsContinueArg.id.validator), + ('cursor', LegalHoldsListHeldRevisionsContinueArg.cursor.validator), ] LegalHoldsListHeldRevisionsContinueError._unknown_legal_hold_error_validator = bv.Void() @@ -16662,443 +15618,366 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): LegalHoldsListHeldRevisionsContinueError._reset_validator = bv.Void() LegalHoldsListHeldRevisionsContinueError._other_validator = bv.Void() LegalHoldsListHeldRevisionsContinueError._tagmap = { - "unknown_legal_hold_error": LegalHoldsListHeldRevisionsContinueError._unknown_legal_hold_error_validator, - "transient_error": LegalHoldsListHeldRevisionsContinueError._transient_error_validator, - "reset": LegalHoldsListHeldRevisionsContinueError._reset_validator, - "other": LegalHoldsListHeldRevisionsContinueError._other_validator, + 'unknown_legal_hold_error': LegalHoldsListHeldRevisionsContinueError._unknown_legal_hold_error_validator, + 'transient_error': LegalHoldsListHeldRevisionsContinueError._transient_error_validator, + 'reset': LegalHoldsListHeldRevisionsContinueError._reset_validator, + 'other': LegalHoldsListHeldRevisionsContinueError._other_validator, } -LegalHoldsListHeldRevisionsContinueError.unknown_legal_hold_error = ( - LegalHoldsListHeldRevisionsContinueError("unknown_legal_hold_error") -) -LegalHoldsListHeldRevisionsContinueError.transient_error = LegalHoldsListHeldRevisionsContinueError( - "transient_error" -) -LegalHoldsListHeldRevisionsContinueError.reset = LegalHoldsListHeldRevisionsContinueError("reset") -LegalHoldsListHeldRevisionsContinueError.other = LegalHoldsListHeldRevisionsContinueError("other") +LegalHoldsListHeldRevisionsContinueError.unknown_legal_hold_error = LegalHoldsListHeldRevisionsContinueError('unknown_legal_hold_error') +LegalHoldsListHeldRevisionsContinueError.transient_error = LegalHoldsListHeldRevisionsContinueError('transient_error') +LegalHoldsListHeldRevisionsContinueError.reset = LegalHoldsListHeldRevisionsContinueError('reset') +LegalHoldsListHeldRevisionsContinueError.other = LegalHoldsListHeldRevisionsContinueError('other') LegalHoldsListHeldRevisionsError._transient_error_validator = bv.Void() LegalHoldsListHeldRevisionsError._legal_hold_still_empty_validator = bv.Void() LegalHoldsListHeldRevisionsError._inactive_legal_hold_validator = bv.Void() LegalHoldsListHeldRevisionsError._tagmap = { - "transient_error": LegalHoldsListHeldRevisionsError._transient_error_validator, - "legal_hold_still_empty": LegalHoldsListHeldRevisionsError._legal_hold_still_empty_validator, - "inactive_legal_hold": LegalHoldsListHeldRevisionsError._inactive_legal_hold_validator, + 'transient_error': LegalHoldsListHeldRevisionsError._transient_error_validator, + 'legal_hold_still_empty': LegalHoldsListHeldRevisionsError._legal_hold_still_empty_validator, + 'inactive_legal_hold': LegalHoldsListHeldRevisionsError._inactive_legal_hold_validator, } LegalHoldsListHeldRevisionsError._tagmap.update(LegalHoldsError._tagmap) -LegalHoldsListHeldRevisionsError.transient_error = LegalHoldsListHeldRevisionsError( - "transient_error" -) -LegalHoldsListHeldRevisionsError.legal_hold_still_empty = LegalHoldsListHeldRevisionsError( - "legal_hold_still_empty" -) -LegalHoldsListHeldRevisionsError.inactive_legal_hold = LegalHoldsListHeldRevisionsError( - "inactive_legal_hold" -) +LegalHoldsListHeldRevisionsError.transient_error = LegalHoldsListHeldRevisionsError('transient_error') +LegalHoldsListHeldRevisionsError.legal_hold_still_empty = LegalHoldsListHeldRevisionsError('legal_hold_still_empty') +LegalHoldsListHeldRevisionsError.inactive_legal_hold = LegalHoldsListHeldRevisionsError('inactive_legal_hold') LegalHoldsListPoliciesArg.include_released.validator = bv.Boolean() -LegalHoldsListPoliciesArg._all_field_names_ = set(["include_released"]) -LegalHoldsListPoliciesArg._all_fields_ = [ - ("include_released", LegalHoldsListPoliciesArg.include_released.validator) -] +LegalHoldsListPoliciesArg._all_field_names_ = set(['include_released']) +LegalHoldsListPoliciesArg._all_fields_ = [('include_released', LegalHoldsListPoliciesArg.include_released.validator)] LegalHoldsListPoliciesError._transient_error_validator = bv.Void() LegalHoldsListPoliciesError._tagmap = { - "transient_error": LegalHoldsListPoliciesError._transient_error_validator, + 'transient_error': LegalHoldsListPoliciesError._transient_error_validator, } LegalHoldsListPoliciesError._tagmap.update(LegalHoldsError._tagmap) -LegalHoldsListPoliciesError.transient_error = LegalHoldsListPoliciesError("transient_error") +LegalHoldsListPoliciesError.transient_error = LegalHoldsListPoliciesError('transient_error') LegalHoldsListPoliciesResult.policies.validator = bv.List(LegalHoldPolicy_validator) -LegalHoldsListPoliciesResult._all_field_names_ = set(["policies"]) -LegalHoldsListPoliciesResult._all_fields_ = [ - ("policies", LegalHoldsListPoliciesResult.policies.validator) -] +LegalHoldsListPoliciesResult._all_field_names_ = set(['policies']) +LegalHoldsListPoliciesResult._all_fields_ = [('policies', LegalHoldsListPoliciesResult.policies.validator)] LegalHoldsPolicyCreateArg.name.validator = LegalHoldPolicyName_validator LegalHoldsPolicyCreateArg.description.validator = bv.Nullable(LegalHoldPolicyDescription_validator) LegalHoldsPolicyCreateArg.members.validator = bv.List(team_common.TeamMemberId_validator) LegalHoldsPolicyCreateArg.start_date.validator = bv.Nullable(common.DropboxTimestamp_validator) LegalHoldsPolicyCreateArg.end_date.validator = bv.Nullable(common.DropboxTimestamp_validator) -LegalHoldsPolicyCreateArg._all_field_names_ = set( - [ - "name", - "description", - "members", - "start_date", - "end_date", - ] -) +LegalHoldsPolicyCreateArg._all_field_names_ = set([ + 'name', + 'description', + 'members', + 'start_date', + 'end_date', +]) LegalHoldsPolicyCreateArg._all_fields_ = [ - ("name", LegalHoldsPolicyCreateArg.name.validator), - ("description", LegalHoldsPolicyCreateArg.description.validator), - ("members", LegalHoldsPolicyCreateArg.members.validator), - ("start_date", LegalHoldsPolicyCreateArg.start_date.validator), - ("end_date", LegalHoldsPolicyCreateArg.end_date.validator), + ('name', LegalHoldsPolicyCreateArg.name.validator), + ('description', LegalHoldsPolicyCreateArg.description.validator), + ('members', LegalHoldsPolicyCreateArg.members.validator), + ('start_date', LegalHoldsPolicyCreateArg.start_date.validator), + ('end_date', LegalHoldsPolicyCreateArg.end_date.validator), ] LegalHoldsPolicyCreateError._start_date_is_later_than_end_date_validator = bv.Void() LegalHoldsPolicyCreateError._empty_members_list_validator = bv.Void() LegalHoldsPolicyCreateError._invalid_members_validator = bv.Void() -LegalHoldsPolicyCreateError._number_of_users_on_hold_is_greater_than_hold_limitation_validator = ( - bv.Void() -) +LegalHoldsPolicyCreateError._number_of_users_on_hold_is_greater_than_hold_limitation_validator = bv.Void() LegalHoldsPolicyCreateError._transient_error_validator = bv.Void() LegalHoldsPolicyCreateError._name_must_be_unique_validator = bv.Void() LegalHoldsPolicyCreateError._team_exceeded_legal_hold_quota_validator = bv.Void() LegalHoldsPolicyCreateError._invalid_date_validator = bv.Void() LegalHoldsPolicyCreateError._tagmap = { - "start_date_is_later_than_end_date": LegalHoldsPolicyCreateError._start_date_is_later_than_end_date_validator, - "empty_members_list": LegalHoldsPolicyCreateError._empty_members_list_validator, - "invalid_members": LegalHoldsPolicyCreateError._invalid_members_validator, - "number_of_users_on_hold_is_greater_than_hold_limitation": LegalHoldsPolicyCreateError._number_of_users_on_hold_is_greater_than_hold_limitation_validator, - "transient_error": LegalHoldsPolicyCreateError._transient_error_validator, - "name_must_be_unique": LegalHoldsPolicyCreateError._name_must_be_unique_validator, - "team_exceeded_legal_hold_quota": LegalHoldsPolicyCreateError._team_exceeded_legal_hold_quota_validator, - "invalid_date": LegalHoldsPolicyCreateError._invalid_date_validator, + 'start_date_is_later_than_end_date': LegalHoldsPolicyCreateError._start_date_is_later_than_end_date_validator, + 'empty_members_list': LegalHoldsPolicyCreateError._empty_members_list_validator, + 'invalid_members': LegalHoldsPolicyCreateError._invalid_members_validator, + 'number_of_users_on_hold_is_greater_than_hold_limitation': LegalHoldsPolicyCreateError._number_of_users_on_hold_is_greater_than_hold_limitation_validator, + 'transient_error': LegalHoldsPolicyCreateError._transient_error_validator, + 'name_must_be_unique': LegalHoldsPolicyCreateError._name_must_be_unique_validator, + 'team_exceeded_legal_hold_quota': LegalHoldsPolicyCreateError._team_exceeded_legal_hold_quota_validator, + 'invalid_date': LegalHoldsPolicyCreateError._invalid_date_validator, } LegalHoldsPolicyCreateError._tagmap.update(LegalHoldsError._tagmap) -LegalHoldsPolicyCreateError.start_date_is_later_than_end_date = LegalHoldsPolicyCreateError( - "start_date_is_later_than_end_date" -) -LegalHoldsPolicyCreateError.empty_members_list = LegalHoldsPolicyCreateError("empty_members_list") -LegalHoldsPolicyCreateError.invalid_members = LegalHoldsPolicyCreateError("invalid_members") -LegalHoldsPolicyCreateError.number_of_users_on_hold_is_greater_than_hold_limitation = ( - LegalHoldsPolicyCreateError("number_of_users_on_hold_is_greater_than_hold_limitation") -) -LegalHoldsPolicyCreateError.transient_error = LegalHoldsPolicyCreateError("transient_error") -LegalHoldsPolicyCreateError.name_must_be_unique = LegalHoldsPolicyCreateError("name_must_be_unique") -LegalHoldsPolicyCreateError.team_exceeded_legal_hold_quota = LegalHoldsPolicyCreateError( - "team_exceeded_legal_hold_quota" -) -LegalHoldsPolicyCreateError.invalid_date = LegalHoldsPolicyCreateError("invalid_date") +LegalHoldsPolicyCreateError.start_date_is_later_than_end_date = LegalHoldsPolicyCreateError('start_date_is_later_than_end_date') +LegalHoldsPolicyCreateError.empty_members_list = LegalHoldsPolicyCreateError('empty_members_list') +LegalHoldsPolicyCreateError.invalid_members = LegalHoldsPolicyCreateError('invalid_members') +LegalHoldsPolicyCreateError.number_of_users_on_hold_is_greater_than_hold_limitation = LegalHoldsPolicyCreateError('number_of_users_on_hold_is_greater_than_hold_limitation') +LegalHoldsPolicyCreateError.transient_error = LegalHoldsPolicyCreateError('transient_error') +LegalHoldsPolicyCreateError.name_must_be_unique = LegalHoldsPolicyCreateError('name_must_be_unique') +LegalHoldsPolicyCreateError.team_exceeded_legal_hold_quota = LegalHoldsPolicyCreateError('team_exceeded_legal_hold_quota') +LegalHoldsPolicyCreateError.invalid_date = LegalHoldsPolicyCreateError('invalid_date') LegalHoldsPolicyReleaseArg.id.validator = LegalHoldId_validator -LegalHoldsPolicyReleaseArg._all_field_names_ = set(["id"]) -LegalHoldsPolicyReleaseArg._all_fields_ = [("id", LegalHoldsPolicyReleaseArg.id.validator)] +LegalHoldsPolicyReleaseArg._all_field_names_ = set(['id']) +LegalHoldsPolicyReleaseArg._all_fields_ = [('id', LegalHoldsPolicyReleaseArg.id.validator)] LegalHoldsPolicyReleaseError._legal_hold_performing_another_operation_validator = bv.Void() LegalHoldsPolicyReleaseError._legal_hold_already_releasing_validator = bv.Void() LegalHoldsPolicyReleaseError._legal_hold_policy_not_found_validator = bv.Void() LegalHoldsPolicyReleaseError._tagmap = { - "legal_hold_performing_another_operation": LegalHoldsPolicyReleaseError._legal_hold_performing_another_operation_validator, - "legal_hold_already_releasing": LegalHoldsPolicyReleaseError._legal_hold_already_releasing_validator, - "legal_hold_policy_not_found": LegalHoldsPolicyReleaseError._legal_hold_policy_not_found_validator, + 'legal_hold_performing_another_operation': LegalHoldsPolicyReleaseError._legal_hold_performing_another_operation_validator, + 'legal_hold_already_releasing': LegalHoldsPolicyReleaseError._legal_hold_already_releasing_validator, + 'legal_hold_policy_not_found': LegalHoldsPolicyReleaseError._legal_hold_policy_not_found_validator, } LegalHoldsPolicyReleaseError._tagmap.update(LegalHoldsError._tagmap) -LegalHoldsPolicyReleaseError.legal_hold_performing_another_operation = LegalHoldsPolicyReleaseError( - "legal_hold_performing_another_operation" -) -LegalHoldsPolicyReleaseError.legal_hold_already_releasing = LegalHoldsPolicyReleaseError( - "legal_hold_already_releasing" -) -LegalHoldsPolicyReleaseError.legal_hold_policy_not_found = LegalHoldsPolicyReleaseError( - "legal_hold_policy_not_found" -) +LegalHoldsPolicyReleaseError.legal_hold_performing_another_operation = LegalHoldsPolicyReleaseError('legal_hold_performing_another_operation') +LegalHoldsPolicyReleaseError.legal_hold_already_releasing = LegalHoldsPolicyReleaseError('legal_hold_already_releasing') +LegalHoldsPolicyReleaseError.legal_hold_policy_not_found = LegalHoldsPolicyReleaseError('legal_hold_policy_not_found') LegalHoldsPolicyUpdateArg.id.validator = LegalHoldId_validator LegalHoldsPolicyUpdateArg.name.validator = bv.Nullable(LegalHoldPolicyName_validator) LegalHoldsPolicyUpdateArg.description.validator = bv.Nullable(LegalHoldPolicyDescription_validator) -LegalHoldsPolicyUpdateArg.members.validator = bv.Nullable( - bv.List(team_common.TeamMemberId_validator) -) -LegalHoldsPolicyUpdateArg._all_field_names_ = set( - [ - "id", - "name", - "description", - "members", - ] -) +LegalHoldsPolicyUpdateArg.members.validator = bv.Nullable(bv.List(team_common.TeamMemberId_validator)) +LegalHoldsPolicyUpdateArg._all_field_names_ = set([ + 'id', + 'name', + 'description', + 'members', +]) LegalHoldsPolicyUpdateArg._all_fields_ = [ - ("id", LegalHoldsPolicyUpdateArg.id.validator), - ("name", LegalHoldsPolicyUpdateArg.name.validator), - ("description", LegalHoldsPolicyUpdateArg.description.validator), - ("members", LegalHoldsPolicyUpdateArg.members.validator), + ('id', LegalHoldsPolicyUpdateArg.id.validator), + ('name', LegalHoldsPolicyUpdateArg.name.validator), + ('description', LegalHoldsPolicyUpdateArg.description.validator), + ('members', LegalHoldsPolicyUpdateArg.members.validator), ] LegalHoldsPolicyUpdateError._transient_error_validator = bv.Void() LegalHoldsPolicyUpdateError._inactive_legal_hold_validator = bv.Void() LegalHoldsPolicyUpdateError._legal_hold_performing_another_operation_validator = bv.Void() LegalHoldsPolicyUpdateError._invalid_members_validator = bv.Void() -LegalHoldsPolicyUpdateError._number_of_users_on_hold_is_greater_than_hold_limitation_validator = ( - bv.Void() -) +LegalHoldsPolicyUpdateError._number_of_users_on_hold_is_greater_than_hold_limitation_validator = bv.Void() LegalHoldsPolicyUpdateError._empty_members_list_validator = bv.Void() LegalHoldsPolicyUpdateError._name_must_be_unique_validator = bv.Void() LegalHoldsPolicyUpdateError._legal_hold_policy_not_found_validator = bv.Void() LegalHoldsPolicyUpdateError._tagmap = { - "transient_error": LegalHoldsPolicyUpdateError._transient_error_validator, - "inactive_legal_hold": LegalHoldsPolicyUpdateError._inactive_legal_hold_validator, - "legal_hold_performing_another_operation": LegalHoldsPolicyUpdateError._legal_hold_performing_another_operation_validator, - "invalid_members": LegalHoldsPolicyUpdateError._invalid_members_validator, - "number_of_users_on_hold_is_greater_than_hold_limitation": LegalHoldsPolicyUpdateError._number_of_users_on_hold_is_greater_than_hold_limitation_validator, - "empty_members_list": LegalHoldsPolicyUpdateError._empty_members_list_validator, - "name_must_be_unique": LegalHoldsPolicyUpdateError._name_must_be_unique_validator, - "legal_hold_policy_not_found": LegalHoldsPolicyUpdateError._legal_hold_policy_not_found_validator, + 'transient_error': LegalHoldsPolicyUpdateError._transient_error_validator, + 'inactive_legal_hold': LegalHoldsPolicyUpdateError._inactive_legal_hold_validator, + 'legal_hold_performing_another_operation': LegalHoldsPolicyUpdateError._legal_hold_performing_another_operation_validator, + 'invalid_members': LegalHoldsPolicyUpdateError._invalid_members_validator, + 'number_of_users_on_hold_is_greater_than_hold_limitation': LegalHoldsPolicyUpdateError._number_of_users_on_hold_is_greater_than_hold_limitation_validator, + 'empty_members_list': LegalHoldsPolicyUpdateError._empty_members_list_validator, + 'name_must_be_unique': LegalHoldsPolicyUpdateError._name_must_be_unique_validator, + 'legal_hold_policy_not_found': LegalHoldsPolicyUpdateError._legal_hold_policy_not_found_validator, } LegalHoldsPolicyUpdateError._tagmap.update(LegalHoldsError._tagmap) -LegalHoldsPolicyUpdateError.transient_error = LegalHoldsPolicyUpdateError("transient_error") -LegalHoldsPolicyUpdateError.inactive_legal_hold = LegalHoldsPolicyUpdateError("inactive_legal_hold") -LegalHoldsPolicyUpdateError.legal_hold_performing_another_operation = LegalHoldsPolicyUpdateError( - "legal_hold_performing_another_operation" -) -LegalHoldsPolicyUpdateError.invalid_members = LegalHoldsPolicyUpdateError("invalid_members") -LegalHoldsPolicyUpdateError.number_of_users_on_hold_is_greater_than_hold_limitation = ( - LegalHoldsPolicyUpdateError("number_of_users_on_hold_is_greater_than_hold_limitation") -) -LegalHoldsPolicyUpdateError.empty_members_list = LegalHoldsPolicyUpdateError("empty_members_list") -LegalHoldsPolicyUpdateError.name_must_be_unique = LegalHoldsPolicyUpdateError("name_must_be_unique") -LegalHoldsPolicyUpdateError.legal_hold_policy_not_found = LegalHoldsPolicyUpdateError( - "legal_hold_policy_not_found" -) +LegalHoldsPolicyUpdateError.transient_error = LegalHoldsPolicyUpdateError('transient_error') +LegalHoldsPolicyUpdateError.inactive_legal_hold = LegalHoldsPolicyUpdateError('inactive_legal_hold') +LegalHoldsPolicyUpdateError.legal_hold_performing_another_operation = LegalHoldsPolicyUpdateError('legal_hold_performing_another_operation') +LegalHoldsPolicyUpdateError.invalid_members = LegalHoldsPolicyUpdateError('invalid_members') +LegalHoldsPolicyUpdateError.number_of_users_on_hold_is_greater_than_hold_limitation = LegalHoldsPolicyUpdateError('number_of_users_on_hold_is_greater_than_hold_limitation') +LegalHoldsPolicyUpdateError.empty_members_list = LegalHoldsPolicyUpdateError('empty_members_list') +LegalHoldsPolicyUpdateError.name_must_be_unique = LegalHoldsPolicyUpdateError('name_must_be_unique') +LegalHoldsPolicyUpdateError.legal_hold_policy_not_found = LegalHoldsPolicyUpdateError('legal_hold_policy_not_found') ListMemberAppsArg.team_member_id.validator = bv.String() -ListMemberAppsArg._all_field_names_ = set(["team_member_id"]) -ListMemberAppsArg._all_fields_ = [("team_member_id", ListMemberAppsArg.team_member_id.validator)] +ListMemberAppsArg._all_field_names_ = set(['team_member_id']) +ListMemberAppsArg._all_fields_ = [('team_member_id', ListMemberAppsArg.team_member_id.validator)] ListMemberAppsError._member_not_found_validator = bv.Void() ListMemberAppsError._other_validator = bv.Void() ListMemberAppsError._tagmap = { - "member_not_found": ListMemberAppsError._member_not_found_validator, - "other": ListMemberAppsError._other_validator, + 'member_not_found': ListMemberAppsError._member_not_found_validator, + 'other': ListMemberAppsError._other_validator, } -ListMemberAppsError.member_not_found = ListMemberAppsError("member_not_found") -ListMemberAppsError.other = ListMemberAppsError("other") +ListMemberAppsError.member_not_found = ListMemberAppsError('member_not_found') +ListMemberAppsError.other = ListMemberAppsError('other') ListMemberAppsResult.linked_api_apps.validator = bv.List(ApiApp_validator) -ListMemberAppsResult._all_field_names_ = set(["linked_api_apps"]) -ListMemberAppsResult._all_fields_ = [ - ("linked_api_apps", ListMemberAppsResult.linked_api_apps.validator) -] +ListMemberAppsResult._all_field_names_ = set(['linked_api_apps']) +ListMemberAppsResult._all_fields_ = [('linked_api_apps', ListMemberAppsResult.linked_api_apps.validator)] ListMemberDevicesArg.team_member_id.validator = bv.String() ListMemberDevicesArg.include_web_sessions.validator = bv.Boolean() ListMemberDevicesArg.include_desktop_clients.validator = bv.Boolean() ListMemberDevicesArg.include_mobile_clients.validator = bv.Boolean() -ListMemberDevicesArg._all_field_names_ = set( - [ - "team_member_id", - "include_web_sessions", - "include_desktop_clients", - "include_mobile_clients", - ] -) +ListMemberDevicesArg._all_field_names_ = set([ + 'team_member_id', + 'include_web_sessions', + 'include_desktop_clients', + 'include_mobile_clients', +]) ListMemberDevicesArg._all_fields_ = [ - ("team_member_id", ListMemberDevicesArg.team_member_id.validator), - ("include_web_sessions", ListMemberDevicesArg.include_web_sessions.validator), - ("include_desktop_clients", ListMemberDevicesArg.include_desktop_clients.validator), - ("include_mobile_clients", ListMemberDevicesArg.include_mobile_clients.validator), + ('team_member_id', ListMemberDevicesArg.team_member_id.validator), + ('include_web_sessions', ListMemberDevicesArg.include_web_sessions.validator), + ('include_desktop_clients', ListMemberDevicesArg.include_desktop_clients.validator), + ('include_mobile_clients', ListMemberDevicesArg.include_mobile_clients.validator), ] ListMemberDevicesError._member_not_found_validator = bv.Void() ListMemberDevicesError._other_validator = bv.Void() ListMemberDevicesError._tagmap = { - "member_not_found": ListMemberDevicesError._member_not_found_validator, - "other": ListMemberDevicesError._other_validator, + 'member_not_found': ListMemberDevicesError._member_not_found_validator, + 'other': ListMemberDevicesError._other_validator, } -ListMemberDevicesError.member_not_found = ListMemberDevicesError("member_not_found") -ListMemberDevicesError.other = ListMemberDevicesError("other") - -ListMemberDevicesResult.active_web_sessions.validator = bv.Nullable( - bv.List(ActiveWebSession_validator) -) -ListMemberDevicesResult.desktop_client_sessions.validator = bv.Nullable( - bv.List(DesktopClientSession_validator) -) -ListMemberDevicesResult.mobile_client_sessions.validator = bv.Nullable( - bv.List(MobileClientSession_validator) -) -ListMemberDevicesResult._all_field_names_ = set( - [ - "active_web_sessions", - "desktop_client_sessions", - "mobile_client_sessions", - ] -) +ListMemberDevicesError.member_not_found = ListMemberDevicesError('member_not_found') +ListMemberDevicesError.other = ListMemberDevicesError('other') + +ListMemberDevicesResult.active_web_sessions.validator = bv.Nullable(bv.List(ActiveWebSession_validator)) +ListMemberDevicesResult.desktop_client_sessions.validator = bv.Nullable(bv.List(DesktopClientSession_validator)) +ListMemberDevicesResult.mobile_client_sessions.validator = bv.Nullable(bv.List(MobileClientSession_validator)) +ListMemberDevicesResult._all_field_names_ = set([ + 'active_web_sessions', + 'desktop_client_sessions', + 'mobile_client_sessions', +]) ListMemberDevicesResult._all_fields_ = [ - ("active_web_sessions", ListMemberDevicesResult.active_web_sessions.validator), - ( - "desktop_client_sessions", - ListMemberDevicesResult.desktop_client_sessions.validator, - ), - ( - "mobile_client_sessions", - ListMemberDevicesResult.mobile_client_sessions.validator, - ), + ('active_web_sessions', ListMemberDevicesResult.active_web_sessions.validator), + ('desktop_client_sessions', ListMemberDevicesResult.desktop_client_sessions.validator), + ('mobile_client_sessions', ListMemberDevicesResult.mobile_client_sessions.validator), ] ListMembersAppsArg.cursor.validator = bv.Nullable(bv.String()) -ListMembersAppsArg._all_field_names_ = set(["cursor"]) -ListMembersAppsArg._all_fields_ = [("cursor", ListMembersAppsArg.cursor.validator)] +ListMembersAppsArg._all_field_names_ = set(['cursor']) +ListMembersAppsArg._all_fields_ = [('cursor', ListMembersAppsArg.cursor.validator)] ListMembersAppsError._reset_validator = bv.Void() ListMembersAppsError._other_validator = bv.Void() ListMembersAppsError._tagmap = { - "reset": ListMembersAppsError._reset_validator, - "other": ListMembersAppsError._other_validator, + 'reset': ListMembersAppsError._reset_validator, + 'other': ListMembersAppsError._other_validator, } -ListMembersAppsError.reset = ListMembersAppsError("reset") -ListMembersAppsError.other = ListMembersAppsError("other") +ListMembersAppsError.reset = ListMembersAppsError('reset') +ListMembersAppsError.other = ListMembersAppsError('other') ListMembersAppsResult.apps.validator = bv.List(MemberLinkedApps_validator) ListMembersAppsResult.has_more.validator = bv.Boolean() ListMembersAppsResult.cursor.validator = bv.Nullable(bv.String()) -ListMembersAppsResult._all_field_names_ = set( - [ - "apps", - "has_more", - "cursor", - ] -) +ListMembersAppsResult._all_field_names_ = set([ + 'apps', + 'has_more', + 'cursor', +]) ListMembersAppsResult._all_fields_ = [ - ("apps", ListMembersAppsResult.apps.validator), - ("has_more", ListMembersAppsResult.has_more.validator), - ("cursor", ListMembersAppsResult.cursor.validator), + ('apps', ListMembersAppsResult.apps.validator), + ('has_more', ListMembersAppsResult.has_more.validator), + ('cursor', ListMembersAppsResult.cursor.validator), ] ListMembersDevicesArg.cursor.validator = bv.Nullable(bv.String()) ListMembersDevicesArg.include_web_sessions.validator = bv.Boolean() ListMembersDevicesArg.include_desktop_clients.validator = bv.Boolean() ListMembersDevicesArg.include_mobile_clients.validator = bv.Boolean() -ListMembersDevicesArg._all_field_names_ = set( - [ - "cursor", - "include_web_sessions", - "include_desktop_clients", - "include_mobile_clients", - ] -) +ListMembersDevicesArg._all_field_names_ = set([ + 'cursor', + 'include_web_sessions', + 'include_desktop_clients', + 'include_mobile_clients', +]) ListMembersDevicesArg._all_fields_ = [ - ("cursor", ListMembersDevicesArg.cursor.validator), - ("include_web_sessions", ListMembersDevicesArg.include_web_sessions.validator), - ( - "include_desktop_clients", - ListMembersDevicesArg.include_desktop_clients.validator, - ), - ("include_mobile_clients", ListMembersDevicesArg.include_mobile_clients.validator), + ('cursor', ListMembersDevicesArg.cursor.validator), + ('include_web_sessions', ListMembersDevicesArg.include_web_sessions.validator), + ('include_desktop_clients', ListMembersDevicesArg.include_desktop_clients.validator), + ('include_mobile_clients', ListMembersDevicesArg.include_mobile_clients.validator), ] ListMembersDevicesError._reset_validator = bv.Void() ListMembersDevicesError._other_validator = bv.Void() ListMembersDevicesError._tagmap = { - "reset": ListMembersDevicesError._reset_validator, - "other": ListMembersDevicesError._other_validator, + 'reset': ListMembersDevicesError._reset_validator, + 'other': ListMembersDevicesError._other_validator, } -ListMembersDevicesError.reset = ListMembersDevicesError("reset") -ListMembersDevicesError.other = ListMembersDevicesError("other") +ListMembersDevicesError.reset = ListMembersDevicesError('reset') +ListMembersDevicesError.other = ListMembersDevicesError('other') ListMembersDevicesResult.devices.validator = bv.List(MemberDevices_validator) ListMembersDevicesResult.has_more.validator = bv.Boolean() ListMembersDevicesResult.cursor.validator = bv.Nullable(bv.String()) -ListMembersDevicesResult._all_field_names_ = set( - [ - "devices", - "has_more", - "cursor", - ] -) +ListMembersDevicesResult._all_field_names_ = set([ + 'devices', + 'has_more', + 'cursor', +]) ListMembersDevicesResult._all_fields_ = [ - ("devices", ListMembersDevicesResult.devices.validator), - ("has_more", ListMembersDevicesResult.has_more.validator), - ("cursor", ListMembersDevicesResult.cursor.validator), + ('devices', ListMembersDevicesResult.devices.validator), + ('has_more', ListMembersDevicesResult.has_more.validator), + ('cursor', ListMembersDevicesResult.cursor.validator), ] ListTeamAppsArg.cursor.validator = bv.Nullable(bv.String()) -ListTeamAppsArg._all_field_names_ = set(["cursor"]) -ListTeamAppsArg._all_fields_ = [("cursor", ListTeamAppsArg.cursor.validator)] +ListTeamAppsArg._all_field_names_ = set(['cursor']) +ListTeamAppsArg._all_fields_ = [('cursor', ListTeamAppsArg.cursor.validator)] ListTeamAppsError._reset_validator = bv.Void() ListTeamAppsError._other_validator = bv.Void() ListTeamAppsError._tagmap = { - "reset": ListTeamAppsError._reset_validator, - "other": ListTeamAppsError._other_validator, + 'reset': ListTeamAppsError._reset_validator, + 'other': ListTeamAppsError._other_validator, } -ListTeamAppsError.reset = ListTeamAppsError("reset") -ListTeamAppsError.other = ListTeamAppsError("other") +ListTeamAppsError.reset = ListTeamAppsError('reset') +ListTeamAppsError.other = ListTeamAppsError('other') ListTeamAppsResult.apps.validator = bv.List(MemberLinkedApps_validator) ListTeamAppsResult.has_more.validator = bv.Boolean() ListTeamAppsResult.cursor.validator = bv.Nullable(bv.String()) -ListTeamAppsResult._all_field_names_ = set( - [ - "apps", - "has_more", - "cursor", - ] -) +ListTeamAppsResult._all_field_names_ = set([ + 'apps', + 'has_more', + 'cursor', +]) ListTeamAppsResult._all_fields_ = [ - ("apps", ListTeamAppsResult.apps.validator), - ("has_more", ListTeamAppsResult.has_more.validator), - ("cursor", ListTeamAppsResult.cursor.validator), + ('apps', ListTeamAppsResult.apps.validator), + ('has_more', ListTeamAppsResult.has_more.validator), + ('cursor', ListTeamAppsResult.cursor.validator), ] ListTeamDevicesArg.cursor.validator = bv.Nullable(bv.String()) ListTeamDevicesArg.include_web_sessions.validator = bv.Boolean() ListTeamDevicesArg.include_desktop_clients.validator = bv.Boolean() ListTeamDevicesArg.include_mobile_clients.validator = bv.Boolean() -ListTeamDevicesArg._all_field_names_ = set( - [ - "cursor", - "include_web_sessions", - "include_desktop_clients", - "include_mobile_clients", - ] -) +ListTeamDevicesArg._all_field_names_ = set([ + 'cursor', + 'include_web_sessions', + 'include_desktop_clients', + 'include_mobile_clients', +]) ListTeamDevicesArg._all_fields_ = [ - ("cursor", ListTeamDevicesArg.cursor.validator), - ("include_web_sessions", ListTeamDevicesArg.include_web_sessions.validator), - ("include_desktop_clients", ListTeamDevicesArg.include_desktop_clients.validator), - ("include_mobile_clients", ListTeamDevicesArg.include_mobile_clients.validator), + ('cursor', ListTeamDevicesArg.cursor.validator), + ('include_web_sessions', ListTeamDevicesArg.include_web_sessions.validator), + ('include_desktop_clients', ListTeamDevicesArg.include_desktop_clients.validator), + ('include_mobile_clients', ListTeamDevicesArg.include_mobile_clients.validator), ] ListTeamDevicesError._reset_validator = bv.Void() ListTeamDevicesError._other_validator = bv.Void() ListTeamDevicesError._tagmap = { - "reset": ListTeamDevicesError._reset_validator, - "other": ListTeamDevicesError._other_validator, + 'reset': ListTeamDevicesError._reset_validator, + 'other': ListTeamDevicesError._other_validator, } -ListTeamDevicesError.reset = ListTeamDevicesError("reset") -ListTeamDevicesError.other = ListTeamDevicesError("other") +ListTeamDevicesError.reset = ListTeamDevicesError('reset') +ListTeamDevicesError.other = ListTeamDevicesError('other') ListTeamDevicesResult.devices.validator = bv.List(MemberDevices_validator) ListTeamDevicesResult.has_more.validator = bv.Boolean() ListTeamDevicesResult.cursor.validator = bv.Nullable(bv.String()) -ListTeamDevicesResult._all_field_names_ = set( - [ - "devices", - "has_more", - "cursor", - ] -) +ListTeamDevicesResult._all_field_names_ = set([ + 'devices', + 'has_more', + 'cursor', +]) ListTeamDevicesResult._all_fields_ = [ - ("devices", ListTeamDevicesResult.devices.validator), - ("has_more", ListTeamDevicesResult.has_more.validator), - ("cursor", ListTeamDevicesResult.cursor.validator), + ('devices', ListTeamDevicesResult.devices.validator), + ('has_more', ListTeamDevicesResult.has_more.validator), + ('cursor', ListTeamDevicesResult.cursor.validator), ] MemberAccess.user.validator = UserSelectorArg_validator MemberAccess.access_type.validator = GroupAccessType_validator -MemberAccess._all_field_names_ = set( - [ - "user", - "access_type", - ] -) +MemberAccess._all_field_names_ = set([ + 'user', + 'access_type', +]) MemberAccess._all_fields_ = [ - ("user", MemberAccess.user.validator), - ("access_type", MemberAccess.access_type.validator), + ('user', MemberAccess.user.validator), + ('access_type', MemberAccess.access_type.validator), ] MemberAddArgBase.member_email.validator = common.EmailAddress_validator @@ -17108,30 +15987,28 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): MemberAddArgBase.member_persistent_id.validator = bv.Nullable(bv.String()) MemberAddArgBase.send_welcome_email.validator = bv.Boolean() MemberAddArgBase.is_directory_restricted.validator = bv.Nullable(bv.Boolean()) -MemberAddArgBase._all_field_names_ = set( - [ - "member_email", - "member_given_name", - "member_surname", - "member_external_id", - "member_persistent_id", - "send_welcome_email", - "is_directory_restricted", - ] -) +MemberAddArgBase._all_field_names_ = set([ + 'member_email', + 'member_given_name', + 'member_surname', + 'member_external_id', + 'member_persistent_id', + 'send_welcome_email', + 'is_directory_restricted', +]) MemberAddArgBase._all_fields_ = [ - ("member_email", MemberAddArgBase.member_email.validator), - ("member_given_name", MemberAddArgBase.member_given_name.validator), - ("member_surname", MemberAddArgBase.member_surname.validator), - ("member_external_id", MemberAddArgBase.member_external_id.validator), - ("member_persistent_id", MemberAddArgBase.member_persistent_id.validator), - ("send_welcome_email", MemberAddArgBase.send_welcome_email.validator), - ("is_directory_restricted", MemberAddArgBase.is_directory_restricted.validator), + ('member_email', MemberAddArgBase.member_email.validator), + ('member_given_name', MemberAddArgBase.member_given_name.validator), + ('member_surname', MemberAddArgBase.member_surname.validator), + ('member_external_id', MemberAddArgBase.member_external_id.validator), + ('member_persistent_id', MemberAddArgBase.member_persistent_id.validator), + ('send_welcome_email', MemberAddArgBase.send_welcome_email.validator), + ('is_directory_restricted', MemberAddArgBase.is_directory_restricted.validator), ] MemberAddArg.role.validator = AdminTier_validator -MemberAddArg._all_field_names_ = MemberAddArgBase._all_field_names_.union(set(["role"])) -MemberAddArg._all_fields_ = MemberAddArgBase._all_fields_ + [("role", MemberAddArg.role.validator)] +MemberAddArg._all_field_names_ = MemberAddArgBase._all_field_names_.union(set(['role'])) +MemberAddArg._all_fields_ = MemberAddArgBase._all_fields_ + [('role', MemberAddArg.role.validator)] MemberAddResultBase._team_license_limit_validator = common.EmailAddress_validator MemberAddResultBase._free_team_member_limit_reached_validator = common.EmailAddress_validator @@ -17144,70 +16021,64 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): MemberAddResultBase._persistent_id_disabled_validator = common.EmailAddress_validator MemberAddResultBase._user_creation_failed_validator = common.EmailAddress_validator MemberAddResultBase._tagmap = { - "team_license_limit": MemberAddResultBase._team_license_limit_validator, - "free_team_member_limit_reached": MemberAddResultBase._free_team_member_limit_reached_validator, - "user_already_on_team": MemberAddResultBase._user_already_on_team_validator, - "user_on_another_team": MemberAddResultBase._user_on_another_team_validator, - "user_already_paired": MemberAddResultBase._user_already_paired_validator, - "user_migration_failed": MemberAddResultBase._user_migration_failed_validator, - "duplicate_external_member_id": MemberAddResultBase._duplicate_external_member_id_validator, - "duplicate_member_persistent_id": MemberAddResultBase._duplicate_member_persistent_id_validator, - "persistent_id_disabled": MemberAddResultBase._persistent_id_disabled_validator, - "user_creation_failed": MemberAddResultBase._user_creation_failed_validator, + 'team_license_limit': MemberAddResultBase._team_license_limit_validator, + 'free_team_member_limit_reached': MemberAddResultBase._free_team_member_limit_reached_validator, + 'user_already_on_team': MemberAddResultBase._user_already_on_team_validator, + 'user_on_another_team': MemberAddResultBase._user_on_another_team_validator, + 'user_already_paired': MemberAddResultBase._user_already_paired_validator, + 'user_migration_failed': MemberAddResultBase._user_migration_failed_validator, + 'duplicate_external_member_id': MemberAddResultBase._duplicate_external_member_id_validator, + 'duplicate_member_persistent_id': MemberAddResultBase._duplicate_member_persistent_id_validator, + 'persistent_id_disabled': MemberAddResultBase._persistent_id_disabled_validator, + 'user_creation_failed': MemberAddResultBase._user_creation_failed_validator, } MemberAddResult._success_validator = TeamMemberInfo_validator MemberAddResult._tagmap = { - "success": MemberAddResult._success_validator, + 'success': MemberAddResult._success_validator, } MemberAddResult._tagmap.update(MemberAddResultBase._tagmap) MemberAddV2Arg.role_ids.validator = bv.Nullable(bv.List(TeamMemberRoleId_validator, max_items=1)) -MemberAddV2Arg._all_field_names_ = MemberAddArgBase._all_field_names_.union(set(["role_ids"])) -MemberAddV2Arg._all_fields_ = MemberAddArgBase._all_fields_ + [ - ("role_ids", MemberAddV2Arg.role_ids.validator) -] +MemberAddV2Arg._all_field_names_ = MemberAddArgBase._all_field_names_.union(set(['role_ids'])) +MemberAddV2Arg._all_fields_ = MemberAddArgBase._all_fields_ + [('role_ids', MemberAddV2Arg.role_ids.validator)] MemberAddV2Result._success_validator = TeamMemberInfoV2_validator MemberAddV2Result._other_validator = bv.Void() MemberAddV2Result._tagmap = { - "success": MemberAddV2Result._success_validator, - "other": MemberAddV2Result._other_validator, + 'success': MemberAddV2Result._success_validator, + 'other': MemberAddV2Result._other_validator, } MemberAddV2Result._tagmap.update(MemberAddResultBase._tagmap) -MemberAddV2Result.other = MemberAddV2Result("other") +MemberAddV2Result.other = MemberAddV2Result('other') MemberDevices.team_member_id.validator = bv.String() MemberDevices.web_sessions.validator = bv.Nullable(bv.List(ActiveWebSession_validator)) MemberDevices.desktop_clients.validator = bv.Nullable(bv.List(DesktopClientSession_validator)) MemberDevices.mobile_clients.validator = bv.Nullable(bv.List(MobileClientSession_validator)) -MemberDevices._all_field_names_ = set( - [ - "team_member_id", - "web_sessions", - "desktop_clients", - "mobile_clients", - ] -) +MemberDevices._all_field_names_ = set([ + 'team_member_id', + 'web_sessions', + 'desktop_clients', + 'mobile_clients', +]) MemberDevices._all_fields_ = [ - ("team_member_id", MemberDevices.team_member_id.validator), - ("web_sessions", MemberDevices.web_sessions.validator), - ("desktop_clients", MemberDevices.desktop_clients.validator), - ("mobile_clients", MemberDevices.mobile_clients.validator), + ('team_member_id', MemberDevices.team_member_id.validator), + ('web_sessions', MemberDevices.web_sessions.validator), + ('desktop_clients', MemberDevices.desktop_clients.validator), + ('mobile_clients', MemberDevices.mobile_clients.validator), ] MemberLinkedApps.team_member_id.validator = bv.String() MemberLinkedApps.linked_api_apps.validator = bv.List(ApiApp_validator) -MemberLinkedApps._all_field_names_ = set( - [ - "team_member_id", - "linked_api_apps", - ] -) +MemberLinkedApps._all_field_names_ = set([ + 'team_member_id', + 'linked_api_apps', +]) MemberLinkedApps._all_fields_ = [ - ("team_member_id", MemberLinkedApps.team_member_id.validator), - ("linked_api_apps", MemberLinkedApps.linked_api_apps.validator), + ('team_member_id', MemberLinkedApps.team_member_id.validator), + ('linked_api_apps', MemberLinkedApps.linked_api_apps.validator), ] MemberProfile.team_member_id.validator = team_common.TeamMemberId_validator @@ -17215,9 +16086,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): MemberProfile.account_id.validator = bv.Nullable(users_common.AccountId_validator) MemberProfile.email.validator = bv.String() MemberProfile.email_verified.validator = bv.Boolean() -MemberProfile.secondary_emails.validator = bv.Nullable( - bv.List(secondary_emails.SecondaryEmail_validator) -) +MemberProfile.secondary_emails.validator = bv.Nullable(bv.List(secondary_emails.SecondaryEmail_validator)) MemberProfile.status.validator = TeamMemberStatus_validator MemberProfile.name.validator = users.Name_validator MemberProfile.membership_type.validator = TeamMembershipType_validator @@ -17227,73 +16096,69 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): MemberProfile.persistent_id.validator = bv.Nullable(bv.String()) MemberProfile.is_directory_restricted.validator = bv.Nullable(bv.Boolean()) MemberProfile.profile_photo_url.validator = bv.Nullable(bv.String()) -MemberProfile._all_field_names_ = set( - [ - "team_member_id", - "external_id", - "account_id", - "email", - "email_verified", - "secondary_emails", - "status", - "name", - "membership_type", - "invited_on", - "joined_on", - "suspended_on", - "persistent_id", - "is_directory_restricted", - "profile_photo_url", - ] -) +MemberProfile._all_field_names_ = set([ + 'team_member_id', + 'external_id', + 'account_id', + 'email', + 'email_verified', + 'secondary_emails', + 'status', + 'name', + 'membership_type', + 'invited_on', + 'joined_on', + 'suspended_on', + 'persistent_id', + 'is_directory_restricted', + 'profile_photo_url', +]) MemberProfile._all_fields_ = [ - ("team_member_id", MemberProfile.team_member_id.validator), - ("external_id", MemberProfile.external_id.validator), - ("account_id", MemberProfile.account_id.validator), - ("email", MemberProfile.email.validator), - ("email_verified", MemberProfile.email_verified.validator), - ("secondary_emails", MemberProfile.secondary_emails.validator), - ("status", MemberProfile.status.validator), - ("name", MemberProfile.name.validator), - ("membership_type", MemberProfile.membership_type.validator), - ("invited_on", MemberProfile.invited_on.validator), - ("joined_on", MemberProfile.joined_on.validator), - ("suspended_on", MemberProfile.suspended_on.validator), - ("persistent_id", MemberProfile.persistent_id.validator), - ("is_directory_restricted", MemberProfile.is_directory_restricted.validator), - ("profile_photo_url", MemberProfile.profile_photo_url.validator), + ('team_member_id', MemberProfile.team_member_id.validator), + ('external_id', MemberProfile.external_id.validator), + ('account_id', MemberProfile.account_id.validator), + ('email', MemberProfile.email.validator), + ('email_verified', MemberProfile.email_verified.validator), + ('secondary_emails', MemberProfile.secondary_emails.validator), + ('status', MemberProfile.status.validator), + ('name', MemberProfile.name.validator), + ('membership_type', MemberProfile.membership_type.validator), + ('invited_on', MemberProfile.invited_on.validator), + ('joined_on', MemberProfile.joined_on.validator), + ('suspended_on', MemberProfile.suspended_on.validator), + ('persistent_id', MemberProfile.persistent_id.validator), + ('is_directory_restricted', MemberProfile.is_directory_restricted.validator), + ('profile_photo_url', MemberProfile.profile_photo_url.validator), ] UserSelectorError._user_not_found_validator = bv.Void() UserSelectorError._tagmap = { - "user_not_found": UserSelectorError._user_not_found_validator, + 'user_not_found': UserSelectorError._user_not_found_validator, } -UserSelectorError.user_not_found = UserSelectorError("user_not_found") +UserSelectorError.user_not_found = UserSelectorError('user_not_found') MemberSelectorError._user_not_in_team_validator = bv.Void() MemberSelectorError._tagmap = { - "user_not_in_team": MemberSelectorError._user_not_in_team_validator, + 'user_not_in_team': MemberSelectorError._user_not_in_team_validator, } MemberSelectorError._tagmap.update(UserSelectorError._tagmap) -MemberSelectorError.user_not_in_team = MemberSelectorError("user_not_in_team") +MemberSelectorError.user_not_in_team = MemberSelectorError('user_not_in_team') MembersAddArgBase.force_async.validator = bv.Boolean() -MembersAddArgBase._all_field_names_ = set(["force_async"]) -MembersAddArgBase._all_fields_ = [("force_async", MembersAddArgBase.force_async.validator)] +MembersAddArgBase._all_field_names_ = set(['force_async']) +MembersAddArgBase._all_fields_ = [('force_async', MembersAddArgBase.force_async.validator)] MembersAddArg.new_members.validator = bv.List(MemberAddArg_validator) -MembersAddArg._all_field_names_ = MembersAddArgBase._all_field_names_.union(set(["new_members"])) -MembersAddArg._all_fields_ = MembersAddArgBase._all_fields_ + [ - ("new_members", MembersAddArg.new_members.validator) -] +MembersAddArg._all_field_names_ = MembersAddArgBase._all_field_names_.union(set(['new_members'])) +MembersAddArg._all_fields_ = MembersAddArgBase._all_fields_ + [('new_members', MembersAddArg.new_members.validator)] MembersAddJobStatus._complete_validator = bv.List(MemberAddResult_validator) MembersAddJobStatus._failed_validator = bv.String() MembersAddJobStatus._tagmap = { - "complete": MembersAddJobStatus._complete_validator, - "failed": MembersAddJobStatus._failed_validator, + 'complete': MembersAddJobStatus._complete_validator, + 'failed': MembersAddJobStatus._failed_validator, } MembersAddJobStatus._tagmap.update(async_.PollResultBase._tagmap) @@ -17301,295 +16166,259 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): MembersAddJobStatusV2Result._failed_validator = bv.String() MembersAddJobStatusV2Result._other_validator = bv.Void() MembersAddJobStatusV2Result._tagmap = { - "complete": MembersAddJobStatusV2Result._complete_validator, - "failed": MembersAddJobStatusV2Result._failed_validator, - "other": MembersAddJobStatusV2Result._other_validator, + 'complete': MembersAddJobStatusV2Result._complete_validator, + 'failed': MembersAddJobStatusV2Result._failed_validator, + 'other': MembersAddJobStatusV2Result._other_validator, } MembersAddJobStatusV2Result._tagmap.update(async_.PollResultBase._tagmap) -MembersAddJobStatusV2Result.other = MembersAddJobStatusV2Result("other") +MembersAddJobStatusV2Result.other = MembersAddJobStatusV2Result('other') MembersAddLaunch._complete_validator = bv.List(MemberAddResult_validator) MembersAddLaunch._tagmap = { - "complete": MembersAddLaunch._complete_validator, + 'complete': MembersAddLaunch._complete_validator, } MembersAddLaunch._tagmap.update(async_.LaunchResultBase._tagmap) MembersAddLaunchV2Result._complete_validator = bv.List(MemberAddV2Result_validator) MembersAddLaunchV2Result._other_validator = bv.Void() MembersAddLaunchV2Result._tagmap = { - "complete": MembersAddLaunchV2Result._complete_validator, - "other": MembersAddLaunchV2Result._other_validator, + 'complete': MembersAddLaunchV2Result._complete_validator, + 'other': MembersAddLaunchV2Result._other_validator, } MembersAddLaunchV2Result._tagmap.update(async_.LaunchResultBase._tagmap) -MembersAddLaunchV2Result.other = MembersAddLaunchV2Result("other") +MembersAddLaunchV2Result.other = MembersAddLaunchV2Result('other') MembersAddV2Arg.new_members.validator = bv.List(MemberAddV2Arg_validator) -MembersAddV2Arg._all_field_names_ = MembersAddArgBase._all_field_names_.union(set(["new_members"])) -MembersAddV2Arg._all_fields_ = MembersAddArgBase._all_fields_ + [ - ("new_members", MembersAddV2Arg.new_members.validator) -] +MembersAddV2Arg._all_field_names_ = MembersAddArgBase._all_field_names_.union(set(['new_members'])) +MembersAddV2Arg._all_fields_ = MembersAddArgBase._all_fields_ + [('new_members', MembersAddV2Arg.new_members.validator)] MembersDeactivateBaseArg.user.validator = UserSelectorArg_validator -MembersDeactivateBaseArg._all_field_names_ = set(["user"]) -MembersDeactivateBaseArg._all_fields_ = [("user", MembersDeactivateBaseArg.user.validator)] +MembersDeactivateBaseArg._all_field_names_ = set(['user']) +MembersDeactivateBaseArg._all_fields_ = [('user', MembersDeactivateBaseArg.user.validator)] MembersDataTransferArg.transfer_dest_id.validator = UserSelectorArg_validator MembersDataTransferArg.transfer_admin_id.validator = UserSelectorArg_validator -MembersDataTransferArg._all_field_names_ = MembersDeactivateBaseArg._all_field_names_.union( - set( - [ - "transfer_dest_id", - "transfer_admin_id", - ] - ) -) +MembersDataTransferArg._all_field_names_ = MembersDeactivateBaseArg._all_field_names_.union(set([ + 'transfer_dest_id', + 'transfer_admin_id', +])) MembersDataTransferArg._all_fields_ = MembersDeactivateBaseArg._all_fields_ + [ - ("transfer_dest_id", MembersDataTransferArg.transfer_dest_id.validator), - ("transfer_admin_id", MembersDataTransferArg.transfer_admin_id.validator), + ('transfer_dest_id', MembersDataTransferArg.transfer_dest_id.validator), + ('transfer_admin_id', MembersDataTransferArg.transfer_admin_id.validator), ] MembersDeactivateArg.wipe_data.validator = bv.Boolean() -MembersDeactivateArg._all_field_names_ = MembersDeactivateBaseArg._all_field_names_.union( - set(["wipe_data"]) -) -MembersDeactivateArg._all_fields_ = MembersDeactivateBaseArg._all_fields_ + [ - ("wipe_data", MembersDeactivateArg.wipe_data.validator) -] +MembersDeactivateArg._all_field_names_ = MembersDeactivateBaseArg._all_field_names_.union(set(['wipe_data'])) +MembersDeactivateArg._all_fields_ = MembersDeactivateBaseArg._all_fields_ + [('wipe_data', MembersDeactivateArg.wipe_data.validator)] MembersDeactivateError._user_not_in_team_validator = bv.Void() MembersDeactivateError._other_validator = bv.Void() MembersDeactivateError._tagmap = { - "user_not_in_team": MembersDeactivateError._user_not_in_team_validator, - "other": MembersDeactivateError._other_validator, + 'user_not_in_team': MembersDeactivateError._user_not_in_team_validator, + 'other': MembersDeactivateError._other_validator, } MembersDeactivateError._tagmap.update(UserSelectorError._tagmap) -MembersDeactivateError.user_not_in_team = MembersDeactivateError("user_not_in_team") -MembersDeactivateError.other = MembersDeactivateError("other") +MembersDeactivateError.user_not_in_team = MembersDeactivateError('user_not_in_team') +MembersDeactivateError.other = MembersDeactivateError('other') MembersPermanentlyDeleteFilesError._transfer_in_progress_validator = bv.Void() MembersPermanentlyDeleteFilesError._already_transferred_validator = bv.Void() MembersPermanentlyDeleteFilesError._already_transferred_or_deleted_validator = bv.Void() MembersPermanentlyDeleteFilesError._tagmap = { - "transfer_in_progress": MembersPermanentlyDeleteFilesError._transfer_in_progress_validator, - "already_transferred": MembersPermanentlyDeleteFilesError._already_transferred_validator, - "already_transferred_or_deleted": MembersPermanentlyDeleteFilesError._already_transferred_or_deleted_validator, + 'transfer_in_progress': MembersPermanentlyDeleteFilesError._transfer_in_progress_validator, + 'already_transferred': MembersPermanentlyDeleteFilesError._already_transferred_validator, + 'already_transferred_or_deleted': MembersPermanentlyDeleteFilesError._already_transferred_or_deleted_validator, } MembersPermanentlyDeleteFilesError._tagmap.update(MembersDeactivateError._tagmap) -MembersPermanentlyDeleteFilesError.transfer_in_progress = MembersPermanentlyDeleteFilesError( - "transfer_in_progress" -) -MembersPermanentlyDeleteFilesError.already_transferred = MembersPermanentlyDeleteFilesError( - "already_transferred" -) -MembersPermanentlyDeleteFilesError.already_transferred_or_deleted = ( - MembersPermanentlyDeleteFilesError("already_transferred_or_deleted") -) +MembersPermanentlyDeleteFilesError.transfer_in_progress = MembersPermanentlyDeleteFilesError('transfer_in_progress') +MembersPermanentlyDeleteFilesError.already_transferred = MembersPermanentlyDeleteFilesError('already_transferred') +MembersPermanentlyDeleteFilesError.already_transferred_or_deleted = MembersPermanentlyDeleteFilesError('already_transferred_or_deleted') MembersDeleteFormerMemberFilesError._user_not_removed_validator = bv.Void() MembersDeleteFormerMemberFilesError._tagmap = { - "user_not_removed": MembersDeleteFormerMemberFilesError._user_not_removed_validator, + 'user_not_removed': MembersDeleteFormerMemberFilesError._user_not_removed_validator, } MembersDeleteFormerMemberFilesError._tagmap.update(MembersPermanentlyDeleteFilesError._tagmap) -MembersDeleteFormerMemberFilesError.user_not_removed = MembersDeleteFormerMemberFilesError( - "user_not_removed" -) +MembersDeleteFormerMemberFilesError.user_not_removed = MembersDeleteFormerMemberFilesError('user_not_removed') MembersDeleteProfilePhotoArg.user.validator = UserSelectorArg_validator -MembersDeleteProfilePhotoArg._all_field_names_ = set(["user"]) -MembersDeleteProfilePhotoArg._all_fields_ = [("user", MembersDeleteProfilePhotoArg.user.validator)] +MembersDeleteProfilePhotoArg._all_field_names_ = set(['user']) +MembersDeleteProfilePhotoArg._all_fields_ = [('user', MembersDeleteProfilePhotoArg.user.validator)] MembersDeleteProfilePhotoError._set_profile_disallowed_validator = bv.Void() MembersDeleteProfilePhotoError._other_validator = bv.Void() MembersDeleteProfilePhotoError._tagmap = { - "set_profile_disallowed": MembersDeleteProfilePhotoError._set_profile_disallowed_validator, - "other": MembersDeleteProfilePhotoError._other_validator, + 'set_profile_disallowed': MembersDeleteProfilePhotoError._set_profile_disallowed_validator, + 'other': MembersDeleteProfilePhotoError._other_validator, } MembersDeleteProfilePhotoError._tagmap.update(MemberSelectorError._tagmap) -MembersDeleteProfilePhotoError.set_profile_disallowed = MembersDeleteProfilePhotoError( - "set_profile_disallowed" -) -MembersDeleteProfilePhotoError.other = MembersDeleteProfilePhotoError("other") +MembersDeleteProfilePhotoError.set_profile_disallowed = MembersDeleteProfilePhotoError('set_profile_disallowed') +MembersDeleteProfilePhotoError.other = MembersDeleteProfilePhotoError('other') MembersFormerMemberArg.user.validator = UserSelectorArg_validator -MembersFormerMemberArg._all_field_names_ = set(["user"]) -MembersFormerMemberArg._all_fields_ = [("user", MembersFormerMemberArg.user.validator)] +MembersFormerMemberArg._all_field_names_ = set(['user']) +MembersFormerMemberArg._all_fields_ = [('user', MembersFormerMemberArg.user.validator)] MembersGetAvailableTeamMemberRolesResult.roles.validator = bv.List(TeamMemberRole_validator) -MembersGetAvailableTeamMemberRolesResult._all_field_names_ = set(["roles"]) -MembersGetAvailableTeamMemberRolesResult._all_fields_ = [ - ("roles", MembersGetAvailableTeamMemberRolesResult.roles.validator) -] +MembersGetAvailableTeamMemberRolesResult._all_field_names_ = set(['roles']) +MembersGetAvailableTeamMemberRolesResult._all_fields_ = [('roles', MembersGetAvailableTeamMemberRolesResult.roles.validator)] MembersGetInfoArgs.members.validator = bv.List(UserSelectorArg_validator) -MembersGetInfoArgs._all_field_names_ = set(["members"]) -MembersGetInfoArgs._all_fields_ = [("members", MembersGetInfoArgs.members.validator)] +MembersGetInfoArgs._all_field_names_ = set(['members']) +MembersGetInfoArgs._all_fields_ = [('members', MembersGetInfoArgs.members.validator)] MembersGetInfoError._other_validator = bv.Void() MembersGetInfoError._tagmap = { - "other": MembersGetInfoError._other_validator, + 'other': MembersGetInfoError._other_validator, } -MembersGetInfoError.other = MembersGetInfoError("other") +MembersGetInfoError.other = MembersGetInfoError('other') MembersGetInfoItemBase._id_not_found_validator = bv.String() MembersGetInfoItemBase._tagmap = { - "id_not_found": MembersGetInfoItemBase._id_not_found_validator, + 'id_not_found': MembersGetInfoItemBase._id_not_found_validator, } MembersGetInfoItem._member_info_validator = TeamMemberInfo_validator MembersGetInfoItem._tagmap = { - "member_info": MembersGetInfoItem._member_info_validator, + 'member_info': MembersGetInfoItem._member_info_validator, } MembersGetInfoItem._tagmap.update(MembersGetInfoItemBase._tagmap) MembersGetInfoItemV2._member_info_validator = TeamMemberInfoV2_validator MembersGetInfoItemV2._other_validator = bv.Void() MembersGetInfoItemV2._tagmap = { - "member_info": MembersGetInfoItemV2._member_info_validator, - "other": MembersGetInfoItemV2._other_validator, + 'member_info': MembersGetInfoItemV2._member_info_validator, + 'other': MembersGetInfoItemV2._other_validator, } MembersGetInfoItemV2._tagmap.update(MembersGetInfoItemBase._tagmap) -MembersGetInfoItemV2.other = MembersGetInfoItemV2("other") +MembersGetInfoItemV2.other = MembersGetInfoItemV2('other') MembersGetInfoV2Arg.members.validator = bv.List(UserSelectorArg_validator) -MembersGetInfoV2Arg._all_field_names_ = set(["members"]) -MembersGetInfoV2Arg._all_fields_ = [("members", MembersGetInfoV2Arg.members.validator)] +MembersGetInfoV2Arg._all_field_names_ = set(['members']) +MembersGetInfoV2Arg._all_fields_ = [('members', MembersGetInfoV2Arg.members.validator)] MembersGetInfoV2Result.members_info.validator = bv.List(MembersGetInfoItemV2_validator) -MembersGetInfoV2Result._all_field_names_ = set(["members_info"]) -MembersGetInfoV2Result._all_fields_ = [ - ("members_info", MembersGetInfoV2Result.members_info.validator) -] +MembersGetInfoV2Result._all_field_names_ = set(['members_info']) +MembersGetInfoV2Result._all_fields_ = [('members_info', MembersGetInfoV2Result.members_info.validator)] MembersInfo.team_member_ids.validator = bv.List(team_common.TeamMemberId_validator) MembersInfo.permanently_deleted_users.validator = bv.UInt64() -MembersInfo._all_field_names_ = set( - [ - "team_member_ids", - "permanently_deleted_users", - ] -) +MembersInfo._all_field_names_ = set([ + 'team_member_ids', + 'permanently_deleted_users', +]) MembersInfo._all_fields_ = [ - ("team_member_ids", MembersInfo.team_member_ids.validator), - ("permanently_deleted_users", MembersInfo.permanently_deleted_users.validator), + ('team_member_ids', MembersInfo.team_member_ids.validator), + ('permanently_deleted_users', MembersInfo.permanently_deleted_users.validator), ] MembersListArg.limit.validator = bv.UInt32(min_value=1, max_value=1000) MembersListArg.include_removed.validator = bv.Boolean() -MembersListArg._all_field_names_ = set( - [ - "limit", - "include_removed", - ] -) +MembersListArg._all_field_names_ = set([ + 'limit', + 'include_removed', +]) MembersListArg._all_fields_ = [ - ("limit", MembersListArg.limit.validator), - ("include_removed", MembersListArg.include_removed.validator), + ('limit', MembersListArg.limit.validator), + ('include_removed', MembersListArg.include_removed.validator), ] MembersListContinueArg.cursor.validator = bv.String() -MembersListContinueArg._all_field_names_ = set(["cursor"]) -MembersListContinueArg._all_fields_ = [("cursor", MembersListContinueArg.cursor.validator)] +MembersListContinueArg._all_field_names_ = set(['cursor']) +MembersListContinueArg._all_fields_ = [('cursor', MembersListContinueArg.cursor.validator)] MembersListContinueError._invalid_cursor_validator = bv.Void() MembersListContinueError._other_validator = bv.Void() MembersListContinueError._tagmap = { - "invalid_cursor": MembersListContinueError._invalid_cursor_validator, - "other": MembersListContinueError._other_validator, + 'invalid_cursor': MembersListContinueError._invalid_cursor_validator, + 'other': MembersListContinueError._other_validator, } -MembersListContinueError.invalid_cursor = MembersListContinueError("invalid_cursor") -MembersListContinueError.other = MembersListContinueError("other") +MembersListContinueError.invalid_cursor = MembersListContinueError('invalid_cursor') +MembersListContinueError.other = MembersListContinueError('other') MembersListError._other_validator = bv.Void() MembersListError._tagmap = { - "other": MembersListError._other_validator, + 'other': MembersListError._other_validator, } -MembersListError.other = MembersListError("other") +MembersListError.other = MembersListError('other') MembersListResult.members.validator = bv.List(TeamMemberInfo_validator) MembersListResult.cursor.validator = bv.String() MembersListResult.has_more.validator = bv.Boolean() -MembersListResult._all_field_names_ = set( - [ - "members", - "cursor", - "has_more", - ] -) +MembersListResult._all_field_names_ = set([ + 'members', + 'cursor', + 'has_more', +]) MembersListResult._all_fields_ = [ - ("members", MembersListResult.members.validator), - ("cursor", MembersListResult.cursor.validator), - ("has_more", MembersListResult.has_more.validator), + ('members', MembersListResult.members.validator), + ('cursor', MembersListResult.cursor.validator), + ('has_more', MembersListResult.has_more.validator), ] MembersListV2Result.members.validator = bv.List(TeamMemberInfoV2_validator) MembersListV2Result.cursor.validator = bv.String() MembersListV2Result.has_more.validator = bv.Boolean() -MembersListV2Result._all_field_names_ = set( - [ - "members", - "cursor", - "has_more", - ] -) +MembersListV2Result._all_field_names_ = set([ + 'members', + 'cursor', + 'has_more', +]) MembersListV2Result._all_fields_ = [ - ("members", MembersListV2Result.members.validator), - ("cursor", MembersListV2Result.cursor.validator), - ("has_more", MembersListV2Result.has_more.validator), + ('members', MembersListV2Result.members.validator), + ('cursor', MembersListV2Result.cursor.validator), + ('has_more', MembersListV2Result.has_more.validator), ] MembersRecoverArg.user.validator = UserSelectorArg_validator -MembersRecoverArg._all_field_names_ = set(["user"]) -MembersRecoverArg._all_fields_ = [("user", MembersRecoverArg.user.validator)] +MembersRecoverArg._all_field_names_ = set(['user']) +MembersRecoverArg._all_fields_ = [('user', MembersRecoverArg.user.validator)] MembersRecoverError._user_unrecoverable_validator = bv.Void() MembersRecoverError._user_not_in_team_validator = bv.Void() MembersRecoverError._team_license_limit_validator = bv.Void() MembersRecoverError._other_validator = bv.Void() MembersRecoverError._tagmap = { - "user_unrecoverable": MembersRecoverError._user_unrecoverable_validator, - "user_not_in_team": MembersRecoverError._user_not_in_team_validator, - "team_license_limit": MembersRecoverError._team_license_limit_validator, - "other": MembersRecoverError._other_validator, + 'user_unrecoverable': MembersRecoverError._user_unrecoverable_validator, + 'user_not_in_team': MembersRecoverError._user_not_in_team_validator, + 'team_license_limit': MembersRecoverError._team_license_limit_validator, + 'other': MembersRecoverError._other_validator, } MembersRecoverError._tagmap.update(UserSelectorError._tagmap) -MembersRecoverError.user_unrecoverable = MembersRecoverError("user_unrecoverable") -MembersRecoverError.user_not_in_team = MembersRecoverError("user_not_in_team") -MembersRecoverError.team_license_limit = MembersRecoverError("team_license_limit") -MembersRecoverError.other = MembersRecoverError("other") +MembersRecoverError.user_unrecoverable = MembersRecoverError('user_unrecoverable') +MembersRecoverError.user_not_in_team = MembersRecoverError('user_not_in_team') +MembersRecoverError.team_license_limit = MembersRecoverError('team_license_limit') +MembersRecoverError.other = MembersRecoverError('other') MembersRemoveArg.transfer_dest_id.validator = bv.Nullable(UserSelectorArg_validator) MembersRemoveArg.transfer_admin_id.validator = bv.Nullable(UserSelectorArg_validator) MembersRemoveArg.keep_account.validator = bv.Boolean() MembersRemoveArg.retain_team_shares.validator = bv.Boolean() MembersRemoveArg.permanently_delete_files.validator = bv.Boolean() -MembersRemoveArg._all_field_names_ = MembersDeactivateArg._all_field_names_.union( - set( - [ - "transfer_dest_id", - "transfer_admin_id", - "keep_account", - "retain_team_shares", - "permanently_delete_files", - ] - ) -) +MembersRemoveArg._all_field_names_ = MembersDeactivateArg._all_field_names_.union(set([ + 'transfer_dest_id', + 'transfer_admin_id', + 'keep_account', + 'retain_team_shares', + 'permanently_delete_files', +])) MembersRemoveArg._all_fields_ = MembersDeactivateArg._all_fields_ + [ - ("transfer_dest_id", MembersRemoveArg.transfer_dest_id.validator), - ("transfer_admin_id", MembersRemoveArg.transfer_admin_id.validator), - ("keep_account", MembersRemoveArg.keep_account.validator), - ("retain_team_shares", MembersRemoveArg.retain_team_shares.validator), - ("permanently_delete_files", MembersRemoveArg.permanently_delete_files.validator), + ('transfer_dest_id', MembersRemoveArg.transfer_dest_id.validator), + ('transfer_admin_id', MembersRemoveArg.transfer_admin_id.validator), + ('keep_account', MembersRemoveArg.keep_account.validator), + ('retain_team_shares', MembersRemoveArg.retain_team_shares.validator), + ('permanently_delete_files', MembersRemoveArg.permanently_delete_files.validator), ] MembersTransferFilesError._removed_and_transfer_dest_should_differ_validator = bv.Void() @@ -17602,45 +16431,27 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): MembersTransferFilesError._transfer_admin_is_not_admin_validator = bv.Void() MembersTransferFilesError._recipient_not_verified_validator = bv.Void() MembersTransferFilesError._tagmap = { - "removed_and_transfer_dest_should_differ": MembersTransferFilesError._removed_and_transfer_dest_should_differ_validator, - "removed_and_transfer_admin_should_differ": MembersTransferFilesError._removed_and_transfer_admin_should_differ_validator, - "transfer_dest_user_not_found": MembersTransferFilesError._transfer_dest_user_not_found_validator, - "transfer_dest_user_not_in_team": MembersTransferFilesError._transfer_dest_user_not_in_team_validator, - "transfer_admin_user_not_in_team": MembersTransferFilesError._transfer_admin_user_not_in_team_validator, - "transfer_admin_user_not_found": MembersTransferFilesError._transfer_admin_user_not_found_validator, - "unspecified_transfer_admin_id": MembersTransferFilesError._unspecified_transfer_admin_id_validator, - "transfer_admin_is_not_admin": MembersTransferFilesError._transfer_admin_is_not_admin_validator, - "recipient_not_verified": MembersTransferFilesError._recipient_not_verified_validator, + 'removed_and_transfer_dest_should_differ': MembersTransferFilesError._removed_and_transfer_dest_should_differ_validator, + 'removed_and_transfer_admin_should_differ': MembersTransferFilesError._removed_and_transfer_admin_should_differ_validator, + 'transfer_dest_user_not_found': MembersTransferFilesError._transfer_dest_user_not_found_validator, + 'transfer_dest_user_not_in_team': MembersTransferFilesError._transfer_dest_user_not_in_team_validator, + 'transfer_admin_user_not_in_team': MembersTransferFilesError._transfer_admin_user_not_in_team_validator, + 'transfer_admin_user_not_found': MembersTransferFilesError._transfer_admin_user_not_found_validator, + 'unspecified_transfer_admin_id': MembersTransferFilesError._unspecified_transfer_admin_id_validator, + 'transfer_admin_is_not_admin': MembersTransferFilesError._transfer_admin_is_not_admin_validator, + 'recipient_not_verified': MembersTransferFilesError._recipient_not_verified_validator, } MembersTransferFilesError._tagmap.update(MembersPermanentlyDeleteFilesError._tagmap) -MembersTransferFilesError.removed_and_transfer_dest_should_differ = MembersTransferFilesError( - "removed_and_transfer_dest_should_differ" -) -MembersTransferFilesError.removed_and_transfer_admin_should_differ = MembersTransferFilesError( - "removed_and_transfer_admin_should_differ" -) -MembersTransferFilesError.transfer_dest_user_not_found = MembersTransferFilesError( - "transfer_dest_user_not_found" -) -MembersTransferFilesError.transfer_dest_user_not_in_team = MembersTransferFilesError( - "transfer_dest_user_not_in_team" -) -MembersTransferFilesError.transfer_admin_user_not_in_team = MembersTransferFilesError( - "transfer_admin_user_not_in_team" -) -MembersTransferFilesError.transfer_admin_user_not_found = MembersTransferFilesError( - "transfer_admin_user_not_found" -) -MembersTransferFilesError.unspecified_transfer_admin_id = MembersTransferFilesError( - "unspecified_transfer_admin_id" -) -MembersTransferFilesError.transfer_admin_is_not_admin = MembersTransferFilesError( - "transfer_admin_is_not_admin" -) -MembersTransferFilesError.recipient_not_verified = MembersTransferFilesError( - "recipient_not_verified" -) +MembersTransferFilesError.removed_and_transfer_dest_should_differ = MembersTransferFilesError('removed_and_transfer_dest_should_differ') +MembersTransferFilesError.removed_and_transfer_admin_should_differ = MembersTransferFilesError('removed_and_transfer_admin_should_differ') +MembersTransferFilesError.transfer_dest_user_not_found = MembersTransferFilesError('transfer_dest_user_not_found') +MembersTransferFilesError.transfer_dest_user_not_in_team = MembersTransferFilesError('transfer_dest_user_not_in_team') +MembersTransferFilesError.transfer_admin_user_not_in_team = MembersTransferFilesError('transfer_admin_user_not_in_team') +MembersTransferFilesError.transfer_admin_user_not_found = MembersTransferFilesError('transfer_admin_user_not_found') +MembersTransferFilesError.unspecified_transfer_admin_id = MembersTransferFilesError('unspecified_transfer_admin_id') +MembersTransferFilesError.transfer_admin_is_not_admin = MembersTransferFilesError('transfer_admin_is_not_admin') +MembersTransferFilesError.recipient_not_verified = MembersTransferFilesError('recipient_not_verified') MembersRemoveError._remove_last_admin_validator = bv.Void() MembersRemoveError._cannot_keep_account_and_transfer_validator = bv.Void() @@ -17657,83 +16468,55 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): MembersRemoveError._cannot_permanently_delete_and_transfer_validator = bv.Void() MembersRemoveError._member_is_transfer_destination_validator = bv.Void() MembersRemoveError._tagmap = { - "remove_last_admin": MembersRemoveError._remove_last_admin_validator, - "cannot_keep_account_and_transfer": MembersRemoveError._cannot_keep_account_and_transfer_validator, - "cannot_keep_account_and_delete_data": MembersRemoveError._cannot_keep_account_and_delete_data_validator, - "cannot_keep_account_and_permanently_delete": MembersRemoveError._cannot_keep_account_and_permanently_delete_validator, - "email_address_too_long_to_be_disabled": MembersRemoveError._email_address_too_long_to_be_disabled_validator, - "cannot_keep_invited_user_account": MembersRemoveError._cannot_keep_invited_user_account_validator, - "cannot_retain_shares_when_data_wiped": MembersRemoveError._cannot_retain_shares_when_data_wiped_validator, - "cannot_retain_shares_when_no_account_kept": MembersRemoveError._cannot_retain_shares_when_no_account_kept_validator, - "cannot_retain_shares_when_team_external_sharing_off": MembersRemoveError._cannot_retain_shares_when_team_external_sharing_off_validator, - "cannot_keep_account": MembersRemoveError._cannot_keep_account_validator, - "cannot_keep_account_under_legal_hold": MembersRemoveError._cannot_keep_account_under_legal_hold_validator, - "cannot_keep_account_required_to_sign_tos": MembersRemoveError._cannot_keep_account_required_to_sign_tos_validator, - "cannot_permanently_delete_and_transfer": MembersRemoveError._cannot_permanently_delete_and_transfer_validator, - "member_is_transfer_destination": MembersRemoveError._member_is_transfer_destination_validator, + 'remove_last_admin': MembersRemoveError._remove_last_admin_validator, + 'cannot_keep_account_and_transfer': MembersRemoveError._cannot_keep_account_and_transfer_validator, + 'cannot_keep_account_and_delete_data': MembersRemoveError._cannot_keep_account_and_delete_data_validator, + 'cannot_keep_account_and_permanently_delete': MembersRemoveError._cannot_keep_account_and_permanently_delete_validator, + 'email_address_too_long_to_be_disabled': MembersRemoveError._email_address_too_long_to_be_disabled_validator, + 'cannot_keep_invited_user_account': MembersRemoveError._cannot_keep_invited_user_account_validator, + 'cannot_retain_shares_when_data_wiped': MembersRemoveError._cannot_retain_shares_when_data_wiped_validator, + 'cannot_retain_shares_when_no_account_kept': MembersRemoveError._cannot_retain_shares_when_no_account_kept_validator, + 'cannot_retain_shares_when_team_external_sharing_off': MembersRemoveError._cannot_retain_shares_when_team_external_sharing_off_validator, + 'cannot_keep_account': MembersRemoveError._cannot_keep_account_validator, + 'cannot_keep_account_under_legal_hold': MembersRemoveError._cannot_keep_account_under_legal_hold_validator, + 'cannot_keep_account_required_to_sign_tos': MembersRemoveError._cannot_keep_account_required_to_sign_tos_validator, + 'cannot_permanently_delete_and_transfer': MembersRemoveError._cannot_permanently_delete_and_transfer_validator, + 'member_is_transfer_destination': MembersRemoveError._member_is_transfer_destination_validator, } MembersRemoveError._tagmap.update(MembersTransferFilesError._tagmap) -MembersRemoveError.remove_last_admin = MembersRemoveError("remove_last_admin") -MembersRemoveError.cannot_keep_account_and_transfer = MembersRemoveError( - "cannot_keep_account_and_transfer" -) -MembersRemoveError.cannot_keep_account_and_delete_data = MembersRemoveError( - "cannot_keep_account_and_delete_data" -) -MembersRemoveError.cannot_keep_account_and_permanently_delete = MembersRemoveError( - "cannot_keep_account_and_permanently_delete" -) -MembersRemoveError.email_address_too_long_to_be_disabled = MembersRemoveError( - "email_address_too_long_to_be_disabled" -) -MembersRemoveError.cannot_keep_invited_user_account = MembersRemoveError( - "cannot_keep_invited_user_account" -) -MembersRemoveError.cannot_retain_shares_when_data_wiped = MembersRemoveError( - "cannot_retain_shares_when_data_wiped" -) -MembersRemoveError.cannot_retain_shares_when_no_account_kept = MembersRemoveError( - "cannot_retain_shares_when_no_account_kept" -) -MembersRemoveError.cannot_retain_shares_when_team_external_sharing_off = MembersRemoveError( - "cannot_retain_shares_when_team_external_sharing_off" -) -MembersRemoveError.cannot_keep_account = MembersRemoveError("cannot_keep_account") -MembersRemoveError.cannot_keep_account_under_legal_hold = MembersRemoveError( - "cannot_keep_account_under_legal_hold" -) -MembersRemoveError.cannot_keep_account_required_to_sign_tos = MembersRemoveError( - "cannot_keep_account_required_to_sign_tos" -) -MembersRemoveError.cannot_permanently_delete_and_transfer = MembersRemoveError( - "cannot_permanently_delete_and_transfer" -) -MembersRemoveError.member_is_transfer_destination = MembersRemoveError( - "member_is_transfer_destination" -) +MembersRemoveError.remove_last_admin = MembersRemoveError('remove_last_admin') +MembersRemoveError.cannot_keep_account_and_transfer = MembersRemoveError('cannot_keep_account_and_transfer') +MembersRemoveError.cannot_keep_account_and_delete_data = MembersRemoveError('cannot_keep_account_and_delete_data') +MembersRemoveError.cannot_keep_account_and_permanently_delete = MembersRemoveError('cannot_keep_account_and_permanently_delete') +MembersRemoveError.email_address_too_long_to_be_disabled = MembersRemoveError('email_address_too_long_to_be_disabled') +MembersRemoveError.cannot_keep_invited_user_account = MembersRemoveError('cannot_keep_invited_user_account') +MembersRemoveError.cannot_retain_shares_when_data_wiped = MembersRemoveError('cannot_retain_shares_when_data_wiped') +MembersRemoveError.cannot_retain_shares_when_no_account_kept = MembersRemoveError('cannot_retain_shares_when_no_account_kept') +MembersRemoveError.cannot_retain_shares_when_team_external_sharing_off = MembersRemoveError('cannot_retain_shares_when_team_external_sharing_off') +MembersRemoveError.cannot_keep_account = MembersRemoveError('cannot_keep_account') +MembersRemoveError.cannot_keep_account_under_legal_hold = MembersRemoveError('cannot_keep_account_under_legal_hold') +MembersRemoveError.cannot_keep_account_required_to_sign_tos = MembersRemoveError('cannot_keep_account_required_to_sign_tos') +MembersRemoveError.cannot_permanently_delete_and_transfer = MembersRemoveError('cannot_permanently_delete_and_transfer') +MembersRemoveError.member_is_transfer_destination = MembersRemoveError('member_is_transfer_destination') MembersSendWelcomeError._other_validator = bv.Void() MembersSendWelcomeError._tagmap = { - "other": MembersSendWelcomeError._other_validator, + 'other': MembersSendWelcomeError._other_validator, } MembersSendWelcomeError._tagmap.update(MemberSelectorError._tagmap) -MembersSendWelcomeError.other = MembersSendWelcomeError("other") +MembersSendWelcomeError.other = MembersSendWelcomeError('other') MembersSetPermissions2Arg.user.validator = UserSelectorArg_validator -MembersSetPermissions2Arg.new_roles.validator = bv.Nullable( - bv.List(TeamMemberRoleId_validator, max_items=1) -) -MembersSetPermissions2Arg._all_field_names_ = set( - [ - "user", - "new_roles", - ] -) +MembersSetPermissions2Arg.new_roles.validator = bv.Nullable(bv.List(TeamMemberRoleId_validator, max_items=1)) +MembersSetPermissions2Arg._all_field_names_ = set([ + 'user', + 'new_roles', +]) MembersSetPermissions2Arg._all_fields_ = [ - ("user", MembersSetPermissions2Arg.user.validator), - ("new_roles", MembersSetPermissions2Arg.new_roles.validator), + ('user', MembersSetPermissions2Arg.user.validator), + ('new_roles', MembersSetPermissions2Arg.new_roles.validator), ] MembersSetPermissions2Error._last_admin_validator = bv.Void() @@ -17742,46 +16525,40 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): MembersSetPermissions2Error._role_not_found_validator = bv.Void() MembersSetPermissions2Error._other_validator = bv.Void() MembersSetPermissions2Error._tagmap = { - "last_admin": MembersSetPermissions2Error._last_admin_validator, - "user_not_in_team": MembersSetPermissions2Error._user_not_in_team_validator, - "cannot_set_permissions": MembersSetPermissions2Error._cannot_set_permissions_validator, - "role_not_found": MembersSetPermissions2Error._role_not_found_validator, - "other": MembersSetPermissions2Error._other_validator, + 'last_admin': MembersSetPermissions2Error._last_admin_validator, + 'user_not_in_team': MembersSetPermissions2Error._user_not_in_team_validator, + 'cannot_set_permissions': MembersSetPermissions2Error._cannot_set_permissions_validator, + 'role_not_found': MembersSetPermissions2Error._role_not_found_validator, + 'other': MembersSetPermissions2Error._other_validator, } MembersSetPermissions2Error._tagmap.update(UserSelectorError._tagmap) -MembersSetPermissions2Error.last_admin = MembersSetPermissions2Error("last_admin") -MembersSetPermissions2Error.user_not_in_team = MembersSetPermissions2Error("user_not_in_team") -MembersSetPermissions2Error.cannot_set_permissions = MembersSetPermissions2Error( - "cannot_set_permissions" -) -MembersSetPermissions2Error.role_not_found = MembersSetPermissions2Error("role_not_found") -MembersSetPermissions2Error.other = MembersSetPermissions2Error("other") +MembersSetPermissions2Error.last_admin = MembersSetPermissions2Error('last_admin') +MembersSetPermissions2Error.user_not_in_team = MembersSetPermissions2Error('user_not_in_team') +MembersSetPermissions2Error.cannot_set_permissions = MembersSetPermissions2Error('cannot_set_permissions') +MembersSetPermissions2Error.role_not_found = MembersSetPermissions2Error('role_not_found') +MembersSetPermissions2Error.other = MembersSetPermissions2Error('other') MembersSetPermissions2Result.team_member_id.validator = team_common.TeamMemberId_validator MembersSetPermissions2Result.roles.validator = bv.Nullable(bv.List(TeamMemberRole_validator)) -MembersSetPermissions2Result._all_field_names_ = set( - [ - "team_member_id", - "roles", - ] -) +MembersSetPermissions2Result._all_field_names_ = set([ + 'team_member_id', + 'roles', +]) MembersSetPermissions2Result._all_fields_ = [ - ("team_member_id", MembersSetPermissions2Result.team_member_id.validator), - ("roles", MembersSetPermissions2Result.roles.validator), + ('team_member_id', MembersSetPermissions2Result.team_member_id.validator), + ('roles', MembersSetPermissions2Result.roles.validator), ] MembersSetPermissionsArg.user.validator = UserSelectorArg_validator MembersSetPermissionsArg.new_role.validator = AdminTier_validator -MembersSetPermissionsArg._all_field_names_ = set( - [ - "user", - "new_role", - ] -) +MembersSetPermissionsArg._all_field_names_ = set([ + 'user', + 'new_role', +]) MembersSetPermissionsArg._all_fields_ = [ - ("user", MembersSetPermissionsArg.user.validator), - ("new_role", MembersSetPermissionsArg.new_role.validator), + ('user', MembersSetPermissionsArg.user.validator), + ('new_role', MembersSetPermissionsArg.new_role.validator), ] MembersSetPermissionsError._last_admin_validator = bv.Void() @@ -17790,33 +16567,29 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): MembersSetPermissionsError._team_license_limit_validator = bv.Void() MembersSetPermissionsError._other_validator = bv.Void() MembersSetPermissionsError._tagmap = { - "last_admin": MembersSetPermissionsError._last_admin_validator, - "user_not_in_team": MembersSetPermissionsError._user_not_in_team_validator, - "cannot_set_permissions": MembersSetPermissionsError._cannot_set_permissions_validator, - "team_license_limit": MembersSetPermissionsError._team_license_limit_validator, - "other": MembersSetPermissionsError._other_validator, + 'last_admin': MembersSetPermissionsError._last_admin_validator, + 'user_not_in_team': MembersSetPermissionsError._user_not_in_team_validator, + 'cannot_set_permissions': MembersSetPermissionsError._cannot_set_permissions_validator, + 'team_license_limit': MembersSetPermissionsError._team_license_limit_validator, + 'other': MembersSetPermissionsError._other_validator, } MembersSetPermissionsError._tagmap.update(UserSelectorError._tagmap) -MembersSetPermissionsError.last_admin = MembersSetPermissionsError("last_admin") -MembersSetPermissionsError.user_not_in_team = MembersSetPermissionsError("user_not_in_team") -MembersSetPermissionsError.cannot_set_permissions = MembersSetPermissionsError( - "cannot_set_permissions" -) -MembersSetPermissionsError.team_license_limit = MembersSetPermissionsError("team_license_limit") -MembersSetPermissionsError.other = MembersSetPermissionsError("other") +MembersSetPermissionsError.last_admin = MembersSetPermissionsError('last_admin') +MembersSetPermissionsError.user_not_in_team = MembersSetPermissionsError('user_not_in_team') +MembersSetPermissionsError.cannot_set_permissions = MembersSetPermissionsError('cannot_set_permissions') +MembersSetPermissionsError.team_license_limit = MembersSetPermissionsError('team_license_limit') +MembersSetPermissionsError.other = MembersSetPermissionsError('other') MembersSetPermissionsResult.team_member_id.validator = team_common.TeamMemberId_validator MembersSetPermissionsResult.role.validator = AdminTier_validator -MembersSetPermissionsResult._all_field_names_ = set( - [ - "team_member_id", - "role", - ] -) +MembersSetPermissionsResult._all_field_names_ = set([ + 'team_member_id', + 'role', +]) MembersSetPermissionsResult._all_fields_ = [ - ("team_member_id", MembersSetPermissionsResult.team_member_id.validator), - ("role", MembersSetPermissionsResult.role.validator), + ('team_member_id', MembersSetPermissionsResult.team_member_id.validator), + ('role', MembersSetPermissionsResult.role.validator), ] MembersSetProfileArg.user.validator = UserSelectorArg_validator @@ -17826,28 +16599,23 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): MembersSetProfileArg.new_surname.validator = bv.Nullable(common.OptionalNamePart_validator) MembersSetProfileArg.new_persistent_id.validator = bv.Nullable(bv.String()) MembersSetProfileArg.new_is_directory_restricted.validator = bv.Nullable(bv.Boolean()) -MembersSetProfileArg._all_field_names_ = set( - [ - "user", - "new_email", - "new_external_id", - "new_given_name", - "new_surname", - "new_persistent_id", - "new_is_directory_restricted", - ] -) +MembersSetProfileArg._all_field_names_ = set([ + 'user', + 'new_email', + 'new_external_id', + 'new_given_name', + 'new_surname', + 'new_persistent_id', + 'new_is_directory_restricted', +]) MembersSetProfileArg._all_fields_ = [ - ("user", MembersSetProfileArg.user.validator), - ("new_email", MembersSetProfileArg.new_email.validator), - ("new_external_id", MembersSetProfileArg.new_external_id.validator), - ("new_given_name", MembersSetProfileArg.new_given_name.validator), - ("new_surname", MembersSetProfileArg.new_surname.validator), - ("new_persistent_id", MembersSetProfileArg.new_persistent_id.validator), - ( - "new_is_directory_restricted", - MembersSetProfileArg.new_is_directory_restricted.validator, - ), + ('user', MembersSetProfileArg.user.validator), + ('new_email', MembersSetProfileArg.new_email.validator), + ('new_external_id', MembersSetProfileArg.new_external_id.validator), + ('new_given_name', MembersSetProfileArg.new_given_name.validator), + ('new_surname', MembersSetProfileArg.new_surname.validator), + ('new_persistent_id', MembersSetProfileArg.new_persistent_id.validator), + ('new_is_directory_restricted', MembersSetProfileArg.new_is_directory_restricted.validator), ] MembersSetProfileError._external_id_and_new_external_id_unsafe_validator = bv.Void() @@ -17861,121 +16629,99 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): MembersSetProfileError._directory_restricted_off_validator = bv.Void() MembersSetProfileError._other_validator = bv.Void() MembersSetProfileError._tagmap = { - "external_id_and_new_external_id_unsafe": MembersSetProfileError._external_id_and_new_external_id_unsafe_validator, - "no_new_data_specified": MembersSetProfileError._no_new_data_specified_validator, - "email_reserved_for_other_user": MembersSetProfileError._email_reserved_for_other_user_validator, - "external_id_used_by_other_user": MembersSetProfileError._external_id_used_by_other_user_validator, - "set_profile_disallowed": MembersSetProfileError._set_profile_disallowed_validator, - "param_cannot_be_empty": MembersSetProfileError._param_cannot_be_empty_validator, - "persistent_id_disabled": MembersSetProfileError._persistent_id_disabled_validator, - "persistent_id_used_by_other_user": MembersSetProfileError._persistent_id_used_by_other_user_validator, - "directory_restricted_off": MembersSetProfileError._directory_restricted_off_validator, - "other": MembersSetProfileError._other_validator, + 'external_id_and_new_external_id_unsafe': MembersSetProfileError._external_id_and_new_external_id_unsafe_validator, + 'no_new_data_specified': MembersSetProfileError._no_new_data_specified_validator, + 'email_reserved_for_other_user': MembersSetProfileError._email_reserved_for_other_user_validator, + 'external_id_used_by_other_user': MembersSetProfileError._external_id_used_by_other_user_validator, + 'set_profile_disallowed': MembersSetProfileError._set_profile_disallowed_validator, + 'param_cannot_be_empty': MembersSetProfileError._param_cannot_be_empty_validator, + 'persistent_id_disabled': MembersSetProfileError._persistent_id_disabled_validator, + 'persistent_id_used_by_other_user': MembersSetProfileError._persistent_id_used_by_other_user_validator, + 'directory_restricted_off': MembersSetProfileError._directory_restricted_off_validator, + 'other': MembersSetProfileError._other_validator, } MembersSetProfileError._tagmap.update(MemberSelectorError._tagmap) -MembersSetProfileError.external_id_and_new_external_id_unsafe = MembersSetProfileError( - "external_id_and_new_external_id_unsafe" -) -MembersSetProfileError.no_new_data_specified = MembersSetProfileError("no_new_data_specified") -MembersSetProfileError.email_reserved_for_other_user = MembersSetProfileError( - "email_reserved_for_other_user" -) -MembersSetProfileError.external_id_used_by_other_user = MembersSetProfileError( - "external_id_used_by_other_user" -) -MembersSetProfileError.set_profile_disallowed = MembersSetProfileError("set_profile_disallowed") -MembersSetProfileError.param_cannot_be_empty = MembersSetProfileError("param_cannot_be_empty") -MembersSetProfileError.persistent_id_disabled = MembersSetProfileError("persistent_id_disabled") -MembersSetProfileError.persistent_id_used_by_other_user = MembersSetProfileError( - "persistent_id_used_by_other_user" -) -MembersSetProfileError.directory_restricted_off = MembersSetProfileError("directory_restricted_off") -MembersSetProfileError.other = MembersSetProfileError("other") +MembersSetProfileError.external_id_and_new_external_id_unsafe = MembersSetProfileError('external_id_and_new_external_id_unsafe') +MembersSetProfileError.no_new_data_specified = MembersSetProfileError('no_new_data_specified') +MembersSetProfileError.email_reserved_for_other_user = MembersSetProfileError('email_reserved_for_other_user') +MembersSetProfileError.external_id_used_by_other_user = MembersSetProfileError('external_id_used_by_other_user') +MembersSetProfileError.set_profile_disallowed = MembersSetProfileError('set_profile_disallowed') +MembersSetProfileError.param_cannot_be_empty = MembersSetProfileError('param_cannot_be_empty') +MembersSetProfileError.persistent_id_disabled = MembersSetProfileError('persistent_id_disabled') +MembersSetProfileError.persistent_id_used_by_other_user = MembersSetProfileError('persistent_id_used_by_other_user') +MembersSetProfileError.directory_restricted_off = MembersSetProfileError('directory_restricted_off') +MembersSetProfileError.other = MembersSetProfileError('other') MembersSetProfilePhotoArg.user.validator = UserSelectorArg_validator MembersSetProfilePhotoArg.photo.validator = account.PhotoSourceArg_validator -MembersSetProfilePhotoArg._all_field_names_ = set( - [ - "user", - "photo", - ] -) +MembersSetProfilePhotoArg._all_field_names_ = set([ + 'user', + 'photo', +]) MembersSetProfilePhotoArg._all_fields_ = [ - ("user", MembersSetProfilePhotoArg.user.validator), - ("photo", MembersSetProfilePhotoArg.photo.validator), + ('user', MembersSetProfilePhotoArg.user.validator), + ('photo', MembersSetProfilePhotoArg.photo.validator), ] MembersSetProfilePhotoError._set_profile_disallowed_validator = bv.Void() MembersSetProfilePhotoError._photo_error_validator = account.SetProfilePhotoError_validator MembersSetProfilePhotoError._other_validator = bv.Void() MembersSetProfilePhotoError._tagmap = { - "set_profile_disallowed": MembersSetProfilePhotoError._set_profile_disallowed_validator, - "photo_error": MembersSetProfilePhotoError._photo_error_validator, - "other": MembersSetProfilePhotoError._other_validator, + 'set_profile_disallowed': MembersSetProfilePhotoError._set_profile_disallowed_validator, + 'photo_error': MembersSetProfilePhotoError._photo_error_validator, + 'other': MembersSetProfilePhotoError._other_validator, } MembersSetProfilePhotoError._tagmap.update(MemberSelectorError._tagmap) -MembersSetProfilePhotoError.set_profile_disallowed = MembersSetProfilePhotoError( - "set_profile_disallowed" -) -MembersSetProfilePhotoError.other = MembersSetProfilePhotoError("other") +MembersSetProfilePhotoError.set_profile_disallowed = MembersSetProfilePhotoError('set_profile_disallowed') +MembersSetProfilePhotoError.other = MembersSetProfilePhotoError('other') MembersSuspendError._suspend_inactive_user_validator = bv.Void() MembersSuspendError._suspend_last_admin_validator = bv.Void() MembersSuspendError._team_license_limit_validator = bv.Void() MembersSuspendError._tagmap = { - "suspend_inactive_user": MembersSuspendError._suspend_inactive_user_validator, - "suspend_last_admin": MembersSuspendError._suspend_last_admin_validator, - "team_license_limit": MembersSuspendError._team_license_limit_validator, + 'suspend_inactive_user': MembersSuspendError._suspend_inactive_user_validator, + 'suspend_last_admin': MembersSuspendError._suspend_last_admin_validator, + 'team_license_limit': MembersSuspendError._team_license_limit_validator, } MembersSuspendError._tagmap.update(MembersDeactivateError._tagmap) -MembersSuspendError.suspend_inactive_user = MembersSuspendError("suspend_inactive_user") -MembersSuspendError.suspend_last_admin = MembersSuspendError("suspend_last_admin") -MembersSuspendError.team_license_limit = MembersSuspendError("team_license_limit") +MembersSuspendError.suspend_inactive_user = MembersSuspendError('suspend_inactive_user') +MembersSuspendError.suspend_last_admin = MembersSuspendError('suspend_last_admin') +MembersSuspendError.team_license_limit = MembersSuspendError('team_license_limit') MembersTransferFormerMembersFilesError._user_data_is_being_transferred_validator = bv.Void() MembersTransferFormerMembersFilesError._user_not_removed_validator = bv.Void() MembersTransferFormerMembersFilesError._user_data_cannot_be_transferred_validator = bv.Void() MembersTransferFormerMembersFilesError._user_data_already_transferred_validator = bv.Void() MembersTransferFormerMembersFilesError._tagmap = { - "user_data_is_being_transferred": MembersTransferFormerMembersFilesError._user_data_is_being_transferred_validator, - "user_not_removed": MembersTransferFormerMembersFilesError._user_not_removed_validator, - "user_data_cannot_be_transferred": MembersTransferFormerMembersFilesError._user_data_cannot_be_transferred_validator, - "user_data_already_transferred": MembersTransferFormerMembersFilesError._user_data_already_transferred_validator, + 'user_data_is_being_transferred': MembersTransferFormerMembersFilesError._user_data_is_being_transferred_validator, + 'user_not_removed': MembersTransferFormerMembersFilesError._user_not_removed_validator, + 'user_data_cannot_be_transferred': MembersTransferFormerMembersFilesError._user_data_cannot_be_transferred_validator, + 'user_data_already_transferred': MembersTransferFormerMembersFilesError._user_data_already_transferred_validator, } MembersTransferFormerMembersFilesError._tagmap.update(MembersTransferFilesError._tagmap) -MembersTransferFormerMembersFilesError.user_data_is_being_transferred = ( - MembersTransferFormerMembersFilesError("user_data_is_being_transferred") -) -MembersTransferFormerMembersFilesError.user_not_removed = MembersTransferFormerMembersFilesError( - "user_not_removed" -) -MembersTransferFormerMembersFilesError.user_data_cannot_be_transferred = ( - MembersTransferFormerMembersFilesError("user_data_cannot_be_transferred") -) -MembersTransferFormerMembersFilesError.user_data_already_transferred = ( - MembersTransferFormerMembersFilesError("user_data_already_transferred") -) +MembersTransferFormerMembersFilesError.user_data_is_being_transferred = MembersTransferFormerMembersFilesError('user_data_is_being_transferred') +MembersTransferFormerMembersFilesError.user_not_removed = MembersTransferFormerMembersFilesError('user_not_removed') +MembersTransferFormerMembersFilesError.user_data_cannot_be_transferred = MembersTransferFormerMembersFilesError('user_data_cannot_be_transferred') +MembersTransferFormerMembersFilesError.user_data_already_transferred = MembersTransferFormerMembersFilesError('user_data_already_transferred') MembersUnsuspendArg.user.validator = UserSelectorArg_validator -MembersUnsuspendArg._all_field_names_ = set(["user"]) -MembersUnsuspendArg._all_fields_ = [("user", MembersUnsuspendArg.user.validator)] +MembersUnsuspendArg._all_field_names_ = set(['user']) +MembersUnsuspendArg._all_fields_ = [('user', MembersUnsuspendArg.user.validator)] MembersUnsuspendError._unsuspend_non_suspended_member_validator = bv.Void() MembersUnsuspendError._team_license_limit_validator = bv.Void() MembersUnsuspendError._tagmap = { - "unsuspend_non_suspended_member": MembersUnsuspendError._unsuspend_non_suspended_member_validator, - "team_license_limit": MembersUnsuspendError._team_license_limit_validator, + 'unsuspend_non_suspended_member': MembersUnsuspendError._unsuspend_non_suspended_member_validator, + 'team_license_limit': MembersUnsuspendError._team_license_limit_validator, } MembersUnsuspendError._tagmap.update(MembersDeactivateError._tagmap) -MembersUnsuspendError.unsuspend_non_suspended_member = MembersUnsuspendError( - "unsuspend_non_suspended_member" -) -MembersUnsuspendError.team_license_limit = MembersUnsuspendError("team_license_limit") +MembersUnsuspendError.unsuspend_non_suspended_member = MembersUnsuspendError('unsuspend_non_suspended_member') +MembersUnsuspendError.team_license_limit = MembersUnsuspendError('team_license_limit') MobileClientPlatform._iphone_validator = bv.Void() MobileClientPlatform._ipad_validator = bv.Void() @@ -17984,43 +16730,39 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): MobileClientPlatform._blackberry_validator = bv.Void() MobileClientPlatform._other_validator = bv.Void() MobileClientPlatform._tagmap = { - "iphone": MobileClientPlatform._iphone_validator, - "ipad": MobileClientPlatform._ipad_validator, - "android": MobileClientPlatform._android_validator, - "windows_phone": MobileClientPlatform._windows_phone_validator, - "blackberry": MobileClientPlatform._blackberry_validator, - "other": MobileClientPlatform._other_validator, + 'iphone': MobileClientPlatform._iphone_validator, + 'ipad': MobileClientPlatform._ipad_validator, + 'android': MobileClientPlatform._android_validator, + 'windows_phone': MobileClientPlatform._windows_phone_validator, + 'blackberry': MobileClientPlatform._blackberry_validator, + 'other': MobileClientPlatform._other_validator, } -MobileClientPlatform.iphone = MobileClientPlatform("iphone") -MobileClientPlatform.ipad = MobileClientPlatform("ipad") -MobileClientPlatform.android = MobileClientPlatform("android") -MobileClientPlatform.windows_phone = MobileClientPlatform("windows_phone") -MobileClientPlatform.blackberry = MobileClientPlatform("blackberry") -MobileClientPlatform.other = MobileClientPlatform("other") +MobileClientPlatform.iphone = MobileClientPlatform('iphone') +MobileClientPlatform.ipad = MobileClientPlatform('ipad') +MobileClientPlatform.android = MobileClientPlatform('android') +MobileClientPlatform.windows_phone = MobileClientPlatform('windows_phone') +MobileClientPlatform.blackberry = MobileClientPlatform('blackberry') +MobileClientPlatform.other = MobileClientPlatform('other') MobileClientSession.device_name.validator = bv.String() MobileClientSession.client_type.validator = MobileClientPlatform_validator MobileClientSession.client_version.validator = bv.Nullable(bv.String()) MobileClientSession.os_version.validator = bv.Nullable(bv.String()) MobileClientSession.last_carrier.validator = bv.Nullable(bv.String()) -MobileClientSession._all_field_names_ = DeviceSession._all_field_names_.union( - set( - [ - "device_name", - "client_type", - "client_version", - "os_version", - "last_carrier", - ] - ) -) +MobileClientSession._all_field_names_ = DeviceSession._all_field_names_.union(set([ + 'device_name', + 'client_type', + 'client_version', + 'os_version', + 'last_carrier', +])) MobileClientSession._all_fields_ = DeviceSession._all_fields_ + [ - ("device_name", MobileClientSession.device_name.validator), - ("client_type", MobileClientSession.client_type.validator), - ("client_version", MobileClientSession.client_version.validator), - ("os_version", MobileClientSession.os_version.validator), - ("last_carrier", MobileClientSession.last_carrier.validator), + ('device_name', MobileClientSession.device_name.validator), + ('client_type', MobileClientSession.client_type.validator), + ('client_version', MobileClientSession.client_version.validator), + ('os_version', MobileClientSession.os_version.validator), + ('last_carrier', MobileClientSession.last_carrier.validator), ] NamespaceMetadata.name.validator = bv.String() @@ -18028,21 +16770,19 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): NamespaceMetadata.namespace_type.validator = NamespaceType_validator NamespaceMetadata.team_member_id.validator = bv.Nullable(team_common.TeamMemberId_validator) NamespaceMetadata.quota_limit.validator = bv.Int64() -NamespaceMetadata._all_field_names_ = set( - [ - "name", - "namespace_id", - "namespace_type", - "team_member_id", - "quota_limit", - ] -) +NamespaceMetadata._all_field_names_ = set([ + 'name', + 'namespace_id', + 'namespace_type', + 'team_member_id', + 'quota_limit', +]) NamespaceMetadata._all_fields_ = [ - ("name", NamespaceMetadata.name.validator), - ("namespace_id", NamespaceMetadata.namespace_id.validator), - ("namespace_type", NamespaceMetadata.namespace_type.validator), - ("team_member_id", NamespaceMetadata.team_member_id.validator), - ("quota_limit", NamespaceMetadata.quota_limit.validator), + ('name', NamespaceMetadata.name.validator), + ('namespace_id', NamespaceMetadata.namespace_id.validator), + ('namespace_type', NamespaceMetadata.namespace_type.validator), + ('team_member_id', NamespaceMetadata.team_member_id.validator), + ('quota_limit', NamespaceMetadata.quota_limit.validator), ] NamespaceType._app_folder_validator = bv.Void() @@ -18052,43 +16792,41 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): NamespaceType._team_member_root_validator = bv.Void() NamespaceType._other_validator = bv.Void() NamespaceType._tagmap = { - "app_folder": NamespaceType._app_folder_validator, - "shared_folder": NamespaceType._shared_folder_validator, - "team_folder": NamespaceType._team_folder_validator, - "team_member_folder": NamespaceType._team_member_folder_validator, - "team_member_root": NamespaceType._team_member_root_validator, - "other": NamespaceType._other_validator, + 'app_folder': NamespaceType._app_folder_validator, + 'shared_folder': NamespaceType._shared_folder_validator, + 'team_folder': NamespaceType._team_folder_validator, + 'team_member_folder': NamespaceType._team_member_folder_validator, + 'team_member_root': NamespaceType._team_member_root_validator, + 'other': NamespaceType._other_validator, } -NamespaceType.app_folder = NamespaceType("app_folder") -NamespaceType.shared_folder = NamespaceType("shared_folder") -NamespaceType.team_folder = NamespaceType("team_folder") -NamespaceType.team_member_folder = NamespaceType("team_member_folder") -NamespaceType.team_member_root = NamespaceType("team_member_root") -NamespaceType.other = NamespaceType("other") +NamespaceType.app_folder = NamespaceType('app_folder') +NamespaceType.shared_folder = NamespaceType('shared_folder') +NamespaceType.team_folder = NamespaceType('team_folder') +NamespaceType.team_member_folder = NamespaceType('team_member_folder') +NamespaceType.team_member_root = NamespaceType('team_member_root') +NamespaceType.other = NamespaceType('other') RemoveCustomQuotaResult._success_validator = UserSelectorArg_validator RemoveCustomQuotaResult._invalid_user_validator = UserSelectorArg_validator RemoveCustomQuotaResult._other_validator = bv.Void() RemoveCustomQuotaResult._tagmap = { - "success": RemoveCustomQuotaResult._success_validator, - "invalid_user": RemoveCustomQuotaResult._invalid_user_validator, - "other": RemoveCustomQuotaResult._other_validator, + 'success': RemoveCustomQuotaResult._success_validator, + 'invalid_user': RemoveCustomQuotaResult._invalid_user_validator, + 'other': RemoveCustomQuotaResult._other_validator, } -RemoveCustomQuotaResult.other = RemoveCustomQuotaResult("other") +RemoveCustomQuotaResult.other = RemoveCustomQuotaResult('other') RemovedStatus.is_recoverable.validator = bv.Boolean() RemovedStatus.is_disconnected.validator = bv.Boolean() -RemovedStatus._all_field_names_ = set( - [ - "is_recoverable", - "is_disconnected", - ] -) +RemovedStatus._all_field_names_ = set([ + 'is_recoverable', + 'is_disconnected', +]) RemovedStatus._all_fields_ = [ - ("is_recoverable", RemovedStatus.is_recoverable.validator), - ("is_disconnected", RemovedStatus.is_disconnected.validator), + ('is_recoverable', RemovedStatus.is_recoverable.validator), + ('is_disconnected', RemovedStatus.is_disconnected.validator), ] ResendSecondaryEmailResult._success_validator = common.EmailAddress_validator @@ -18096,191 +16834,151 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ResendSecondaryEmailResult._rate_limited_validator = common.EmailAddress_validator ResendSecondaryEmailResult._other_validator = bv.Void() ResendSecondaryEmailResult._tagmap = { - "success": ResendSecondaryEmailResult._success_validator, - "not_pending": ResendSecondaryEmailResult._not_pending_validator, - "rate_limited": ResendSecondaryEmailResult._rate_limited_validator, - "other": ResendSecondaryEmailResult._other_validator, + 'success': ResendSecondaryEmailResult._success_validator, + 'not_pending': ResendSecondaryEmailResult._not_pending_validator, + 'rate_limited': ResendSecondaryEmailResult._rate_limited_validator, + 'other': ResendSecondaryEmailResult._other_validator, } -ResendSecondaryEmailResult.other = ResendSecondaryEmailResult("other") +ResendSecondaryEmailResult.other = ResendSecondaryEmailResult('other') ResendVerificationEmailArg.emails_to_resend.validator = bv.List(UserSecondaryEmailsArg_validator) -ResendVerificationEmailArg._all_field_names_ = set(["emails_to_resend"]) -ResendVerificationEmailArg._all_fields_ = [ - ("emails_to_resend", ResendVerificationEmailArg.emails_to_resend.validator) -] +ResendVerificationEmailArg._all_field_names_ = set(['emails_to_resend']) +ResendVerificationEmailArg._all_fields_ = [('emails_to_resend', ResendVerificationEmailArg.emails_to_resend.validator)] ResendVerificationEmailResult.results.validator = bv.List(UserResendResult_validator) -ResendVerificationEmailResult._all_field_names_ = set(["results"]) -ResendVerificationEmailResult._all_fields_ = [ - ("results", ResendVerificationEmailResult.results.validator) -] +ResendVerificationEmailResult._all_field_names_ = set(['results']) +ResendVerificationEmailResult._all_fields_ = [('results', ResendVerificationEmailResult.results.validator)] RevokeDesktopClientArg.delete_on_unlink.validator = bv.Boolean() -RevokeDesktopClientArg._all_field_names_ = DeviceSessionArg._all_field_names_.union( - set(["delete_on_unlink"]) -) -RevokeDesktopClientArg._all_fields_ = DeviceSessionArg._all_fields_ + [ - ("delete_on_unlink", RevokeDesktopClientArg.delete_on_unlink.validator) -] +RevokeDesktopClientArg._all_field_names_ = DeviceSessionArg._all_field_names_.union(set(['delete_on_unlink'])) +RevokeDesktopClientArg._all_fields_ = DeviceSessionArg._all_fields_ + [('delete_on_unlink', RevokeDesktopClientArg.delete_on_unlink.validator)] RevokeDeviceSessionArg._web_session_validator = DeviceSessionArg_validator RevokeDeviceSessionArg._desktop_client_validator = RevokeDesktopClientArg_validator RevokeDeviceSessionArg._mobile_client_validator = DeviceSessionArg_validator RevokeDeviceSessionArg._tagmap = { - "web_session": RevokeDeviceSessionArg._web_session_validator, - "desktop_client": RevokeDeviceSessionArg._desktop_client_validator, - "mobile_client": RevokeDeviceSessionArg._mobile_client_validator, + 'web_session': RevokeDeviceSessionArg._web_session_validator, + 'desktop_client': RevokeDeviceSessionArg._desktop_client_validator, + 'mobile_client': RevokeDeviceSessionArg._mobile_client_validator, } RevokeDeviceSessionBatchArg.revoke_devices.validator = bv.List(RevokeDeviceSessionArg_validator) -RevokeDeviceSessionBatchArg._all_field_names_ = set(["revoke_devices"]) -RevokeDeviceSessionBatchArg._all_fields_ = [ - ("revoke_devices", RevokeDeviceSessionBatchArg.revoke_devices.validator) -] +RevokeDeviceSessionBatchArg._all_field_names_ = set(['revoke_devices']) +RevokeDeviceSessionBatchArg._all_fields_ = [('revoke_devices', RevokeDeviceSessionBatchArg.revoke_devices.validator)] RevokeDeviceSessionBatchError._other_validator = bv.Void() RevokeDeviceSessionBatchError._tagmap = { - "other": RevokeDeviceSessionBatchError._other_validator, + 'other': RevokeDeviceSessionBatchError._other_validator, } -RevokeDeviceSessionBatchError.other = RevokeDeviceSessionBatchError("other") +RevokeDeviceSessionBatchError.other = RevokeDeviceSessionBatchError('other') -RevokeDeviceSessionBatchResult.revoke_devices_status.validator = bv.List( - RevokeDeviceSessionStatus_validator -) -RevokeDeviceSessionBatchResult._all_field_names_ = set(["revoke_devices_status"]) -RevokeDeviceSessionBatchResult._all_fields_ = [ - ( - "revoke_devices_status", - RevokeDeviceSessionBatchResult.revoke_devices_status.validator, - ) -] +RevokeDeviceSessionBatchResult.revoke_devices_status.validator = bv.List(RevokeDeviceSessionStatus_validator) +RevokeDeviceSessionBatchResult._all_field_names_ = set(['revoke_devices_status']) +RevokeDeviceSessionBatchResult._all_fields_ = [('revoke_devices_status', RevokeDeviceSessionBatchResult.revoke_devices_status.validator)] RevokeDeviceSessionError._device_session_not_found_validator = bv.Void() RevokeDeviceSessionError._member_not_found_validator = bv.Void() RevokeDeviceSessionError._other_validator = bv.Void() RevokeDeviceSessionError._tagmap = { - "device_session_not_found": RevokeDeviceSessionError._device_session_not_found_validator, - "member_not_found": RevokeDeviceSessionError._member_not_found_validator, - "other": RevokeDeviceSessionError._other_validator, + 'device_session_not_found': RevokeDeviceSessionError._device_session_not_found_validator, + 'member_not_found': RevokeDeviceSessionError._member_not_found_validator, + 'other': RevokeDeviceSessionError._other_validator, } -RevokeDeviceSessionError.device_session_not_found = RevokeDeviceSessionError( - "device_session_not_found" -) -RevokeDeviceSessionError.member_not_found = RevokeDeviceSessionError("member_not_found") -RevokeDeviceSessionError.other = RevokeDeviceSessionError("other") +RevokeDeviceSessionError.device_session_not_found = RevokeDeviceSessionError('device_session_not_found') +RevokeDeviceSessionError.member_not_found = RevokeDeviceSessionError('member_not_found') +RevokeDeviceSessionError.other = RevokeDeviceSessionError('other') RevokeDeviceSessionStatus.success.validator = bv.Boolean() RevokeDeviceSessionStatus.error_type.validator = bv.Nullable(RevokeDeviceSessionError_validator) -RevokeDeviceSessionStatus._all_field_names_ = set( - [ - "success", - "error_type", - ] -) +RevokeDeviceSessionStatus._all_field_names_ = set([ + 'success', + 'error_type', +]) RevokeDeviceSessionStatus._all_fields_ = [ - ("success", RevokeDeviceSessionStatus.success.validator), - ("error_type", RevokeDeviceSessionStatus.error_type.validator), + ('success', RevokeDeviceSessionStatus.success.validator), + ('error_type', RevokeDeviceSessionStatus.error_type.validator), ] RevokeLinkedApiAppArg.app_id.validator = bv.String() RevokeLinkedApiAppArg.team_member_id.validator = bv.String() RevokeLinkedApiAppArg.keep_app_folder.validator = bv.Boolean() -RevokeLinkedApiAppArg._all_field_names_ = set( - [ - "app_id", - "team_member_id", - "keep_app_folder", - ] -) +RevokeLinkedApiAppArg._all_field_names_ = set([ + 'app_id', + 'team_member_id', + 'keep_app_folder', +]) RevokeLinkedApiAppArg._all_fields_ = [ - ("app_id", RevokeLinkedApiAppArg.app_id.validator), - ("team_member_id", RevokeLinkedApiAppArg.team_member_id.validator), - ("keep_app_folder", RevokeLinkedApiAppArg.keep_app_folder.validator), + ('app_id', RevokeLinkedApiAppArg.app_id.validator), + ('team_member_id', RevokeLinkedApiAppArg.team_member_id.validator), + ('keep_app_folder', RevokeLinkedApiAppArg.keep_app_folder.validator), ] RevokeLinkedApiAppBatchArg.revoke_linked_app.validator = bv.List(RevokeLinkedApiAppArg_validator) -RevokeLinkedApiAppBatchArg._all_field_names_ = set(["revoke_linked_app"]) -RevokeLinkedApiAppBatchArg._all_fields_ = [ - ("revoke_linked_app", RevokeLinkedApiAppBatchArg.revoke_linked_app.validator) -] +RevokeLinkedApiAppBatchArg._all_field_names_ = set(['revoke_linked_app']) +RevokeLinkedApiAppBatchArg._all_fields_ = [('revoke_linked_app', RevokeLinkedApiAppBatchArg.revoke_linked_app.validator)] RevokeLinkedAppBatchError._other_validator = bv.Void() RevokeLinkedAppBatchError._tagmap = { - "other": RevokeLinkedAppBatchError._other_validator, + 'other': RevokeLinkedAppBatchError._other_validator, } -RevokeLinkedAppBatchError.other = RevokeLinkedAppBatchError("other") +RevokeLinkedAppBatchError.other = RevokeLinkedAppBatchError('other') -RevokeLinkedAppBatchResult.revoke_linked_app_status.validator = bv.List( - RevokeLinkedAppStatus_validator -) -RevokeLinkedAppBatchResult._all_field_names_ = set(["revoke_linked_app_status"]) -RevokeLinkedAppBatchResult._all_fields_ = [ - ( - "revoke_linked_app_status", - RevokeLinkedAppBatchResult.revoke_linked_app_status.validator, - ) -] +RevokeLinkedAppBatchResult.revoke_linked_app_status.validator = bv.List(RevokeLinkedAppStatus_validator) +RevokeLinkedAppBatchResult._all_field_names_ = set(['revoke_linked_app_status']) +RevokeLinkedAppBatchResult._all_fields_ = [('revoke_linked_app_status', RevokeLinkedAppBatchResult.revoke_linked_app_status.validator)] RevokeLinkedAppError._app_not_found_validator = bv.Void() RevokeLinkedAppError._member_not_found_validator = bv.Void() RevokeLinkedAppError._app_folder_removal_not_supported_validator = bv.Void() RevokeLinkedAppError._other_validator = bv.Void() RevokeLinkedAppError._tagmap = { - "app_not_found": RevokeLinkedAppError._app_not_found_validator, - "member_not_found": RevokeLinkedAppError._member_not_found_validator, - "app_folder_removal_not_supported": RevokeLinkedAppError._app_folder_removal_not_supported_validator, - "other": RevokeLinkedAppError._other_validator, + 'app_not_found': RevokeLinkedAppError._app_not_found_validator, + 'member_not_found': RevokeLinkedAppError._member_not_found_validator, + 'app_folder_removal_not_supported': RevokeLinkedAppError._app_folder_removal_not_supported_validator, + 'other': RevokeLinkedAppError._other_validator, } -RevokeLinkedAppError.app_not_found = RevokeLinkedAppError("app_not_found") -RevokeLinkedAppError.member_not_found = RevokeLinkedAppError("member_not_found") -RevokeLinkedAppError.app_folder_removal_not_supported = RevokeLinkedAppError( - "app_folder_removal_not_supported" -) -RevokeLinkedAppError.other = RevokeLinkedAppError("other") +RevokeLinkedAppError.app_not_found = RevokeLinkedAppError('app_not_found') +RevokeLinkedAppError.member_not_found = RevokeLinkedAppError('member_not_found') +RevokeLinkedAppError.app_folder_removal_not_supported = RevokeLinkedAppError('app_folder_removal_not_supported') +RevokeLinkedAppError.other = RevokeLinkedAppError('other') RevokeLinkedAppStatus.success.validator = bv.Boolean() RevokeLinkedAppStatus.error_type.validator = bv.Nullable(RevokeLinkedAppError_validator) -RevokeLinkedAppStatus._all_field_names_ = set( - [ - "success", - "error_type", - ] -) +RevokeLinkedAppStatus._all_field_names_ = set([ + 'success', + 'error_type', +]) RevokeLinkedAppStatus._all_fields_ = [ - ("success", RevokeLinkedAppStatus.success.validator), - ("error_type", RevokeLinkedAppStatus.error_type.validator), + ('success', RevokeLinkedAppStatus.success.validator), + ('error_type', RevokeLinkedAppStatus.error_type.validator), ] SetCustomQuotaArg.users_and_quotas.validator = bv.List(UserCustomQuotaArg_validator) -SetCustomQuotaArg._all_field_names_ = set(["users_and_quotas"]) -SetCustomQuotaArg._all_fields_ = [ - ("users_and_quotas", SetCustomQuotaArg.users_and_quotas.validator) -] +SetCustomQuotaArg._all_field_names_ = set(['users_and_quotas']) +SetCustomQuotaArg._all_fields_ = [('users_and_quotas', SetCustomQuotaArg.users_and_quotas.validator)] SetCustomQuotaError._some_users_are_excluded_validator = bv.Void() SetCustomQuotaError._tagmap = { - "some_users_are_excluded": SetCustomQuotaError._some_users_are_excluded_validator, + 'some_users_are_excluded': SetCustomQuotaError._some_users_are_excluded_validator, } SetCustomQuotaError._tagmap.update(CustomQuotaError._tagmap) -SetCustomQuotaError.some_users_are_excluded = SetCustomQuotaError("some_users_are_excluded") +SetCustomQuotaError.some_users_are_excluded = SetCustomQuotaError('some_users_are_excluded') SharingAllowlistAddArgs.domains.validator = bv.Nullable(bv.List(bv.String())) SharingAllowlistAddArgs.emails.validator = bv.Nullable(bv.List(bv.String())) -SharingAllowlistAddArgs._all_field_names_ = set( - [ - "domains", - "emails", - ] -) +SharingAllowlistAddArgs._all_field_names_ = set([ + 'domains', + 'emails', +]) SharingAllowlistAddArgs._all_fields_ = [ - ("domains", SharingAllowlistAddArgs.domains.validator), - ("emails", SharingAllowlistAddArgs.emails.validator), + ('domains', SharingAllowlistAddArgs.domains.validator), + ('emails', SharingAllowlistAddArgs.emails.validator), ] SharingAllowlistAddError._malformed_entry_validator = bv.String() @@ -18291,47 +16989,41 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): SharingAllowlistAddError._entries_already_exist_validator = bv.String() SharingAllowlistAddError._other_validator = bv.Void() SharingAllowlistAddError._tagmap = { - "malformed_entry": SharingAllowlistAddError._malformed_entry_validator, - "no_entries_provided": SharingAllowlistAddError._no_entries_provided_validator, - "too_many_entries_provided": SharingAllowlistAddError._too_many_entries_provided_validator, - "team_limit_reached": SharingAllowlistAddError._team_limit_reached_validator, - "unknown_error": SharingAllowlistAddError._unknown_error_validator, - "entries_already_exist": SharingAllowlistAddError._entries_already_exist_validator, - "other": SharingAllowlistAddError._other_validator, + 'malformed_entry': SharingAllowlistAddError._malformed_entry_validator, + 'no_entries_provided': SharingAllowlistAddError._no_entries_provided_validator, + 'too_many_entries_provided': SharingAllowlistAddError._too_many_entries_provided_validator, + 'team_limit_reached': SharingAllowlistAddError._team_limit_reached_validator, + 'unknown_error': SharingAllowlistAddError._unknown_error_validator, + 'entries_already_exist': SharingAllowlistAddError._entries_already_exist_validator, + 'other': SharingAllowlistAddError._other_validator, } -SharingAllowlistAddError.no_entries_provided = SharingAllowlistAddError("no_entries_provided") -SharingAllowlistAddError.too_many_entries_provided = SharingAllowlistAddError( - "too_many_entries_provided" -) -SharingAllowlistAddError.team_limit_reached = SharingAllowlistAddError("team_limit_reached") -SharingAllowlistAddError.unknown_error = SharingAllowlistAddError("unknown_error") -SharingAllowlistAddError.other = SharingAllowlistAddError("other") +SharingAllowlistAddError.no_entries_provided = SharingAllowlistAddError('no_entries_provided') +SharingAllowlistAddError.too_many_entries_provided = SharingAllowlistAddError('too_many_entries_provided') +SharingAllowlistAddError.team_limit_reached = SharingAllowlistAddError('team_limit_reached') +SharingAllowlistAddError.unknown_error = SharingAllowlistAddError('unknown_error') +SharingAllowlistAddError.other = SharingAllowlistAddError('other') SharingAllowlistAddResponse._all_field_names_ = set([]) SharingAllowlistAddResponse._all_fields_ = [] SharingAllowlistListArg.limit.validator = bv.UInt32(min_value=1, max_value=1000) -SharingAllowlistListArg._all_field_names_ = set(["limit"]) -SharingAllowlistListArg._all_fields_ = [("limit", SharingAllowlistListArg.limit.validator)] +SharingAllowlistListArg._all_field_names_ = set(['limit']) +SharingAllowlistListArg._all_fields_ = [('limit', SharingAllowlistListArg.limit.validator)] SharingAllowlistListContinueArg.cursor.validator = bv.String() -SharingAllowlistListContinueArg._all_field_names_ = set(["cursor"]) -SharingAllowlistListContinueArg._all_fields_ = [ - ("cursor", SharingAllowlistListContinueArg.cursor.validator) -] +SharingAllowlistListContinueArg._all_field_names_ = set(['cursor']) +SharingAllowlistListContinueArg._all_fields_ = [('cursor', SharingAllowlistListContinueArg.cursor.validator)] SharingAllowlistListContinueError._invalid_cursor_validator = bv.Void() SharingAllowlistListContinueError._other_validator = bv.Void() SharingAllowlistListContinueError._tagmap = { - "invalid_cursor": SharingAllowlistListContinueError._invalid_cursor_validator, - "other": SharingAllowlistListContinueError._other_validator, + 'invalid_cursor': SharingAllowlistListContinueError._invalid_cursor_validator, + 'other': SharingAllowlistListContinueError._other_validator, } -SharingAllowlistListContinueError.invalid_cursor = SharingAllowlistListContinueError( - "invalid_cursor" -) -SharingAllowlistListContinueError.other = SharingAllowlistListContinueError("other") +SharingAllowlistListContinueError.invalid_cursor = SharingAllowlistListContinueError('invalid_cursor') +SharingAllowlistListContinueError.other = SharingAllowlistListContinueError('other') SharingAllowlistListError._all_field_names_ = set([]) SharingAllowlistListError._all_fields_ = [] @@ -18340,32 +17032,28 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): SharingAllowlistListResponse.emails.validator = bv.List(bv.String()) SharingAllowlistListResponse.cursor.validator = bv.String() SharingAllowlistListResponse.has_more.validator = bv.Boolean() -SharingAllowlistListResponse._all_field_names_ = set( - [ - "domains", - "emails", - "cursor", - "has_more", - ] -) +SharingAllowlistListResponse._all_field_names_ = set([ + 'domains', + 'emails', + 'cursor', + 'has_more', +]) SharingAllowlistListResponse._all_fields_ = [ - ("domains", SharingAllowlistListResponse.domains.validator), - ("emails", SharingAllowlistListResponse.emails.validator), - ("cursor", SharingAllowlistListResponse.cursor.validator), - ("has_more", SharingAllowlistListResponse.has_more.validator), + ('domains', SharingAllowlistListResponse.domains.validator), + ('emails', SharingAllowlistListResponse.emails.validator), + ('cursor', SharingAllowlistListResponse.cursor.validator), + ('has_more', SharingAllowlistListResponse.has_more.validator), ] SharingAllowlistRemoveArgs.domains.validator = bv.Nullable(bv.List(bv.String())) SharingAllowlistRemoveArgs.emails.validator = bv.Nullable(bv.List(bv.String())) -SharingAllowlistRemoveArgs._all_field_names_ = set( - [ - "domains", - "emails", - ] -) +SharingAllowlistRemoveArgs._all_field_names_ = set([ + 'domains', + 'emails', +]) SharingAllowlistRemoveArgs._all_fields_ = [ - ("domains", SharingAllowlistRemoveArgs.domains.validator), - ("emails", SharingAllowlistRemoveArgs.emails.validator), + ('domains', SharingAllowlistRemoveArgs.domains.validator), + ('emails', SharingAllowlistRemoveArgs.emails.validator), ] SharingAllowlistRemoveError._malformed_entry_validator = bv.String() @@ -18375,93 +17063,85 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): SharingAllowlistRemoveError._unknown_error_validator = bv.Void() SharingAllowlistRemoveError._other_validator = bv.Void() SharingAllowlistRemoveError._tagmap = { - "malformed_entry": SharingAllowlistRemoveError._malformed_entry_validator, - "entries_do_not_exist": SharingAllowlistRemoveError._entries_do_not_exist_validator, - "no_entries_provided": SharingAllowlistRemoveError._no_entries_provided_validator, - "too_many_entries_provided": SharingAllowlistRemoveError._too_many_entries_provided_validator, - "unknown_error": SharingAllowlistRemoveError._unknown_error_validator, - "other": SharingAllowlistRemoveError._other_validator, + 'malformed_entry': SharingAllowlistRemoveError._malformed_entry_validator, + 'entries_do_not_exist': SharingAllowlistRemoveError._entries_do_not_exist_validator, + 'no_entries_provided': SharingAllowlistRemoveError._no_entries_provided_validator, + 'too_many_entries_provided': SharingAllowlistRemoveError._too_many_entries_provided_validator, + 'unknown_error': SharingAllowlistRemoveError._unknown_error_validator, + 'other': SharingAllowlistRemoveError._other_validator, } -SharingAllowlistRemoveError.no_entries_provided = SharingAllowlistRemoveError("no_entries_provided") -SharingAllowlistRemoveError.too_many_entries_provided = SharingAllowlistRemoveError( - "too_many_entries_provided" -) -SharingAllowlistRemoveError.unknown_error = SharingAllowlistRemoveError("unknown_error") -SharingAllowlistRemoveError.other = SharingAllowlistRemoveError("other") +SharingAllowlistRemoveError.no_entries_provided = SharingAllowlistRemoveError('no_entries_provided') +SharingAllowlistRemoveError.too_many_entries_provided = SharingAllowlistRemoveError('too_many_entries_provided') +SharingAllowlistRemoveError.unknown_error = SharingAllowlistRemoveError('unknown_error') +SharingAllowlistRemoveError.other = SharingAllowlistRemoveError('other') SharingAllowlistRemoveResponse._all_field_names_ = set([]) SharingAllowlistRemoveResponse._all_fields_ = [] StorageBucket.bucket.validator = bv.String() StorageBucket.users.validator = bv.UInt64() -StorageBucket._all_field_names_ = set( - [ - "bucket", - "users", - ] -) +StorageBucket._all_field_names_ = set([ + 'bucket', + 'users', +]) StorageBucket._all_fields_ = [ - ("bucket", StorageBucket.bucket.validator), - ("users", StorageBucket.users.validator), + ('bucket', StorageBucket.bucket.validator), + ('users', StorageBucket.users.validator), ] TeamFolderAccessError._invalid_team_folder_id_validator = bv.Void() TeamFolderAccessError._no_access_validator = bv.Void() TeamFolderAccessError._other_validator = bv.Void() TeamFolderAccessError._tagmap = { - "invalid_team_folder_id": TeamFolderAccessError._invalid_team_folder_id_validator, - "no_access": TeamFolderAccessError._no_access_validator, - "other": TeamFolderAccessError._other_validator, + 'invalid_team_folder_id': TeamFolderAccessError._invalid_team_folder_id_validator, + 'no_access': TeamFolderAccessError._no_access_validator, + 'other': TeamFolderAccessError._other_validator, } -TeamFolderAccessError.invalid_team_folder_id = TeamFolderAccessError("invalid_team_folder_id") -TeamFolderAccessError.no_access = TeamFolderAccessError("no_access") -TeamFolderAccessError.other = TeamFolderAccessError("other") +TeamFolderAccessError.invalid_team_folder_id = TeamFolderAccessError('invalid_team_folder_id') +TeamFolderAccessError.no_access = TeamFolderAccessError('no_access') +TeamFolderAccessError.other = TeamFolderAccessError('other') -TeamFolderActivateError._tagmap = {} +TeamFolderActivateError._tagmap = { +} TeamFolderActivateError._tagmap.update(BaseTeamFolderError._tagmap) TeamFolderIdArg.team_folder_id.validator = common.SharedFolderId_validator -TeamFolderIdArg._all_field_names_ = set(["team_folder_id"]) -TeamFolderIdArg._all_fields_ = [("team_folder_id", TeamFolderIdArg.team_folder_id.validator)] +TeamFolderIdArg._all_field_names_ = set(['team_folder_id']) +TeamFolderIdArg._all_fields_ = [('team_folder_id', TeamFolderIdArg.team_folder_id.validator)] TeamFolderArchiveArg.force_async_off.validator = bv.Boolean() -TeamFolderArchiveArg._all_field_names_ = TeamFolderIdArg._all_field_names_.union( - set(["force_async_off"]) -) -TeamFolderArchiveArg._all_fields_ = TeamFolderIdArg._all_fields_ + [ - ("force_async_off", TeamFolderArchiveArg.force_async_off.validator) -] +TeamFolderArchiveArg._all_field_names_ = TeamFolderIdArg._all_field_names_.union(set(['force_async_off'])) +TeamFolderArchiveArg._all_fields_ = TeamFolderIdArg._all_fields_ + [('force_async_off', TeamFolderArchiveArg.force_async_off.validator)] -TeamFolderArchiveError._tagmap = {} +TeamFolderArchiveError._tagmap = { +} TeamFolderArchiveError._tagmap.update(BaseTeamFolderError._tagmap) TeamFolderArchiveJobStatus._complete_validator = TeamFolderMetadata_validator TeamFolderArchiveJobStatus._failed_validator = TeamFolderArchiveError_validator TeamFolderArchiveJobStatus._tagmap = { - "complete": TeamFolderArchiveJobStatus._complete_validator, - "failed": TeamFolderArchiveJobStatus._failed_validator, + 'complete': TeamFolderArchiveJobStatus._complete_validator, + 'failed': TeamFolderArchiveJobStatus._failed_validator, } TeamFolderArchiveJobStatus._tagmap.update(async_.PollResultBase._tagmap) TeamFolderArchiveLaunch._complete_validator = TeamFolderMetadata_validator TeamFolderArchiveLaunch._tagmap = { - "complete": TeamFolderArchiveLaunch._complete_validator, + 'complete': TeamFolderArchiveLaunch._complete_validator, } TeamFolderArchiveLaunch._tagmap.update(async_.LaunchResultBase._tagmap) TeamFolderCreateArg.name.validator = bv.String() TeamFolderCreateArg.sync_setting.validator = bv.Nullable(files.SyncSettingArg_validator) -TeamFolderCreateArg._all_field_names_ = set( - [ - "name", - "sync_setting", - ] -) +TeamFolderCreateArg._all_field_names_ = set([ + 'name', + 'sync_setting', +]) TeamFolderCreateArg._all_fields_ = [ - ("name", TeamFolderCreateArg.name.validator), - ("sync_setting", TeamFolderCreateArg.sync_setting.validator), + ('name', TeamFolderCreateArg.name.validator), + ('sync_setting', TeamFolderCreateArg.sync_setting.validator), ] TeamFolderCreateError._invalid_folder_name_validator = bv.Void() @@ -18471,91 +17151,81 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): TeamFolderCreateError._folder_count_limit_exceeded_validator = bv.Void() TeamFolderCreateError._other_validator = bv.Void() TeamFolderCreateError._tagmap = { - "invalid_folder_name": TeamFolderCreateError._invalid_folder_name_validator, - "folder_name_already_used": TeamFolderCreateError._folder_name_already_used_validator, - "folder_name_reserved": TeamFolderCreateError._folder_name_reserved_validator, - "sync_settings_error": TeamFolderCreateError._sync_settings_error_validator, - "folder_count_limit_exceeded": TeamFolderCreateError._folder_count_limit_exceeded_validator, - "other": TeamFolderCreateError._other_validator, + 'invalid_folder_name': TeamFolderCreateError._invalid_folder_name_validator, + 'folder_name_already_used': TeamFolderCreateError._folder_name_already_used_validator, + 'folder_name_reserved': TeamFolderCreateError._folder_name_reserved_validator, + 'sync_settings_error': TeamFolderCreateError._sync_settings_error_validator, + 'folder_count_limit_exceeded': TeamFolderCreateError._folder_count_limit_exceeded_validator, + 'other': TeamFolderCreateError._other_validator, } -TeamFolderCreateError.invalid_folder_name = TeamFolderCreateError("invalid_folder_name") -TeamFolderCreateError.folder_name_already_used = TeamFolderCreateError("folder_name_already_used") -TeamFolderCreateError.folder_name_reserved = TeamFolderCreateError("folder_name_reserved") -TeamFolderCreateError.folder_count_limit_exceeded = TeamFolderCreateError( - "folder_count_limit_exceeded" -) -TeamFolderCreateError.other = TeamFolderCreateError("other") +TeamFolderCreateError.invalid_folder_name = TeamFolderCreateError('invalid_folder_name') +TeamFolderCreateError.folder_name_already_used = TeamFolderCreateError('folder_name_already_used') +TeamFolderCreateError.folder_name_reserved = TeamFolderCreateError('folder_name_reserved') +TeamFolderCreateError.folder_count_limit_exceeded = TeamFolderCreateError('folder_count_limit_exceeded') +TeamFolderCreateError.other = TeamFolderCreateError('other') TeamFolderGetInfoItem._id_not_found_validator = bv.String() TeamFolderGetInfoItem._team_folder_metadata_validator = TeamFolderMetadata_validator TeamFolderGetInfoItem._tagmap = { - "id_not_found": TeamFolderGetInfoItem._id_not_found_validator, - "team_folder_metadata": TeamFolderGetInfoItem._team_folder_metadata_validator, + 'id_not_found': TeamFolderGetInfoItem._id_not_found_validator, + 'team_folder_metadata': TeamFolderGetInfoItem._team_folder_metadata_validator, } -TeamFolderIdListArg.team_folder_ids.validator = bv.List( - common.SharedFolderId_validator, min_items=1 -) -TeamFolderIdListArg._all_field_names_ = set(["team_folder_ids"]) -TeamFolderIdListArg._all_fields_ = [ - ("team_folder_ids", TeamFolderIdListArg.team_folder_ids.validator) -] +TeamFolderIdListArg.team_folder_ids.validator = bv.List(common.SharedFolderId_validator, min_items=1) +TeamFolderIdListArg._all_field_names_ = set(['team_folder_ids']) +TeamFolderIdListArg._all_fields_ = [('team_folder_ids', TeamFolderIdListArg.team_folder_ids.validator)] TeamFolderInvalidStatusError._active_validator = bv.Void() TeamFolderInvalidStatusError._archived_validator = bv.Void() TeamFolderInvalidStatusError._archive_in_progress_validator = bv.Void() TeamFolderInvalidStatusError._other_validator = bv.Void() TeamFolderInvalidStatusError._tagmap = { - "active": TeamFolderInvalidStatusError._active_validator, - "archived": TeamFolderInvalidStatusError._archived_validator, - "archive_in_progress": TeamFolderInvalidStatusError._archive_in_progress_validator, - "other": TeamFolderInvalidStatusError._other_validator, + 'active': TeamFolderInvalidStatusError._active_validator, + 'archived': TeamFolderInvalidStatusError._archived_validator, + 'archive_in_progress': TeamFolderInvalidStatusError._archive_in_progress_validator, + 'other': TeamFolderInvalidStatusError._other_validator, } -TeamFolderInvalidStatusError.active = TeamFolderInvalidStatusError("active") -TeamFolderInvalidStatusError.archived = TeamFolderInvalidStatusError("archived") -TeamFolderInvalidStatusError.archive_in_progress = TeamFolderInvalidStatusError( - "archive_in_progress" -) -TeamFolderInvalidStatusError.other = TeamFolderInvalidStatusError("other") +TeamFolderInvalidStatusError.active = TeamFolderInvalidStatusError('active') +TeamFolderInvalidStatusError.archived = TeamFolderInvalidStatusError('archived') +TeamFolderInvalidStatusError.archive_in_progress = TeamFolderInvalidStatusError('archive_in_progress') +TeamFolderInvalidStatusError.other = TeamFolderInvalidStatusError('other') TeamFolderListArg.limit.validator = bv.UInt32(min_value=1, max_value=1000) -TeamFolderListArg._all_field_names_ = set(["limit"]) -TeamFolderListArg._all_fields_ = [("limit", TeamFolderListArg.limit.validator)] +TeamFolderListArg._all_field_names_ = set(['limit']) +TeamFolderListArg._all_fields_ = [('limit', TeamFolderListArg.limit.validator)] TeamFolderListContinueArg.cursor.validator = bv.String() -TeamFolderListContinueArg._all_field_names_ = set(["cursor"]) -TeamFolderListContinueArg._all_fields_ = [("cursor", TeamFolderListContinueArg.cursor.validator)] +TeamFolderListContinueArg._all_field_names_ = set(['cursor']) +TeamFolderListContinueArg._all_fields_ = [('cursor', TeamFolderListContinueArg.cursor.validator)] TeamFolderListContinueError._invalid_cursor_validator = bv.Void() TeamFolderListContinueError._other_validator = bv.Void() TeamFolderListContinueError._tagmap = { - "invalid_cursor": TeamFolderListContinueError._invalid_cursor_validator, - "other": TeamFolderListContinueError._other_validator, + 'invalid_cursor': TeamFolderListContinueError._invalid_cursor_validator, + 'other': TeamFolderListContinueError._other_validator, } -TeamFolderListContinueError.invalid_cursor = TeamFolderListContinueError("invalid_cursor") -TeamFolderListContinueError.other = TeamFolderListContinueError("other") +TeamFolderListContinueError.invalid_cursor = TeamFolderListContinueError('invalid_cursor') +TeamFolderListContinueError.other = TeamFolderListContinueError('other') TeamFolderListError.access_error.validator = TeamFolderAccessError_validator -TeamFolderListError._all_field_names_ = set(["access_error"]) -TeamFolderListError._all_fields_ = [("access_error", TeamFolderListError.access_error.validator)] +TeamFolderListError._all_field_names_ = set(['access_error']) +TeamFolderListError._all_fields_ = [('access_error', TeamFolderListError.access_error.validator)] TeamFolderListResult.team_folders.validator = bv.List(TeamFolderMetadata_validator) TeamFolderListResult.cursor.validator = bv.String() TeamFolderListResult.has_more.validator = bv.Boolean() -TeamFolderListResult._all_field_names_ = set( - [ - "team_folders", - "cursor", - "has_more", - ] -) +TeamFolderListResult._all_field_names_ = set([ + 'team_folders', + 'cursor', + 'has_more', +]) TeamFolderListResult._all_fields_ = [ - ("team_folders", TeamFolderListResult.team_folders.validator), - ("cursor", TeamFolderListResult.cursor.validator), - ("has_more", TeamFolderListResult.has_more.validator), + ('team_folders', TeamFolderListResult.team_folders.validator), + ('cursor', TeamFolderListResult.cursor.validator), + ('has_more', TeamFolderListResult.has_more.validator), ] TeamFolderMetadata.team_folder_id.validator = common.SharedFolderId_validator @@ -18565,51 +17235,49 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): TeamFolderMetadata.sync_setting.validator = files.SyncSetting_validator TeamFolderMetadata.content_sync_settings.validator = bv.List(files.ContentSyncSetting_validator) TeamFolderMetadata.quota_limit.validator = bv.Int64() -TeamFolderMetadata._all_field_names_ = set( - [ - "team_folder_id", - "name", - "status", - "is_team_shared_dropbox", - "sync_setting", - "content_sync_settings", - "quota_limit", - ] -) +TeamFolderMetadata._all_field_names_ = set([ + 'team_folder_id', + 'name', + 'status', + 'is_team_shared_dropbox', + 'sync_setting', + 'content_sync_settings', + 'quota_limit', +]) TeamFolderMetadata._all_fields_ = [ - ("team_folder_id", TeamFolderMetadata.team_folder_id.validator), - ("name", TeamFolderMetadata.name.validator), - ("status", TeamFolderMetadata.status.validator), - ("is_team_shared_dropbox", TeamFolderMetadata.is_team_shared_dropbox.validator), - ("sync_setting", TeamFolderMetadata.sync_setting.validator), - ("content_sync_settings", TeamFolderMetadata.content_sync_settings.validator), - ("quota_limit", TeamFolderMetadata.quota_limit.validator), + ('team_folder_id', TeamFolderMetadata.team_folder_id.validator), + ('name', TeamFolderMetadata.name.validator), + ('status', TeamFolderMetadata.status.validator), + ('is_team_shared_dropbox', TeamFolderMetadata.is_team_shared_dropbox.validator), + ('sync_setting', TeamFolderMetadata.sync_setting.validator), + ('content_sync_settings', TeamFolderMetadata.content_sync_settings.validator), + ('quota_limit', TeamFolderMetadata.quota_limit.validator), ] -TeamFolderPermanentlyDeleteError._tagmap = {} +TeamFolderPermanentlyDeleteError._tagmap = { +} TeamFolderPermanentlyDeleteError._tagmap.update(BaseTeamFolderError._tagmap) TeamFolderRenameArg.name.validator = bv.String() -TeamFolderRenameArg._all_field_names_ = TeamFolderIdArg._all_field_names_.union(set(["name"])) -TeamFolderRenameArg._all_fields_ = TeamFolderIdArg._all_fields_ + [ - ("name", TeamFolderRenameArg.name.validator) -] +TeamFolderRenameArg._all_field_names_ = TeamFolderIdArg._all_field_names_.union(set(['name'])) +TeamFolderRenameArg._all_fields_ = TeamFolderIdArg._all_fields_ + [('name', TeamFolderRenameArg.name.validator)] TeamFolderRenameError._invalid_folder_name_validator = bv.Void() TeamFolderRenameError._folder_name_already_used_validator = bv.Void() TeamFolderRenameError._folder_name_reserved_validator = bv.Void() TeamFolderRenameError._tagmap = { - "invalid_folder_name": TeamFolderRenameError._invalid_folder_name_validator, - "folder_name_already_used": TeamFolderRenameError._folder_name_already_used_validator, - "folder_name_reserved": TeamFolderRenameError._folder_name_reserved_validator, + 'invalid_folder_name': TeamFolderRenameError._invalid_folder_name_validator, + 'folder_name_already_used': TeamFolderRenameError._folder_name_already_used_validator, + 'folder_name_reserved': TeamFolderRenameError._folder_name_reserved_validator, } TeamFolderRenameError._tagmap.update(BaseTeamFolderError._tagmap) -TeamFolderRenameError.invalid_folder_name = TeamFolderRenameError("invalid_folder_name") -TeamFolderRenameError.folder_name_already_used = TeamFolderRenameError("folder_name_already_used") -TeamFolderRenameError.folder_name_reserved = TeamFolderRenameError("folder_name_reserved") +TeamFolderRenameError.invalid_folder_name = TeamFolderRenameError('invalid_folder_name') +TeamFolderRenameError.folder_name_already_used = TeamFolderRenameError('folder_name_already_used') +TeamFolderRenameError.folder_name_reserved = TeamFolderRenameError('folder_name_reserved') -TeamFolderRestoreError._tagmap = {} +TeamFolderRestoreError._tagmap = { +} TeamFolderRestoreError._tagmap.update(BaseTeamFolderError._tagmap) TeamFolderStatus._active_validator = bv.Void() @@ -18618,52 +17286,43 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): TeamFolderStatus._inactive_validator = bv.Void() TeamFolderStatus._other_validator = bv.Void() TeamFolderStatus._tagmap = { - "active": TeamFolderStatus._active_validator, - "archived": TeamFolderStatus._archived_validator, - "archive_in_progress": TeamFolderStatus._archive_in_progress_validator, - "inactive": TeamFolderStatus._inactive_validator, - "other": TeamFolderStatus._other_validator, + 'active': TeamFolderStatus._active_validator, + 'archived': TeamFolderStatus._archived_validator, + 'archive_in_progress': TeamFolderStatus._archive_in_progress_validator, + 'inactive': TeamFolderStatus._inactive_validator, + 'other': TeamFolderStatus._other_validator, } -TeamFolderStatus.active = TeamFolderStatus("active") -TeamFolderStatus.archived = TeamFolderStatus("archived") -TeamFolderStatus.archive_in_progress = TeamFolderStatus("archive_in_progress") -TeamFolderStatus.inactive = TeamFolderStatus("inactive") -TeamFolderStatus.other = TeamFolderStatus("other") +TeamFolderStatus.active = TeamFolderStatus('active') +TeamFolderStatus.archived = TeamFolderStatus('archived') +TeamFolderStatus.archive_in_progress = TeamFolderStatus('archive_in_progress') +TeamFolderStatus.inactive = TeamFolderStatus('inactive') +TeamFolderStatus.other = TeamFolderStatus('other') TeamFolderTeamSharedDropboxError._disallowed_validator = bv.Void() TeamFolderTeamSharedDropboxError._other_validator = bv.Void() TeamFolderTeamSharedDropboxError._tagmap = { - "disallowed": TeamFolderTeamSharedDropboxError._disallowed_validator, - "other": TeamFolderTeamSharedDropboxError._other_validator, + 'disallowed': TeamFolderTeamSharedDropboxError._disallowed_validator, + 'other': TeamFolderTeamSharedDropboxError._other_validator, } -TeamFolderTeamSharedDropboxError.disallowed = TeamFolderTeamSharedDropboxError("disallowed") -TeamFolderTeamSharedDropboxError.other = TeamFolderTeamSharedDropboxError("other") +TeamFolderTeamSharedDropboxError.disallowed = TeamFolderTeamSharedDropboxError('disallowed') +TeamFolderTeamSharedDropboxError.other = TeamFolderTeamSharedDropboxError('other') TeamFolderUpdateSyncSettingsArg.sync_setting.validator = bv.Nullable(files.SyncSettingArg_validator) -TeamFolderUpdateSyncSettingsArg.content_sync_settings.validator = bv.Nullable( - bv.List(files.ContentSyncSettingArg_validator) -) -TeamFolderUpdateSyncSettingsArg._all_field_names_ = TeamFolderIdArg._all_field_names_.union( - set( - [ - "sync_setting", - "content_sync_settings", - ] - ) -) +TeamFolderUpdateSyncSettingsArg.content_sync_settings.validator = bv.Nullable(bv.List(files.ContentSyncSettingArg_validator)) +TeamFolderUpdateSyncSettingsArg._all_field_names_ = TeamFolderIdArg._all_field_names_.union(set([ + 'sync_setting', + 'content_sync_settings', +])) TeamFolderUpdateSyncSettingsArg._all_fields_ = TeamFolderIdArg._all_fields_ + [ - ("sync_setting", TeamFolderUpdateSyncSettingsArg.sync_setting.validator), - ( - "content_sync_settings", - TeamFolderUpdateSyncSettingsArg.content_sync_settings.validator, - ), + ('sync_setting', TeamFolderUpdateSyncSettingsArg.sync_setting.validator), + ('content_sync_settings', TeamFolderUpdateSyncSettingsArg.content_sync_settings.validator), ] TeamFolderUpdateSyncSettingsError._sync_settings_error_validator = files.SyncSettingsError_validator TeamFolderUpdateSyncSettingsError._tagmap = { - "sync_settings_error": TeamFolderUpdateSyncSettingsError._sync_settings_error_validator, + 'sync_settings_error': TeamFolderUpdateSyncSettingsError._sync_settings_error_validator, } TeamFolderUpdateSyncSettingsError._tagmap.update(BaseTeamFolderError._tagmap) @@ -18673,89 +17332,75 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): TeamGetInfoResult.num_provisioned_users.validator = bv.UInt32() TeamGetInfoResult.num_used_licenses.validator = bv.UInt32() TeamGetInfoResult.policies.validator = team_policies.TeamMemberPolicies_validator -TeamGetInfoResult._all_field_names_ = set( - [ - "name", - "team_id", - "num_licensed_users", - "num_provisioned_users", - "num_used_licenses", - "policies", - ] -) +TeamGetInfoResult._all_field_names_ = set([ + 'name', + 'team_id', + 'num_licensed_users', + 'num_provisioned_users', + 'num_used_licenses', + 'policies', +]) TeamGetInfoResult._all_fields_ = [ - ("name", TeamGetInfoResult.name.validator), - ("team_id", TeamGetInfoResult.team_id.validator), - ("num_licensed_users", TeamGetInfoResult.num_licensed_users.validator), - ("num_provisioned_users", TeamGetInfoResult.num_provisioned_users.validator), - ("num_used_licenses", TeamGetInfoResult.num_used_licenses.validator), - ("policies", TeamGetInfoResult.policies.validator), + ('name', TeamGetInfoResult.name.validator), + ('team_id', TeamGetInfoResult.team_id.validator), + ('num_licensed_users', TeamGetInfoResult.num_licensed_users.validator), + ('num_provisioned_users', TeamGetInfoResult.num_provisioned_users.validator), + ('num_used_licenses', TeamGetInfoResult.num_used_licenses.validator), + ('policies', TeamGetInfoResult.policies.validator), ] TeamMemberInfo.profile.validator = TeamMemberProfile_validator TeamMemberInfo.role.validator = AdminTier_validator -TeamMemberInfo._all_field_names_ = set( - [ - "profile", - "role", - ] -) +TeamMemberInfo._all_field_names_ = set([ + 'profile', + 'role', +]) TeamMemberInfo._all_fields_ = [ - ("profile", TeamMemberInfo.profile.validator), - ("role", TeamMemberInfo.role.validator), + ('profile', TeamMemberInfo.profile.validator), + ('role', TeamMemberInfo.role.validator), ] TeamMemberInfoV2.profile.validator = TeamMemberProfile_validator TeamMemberInfoV2.roles.validator = bv.Nullable(bv.List(TeamMemberRole_validator)) -TeamMemberInfoV2._all_field_names_ = set( - [ - "profile", - "roles", - ] -) +TeamMemberInfoV2._all_field_names_ = set([ + 'profile', + 'roles', +]) TeamMemberInfoV2._all_fields_ = [ - ("profile", TeamMemberInfoV2.profile.validator), - ("roles", TeamMemberInfoV2.roles.validator), + ('profile', TeamMemberInfoV2.profile.validator), + ('roles', TeamMemberInfoV2.roles.validator), ] TeamMemberInfoV2Result.member_info.validator = TeamMemberInfoV2_validator -TeamMemberInfoV2Result._all_field_names_ = set(["member_info"]) -TeamMemberInfoV2Result._all_fields_ = [ - ("member_info", TeamMemberInfoV2Result.member_info.validator) -] +TeamMemberInfoV2Result._all_field_names_ = set(['member_info']) +TeamMemberInfoV2Result._all_fields_ = [('member_info', TeamMemberInfoV2Result.member_info.validator)] TeamMemberProfile.groups.validator = bv.List(team_common.GroupId_validator) TeamMemberProfile.member_folder_id.validator = common.NamespaceId_validator TeamMemberProfile.root_folder_id.validator = common.NamespaceId_validator -TeamMemberProfile._all_field_names_ = MemberProfile._all_field_names_.union( - set( - [ - "groups", - "member_folder_id", - "root_folder_id", - ] - ) -) +TeamMemberProfile._all_field_names_ = MemberProfile._all_field_names_.union(set([ + 'groups', + 'member_folder_id', + 'root_folder_id', +])) TeamMemberProfile._all_fields_ = MemberProfile._all_fields_ + [ - ("groups", TeamMemberProfile.groups.validator), - ("member_folder_id", TeamMemberProfile.member_folder_id.validator), - ("root_folder_id", TeamMemberProfile.root_folder_id.validator), + ('groups', TeamMemberProfile.groups.validator), + ('member_folder_id', TeamMemberProfile.member_folder_id.validator), + ('root_folder_id', TeamMemberProfile.root_folder_id.validator), ] TeamMemberRole.role_id.validator = TeamMemberRoleId_validator TeamMemberRole.name.validator = bv.String(max_length=32) TeamMemberRole.description.validator = bv.String(max_length=256) -TeamMemberRole._all_field_names_ = set( - [ - "role_id", - "name", - "description", - ] -) +TeamMemberRole._all_field_names_ = set([ + 'role_id', + 'name', + 'description', +]) TeamMemberRole._all_fields_ = [ - ("role_id", TeamMemberRole.role_id.validator), - ("name", TeamMemberRole.name.validator), - ("description", TeamMemberRole.description.validator), + ('role_id', TeamMemberRole.role_id.validator), + ('name', TeamMemberRole.name.validator), + ('description', TeamMemberRole.description.validator), ] TeamMemberStatus._active_validator = bv.Void() @@ -18763,68 +17408,64 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): TeamMemberStatus._suspended_validator = bv.Void() TeamMemberStatus._removed_validator = RemovedStatus_validator TeamMemberStatus._tagmap = { - "active": TeamMemberStatus._active_validator, - "invited": TeamMemberStatus._invited_validator, - "suspended": TeamMemberStatus._suspended_validator, - "removed": TeamMemberStatus._removed_validator, + 'active': TeamMemberStatus._active_validator, + 'invited': TeamMemberStatus._invited_validator, + 'suspended': TeamMemberStatus._suspended_validator, + 'removed': TeamMemberStatus._removed_validator, } -TeamMemberStatus.active = TeamMemberStatus("active") -TeamMemberStatus.invited = TeamMemberStatus("invited") -TeamMemberStatus.suspended = TeamMemberStatus("suspended") +TeamMemberStatus.active = TeamMemberStatus('active') +TeamMemberStatus.invited = TeamMemberStatus('invited') +TeamMemberStatus.suspended = TeamMemberStatus('suspended') TeamMembershipType._full_validator = bv.Void() TeamMembershipType._limited_validator = bv.Void() TeamMembershipType._tagmap = { - "full": TeamMembershipType._full_validator, - "limited": TeamMembershipType._limited_validator, + 'full': TeamMembershipType._full_validator, + 'limited': TeamMembershipType._limited_validator, } -TeamMembershipType.full = TeamMembershipType("full") -TeamMembershipType.limited = TeamMembershipType("limited") +TeamMembershipType.full = TeamMembershipType('full') +TeamMembershipType.limited = TeamMembershipType('limited') TeamNamespacesListArg.limit.validator = bv.UInt32(min_value=1, max_value=1000) -TeamNamespacesListArg._all_field_names_ = set(["limit"]) -TeamNamespacesListArg._all_fields_ = [("limit", TeamNamespacesListArg.limit.validator)] +TeamNamespacesListArg._all_field_names_ = set(['limit']) +TeamNamespacesListArg._all_fields_ = [('limit', TeamNamespacesListArg.limit.validator)] TeamNamespacesListContinueArg.cursor.validator = bv.String() -TeamNamespacesListContinueArg._all_field_names_ = set(["cursor"]) -TeamNamespacesListContinueArg._all_fields_ = [ - ("cursor", TeamNamespacesListContinueArg.cursor.validator) -] +TeamNamespacesListContinueArg._all_field_names_ = set(['cursor']) +TeamNamespacesListContinueArg._all_fields_ = [('cursor', TeamNamespacesListContinueArg.cursor.validator)] TeamNamespacesListError._invalid_arg_validator = bv.Void() TeamNamespacesListError._other_validator = bv.Void() TeamNamespacesListError._tagmap = { - "invalid_arg": TeamNamespacesListError._invalid_arg_validator, - "other": TeamNamespacesListError._other_validator, + 'invalid_arg': TeamNamespacesListError._invalid_arg_validator, + 'other': TeamNamespacesListError._other_validator, } -TeamNamespacesListError.invalid_arg = TeamNamespacesListError("invalid_arg") -TeamNamespacesListError.other = TeamNamespacesListError("other") +TeamNamespacesListError.invalid_arg = TeamNamespacesListError('invalid_arg') +TeamNamespacesListError.other = TeamNamespacesListError('other') TeamNamespacesListContinueError._invalid_cursor_validator = bv.Void() TeamNamespacesListContinueError._tagmap = { - "invalid_cursor": TeamNamespacesListContinueError._invalid_cursor_validator, + 'invalid_cursor': TeamNamespacesListContinueError._invalid_cursor_validator, } TeamNamespacesListContinueError._tagmap.update(TeamNamespacesListError._tagmap) -TeamNamespacesListContinueError.invalid_cursor = TeamNamespacesListContinueError("invalid_cursor") +TeamNamespacesListContinueError.invalid_cursor = TeamNamespacesListContinueError('invalid_cursor') TeamNamespacesListResult.namespaces.validator = bv.List(NamespaceMetadata_validator) TeamNamespacesListResult.cursor.validator = bv.String() TeamNamespacesListResult.has_more.validator = bv.Boolean() -TeamNamespacesListResult._all_field_names_ = set( - [ - "namespaces", - "cursor", - "has_more", - ] -) +TeamNamespacesListResult._all_field_names_ = set([ + 'namespaces', + 'cursor', + 'has_more', +]) TeamNamespacesListResult._all_fields_ = [ - ("namespaces", TeamNamespacesListResult.namespaces.validator), - ("cursor", TeamNamespacesListResult.cursor.validator), - ("has_more", TeamNamespacesListResult.has_more.validator), + ('namespaces', TeamNamespacesListResult.namespaces.validator), + ('cursor', TeamNamespacesListResult.cursor.validator), + ('has_more', TeamNamespacesListResult.has_more.validator), ] TeamReportFailureReason._temporary_error_validator = bv.Void() @@ -18832,51 +17473,45 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): TeamReportFailureReason._too_much_data_validator = bv.Void() TeamReportFailureReason._other_validator = bv.Void() TeamReportFailureReason._tagmap = { - "temporary_error": TeamReportFailureReason._temporary_error_validator, - "many_reports_at_once": TeamReportFailureReason._many_reports_at_once_validator, - "too_much_data": TeamReportFailureReason._too_much_data_validator, - "other": TeamReportFailureReason._other_validator, + 'temporary_error': TeamReportFailureReason._temporary_error_validator, + 'many_reports_at_once': TeamReportFailureReason._many_reports_at_once_validator, + 'too_much_data': TeamReportFailureReason._too_much_data_validator, + 'other': TeamReportFailureReason._other_validator, } -TeamReportFailureReason.temporary_error = TeamReportFailureReason("temporary_error") -TeamReportFailureReason.many_reports_at_once = TeamReportFailureReason("many_reports_at_once") -TeamReportFailureReason.too_much_data = TeamReportFailureReason("too_much_data") -TeamReportFailureReason.other = TeamReportFailureReason("other") +TeamReportFailureReason.temporary_error = TeamReportFailureReason('temporary_error') +TeamReportFailureReason.many_reports_at_once = TeamReportFailureReason('many_reports_at_once') +TeamReportFailureReason.too_much_data = TeamReportFailureReason('too_much_data') +TeamReportFailureReason.other = TeamReportFailureReason('other') TokenGetAuthenticatedAdminError._mapping_not_found_validator = bv.Void() TokenGetAuthenticatedAdminError._admin_not_active_validator = bv.Void() TokenGetAuthenticatedAdminError._other_validator = bv.Void() TokenGetAuthenticatedAdminError._tagmap = { - "mapping_not_found": TokenGetAuthenticatedAdminError._mapping_not_found_validator, - "admin_not_active": TokenGetAuthenticatedAdminError._admin_not_active_validator, - "other": TokenGetAuthenticatedAdminError._other_validator, + 'mapping_not_found': TokenGetAuthenticatedAdminError._mapping_not_found_validator, + 'admin_not_active': TokenGetAuthenticatedAdminError._admin_not_active_validator, + 'other': TokenGetAuthenticatedAdminError._other_validator, } -TokenGetAuthenticatedAdminError.mapping_not_found = TokenGetAuthenticatedAdminError( - "mapping_not_found" -) -TokenGetAuthenticatedAdminError.admin_not_active = TokenGetAuthenticatedAdminError( - "admin_not_active" -) -TokenGetAuthenticatedAdminError.other = TokenGetAuthenticatedAdminError("other") +TokenGetAuthenticatedAdminError.mapping_not_found = TokenGetAuthenticatedAdminError('mapping_not_found') +TokenGetAuthenticatedAdminError.admin_not_active = TokenGetAuthenticatedAdminError('admin_not_active') +TokenGetAuthenticatedAdminError.other = TokenGetAuthenticatedAdminError('other') TokenGetAuthenticatedAdminResult.admin_profile.validator = TeamMemberProfile_validator -TokenGetAuthenticatedAdminResult._all_field_names_ = set(["admin_profile"]) -TokenGetAuthenticatedAdminResult._all_fields_ = [ - ("admin_profile", TokenGetAuthenticatedAdminResult.admin_profile.validator) -] +TokenGetAuthenticatedAdminResult._all_field_names_ = set(['admin_profile']) +TokenGetAuthenticatedAdminResult._all_fields_ = [('admin_profile', TokenGetAuthenticatedAdminResult.admin_profile.validator)] UploadApiRateLimitValue._unlimited_validator = bv.Void() UploadApiRateLimitValue._limit_validator = bv.UInt32() UploadApiRateLimitValue._other_validator = bv.Void() UploadApiRateLimitValue._tagmap = { - "unlimited": UploadApiRateLimitValue._unlimited_validator, - "limit": UploadApiRateLimitValue._limit_validator, - "other": UploadApiRateLimitValue._other_validator, + 'unlimited': UploadApiRateLimitValue._unlimited_validator, + 'limit': UploadApiRateLimitValue._limit_validator, + 'other': UploadApiRateLimitValue._other_validator, } -UploadApiRateLimitValue.unlimited = UploadApiRateLimitValue("unlimited") -UploadApiRateLimitValue.other = UploadApiRateLimitValue("other") +UploadApiRateLimitValue.unlimited = UploadApiRateLimitValue('unlimited') +UploadApiRateLimitValue.other = UploadApiRateLimitValue('other') UserAddResult._success_validator = UserSecondaryEmailsResult_validator UserAddResult._invalid_user_validator = UserSelectorArg_validator @@ -18884,131 +17519,119 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): UserAddResult._placeholder_user_validator = UserSelectorArg_validator UserAddResult._other_validator = bv.Void() UserAddResult._tagmap = { - "success": UserAddResult._success_validator, - "invalid_user": UserAddResult._invalid_user_validator, - "unverified": UserAddResult._unverified_validator, - "placeholder_user": UserAddResult._placeholder_user_validator, - "other": UserAddResult._other_validator, + 'success': UserAddResult._success_validator, + 'invalid_user': UserAddResult._invalid_user_validator, + 'unverified': UserAddResult._unverified_validator, + 'placeholder_user': UserAddResult._placeholder_user_validator, + 'other': UserAddResult._other_validator, } -UserAddResult.other = UserAddResult("other") +UserAddResult.other = UserAddResult('other') UserCustomQuotaArg.user.validator = UserSelectorArg_validator UserCustomQuotaArg.quota_gb.validator = UserQuota_validator -UserCustomQuotaArg._all_field_names_ = set( - [ - "user", - "quota_gb", - ] -) +UserCustomQuotaArg._all_field_names_ = set([ + 'user', + 'quota_gb', +]) UserCustomQuotaArg._all_fields_ = [ - ("user", UserCustomQuotaArg.user.validator), - ("quota_gb", UserCustomQuotaArg.quota_gb.validator), + ('user', UserCustomQuotaArg.user.validator), + ('quota_gb', UserCustomQuotaArg.quota_gb.validator), ] UserCustomQuotaResult.user.validator = UserSelectorArg_validator UserCustomQuotaResult.quota_gb.validator = bv.Nullable(UserQuota_validator) -UserCustomQuotaResult._all_field_names_ = set( - [ - "user", - "quota_gb", - ] -) +UserCustomQuotaResult._all_field_names_ = set([ + 'user', + 'quota_gb', +]) UserCustomQuotaResult._all_fields_ = [ - ("user", UserCustomQuotaResult.user.validator), - ("quota_gb", UserCustomQuotaResult.quota_gb.validator), + ('user', UserCustomQuotaResult.user.validator), + ('quota_gb', UserCustomQuotaResult.quota_gb.validator), ] UserDeleteEmailsResult.user.validator = UserSelectorArg_validator UserDeleteEmailsResult.results.validator = bv.List(DeleteSecondaryEmailResult_validator) -UserDeleteEmailsResult._all_field_names_ = set( - [ - "user", - "results", - ] -) +UserDeleteEmailsResult._all_field_names_ = set([ + 'user', + 'results', +]) UserDeleteEmailsResult._all_fields_ = [ - ("user", UserDeleteEmailsResult.user.validator), - ("results", UserDeleteEmailsResult.results.validator), + ('user', UserDeleteEmailsResult.user.validator), + ('results', UserDeleteEmailsResult.results.validator), ] UserDeleteResult._success_validator = UserDeleteEmailsResult_validator UserDeleteResult._invalid_user_validator = UserSelectorArg_validator UserDeleteResult._other_validator = bv.Void() UserDeleteResult._tagmap = { - "success": UserDeleteResult._success_validator, - "invalid_user": UserDeleteResult._invalid_user_validator, - "other": UserDeleteResult._other_validator, + 'success': UserDeleteResult._success_validator, + 'invalid_user': UserDeleteResult._invalid_user_validator, + 'other': UserDeleteResult._other_validator, } -UserDeleteResult.other = UserDeleteResult("other") +UserDeleteResult.other = UserDeleteResult('other') UserResendEmailsResult.user.validator = UserSelectorArg_validator UserResendEmailsResult.results.validator = bv.List(ResendSecondaryEmailResult_validator) -UserResendEmailsResult._all_field_names_ = set( - [ - "user", - "results", - ] -) +UserResendEmailsResult._all_field_names_ = set([ + 'user', + 'results', +]) UserResendEmailsResult._all_fields_ = [ - ("user", UserResendEmailsResult.user.validator), - ("results", UserResendEmailsResult.results.validator), + ('user', UserResendEmailsResult.user.validator), + ('results', UserResendEmailsResult.results.validator), ] UserResendResult._success_validator = UserResendEmailsResult_validator UserResendResult._invalid_user_validator = UserSelectorArg_validator UserResendResult._other_validator = bv.Void() UserResendResult._tagmap = { - "success": UserResendResult._success_validator, - "invalid_user": UserResendResult._invalid_user_validator, - "other": UserResendResult._other_validator, + 'success': UserResendResult._success_validator, + 'invalid_user': UserResendResult._invalid_user_validator, + 'other': UserResendResult._other_validator, } -UserResendResult.other = UserResendResult("other") +UserResendResult.other = UserResendResult('other') UserSecondaryEmailsArg.user.validator = UserSelectorArg_validator UserSecondaryEmailsArg.secondary_emails.validator = bv.List(common.EmailAddress_validator) -UserSecondaryEmailsArg._all_field_names_ = set( - [ - "user", - "secondary_emails", - ] -) +UserSecondaryEmailsArg._all_field_names_ = set([ + 'user', + 'secondary_emails', +]) UserSecondaryEmailsArg._all_fields_ = [ - ("user", UserSecondaryEmailsArg.user.validator), - ("secondary_emails", UserSecondaryEmailsArg.secondary_emails.validator), + ('user', UserSecondaryEmailsArg.user.validator), + ('secondary_emails', UserSecondaryEmailsArg.secondary_emails.validator), ] UserSecondaryEmailsResult.user.validator = UserSelectorArg_validator UserSecondaryEmailsResult.results.validator = bv.List(AddSecondaryEmailResult_validator) -UserSecondaryEmailsResult._all_field_names_ = set( - [ - "user", - "results", - ] -) +UserSecondaryEmailsResult._all_field_names_ = set([ + 'user', + 'results', +]) UserSecondaryEmailsResult._all_fields_ = [ - ("user", UserSecondaryEmailsResult.user.validator), - ("results", UserSecondaryEmailsResult.results.validator), + ('user', UserSecondaryEmailsResult.user.validator), + ('results', UserSecondaryEmailsResult.results.validator), ] UserSelectorArg._team_member_id_validator = team_common.TeamMemberId_validator UserSelectorArg._external_id_validator = team_common.MemberExternalId_validator UserSelectorArg._email_validator = common.EmailAddress_validator UserSelectorArg._tagmap = { - "team_member_id": UserSelectorArg._team_member_id_validator, - "external_id": UserSelectorArg._external_id_validator, - "email": UserSelectorArg._email_validator, + 'team_member_id': UserSelectorArg._team_member_id_validator, + 'external_id': UserSelectorArg._external_id_validator, + 'email': UserSelectorArg._email_validator, } UsersSelectorArg._team_member_ids_validator = bv.List(team_common.TeamMemberId_validator) UsersSelectorArg._external_ids_validator = bv.List(team_common.MemberExternalId_validator) UsersSelectorArg._emails_validator = bv.List(common.EmailAddress_validator) UsersSelectorArg._tagmap = { - "team_member_ids": UsersSelectorArg._team_member_ids_validator, - "external_ids": UsersSelectorArg._external_ids_validator, - "emails": UsersSelectorArg._emails_validator, + 'team_member_ids': UsersSelectorArg._team_member_ids_validator, + 'external_ids': UsersSelectorArg._external_ids_validator, + 'emails': UsersSelectorArg._emails_validator, } ExcludedUsersListArg.limit.default = 1000 @@ -19040,7 +17663,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): RevokeDesktopClientArg.delete_on_unlink.default = False RevokeLinkedApiAppArg.keep_app_folder.default = True SharingAllowlistListArg.limit.default = 1000 -SharingAllowlistListResponse.cursor.default = "" +SharingAllowlistListResponse.cursor.default = '' SharingAllowlistListResponse.has_more.default = False TeamFolderArchiveArg.force_async_off.default = False TeamFolderListArg.limit.default = 1000 @@ -19048,935 +17671,1122 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): TeamGetInfoResult.num_used_licenses.default = 0 TeamNamespacesListArg.limit.default = 1000 devices_list_member_devices = bb.Route( - "devices/list_member_devices", + 'devices/list_member_devices', 1, False, ListMemberDevicesArg_validator, ListMemberDevicesResult_validator, ListMemberDevicesError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) devices_list_members_devices = bb.Route( - "devices/list_members_devices", + 'devices/list_members_devices', 1, False, ListMembersDevicesArg_validator, ListMembersDevicesResult_validator, ListMembersDevicesError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) devices_list_team_devices = bb.Route( - "devices/list_team_devices", + 'devices/list_team_devices', 1, True, ListTeamDevicesArg_validator, ListTeamDevicesResult_validator, ListTeamDevicesError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) devices_revoke_device_session = bb.Route( - "devices/revoke_device_session", + 'devices/revoke_device_session', 1, False, RevokeDeviceSessionArg_validator, bv.Void(), RevokeDeviceSessionError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) devices_revoke_device_session_batch = bb.Route( - "devices/revoke_device_session_batch", + 'devices/revoke_device_session_batch', 1, False, RevokeDeviceSessionBatchArg_validator, RevokeDeviceSessionBatchResult_validator, RevokeDeviceSessionBatchError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) features_get_values = bb.Route( - "features/get_values", + 'features/get_values', 1, False, FeaturesGetValuesBatchArg_validator, FeaturesGetValuesBatchResult_validator, FeaturesGetValuesBatchError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) get_info = bb.Route( - "get_info", + 'get_info', 1, False, bv.Void(), TeamGetInfoResult_validator, bv.Void(), - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) groups_create = bb.Route( - "groups/create", + 'groups/create', 1, False, GroupCreateArg_validator, GroupFullInfo_validator, GroupCreateError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) groups_delete = bb.Route( - "groups/delete", + 'groups/delete', 1, False, GroupSelector_validator, async_.LaunchEmptyResult_validator, GroupDeleteError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) groups_get_info = bb.Route( - "groups/get_info", + 'groups/get_info', 1, False, GroupsSelector_validator, GroupsGetInfoResult_validator, GroupsGetInfoError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) groups_job_status_get = bb.Route( - "groups/job_status/get", + 'groups/job_status/get', 1, False, async_.PollArg_validator, async_.PollEmptyResult_validator, GroupsPollError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) groups_list = bb.Route( - "groups/list", + 'groups/list', 1, False, GroupsListArg_validator, GroupsListResult_validator, bv.Void(), - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) groups_list_continue = bb.Route( - "groups/list/continue", + 'groups/list/continue', 1, False, GroupsListContinueArg_validator, GroupsListResult_validator, GroupsListContinueError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) groups_members_add = bb.Route( - "groups/members/add", + 'groups/members/add', 1, False, GroupMembersAddArg_validator, GroupMembersChangeResult_validator, GroupMembersAddError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) groups_members_list = bb.Route( - "groups/members/list", + 'groups/members/list', 1, False, GroupsMembersListArg_validator, GroupsMembersListResult_validator, GroupSelectorError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) groups_members_list_continue = bb.Route( - "groups/members/list/continue", + 'groups/members/list/continue', 1, False, GroupsMembersListContinueArg_validator, GroupsMembersListResult_validator, GroupsMembersListContinueError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) groups_members_remove = bb.Route( - "groups/members/remove", + 'groups/members/remove', 1, False, GroupMembersRemoveArg_validator, GroupMembersChangeResult_validator, GroupMembersRemoveError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) groups_members_set_access_type = bb.Route( - "groups/members/set_access_type", + 'groups/members/set_access_type', 1, False, GroupMembersSetAccessTypeArg_validator, GroupsGetInfoResult_validator, GroupMemberSetAccessTypeError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) groups_update = bb.Route( - "groups/update", + 'groups/update', 1, False, GroupUpdateArgs_validator, GroupFullInfo_validator, GroupUpdateError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) legal_holds_create_policy = bb.Route( - "legal_holds/create_policy", + 'legal_holds/create_policy', 1, False, LegalHoldsPolicyCreateArg_validator, LegalHoldsPolicyCreateResult_validator, LegalHoldsPolicyCreateError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) legal_holds_get_policy = bb.Route( - "legal_holds/get_policy", + 'legal_holds/get_policy', 1, False, LegalHoldsGetPolicyArg_validator, LegalHoldsGetPolicyResult_validator, LegalHoldsGetPolicyError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) legal_holds_list_held_revisions = bb.Route( - "legal_holds/list_held_revisions", + 'legal_holds/list_held_revisions', 1, False, LegalHoldsListHeldRevisionsArg_validator, LegalHoldsListHeldRevisionResult_validator, LegalHoldsListHeldRevisionsError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) legal_holds_list_held_revisions_continue = bb.Route( - "legal_holds/list_held_revisions_continue", + 'legal_holds/list_held_revisions_continue', 1, False, LegalHoldsListHeldRevisionsContinueArg_validator, LegalHoldsListHeldRevisionResult_validator, LegalHoldsListHeldRevisionsError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) legal_holds_list_policies = bb.Route( - "legal_holds/list_policies", + 'legal_holds/list_policies', 1, False, LegalHoldsListPoliciesArg_validator, LegalHoldsListPoliciesResult_validator, LegalHoldsListPoliciesError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) legal_holds_release_policy = bb.Route( - "legal_holds/release_policy", + 'legal_holds/release_policy', 1, False, LegalHoldsPolicyReleaseArg_validator, bv.Void(), LegalHoldsPolicyReleaseError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) legal_holds_update_policy = bb.Route( - "legal_holds/update_policy", + 'legal_holds/update_policy', 1, False, LegalHoldsPolicyUpdateArg_validator, LegalHoldsPolicyUpdateResult_validator, LegalHoldsPolicyUpdateError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) linked_apps_list_member_linked_apps = bb.Route( - "linked_apps/list_member_linked_apps", + 'linked_apps/list_member_linked_apps', 1, False, ListMemberAppsArg_validator, ListMemberAppsResult_validator, ListMemberAppsError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) linked_apps_list_members_linked_apps = bb.Route( - "linked_apps/list_members_linked_apps", + 'linked_apps/list_members_linked_apps', 1, False, ListMembersAppsArg_validator, ListMembersAppsResult_validator, ListMembersAppsError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) linked_apps_list_team_linked_apps = bb.Route( - "linked_apps/list_team_linked_apps", + 'linked_apps/list_team_linked_apps', 1, True, ListTeamAppsArg_validator, ListTeamAppsResult_validator, ListTeamAppsError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) linked_apps_revoke_linked_app = bb.Route( - "linked_apps/revoke_linked_app", + 'linked_apps/revoke_linked_app', 1, False, RevokeLinkedApiAppArg_validator, bv.Void(), RevokeLinkedAppError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) linked_apps_revoke_linked_app_batch = bb.Route( - "linked_apps/revoke_linked_app_batch", + 'linked_apps/revoke_linked_app_batch', 1, False, RevokeLinkedApiAppBatchArg_validator, RevokeLinkedAppBatchResult_validator, RevokeLinkedAppBatchError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) member_space_limits_excluded_users_add = bb.Route( - "member_space_limits/excluded_users/add", + 'member_space_limits/excluded_users/add', 1, False, ExcludedUsersUpdateArg_validator, ExcludedUsersUpdateResult_validator, ExcludedUsersUpdateError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) member_space_limits_excluded_users_list = bb.Route( - "member_space_limits/excluded_users/list", + 'member_space_limits/excluded_users/list', 1, False, ExcludedUsersListArg_validator, ExcludedUsersListResult_validator, ExcludedUsersListError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) member_space_limits_excluded_users_list_continue = bb.Route( - "member_space_limits/excluded_users/list/continue", + 'member_space_limits/excluded_users/list/continue', 1, False, ExcludedUsersListContinueArg_validator, ExcludedUsersListResult_validator, ExcludedUsersListContinueError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) member_space_limits_excluded_users_remove = bb.Route( - "member_space_limits/excluded_users/remove", + 'member_space_limits/excluded_users/remove', 1, False, ExcludedUsersUpdateArg_validator, ExcludedUsersUpdateResult_validator, ExcludedUsersUpdateError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) member_space_limits_get_custom_quota = bb.Route( - "member_space_limits/get_custom_quota", + 'member_space_limits/get_custom_quota', 1, False, CustomQuotaUsersArg_validator, bv.List(CustomQuotaResult_validator), CustomQuotaError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) member_space_limits_remove_custom_quota = bb.Route( - "member_space_limits/remove_custom_quota", + 'member_space_limits/remove_custom_quota', 1, False, CustomQuotaUsersArg_validator, bv.List(RemoveCustomQuotaResult_validator), CustomQuotaError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) member_space_limits_set_custom_quota = bb.Route( - "member_space_limits/set_custom_quota", + 'member_space_limits/set_custom_quota', 1, False, SetCustomQuotaArg_validator, bv.List(CustomQuotaResult_validator), SetCustomQuotaError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) members_add = bb.Route( - "members/add", + 'members/add', 1, False, MembersAddArg_validator, MembersAddLaunch_validator, bv.Void(), - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) members_add_v2 = bb.Route( - "members/add", + 'members/add', 2, False, MembersAddV2Arg_validator, MembersAddLaunchV2Result_validator, bv.Void(), - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) members_add_job_status_get = bb.Route( - "members/add/job_status/get", + 'members/add/job_status/get', 1, False, async_.PollArg_validator, MembersAddJobStatus_validator, async_.PollError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) members_add_job_status_get_v2 = bb.Route( - "members/add/job_status/get", + 'members/add/job_status/get', 2, False, async_.PollArg_validator, MembersAddJobStatusV2Result_validator, async_.PollError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) members_delete_former_member_files = bb.Route( - "members/delete_former_member_files", + 'members/delete_former_member_files', 1, False, MembersFormerMemberArg_validator, bv.Void(), MembersDeleteFormerMemberFilesError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) members_delete_profile_photo = bb.Route( - "members/delete_profile_photo", + 'members/delete_profile_photo', 1, False, MembersDeleteProfilePhotoArg_validator, TeamMemberInfo_validator, MembersDeleteProfilePhotoError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) members_delete_profile_photo_v2 = bb.Route( - "members/delete_profile_photo", + 'members/delete_profile_photo', 2, False, MembersDeleteProfilePhotoArg_validator, TeamMemberInfoV2Result_validator, MembersDeleteProfilePhotoError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) members_get_available_team_member_roles = bb.Route( - "members/get_available_team_member_roles", + 'members/get_available_team_member_roles', 1, False, bv.Void(), MembersGetAvailableTeamMemberRolesResult_validator, bv.Void(), - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) members_get_info = bb.Route( - "members/get_info", + 'members/get_info', 1, False, MembersGetInfoArgs_validator, MembersGetInfoResult_validator, MembersGetInfoError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) members_get_info_v2 = bb.Route( - "members/get_info", + 'members/get_info', 2, False, MembersGetInfoV2Arg_validator, MembersGetInfoV2Result_validator, MembersGetInfoError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) members_list = bb.Route( - "members/list", + 'members/list', 1, False, MembersListArg_validator, MembersListResult_validator, MembersListError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) members_list_v2 = bb.Route( - "members/list", + 'members/list', 2, False, MembersListArg_validator, MembersListV2Result_validator, MembersListError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) members_list_continue = bb.Route( - "members/list/continue", + 'members/list/continue', 1, False, MembersListContinueArg_validator, MembersListResult_validator, MembersListContinueError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) members_list_continue_v2 = bb.Route( - "members/list/continue", + 'members/list/continue', 2, False, MembersListContinueArg_validator, MembersListV2Result_validator, MembersListContinueError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) members_move_former_member_files = bb.Route( - "members/move_former_member_files", + 'members/move_former_member_files', 1, False, MembersDataTransferArg_validator, async_.LaunchEmptyResult_validator, MembersTransferFormerMembersFilesError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) members_move_former_member_files_job_status_check = bb.Route( - "members/move_former_member_files/job_status/check", + 'members/move_former_member_files/job_status/check', 1, False, async_.PollArg_validator, async_.PollEmptyResult_validator, async_.PollError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) members_recover = bb.Route( - "members/recover", + 'members/recover', 1, False, MembersRecoverArg_validator, bv.Void(), MembersRecoverError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) members_remove = bb.Route( - "members/remove", + 'members/remove', 1, False, MembersRemoveArg_validator, async_.LaunchEmptyResult_validator, MembersRemoveError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) members_remove_job_status_get = bb.Route( - "members/remove/job_status/get", + 'members/remove/job_status/get', 1, False, async_.PollArg_validator, async_.PollEmptyResult_validator, async_.PollError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) members_secondary_emails_add = bb.Route( - "members/secondary_emails/add", + 'members/secondary_emails/add', 1, False, AddSecondaryEmailsArg_validator, AddSecondaryEmailsResult_validator, AddSecondaryEmailsError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) members_secondary_emails_delete = bb.Route( - "members/secondary_emails/delete", + 'members/secondary_emails/delete', 1, False, DeleteSecondaryEmailsArg_validator, DeleteSecondaryEmailsResult_validator, bv.Void(), - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) members_secondary_emails_resend_verification_emails = bb.Route( - "members/secondary_emails/resend_verification_emails", + 'members/secondary_emails/resend_verification_emails', 1, False, ResendVerificationEmailArg_validator, ResendVerificationEmailResult_validator, bv.Void(), - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) members_send_welcome_email = bb.Route( - "members/send_welcome_email", + 'members/send_welcome_email', 1, False, UserSelectorArg_validator, bv.Void(), MembersSendWelcomeError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) members_set_admin_permissions = bb.Route( - "members/set_admin_permissions", + 'members/set_admin_permissions', 1, False, MembersSetPermissionsArg_validator, MembersSetPermissionsResult_validator, MembersSetPermissionsError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) members_set_admin_permissions_v2 = bb.Route( - "members/set_admin_permissions", + 'members/set_admin_permissions', 2, False, MembersSetPermissions2Arg_validator, MembersSetPermissions2Result_validator, MembersSetPermissions2Error_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) members_set_profile = bb.Route( - "members/set_profile", + 'members/set_profile', 1, False, MembersSetProfileArg_validator, TeamMemberInfo_validator, MembersSetProfileError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) members_set_profile_v2 = bb.Route( - "members/set_profile", + 'members/set_profile', 2, False, MembersSetProfileArg_validator, TeamMemberInfoV2Result_validator, MembersSetProfileError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) members_set_profile_photo = bb.Route( - "members/set_profile_photo", + 'members/set_profile_photo', 1, False, MembersSetProfilePhotoArg_validator, TeamMemberInfo_validator, MembersSetProfilePhotoError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) members_set_profile_photo_v2 = bb.Route( - "members/set_profile_photo", + 'members/set_profile_photo', 2, False, MembersSetProfilePhotoArg_validator, TeamMemberInfoV2Result_validator, MembersSetProfilePhotoError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) members_suspend = bb.Route( - "members/suspend", + 'members/suspend', 1, False, MembersDeactivateArg_validator, bv.Void(), MembersSuspendError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) members_unsuspend = bb.Route( - "members/unsuspend", + 'members/unsuspend', 1, False, MembersUnsuspendArg_validator, bv.Void(), MembersUnsuspendError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) namespaces_list = bb.Route( - "namespaces/list", + 'namespaces/list', 1, False, TeamNamespacesListArg_validator, TeamNamespacesListResult_validator, TeamNamespacesListError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) namespaces_list_continue = bb.Route( - "namespaces/list/continue", + 'namespaces/list/continue', 1, False, TeamNamespacesListContinueArg_validator, TeamNamespacesListResult_validator, TeamNamespacesListContinueError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) properties_template_add = bb.Route( - "properties/template/add", + 'properties/template/add', 1, True, file_properties.AddTemplateArg_validator, file_properties.AddTemplateResult_validator, file_properties.ModifyTemplateError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) properties_template_get = bb.Route( - "properties/template/get", + 'properties/template/get', 1, True, file_properties.GetTemplateArg_validator, file_properties.GetTemplateResult_validator, file_properties.TemplateError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) reports_get_activity = bb.Route( - "reports/get_activity", + 'reports/get_activity', 1, True, DateRange_validator, GetActivityReport_validator, DateRangeError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) reports_get_devices = bb.Route( - "reports/get_devices", + 'reports/get_devices', 1, True, DateRange_validator, GetDevicesReport_validator, DateRangeError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) reports_get_membership = bb.Route( - "reports/get_membership", + 'reports/get_membership', 1, True, DateRange_validator, GetMembershipReport_validator, DateRangeError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) reports_get_storage = bb.Route( - "reports/get_storage", + 'reports/get_storage', 1, True, DateRange_validator, GetStorageReport_validator, DateRangeError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) sharing_allowlist_add = bb.Route( - "sharing_allowlist/add", + 'sharing_allowlist/add', 1, False, SharingAllowlistAddArgs_validator, SharingAllowlistAddResponse_validator, SharingAllowlistAddError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) sharing_allowlist_list = bb.Route( - "sharing_allowlist/list", + 'sharing_allowlist/list', 1, False, SharingAllowlistListArg_validator, SharingAllowlistListResponse_validator, SharingAllowlistListError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) sharing_allowlist_list_continue = bb.Route( - "sharing_allowlist/list/continue", + 'sharing_allowlist/list/continue', 1, False, SharingAllowlistListContinueArg_validator, SharingAllowlistListResponse_validator, SharingAllowlistListContinueError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) sharing_allowlist_remove = bb.Route( - "sharing_allowlist/remove", + 'sharing_allowlist/remove', 1, False, SharingAllowlistRemoveArgs_validator, SharingAllowlistRemoveResponse_validator, SharingAllowlistRemoveError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) team_folder_activate = bb.Route( - "team_folder/activate", + 'team_folder/activate', 1, False, TeamFolderIdArg_validator, TeamFolderMetadata_validator, TeamFolderActivateError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) team_folder_archive = bb.Route( - "team_folder/archive", + 'team_folder/archive', 1, False, TeamFolderArchiveArg_validator, TeamFolderArchiveLaunch_validator, TeamFolderArchiveError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) team_folder_archive_check = bb.Route( - "team_folder/archive/check", + 'team_folder/archive/check', 1, False, async_.PollArg_validator, TeamFolderArchiveJobStatus_validator, async_.PollError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) team_folder_create = bb.Route( - "team_folder/create", + 'team_folder/create', 1, False, TeamFolderCreateArg_validator, TeamFolderMetadata_validator, TeamFolderCreateError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) team_folder_get_info = bb.Route( - "team_folder/get_info", + 'team_folder/get_info', 1, False, TeamFolderIdListArg_validator, bv.List(TeamFolderGetInfoItem_validator), bv.Void(), - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) team_folder_list = bb.Route( - "team_folder/list", + 'team_folder/list', 1, False, TeamFolderListArg_validator, TeamFolderListResult_validator, TeamFolderListError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) team_folder_list_continue = bb.Route( - "team_folder/list/continue", + 'team_folder/list/continue', 1, False, TeamFolderListContinueArg_validator, TeamFolderListResult_validator, TeamFolderListContinueError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) team_folder_permanently_delete = bb.Route( - "team_folder/permanently_delete", + 'team_folder/permanently_delete', 1, False, TeamFolderIdArg_validator, bv.Void(), TeamFolderPermanentlyDeleteError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) team_folder_rename = bb.Route( - "team_folder/rename", + 'team_folder/rename', 1, False, TeamFolderRenameArg_validator, TeamFolderMetadata_validator, TeamFolderRenameError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) team_folder_restore = bb.Route( - "team_folder/restore", + 'team_folder/restore', 1, False, TeamFolderIdArg_validator, TeamFolderMetadata_validator, TeamFolderRestoreError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) team_folder_update_sync_settings = bb.Route( - "team_folder/update_sync_settings", + 'team_folder/update_sync_settings', 1, False, TeamFolderUpdateSyncSettingsArg_validator, TeamFolderMetadata_validator, TeamFolderUpdateSyncSettingsError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) token_get_authenticated_admin = bb.Route( - "token/get_authenticated_admin", + 'token/get_authenticated_admin', 1, False, bv.Void(), TokenGetAuthenticatedAdminResult_validator, TokenGetAuthenticatedAdminError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) ROUTES = { - "devices/list_member_devices": devices_list_member_devices, - "devices/list_members_devices": devices_list_members_devices, - "devices/list_team_devices": devices_list_team_devices, - "devices/revoke_device_session": devices_revoke_device_session, - "devices/revoke_device_session_batch": devices_revoke_device_session_batch, - "features/get_values": features_get_values, - "get_info": get_info, - "groups/create": groups_create, - "groups/delete": groups_delete, - "groups/get_info": groups_get_info, - "groups/job_status/get": groups_job_status_get, - "groups/list": groups_list, - "groups/list/continue": groups_list_continue, - "groups/members/add": groups_members_add, - "groups/members/list": groups_members_list, - "groups/members/list/continue": groups_members_list_continue, - "groups/members/remove": groups_members_remove, - "groups/members/set_access_type": groups_members_set_access_type, - "groups/update": groups_update, - "legal_holds/create_policy": legal_holds_create_policy, - "legal_holds/get_policy": legal_holds_get_policy, - "legal_holds/list_held_revisions": legal_holds_list_held_revisions, - "legal_holds/list_held_revisions_continue": legal_holds_list_held_revisions_continue, - "legal_holds/list_policies": legal_holds_list_policies, - "legal_holds/release_policy": legal_holds_release_policy, - "legal_holds/update_policy": legal_holds_update_policy, - "linked_apps/list_member_linked_apps": linked_apps_list_member_linked_apps, - "linked_apps/list_members_linked_apps": linked_apps_list_members_linked_apps, - "linked_apps/list_team_linked_apps": linked_apps_list_team_linked_apps, - "linked_apps/revoke_linked_app": linked_apps_revoke_linked_app, - "linked_apps/revoke_linked_app_batch": linked_apps_revoke_linked_app_batch, - "member_space_limits/excluded_users/add": member_space_limits_excluded_users_add, - "member_space_limits/excluded_users/list": member_space_limits_excluded_users_list, - "member_space_limits/excluded_users/list/continue": member_space_limits_excluded_users_list_continue, - "member_space_limits/excluded_users/remove": member_space_limits_excluded_users_remove, - "member_space_limits/get_custom_quota": member_space_limits_get_custom_quota, - "member_space_limits/remove_custom_quota": member_space_limits_remove_custom_quota, - "member_space_limits/set_custom_quota": member_space_limits_set_custom_quota, - "members/add": members_add, - "members/add:2": members_add_v2, - "members/add/job_status/get": members_add_job_status_get, - "members/add/job_status/get:2": members_add_job_status_get_v2, - "members/delete_former_member_files": members_delete_former_member_files, - "members/delete_profile_photo": members_delete_profile_photo, - "members/delete_profile_photo:2": members_delete_profile_photo_v2, - "members/get_available_team_member_roles": members_get_available_team_member_roles, - "members/get_info": members_get_info, - "members/get_info:2": members_get_info_v2, - "members/list": members_list, - "members/list:2": members_list_v2, - "members/list/continue": members_list_continue, - "members/list/continue:2": members_list_continue_v2, - "members/move_former_member_files": members_move_former_member_files, - "members/move_former_member_files/job_status/check": members_move_former_member_files_job_status_check, - "members/recover": members_recover, - "members/remove": members_remove, - "members/remove/job_status/get": members_remove_job_status_get, - "members/secondary_emails/add": members_secondary_emails_add, - "members/secondary_emails/delete": members_secondary_emails_delete, - "members/secondary_emails/resend_verification_emails": members_secondary_emails_resend_verification_emails, - "members/send_welcome_email": members_send_welcome_email, - "members/set_admin_permissions": members_set_admin_permissions, - "members/set_admin_permissions:2": members_set_admin_permissions_v2, - "members/set_profile": members_set_profile, - "members/set_profile:2": members_set_profile_v2, - "members/set_profile_photo": members_set_profile_photo, - "members/set_profile_photo:2": members_set_profile_photo_v2, - "members/suspend": members_suspend, - "members/unsuspend": members_unsuspend, - "namespaces/list": namespaces_list, - "namespaces/list/continue": namespaces_list_continue, - "properties/template/add": properties_template_add, - "properties/template/get": properties_template_get, - "reports/get_activity": reports_get_activity, - "reports/get_devices": reports_get_devices, - "reports/get_membership": reports_get_membership, - "reports/get_storage": reports_get_storage, - "sharing_allowlist/add": sharing_allowlist_add, - "sharing_allowlist/list": sharing_allowlist_list, - "sharing_allowlist/list/continue": sharing_allowlist_list_continue, - "sharing_allowlist/remove": sharing_allowlist_remove, - "team_folder/activate": team_folder_activate, - "team_folder/archive": team_folder_archive, - "team_folder/archive/check": team_folder_archive_check, - "team_folder/create": team_folder_create, - "team_folder/get_info": team_folder_get_info, - "team_folder/list": team_folder_list, - "team_folder/list/continue": team_folder_list_continue, - "team_folder/permanently_delete": team_folder_permanently_delete, - "team_folder/rename": team_folder_rename, - "team_folder/restore": team_folder_restore, - "team_folder/update_sync_settings": team_folder_update_sync_settings, - "token/get_authenticated_admin": token_get_authenticated_admin, + 'devices/list_member_devices': devices_list_member_devices, + 'devices/list_members_devices': devices_list_members_devices, + 'devices/list_team_devices': devices_list_team_devices, + 'devices/revoke_device_session': devices_revoke_device_session, + 'devices/revoke_device_session_batch': devices_revoke_device_session_batch, + 'features/get_values': features_get_values, + 'get_info': get_info, + 'groups/create': groups_create, + 'groups/delete': groups_delete, + 'groups/get_info': groups_get_info, + 'groups/job_status/get': groups_job_status_get, + 'groups/list': groups_list, + 'groups/list/continue': groups_list_continue, + 'groups/members/add': groups_members_add, + 'groups/members/list': groups_members_list, + 'groups/members/list/continue': groups_members_list_continue, + 'groups/members/remove': groups_members_remove, + 'groups/members/set_access_type': groups_members_set_access_type, + 'groups/update': groups_update, + 'legal_holds/create_policy': legal_holds_create_policy, + 'legal_holds/get_policy': legal_holds_get_policy, + 'legal_holds/list_held_revisions': legal_holds_list_held_revisions, + 'legal_holds/list_held_revisions_continue': legal_holds_list_held_revisions_continue, + 'legal_holds/list_policies': legal_holds_list_policies, + 'legal_holds/release_policy': legal_holds_release_policy, + 'legal_holds/update_policy': legal_holds_update_policy, + 'linked_apps/list_member_linked_apps': linked_apps_list_member_linked_apps, + 'linked_apps/list_members_linked_apps': linked_apps_list_members_linked_apps, + 'linked_apps/list_team_linked_apps': linked_apps_list_team_linked_apps, + 'linked_apps/revoke_linked_app': linked_apps_revoke_linked_app, + 'linked_apps/revoke_linked_app_batch': linked_apps_revoke_linked_app_batch, + 'member_space_limits/excluded_users/add': member_space_limits_excluded_users_add, + 'member_space_limits/excluded_users/list': member_space_limits_excluded_users_list, + 'member_space_limits/excluded_users/list/continue': member_space_limits_excluded_users_list_continue, + 'member_space_limits/excluded_users/remove': member_space_limits_excluded_users_remove, + 'member_space_limits/get_custom_quota': member_space_limits_get_custom_quota, + 'member_space_limits/remove_custom_quota': member_space_limits_remove_custom_quota, + 'member_space_limits/set_custom_quota': member_space_limits_set_custom_quota, + 'members/add': members_add, + 'members/add:2': members_add_v2, + 'members/add/job_status/get': members_add_job_status_get, + 'members/add/job_status/get:2': members_add_job_status_get_v2, + 'members/delete_former_member_files': members_delete_former_member_files, + 'members/delete_profile_photo': members_delete_profile_photo, + 'members/delete_profile_photo:2': members_delete_profile_photo_v2, + 'members/get_available_team_member_roles': members_get_available_team_member_roles, + 'members/get_info': members_get_info, + 'members/get_info:2': members_get_info_v2, + 'members/list': members_list, + 'members/list:2': members_list_v2, + 'members/list/continue': members_list_continue, + 'members/list/continue:2': members_list_continue_v2, + 'members/move_former_member_files': members_move_former_member_files, + 'members/move_former_member_files/job_status/check': members_move_former_member_files_job_status_check, + 'members/recover': members_recover, + 'members/remove': members_remove, + 'members/remove/job_status/get': members_remove_job_status_get, + 'members/secondary_emails/add': members_secondary_emails_add, + 'members/secondary_emails/delete': members_secondary_emails_delete, + 'members/secondary_emails/resend_verification_emails': members_secondary_emails_resend_verification_emails, + 'members/send_welcome_email': members_send_welcome_email, + 'members/set_admin_permissions': members_set_admin_permissions, + 'members/set_admin_permissions:2': members_set_admin_permissions_v2, + 'members/set_profile': members_set_profile, + 'members/set_profile:2': members_set_profile_v2, + 'members/set_profile_photo': members_set_profile_photo, + 'members/set_profile_photo:2': members_set_profile_photo_v2, + 'members/suspend': members_suspend, + 'members/unsuspend': members_unsuspend, + 'namespaces/list': namespaces_list, + 'namespaces/list/continue': namespaces_list_continue, + 'properties/template/add': properties_template_add, + 'properties/template/get': properties_template_get, + 'reports/get_activity': reports_get_activity, + 'reports/get_devices': reports_get_devices, + 'reports/get_membership': reports_get_membership, + 'reports/get_storage': reports_get_storage, + 'sharing_allowlist/add': sharing_allowlist_add, + 'sharing_allowlist/list': sharing_allowlist_list, + 'sharing_allowlist/list/continue': sharing_allowlist_list_continue, + 'sharing_allowlist/remove': sharing_allowlist_remove, + 'team_folder/activate': team_folder_activate, + 'team_folder/archive': team_folder_archive, + 'team_folder/archive/check': team_folder_archive_check, + 'team_folder/create': team_folder_create, + 'team_folder/get_info': team_folder_get_info, + 'team_folder/list': team_folder_list, + 'team_folder/list/continue': team_folder_list_continue, + 'team_folder/permanently_delete': team_folder_permanently_delete, + 'team_folder/rename': team_folder_rename, + 'team_folder/restore': team_folder_restore, + 'team_folder/update_sync_settings': team_folder_update_sync_settings, + 'token/get_authenticated_admin': token_get_authenticated_admin, } + diff --git a/dropbox/team_common.py b/dropbox/team_common.py index ae546afc..0ef48480 100644 --- a/dropbox/team_common.py +++ b/dropbox/team_common.py @@ -9,7 +9,6 @@ from dropbox import common - class GroupManagementType(bb.Union): """ The group type determines how a group is managed. @@ -26,7 +25,7 @@ class GroupManagementType(bb.Union): A group which is managed automatically by Dropbox. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition user_managed = None # Attribute is overwritten below the class definition @@ -42,7 +41,7 @@ def is_user_managed(self): :rtype: bool """ - return self._tag == "user_managed" + return self._tag == 'user_managed' def is_company_managed(self): """ @@ -50,7 +49,7 @@ def is_company_managed(self): :rtype: bool """ - return self._tag == "company_managed" + return self._tag == 'company_managed' def is_system_managed(self): """ @@ -58,7 +57,7 @@ def is_system_managed(self): :rtype: bool """ - return self._tag == "system_managed" + return self._tag == 'system_managed' def is_other(self): """ @@ -66,17 +65,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupManagementType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GroupManagementType, self)._process_custom_annotations(annotation_type, field_path, processor) GroupManagementType_validator = bv.Union(GroupManagementType) - class GroupSummary(bb.Struct): """ Information about a group. @@ -91,23 +86,21 @@ class GroupSummary(bb.Struct): """ __slots__ = [ - "_group_name_value", - "_group_id_value", - "_group_external_id_value", - "_member_count_value", - "_group_management_type_value", + '_group_name_value', + '_group_id_value', + '_group_external_id_value', + '_member_count_value', + '_group_management_type_value', ] _has_required_fields = True - def __init__( - self, - group_name=None, - group_id=None, - group_management_type=None, - group_external_id=None, - member_count=None, - ): + def __init__(self, + group_name=None, + group_id=None, + group_management_type=None, + group_external_id=None, + member_count=None): self._group_name_value = bb.NOT_SET self._group_id_value = bb.NOT_SET self._group_external_id_value = bb.NOT_SET @@ -140,14 +133,10 @@ def __init__( group_management_type = bb.Attribute("group_management_type", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupSummary, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GroupSummary, self)._process_custom_annotations(annotation_type, field_path, processor) GroupSummary_validator = bv.Struct(GroupSummary) - class GroupType(bb.Union): """ The group type determines how a group is created and managed. @@ -163,7 +152,7 @@ class GroupType(bb.Union): A group is created and managed by a user. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition team = None # Attribute is overwritten below the class definition @@ -177,7 +166,7 @@ def is_team(self): :rtype: bool """ - return self._tag == "team" + return self._tag == 'team' def is_user_managed(self): """ @@ -185,7 +174,7 @@ def is_user_managed(self): :rtype: bool """ - return self._tag == "user_managed" + return self._tag == 'user_managed' def is_other(self): """ @@ -193,15 +182,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): super(GroupType, self)._process_custom_annotations(annotation_type, field_path, processor) - GroupType_validator = bv.Union(GroupType) - class MemberSpaceLimitType(bb.Union): """ The type of the space limit imposed on a team member. @@ -220,7 +207,7 @@ class MemberSpaceLimitType(bb.Union): stop after the limit is reached. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition off = None # Attribute is overwritten below the class definition @@ -236,7 +223,7 @@ def is_off(self): :rtype: bool """ - return self._tag == "off" + return self._tag == 'off' def is_alert_only(self): """ @@ -244,7 +231,7 @@ def is_alert_only(self): :rtype: bool """ - return self._tag == "alert_only" + return self._tag == 'alert_only' def is_stop_sync(self): """ @@ -252,7 +239,7 @@ def is_stop_sync(self): :rtype: bool """ - return self._tag == "stop_sync" + return self._tag == 'stop_sync' def is_other(self): """ @@ -260,17 +247,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberSpaceLimitType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MemberSpaceLimitType, self)._process_custom_annotations(annotation_type, field_path, processor) MemberSpaceLimitType_validator = bv.Union(MemberSpaceLimitType) - class TimeRange(bb.Struct): """ Time range. @@ -282,13 +265,15 @@ class TimeRange(bb.Struct): """ __slots__ = [ - "_start_time_value", - "_end_time_value", + '_start_time_value', + '_end_time_value', ] _has_required_fields = False - def __init__(self, start_time=None, end_time=None): + def __init__(self, + start_time=None, + end_time=None): self._start_time_value = bb.NOT_SET self._end_time_value = bb.NOT_SET if start_time is not None: @@ -305,7 +290,6 @@ def __init__(self, start_time=None, end_time=None): def _process_custom_annotations(self, annotation_type, field_path, processor): super(TimeRange, self)._process_custom_annotations(annotation_type, field_path, processor) - TimeRange_validator = bv.Struct(TimeRange) GroupExternalId_validator = bv.String() @@ -319,79 +303,77 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): GroupManagementType._system_managed_validator = bv.Void() GroupManagementType._other_validator = bv.Void() GroupManagementType._tagmap = { - "user_managed": GroupManagementType._user_managed_validator, - "company_managed": GroupManagementType._company_managed_validator, - "system_managed": GroupManagementType._system_managed_validator, - "other": GroupManagementType._other_validator, + 'user_managed': GroupManagementType._user_managed_validator, + 'company_managed': GroupManagementType._company_managed_validator, + 'system_managed': GroupManagementType._system_managed_validator, + 'other': GroupManagementType._other_validator, } -GroupManagementType.user_managed = GroupManagementType("user_managed") -GroupManagementType.company_managed = GroupManagementType("company_managed") -GroupManagementType.system_managed = GroupManagementType("system_managed") -GroupManagementType.other = GroupManagementType("other") +GroupManagementType.user_managed = GroupManagementType('user_managed') +GroupManagementType.company_managed = GroupManagementType('company_managed') +GroupManagementType.system_managed = GroupManagementType('system_managed') +GroupManagementType.other = GroupManagementType('other') GroupSummary.group_name.validator = bv.String() GroupSummary.group_id.validator = GroupId_validator GroupSummary.group_external_id.validator = bv.Nullable(GroupExternalId_validator) GroupSummary.member_count.validator = bv.Nullable(bv.UInt32()) GroupSummary.group_management_type.validator = GroupManagementType_validator -GroupSummary._all_field_names_ = set( - [ - "group_name", - "group_id", - "group_external_id", - "member_count", - "group_management_type", - ] -) +GroupSummary._all_field_names_ = set([ + 'group_name', + 'group_id', + 'group_external_id', + 'member_count', + 'group_management_type', +]) GroupSummary._all_fields_ = [ - ("group_name", GroupSummary.group_name.validator), - ("group_id", GroupSummary.group_id.validator), - ("group_external_id", GroupSummary.group_external_id.validator), - ("member_count", GroupSummary.member_count.validator), - ("group_management_type", GroupSummary.group_management_type.validator), + ('group_name', GroupSummary.group_name.validator), + ('group_id', GroupSummary.group_id.validator), + ('group_external_id', GroupSummary.group_external_id.validator), + ('member_count', GroupSummary.member_count.validator), + ('group_management_type', GroupSummary.group_management_type.validator), ] GroupType._team_validator = bv.Void() GroupType._user_managed_validator = bv.Void() GroupType._other_validator = bv.Void() GroupType._tagmap = { - "team": GroupType._team_validator, - "user_managed": GroupType._user_managed_validator, - "other": GroupType._other_validator, + 'team': GroupType._team_validator, + 'user_managed': GroupType._user_managed_validator, + 'other': GroupType._other_validator, } -GroupType.team = GroupType("team") -GroupType.user_managed = GroupType("user_managed") -GroupType.other = GroupType("other") +GroupType.team = GroupType('team') +GroupType.user_managed = GroupType('user_managed') +GroupType.other = GroupType('other') MemberSpaceLimitType._off_validator = bv.Void() MemberSpaceLimitType._alert_only_validator = bv.Void() MemberSpaceLimitType._stop_sync_validator = bv.Void() MemberSpaceLimitType._other_validator = bv.Void() MemberSpaceLimitType._tagmap = { - "off": MemberSpaceLimitType._off_validator, - "alert_only": MemberSpaceLimitType._alert_only_validator, - "stop_sync": MemberSpaceLimitType._stop_sync_validator, - "other": MemberSpaceLimitType._other_validator, + 'off': MemberSpaceLimitType._off_validator, + 'alert_only': MemberSpaceLimitType._alert_only_validator, + 'stop_sync': MemberSpaceLimitType._stop_sync_validator, + 'other': MemberSpaceLimitType._other_validator, } -MemberSpaceLimitType.off = MemberSpaceLimitType("off") -MemberSpaceLimitType.alert_only = MemberSpaceLimitType("alert_only") -MemberSpaceLimitType.stop_sync = MemberSpaceLimitType("stop_sync") -MemberSpaceLimitType.other = MemberSpaceLimitType("other") +MemberSpaceLimitType.off = MemberSpaceLimitType('off') +MemberSpaceLimitType.alert_only = MemberSpaceLimitType('alert_only') +MemberSpaceLimitType.stop_sync = MemberSpaceLimitType('stop_sync') +MemberSpaceLimitType.other = MemberSpaceLimitType('other') TimeRange.start_time.validator = bv.Nullable(common.DropboxTimestamp_validator) TimeRange.end_time.validator = bv.Nullable(common.DropboxTimestamp_validator) -TimeRange._all_field_names_ = set( - [ - "start_time", - "end_time", - ] -) +TimeRange._all_field_names_ = set([ + 'start_time', + 'end_time', +]) TimeRange._all_fields_ = [ - ("start_time", TimeRange.start_time.validator), - ("end_time", TimeRange.end_time.validator), + ('start_time', TimeRange.start_time.validator), + ('end_time', TimeRange.end_time.validator), ] -ROUTES = {} +ROUTES = { +} + diff --git a/dropbox/team_log.py b/dropbox/team_log.py index 3c3ccdfd..ca7ad73c 100644 --- a/dropbox/team_log.py +++ b/dropbox/team_log.py @@ -16,7 +16,6 @@ from dropbox import team_policies from dropbox import users_common - class AccessMethodLogInfo(bb.Union): """ Indicates the method in which the action was performed. @@ -45,7 +44,7 @@ class AccessMethodLogInfo(bb.Union): :vartype AccessMethodLogInfo.sign_in_as: WebSessionLogInfo """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -58,7 +57,7 @@ def admin_console(cls, val): :param WebSessionLogInfo val: :rtype: AccessMethodLogInfo """ - return cls("admin_console", val) + return cls('admin_console', val) @classmethod def api(cls, val): @@ -69,7 +68,7 @@ def api(cls, val): :param ApiSessionLogInfo val: :rtype: AccessMethodLogInfo """ - return cls("api", val) + return cls('api', val) @classmethod def content_manager(cls, val): @@ -80,7 +79,7 @@ def content_manager(cls, val): :param WebSessionLogInfo val: :rtype: AccessMethodLogInfo """ - return cls("content_manager", val) + return cls('content_manager', val) @classmethod def end_user(cls, val): @@ -91,7 +90,7 @@ def end_user(cls, val): :param SessionLogInfo val: :rtype: AccessMethodLogInfo """ - return cls("end_user", val) + return cls('end_user', val) @classmethod def enterprise_console(cls, val): @@ -102,7 +101,7 @@ def enterprise_console(cls, val): :param WebSessionLogInfo val: :rtype: AccessMethodLogInfo """ - return cls("enterprise_console", val) + return cls('enterprise_console', val) @classmethod def sign_in_as(cls, val): @@ -113,7 +112,7 @@ def sign_in_as(cls, val): :param WebSessionLogInfo val: :rtype: AccessMethodLogInfo """ - return cls("sign_in_as", val) + return cls('sign_in_as', val) def is_admin_console(self): """ @@ -121,7 +120,7 @@ def is_admin_console(self): :rtype: bool """ - return self._tag == "admin_console" + return self._tag == 'admin_console' def is_api(self): """ @@ -129,7 +128,7 @@ def is_api(self): :rtype: bool """ - return self._tag == "api" + return self._tag == 'api' def is_content_manager(self): """ @@ -137,7 +136,7 @@ def is_content_manager(self): :rtype: bool """ - return self._tag == "content_manager" + return self._tag == 'content_manager' def is_end_user(self): """ @@ -145,7 +144,7 @@ def is_end_user(self): :rtype: bool """ - return self._tag == "end_user" + return self._tag == 'end_user' def is_enterprise_console(self): """ @@ -153,7 +152,7 @@ def is_enterprise_console(self): :rtype: bool """ - return self._tag == "enterprise_console" + return self._tag == 'enterprise_console' def is_sign_in_as(self): """ @@ -161,7 +160,7 @@ def is_sign_in_as(self): :rtype: bool """ - return self._tag == "sign_in_as" + return self._tag == 'sign_in_as' def is_other(self): """ @@ -169,7 +168,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_admin_console(self): """ @@ -244,14 +243,10 @@ def get_sign_in_as(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AccessMethodLogInfo, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AccessMethodLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) AccessMethodLogInfo_validator = bv.Union(AccessMethodLogInfo) - class AccountCaptureAvailability(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -259,7 +254,7 @@ class AccountCaptureAvailability(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition available = None # Attribute is overwritten below the class definition @@ -273,7 +268,7 @@ def is_available(self): :rtype: bool """ - return self._tag == "available" + return self._tag == 'available' def is_unavailable(self): """ @@ -281,7 +276,7 @@ def is_unavailable(self): :rtype: bool """ - return self._tag == "unavailable" + return self._tag == 'unavailable' def is_other(self): """ @@ -289,17 +284,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AccountCaptureAvailability, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AccountCaptureAvailability, self)._process_custom_annotations(annotation_type, field_path, processor) AccountCaptureAvailability_validator = bv.Union(AccountCaptureAvailability) - class AccountCaptureChangeAvailabilityDetails(bb.Struct): """ Granted/revoked option to enable account capture on team domains. @@ -312,13 +303,15 @@ class AccountCaptureChangeAvailabilityDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -333,24 +326,20 @@ def __init__(self, new_value=None, previous_value=None): 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 - ) - - -AccountCaptureChangeAvailabilityDetails_validator = bv.Struct( - AccountCaptureChangeAvailabilityDetails -) + super(AccountCaptureChangeAvailabilityDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +AccountCaptureChangeAvailabilityDetails_validator = bv.Struct(AccountCaptureChangeAvailabilityDetails) class AccountCaptureChangeAvailabilityType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -359,14 +348,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AccountCaptureChangeAvailabilityType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AccountCaptureChangeAvailabilityType, self)._process_custom_annotations(annotation_type, field_path, processor) AccountCaptureChangeAvailabilityType_validator = bv.Struct(AccountCaptureChangeAvailabilityType) - class AccountCaptureChangePolicyDetails(bb.Struct): """ Changed account capture setting on team domain. @@ -379,13 +364,15 @@ class AccountCaptureChangePolicyDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -400,22 +387,20 @@ def __init__(self, new_value=None, previous_value=None): previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AccountCaptureChangePolicyDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AccountCaptureChangePolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) AccountCaptureChangePolicyDetails_validator = bv.Struct(AccountCaptureChangePolicyDetails) - class AccountCaptureChangePolicyType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -424,14 +409,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AccountCaptureChangePolicyType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AccountCaptureChangePolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) AccountCaptureChangePolicyType_validator = bv.Struct(AccountCaptureChangePolicyType) - class AccountCaptureMigrateAccountDetails(bb.Struct): """ Account-captured user migrated account to team. @@ -441,12 +422,13 @@ class AccountCaptureMigrateAccountDetails(bb.Struct): """ __slots__ = [ - "_domain_name_value", + '_domain_name_value', ] _has_required_fields = True - def __init__(self, domain_name=None): + def __init__(self, + domain_name=None): self._domain_name_value = bb.NOT_SET if domain_name is not None: self.domain_name = domain_name @@ -455,22 +437,20 @@ def __init__(self, domain_name=None): domain_name = bb.Attribute("domain_name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AccountCaptureMigrateAccountDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AccountCaptureMigrateAccountDetails, self)._process_custom_annotations(annotation_type, field_path, processor) AccountCaptureMigrateAccountDetails_validator = bv.Struct(AccountCaptureMigrateAccountDetails) - class AccountCaptureMigrateAccountType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -479,14 +459,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AccountCaptureMigrateAccountType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AccountCaptureMigrateAccountType, self)._process_custom_annotations(annotation_type, field_path, processor) AccountCaptureMigrateAccountType_validator = bv.Struct(AccountCaptureMigrateAccountType) - class AccountCaptureNotificationEmailsSentDetails(bb.Struct): """ Sent account capture email to all unmanaged members. @@ -498,13 +474,15 @@ class AccountCaptureNotificationEmailsSentDetails(bb.Struct): """ __slots__ = [ - "_domain_name_value", - "_notification_type_value", + '_domain_name_value', + '_notification_type_value', ] _has_required_fields = True - def __init__(self, domain_name=None, notification_type=None): + def __init__(self, + domain_name=None, + notification_type=None): self._domain_name_value = bb.NOT_SET self._notification_type_value = bb.NOT_SET if domain_name is not None: @@ -519,24 +497,20 @@ def __init__(self, domain_name=None, notification_type=None): 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 - ) - - -AccountCaptureNotificationEmailsSentDetails_validator = bv.Struct( - AccountCaptureNotificationEmailsSentDetails -) + super(AccountCaptureNotificationEmailsSentDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +AccountCaptureNotificationEmailsSentDetails_validator = bv.Struct(AccountCaptureNotificationEmailsSentDetails) class AccountCaptureNotificationEmailsSentType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -545,15 +519,9 @@ def __init__(self, description=None): 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 - ) - - -AccountCaptureNotificationEmailsSentType_validator = bv.Struct( - AccountCaptureNotificationEmailsSentType -) + super(AccountCaptureNotificationEmailsSentType, self)._process_custom_annotations(annotation_type, field_path, processor) +AccountCaptureNotificationEmailsSentType_validator = bv.Struct(AccountCaptureNotificationEmailsSentType) class AccountCaptureNotificationType(bb.Union): """ @@ -562,7 +530,7 @@ class AccountCaptureNotificationType(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition actionable_notification = None # Attribute is overwritten below the class definition @@ -576,7 +544,7 @@ def is_actionable_notification(self): :rtype: bool """ - return self._tag == "actionable_notification" + return self._tag == 'actionable_notification' def is_proactive_warning_notification(self): """ @@ -584,7 +552,7 @@ def is_proactive_warning_notification(self): :rtype: bool """ - return self._tag == "proactive_warning_notification" + return self._tag == 'proactive_warning_notification' def is_other(self): """ @@ -592,17 +560,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AccountCaptureNotificationType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AccountCaptureNotificationType, self)._process_custom_annotations(annotation_type, field_path, processor) AccountCaptureNotificationType_validator = bv.Union(AccountCaptureNotificationType) - class AccountCapturePolicy(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -610,7 +574,7 @@ class AccountCapturePolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition all_users = None # Attribute is overwritten below the class definition @@ -626,7 +590,7 @@ def is_all_users(self): :rtype: bool """ - return self._tag == "all_users" + return self._tag == 'all_users' def is_disabled(self): """ @@ -634,7 +598,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == "disabled" + return self._tag == 'disabled' def is_invited_users(self): """ @@ -642,7 +606,7 @@ def is_invited_users(self): :rtype: bool """ - return self._tag == "invited_users" + return self._tag == 'invited_users' def is_other(self): """ @@ -650,17 +614,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AccountCapturePolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AccountCapturePolicy, self)._process_custom_annotations(annotation_type, field_path, processor) AccountCapturePolicy_validator = bv.Union(AccountCapturePolicy) - class AccountCaptureRelinquishAccountDetails(bb.Struct): """ Account-captured user changed account email to personal email. @@ -670,12 +630,13 @@ class AccountCaptureRelinquishAccountDetails(bb.Struct): """ __slots__ = [ - "_domain_name_value", + '_domain_name_value', ] _has_required_fields = True - def __init__(self, domain_name=None): + def __init__(self, + domain_name=None): self._domain_name_value = bb.NOT_SET if domain_name is not None: self.domain_name = domain_name @@ -684,22 +645,20 @@ def __init__(self, domain_name=None): domain_name = bb.Attribute("domain_name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AccountCaptureRelinquishAccountDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AccountCaptureRelinquishAccountDetails, self)._process_custom_annotations(annotation_type, field_path, processor) AccountCaptureRelinquishAccountDetails_validator = bv.Struct(AccountCaptureRelinquishAccountDetails) - class AccountCaptureRelinquishAccountType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -708,14 +667,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AccountCaptureRelinquishAccountType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AccountCaptureRelinquishAccountType, self)._process_custom_annotations(annotation_type, field_path, processor) AccountCaptureRelinquishAccountType_validator = bv.Struct(AccountCaptureRelinquishAccountType) - class AccountLockOrUnlockedDetails(bb.Struct): """ Unlocked/locked account after failed sign in attempts. @@ -727,13 +682,15 @@ class AccountLockOrUnlockedDetails(bb.Struct): """ __slots__ = [ - "_previous_value_value", - "_new_value_value", + '_previous_value_value', + '_new_value_value', ] _has_required_fields = True - def __init__(self, previous_value=None, new_value=None): + def __init__(self, + previous_value=None, + new_value=None): self._previous_value_value = bb.NOT_SET self._new_value_value = bb.NOT_SET if previous_value is not None: @@ -748,22 +705,20 @@ def __init__(self, previous_value=None, new_value=None): new_value = bb.Attribute("new_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AccountLockOrUnlockedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AccountLockOrUnlockedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) AccountLockOrUnlockedDetails_validator = bv.Struct(AccountLockOrUnlockedDetails) - class AccountLockOrUnlockedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -772,14 +727,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AccountLockOrUnlockedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AccountLockOrUnlockedType, self)._process_custom_annotations(annotation_type, field_path, processor) AccountLockOrUnlockedType_validator = bv.Struct(AccountLockOrUnlockedType) - class AccountState(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -787,7 +738,7 @@ class AccountState(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition locked = None # Attribute is overwritten below the class definition @@ -801,7 +752,7 @@ def is_locked(self): :rtype: bool """ - return self._tag == "locked" + return self._tag == 'locked' def is_unlocked(self): """ @@ -809,7 +760,7 @@ def is_unlocked(self): :rtype: bool """ - return self._tag == "unlocked" + return self._tag == 'unlocked' def is_other(self): """ @@ -817,17 +768,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AccountState, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AccountState, self)._process_custom_annotations(annotation_type, field_path, processor) AccountState_validator = bv.Union(AccountState) - class ActionDetails(bb.Union): """ Additional information indicating the action taken that caused status @@ -848,7 +795,7 @@ class ActionDetails(bb.Union): :vartype ActionDetails.team_join_details: JoinTeamDetails """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -861,7 +808,7 @@ def remove_action(cls, val): :param MemberRemoveActionType val: :rtype: ActionDetails """ - return cls("remove_action", val) + return cls('remove_action', val) @classmethod def team_invite_details(cls, val): @@ -872,7 +819,7 @@ def team_invite_details(cls, val): :param TeamInviteDetails val: :rtype: ActionDetails """ - return cls("team_invite_details", val) + return cls('team_invite_details', val) @classmethod def team_join_details(cls, val): @@ -883,7 +830,7 @@ def team_join_details(cls, val): :param JoinTeamDetails val: :rtype: ActionDetails """ - return cls("team_join_details", val) + return cls('team_join_details', val) def is_remove_action(self): """ @@ -891,7 +838,7 @@ def is_remove_action(self): :rtype: bool """ - return self._tag == "remove_action" + return self._tag == 'remove_action' def is_team_invite_details(self): """ @@ -899,7 +846,7 @@ def is_team_invite_details(self): :rtype: bool """ - return self._tag == "team_invite_details" + return self._tag == 'team_invite_details' def is_team_join_details(self): """ @@ -907,7 +854,7 @@ def is_team_join_details(self): :rtype: bool """ - return self._tag == "team_join_details" + return self._tag == 'team_join_details' def is_other(self): """ @@ -915,7 +862,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_remove_action(self): """ @@ -954,14 +901,10 @@ def get_team_join_details(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ActionDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ActionDetails, self)._process_custom_annotations(annotation_type, field_path, processor) ActionDetails_validator = bv.Union(ActionDetails) - class ActorLogInfo(bb.Union): """ The entity who performed the action. @@ -988,7 +931,7 @@ class ActorLogInfo(bb.Union): :vartype ActorLogInfo.user: UserLogInfo """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition anonymous = None # Attribute is overwritten below the class definition @@ -1005,7 +948,7 @@ def admin(cls, val): :param UserLogInfo val: :rtype: ActorLogInfo """ - return cls("admin", val) + return cls('admin', val) @classmethod def app(cls, val): @@ -1016,7 +959,7 @@ def app(cls, val): :param AppLogInfo val: :rtype: ActorLogInfo """ - return cls("app", val) + return cls('app', val) @classmethod def reseller(cls, val): @@ -1027,7 +970,7 @@ def reseller(cls, val): :param ResellerLogInfo val: :rtype: ActorLogInfo """ - return cls("reseller", val) + return cls('reseller', val) @classmethod def user(cls, val): @@ -1038,7 +981,7 @@ def user(cls, val): :param UserLogInfo val: :rtype: ActorLogInfo """ - return cls("user", val) + return cls('user', val) def is_admin(self): """ @@ -1046,7 +989,7 @@ def is_admin(self): :rtype: bool """ - return self._tag == "admin" + return self._tag == 'admin' def is_anonymous(self): """ @@ -1054,7 +997,7 @@ def is_anonymous(self): :rtype: bool """ - return self._tag == "anonymous" + return self._tag == 'anonymous' def is_app(self): """ @@ -1062,7 +1005,7 @@ def is_app(self): :rtype: bool """ - return self._tag == "app" + return self._tag == 'app' def is_dropbox(self): """ @@ -1070,7 +1013,7 @@ def is_dropbox(self): :rtype: bool """ - return self._tag == "dropbox" + return self._tag == 'dropbox' def is_reseller(self): """ @@ -1078,7 +1021,7 @@ def is_reseller(self): :rtype: bool """ - return self._tag == "reseller" + return self._tag == 'reseller' def is_user(self): """ @@ -1086,7 +1029,7 @@ def is_user(self): :rtype: bool """ - return self._tag == "user" + return self._tag == 'user' def is_other(self): """ @@ -1094,7 +1037,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_admin(self): """ @@ -1145,14 +1088,10 @@ def get_user(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ActorLogInfo, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ActorLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) ActorLogInfo_validator = bv.Union(ActorLogInfo) - class AddonAssignedDetails(bb.Struct): """ Add-on Assigned. @@ -1164,13 +1103,15 @@ class AddonAssignedDetails(bb.Struct): """ __slots__ = [ - "_user_name_value", - "_addon_name_value", + '_user_name_value', + '_addon_name_value', ] _has_required_fields = True - def __init__(self, user_name=None, addon_name=None): + def __init__(self, + user_name=None, + addon_name=None): self._user_name_value = bb.NOT_SET self._addon_name_value = bb.NOT_SET if user_name is not None: @@ -1185,22 +1126,20 @@ def __init__(self, user_name=None, addon_name=None): addon_name = bb.Attribute("addon_name", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AddonAssignedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AddonAssignedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) AddonAssignedDetails_validator = bv.Struct(AddonAssignedDetails) - class AddonAssignedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -1209,14 +1148,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AddonAssignedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AddonAssignedType, self)._process_custom_annotations(annotation_type, field_path, processor) AddonAssignedType_validator = bv.Struct(AddonAssignedType) - class AddonLogInfo(bb.Struct): """ Add-on logged information @@ -1226,12 +1161,13 @@ class AddonLogInfo(bb.Struct): """ __slots__ = [ - "_addon_name_value", + '_addon_name_value', ] _has_required_fields = True - def __init__(self, addon_name=None): + def __init__(self, + addon_name=None): self._addon_name_value = bb.NOT_SET if addon_name is not None: self.addon_name = addon_name @@ -1240,14 +1176,10 @@ def __init__(self, addon_name=None): addon_name = bb.Attribute("addon_name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AddonLogInfo, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AddonLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) AddonLogInfo_validator = bv.Struct(AddonLogInfo) - class AddonRemovedDetails(bb.Struct): """ Add-on Removed. @@ -1259,13 +1191,15 @@ class AddonRemovedDetails(bb.Struct): """ __slots__ = [ - "_user_name_value", - "_addon_name_value", + '_user_name_value', + '_addon_name_value', ] _has_required_fields = True - def __init__(self, user_name=None, addon_name=None): + def __init__(self, + user_name=None, + addon_name=None): self._user_name_value = bb.NOT_SET self._addon_name_value = bb.NOT_SET if user_name is not None: @@ -1280,22 +1214,20 @@ def __init__(self, user_name=None, addon_name=None): addon_name = bb.Attribute("addon_name", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AddonRemovedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AddonRemovedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) AddonRemovedDetails_validator = bv.Struct(AddonRemovedDetails) - class AddonRemovedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -1304,14 +1236,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AddonRemovedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AddonRemovedType, self)._process_custom_annotations(annotation_type, field_path, processor) AddonRemovedType_validator = bv.Struct(AddonRemovedType) - class AdminAlertCategoryEnum(bb.Union): """ Alert category @@ -1321,7 +1249,7 @@ class AdminAlertCategoryEnum(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition account_takeover = None # Attribute is overwritten below the class definition @@ -1345,7 +1273,7 @@ def is_account_takeover(self): :rtype: bool """ - return self._tag == "account_takeover" + return self._tag == 'account_takeover' def is_data_loss_protection(self): """ @@ -1353,7 +1281,7 @@ def is_data_loss_protection(self): :rtype: bool """ - return self._tag == "data_loss_protection" + return self._tag == 'data_loss_protection' def is_information_governance(self): """ @@ -1361,7 +1289,7 @@ def is_information_governance(self): :rtype: bool """ - return self._tag == "information_governance" + return self._tag == 'information_governance' def is_malware_sharing(self): """ @@ -1369,7 +1297,7 @@ def is_malware_sharing(self): :rtype: bool """ - return self._tag == "malware_sharing" + return self._tag == 'malware_sharing' def is_massive_file_operation(self): """ @@ -1377,7 +1305,7 @@ def is_massive_file_operation(self): :rtype: bool """ - return self._tag == "massive_file_operation" + return self._tag == 'massive_file_operation' def is_na(self): """ @@ -1385,7 +1313,7 @@ def is_na(self): :rtype: bool """ - return self._tag == "na" + return self._tag == 'na' def is_threat_management(self): """ @@ -1393,7 +1321,7 @@ def is_threat_management(self): :rtype: bool """ - return self._tag == "threat_management" + return self._tag == 'threat_management' def is_other(self): """ @@ -1401,17 +1329,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AdminAlertCategoryEnum, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AdminAlertCategoryEnum, self)._process_custom_annotations(annotation_type, field_path, processor) AdminAlertCategoryEnum_validator = bv.Union(AdminAlertCategoryEnum) - class AdminAlertGeneralStateEnum(bb.Union): """ Alert state @@ -1421,7 +1345,7 @@ class AdminAlertGeneralStateEnum(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition active = None # Attribute is overwritten below the class definition @@ -1441,7 +1365,7 @@ def is_active(self): :rtype: bool """ - return self._tag == "active" + return self._tag == 'active' def is_dismissed(self): """ @@ -1449,7 +1373,7 @@ def is_dismissed(self): :rtype: bool """ - return self._tag == "dismissed" + return self._tag == 'dismissed' def is_in_progress(self): """ @@ -1457,7 +1381,7 @@ def is_in_progress(self): :rtype: bool """ - return self._tag == "in_progress" + return self._tag == 'in_progress' def is_na(self): """ @@ -1465,7 +1389,7 @@ def is_na(self): :rtype: bool """ - return self._tag == "na" + return self._tag == 'na' def is_resolved(self): """ @@ -1473,7 +1397,7 @@ def is_resolved(self): :rtype: bool """ - return self._tag == "resolved" + return self._tag == 'resolved' def is_other(self): """ @@ -1481,17 +1405,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AdminAlertGeneralStateEnum, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AdminAlertGeneralStateEnum, self)._process_custom_annotations(annotation_type, field_path, processor) AdminAlertGeneralStateEnum_validator = bv.Union(AdminAlertGeneralStateEnum) - class AdminAlertSeverityEnum(bb.Union): """ Alert severity @@ -1501,7 +1421,7 @@ class AdminAlertSeverityEnum(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition high = None # Attribute is overwritten below the class definition @@ -1521,7 +1441,7 @@ def is_high(self): :rtype: bool """ - return self._tag == "high" + return self._tag == 'high' def is_info(self): """ @@ -1529,7 +1449,7 @@ def is_info(self): :rtype: bool """ - return self._tag == "info" + return self._tag == 'info' def is_low(self): """ @@ -1537,7 +1457,7 @@ def is_low(self): :rtype: bool """ - return self._tag == "low" + return self._tag == 'low' def is_medium(self): """ @@ -1545,7 +1465,7 @@ def is_medium(self): :rtype: bool """ - return self._tag == "medium" + return self._tag == 'medium' def is_na(self): """ @@ -1553,7 +1473,7 @@ def is_na(self): :rtype: bool """ - return self._tag == "na" + return self._tag == 'na' def is_other(self): """ @@ -1561,17 +1481,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AdminAlertSeverityEnum, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AdminAlertSeverityEnum, self)._process_custom_annotations(annotation_type, field_path, processor) AdminAlertSeverityEnum_validator = bv.Union(AdminAlertSeverityEnum) - class AdminAlertingAlertConfiguration(bb.Struct): """ Alert configurations @@ -1591,25 +1507,23 @@ class AdminAlertingAlertConfiguration(bb.Struct): """ __slots__ = [ - "_alert_state_value", - "_sensitivity_level_value", - "_recipients_settings_value", - "_text_value", - "_excluded_file_extensions_value", - "_malware_exclusion_state_value", + '_alert_state_value', + '_sensitivity_level_value', + '_recipients_settings_value', + '_text_value', + '_excluded_file_extensions_value', + '_malware_exclusion_state_value', ] _has_required_fields = False - def __init__( - self, - alert_state=None, - sensitivity_level=None, - recipients_settings=None, - text=None, - excluded_file_extensions=None, - malware_exclusion_state=None, - ): + def __init__(self, + alert_state=None, + sensitivity_level=None, + recipients_settings=None, + text=None, + excluded_file_extensions=None, + malware_exclusion_state=None): self._alert_state_value = bb.NOT_SET self._sensitivity_level_value = bb.NOT_SET self._recipients_settings_value = bb.NOT_SET @@ -1645,19 +1559,13 @@ def __init__( excluded_file_extensions = bb.Attribute("excluded_file_extensions", nullable=True) # Instance attribute type: MalwareExclusionState (validator is set below) - malware_exclusion_state = bb.Attribute( - "malware_exclusion_state", nullable=True, user_defined=True - ) + malware_exclusion_state = bb.Attribute("malware_exclusion_state", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AdminAlertingAlertConfiguration, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AdminAlertingAlertConfiguration, self)._process_custom_annotations(annotation_type, field_path, processor) AdminAlertingAlertConfiguration_validator = bv.Struct(AdminAlertingAlertConfiguration) - class AdminAlertingAlertSensitivity(bb.Union): """ Alert sensitivity @@ -1667,7 +1575,7 @@ class AdminAlertingAlertSensitivity(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition high = None # Attribute is overwritten below the class definition @@ -1689,7 +1597,7 @@ def is_high(self): :rtype: bool """ - return self._tag == "high" + return self._tag == 'high' def is_highest(self): """ @@ -1697,7 +1605,7 @@ def is_highest(self): :rtype: bool """ - return self._tag == "highest" + return self._tag == 'highest' def is_invalid(self): """ @@ -1705,7 +1613,7 @@ def is_invalid(self): :rtype: bool """ - return self._tag == "invalid" + return self._tag == 'invalid' def is_low(self): """ @@ -1713,7 +1621,7 @@ def is_low(self): :rtype: bool """ - return self._tag == "low" + return self._tag == 'low' def is_lowest(self): """ @@ -1721,7 +1629,7 @@ def is_lowest(self): :rtype: bool """ - return self._tag == "lowest" + return self._tag == 'lowest' def is_medium(self): """ @@ -1729,7 +1637,7 @@ def is_medium(self): :rtype: bool """ - return self._tag == "medium" + return self._tag == 'medium' def is_other(self): """ @@ -1737,17 +1645,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AdminAlertingAlertSensitivity, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AdminAlertingAlertSensitivity, self)._process_custom_annotations(annotation_type, field_path, processor) AdminAlertingAlertSensitivity_validator = bv.Union(AdminAlertingAlertSensitivity) - class AdminAlertingAlertStateChangedDetails(bb.Struct): """ Changed an alert state. @@ -1767,25 +1671,23 @@ class AdminAlertingAlertStateChangedDetails(bb.Struct): """ __slots__ = [ - "_alert_name_value", - "_alert_severity_value", - "_alert_category_value", - "_alert_instance_id_value", - "_previous_value_value", - "_new_value_value", + '_alert_name_value', + '_alert_severity_value', + '_alert_category_value', + '_alert_instance_id_value', + '_previous_value_value', + '_new_value_value', ] _has_required_fields = True - def __init__( - self, - alert_name=None, - alert_severity=None, - alert_category=None, - alert_instance_id=None, - previous_value=None, - new_value=None, - ): + def __init__(self, + alert_name=None, + alert_severity=None, + alert_category=None, + alert_instance_id=None, + previous_value=None, + new_value=None): self._alert_name_value = bb.NOT_SET self._alert_severity_value = bb.NOT_SET self._alert_category_value = bb.NOT_SET @@ -1824,22 +1726,20 @@ def __init__( new_value = bb.Attribute("new_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AdminAlertingAlertStateChangedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AdminAlertingAlertStateChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) AdminAlertingAlertStateChangedDetails_validator = bv.Struct(AdminAlertingAlertStateChangedDetails) - class AdminAlertingAlertStateChangedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -1848,14 +1748,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AdminAlertingAlertStateChangedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AdminAlertingAlertStateChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) AdminAlertingAlertStateChangedType_validator = bv.Struct(AdminAlertingAlertStateChangedType) - class AdminAlertingAlertStatePolicy(bb.Union): """ Policy for controlling whether an alert can be triggered or not @@ -1865,7 +1761,7 @@ class AdminAlertingAlertStatePolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition off = None # Attribute is overwritten below the class definition @@ -1879,7 +1775,7 @@ def is_off(self): :rtype: bool """ - return self._tag == "off" + return self._tag == 'off' def is_on(self): """ @@ -1887,7 +1783,7 @@ def is_on(self): :rtype: bool """ - return self._tag == "on" + return self._tag == 'on' def is_other(self): """ @@ -1895,17 +1791,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AdminAlertingAlertStatePolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AdminAlertingAlertStatePolicy, self)._process_custom_annotations(annotation_type, field_path, processor) AdminAlertingAlertStatePolicy_validator = bv.Union(AdminAlertingAlertStatePolicy) - class AdminAlertingChangedAlertConfigDetails(bb.Struct): """ Changed an alert setting. @@ -1919,14 +1811,17 @@ class AdminAlertingChangedAlertConfigDetails(bb.Struct): """ __slots__ = [ - "_alert_name_value", - "_previous_alert_config_value", - "_new_alert_config_value", + '_alert_name_value', + '_previous_alert_config_value', + '_new_alert_config_value', ] _has_required_fields = True - def __init__(self, alert_name=None, previous_alert_config=None, new_alert_config=None): + def __init__(self, + alert_name=None, + previous_alert_config=None, + new_alert_config=None): self._alert_name_value = bb.NOT_SET self._previous_alert_config_value = bb.NOT_SET self._new_alert_config_value = bb.NOT_SET @@ -1947,22 +1842,20 @@ def __init__(self, alert_name=None, previous_alert_config=None, new_alert_config new_alert_config = bb.Attribute("new_alert_config", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AdminAlertingChangedAlertConfigDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AdminAlertingChangedAlertConfigDetails, self)._process_custom_annotations(annotation_type, field_path, processor) AdminAlertingChangedAlertConfigDetails_validator = bv.Struct(AdminAlertingChangedAlertConfigDetails) - class AdminAlertingChangedAlertConfigType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -1971,14 +1864,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AdminAlertingChangedAlertConfigType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AdminAlertingChangedAlertConfigType, self)._process_custom_annotations(annotation_type, field_path, processor) AdminAlertingChangedAlertConfigType_validator = bv.Struct(AdminAlertingChangedAlertConfigType) - class AdminAlertingTriggeredAlertDetails(bb.Struct): """ Triggered security alert. @@ -1994,21 +1883,19 @@ class AdminAlertingTriggeredAlertDetails(bb.Struct): """ __slots__ = [ - "_alert_name_value", - "_alert_severity_value", - "_alert_category_value", - "_alert_instance_id_value", + '_alert_name_value', + '_alert_severity_value', + '_alert_category_value', + '_alert_instance_id_value', ] _has_required_fields = True - def __init__( - self, - alert_name=None, - alert_severity=None, - alert_category=None, - alert_instance_id=None, - ): + def __init__(self, + alert_name=None, + alert_severity=None, + alert_category=None, + alert_instance_id=None): self._alert_name_value = bb.NOT_SET self._alert_severity_value = bb.NOT_SET self._alert_category_value = bb.NOT_SET @@ -2035,22 +1922,20 @@ def __init__( alert_instance_id = bb.Attribute("alert_instance_id") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AdminAlertingTriggeredAlertDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AdminAlertingTriggeredAlertDetails, self)._process_custom_annotations(annotation_type, field_path, processor) AdminAlertingTriggeredAlertDetails_validator = bv.Struct(AdminAlertingTriggeredAlertDetails) - class AdminAlertingTriggeredAlertType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -2059,14 +1944,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AdminAlertingTriggeredAlertType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AdminAlertingTriggeredAlertType, self)._process_custom_annotations(annotation_type, field_path, processor) AdminAlertingTriggeredAlertType_validator = bv.Struct(AdminAlertingTriggeredAlertType) - class AdminConsoleAppPermission(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -2074,7 +1955,7 @@ class AdminConsoleAppPermission(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition default_for_listed_apps = None # Attribute is overwritten below the class definition @@ -2088,7 +1969,7 @@ def is_default_for_listed_apps(self): :rtype: bool """ - return self._tag == "default_for_listed_apps" + return self._tag == 'default_for_listed_apps' def is_default_for_unlisted_apps(self): """ @@ -2096,7 +1977,7 @@ def is_default_for_unlisted_apps(self): :rtype: bool """ - return self._tag == "default_for_unlisted_apps" + return self._tag == 'default_for_unlisted_apps' def is_other(self): """ @@ -2104,17 +1985,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AdminConsoleAppPermission, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AdminConsoleAppPermission, self)._process_custom_annotations(annotation_type, field_path, processor) AdminConsoleAppPermission_validator = bv.Union(AdminConsoleAppPermission) - class AdminConsoleAppPolicy(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -2122,7 +1999,7 @@ class AdminConsoleAppPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition allow = None # Attribute is overwritten below the class definition @@ -2138,7 +2015,7 @@ def is_allow(self): :rtype: bool """ - return self._tag == "allow" + return self._tag == 'allow' def is_block(self): """ @@ -2146,7 +2023,7 @@ def is_block(self): :rtype: bool """ - return self._tag == "block" + return self._tag == 'block' def is_default(self): """ @@ -2154,7 +2031,7 @@ def is_default(self): :rtype: bool """ - return self._tag == "default" + return self._tag == 'default' def is_other(self): """ @@ -2162,17 +2039,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AdminConsoleAppPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AdminConsoleAppPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) AdminConsoleAppPolicy_validator = bv.Union(AdminConsoleAppPolicy) - class AdminEmailRemindersChangedDetails(bb.Struct): """ Changed admin reminder settings for requests to join the team. @@ -2184,13 +2057,15 @@ class AdminEmailRemindersChangedDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -2205,22 +2080,20 @@ def __init__(self, new_value=None, previous_value=None): previous_value = bb.Attribute("previous_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AdminEmailRemindersChangedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AdminEmailRemindersChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) AdminEmailRemindersChangedDetails_validator = bv.Struct(AdminEmailRemindersChangedDetails) - class AdminEmailRemindersChangedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -2229,14 +2102,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AdminEmailRemindersChangedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AdminEmailRemindersChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) AdminEmailRemindersChangedType_validator = bv.Struct(AdminEmailRemindersChangedType) - class AdminEmailRemindersPolicy(bb.Union): """ Policy for deciding whether team admins receive reminder emails for requests @@ -2247,7 +2116,7 @@ class AdminEmailRemindersPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition default = None # Attribute is overwritten below the class definition @@ -2263,7 +2132,7 @@ def is_default(self): :rtype: bool """ - return self._tag == "default" + return self._tag == 'default' def is_disabled(self): """ @@ -2271,7 +2140,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == "disabled" + return self._tag == 'disabled' def is_enabled(self): """ @@ -2279,7 +2148,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == "enabled" + return self._tag == 'enabled' def is_other(self): """ @@ -2287,17 +2156,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AdminEmailRemindersPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AdminEmailRemindersPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) AdminEmailRemindersPolicy_validator = bv.Union(AdminEmailRemindersPolicy) - class AdminRole(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -2305,7 +2170,7 @@ class AdminRole(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition billing_admin = None # Attribute is overwritten below the class definition @@ -2339,7 +2204,7 @@ def is_billing_admin(self): :rtype: bool """ - return self._tag == "billing_admin" + return self._tag == 'billing_admin' def is_compliance_admin(self): """ @@ -2347,7 +2212,7 @@ def is_compliance_admin(self): :rtype: bool """ - return self._tag == "compliance_admin" + return self._tag == 'compliance_admin' def is_content_admin(self): """ @@ -2355,7 +2220,7 @@ def is_content_admin(self): :rtype: bool """ - return self._tag == "content_admin" + return self._tag == 'content_admin' def is_deprecated_freemium_team_member(self): """ @@ -2363,7 +2228,7 @@ def is_deprecated_freemium_team_member(self): :rtype: bool """ - return self._tag == "deprecated_freemium_team_member" + return self._tag == 'deprecated_freemium_team_member' def is_freemium_team_creator(self): """ @@ -2371,7 +2236,7 @@ def is_freemium_team_creator(self): :rtype: bool """ - return self._tag == "freemium_team_creator" + return self._tag == 'freemium_team_creator' def is_limited_admin(self): """ @@ -2379,7 +2244,7 @@ def is_limited_admin(self): :rtype: bool """ - return self._tag == "limited_admin" + return self._tag == 'limited_admin' def is_member_only(self): """ @@ -2387,7 +2252,7 @@ def is_member_only(self): :rtype: bool """ - return self._tag == "member_only" + return self._tag == 'member_only' def is_reporting_admin(self): """ @@ -2395,7 +2260,7 @@ def is_reporting_admin(self): :rtype: bool """ - return self._tag == "reporting_admin" + return self._tag == 'reporting_admin' def is_security_admin(self): """ @@ -2403,7 +2268,7 @@ def is_security_admin(self): :rtype: bool """ - return self._tag == "security_admin" + return self._tag == 'security_admin' def is_support_admin(self): """ @@ -2411,7 +2276,7 @@ def is_support_admin(self): :rtype: bool """ - return self._tag == "support_admin" + return self._tag == 'support_admin' def is_team_admin(self): """ @@ -2419,7 +2284,7 @@ def is_team_admin(self): :rtype: bool """ - return self._tag == "team_admin" + return self._tag == 'team_admin' def is_user_management_admin(self): """ @@ -2427,7 +2292,7 @@ def is_user_management_admin(self): :rtype: bool """ - return self._tag == "user_management_admin" + return self._tag == 'user_management_admin' def is_other(self): """ @@ -2435,15 +2300,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): super(AdminRole, self)._process_custom_annotations(annotation_type, field_path, processor) - AdminRole_validator = bv.Union(AdminRole) - class AiThirdPartySharingDropboxBasePolicy(bb.Union): """ Policy for deciding whether team users can use third party AI services @@ -2453,7 +2316,7 @@ class AiThirdPartySharingDropboxBasePolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition admins_only = None # Attribute is overwritten below the class definition @@ -2471,7 +2334,7 @@ def is_admins_only(self): :rtype: bool """ - return self._tag == "admins_only" + return self._tag == 'admins_only' def is_default(self): """ @@ -2479,7 +2342,7 @@ def is_default(self): :rtype: bool """ - return self._tag == "default" + return self._tag == 'default' def is_disabled(self): """ @@ -2487,7 +2350,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == "disabled" + return self._tag == 'disabled' def is_enabled(self): """ @@ -2495,7 +2358,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == "enabled" + return self._tag == 'enabled' def is_other(self): """ @@ -2503,17 +2366,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AiThirdPartySharingDropboxBasePolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AiThirdPartySharingDropboxBasePolicy, self)._process_custom_annotations(annotation_type, field_path, processor) AiThirdPartySharingDropboxBasePolicy_validator = bv.Union(AiThirdPartySharingDropboxBasePolicy) - class AiThirdPartySharingDropboxBasePolicyChangedDetails(bb.Struct): """ Changed AI third party sharing policy for team. @@ -2525,13 +2384,15 @@ class AiThirdPartySharingDropboxBasePolicyChangedDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -2546,24 +2407,20 @@ def __init__(self, new_value=None, previous_value=None): previous_value = bb.Attribute("previous_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AiThirdPartySharingDropboxBasePolicyChangedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - - -AiThirdPartySharingDropboxBasePolicyChangedDetails_validator = bv.Struct( - AiThirdPartySharingDropboxBasePolicyChangedDetails -) + super(AiThirdPartySharingDropboxBasePolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +AiThirdPartySharingDropboxBasePolicyChangedDetails_validator = bv.Struct(AiThirdPartySharingDropboxBasePolicyChangedDetails) class AiThirdPartySharingDropboxBasePolicyChangedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -2572,15 +2429,9 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AiThirdPartySharingDropboxBasePolicyChangedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - - -AiThirdPartySharingDropboxBasePolicyChangedType_validator = bv.Struct( - AiThirdPartySharingDropboxBasePolicyChangedType -) + super(AiThirdPartySharingDropboxBasePolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) +AiThirdPartySharingDropboxBasePolicyChangedType_validator = bv.Struct(AiThirdPartySharingDropboxBasePolicyChangedType) class AlertRecipientsSettingType(bb.Union): """ @@ -2591,7 +2442,7 @@ class AlertRecipientsSettingType(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition custom_list = None # Attribute is overwritten below the class definition @@ -2609,7 +2460,7 @@ def is_custom_list(self): :rtype: bool """ - return self._tag == "custom_list" + return self._tag == 'custom_list' def is_invalid(self): """ @@ -2617,7 +2468,7 @@ def is_invalid(self): :rtype: bool """ - return self._tag == "invalid" + return self._tag == 'invalid' def is_none(self): """ @@ -2625,7 +2476,7 @@ def is_none(self): :rtype: bool """ - return self._tag == "none" + return self._tag == 'none' def is_team_admins(self): """ @@ -2633,7 +2484,7 @@ def is_team_admins(self): :rtype: bool """ - return self._tag == "team_admins" + return self._tag == 'team_admins' def is_other(self): """ @@ -2641,23 +2492,20 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AlertRecipientsSettingType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AlertRecipientsSettingType, self)._process_custom_annotations(annotation_type, field_path, processor) AlertRecipientsSettingType_validator = bv.Union(AlertRecipientsSettingType) - class AllowDownloadDisabledDetails(bb.Struct): """ Disabled downloads. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -2665,22 +2513,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AllowDownloadDisabledDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AllowDownloadDisabledDetails, self)._process_custom_annotations(annotation_type, field_path, processor) AllowDownloadDisabledDetails_validator = bv.Struct(AllowDownloadDisabledDetails) - class AllowDownloadDisabledType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -2689,20 +2535,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AllowDownloadDisabledType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AllowDownloadDisabledType, self)._process_custom_annotations(annotation_type, field_path, processor) AllowDownloadDisabledType_validator = bv.Struct(AllowDownloadDisabledType) - class AllowDownloadEnabledDetails(bb.Struct): """ Enabled downloads. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -2710,22 +2553,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AllowDownloadEnabledDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AllowDownloadEnabledDetails, self)._process_custom_annotations(annotation_type, field_path, processor) AllowDownloadEnabledDetails_validator = bv.Struct(AllowDownloadEnabledDetails) - class AllowDownloadEnabledType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -2734,14 +2575,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AllowDownloadEnabledType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AllowDownloadEnabledType, self)._process_custom_annotations(annotation_type, field_path, processor) AllowDownloadEnabledType_validator = bv.Struct(AllowDownloadEnabledType) - class ApiSessionLogInfo(bb.Struct): """ Api session. @@ -2751,12 +2588,13 @@ class ApiSessionLogInfo(bb.Struct): """ __slots__ = [ - "_request_id_value", + '_request_id_value', ] _has_required_fields = True - def __init__(self, request_id=None): + def __init__(self, + request_id=None): self._request_id_value = bb.NOT_SET if request_id is not None: self.request_id = request_id @@ -2765,14 +2603,10 @@ def __init__(self, request_id=None): request_id = bb.Attribute("request_id") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ApiSessionLogInfo, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ApiSessionLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) ApiSessionLogInfo_validator = bv.Struct(ApiSessionLogInfo) - class AppBlockedByPermissionsDetails(bb.Struct): """ Failed to connect app for member. @@ -2782,12 +2616,13 @@ class AppBlockedByPermissionsDetails(bb.Struct): """ __slots__ = [ - "_app_info_value", + '_app_info_value', ] _has_required_fields = True - def __init__(self, app_info=None): + def __init__(self, + app_info=None): self._app_info_value = bb.NOT_SET if app_info is not None: self.app_info = app_info @@ -2796,22 +2631,20 @@ def __init__(self, app_info=None): app_info = bb.Attribute("app_info", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AppBlockedByPermissionsDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AppBlockedByPermissionsDetails, self)._process_custom_annotations(annotation_type, field_path, processor) AppBlockedByPermissionsDetails_validator = bv.Struct(AppBlockedByPermissionsDetails) - class AppBlockedByPermissionsType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -2820,14 +2653,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AppBlockedByPermissionsType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AppBlockedByPermissionsType, self)._process_custom_annotations(annotation_type, field_path, processor) AppBlockedByPermissionsType_validator = bv.Struct(AppBlockedByPermissionsType) - class AppLinkTeamDetails(bb.Struct): """ Linked app for team. @@ -2837,12 +2666,13 @@ class AppLinkTeamDetails(bb.Struct): """ __slots__ = [ - "_app_info_value", + '_app_info_value', ] _has_required_fields = True - def __init__(self, app_info=None): + def __init__(self, + app_info=None): self._app_info_value = bb.NOT_SET if app_info is not None: self.app_info = app_info @@ -2851,22 +2681,20 @@ def __init__(self, app_info=None): app_info = bb.Attribute("app_info", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AppLinkTeamDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AppLinkTeamDetails, self)._process_custom_annotations(annotation_type, field_path, processor) AppLinkTeamDetails_validator = bv.Struct(AppLinkTeamDetails) - class AppLinkTeamType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -2875,14 +2703,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AppLinkTeamType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AppLinkTeamType, self)._process_custom_annotations(annotation_type, field_path, processor) AppLinkTeamType_validator = bv.Struct(AppLinkTeamType) - class AppLinkUserDetails(bb.Struct): """ Linked app for member. @@ -2892,12 +2716,13 @@ class AppLinkUserDetails(bb.Struct): """ __slots__ = [ - "_app_info_value", + '_app_info_value', ] _has_required_fields = True - def __init__(self, app_info=None): + def __init__(self, + app_info=None): self._app_info_value = bb.NOT_SET if app_info is not None: self.app_info = app_info @@ -2906,22 +2731,20 @@ def __init__(self, app_info=None): app_info = bb.Attribute("app_info", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AppLinkUserDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AppLinkUserDetails, self)._process_custom_annotations(annotation_type, field_path, processor) AppLinkUserDetails_validator = bv.Struct(AppLinkUserDetails) - class AppLinkUserType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -2930,14 +2753,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AppLinkUserType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AppLinkUserType, self)._process_custom_annotations(annotation_type, field_path, processor) AppLinkUserType_validator = bv.Struct(AppLinkUserType) - class AppLogInfo(bb.Struct): """ App's logged information. @@ -2949,13 +2768,15 @@ class AppLogInfo(bb.Struct): """ __slots__ = [ - "_app_id_value", - "_display_name_value", + '_app_id_value', + '_display_name_value', ] _has_required_fields = False - def __init__(self, app_id=None, display_name=None): + def __init__(self, + app_id=None, + display_name=None): self._app_id_value = bb.NOT_SET self._display_name_value = bb.NOT_SET if app_id is not None: @@ -2972,10 +2793,8 @@ def __init__(self, app_id=None, display_name=None): def _process_custom_annotations(self, annotation_type, field_path, processor): super(AppLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) - AppLogInfo_validator = bv.StructTree(AppLogInfo) - class AppPermissionsChangedDetails(bb.Struct): """ Changed app permissions. @@ -2991,15 +2810,19 @@ class AppPermissionsChangedDetails(bb.Struct): """ __slots__ = [ - "_app_name_value", - "_permission_value", - "_previous_value_value", - "_new_value_value", + '_app_name_value', + '_permission_value', + '_previous_value_value', + '_new_value_value', ] _has_required_fields = True - def __init__(self, previous_value=None, new_value=None, app_name=None, permission=None): + def __init__(self, + previous_value=None, + new_value=None, + app_name=None, + permission=None): self._app_name_value = bb.NOT_SET self._permission_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET @@ -3026,22 +2849,20 @@ def __init__(self, previous_value=None, new_value=None, app_name=None, permissio new_value = bb.Attribute("new_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AppPermissionsChangedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AppPermissionsChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) AppPermissionsChangedDetails_validator = bv.Struct(AppPermissionsChangedDetails) - class AppPermissionsChangedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -3050,14 +2871,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AppPermissionsChangedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AppPermissionsChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) AppPermissionsChangedType_validator = bv.Struct(AppPermissionsChangedType) - class AppUnlinkTeamDetails(bb.Struct): """ Unlinked app for team. @@ -3067,12 +2884,13 @@ class AppUnlinkTeamDetails(bb.Struct): """ __slots__ = [ - "_app_info_value", + '_app_info_value', ] _has_required_fields = True - def __init__(self, app_info=None): + def __init__(self, + app_info=None): self._app_info_value = bb.NOT_SET if app_info is not None: self.app_info = app_info @@ -3081,22 +2899,20 @@ def __init__(self, app_info=None): app_info = bb.Attribute("app_info", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AppUnlinkTeamDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AppUnlinkTeamDetails, self)._process_custom_annotations(annotation_type, field_path, processor) AppUnlinkTeamDetails_validator = bv.Struct(AppUnlinkTeamDetails) - class AppUnlinkTeamType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -3105,14 +2921,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AppUnlinkTeamType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AppUnlinkTeamType, self)._process_custom_annotations(annotation_type, field_path, processor) AppUnlinkTeamType_validator = bv.Struct(AppUnlinkTeamType) - class AppUnlinkUserDetails(bb.Struct): """ Unlinked app for member. @@ -3122,12 +2934,13 @@ class AppUnlinkUserDetails(bb.Struct): """ __slots__ = [ - "_app_info_value", + '_app_info_value', ] _has_required_fields = True - def __init__(self, app_info=None): + def __init__(self, + app_info=None): self._app_info_value = bb.NOT_SET if app_info is not None: self.app_info = app_info @@ -3136,22 +2949,20 @@ def __init__(self, app_info=None): app_info = bb.Attribute("app_info", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AppUnlinkUserDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AppUnlinkUserDetails, self)._process_custom_annotations(annotation_type, field_path, processor) AppUnlinkUserDetails_validator = bv.Struct(AppUnlinkUserDetails) - class AppUnlinkUserType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -3160,14 +2971,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AppUnlinkUserType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AppUnlinkUserType, self)._process_custom_annotations(annotation_type, field_path, processor) AppUnlinkUserType_validator = bv.Struct(AppUnlinkUserType) - class AppleLoginChangePolicyDetails(bb.Struct): """ Enabled/disabled Apple login for team. @@ -3180,13 +2987,15 @@ class AppleLoginChangePolicyDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -3201,22 +3010,20 @@ def __init__(self, new_value=None, previous_value=None): previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AppleLoginChangePolicyDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AppleLoginChangePolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) AppleLoginChangePolicyDetails_validator = bv.Struct(AppleLoginChangePolicyDetails) - class AppleLoginChangePolicyType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -3225,14 +3032,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AppleLoginChangePolicyType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AppleLoginChangePolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) AppleLoginChangePolicyType_validator = bv.Struct(AppleLoginChangePolicyType) - class AppleLoginPolicy(bb.Union): """ Apple login policy @@ -3242,7 +3045,7 @@ class AppleLoginPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition default = None # Attribute is overwritten below the class definition @@ -3258,7 +3061,7 @@ def is_default(self): :rtype: bool """ - return self._tag == "default" + return self._tag == 'default' def is_disabled(self): """ @@ -3266,7 +3069,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == "disabled" + return self._tag == 'disabled' def is_enabled(self): """ @@ -3274,7 +3077,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == "enabled" + return self._tag == 'enabled' def is_other(self): """ @@ -3282,23 +3085,20 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AppleLoginPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AppleLoginPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) AppleLoginPolicy_validator = bv.Union(AppleLoginPolicy) - class ApplyNamingConventionDetails(bb.Struct): """ Applied naming convention. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -3306,22 +3106,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ApplyNamingConventionDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ApplyNamingConventionDetails, self)._process_custom_annotations(annotation_type, field_path, processor) ApplyNamingConventionDetails_validator = bv.Struct(ApplyNamingConventionDetails) - class ApplyNamingConventionType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -3330,14 +3128,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ApplyNamingConventionType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ApplyNamingConventionType, self)._process_custom_annotations(annotation_type, field_path, processor) ApplyNamingConventionType_validator = bv.Struct(ApplyNamingConventionType) - class AssetLogInfo(bb.Union): """ Asset details. @@ -3363,7 +3157,7 @@ class AssetLogInfo(bb.Union): :vartype AssetLogInfo.showcase_document: ShowcaseDocumentLogInfo """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -3376,7 +3170,7 @@ def file(cls, val): :param FileLogInfo val: :rtype: AssetLogInfo """ - return cls("file", val) + return cls('file', val) @classmethod def folder(cls, val): @@ -3387,7 +3181,7 @@ def folder(cls, val): :param FolderLogInfo val: :rtype: AssetLogInfo """ - return cls("folder", val) + return cls('folder', val) @classmethod def paper_document(cls, val): @@ -3398,7 +3192,7 @@ def paper_document(cls, val): :param PaperDocumentLogInfo val: :rtype: AssetLogInfo """ - return cls("paper_document", val) + return cls('paper_document', val) @classmethod def paper_folder(cls, val): @@ -3409,7 +3203,7 @@ def paper_folder(cls, val): :param PaperFolderLogInfo val: :rtype: AssetLogInfo """ - return cls("paper_folder", val) + return cls('paper_folder', val) @classmethod def showcase_document(cls, val): @@ -3420,7 +3214,7 @@ def showcase_document(cls, val): :param ShowcaseDocumentLogInfo val: :rtype: AssetLogInfo """ - return cls("showcase_document", val) + return cls('showcase_document', val) def is_file(self): """ @@ -3428,7 +3222,7 @@ def is_file(self): :rtype: bool """ - return self._tag == "file" + return self._tag == 'file' def is_folder(self): """ @@ -3436,7 +3230,7 @@ def is_folder(self): :rtype: bool """ - return self._tag == "folder" + return self._tag == 'folder' def is_paper_document(self): """ @@ -3444,7 +3238,7 @@ def is_paper_document(self): :rtype: bool """ - return self._tag == "paper_document" + return self._tag == 'paper_document' def is_paper_folder(self): """ @@ -3452,7 +3246,7 @@ def is_paper_folder(self): :rtype: bool """ - return self._tag == "paper_folder" + return self._tag == 'paper_folder' def is_showcase_document(self): """ @@ -3460,7 +3254,7 @@ def is_showcase_document(self): :rtype: bool """ - return self._tag == "showcase_document" + return self._tag == 'showcase_document' def is_other(self): """ @@ -3468,7 +3262,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_file(self): """ @@ -3531,20 +3325,17 @@ def get_showcase_document(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AssetLogInfo, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(AssetLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) AssetLogInfo_validator = bv.Union(AssetLogInfo) - class BackupAdminInvitationSentDetails(bb.Struct): """ Invited members to activate Backup. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -3552,22 +3343,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(BackupAdminInvitationSentDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(BackupAdminInvitationSentDetails, self)._process_custom_annotations(annotation_type, field_path, processor) BackupAdminInvitationSentDetails_validator = bv.Struct(BackupAdminInvitationSentDetails) - class BackupAdminInvitationSentType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -3576,20 +3365,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(BackupAdminInvitationSentType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(BackupAdminInvitationSentType, self)._process_custom_annotations(annotation_type, field_path, processor) BackupAdminInvitationSentType_validator = bv.Struct(BackupAdminInvitationSentType) - class BackupInvitationOpenedDetails(bb.Struct): """ Opened Backup invite. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -3597,22 +3383,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(BackupInvitationOpenedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(BackupInvitationOpenedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) BackupInvitationOpenedDetails_validator = bv.Struct(BackupInvitationOpenedDetails) - class BackupInvitationOpenedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -3621,14 +3405,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(BackupInvitationOpenedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(BackupInvitationOpenedType, self)._process_custom_annotations(annotation_type, field_path, processor) BackupInvitationOpenedType_validator = bv.Struct(BackupInvitationOpenedType) - class BackupStatus(bb.Union): """ Backup status @@ -3638,7 +3418,7 @@ class BackupStatus(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -3652,7 +3432,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == "disabled" + return self._tag == 'disabled' def is_enabled(self): """ @@ -3660,7 +3440,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == "enabled" + return self._tag == 'enabled' def is_other(self): """ @@ -3668,17 +3448,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(BackupStatus, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(BackupStatus, self)._process_custom_annotations(annotation_type, field_path, processor) BackupStatus_validator = bv.Union(BackupStatus) - class BinderAddPageDetails(bb.Struct): """ Added Binder page. @@ -3692,14 +3468,17 @@ class BinderAddPageDetails(bb.Struct): """ __slots__ = [ - "_event_uuid_value", - "_doc_title_value", - "_binder_item_name_value", + '_event_uuid_value', + '_doc_title_value', + '_binder_item_name_value', ] _has_required_fields = True - def __init__(self, event_uuid=None, doc_title=None, binder_item_name=None): + def __init__(self, + event_uuid=None, + doc_title=None, + binder_item_name=None): self._event_uuid_value = bb.NOT_SET self._doc_title_value = bb.NOT_SET self._binder_item_name_value = bb.NOT_SET @@ -3720,22 +3499,20 @@ def __init__(self, event_uuid=None, doc_title=None, binder_item_name=None): binder_item_name = bb.Attribute("binder_item_name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(BinderAddPageDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(BinderAddPageDetails, self)._process_custom_annotations(annotation_type, field_path, processor) BinderAddPageDetails_validator = bv.Struct(BinderAddPageDetails) - class BinderAddPageType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -3744,14 +3521,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(BinderAddPageType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(BinderAddPageType, self)._process_custom_annotations(annotation_type, field_path, processor) BinderAddPageType_validator = bv.Struct(BinderAddPageType) - class BinderAddSectionDetails(bb.Struct): """ Added Binder section. @@ -3765,14 +3538,17 @@ class BinderAddSectionDetails(bb.Struct): """ __slots__ = [ - "_event_uuid_value", - "_doc_title_value", - "_binder_item_name_value", + '_event_uuid_value', + '_doc_title_value', + '_binder_item_name_value', ] _has_required_fields = True - def __init__(self, event_uuid=None, doc_title=None, binder_item_name=None): + def __init__(self, + event_uuid=None, + doc_title=None, + binder_item_name=None): self._event_uuid_value = bb.NOT_SET self._doc_title_value = bb.NOT_SET self._binder_item_name_value = bb.NOT_SET @@ -3793,22 +3569,20 @@ def __init__(self, event_uuid=None, doc_title=None, binder_item_name=None): binder_item_name = bb.Attribute("binder_item_name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(BinderAddSectionDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(BinderAddSectionDetails, self)._process_custom_annotations(annotation_type, field_path, processor) BinderAddSectionDetails_validator = bv.Struct(BinderAddSectionDetails) - class BinderAddSectionType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -3817,14 +3591,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(BinderAddSectionType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(BinderAddSectionType, self)._process_custom_annotations(annotation_type, field_path, processor) BinderAddSectionType_validator = bv.Struct(BinderAddSectionType) - class BinderRemovePageDetails(bb.Struct): """ Removed Binder page. @@ -3838,14 +3608,17 @@ class BinderRemovePageDetails(bb.Struct): """ __slots__ = [ - "_event_uuid_value", - "_doc_title_value", - "_binder_item_name_value", + '_event_uuid_value', + '_doc_title_value', + '_binder_item_name_value', ] _has_required_fields = True - def __init__(self, event_uuid=None, doc_title=None, binder_item_name=None): + def __init__(self, + event_uuid=None, + doc_title=None, + binder_item_name=None): self._event_uuid_value = bb.NOT_SET self._doc_title_value = bb.NOT_SET self._binder_item_name_value = bb.NOT_SET @@ -3866,22 +3639,20 @@ def __init__(self, event_uuid=None, doc_title=None, binder_item_name=None): binder_item_name = bb.Attribute("binder_item_name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(BinderRemovePageDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(BinderRemovePageDetails, self)._process_custom_annotations(annotation_type, field_path, processor) BinderRemovePageDetails_validator = bv.Struct(BinderRemovePageDetails) - class BinderRemovePageType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -3890,14 +3661,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(BinderRemovePageType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(BinderRemovePageType, self)._process_custom_annotations(annotation_type, field_path, processor) BinderRemovePageType_validator = bv.Struct(BinderRemovePageType) - class BinderRemoveSectionDetails(bb.Struct): """ Removed Binder section. @@ -3911,14 +3678,17 @@ class BinderRemoveSectionDetails(bb.Struct): """ __slots__ = [ - "_event_uuid_value", - "_doc_title_value", - "_binder_item_name_value", + '_event_uuid_value', + '_doc_title_value', + '_binder_item_name_value', ] _has_required_fields = True - def __init__(self, event_uuid=None, doc_title=None, binder_item_name=None): + def __init__(self, + event_uuid=None, + doc_title=None, + binder_item_name=None): self._event_uuid_value = bb.NOT_SET self._doc_title_value = bb.NOT_SET self._binder_item_name_value = bb.NOT_SET @@ -3939,22 +3709,20 @@ def __init__(self, event_uuid=None, doc_title=None, binder_item_name=None): binder_item_name = bb.Attribute("binder_item_name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(BinderRemoveSectionDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(BinderRemoveSectionDetails, self)._process_custom_annotations(annotation_type, field_path, processor) BinderRemoveSectionDetails_validator = bv.Struct(BinderRemoveSectionDetails) - class BinderRemoveSectionType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -3963,14 +3731,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(BinderRemoveSectionType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(BinderRemoveSectionType, self)._process_custom_annotations(annotation_type, field_path, processor) BinderRemoveSectionType_validator = bv.Struct(BinderRemoveSectionType) - class BinderRenamePageDetails(bb.Struct): """ Renamed Binder page. @@ -3986,21 +3750,19 @@ class BinderRenamePageDetails(bb.Struct): """ __slots__ = [ - "_event_uuid_value", - "_doc_title_value", - "_binder_item_name_value", - "_previous_binder_item_name_value", + '_event_uuid_value', + '_doc_title_value', + '_binder_item_name_value', + '_previous_binder_item_name_value', ] _has_required_fields = True - def __init__( - self, - event_uuid=None, - doc_title=None, - binder_item_name=None, - previous_binder_item_name=None, - ): + def __init__(self, + event_uuid=None, + doc_title=None, + binder_item_name=None, + previous_binder_item_name=None): self._event_uuid_value = bb.NOT_SET self._doc_title_value = bb.NOT_SET self._binder_item_name_value = bb.NOT_SET @@ -4027,22 +3789,20 @@ def __init__( previous_binder_item_name = bb.Attribute("previous_binder_item_name", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(BinderRenamePageDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(BinderRenamePageDetails, self)._process_custom_annotations(annotation_type, field_path, processor) BinderRenamePageDetails_validator = bv.Struct(BinderRenamePageDetails) - class BinderRenamePageType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -4051,14 +3811,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(BinderRenamePageType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(BinderRenamePageType, self)._process_custom_annotations(annotation_type, field_path, processor) BinderRenamePageType_validator = bv.Struct(BinderRenamePageType) - class BinderRenameSectionDetails(bb.Struct): """ Renamed Binder section. @@ -4074,21 +3830,19 @@ class BinderRenameSectionDetails(bb.Struct): """ __slots__ = [ - "_event_uuid_value", - "_doc_title_value", - "_binder_item_name_value", - "_previous_binder_item_name_value", + '_event_uuid_value', + '_doc_title_value', + '_binder_item_name_value', + '_previous_binder_item_name_value', ] _has_required_fields = True - def __init__( - self, - event_uuid=None, - doc_title=None, - binder_item_name=None, - previous_binder_item_name=None, - ): + def __init__(self, + event_uuid=None, + doc_title=None, + binder_item_name=None, + previous_binder_item_name=None): self._event_uuid_value = bb.NOT_SET self._doc_title_value = bb.NOT_SET self._binder_item_name_value = bb.NOT_SET @@ -4115,22 +3869,20 @@ def __init__( previous_binder_item_name = bb.Attribute("previous_binder_item_name", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(BinderRenameSectionDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(BinderRenameSectionDetails, self)._process_custom_annotations(annotation_type, field_path, processor) BinderRenameSectionDetails_validator = bv.Struct(BinderRenameSectionDetails) - class BinderRenameSectionType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -4139,14 +3891,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(BinderRenameSectionType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(BinderRenameSectionType, self)._process_custom_annotations(annotation_type, field_path, processor) BinderRenameSectionType_validator = bv.Struct(BinderRenameSectionType) - class BinderReorderPageDetails(bb.Struct): """ Reordered Binder page. @@ -4160,14 +3908,17 @@ class BinderReorderPageDetails(bb.Struct): """ __slots__ = [ - "_event_uuid_value", - "_doc_title_value", - "_binder_item_name_value", + '_event_uuid_value', + '_doc_title_value', + '_binder_item_name_value', ] _has_required_fields = True - def __init__(self, event_uuid=None, doc_title=None, binder_item_name=None): + def __init__(self, + event_uuid=None, + doc_title=None, + binder_item_name=None): self._event_uuid_value = bb.NOT_SET self._doc_title_value = bb.NOT_SET self._binder_item_name_value = bb.NOT_SET @@ -4188,22 +3939,20 @@ def __init__(self, event_uuid=None, doc_title=None, binder_item_name=None): binder_item_name = bb.Attribute("binder_item_name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(BinderReorderPageDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(BinderReorderPageDetails, self)._process_custom_annotations(annotation_type, field_path, processor) BinderReorderPageDetails_validator = bv.Struct(BinderReorderPageDetails) - class BinderReorderPageType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -4212,14 +3961,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(BinderReorderPageType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(BinderReorderPageType, self)._process_custom_annotations(annotation_type, field_path, processor) BinderReorderPageType_validator = bv.Struct(BinderReorderPageType) - class BinderReorderSectionDetails(bb.Struct): """ Reordered Binder section. @@ -4233,14 +3978,17 @@ class BinderReorderSectionDetails(bb.Struct): """ __slots__ = [ - "_event_uuid_value", - "_doc_title_value", - "_binder_item_name_value", + '_event_uuid_value', + '_doc_title_value', + '_binder_item_name_value', ] _has_required_fields = True - def __init__(self, event_uuid=None, doc_title=None, binder_item_name=None): + def __init__(self, + event_uuid=None, + doc_title=None, + binder_item_name=None): self._event_uuid_value = bb.NOT_SET self._doc_title_value = bb.NOT_SET self._binder_item_name_value = bb.NOT_SET @@ -4261,22 +4009,20 @@ def __init__(self, event_uuid=None, doc_title=None, binder_item_name=None): binder_item_name = bb.Attribute("binder_item_name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(BinderReorderSectionDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(BinderReorderSectionDetails, self)._process_custom_annotations(annotation_type, field_path, processor) BinderReorderSectionDetails_validator = bv.Struct(BinderReorderSectionDetails) - class BinderReorderSectionType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -4285,14 +4031,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(BinderReorderSectionType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(BinderReorderSectionType, self)._process_custom_annotations(annotation_type, field_path, processor) BinderReorderSectionType_validator = bv.Struct(BinderReorderSectionType) - class CameraUploadsPolicy(bb.Union): """ Policy for controlling if team members can activate camera uploads @@ -4302,7 +4044,7 @@ class CameraUploadsPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -4316,7 +4058,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == "disabled" + return self._tag == 'disabled' def is_enabled(self): """ @@ -4324,7 +4066,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == "enabled" + return self._tag == 'enabled' def is_other(self): """ @@ -4332,17 +4074,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(CameraUploadsPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(CameraUploadsPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) CameraUploadsPolicy_validator = bv.Union(CameraUploadsPolicy) - class CameraUploadsPolicyChangedDetails(bb.Struct): """ Changed camera uploads setting for team. @@ -4354,13 +4092,15 @@ class CameraUploadsPolicyChangedDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -4375,22 +4115,20 @@ def __init__(self, new_value=None, previous_value=None): previous_value = bb.Attribute("previous_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(CameraUploadsPolicyChangedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(CameraUploadsPolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) CameraUploadsPolicyChangedDetails_validator = bv.Struct(CameraUploadsPolicyChangedDetails) - class CameraUploadsPolicyChangedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -4399,14 +4137,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(CameraUploadsPolicyChangedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(CameraUploadsPolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) CameraUploadsPolicyChangedType_validator = bv.Struct(CameraUploadsPolicyChangedType) - class CaptureTeamSpacePolicy(bb.Union): """ Policy for deciding whether team users have access to the Capture team space @@ -4416,7 +4150,7 @@ class CaptureTeamSpacePolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -4430,7 +4164,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == "disabled" + return self._tag == 'disabled' def is_enabled(self): """ @@ -4438,7 +4172,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == "enabled" + return self._tag == 'enabled' def is_other(self): """ @@ -4446,17 +4180,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(CaptureTeamSpacePolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(CaptureTeamSpacePolicy, self)._process_custom_annotations(annotation_type, field_path, processor) CaptureTeamSpacePolicy_validator = bv.Union(CaptureTeamSpacePolicy) - class CaptureTeamSpacePolicyChangedDetails(bb.Struct): """ Changed Capture team space policy for team. @@ -4468,13 +4198,15 @@ class CaptureTeamSpacePolicyChangedDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -4489,22 +4221,20 @@ def __init__(self, new_value=None, previous_value=None): previous_value = bb.Attribute("previous_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(CaptureTeamSpacePolicyChangedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(CaptureTeamSpacePolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) CaptureTeamSpacePolicyChangedDetails_validator = bv.Struct(CaptureTeamSpacePolicyChangedDetails) - class CaptureTeamSpacePolicyChangedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -4513,14 +4243,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(CaptureTeamSpacePolicyChangedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(CaptureTeamSpacePolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) CaptureTeamSpacePolicyChangedType_validator = bv.Struct(CaptureTeamSpacePolicyChangedType) - class CaptureTranscriptPolicy(bb.Union): """ Policy for deciding whether team users can transcription in Capture @@ -4530,7 +4256,7 @@ class CaptureTranscriptPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition default = None # Attribute is overwritten below the class definition @@ -4546,7 +4272,7 @@ def is_default(self): :rtype: bool """ - return self._tag == "default" + return self._tag == 'default' def is_disabled(self): """ @@ -4554,7 +4280,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == "disabled" + return self._tag == 'disabled' def is_enabled(self): """ @@ -4562,7 +4288,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == "enabled" + return self._tag == 'enabled' def is_other(self): """ @@ -4570,17 +4296,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(CaptureTranscriptPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(CaptureTranscriptPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) CaptureTranscriptPolicy_validator = bv.Union(CaptureTranscriptPolicy) - class CaptureTranscriptPolicyChangedDetails(bb.Struct): """ Changed Capture transcription policy for team. @@ -4592,13 +4314,15 @@ class CaptureTranscriptPolicyChangedDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -4613,22 +4337,20 @@ def __init__(self, new_value=None, previous_value=None): previous_value = bb.Attribute("previous_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(CaptureTranscriptPolicyChangedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(CaptureTranscriptPolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) CaptureTranscriptPolicyChangedDetails_validator = bv.Struct(CaptureTranscriptPolicyChangedDetails) - class CaptureTranscriptPolicyChangedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -4637,14 +4359,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(CaptureTranscriptPolicyChangedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(CaptureTranscriptPolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) CaptureTranscriptPolicyChangedType_validator = bv.Struct(CaptureTranscriptPolicyChangedType) - class Certificate(bb.Struct): """ Certificate details. @@ -4666,27 +4384,25 @@ class Certificate(bb.Struct): """ __slots__ = [ - "_subject_value", - "_issuer_value", - "_issue_date_value", - "_expiration_date_value", - "_serial_number_value", - "_sha1_fingerprint_value", - "_common_name_value", + '_subject_value', + '_issuer_value', + '_issue_date_value', + '_expiration_date_value', + '_serial_number_value', + '_sha1_fingerprint_value', + '_common_name_value', ] _has_required_fields = True - def __init__( - self, - subject=None, - issuer=None, - issue_date=None, - expiration_date=None, - serial_number=None, - sha1_fingerprint=None, - common_name=None, - ): + def __init__(self, + subject=None, + issuer=None, + issue_date=None, + expiration_date=None, + serial_number=None, + sha1_fingerprint=None, + common_name=None): self._subject_value = bb.NOT_SET self._issuer_value = bb.NOT_SET self._issue_date_value = bb.NOT_SET @@ -4733,10 +4449,8 @@ def __init__( def _process_custom_annotations(self, annotation_type, field_path, processor): super(Certificate, self)._process_custom_annotations(annotation_type, field_path, processor) - Certificate_validator = bv.Struct(Certificate) - class ChangeLinkExpirationPolicy(bb.Union): """ Policy for deciding whether the team's default expiration days policy must @@ -4747,7 +4461,7 @@ class ChangeLinkExpirationPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition allowed = None # Attribute is overwritten below the class definition @@ -4761,7 +4475,7 @@ def is_allowed(self): :rtype: bool """ - return self._tag == "allowed" + return self._tag == 'allowed' def is_not_allowed(self): """ @@ -4769,7 +4483,7 @@ def is_not_allowed(self): :rtype: bool """ - return self._tag == "not_allowed" + return self._tag == 'not_allowed' def is_other(self): """ @@ -4777,17 +4491,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ChangeLinkExpirationPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ChangeLinkExpirationPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) ChangeLinkExpirationPolicy_validator = bv.Union(ChangeLinkExpirationPolicy) - class ChangedEnterpriseAdminRoleDetails(bb.Struct): """ Changed enterprise admin role. @@ -4801,14 +4511,17 @@ class ChangedEnterpriseAdminRoleDetails(bb.Struct): """ __slots__ = [ - "_previous_value_value", - "_new_value_value", - "_team_name_value", + '_previous_value_value', + '_new_value_value', + '_team_name_value', ] _has_required_fields = True - def __init__(self, previous_value=None, new_value=None, team_name=None): + def __init__(self, + previous_value=None, + new_value=None, + team_name=None): self._previous_value_value = bb.NOT_SET self._new_value_value = bb.NOT_SET self._team_name_value = bb.NOT_SET @@ -4829,22 +4542,20 @@ def __init__(self, previous_value=None, new_value=None, team_name=None): team_name = bb.Attribute("team_name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ChangedEnterpriseAdminRoleDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ChangedEnterpriseAdminRoleDetails, self)._process_custom_annotations(annotation_type, field_path, processor) ChangedEnterpriseAdminRoleDetails_validator = bv.Struct(ChangedEnterpriseAdminRoleDetails) - class ChangedEnterpriseAdminRoleType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -4853,14 +4564,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ChangedEnterpriseAdminRoleType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ChangedEnterpriseAdminRoleType, self)._process_custom_annotations(annotation_type, field_path, processor) ChangedEnterpriseAdminRoleType_validator = bv.Struct(ChangedEnterpriseAdminRoleType) - class ChangedEnterpriseConnectedTeamStatusDetails(bb.Struct): """ Changed enterprise-connected team status. @@ -4876,15 +4583,19 @@ class ChangedEnterpriseConnectedTeamStatusDetails(bb.Struct): """ __slots__ = [ - "_action_value", - "_additional_info_value", - "_previous_value_value", - "_new_value_value", + '_action_value', + '_additional_info_value', + '_previous_value_value', + '_new_value_value', ] _has_required_fields = True - def __init__(self, action=None, additional_info=None, previous_value=None, new_value=None): + def __init__(self, + action=None, + additional_info=None, + previous_value=None, + new_value=None): self._action_value = bb.NOT_SET self._additional_info_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET @@ -4911,24 +4622,20 @@ def __init__(self, action=None, additional_info=None, previous_value=None, new_v 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 - ) - - -ChangedEnterpriseConnectedTeamStatusDetails_validator = bv.Struct( - ChangedEnterpriseConnectedTeamStatusDetails -) + super(ChangedEnterpriseConnectedTeamStatusDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +ChangedEnterpriseConnectedTeamStatusDetails_validator = bv.Struct(ChangedEnterpriseConnectedTeamStatusDetails) class ChangedEnterpriseConnectedTeamStatusType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -4937,15 +4644,9 @@ def __init__(self, description=None): 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 - ) - - -ChangedEnterpriseConnectedTeamStatusType_validator = bv.Struct( - ChangedEnterpriseConnectedTeamStatusType -) + super(ChangedEnterpriseConnectedTeamStatusType, self)._process_custom_annotations(annotation_type, field_path, processor) +ChangedEnterpriseConnectedTeamStatusType_validator = bv.Struct(ChangedEnterpriseConnectedTeamStatusType) class ClassificationChangePolicyDetails(bb.Struct): """ @@ -4960,14 +4661,17 @@ class ClassificationChangePolicyDetails(bb.Struct): """ __slots__ = [ - "_previous_value_value", - "_new_value_value", - "_classification_type_value", + '_previous_value_value', + '_new_value_value', + '_classification_type_value', ] _has_required_fields = True - def __init__(self, previous_value=None, new_value=None, classification_type=None): + def __init__(self, + previous_value=None, + new_value=None, + classification_type=None): self._previous_value_value = bb.NOT_SET self._new_value_value = bb.NOT_SET self._classification_type_value = bb.NOT_SET @@ -4988,22 +4692,20 @@ def __init__(self, previous_value=None, new_value=None, classification_type=None classification_type = bb.Attribute("classification_type", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ClassificationChangePolicyDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ClassificationChangePolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) ClassificationChangePolicyDetails_validator = bv.Struct(ClassificationChangePolicyDetails) - class ClassificationChangePolicyType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -5012,20 +4714,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ClassificationChangePolicyType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ClassificationChangePolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) ClassificationChangePolicyType_validator = bv.Struct(ClassificationChangePolicyType) - class ClassificationCreateReportDetails(bb.Struct): """ Created Classification report. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -5033,14 +4732,10 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ClassificationCreateReportDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ClassificationCreateReportDetails, self)._process_custom_annotations(annotation_type, field_path, processor) ClassificationCreateReportDetails_validator = bv.Struct(ClassificationCreateReportDetails) - class ClassificationCreateReportFailDetails(bb.Struct): """ Couldn't create Classification report. @@ -5050,12 +4745,13 @@ class ClassificationCreateReportFailDetails(bb.Struct): """ __slots__ = [ - "_failure_reason_value", + '_failure_reason_value', ] _has_required_fields = True - def __init__(self, failure_reason=None): + def __init__(self, + failure_reason=None): self._failure_reason_value = bb.NOT_SET if failure_reason is not None: self.failure_reason = failure_reason @@ -5064,22 +4760,20 @@ def __init__(self, failure_reason=None): failure_reason = bb.Attribute("failure_reason", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ClassificationCreateReportFailDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ClassificationCreateReportFailDetails, self)._process_custom_annotations(annotation_type, field_path, processor) ClassificationCreateReportFailDetails_validator = bv.Struct(ClassificationCreateReportFailDetails) - class ClassificationCreateReportFailType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -5088,22 +4782,20 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ClassificationCreateReportFailType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ClassificationCreateReportFailType, self)._process_custom_annotations(annotation_type, field_path, processor) ClassificationCreateReportFailType_validator = bv.Struct(ClassificationCreateReportFailType) - class ClassificationCreateReportType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -5112,14 +4804,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ClassificationCreateReportType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ClassificationCreateReportType, self)._process_custom_annotations(annotation_type, field_path, processor) ClassificationCreateReportType_validator = bv.Struct(ClassificationCreateReportType) - class ClassificationPolicyEnumWrapper(bb.Union): """ Policy for controlling team access to the classification feature @@ -5129,7 +4817,7 @@ class ClassificationPolicyEnumWrapper(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -5147,7 +4835,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == "disabled" + return self._tag == 'disabled' def is_enabled(self): """ @@ -5155,7 +4843,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == "enabled" + return self._tag == 'enabled' def is_member_and_team_folders(self): """ @@ -5163,7 +4851,7 @@ def is_member_and_team_folders(self): :rtype: bool """ - return self._tag == "member_and_team_folders" + return self._tag == 'member_and_team_folders' def is_team_folders(self): """ @@ -5171,7 +4859,7 @@ def is_team_folders(self): :rtype: bool """ - return self._tag == "team_folders" + return self._tag == 'team_folders' def is_other(self): """ @@ -5179,17 +4867,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ClassificationPolicyEnumWrapper, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ClassificationPolicyEnumWrapper, self)._process_custom_annotations(annotation_type, field_path, processor) ClassificationPolicyEnumWrapper_validator = bv.Union(ClassificationPolicyEnumWrapper) - class ClassificationType(bb.Union): """ The type of classification (currently only personal information) @@ -5199,7 +4883,7 @@ class ClassificationType(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition personal_information = None # Attribute is overwritten below the class definition @@ -5213,7 +4897,7 @@ def is_personal_information(self): :rtype: bool """ - return self._tag == "personal_information" + return self._tag == 'personal_information' def is_pii(self): """ @@ -5221,7 +4905,7 @@ def is_pii(self): :rtype: bool """ - return self._tag == "pii" + return self._tag == 'pii' def is_other(self): """ @@ -5229,17 +4913,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ClassificationType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ClassificationType, self)._process_custom_annotations(annotation_type, field_path, processor) ClassificationType_validator = bv.Union(ClassificationType) - class CollectionShareDetails(bb.Struct): """ Shared album. @@ -5249,12 +4929,13 @@ class CollectionShareDetails(bb.Struct): """ __slots__ = [ - "_album_name_value", + '_album_name_value', ] _has_required_fields = True - def __init__(self, album_name=None): + def __init__(self, + album_name=None): self._album_name_value = bb.NOT_SET if album_name is not None: self.album_name = album_name @@ -5263,22 +4944,20 @@ def __init__(self, album_name=None): album_name = bb.Attribute("album_name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(CollectionShareDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(CollectionShareDetails, self)._process_custom_annotations(annotation_type, field_path, processor) CollectionShareDetails_validator = bv.Struct(CollectionShareDetails) - class CollectionShareType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -5287,14 +4966,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(CollectionShareType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(CollectionShareType, self)._process_custom_annotations(annotation_type, field_path, processor) CollectionShareType_validator = bv.Struct(CollectionShareType) - class ComputerBackupPolicy(bb.Union): """ Policy for controlling team access to computer backup feature @@ -5304,7 +4979,7 @@ class ComputerBackupPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition default = None # Attribute is overwritten below the class definition @@ -5320,7 +4995,7 @@ def is_default(self): :rtype: bool """ - return self._tag == "default" + return self._tag == 'default' def is_disabled(self): """ @@ -5328,7 +5003,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == "disabled" + return self._tag == 'disabled' def is_enabled(self): """ @@ -5336,7 +5011,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == "enabled" + return self._tag == 'enabled' def is_other(self): """ @@ -5344,17 +5019,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ComputerBackupPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ComputerBackupPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) ComputerBackupPolicy_validator = bv.Union(ComputerBackupPolicy) - class ComputerBackupPolicyChangedDetails(bb.Struct): """ Changed computer backup policy for team. @@ -5366,13 +5037,15 @@ class ComputerBackupPolicyChangedDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -5387,22 +5060,20 @@ def __init__(self, new_value=None, previous_value=None): previous_value = bb.Attribute("previous_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ComputerBackupPolicyChangedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ComputerBackupPolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) ComputerBackupPolicyChangedDetails_validator = bv.Struct(ComputerBackupPolicyChangedDetails) - class ComputerBackupPolicyChangedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -5411,14 +5082,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ComputerBackupPolicyChangedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ComputerBackupPolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) ComputerBackupPolicyChangedType_validator = bv.Struct(ComputerBackupPolicyChangedType) - class ConnectedTeamName(bb.Struct): """ The name of the team @@ -5428,12 +5095,13 @@ class ConnectedTeamName(bb.Struct): """ __slots__ = [ - "_team_value", + '_team_value', ] _has_required_fields = True - def __init__(self, team=None): + def __init__(self, + team=None): self._team_value = bb.NOT_SET if team is not None: self.team = team @@ -5442,14 +5110,10 @@ def __init__(self, team=None): team = bb.Attribute("team") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ConnectedTeamName, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ConnectedTeamName, self)._process_custom_annotations(annotation_type, field_path, processor) ConnectedTeamName_validator = bv.Struct(ConnectedTeamName) - class ContentAdministrationPolicyChangedDetails(bb.Struct): """ Changed content management setting. @@ -5461,13 +5125,15 @@ class ContentAdministrationPolicyChangedDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -5482,24 +5148,20 @@ def __init__(self, new_value=None, previous_value=None): 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 - ) - - -ContentAdministrationPolicyChangedDetails_validator = bv.Struct( - ContentAdministrationPolicyChangedDetails -) + super(ContentAdministrationPolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +ContentAdministrationPolicyChangedDetails_validator = bv.Struct(ContentAdministrationPolicyChangedDetails) class ContentAdministrationPolicyChangedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -5508,14 +5170,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ContentAdministrationPolicyChangedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ContentAdministrationPolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) ContentAdministrationPolicyChangedType_validator = bv.Struct(ContentAdministrationPolicyChangedType) - class ContentDeletionProtectionChangePolicyDetails(bb.Struct): """ Changed content deletion protection policy for team. @@ -5534,21 +5192,19 @@ class ContentDeletionProtectionChangePolicyDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_new_threshold_bytes_value", - "_previous_value_value", - "_previous_threshold_bytes_value", + '_new_value_value', + '_new_threshold_bytes_value', + '_previous_value_value', + '_previous_threshold_bytes_value', ] _has_required_fields = True - def __init__( - self, - new_value=None, - new_threshold_bytes=None, - previous_value=None, - previous_threshold_bytes=None, - ): + def __init__(self, + new_value=None, + new_threshold_bytes=None, + previous_value=None, + previous_threshold_bytes=None): self._new_value_value = bb.NOT_SET self._new_threshold_bytes_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET @@ -5575,24 +5231,20 @@ def __init__( previous_threshold_bytes = bb.Attribute("previous_threshold_bytes", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ContentDeletionProtectionChangePolicyDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - - -ContentDeletionProtectionChangePolicyDetails_validator = bv.Struct( - ContentDeletionProtectionChangePolicyDetails -) + super(ContentDeletionProtectionChangePolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +ContentDeletionProtectionChangePolicyDetails_validator = bv.Struct(ContentDeletionProtectionChangePolicyDetails) class ContentDeletionProtectionChangePolicyType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -5601,15 +5253,9 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ContentDeletionProtectionChangePolicyType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - - -ContentDeletionProtectionChangePolicyType_validator = bv.Struct( - ContentDeletionProtectionChangePolicyType -) + super(ContentDeletionProtectionChangePolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) +ContentDeletionProtectionChangePolicyType_validator = bv.Struct(ContentDeletionProtectionChangePolicyType) class ContentDeletionProtectionPolicy(bb.Union): """ @@ -5620,7 +5266,7 @@ class ContentDeletionProtectionPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition off = None # Attribute is overwritten below the class definition @@ -5636,7 +5282,7 @@ def is_off(self): :rtype: bool """ - return self._tag == "off" + return self._tag == 'off' def is_on_above_threshold(self): """ @@ -5644,7 +5290,7 @@ def is_on_above_threshold(self): :rtype: bool """ - return self._tag == "on_above_threshold" + return self._tag == 'on_above_threshold' def is_on_all_files(self): """ @@ -5652,7 +5298,7 @@ def is_on_all_files(self): :rtype: bool """ - return self._tag == "on_all_files" + return self._tag == 'on_all_files' def is_other(self): """ @@ -5660,17 +5306,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ContentDeletionProtectionPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ContentDeletionProtectionPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) ContentDeletionProtectionPolicy_validator = bv.Union(ContentDeletionProtectionPolicy) - class ContentPermanentDeletePolicy(bb.Union): """ Policy for pemanent content deletion @@ -5680,7 +5322,7 @@ class ContentPermanentDeletePolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -5694,7 +5336,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == "disabled" + return self._tag == 'disabled' def is_enabled(self): """ @@ -5702,7 +5344,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == "enabled" + return self._tag == 'enabled' def is_other(self): """ @@ -5710,17 +5352,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ContentPermanentDeletePolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ContentPermanentDeletePolicy, self)._process_custom_annotations(annotation_type, field_path, processor) ContentPermanentDeletePolicy_validator = bv.Union(ContentPermanentDeletePolicy) - class ContextLogInfo(bb.Union): """ The primary entity on which the action was done. @@ -5747,7 +5385,7 @@ class ContextLogInfo(bb.Union): :vartype ContextLogInfo.trusted_non_team_member: TrustedNonTeamMemberLogInfo """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition anonymous = None # Attribute is overwritten below the class definition @@ -5764,7 +5402,7 @@ def non_team_member(cls, val): :param NonTeamMemberLogInfo val: :rtype: ContextLogInfo """ - return cls("non_team_member", val) + return cls('non_team_member', val) @classmethod def organization_team(cls, val): @@ -5775,7 +5413,7 @@ def organization_team(cls, val): :param TeamLogInfo val: :rtype: ContextLogInfo """ - return cls("organization_team", val) + return cls('organization_team', val) @classmethod def team_member(cls, val): @@ -5786,7 +5424,7 @@ def team_member(cls, val): :param TeamMemberLogInfo val: :rtype: ContextLogInfo """ - return cls("team_member", val) + return cls('team_member', val) @classmethod def trusted_non_team_member(cls, val): @@ -5797,7 +5435,7 @@ def trusted_non_team_member(cls, val): :param TrustedNonTeamMemberLogInfo val: :rtype: ContextLogInfo """ - return cls("trusted_non_team_member", val) + return cls('trusted_non_team_member', val) def is_anonymous(self): """ @@ -5805,7 +5443,7 @@ def is_anonymous(self): :rtype: bool """ - return self._tag == "anonymous" + return self._tag == 'anonymous' def is_non_team_member(self): """ @@ -5813,7 +5451,7 @@ def is_non_team_member(self): :rtype: bool """ - return self._tag == "non_team_member" + return self._tag == 'non_team_member' def is_organization_team(self): """ @@ -5821,7 +5459,7 @@ def is_organization_team(self): :rtype: bool """ - return self._tag == "organization_team" + return self._tag == 'organization_team' def is_team(self): """ @@ -5829,7 +5467,7 @@ def is_team(self): :rtype: bool """ - return self._tag == "team" + return self._tag == 'team' def is_team_member(self): """ @@ -5837,7 +5475,7 @@ def is_team_member(self): :rtype: bool """ - return self._tag == "team_member" + return self._tag == 'team_member' def is_trusted_non_team_member(self): """ @@ -5845,7 +5483,7 @@ def is_trusted_non_team_member(self): :rtype: bool """ - return self._tag == "trusted_non_team_member" + return self._tag == 'trusted_non_team_member' def is_other(self): """ @@ -5853,7 +5491,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_non_team_member(self): """ @@ -5904,20 +5542,17 @@ def get_trusted_non_team_member(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ContextLogInfo, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ContextLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) ContextLogInfo_validator = bv.Union(ContextLogInfo) - class CreateFolderDetails(bb.Struct): """ Created folders. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -5925,22 +5560,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(CreateFolderDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(CreateFolderDetails, self)._process_custom_annotations(annotation_type, field_path, processor) CreateFolderDetails_validator = bv.Struct(CreateFolderDetails) - class CreateFolderType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -5949,14 +5582,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(CreateFolderType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(CreateFolderType, self)._process_custom_annotations(annotation_type, field_path, processor) CreateFolderType_validator = bv.Struct(CreateFolderType) - class CreateTeamInviteLinkDetails(bb.Struct): """ Created team invite link. @@ -5968,13 +5597,15 @@ class CreateTeamInviteLinkDetails(bb.Struct): """ __slots__ = [ - "_link_url_value", - "_expiry_date_value", + '_link_url_value', + '_expiry_date_value', ] _has_required_fields = True - def __init__(self, link_url=None, expiry_date=None): + def __init__(self, + link_url=None, + expiry_date=None): self._link_url_value = bb.NOT_SET self._expiry_date_value = bb.NOT_SET if link_url is not None: @@ -5989,22 +5620,20 @@ def __init__(self, link_url=None, expiry_date=None): expiry_date = bb.Attribute("expiry_date") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(CreateTeamInviteLinkDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(CreateTeamInviteLinkDetails, self)._process_custom_annotations(annotation_type, field_path, processor) CreateTeamInviteLinkDetails_validator = bv.Struct(CreateTeamInviteLinkDetails) - class CreateTeamInviteLinkType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -6013,14 +5642,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(CreateTeamInviteLinkType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(CreateTeamInviteLinkType, self)._process_custom_annotations(annotation_type, field_path, processor) CreateTeamInviteLinkType_validator = bv.Struct(CreateTeamInviteLinkType) - class DashAddedCommentToStackDetails(bb.Struct): """ Added a comment to a stack. @@ -6036,15 +5661,19 @@ class DashAddedCommentToStackDetails(bb.Struct): """ __slots__ = [ - "_stack_name_value", - "_stack_item_name_value", - "_comment_text_value", - "_stack_type_value", + '_stack_name_value', + '_stack_item_name_value', + '_comment_text_value', + '_stack_type_value', ] _has_required_fields = True - def __init__(self, stack_name=None, stack_item_name=None, comment_text=None, stack_type=None): + def __init__(self, + stack_name=None, + stack_item_name=None, + comment_text=None, + stack_type=None): self._stack_name_value = bb.NOT_SET self._stack_item_name_value = bb.NOT_SET self._comment_text_value = bb.NOT_SET @@ -6071,22 +5700,20 @@ def __init__(self, stack_name=None, stack_item_name=None, comment_text=None, sta stack_type = bb.Attribute("stack_type", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashAddedCommentToStackDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DashAddedCommentToStackDetails, self)._process_custom_annotations(annotation_type, field_path, processor) DashAddedCommentToStackDetails_validator = bv.Struct(DashAddedCommentToStackDetails) - class DashAddedCommentToStackType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -6095,14 +5722,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashAddedCommentToStackType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DashAddedCommentToStackType, self)._process_custom_annotations(annotation_type, field_path, processor) DashAddedCommentToStackType_validator = bv.Struct(DashAddedCommentToStackType) - class DashAddedConnectorDetails(bb.Struct): """ Connected to a user connector. @@ -6114,13 +5737,15 @@ class DashAddedConnectorDetails(bb.Struct): """ __slots__ = [ - "_connector_name_value", - "_connector_status_value", + '_connector_name_value', + '_connector_status_value', ] _has_required_fields = True - def __init__(self, connector_name=None, connector_status=None): + def __init__(self, + connector_name=None, + connector_status=None): self._connector_name_value = bb.NOT_SET self._connector_status_value = bb.NOT_SET if connector_name is not None: @@ -6135,22 +5760,20 @@ def __init__(self, connector_name=None, connector_status=None): connector_status = bb.Attribute("connector_status", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashAddedConnectorDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DashAddedConnectorDetails, self)._process_custom_annotations(annotation_type, field_path, processor) DashAddedConnectorDetails_validator = bv.Struct(DashAddedConnectorDetails) - class DashAddedConnectorType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -6159,14 +5782,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashAddedConnectorType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DashAddedConnectorType, self)._process_custom_annotations(annotation_type, field_path, processor) DashAddedConnectorType_validator = bv.Struct(DashAddedConnectorType) - class DashAddedLinkToStackDetails(bb.Struct): """ Added a link to a stack. @@ -6180,14 +5799,17 @@ class DashAddedLinkToStackDetails(bb.Struct): """ __slots__ = [ - "_stack_name_value", - "_stack_item_link_value", - "_stack_type_value", + '_stack_name_value', + '_stack_item_link_value', + '_stack_type_value', ] _has_required_fields = True - def __init__(self, stack_name=None, stack_item_link=None, stack_type=None): + def __init__(self, + stack_name=None, + stack_item_link=None, + stack_type=None): self._stack_name_value = bb.NOT_SET self._stack_item_link_value = bb.NOT_SET self._stack_type_value = bb.NOT_SET @@ -6208,22 +5830,20 @@ def __init__(self, stack_name=None, stack_item_link=None, stack_type=None): stack_type = bb.Attribute("stack_type", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashAddedLinkToStackDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DashAddedLinkToStackDetails, self)._process_custom_annotations(annotation_type, field_path, processor) DashAddedLinkToStackDetails_validator = bv.Struct(DashAddedLinkToStackDetails) - class DashAddedLinkToStackType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -6232,14 +5852,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashAddedLinkToStackType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DashAddedLinkToStackType, self)._process_custom_annotations(annotation_type, field_path, processor) DashAddedLinkToStackType_validator = bv.Struct(DashAddedLinkToStackType) - class DashAddedTeamEmailDomainAllowlistDetails(bb.Struct): """ Admin added an email domain to the team allowlist. @@ -6249,12 +5865,13 @@ class DashAddedTeamEmailDomainAllowlistDetails(bb.Struct): """ __slots__ = [ - "_email_domain_value", + '_email_domain_value', ] _has_required_fields = True - def __init__(self, email_domain=None): + def __init__(self, + email_domain=None): self._email_domain_value = bb.NOT_SET if email_domain is not None: self.email_domain = email_domain @@ -6263,24 +5880,20 @@ def __init__(self, email_domain=None): email_domain = bb.Attribute("email_domain") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashAddedTeamEmailDomainAllowlistDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - - -DashAddedTeamEmailDomainAllowlistDetails_validator = bv.Struct( - DashAddedTeamEmailDomainAllowlistDetails -) + super(DashAddedTeamEmailDomainAllowlistDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +DashAddedTeamEmailDomainAllowlistDetails_validator = bv.Struct(DashAddedTeamEmailDomainAllowlistDetails) class DashAddedTeamEmailDomainAllowlistType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -6289,14 +5902,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashAddedTeamEmailDomainAllowlistType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DashAddedTeamEmailDomainAllowlistType, self)._process_custom_annotations(annotation_type, field_path, processor) DashAddedTeamEmailDomainAllowlistType_validator = bv.Struct(DashAddedTeamEmailDomainAllowlistType) - class DashAdminAddedOrgWideConnectorDetails(bb.Struct): """ Admin added an admin connector. @@ -6308,13 +5917,15 @@ class DashAdminAddedOrgWideConnectorDetails(bb.Struct): """ __slots__ = [ - "_connector_name_value", - "_connector_status_value", + '_connector_name_value', + '_connector_status_value', ] _has_required_fields = True - def __init__(self, connector_name=None, connector_status=None): + def __init__(self, + connector_name=None, + connector_status=None): self._connector_name_value = bb.NOT_SET self._connector_status_value = bb.NOT_SET if connector_name is not None: @@ -6329,22 +5940,20 @@ def __init__(self, connector_name=None, connector_status=None): connector_status = bb.Attribute("connector_status", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashAdminAddedOrgWideConnectorDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DashAdminAddedOrgWideConnectorDetails, self)._process_custom_annotations(annotation_type, field_path, processor) DashAdminAddedOrgWideConnectorDetails_validator = bv.Struct(DashAdminAddedOrgWideConnectorDetails) - class DashAdminAddedOrgWideConnectorType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -6353,14 +5962,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashAdminAddedOrgWideConnectorType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DashAdminAddedOrgWideConnectorType, self)._process_custom_annotations(annotation_type, field_path, processor) DashAdminAddedOrgWideConnectorType_validator = bv.Struct(DashAdminAddedOrgWideConnectorType) - class DashAdminDisabledConnectorDetails(bb.Struct): """ Admin disabled a user connector. @@ -6372,13 +5977,15 @@ class DashAdminDisabledConnectorDetails(bb.Struct): """ __slots__ = [ - "_connector_name_value", - "_connector_status_value", + '_connector_name_value', + '_connector_status_value', ] _has_required_fields = True - def __init__(self, connector_name=None, connector_status=None): + def __init__(self, + connector_name=None, + connector_status=None): self._connector_name_value = bb.NOT_SET self._connector_status_value = bb.NOT_SET if connector_name is not None: @@ -6393,22 +6000,20 @@ def __init__(self, connector_name=None, connector_status=None): connector_status = bb.Attribute("connector_status", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashAdminDisabledConnectorDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DashAdminDisabledConnectorDetails, self)._process_custom_annotations(annotation_type, field_path, processor) DashAdminDisabledConnectorDetails_validator = bv.Struct(DashAdminDisabledConnectorDetails) - class DashAdminDisabledConnectorType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -6417,14 +6022,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashAdminDisabledConnectorType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DashAdminDisabledConnectorType, self)._process_custom_annotations(annotation_type, field_path, processor) DashAdminDisabledConnectorType_validator = bv.Struct(DashAdminDisabledConnectorType) - class DashAdminEnabledConnectorDetails(bb.Struct): """ Admin enabled a user connector. @@ -6436,13 +6037,15 @@ class DashAdminEnabledConnectorDetails(bb.Struct): """ __slots__ = [ - "_connector_name_value", - "_connector_status_value", + '_connector_name_value', + '_connector_status_value', ] _has_required_fields = True - def __init__(self, connector_name=None, connector_status=None): + def __init__(self, + connector_name=None, + connector_status=None): self._connector_name_value = bb.NOT_SET self._connector_status_value = bb.NOT_SET if connector_name is not None: @@ -6457,22 +6060,20 @@ def __init__(self, connector_name=None, connector_status=None): connector_status = bb.Attribute("connector_status", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashAdminEnabledConnectorDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DashAdminEnabledConnectorDetails, self)._process_custom_annotations(annotation_type, field_path, processor) DashAdminEnabledConnectorDetails_validator = bv.Struct(DashAdminEnabledConnectorDetails) - class DashAdminEnabledConnectorType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -6481,14 +6082,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashAdminEnabledConnectorType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DashAdminEnabledConnectorType, self)._process_custom_annotations(annotation_type, field_path, processor) DashAdminEnabledConnectorType_validator = bv.Struct(DashAdminEnabledConnectorType) - class DashAdminRemovedOrgWideConnectorDetails(bb.Struct): """ Admin removed an admin connector. @@ -6500,13 +6097,15 @@ class DashAdminRemovedOrgWideConnectorDetails(bb.Struct): """ __slots__ = [ - "_connector_name_value", - "_connector_status_value", + '_connector_name_value', + '_connector_status_value', ] _has_required_fields = True - def __init__(self, connector_name=None, connector_status=None): + def __init__(self, + connector_name=None, + connector_status=None): self._connector_name_value = bb.NOT_SET self._connector_status_value = bb.NOT_SET if connector_name is not None: @@ -6521,24 +6120,20 @@ def __init__(self, connector_name=None, connector_status=None): connector_status = bb.Attribute("connector_status", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashAdminRemovedOrgWideConnectorDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - - -DashAdminRemovedOrgWideConnectorDetails_validator = bv.Struct( - DashAdminRemovedOrgWideConnectorDetails -) + super(DashAdminRemovedOrgWideConnectorDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +DashAdminRemovedOrgWideConnectorDetails_validator = bv.Struct(DashAdminRemovedOrgWideConnectorDetails) class DashAdminRemovedOrgWideConnectorType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -6547,14 +6142,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashAdminRemovedOrgWideConnectorType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DashAdminRemovedOrgWideConnectorType, self)._process_custom_annotations(annotation_type, field_path, processor) DashAdminRemovedOrgWideConnectorType_validator = bv.Struct(DashAdminRemovedOrgWideConnectorType) - class DashArchivedStackDetails(bb.Struct): """ Archived a stack. @@ -6566,13 +6157,15 @@ class DashArchivedStackDetails(bb.Struct): """ __slots__ = [ - "_stack_name_value", - "_stack_type_value", + '_stack_name_value', + '_stack_type_value', ] _has_required_fields = True - def __init__(self, stack_name=None, stack_type=None): + def __init__(self, + stack_name=None, + stack_type=None): self._stack_name_value = bb.NOT_SET self._stack_type_value = bb.NOT_SET if stack_name is not None: @@ -6587,22 +6180,20 @@ def __init__(self, stack_name=None, stack_type=None): stack_type = bb.Attribute("stack_type", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashArchivedStackDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DashArchivedStackDetails, self)._process_custom_annotations(annotation_type, field_path, processor) DashArchivedStackDetails_validator = bv.Struct(DashArchivedStackDetails) - class DashArchivedStackType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -6611,14 +6202,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashArchivedStackType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DashArchivedStackType, self)._process_custom_annotations(annotation_type, field_path, processor) DashArchivedStackType_validator = bv.Struct(DashArchivedStackType) - class DashChangedAudienceOfSharedLinkToStackDetails(bb.Struct): """ Changed the audience of a shared link to a stack. @@ -6630,13 +6217,15 @@ class DashChangedAudienceOfSharedLinkToStackDetails(bb.Struct): """ __slots__ = [ - "_stack_name_value", - "_stack_type_value", + '_stack_name_value', + '_stack_type_value', ] _has_required_fields = True - def __init__(self, stack_name=None, stack_type=None): + def __init__(self, + stack_name=None, + stack_type=None): self._stack_name_value = bb.NOT_SET self._stack_type_value = bb.NOT_SET if stack_name is not None: @@ -6651,24 +6240,20 @@ def __init__(self, stack_name=None, stack_type=None): stack_type = bb.Attribute("stack_type", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashChangedAudienceOfSharedLinkToStackDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - - -DashChangedAudienceOfSharedLinkToStackDetails_validator = bv.Struct( - DashChangedAudienceOfSharedLinkToStackDetails -) + super(DashChangedAudienceOfSharedLinkToStackDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +DashChangedAudienceOfSharedLinkToStackDetails_validator = bv.Struct(DashChangedAudienceOfSharedLinkToStackDetails) class DashChangedAudienceOfSharedLinkToStackType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -6677,15 +6262,9 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashChangedAudienceOfSharedLinkToStackType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - - -DashChangedAudienceOfSharedLinkToStackType_validator = bv.Struct( - DashChangedAudienceOfSharedLinkToStackType -) + super(DashChangedAudienceOfSharedLinkToStackType, self)._process_custom_annotations(annotation_type, field_path, processor) +DashChangedAudienceOfSharedLinkToStackType_validator = bv.Struct(DashChangedAudienceOfSharedLinkToStackType) class DashClonedStackDetails(bb.Struct): """ @@ -6702,21 +6281,19 @@ class DashClonedStackDetails(bb.Struct): """ __slots__ = [ - "_stack_name_value", - "_actor_email_value", - "_new_cloned_stack_name_value", - "_stack_type_value", + '_stack_name_value', + '_actor_email_value', + '_new_cloned_stack_name_value', + '_stack_type_value', ] _has_required_fields = True - def __init__( - self, - stack_name=None, - actor_email=None, - new_cloned_stack_name=None, - stack_type=None, - ): + def __init__(self, + stack_name=None, + actor_email=None, + new_cloned_stack_name=None, + stack_type=None): self._stack_name_value = bb.NOT_SET self._actor_email_value = bb.NOT_SET self._new_cloned_stack_name_value = bb.NOT_SET @@ -6743,22 +6320,20 @@ def __init__( stack_type = bb.Attribute("stack_type", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashClonedStackDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DashClonedStackDetails, self)._process_custom_annotations(annotation_type, field_path, processor) DashClonedStackDetails_validator = bv.Struct(DashClonedStackDetails) - class DashClonedStackType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -6767,14 +6342,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashClonedStackType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DashClonedStackType, self)._process_custom_annotations(annotation_type, field_path, processor) DashClonedStackType_validator = bv.Struct(DashClonedStackType) - class DashConnectorStatus(bb.Union): """ The status of the Connector @@ -6784,7 +6355,7 @@ class DashConnectorStatus(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition fail = None # Attribute is overwritten below the class definition @@ -6798,7 +6369,7 @@ def is_fail(self): :rtype: bool """ - return self._tag == "fail" + return self._tag == 'fail' def is_success(self): """ @@ -6806,7 +6377,7 @@ def is_success(self): :rtype: bool """ - return self._tag == "success" + return self._tag == 'success' def is_other(self): """ @@ -6814,17 +6385,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashConnectorStatus, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DashConnectorStatus, self)._process_custom_annotations(annotation_type, field_path, processor) DashConnectorStatus_validator = bv.Union(DashConnectorStatus) - class DashConnectorToolsCallDetails(bb.Struct): """ Called a tool on a connector. @@ -6838,14 +6405,17 @@ class DashConnectorToolsCallDetails(bb.Struct): """ __slots__ = [ - "_connector_name_value", - "_tool_name_value", - "_surface_value", + '_connector_name_value', + '_tool_name_value', + '_surface_value', ] _has_required_fields = True - def __init__(self, connector_name=None, tool_name=None, surface=None): + def __init__(self, + connector_name=None, + tool_name=None, + surface=None): self._connector_name_value = bb.NOT_SET self._tool_name_value = bb.NOT_SET self._surface_value = bb.NOT_SET @@ -6866,22 +6436,20 @@ def __init__(self, connector_name=None, tool_name=None, surface=None): surface = bb.Attribute("surface", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashConnectorToolsCallDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DashConnectorToolsCallDetails, self)._process_custom_annotations(annotation_type, field_path, processor) DashConnectorToolsCallDetails_validator = bv.Struct(DashConnectorToolsCallDetails) - class DashConnectorToolsCallType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -6890,14 +6458,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashConnectorToolsCallType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DashConnectorToolsCallType, self)._process_custom_annotations(annotation_type, field_path, processor) DashConnectorToolsCallType_validator = bv.Struct(DashConnectorToolsCallType) - class DashCreatedStackDetails(bb.Struct): """ Created a stack. @@ -6909,13 +6473,15 @@ class DashCreatedStackDetails(bb.Struct): """ __slots__ = [ - "_stack_name_value", - "_stack_type_value", + '_stack_name_value', + '_stack_type_value', ] _has_required_fields = True - def __init__(self, stack_name=None, stack_type=None): + def __init__(self, + stack_name=None, + stack_type=None): self._stack_name_value = bb.NOT_SET self._stack_type_value = bb.NOT_SET if stack_name is not None: @@ -6930,22 +6496,20 @@ def __init__(self, stack_name=None, stack_type=None): stack_type = bb.Attribute("stack_type", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashCreatedStackDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DashCreatedStackDetails, self)._process_custom_annotations(annotation_type, field_path, processor) DashCreatedStackDetails_validator = bv.Struct(DashCreatedStackDetails) - class DashCreatedStackType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -6954,14 +6518,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashCreatedStackType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DashCreatedStackType, self)._process_custom_annotations(annotation_type, field_path, processor) DashCreatedStackType_validator = bv.Struct(DashCreatedStackType) - class DashDeletedCommentFromStackDetails(bb.Struct): """ Deleted a comment from a stack. @@ -6975,14 +6535,17 @@ class DashDeletedCommentFromStackDetails(bb.Struct): """ __slots__ = [ - "_stack_name_value", - "_stack_item_name_value", - "_stack_type_value", + '_stack_name_value', + '_stack_item_name_value', + '_stack_type_value', ] _has_required_fields = True - def __init__(self, stack_name=None, stack_item_name=None, stack_type=None): + def __init__(self, + stack_name=None, + stack_item_name=None, + stack_type=None): self._stack_name_value = bb.NOT_SET self._stack_item_name_value = bb.NOT_SET self._stack_type_value = bb.NOT_SET @@ -7003,22 +6566,20 @@ def __init__(self, stack_name=None, stack_item_name=None, stack_type=None): stack_type = bb.Attribute("stack_type", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashDeletedCommentFromStackDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DashDeletedCommentFromStackDetails, self)._process_custom_annotations(annotation_type, field_path, processor) DashDeletedCommentFromStackDetails_validator = bv.Struct(DashDeletedCommentFromStackDetails) - class DashDeletedCommentFromStackType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -7027,14 +6588,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashDeletedCommentFromStackType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DashDeletedCommentFromStackType, self)._process_custom_annotations(annotation_type, field_path, processor) DashDeletedCommentFromStackType_validator = bv.Struct(DashDeletedCommentFromStackType) - class DashDeletedStackDetails(bb.Struct): """ Deleted a stack. @@ -7046,13 +6603,15 @@ class DashDeletedStackDetails(bb.Struct): """ __slots__ = [ - "_stack_name_value", - "_stack_type_value", + '_stack_name_value', + '_stack_type_value', ] _has_required_fields = True - def __init__(self, stack_name=None, stack_type=None): + def __init__(self, + stack_name=None, + stack_type=None): self._stack_name_value = bb.NOT_SET self._stack_type_value = bb.NOT_SET if stack_name is not None: @@ -7067,22 +6626,20 @@ def __init__(self, stack_name=None, stack_type=None): stack_type = bb.Attribute("stack_type", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashDeletedStackDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DashDeletedStackDetails, self)._process_custom_annotations(annotation_type, field_path, processor) DashDeletedStackDetails_validator = bv.Struct(DashDeletedStackDetails) - class DashDeletedStackType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -7091,14 +6648,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashDeletedStackType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DashDeletedStackType, self)._process_custom_annotations(annotation_type, field_path, processor) DashDeletedStackType_validator = bv.Struct(DashDeletedStackType) - class DashEditedCommentInStackDetails(bb.Struct): """ Edited a comment in a stack. @@ -7114,15 +6667,19 @@ class DashEditedCommentInStackDetails(bb.Struct): """ __slots__ = [ - "_stack_name_value", - "_stack_item_name_value", - "_comment_text_value", - "_stack_type_value", + '_stack_name_value', + '_stack_item_name_value', + '_comment_text_value', + '_stack_type_value', ] _has_required_fields = True - def __init__(self, stack_name=None, stack_item_name=None, comment_text=None, stack_type=None): + def __init__(self, + stack_name=None, + stack_item_name=None, + comment_text=None, + stack_type=None): self._stack_name_value = bb.NOT_SET self._stack_item_name_value = bb.NOT_SET self._comment_text_value = bb.NOT_SET @@ -7149,22 +6706,20 @@ def __init__(self, stack_name=None, stack_item_name=None, comment_text=None, sta stack_type = bb.Attribute("stack_type", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashEditedCommentInStackDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DashEditedCommentInStackDetails, self)._process_custom_annotations(annotation_type, field_path, processor) DashEditedCommentInStackDetails_validator = bv.Struct(DashEditedCommentInStackDetails) - class DashEditedCommentInStackType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -7173,14 +6728,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashEditedCommentInStackType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DashEditedCommentInStackType, self)._process_custom_annotations(annotation_type, field_path, processor) DashEditedCommentInStackType_validator = bv.Struct(DashEditedCommentInStackType) - class DashExternalSharingPolicy(bb.Union): """ Policy for deciding whether team users can share Dash content externally @@ -7190,7 +6741,7 @@ class DashExternalSharingPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition default = None # Attribute is overwritten below the class definition @@ -7206,7 +6757,7 @@ def is_default(self): :rtype: bool """ - return self._tag == "default" + return self._tag == 'default' def is_disabled(self): """ @@ -7214,7 +6765,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == "disabled" + return self._tag == 'disabled' def is_enabled(self): """ @@ -7222,7 +6773,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == "enabled" + return self._tag == 'enabled' def is_other(self): """ @@ -7230,17 +6781,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashExternalSharingPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DashExternalSharingPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) DashExternalSharingPolicy_validator = bv.Union(DashExternalSharingPolicy) - class DashExternalSharingPolicyChangedDetails(bb.Struct): """ Changed Dash external sharing policy for team. @@ -7252,13 +6799,15 @@ class DashExternalSharingPolicyChangedDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -7273,24 +6822,20 @@ def __init__(self, new_value=None, previous_value=None): previous_value = bb.Attribute("previous_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashExternalSharingPolicyChangedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - - -DashExternalSharingPolicyChangedDetails_validator = bv.Struct( - DashExternalSharingPolicyChangedDetails -) + super(DashExternalSharingPolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +DashExternalSharingPolicyChangedDetails_validator = bv.Struct(DashExternalSharingPolicyChangedDetails) class DashExternalSharingPolicyChangedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -7299,14 +6844,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashExternalSharingPolicyChangedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DashExternalSharingPolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) DashExternalSharingPolicyChangedType_validator = bv.Struct(DashExternalSharingPolicyChangedType) - class DashExternalUserOpenedStackDetails(bb.Struct): """ External user opened a stack. @@ -7326,25 +6867,23 @@ class DashExternalUserOpenedStackDetails(bb.Struct): """ __slots__ = [ - "_stack_name_value", - "_stack_sharing_scope_value", - "_is_invited_value", - "_is_verified_value", - "_stack_owner_team_id_value", - "_stack_type_value", + '_stack_name_value', + '_stack_sharing_scope_value', + '_is_invited_value', + '_is_verified_value', + '_stack_owner_team_id_value', + '_stack_type_value', ] _has_required_fields = True - def __init__( - self, - stack_name=None, - stack_sharing_scope=None, - is_invited=None, - is_verified=None, - stack_owner_team_id=None, - stack_type=None, - ): + def __init__(self, + stack_name=None, + stack_sharing_scope=None, + is_invited=None, + is_verified=None, + stack_owner_team_id=None, + stack_type=None): self._stack_name_value = bb.NOT_SET self._stack_sharing_scope_value = bb.NOT_SET self._is_invited_value = bb.NOT_SET @@ -7383,22 +6922,20 @@ def __init__( stack_type = bb.Attribute("stack_type", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashExternalUserOpenedStackDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DashExternalUserOpenedStackDetails, self)._process_custom_annotations(annotation_type, field_path, processor) DashExternalUserOpenedStackDetails_validator = bv.Struct(DashExternalUserOpenedStackDetails) - class DashExternalUserOpenedStackType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -7407,14 +6944,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashExternalUserOpenedStackType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DashExternalUserOpenedStackType, self)._process_custom_annotations(annotation_type, field_path, processor) DashExternalUserOpenedStackType_validator = bv.Struct(DashExternalUserOpenedStackType) - class DashFirstLaunchedDesktopDetails(bb.Struct): """ Opened the desktop app for the first time. @@ -7424,12 +6957,13 @@ class DashFirstLaunchedDesktopDetails(bb.Struct): """ __slots__ = [ - "_os_name_value", + '_os_name_value', ] _has_required_fields = True - def __init__(self, os_name=None): + def __init__(self, + os_name=None): self._os_name_value = bb.NOT_SET if os_name is not None: self.os_name = os_name @@ -7438,22 +6972,20 @@ def __init__(self, os_name=None): os_name = bb.Attribute("os_name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashFirstLaunchedDesktopDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DashFirstLaunchedDesktopDetails, self)._process_custom_annotations(annotation_type, field_path, processor) DashFirstLaunchedDesktopDetails_validator = bv.Struct(DashFirstLaunchedDesktopDetails) - class DashFirstLaunchedDesktopType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -7462,14 +6994,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashFirstLaunchedDesktopType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DashFirstLaunchedDesktopType, self)._process_custom_annotations(annotation_type, field_path, processor) DashFirstLaunchedDesktopType_validator = bv.Struct(DashFirstLaunchedDesktopType) - class DashFirstLaunchedExtensionDetails(bb.Struct): """ Opened the extension for the first time. @@ -7479,12 +7007,13 @@ class DashFirstLaunchedExtensionDetails(bb.Struct): """ __slots__ = [ - "_browser_name_value", + '_browser_name_value', ] _has_required_fields = True - def __init__(self, browser_name=None): + def __init__(self, + browser_name=None): self._browser_name_value = bb.NOT_SET if browser_name is not None: self.browser_name = browser_name @@ -7493,22 +7022,20 @@ def __init__(self, browser_name=None): browser_name = bb.Attribute("browser_name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashFirstLaunchedExtensionDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DashFirstLaunchedExtensionDetails, self)._process_custom_annotations(annotation_type, field_path, processor) DashFirstLaunchedExtensionDetails_validator = bv.Struct(DashFirstLaunchedExtensionDetails) - class DashFirstLaunchedExtensionType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -7517,14 +7044,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashFirstLaunchedExtensionType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DashFirstLaunchedExtensionType, self)._process_custom_annotations(annotation_type, field_path, processor) DashFirstLaunchedExtensionType_validator = bv.Struct(DashFirstLaunchedExtensionType) - class DashFirstLaunchedWebStartPageDetails(bb.Struct): """ Opened the web Start Page for the first time. @@ -7534,12 +7057,13 @@ class DashFirstLaunchedWebStartPageDetails(bb.Struct): """ __slots__ = [ - "_browser_name_value", + '_browser_name_value', ] _has_required_fields = True - def __init__(self, browser_name=None): + def __init__(self, + browser_name=None): self._browser_name_value = bb.NOT_SET if browser_name is not None: self.browser_name = browser_name @@ -7548,22 +7072,20 @@ def __init__(self, browser_name=None): browser_name = bb.Attribute("browser_name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashFirstLaunchedWebStartPageDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DashFirstLaunchedWebStartPageDetails, self)._process_custom_annotations(annotation_type, field_path, processor) DashFirstLaunchedWebStartPageDetails_validator = bv.Struct(DashFirstLaunchedWebStartPageDetails) - class DashFirstLaunchedWebStartPageType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -7572,14 +7094,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashFirstLaunchedWebStartPageType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DashFirstLaunchedWebStartPageType, self)._process_custom_annotations(annotation_type, field_path, processor) DashFirstLaunchedWebStartPageType_validator = bv.Struct(DashFirstLaunchedWebStartPageType) - class DashOpenedSharedLinkToStackDetails(bb.Struct): """ Checked access permissions to a stack. @@ -7591,13 +7109,15 @@ class DashOpenedSharedLinkToStackDetails(bb.Struct): """ __slots__ = [ - "_stack_name_value", - "_stack_type_value", + '_stack_name_value', + '_stack_type_value', ] _has_required_fields = True - def __init__(self, stack_name=None, stack_type=None): + def __init__(self, + stack_name=None, + stack_type=None): self._stack_name_value = bb.NOT_SET self._stack_type_value = bb.NOT_SET if stack_name is not None: @@ -7612,22 +7132,20 @@ def __init__(self, stack_name=None, stack_type=None): stack_type = bb.Attribute("stack_type", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashOpenedSharedLinkToStackDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DashOpenedSharedLinkToStackDetails, self)._process_custom_annotations(annotation_type, field_path, processor) DashOpenedSharedLinkToStackDetails_validator = bv.Struct(DashOpenedSharedLinkToStackDetails) - class DashOpenedSharedLinkToStackType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -7636,14 +7154,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashOpenedSharedLinkToStackType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DashOpenedSharedLinkToStackType, self)._process_custom_annotations(annotation_type, field_path, processor) DashOpenedSharedLinkToStackType_validator = bv.Struct(DashOpenedSharedLinkToStackType) - class DashOpenedStackDetails(bb.Struct): """ Opened a stack. @@ -7655,13 +7169,15 @@ class DashOpenedStackDetails(bb.Struct): """ __slots__ = [ - "_stack_name_value", - "_stack_type_value", + '_stack_name_value', + '_stack_type_value', ] _has_required_fields = True - def __init__(self, stack_name=None, stack_type=None): + def __init__(self, + stack_name=None, + stack_type=None): self._stack_name_value = bb.NOT_SET self._stack_type_value = bb.NOT_SET if stack_name is not None: @@ -7676,22 +7192,20 @@ def __init__(self, stack_name=None, stack_type=None): stack_type = bb.Attribute("stack_type", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashOpenedStackDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DashOpenedStackDetails, self)._process_custom_annotations(annotation_type, field_path, processor) DashOpenedStackDetails_validator = bv.Struct(DashOpenedStackDetails) - class DashOpenedStackType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -7700,14 +7214,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashOpenedStackType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DashOpenedStackType, self)._process_custom_annotations(annotation_type, field_path, processor) DashOpenedStackType_validator = bv.Struct(DashOpenedStackType) - class DashPreviewOptOutStatus(bb.Union): """ The new preview opt-out status @@ -7717,7 +7227,7 @@ class DashPreviewOptOutStatus(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition opted_in = None # Attribute is overwritten below the class definition @@ -7731,7 +7241,7 @@ def is_opted_in(self): :rtype: bool """ - return self._tag == "opted_in" + return self._tag == 'opted_in' def is_opted_out(self): """ @@ -7739,7 +7249,7 @@ def is_opted_out(self): :rtype: bool """ - return self._tag == "opted_out" + return self._tag == 'opted_out' def is_other(self): """ @@ -7747,17 +7257,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashPreviewOptOutStatus, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DashPreviewOptOutStatus, self)._process_custom_annotations(annotation_type, field_path, processor) DashPreviewOptOutStatus_validator = bv.Union(DashPreviewOptOutStatus) - class DashPreviewOptOutStatusChangedDetails(bb.Struct): """ Changed the preview opt-out status. @@ -7767,12 +7273,13 @@ class DashPreviewOptOutStatusChangedDetails(bb.Struct): """ __slots__ = [ - "_opt_out_status_value", + '_opt_out_status_value', ] _has_required_fields = True - def __init__(self, opt_out_status=None): + def __init__(self, + opt_out_status=None): self._opt_out_status_value = bb.NOT_SET if opt_out_status is not None: self.opt_out_status = opt_out_status @@ -7781,22 +7288,20 @@ def __init__(self, opt_out_status=None): opt_out_status = bb.Attribute("opt_out_status", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashPreviewOptOutStatusChangedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DashPreviewOptOutStatusChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) DashPreviewOptOutStatusChangedDetails_validator = bv.Struct(DashPreviewOptOutStatusChangedDetails) - class DashPreviewOptOutStatusChangedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -7805,14 +7310,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashPreviewOptOutStatusChangedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DashPreviewOptOutStatusChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) DashPreviewOptOutStatusChangedType_validator = bv.Struct(DashPreviewOptOutStatusChangedType) - class DashRemovedConnectorDetails(bb.Struct): """ Disconnected a user connector. @@ -7824,13 +7325,15 @@ class DashRemovedConnectorDetails(bb.Struct): """ __slots__ = [ - "_connector_name_value", - "_connector_status_value", + '_connector_name_value', + '_connector_status_value', ] _has_required_fields = True - def __init__(self, connector_name=None, connector_status=None): + def __init__(self, + connector_name=None, + connector_status=None): self._connector_name_value = bb.NOT_SET self._connector_status_value = bb.NOT_SET if connector_name is not None: @@ -7845,22 +7348,20 @@ def __init__(self, connector_name=None, connector_status=None): connector_status = bb.Attribute("connector_status", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashRemovedConnectorDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DashRemovedConnectorDetails, self)._process_custom_annotations(annotation_type, field_path, processor) DashRemovedConnectorDetails_validator = bv.Struct(DashRemovedConnectorDetails) - class DashRemovedConnectorType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -7869,14 +7370,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashRemovedConnectorType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DashRemovedConnectorType, self)._process_custom_annotations(annotation_type, field_path, processor) DashRemovedConnectorType_validator = bv.Struct(DashRemovedConnectorType) - class DashRemovedLinkFromStackDetails(bb.Struct): """ Removed a link from a stack. @@ -7890,14 +7387,17 @@ class DashRemovedLinkFromStackDetails(bb.Struct): """ __slots__ = [ - "_stack_name_value", - "_stack_item_link_value", - "_stack_type_value", + '_stack_name_value', + '_stack_item_link_value', + '_stack_type_value', ] _has_required_fields = True - def __init__(self, stack_name=None, stack_item_link=None, stack_type=None): + def __init__(self, + stack_name=None, + stack_item_link=None, + stack_type=None): self._stack_name_value = bb.NOT_SET self._stack_item_link_value = bb.NOT_SET self._stack_type_value = bb.NOT_SET @@ -7918,22 +7418,20 @@ def __init__(self, stack_name=None, stack_item_link=None, stack_type=None): stack_type = bb.Attribute("stack_type", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashRemovedLinkFromStackDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DashRemovedLinkFromStackDetails, self)._process_custom_annotations(annotation_type, field_path, processor) DashRemovedLinkFromStackDetails_validator = bv.Struct(DashRemovedLinkFromStackDetails) - class DashRemovedLinkFromStackType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -7942,14 +7440,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashRemovedLinkFromStackType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DashRemovedLinkFromStackType, self)._process_custom_annotations(annotation_type, field_path, processor) DashRemovedLinkFromStackType_validator = bv.Struct(DashRemovedLinkFromStackType) - class DashRemovedSharedLinkToStackDetails(bb.Struct): """ Removed a shared link to a stack. @@ -7961,13 +7455,15 @@ class DashRemovedSharedLinkToStackDetails(bb.Struct): """ __slots__ = [ - "_stack_name_value", - "_stack_type_value", + '_stack_name_value', + '_stack_type_value', ] _has_required_fields = True - def __init__(self, stack_name=None, stack_type=None): + def __init__(self, + stack_name=None, + stack_type=None): self._stack_name_value = bb.NOT_SET self._stack_type_value = bb.NOT_SET if stack_name is not None: @@ -7982,22 +7478,20 @@ def __init__(self, stack_name=None, stack_type=None): stack_type = bb.Attribute("stack_type", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashRemovedSharedLinkToStackDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DashRemovedSharedLinkToStackDetails, self)._process_custom_annotations(annotation_type, field_path, processor) DashRemovedSharedLinkToStackDetails_validator = bv.Struct(DashRemovedSharedLinkToStackDetails) - class DashRemovedSharedLinkToStackType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -8006,14 +7500,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashRemovedSharedLinkToStackType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DashRemovedSharedLinkToStackType, self)._process_custom_annotations(annotation_type, field_path, processor) DashRemovedSharedLinkToStackType_validator = bv.Struct(DashRemovedSharedLinkToStackType) - class DashRemovedTeamEmailDomainAllowlistDetails(bb.Struct): """ Admin removed an email domain from the team allowlist. @@ -8023,12 +7513,13 @@ class DashRemovedTeamEmailDomainAllowlistDetails(bb.Struct): """ __slots__ = [ - "_email_domain_value", + '_email_domain_value', ] _has_required_fields = True - def __init__(self, email_domain=None): + def __init__(self, + email_domain=None): self._email_domain_value = bb.NOT_SET if email_domain is not None: self.email_domain = email_domain @@ -8037,24 +7528,20 @@ def __init__(self, email_domain=None): email_domain = bb.Attribute("email_domain") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashRemovedTeamEmailDomainAllowlistDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - - -DashRemovedTeamEmailDomainAllowlistDetails_validator = bv.Struct( - DashRemovedTeamEmailDomainAllowlistDetails -) + super(DashRemovedTeamEmailDomainAllowlistDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +DashRemovedTeamEmailDomainAllowlistDetails_validator = bv.Struct(DashRemovedTeamEmailDomainAllowlistDetails) class DashRemovedTeamEmailDomainAllowlistType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -8063,15 +7550,9 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashRemovedTeamEmailDomainAllowlistType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - - -DashRemovedTeamEmailDomainAllowlistType_validator = bv.Struct( - DashRemovedTeamEmailDomainAllowlistType -) + super(DashRemovedTeamEmailDomainAllowlistType, self)._process_custom_annotations(annotation_type, field_path, processor) +DashRemovedTeamEmailDomainAllowlistType_validator = bv.Struct(DashRemovedTeamEmailDomainAllowlistType) class DashRenamedStackDetails(bb.Struct): """ @@ -8086,14 +7567,17 @@ class DashRenamedStackDetails(bb.Struct): """ __slots__ = [ - "_old_name_value", - "_new_name_value", - "_stack_type_value", + '_old_name_value', + '_new_name_value', + '_stack_type_value', ] _has_required_fields = True - def __init__(self, old_name=None, new_name=None, stack_type=None): + def __init__(self, + old_name=None, + new_name=None, + stack_type=None): self._old_name_value = bb.NOT_SET self._new_name_value = bb.NOT_SET self._stack_type_value = bb.NOT_SET @@ -8114,22 +7598,20 @@ def __init__(self, old_name=None, new_name=None, stack_type=None): stack_type = bb.Attribute("stack_type", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashRenamedStackDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DashRenamedStackDetails, self)._process_custom_annotations(annotation_type, field_path, processor) DashRenamedStackDetails_validator = bv.Struct(DashRenamedStackDetails) - class DashRenamedStackType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -8138,14 +7620,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashRenamedStackType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DashRenamedStackType, self)._process_custom_annotations(annotation_type, field_path, processor) DashRenamedStackType_validator = bv.Struct(DashRenamedStackType) - class DashSharedLinkToStackDetails(bb.Struct): """ Shared a link to a stack. @@ -8157,13 +7635,15 @@ class DashSharedLinkToStackDetails(bb.Struct): """ __slots__ = [ - "_stack_name_value", - "_stack_type_value", + '_stack_name_value', + '_stack_type_value', ] _has_required_fields = True - def __init__(self, stack_name=None, stack_type=None): + def __init__(self, + stack_name=None, + stack_type=None): self._stack_name_value = bb.NOT_SET self._stack_type_value = bb.NOT_SET if stack_name is not None: @@ -8178,22 +7658,20 @@ def __init__(self, stack_name=None, stack_type=None): stack_type = bb.Attribute("stack_type", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashSharedLinkToStackDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DashSharedLinkToStackDetails, self)._process_custom_annotations(annotation_type, field_path, processor) DashSharedLinkToStackDetails_validator = bv.Struct(DashSharedLinkToStackDetails) - class DashSharedLinkToStackType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -8202,14 +7680,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashSharedLinkToStackType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DashSharedLinkToStackType, self)._process_custom_annotations(annotation_type, field_path, processor) DashSharedLinkToStackType_validator = bv.Struct(DashSharedLinkToStackType) - class DashStackSharingScope(bb.Union): """ The stack sharing scope @@ -8219,7 +7693,7 @@ class DashStackSharingScope(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition invited = None # Attribute is overwritten below the class definition @@ -8237,7 +7711,7 @@ def is_invited(self): :rtype: bool """ - return self._tag == "invited" + return self._tag == 'invited' def is_public(self): """ @@ -8245,7 +7719,7 @@ def is_public(self): :rtype: bool """ - return self._tag == "public" + return self._tag == 'public' def is_team(self): """ @@ -8253,7 +7727,7 @@ def is_team(self): :rtype: bool """ - return self._tag == "team" + return self._tag == 'team' def is_unknown(self): """ @@ -8261,7 +7735,7 @@ def is_unknown(self): :rtype: bool """ - return self._tag == "unknown" + return self._tag == 'unknown' def is_other(self): """ @@ -8269,17 +7743,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashStackSharingScope, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DashStackSharingScope, self)._process_custom_annotations(annotation_type, field_path, processor) DashStackSharingScope_validator = bv.Union(DashStackSharingScope) - class DashStackType(bb.Union): """ The type of stack backend @@ -8289,7 +7759,7 @@ class DashStackType(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition cypress = None # Attribute is overwritten below the class definition @@ -8305,7 +7775,7 @@ def is_cypress(self): :rtype: bool """ - return self._tag == "cypress" + return self._tag == 'cypress' def is_reference_container(self): """ @@ -8313,7 +7783,7 @@ def is_reference_container(self): :rtype: bool """ - return self._tag == "reference_container" + return self._tag == 'reference_container' def is_unknown(self): """ @@ -8321,7 +7791,7 @@ def is_unknown(self): :rtype: bool """ - return self._tag == "unknown" + return self._tag == 'unknown' def is_other(self): """ @@ -8329,17 +7799,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashStackType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DashStackType, self)._process_custom_annotations(annotation_type, field_path, processor) DashStackType_validator = bv.Union(DashStackType) - class DashUnarchivedStackDetails(bb.Struct): """ Unarchived a stack. @@ -8351,13 +7817,15 @@ class DashUnarchivedStackDetails(bb.Struct): """ __slots__ = [ - "_stack_name_value", - "_stack_type_value", + '_stack_name_value', + '_stack_type_value', ] _has_required_fields = True - def __init__(self, stack_name=None, stack_type=None): + def __init__(self, + stack_name=None, + stack_type=None): self._stack_name_value = bb.NOT_SET self._stack_type_value = bb.NOT_SET if stack_name is not None: @@ -8372,22 +7840,20 @@ def __init__(self, stack_name=None, stack_type=None): stack_type = bb.Attribute("stack_type", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashUnarchivedStackDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DashUnarchivedStackDetails, self)._process_custom_annotations(annotation_type, field_path, processor) DashUnarchivedStackDetails_validator = bv.Struct(DashUnarchivedStackDetails) - class DashUnarchivedStackType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -8396,14 +7862,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashUnarchivedStackType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DashUnarchivedStackType, self)._process_custom_annotations(annotation_type, field_path, processor) DashUnarchivedStackType_validator = bv.Struct(DashUnarchivedStackType) - class DashViewedCompanyStackDetails(bb.Struct): """ Member viewed a company stack. @@ -8415,13 +7877,15 @@ class DashViewedCompanyStackDetails(bb.Struct): """ __slots__ = [ - "_stack_name_value", - "_stack_type_value", + '_stack_name_value', + '_stack_type_value', ] _has_required_fields = True - def __init__(self, stack_name=None, stack_type=None): + def __init__(self, + stack_name=None, + stack_type=None): self._stack_name_value = bb.NOT_SET self._stack_type_value = bb.NOT_SET if stack_name is not None: @@ -8436,22 +7900,20 @@ def __init__(self, stack_name=None, stack_type=None): stack_type = bb.Attribute("stack_type", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashViewedCompanyStackDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DashViewedCompanyStackDetails, self)._process_custom_annotations(annotation_type, field_path, processor) DashViewedCompanyStackDetails_validator = bv.Struct(DashViewedCompanyStackDetails) - class DashViewedCompanyStackType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -8460,20 +7922,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashViewedCompanyStackType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DashViewedCompanyStackType, self)._process_custom_annotations(annotation_type, field_path, processor) DashViewedCompanyStackType_validator = bv.Struct(DashViewedCompanyStackType) - class DashViewedExternalAiActivityReportDetails(bb.Struct): """ Admin viewed the external AI activity report. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -8481,24 +7940,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashViewedExternalAiActivityReportDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - - -DashViewedExternalAiActivityReportDetails_validator = bv.Struct( - DashViewedExternalAiActivityReportDetails -) + super(DashViewedExternalAiActivityReportDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +DashViewedExternalAiActivityReportDetails_validator = bv.Struct(DashViewedExternalAiActivityReportDetails) class DashViewedExternalAiActivityReportType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -8507,14 +7962,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashViewedExternalAiActivityReportType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DashViewedExternalAiActivityReportType, self)._process_custom_annotations(annotation_type, field_path, processor) DashViewedExternalAiActivityReportType_validator = bv.Struct(DashViewedExternalAiActivityReportType) - class DataPlacementRestrictionChangePolicyDetails(bb.Struct): """ Set restrictions on data center locations where team data resides. @@ -8526,13 +7977,15 @@ class DataPlacementRestrictionChangePolicyDetails(bb.Struct): """ __slots__ = [ - "_previous_value_value", - "_new_value_value", + '_previous_value_value', + '_new_value_value', ] _has_required_fields = True - def __init__(self, previous_value=None, new_value=None): + def __init__(self, + previous_value=None, + new_value=None): self._previous_value_value = bb.NOT_SET self._new_value_value = bb.NOT_SET if previous_value is not None: @@ -8547,24 +8000,20 @@ def __init__(self, previous_value=None, new_value=None): 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 - ) - - -DataPlacementRestrictionChangePolicyDetails_validator = bv.Struct( - DataPlacementRestrictionChangePolicyDetails -) + super(DataPlacementRestrictionChangePolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +DataPlacementRestrictionChangePolicyDetails_validator = bv.Struct(DataPlacementRestrictionChangePolicyDetails) class DataPlacementRestrictionChangePolicyType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -8573,15 +8022,9 @@ def __init__(self, description=None): 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 - ) - - -DataPlacementRestrictionChangePolicyType_validator = bv.Struct( - DataPlacementRestrictionChangePolicyType -) + super(DataPlacementRestrictionChangePolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) +DataPlacementRestrictionChangePolicyType_validator = bv.Struct(DataPlacementRestrictionChangePolicyType) class DataPlacementRestrictionSatisfyPolicyDetails(bb.Struct): """ @@ -8592,12 +8035,13 @@ class DataPlacementRestrictionSatisfyPolicyDetails(bb.Struct): """ __slots__ = [ - "_placement_restriction_value", + '_placement_restriction_value', ] _has_required_fields = True - def __init__(self, placement_restriction=None): + def __init__(self, + placement_restriction=None): self._placement_restriction_value = bb.NOT_SET if placement_restriction is not None: self.placement_restriction = placement_restriction @@ -8606,24 +8050,20 @@ def __init__(self, placement_restriction=None): 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 - ) - - -DataPlacementRestrictionSatisfyPolicyDetails_validator = bv.Struct( - DataPlacementRestrictionSatisfyPolicyDetails -) + super(DataPlacementRestrictionSatisfyPolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +DataPlacementRestrictionSatisfyPolicyDetails_validator = bv.Struct(DataPlacementRestrictionSatisfyPolicyDetails) class DataPlacementRestrictionSatisfyPolicyType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -8632,22 +8072,17 @@ def __init__(self, description=None): 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 - ) - - -DataPlacementRestrictionSatisfyPolicyType_validator = bv.Struct( - DataPlacementRestrictionSatisfyPolicyType -) + super(DataPlacementRestrictionSatisfyPolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) +DataPlacementRestrictionSatisfyPolicyType_validator = bv.Struct(DataPlacementRestrictionSatisfyPolicyType) class DataResidencyMigrationRequestSuccessfulDetails(bb.Struct): """ Requested data residency migration for team data. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -8655,24 +8090,20 @@ 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 - ) - - -DataResidencyMigrationRequestSuccessfulDetails_validator = bv.Struct( - DataResidencyMigrationRequestSuccessfulDetails -) + super(DataResidencyMigrationRequestSuccessfulDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +DataResidencyMigrationRequestSuccessfulDetails_validator = bv.Struct(DataResidencyMigrationRequestSuccessfulDetails) class DataResidencyMigrationRequestSuccessfulType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -8681,22 +8112,17 @@ def __init__(self, description=None): 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 - ) - - -DataResidencyMigrationRequestSuccessfulType_validator = bv.Struct( - DataResidencyMigrationRequestSuccessfulType -) + super(DataResidencyMigrationRequestSuccessfulType, self)._process_custom_annotations(annotation_type, field_path, processor) +DataResidencyMigrationRequestSuccessfulType_validator = bv.Struct(DataResidencyMigrationRequestSuccessfulType) class DataResidencyMigrationRequestUnsuccessfulDetails(bb.Struct): """ Request for data residency migration for team data has failed. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -8704,24 +8130,20 @@ 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 - ) - - -DataResidencyMigrationRequestUnsuccessfulDetails_validator = bv.Struct( - DataResidencyMigrationRequestUnsuccessfulDetails -) + super(DataResidencyMigrationRequestUnsuccessfulDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +DataResidencyMigrationRequestUnsuccessfulDetails_validator = bv.Struct(DataResidencyMigrationRequestUnsuccessfulDetails) class DataResidencyMigrationRequestUnsuccessfulType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -8730,15 +8152,9 @@ def __init__(self, description=None): 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 - ) - - -DataResidencyMigrationRequestUnsuccessfulType_validator = bv.Struct( - DataResidencyMigrationRequestUnsuccessfulType -) + super(DataResidencyMigrationRequestUnsuccessfulType, self)._process_custom_annotations(annotation_type, field_path, processor) +DataResidencyMigrationRequestUnsuccessfulType_validator = bv.Struct(DataResidencyMigrationRequestUnsuccessfulType) class DefaultLinkExpirationDaysPolicy(bb.Union): """ @@ -8750,7 +8166,7 @@ class DefaultLinkExpirationDaysPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition day_1 = None # Attribute is overwritten below the class definition @@ -8776,7 +8192,7 @@ def is_day_1(self): :rtype: bool """ - return self._tag == "day_1" + return self._tag == 'day_1' def is_day_180(self): """ @@ -8784,7 +8200,7 @@ def is_day_180(self): :rtype: bool """ - return self._tag == "day_180" + return self._tag == 'day_180' def is_day_3(self): """ @@ -8792,7 +8208,7 @@ def is_day_3(self): :rtype: bool """ - return self._tag == "day_3" + return self._tag == 'day_3' def is_day_30(self): """ @@ -8800,7 +8216,7 @@ def is_day_30(self): :rtype: bool """ - return self._tag == "day_30" + return self._tag == 'day_30' def is_day_7(self): """ @@ -8808,7 +8224,7 @@ def is_day_7(self): :rtype: bool """ - return self._tag == "day_7" + return self._tag == 'day_7' def is_day_90(self): """ @@ -8816,7 +8232,7 @@ def is_day_90(self): :rtype: bool """ - return self._tag == "day_90" + return self._tag == 'day_90' def is_none(self): """ @@ -8824,7 +8240,7 @@ def is_none(self): :rtype: bool """ - return self._tag == "none" + return self._tag == 'none' def is_year_1(self): """ @@ -8832,7 +8248,7 @@ def is_year_1(self): :rtype: bool """ - return self._tag == "year_1" + return self._tag == 'year_1' def is_other(self): """ @@ -8840,17 +8256,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DefaultLinkExpirationDaysPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DefaultLinkExpirationDaysPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) DefaultLinkExpirationDaysPolicy_validator = bv.Union(DefaultLinkExpirationDaysPolicy) - class DeleteTeamInviteLinkDetails(bb.Struct): """ Deleted team invite link. @@ -8860,12 +8272,13 @@ class DeleteTeamInviteLinkDetails(bb.Struct): """ __slots__ = [ - "_link_url_value", + '_link_url_value', ] _has_required_fields = True - def __init__(self, link_url=None): + def __init__(self, + link_url=None): self._link_url_value = bb.NOT_SET if link_url is not None: self.link_url = link_url @@ -8874,22 +8287,20 @@ def __init__(self, link_url=None): link_url = bb.Attribute("link_url") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeleteTeamInviteLinkDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DeleteTeamInviteLinkDetails, self)._process_custom_annotations(annotation_type, field_path, processor) DeleteTeamInviteLinkDetails_validator = bv.Struct(DeleteTeamInviteLinkDetails) - class DeleteTeamInviteLinkType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -8898,14 +8309,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeleteTeamInviteLinkType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DeleteTeamInviteLinkType, self)._process_custom_annotations(annotation_type, field_path, processor) DeleteTeamInviteLinkType_validator = bv.Struct(DeleteTeamInviteLinkType) - class DeviceSessionLogInfo(bb.Struct): """ Device's session logged information. @@ -8919,14 +8326,17 @@ class DeviceSessionLogInfo(bb.Struct): """ __slots__ = [ - "_ip_address_value", - "_created_value", - "_updated_value", + '_ip_address_value', + '_created_value', + '_updated_value', ] _has_required_fields = False - def __init__(self, ip_address=None, created=None, updated=None): + def __init__(self, + ip_address=None, + created=None, + updated=None): self._ip_address_value = bb.NOT_SET self._created_value = bb.NOT_SET self._updated_value = bb.NOT_SET @@ -8947,14 +8357,10 @@ def __init__(self, ip_address=None, created=None, updated=None): updated = bb.Attribute("updated", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeviceSessionLogInfo, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DeviceSessionLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) DeviceSessionLogInfo_validator = bv.StructTree(DeviceSessionLogInfo) - class DesktopDeviceSessionLogInfo(DeviceSessionLogInfo): """ Information about linked Dropbox desktop client sessions @@ -8975,29 +8381,29 @@ class DesktopDeviceSessionLogInfo(DeviceSessionLogInfo): """ __slots__ = [ - "_session_info_value", - "_host_name_value", - "_client_type_value", - "_client_version_value", - "_platform_value", - "_is_delete_on_unlink_supported_value", + '_session_info_value', + '_host_name_value', + '_client_type_value', + '_client_version_value', + '_platform_value', + '_is_delete_on_unlink_supported_value', ] _has_required_fields = True - def __init__( - self, - host_name=None, - client_type=None, - platform=None, - is_delete_on_unlink_supported=None, - ip_address=None, - created=None, - updated=None, - session_info=None, - client_version=None, - ): - super(DesktopDeviceSessionLogInfo, self).__init__(ip_address, created, updated) + def __init__(self, + host_name=None, + client_type=None, + platform=None, + is_delete_on_unlink_supported=None, + ip_address=None, + created=None, + updated=None, + session_info=None, + client_version=None): + super(DesktopDeviceSessionLogInfo, self).__init__(ip_address, + created, + updated) self._session_info_value = bb.NOT_SET self._host_name_value = bb.NOT_SET self._client_type_value = bb.NOT_SET @@ -9036,14 +8442,10 @@ def __init__( is_delete_on_unlink_supported = bb.Attribute("is_delete_on_unlink_supported") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DesktopDeviceSessionLogInfo, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DesktopDeviceSessionLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) DesktopDeviceSessionLogInfo_validator = bv.Struct(DesktopDeviceSessionLogInfo) - class SessionLogInfo(bb.Struct): """ Session's logged information. @@ -9053,12 +8455,13 @@ class SessionLogInfo(bb.Struct): """ __slots__ = [ - "_session_id_value", + '_session_id_value', ] _has_required_fields = False - def __init__(self, session_id=None): + def __init__(self, + session_id=None): self._session_id_value = bb.NOT_SET if session_id is not None: self.session_id = session_id @@ -9067,41 +8470,36 @@ def __init__(self, session_id=None): session_id = bb.Attribute("session_id", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SessionLogInfo, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SessionLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) SessionLogInfo_validator = bv.StructTree(SessionLogInfo) - class DesktopSessionLogInfo(SessionLogInfo): """ Desktop session. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False - def __init__(self, session_id=None): + def __init__(self, + session_id=None): super(DesktopSessionLogInfo, self).__init__(session_id) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DesktopSessionLogInfo, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DesktopSessionLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) DesktopSessionLogInfo_validator = bv.Struct(DesktopSessionLogInfo) - class DeviceApprovalsAddExceptionDetails(bb.Struct): """ Added members to device approvals exception list. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -9109,22 +8507,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeviceApprovalsAddExceptionDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DeviceApprovalsAddExceptionDetails, self)._process_custom_annotations(annotation_type, field_path, processor) DeviceApprovalsAddExceptionDetails_validator = bv.Struct(DeviceApprovalsAddExceptionDetails) - class DeviceApprovalsAddExceptionType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -9133,14 +8529,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeviceApprovalsAddExceptionType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DeviceApprovalsAddExceptionType, self)._process_custom_annotations(annotation_type, field_path, processor) DeviceApprovalsAddExceptionType_validator = bv.Struct(DeviceApprovalsAddExceptionType) - class DeviceApprovalsChangeDesktopPolicyDetails(bb.Struct): """ Set/removed limit on number of computers member can link to team Dropbox @@ -9155,13 +8547,15 @@ class DeviceApprovalsChangeDesktopPolicyDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = False - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -9176,24 +8570,20 @@ def __init__(self, new_value=None, previous_value=None): 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 - ) - - -DeviceApprovalsChangeDesktopPolicyDetails_validator = bv.Struct( - DeviceApprovalsChangeDesktopPolicyDetails -) + super(DeviceApprovalsChangeDesktopPolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +DeviceApprovalsChangeDesktopPolicyDetails_validator = bv.Struct(DeviceApprovalsChangeDesktopPolicyDetails) class DeviceApprovalsChangeDesktopPolicyType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -9202,14 +8592,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeviceApprovalsChangeDesktopPolicyType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DeviceApprovalsChangeDesktopPolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) DeviceApprovalsChangeDesktopPolicyType_validator = bv.Struct(DeviceApprovalsChangeDesktopPolicyType) - class DeviceApprovalsChangeMobilePolicyDetails(bb.Struct): """ Set/removed limit on number of mobile devices member can link to team @@ -9224,13 +8610,15 @@ class DeviceApprovalsChangeMobilePolicyDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = False - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -9245,24 +8633,20 @@ def __init__(self, new_value=None, previous_value=None): 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 - ) - - -DeviceApprovalsChangeMobilePolicyDetails_validator = bv.Struct( - DeviceApprovalsChangeMobilePolicyDetails -) + super(DeviceApprovalsChangeMobilePolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +DeviceApprovalsChangeMobilePolicyDetails_validator = bv.Struct(DeviceApprovalsChangeMobilePolicyDetails) class DeviceApprovalsChangeMobilePolicyType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -9271,14 +8655,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeviceApprovalsChangeMobilePolicyType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DeviceApprovalsChangeMobilePolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) DeviceApprovalsChangeMobilePolicyType_validator = bv.Struct(DeviceApprovalsChangeMobilePolicyType) - class DeviceApprovalsChangeOverageActionDetails(bb.Struct): """ Changed device approvals setting when member is over limit. @@ -9291,13 +8671,15 @@ class DeviceApprovalsChangeOverageActionDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = False - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -9312,24 +8694,20 @@ def __init__(self, new_value=None, previous_value=None): 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 - ) - - -DeviceApprovalsChangeOverageActionDetails_validator = bv.Struct( - DeviceApprovalsChangeOverageActionDetails -) + super(DeviceApprovalsChangeOverageActionDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +DeviceApprovalsChangeOverageActionDetails_validator = bv.Struct(DeviceApprovalsChangeOverageActionDetails) class DeviceApprovalsChangeOverageActionType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -9338,14 +8716,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeviceApprovalsChangeOverageActionType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DeviceApprovalsChangeOverageActionType, self)._process_custom_annotations(annotation_type, field_path, processor) DeviceApprovalsChangeOverageActionType_validator = bv.Struct(DeviceApprovalsChangeOverageActionType) - class DeviceApprovalsChangeUnlinkActionDetails(bb.Struct): """ Changed device approvals setting when member unlinks approved device. @@ -9358,13 +8732,15 @@ class DeviceApprovalsChangeUnlinkActionDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = False - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -9379,24 +8755,20 @@ def __init__(self, new_value=None, previous_value=None): 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 - ) - - -DeviceApprovalsChangeUnlinkActionDetails_validator = bv.Struct( - DeviceApprovalsChangeUnlinkActionDetails -) + super(DeviceApprovalsChangeUnlinkActionDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +DeviceApprovalsChangeUnlinkActionDetails_validator = bv.Struct(DeviceApprovalsChangeUnlinkActionDetails) class DeviceApprovalsChangeUnlinkActionType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -9405,14 +8777,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeviceApprovalsChangeUnlinkActionType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DeviceApprovalsChangeUnlinkActionType, self)._process_custom_annotations(annotation_type, field_path, processor) DeviceApprovalsChangeUnlinkActionType_validator = bv.Struct(DeviceApprovalsChangeUnlinkActionType) - class DeviceApprovalsPolicy(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -9420,7 +8788,7 @@ class DeviceApprovalsPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition limited = None # Attribute is overwritten below the class definition @@ -9434,7 +8802,7 @@ def is_limited(self): :rtype: bool """ - return self._tag == "limited" + return self._tag == 'limited' def is_unlimited(self): """ @@ -9442,7 +8810,7 @@ def is_unlimited(self): :rtype: bool """ - return self._tag == "unlimited" + return self._tag == 'unlimited' def is_other(self): """ @@ -9450,23 +8818,20 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeviceApprovalsPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DeviceApprovalsPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) DeviceApprovalsPolicy_validator = bv.Union(DeviceApprovalsPolicy) - class DeviceApprovalsRemoveExceptionDetails(bb.Struct): """ Removed members from device approvals exception list. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -9474,22 +8839,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeviceApprovalsRemoveExceptionDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DeviceApprovalsRemoveExceptionDetails, self)._process_custom_annotations(annotation_type, field_path, processor) DeviceApprovalsRemoveExceptionDetails_validator = bv.Struct(DeviceApprovalsRemoveExceptionDetails) - class DeviceApprovalsRemoveExceptionType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -9498,14 +8861,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeviceApprovalsRemoveExceptionType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DeviceApprovalsRemoveExceptionType, self)._process_custom_annotations(annotation_type, field_path, processor) DeviceApprovalsRemoveExceptionType_validator = bv.Struct(DeviceApprovalsRemoveExceptionType) - class DeviceChangeIpDesktopDetails(bb.Struct): """ Changed IP address associated with active desktop session. @@ -9515,12 +8874,13 @@ class DeviceChangeIpDesktopDetails(bb.Struct): """ __slots__ = [ - "_device_session_info_value", + '_device_session_info_value', ] _has_required_fields = True - def __init__(self, device_session_info=None): + def __init__(self, + device_session_info=None): self._device_session_info_value = bb.NOT_SET if device_session_info is not None: self.device_session_info = device_session_info @@ -9529,22 +8889,20 @@ def __init__(self, device_session_info=None): device_session_info = bb.Attribute("device_session_info", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeviceChangeIpDesktopDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DeviceChangeIpDesktopDetails, self)._process_custom_annotations(annotation_type, field_path, processor) DeviceChangeIpDesktopDetails_validator = bv.Struct(DeviceChangeIpDesktopDetails) - class DeviceChangeIpDesktopType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -9553,14 +8911,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeviceChangeIpDesktopType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DeviceChangeIpDesktopType, self)._process_custom_annotations(annotation_type, field_path, processor) DeviceChangeIpDesktopType_validator = bv.Struct(DeviceChangeIpDesktopType) - class DeviceChangeIpMobileDetails(bb.Struct): """ Changed IP address associated with active mobile session. @@ -9570,12 +8924,13 @@ class DeviceChangeIpMobileDetails(bb.Struct): """ __slots__ = [ - "_device_session_info_value", + '_device_session_info_value', ] _has_required_fields = False - def __init__(self, device_session_info=None): + def __init__(self, + device_session_info=None): self._device_session_info_value = bb.NOT_SET if device_session_info is not None: self.device_session_info = device_session_info @@ -9584,22 +8939,20 @@ def __init__(self, device_session_info=None): device_session_info = bb.Attribute("device_session_info", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeviceChangeIpMobileDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DeviceChangeIpMobileDetails, self)._process_custom_annotations(annotation_type, field_path, processor) DeviceChangeIpMobileDetails_validator = bv.Struct(DeviceChangeIpMobileDetails) - class DeviceChangeIpMobileType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -9608,14 +8961,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeviceChangeIpMobileType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DeviceChangeIpMobileType, self)._process_custom_annotations(annotation_type, field_path, processor) DeviceChangeIpMobileType_validator = bv.Struct(DeviceChangeIpMobileType) - class DeviceChangeIpWebDetails(bb.Struct): """ Changed IP address associated with active web session. @@ -9625,12 +8974,13 @@ class DeviceChangeIpWebDetails(bb.Struct): """ __slots__ = [ - "_user_agent_value", + '_user_agent_value', ] _has_required_fields = True - def __init__(self, user_agent=None): + def __init__(self, + user_agent=None): self._user_agent_value = bb.NOT_SET if user_agent is not None: self.user_agent = user_agent @@ -9639,22 +8989,20 @@ def __init__(self, user_agent=None): user_agent = bb.Attribute("user_agent") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeviceChangeIpWebDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DeviceChangeIpWebDetails, self)._process_custom_annotations(annotation_type, field_path, processor) DeviceChangeIpWebDetails_validator = bv.Struct(DeviceChangeIpWebDetails) - class DeviceChangeIpWebType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -9663,14 +9011,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeviceChangeIpWebType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DeviceChangeIpWebType, self)._process_custom_annotations(annotation_type, field_path, processor) DeviceChangeIpWebType_validator = bv.Struct(DeviceChangeIpWebType) - class DeviceDeleteOnUnlinkFailDetails(bb.Struct): """ Failed to delete all files from unlinked device. @@ -9684,14 +9028,17 @@ class DeviceDeleteOnUnlinkFailDetails(bb.Struct): """ __slots__ = [ - "_session_info_value", - "_display_name_value", - "_num_failures_value", + '_session_info_value', + '_display_name_value', + '_num_failures_value', ] _has_required_fields = True - def __init__(self, num_failures=None, session_info=None, display_name=None): + def __init__(self, + num_failures=None, + session_info=None, + display_name=None): self._session_info_value = bb.NOT_SET self._display_name_value = bb.NOT_SET self._num_failures_value = bb.NOT_SET @@ -9712,22 +9059,20 @@ def __init__(self, num_failures=None, session_info=None, display_name=None): num_failures = bb.Attribute("num_failures") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeviceDeleteOnUnlinkFailDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DeviceDeleteOnUnlinkFailDetails, self)._process_custom_annotations(annotation_type, field_path, processor) DeviceDeleteOnUnlinkFailDetails_validator = bv.Struct(DeviceDeleteOnUnlinkFailDetails) - class DeviceDeleteOnUnlinkFailType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -9736,14 +9081,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeviceDeleteOnUnlinkFailType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DeviceDeleteOnUnlinkFailType, self)._process_custom_annotations(annotation_type, field_path, processor) DeviceDeleteOnUnlinkFailType_validator = bv.Struct(DeviceDeleteOnUnlinkFailType) - class DeviceDeleteOnUnlinkSuccessDetails(bb.Struct): """ Deleted all files from unlinked device. @@ -9755,13 +9096,15 @@ class DeviceDeleteOnUnlinkSuccessDetails(bb.Struct): """ __slots__ = [ - "_session_info_value", - "_display_name_value", + '_session_info_value', + '_display_name_value', ] _has_required_fields = False - def __init__(self, session_info=None, display_name=None): + def __init__(self, + session_info=None, + display_name=None): self._session_info_value = bb.NOT_SET self._display_name_value = bb.NOT_SET if session_info is not None: @@ -9776,22 +9119,20 @@ def __init__(self, session_info=None, display_name=None): display_name = bb.Attribute("display_name", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeviceDeleteOnUnlinkSuccessDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DeviceDeleteOnUnlinkSuccessDetails, self)._process_custom_annotations(annotation_type, field_path, processor) DeviceDeleteOnUnlinkSuccessDetails_validator = bv.Struct(DeviceDeleteOnUnlinkSuccessDetails) - class DeviceDeleteOnUnlinkSuccessType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -9800,14 +9141,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeviceDeleteOnUnlinkSuccessType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DeviceDeleteOnUnlinkSuccessType, self)._process_custom_annotations(annotation_type, field_path, processor) DeviceDeleteOnUnlinkSuccessType_validator = bv.Struct(DeviceDeleteOnUnlinkSuccessType) - class DeviceLinkFailDetails(bb.Struct): """ Failed to link device. @@ -9819,13 +9156,15 @@ class DeviceLinkFailDetails(bb.Struct): """ __slots__ = [ - "_ip_address_value", - "_device_type_value", + '_ip_address_value', + '_device_type_value', ] _has_required_fields = True - def __init__(self, device_type=None, ip_address=None): + def __init__(self, + device_type=None, + ip_address=None): self._ip_address_value = bb.NOT_SET self._device_type_value = bb.NOT_SET if ip_address is not None: @@ -9840,22 +9179,20 @@ def __init__(self, device_type=None, ip_address=None): device_type = bb.Attribute("device_type", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeviceLinkFailDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DeviceLinkFailDetails, self)._process_custom_annotations(annotation_type, field_path, processor) DeviceLinkFailDetails_validator = bv.Struct(DeviceLinkFailDetails) - class DeviceLinkFailType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -9864,14 +9201,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeviceLinkFailType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DeviceLinkFailType, self)._process_custom_annotations(annotation_type, field_path, processor) DeviceLinkFailType_validator = bv.Struct(DeviceLinkFailType) - class DeviceLinkSuccessDetails(bb.Struct): """ Linked device. @@ -9881,12 +9214,13 @@ class DeviceLinkSuccessDetails(bb.Struct): """ __slots__ = [ - "_device_session_info_value", + '_device_session_info_value', ] _has_required_fields = False - def __init__(self, device_session_info=None): + def __init__(self, + device_session_info=None): self._device_session_info_value = bb.NOT_SET if device_session_info is not None: self.device_session_info = device_session_info @@ -9895,22 +9229,20 @@ def __init__(self, device_session_info=None): device_session_info = bb.Attribute("device_session_info", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeviceLinkSuccessDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DeviceLinkSuccessDetails, self)._process_custom_annotations(annotation_type, field_path, processor) DeviceLinkSuccessDetails_validator = bv.Struct(DeviceLinkSuccessDetails) - class DeviceLinkSuccessType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -9919,20 +9251,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeviceLinkSuccessType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DeviceLinkSuccessType, self)._process_custom_annotations(annotation_type, field_path, processor) DeviceLinkSuccessType_validator = bv.Struct(DeviceLinkSuccessType) - class DeviceManagementDisabledDetails(bb.Struct): """ Disabled device management. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -9940,22 +9269,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeviceManagementDisabledDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DeviceManagementDisabledDetails, self)._process_custom_annotations(annotation_type, field_path, processor) DeviceManagementDisabledDetails_validator = bv.Struct(DeviceManagementDisabledDetails) - class DeviceManagementDisabledType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -9964,20 +9291,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeviceManagementDisabledType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DeviceManagementDisabledType, self)._process_custom_annotations(annotation_type, field_path, processor) DeviceManagementDisabledType_validator = bv.Struct(DeviceManagementDisabledType) - class DeviceManagementEnabledDetails(bb.Struct): """ Enabled device management. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -9985,22 +9309,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeviceManagementEnabledDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DeviceManagementEnabledDetails, self)._process_custom_annotations(annotation_type, field_path, processor) DeviceManagementEnabledDetails_validator = bv.Struct(DeviceManagementEnabledDetails) - class DeviceManagementEnabledType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -10009,14 +9331,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeviceManagementEnabledType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DeviceManagementEnabledType, self)._process_custom_annotations(annotation_type, field_path, processor) DeviceManagementEnabledType_validator = bv.Struct(DeviceManagementEnabledType) - class DeviceSyncBackupStatusChangedDetails(bb.Struct): """ Enabled/disabled backup for computer. @@ -10030,14 +9348,17 @@ class DeviceSyncBackupStatusChangedDetails(bb.Struct): """ __slots__ = [ - "_desktop_device_session_info_value", - "_previous_value_value", - "_new_value_value", + '_desktop_device_session_info_value', + '_previous_value_value', + '_new_value_value', ] _has_required_fields = True - def __init__(self, desktop_device_session_info=None, previous_value=None, new_value=None): + def __init__(self, + desktop_device_session_info=None, + previous_value=None, + new_value=None): self._desktop_device_session_info_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET self._new_value_value = bb.NOT_SET @@ -10058,22 +9379,20 @@ def __init__(self, desktop_device_session_info=None, previous_value=None, new_va new_value = bb.Attribute("new_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeviceSyncBackupStatusChangedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DeviceSyncBackupStatusChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) DeviceSyncBackupStatusChangedDetails_validator = bv.Struct(DeviceSyncBackupStatusChangedDetails) - class DeviceSyncBackupStatusChangedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -10082,14 +9401,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeviceSyncBackupStatusChangedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DeviceSyncBackupStatusChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) DeviceSyncBackupStatusChangedType_validator = bv.Struct(DeviceSyncBackupStatusChangedType) - class DeviceType(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -10097,7 +9412,7 @@ class DeviceType(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition desktop = None # Attribute is overwritten below the class definition @@ -10111,7 +9426,7 @@ def is_desktop(self): :rtype: bool """ - return self._tag == "desktop" + return self._tag == 'desktop' def is_mobile(self): """ @@ -10119,7 +9434,7 @@ def is_mobile(self): :rtype: bool """ - return self._tag == "mobile" + return self._tag == 'mobile' def is_other(self): """ @@ -10127,15 +9442,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): super(DeviceType, self)._process_custom_annotations(annotation_type, field_path, processor) - DeviceType_validator = bv.Union(DeviceType) - class DeviceUnlinkDetails(bb.Struct): """ Disconnected device. @@ -10150,14 +9463,17 @@ class DeviceUnlinkDetails(bb.Struct): """ __slots__ = [ - "_session_info_value", - "_display_name_value", - "_delete_data_value", + '_session_info_value', + '_display_name_value', + '_delete_data_value', ] _has_required_fields = True - def __init__(self, delete_data=None, session_info=None, display_name=None): + def __init__(self, + delete_data=None, + session_info=None, + display_name=None): self._session_info_value = bb.NOT_SET self._display_name_value = bb.NOT_SET self._delete_data_value = bb.NOT_SET @@ -10178,14 +9494,10 @@ def __init__(self, delete_data=None, session_info=None, display_name=None): delete_data = bb.Attribute("delete_data") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeviceUnlinkDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DeviceUnlinkDetails, self)._process_custom_annotations(annotation_type, field_path, processor) DeviceUnlinkDetails_validator = bv.Struct(DeviceUnlinkDetails) - class DeviceUnlinkPolicy(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -10193,7 +9505,7 @@ class DeviceUnlinkPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition keep = None # Attribute is overwritten below the class definition @@ -10207,7 +9519,7 @@ def is_keep(self): :rtype: bool """ - return self._tag == "keep" + return self._tag == 'keep' def is_remove(self): """ @@ -10215,7 +9527,7 @@ def is_remove(self): :rtype: bool """ - return self._tag == "remove" + return self._tag == 'remove' def is_other(self): """ @@ -10223,25 +9535,23 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeviceUnlinkPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DeviceUnlinkPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) DeviceUnlinkPolicy_validator = bv.Union(DeviceUnlinkPolicy) - class DeviceUnlinkType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -10250,20 +9560,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeviceUnlinkType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DeviceUnlinkType, self)._process_custom_annotations(annotation_type, field_path, processor) DeviceUnlinkType_validator = bv.Struct(DeviceUnlinkType) - class DirectoryRestrictionsAddMembersDetails(bb.Struct): """ Added members to directory restrictions list. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -10271,22 +9578,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DirectoryRestrictionsAddMembersDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DirectoryRestrictionsAddMembersDetails, self)._process_custom_annotations(annotation_type, field_path, processor) DirectoryRestrictionsAddMembersDetails_validator = bv.Struct(DirectoryRestrictionsAddMembersDetails) - class DirectoryRestrictionsAddMembersType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -10295,20 +9600,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DirectoryRestrictionsAddMembersType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DirectoryRestrictionsAddMembersType, self)._process_custom_annotations(annotation_type, field_path, processor) DirectoryRestrictionsAddMembersType_validator = bv.Struct(DirectoryRestrictionsAddMembersType) - class DirectoryRestrictionsRemoveMembersDetails(bb.Struct): """ Removed members from directory restrictions list. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -10316,24 +9618,20 @@ 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 - ) - - -DirectoryRestrictionsRemoveMembersDetails_validator = bv.Struct( - DirectoryRestrictionsRemoveMembersDetails -) + super(DirectoryRestrictionsRemoveMembersDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +DirectoryRestrictionsRemoveMembersDetails_validator = bv.Struct(DirectoryRestrictionsRemoveMembersDetails) class DirectoryRestrictionsRemoveMembersType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -10342,20 +9640,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DirectoryRestrictionsRemoveMembersType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DirectoryRestrictionsRemoveMembersType, self)._process_custom_annotations(annotation_type, field_path, processor) DirectoryRestrictionsRemoveMembersType_validator = bv.Struct(DirectoryRestrictionsRemoveMembersType) - class DisabledDomainInvitesDetails(bb.Struct): """ Disabled domain invites. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -10363,22 +9658,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DisabledDomainInvitesDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DisabledDomainInvitesDetails, self)._process_custom_annotations(annotation_type, field_path, processor) DisabledDomainInvitesDetails_validator = bv.Struct(DisabledDomainInvitesDetails) - class DisabledDomainInvitesType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -10387,14 +9680,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DisabledDomainInvitesType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DisabledDomainInvitesType, self)._process_custom_annotations(annotation_type, field_path, processor) DisabledDomainInvitesType_validator = bv.Struct(DisabledDomainInvitesType) - class DispositionActionType(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -10402,7 +9691,7 @@ class DispositionActionType(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition automatic_delete = None # Attribute is overwritten below the class definition @@ -10416,7 +9705,7 @@ def is_automatic_delete(self): :rtype: bool """ - return self._tag == "automatic_delete" + return self._tag == 'automatic_delete' def is_automatic_permanently_delete(self): """ @@ -10424,7 +9713,7 @@ def is_automatic_permanently_delete(self): :rtype: bool """ - return self._tag == "automatic_permanently_delete" + return self._tag == 'automatic_permanently_delete' def is_other(self): """ @@ -10432,23 +9721,20 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DispositionActionType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DispositionActionType, self)._process_custom_annotations(annotation_type, field_path, processor) DispositionActionType_validator = bv.Union(DispositionActionType) - class DomainInvitesApproveRequestToJoinTeamDetails(bb.Struct): """ Approved user's request to join team. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -10456,24 +9742,20 @@ 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 - ) - - -DomainInvitesApproveRequestToJoinTeamDetails_validator = bv.Struct( - DomainInvitesApproveRequestToJoinTeamDetails -) + super(DomainInvitesApproveRequestToJoinTeamDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +DomainInvitesApproveRequestToJoinTeamDetails_validator = bv.Struct(DomainInvitesApproveRequestToJoinTeamDetails) class DomainInvitesApproveRequestToJoinTeamType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -10482,22 +9764,17 @@ def __init__(self, description=None): 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 - ) - - -DomainInvitesApproveRequestToJoinTeamType_validator = bv.Struct( - DomainInvitesApproveRequestToJoinTeamType -) + super(DomainInvitesApproveRequestToJoinTeamType, self)._process_custom_annotations(annotation_type, field_path, processor) +DomainInvitesApproveRequestToJoinTeamType_validator = bv.Struct(DomainInvitesApproveRequestToJoinTeamType) class DomainInvitesDeclineRequestToJoinTeamDetails(bb.Struct): """ Declined user's request to join team. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -10505,24 +9782,20 @@ 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 - ) - - -DomainInvitesDeclineRequestToJoinTeamDetails_validator = bv.Struct( - DomainInvitesDeclineRequestToJoinTeamDetails -) + super(DomainInvitesDeclineRequestToJoinTeamDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +DomainInvitesDeclineRequestToJoinTeamDetails_validator = bv.Struct(DomainInvitesDeclineRequestToJoinTeamDetails) class DomainInvitesDeclineRequestToJoinTeamType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -10531,15 +9804,9 @@ def __init__(self, description=None): 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 - ) - - -DomainInvitesDeclineRequestToJoinTeamType_validator = bv.Struct( - DomainInvitesDeclineRequestToJoinTeamType -) + super(DomainInvitesDeclineRequestToJoinTeamType, self)._process_custom_annotations(annotation_type, field_path, processor) +DomainInvitesDeclineRequestToJoinTeamType_validator = bv.Struct(DomainInvitesDeclineRequestToJoinTeamType) class DomainInvitesEmailExistingUsersDetails(bb.Struct): """ @@ -10552,13 +9819,15 @@ class DomainInvitesEmailExistingUsersDetails(bb.Struct): """ __slots__ = [ - "_domain_name_value", - "_num_recipients_value", + '_domain_name_value', + '_num_recipients_value', ] _has_required_fields = True - def __init__(self, domain_name=None, num_recipients=None): + def __init__(self, + domain_name=None, + num_recipients=None): self._domain_name_value = bb.NOT_SET self._num_recipients_value = bb.NOT_SET if domain_name is not None: @@ -10573,22 +9842,20 @@ def __init__(self, domain_name=None, num_recipients=None): num_recipients = bb.Attribute("num_recipients") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DomainInvitesEmailExistingUsersDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DomainInvitesEmailExistingUsersDetails, self)._process_custom_annotations(annotation_type, field_path, processor) DomainInvitesEmailExistingUsersDetails_validator = bv.Struct(DomainInvitesEmailExistingUsersDetails) - class DomainInvitesEmailExistingUsersType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -10597,20 +9864,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DomainInvitesEmailExistingUsersType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DomainInvitesEmailExistingUsersType, self)._process_custom_annotations(annotation_type, field_path, processor) DomainInvitesEmailExistingUsersType_validator = bv.Struct(DomainInvitesEmailExistingUsersType) - class DomainInvitesRequestToJoinTeamDetails(bb.Struct): """ Requested to join team. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -10618,22 +9882,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DomainInvitesRequestToJoinTeamDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DomainInvitesRequestToJoinTeamDetails, self)._process_custom_annotations(annotation_type, field_path, processor) DomainInvitesRequestToJoinTeamDetails_validator = bv.Struct(DomainInvitesRequestToJoinTeamDetails) - class DomainInvitesRequestToJoinTeamType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -10642,20 +9904,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DomainInvitesRequestToJoinTeamType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DomainInvitesRequestToJoinTeamType, self)._process_custom_annotations(annotation_type, field_path, processor) DomainInvitesRequestToJoinTeamType_validator = bv.Struct(DomainInvitesRequestToJoinTeamType) - class DomainInvitesSetInviteNewUserPrefToNoDetails(bb.Struct): """ Disabled "Automatically invite new users". """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -10663,24 +9922,20 @@ 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 - ) - - -DomainInvitesSetInviteNewUserPrefToNoDetails_validator = bv.Struct( - DomainInvitesSetInviteNewUserPrefToNoDetails -) + super(DomainInvitesSetInviteNewUserPrefToNoDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +DomainInvitesSetInviteNewUserPrefToNoDetails_validator = bv.Struct(DomainInvitesSetInviteNewUserPrefToNoDetails) class DomainInvitesSetInviteNewUserPrefToNoType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -10689,22 +9944,17 @@ def __init__(self, description=None): 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 - ) - - -DomainInvitesSetInviteNewUserPrefToNoType_validator = bv.Struct( - DomainInvitesSetInviteNewUserPrefToNoType -) + super(DomainInvitesSetInviteNewUserPrefToNoType, self)._process_custom_annotations(annotation_type, field_path, processor) +DomainInvitesSetInviteNewUserPrefToNoType_validator = bv.Struct(DomainInvitesSetInviteNewUserPrefToNoType) class DomainInvitesSetInviteNewUserPrefToYesDetails(bb.Struct): """ Enabled "Automatically invite new users". """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -10712,24 +9962,20 @@ 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 - ) - - -DomainInvitesSetInviteNewUserPrefToYesDetails_validator = bv.Struct( - DomainInvitesSetInviteNewUserPrefToYesDetails -) + super(DomainInvitesSetInviteNewUserPrefToYesDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +DomainInvitesSetInviteNewUserPrefToYesDetails_validator = bv.Struct(DomainInvitesSetInviteNewUserPrefToYesDetails) class DomainInvitesSetInviteNewUserPrefToYesType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -10738,15 +9984,9 @@ def __init__(self, description=None): 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 - ) - - -DomainInvitesSetInviteNewUserPrefToYesType_validator = bv.Struct( - DomainInvitesSetInviteNewUserPrefToYesType -) + super(DomainInvitesSetInviteNewUserPrefToYesType, self)._process_custom_annotations(annotation_type, field_path, processor) +DomainInvitesSetInviteNewUserPrefToYesType_validator = bv.Struct(DomainInvitesSetInviteNewUserPrefToYesType) class DomainVerificationAddDomainFailDetails(bb.Struct): """ @@ -10760,13 +10000,15 @@ class DomainVerificationAddDomainFailDetails(bb.Struct): """ __slots__ = [ - "_domain_name_value", - "_verification_method_value", + '_domain_name_value', + '_verification_method_value', ] _has_required_fields = True - def __init__(self, domain_name=None, verification_method=None): + def __init__(self, + domain_name=None, + verification_method=None): self._domain_name_value = bb.NOT_SET self._verification_method_value = bb.NOT_SET if domain_name is not None: @@ -10781,22 +10023,20 @@ def __init__(self, domain_name=None, verification_method=None): verification_method = bb.Attribute("verification_method", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DomainVerificationAddDomainFailDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DomainVerificationAddDomainFailDetails, self)._process_custom_annotations(annotation_type, field_path, processor) DomainVerificationAddDomainFailDetails_validator = bv.Struct(DomainVerificationAddDomainFailDetails) - class DomainVerificationAddDomainFailType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -10805,14 +10045,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DomainVerificationAddDomainFailType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DomainVerificationAddDomainFailType, self)._process_custom_annotations(annotation_type, field_path, processor) DomainVerificationAddDomainFailType_validator = bv.Struct(DomainVerificationAddDomainFailType) - class DomainVerificationAddDomainSuccessDetails(bb.Struct): """ Verified team domain. @@ -10825,13 +10061,15 @@ class DomainVerificationAddDomainSuccessDetails(bb.Struct): """ __slots__ = [ - "_domain_names_value", - "_verification_method_value", + '_domain_names_value', + '_verification_method_value', ] _has_required_fields = True - def __init__(self, domain_names=None, verification_method=None): + def __init__(self, + domain_names=None, + verification_method=None): self._domain_names_value = bb.NOT_SET self._verification_method_value = bb.NOT_SET if domain_names is not None: @@ -10846,24 +10084,20 @@ def __init__(self, domain_names=None, verification_method=None): 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 - ) - - -DomainVerificationAddDomainSuccessDetails_validator = bv.Struct( - DomainVerificationAddDomainSuccessDetails -) + super(DomainVerificationAddDomainSuccessDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +DomainVerificationAddDomainSuccessDetails_validator = bv.Struct(DomainVerificationAddDomainSuccessDetails) class DomainVerificationAddDomainSuccessType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -10872,14 +10106,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DomainVerificationAddDomainSuccessType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DomainVerificationAddDomainSuccessType, self)._process_custom_annotations(annotation_type, field_path, processor) DomainVerificationAddDomainSuccessType_validator = bv.Struct(DomainVerificationAddDomainSuccessType) - class DomainVerificationRemoveDomainDetails(bb.Struct): """ Removed domain from list of verified team domains. @@ -10889,12 +10119,13 @@ class DomainVerificationRemoveDomainDetails(bb.Struct): """ __slots__ = [ - "_domain_names_value", + '_domain_names_value', ] _has_required_fields = True - def __init__(self, domain_names=None): + def __init__(self, + domain_names=None): self._domain_names_value = bb.NOT_SET if domain_names is not None: self.domain_names = domain_names @@ -10903,22 +10134,20 @@ def __init__(self, domain_names=None): domain_names = bb.Attribute("domain_names") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DomainVerificationRemoveDomainDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DomainVerificationRemoveDomainDetails, self)._process_custom_annotations(annotation_type, field_path, processor) DomainVerificationRemoveDomainDetails_validator = bv.Struct(DomainVerificationRemoveDomainDetails) - class DomainVerificationRemoveDomainType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -10927,14 +10156,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DomainVerificationRemoveDomainType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DomainVerificationRemoveDomainType, self)._process_custom_annotations(annotation_type, field_path, processor) DomainVerificationRemoveDomainType_validator = bv.Struct(DomainVerificationRemoveDomainType) - class DownloadPolicyType(bb.Union): """ Shared content downloads policy @@ -10944,7 +10169,7 @@ class DownloadPolicyType(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition allow = None # Attribute is overwritten below the class definition @@ -10958,7 +10183,7 @@ def is_allow(self): :rtype: bool """ - return self._tag == "allow" + return self._tag == 'allow' def is_disallow(self): """ @@ -10966,7 +10191,7 @@ def is_disallow(self): :rtype: bool """ - return self._tag == "disallow" + return self._tag == 'disallow' def is_other(self): """ @@ -10974,17 +10199,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DownloadPolicyType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DownloadPolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) DownloadPolicyType_validator = bv.Union(DownloadPolicyType) - class DropboxPasswordsExportedDetails(bb.Struct): """ Exported passwords. @@ -10994,12 +10215,13 @@ class DropboxPasswordsExportedDetails(bb.Struct): """ __slots__ = [ - "_platform_value", + '_platform_value', ] _has_required_fields = True - def __init__(self, platform=None): + def __init__(self, + platform=None): self._platform_value = bb.NOT_SET if platform is not None: self.platform = platform @@ -11008,22 +10230,20 @@ def __init__(self, platform=None): platform = bb.Attribute("platform") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DropboxPasswordsExportedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DropboxPasswordsExportedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) DropboxPasswordsExportedDetails_validator = bv.Struct(DropboxPasswordsExportedDetails) - class DropboxPasswordsExportedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -11032,14 +10252,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DropboxPasswordsExportedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DropboxPasswordsExportedType, self)._process_custom_annotations(annotation_type, field_path, processor) DropboxPasswordsExportedType_validator = bv.Struct(DropboxPasswordsExportedType) - class DropboxPasswordsNewDeviceEnrolledDetails(bb.Struct): """ Enrolled new Dropbox Passwords device. @@ -11051,13 +10267,15 @@ class DropboxPasswordsNewDeviceEnrolledDetails(bb.Struct): """ __slots__ = [ - "_is_first_device_value", - "_platform_value", + '_is_first_device_value', + '_platform_value', ] _has_required_fields = True - def __init__(self, is_first_device=None, platform=None): + def __init__(self, + is_first_device=None, + platform=None): self._is_first_device_value = bb.NOT_SET self._platform_value = bb.NOT_SET if is_first_device is not None: @@ -11072,24 +10290,20 @@ def __init__(self, is_first_device=None, platform=None): 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 - ) - - -DropboxPasswordsNewDeviceEnrolledDetails_validator = bv.Struct( - DropboxPasswordsNewDeviceEnrolledDetails -) + super(DropboxPasswordsNewDeviceEnrolledDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +DropboxPasswordsNewDeviceEnrolledDetails_validator = bv.Struct(DropboxPasswordsNewDeviceEnrolledDetails) class DropboxPasswordsNewDeviceEnrolledType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -11098,14 +10312,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DropboxPasswordsNewDeviceEnrolledType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DropboxPasswordsNewDeviceEnrolledType, self)._process_custom_annotations(annotation_type, field_path, processor) DropboxPasswordsNewDeviceEnrolledType_validator = bv.Struct(DropboxPasswordsNewDeviceEnrolledType) - class DropboxPasswordsPolicy(bb.Union): """ Policy for deciding whether team users can use Dropbox Passwords @@ -11115,7 +10325,7 @@ class DropboxPasswordsPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition default = None # Attribute is overwritten below the class definition @@ -11131,7 +10341,7 @@ def is_default(self): :rtype: bool """ - return self._tag == "default" + return self._tag == 'default' def is_disabled(self): """ @@ -11139,7 +10349,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == "disabled" + return self._tag == 'disabled' def is_enabled(self): """ @@ -11147,7 +10357,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == "enabled" + return self._tag == 'enabled' def is_other(self): """ @@ -11155,17 +10365,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DropboxPasswordsPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DropboxPasswordsPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) DropboxPasswordsPolicy_validator = bv.Union(DropboxPasswordsPolicy) - class DropboxPasswordsPolicyChangedDetails(bb.Struct): """ Changed Dropbox Passwords policy for team. @@ -11177,13 +10383,15 @@ class DropboxPasswordsPolicyChangedDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -11198,22 +10406,20 @@ def __init__(self, new_value=None, previous_value=None): previous_value = bb.Attribute("previous_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DropboxPasswordsPolicyChangedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DropboxPasswordsPolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) DropboxPasswordsPolicyChangedDetails_validator = bv.Struct(DropboxPasswordsPolicyChangedDetails) - class DropboxPasswordsPolicyChangedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -11222,14 +10428,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DropboxPasswordsPolicyChangedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DropboxPasswordsPolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) DropboxPasswordsPolicyChangedType_validator = bv.Struct(DropboxPasswordsPolicyChangedType) - class DurationLogInfo(bb.Struct): """ Represents a time duration: unit and amount @@ -11241,13 +10443,15 @@ class DurationLogInfo(bb.Struct): """ __slots__ = [ - "_unit_value", - "_amount_value", + '_unit_value', + '_amount_value', ] _has_required_fields = True - def __init__(self, unit=None, amount=None): + def __init__(self, + unit=None, + amount=None): self._unit_value = bb.NOT_SET self._amount_value = bb.NOT_SET if unit is not None: @@ -11262,14 +10466,10 @@ def __init__(self, unit=None, amount=None): amount = bb.Attribute("amount") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DurationLogInfo, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DurationLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) DurationLogInfo_validator = bv.Struct(DurationLogInfo) - class EmailIngestPolicy(bb.Union): """ Policy for deciding whether a team can use Email to Dropbox feature @@ -11279,7 +10479,7 @@ class EmailIngestPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -11293,7 +10493,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == "disabled" + return self._tag == 'disabled' def is_enabled(self): """ @@ -11301,7 +10501,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == "enabled" + return self._tag == 'enabled' def is_other(self): """ @@ -11309,17 +10509,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EmailIngestPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(EmailIngestPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) EmailIngestPolicy_validator = bv.Union(EmailIngestPolicy) - class EmailIngestPolicyChangedDetails(bb.Struct): """ Changed email to Dropbox policy for team. @@ -11331,13 +10527,15 @@ class EmailIngestPolicyChangedDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -11352,22 +10550,20 @@ def __init__(self, new_value=None, previous_value=None): previous_value = bb.Attribute("previous_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EmailIngestPolicyChangedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(EmailIngestPolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) EmailIngestPolicyChangedDetails_validator = bv.Struct(EmailIngestPolicyChangedDetails) - class EmailIngestPolicyChangedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -11376,14 +10572,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EmailIngestPolicyChangedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(EmailIngestPolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) EmailIngestPolicyChangedType_validator = bv.Struct(EmailIngestPolicyChangedType) - class EmailIngestReceiveFileDetails(bb.Struct): """ Received files via Email to Dropbox. @@ -11401,23 +10593,21 @@ class EmailIngestReceiveFileDetails(bb.Struct): """ __slots__ = [ - "_inbox_name_value", - "_attachment_names_value", - "_subject_value", - "_from_name_value", - "_from_email_value", + '_inbox_name_value', + '_attachment_names_value', + '_subject_value', + '_from_name_value', + '_from_email_value', ] _has_required_fields = True - def __init__( - self, - inbox_name=None, - attachment_names=None, - subject=None, - from_name=None, - from_email=None, - ): + def __init__(self, + inbox_name=None, + attachment_names=None, + subject=None, + from_name=None, + from_email=None): self._inbox_name_value = bb.NOT_SET self._attachment_names_value = bb.NOT_SET self._subject_value = bb.NOT_SET @@ -11450,22 +10640,20 @@ def __init__( from_email = bb.Attribute("from_email", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EmailIngestReceiveFileDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(EmailIngestReceiveFileDetails, self)._process_custom_annotations(annotation_type, field_path, processor) EmailIngestReceiveFileDetails_validator = bv.Struct(EmailIngestReceiveFileDetails) - class EmailIngestReceiveFileType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -11474,20 +10662,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EmailIngestReceiveFileType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(EmailIngestReceiveFileType, self)._process_custom_annotations(annotation_type, field_path, processor) EmailIngestReceiveFileType_validator = bv.Struct(EmailIngestReceiveFileType) - class EmmAddExceptionDetails(bb.Struct): """ Added members to EMM exception list. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -11495,22 +10680,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EmmAddExceptionDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(EmmAddExceptionDetails, self)._process_custom_annotations(annotation_type, field_path, processor) EmmAddExceptionDetails_validator = bv.Struct(EmmAddExceptionDetails) - class EmmAddExceptionType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -11519,14 +10702,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EmmAddExceptionType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(EmmAddExceptionType, self)._process_custom_annotations(annotation_type, field_path, processor) EmmAddExceptionType_validator = bv.Struct(EmmAddExceptionType) - class EmmChangePolicyDetails(bb.Struct): """ Enabled/disabled enterprise mobility management for members. @@ -11539,13 +10718,15 @@ class EmmChangePolicyDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -11560,22 +10741,20 @@ def __init__(self, new_value=None, previous_value=None): previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EmmChangePolicyDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(EmmChangePolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) EmmChangePolicyDetails_validator = bv.Struct(EmmChangePolicyDetails) - class EmmChangePolicyType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -11584,20 +10763,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EmmChangePolicyType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(EmmChangePolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) EmmChangePolicyType_validator = bv.Struct(EmmChangePolicyType) - class EmmCreateExceptionsReportDetails(bb.Struct): """ Created EMM-excluded users report. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -11605,22 +10781,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EmmCreateExceptionsReportDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(EmmCreateExceptionsReportDetails, self)._process_custom_annotations(annotation_type, field_path, processor) EmmCreateExceptionsReportDetails_validator = bv.Struct(EmmCreateExceptionsReportDetails) - class EmmCreateExceptionsReportType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -11629,20 +10803,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EmmCreateExceptionsReportType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(EmmCreateExceptionsReportType, self)._process_custom_annotations(annotation_type, field_path, processor) EmmCreateExceptionsReportType_validator = bv.Struct(EmmCreateExceptionsReportType) - class EmmCreateUsageReportDetails(bb.Struct): """ Created EMM mobile app usage report. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -11650,22 +10821,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EmmCreateUsageReportDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(EmmCreateUsageReportDetails, self)._process_custom_annotations(annotation_type, field_path, processor) EmmCreateUsageReportDetails_validator = bv.Struct(EmmCreateUsageReportDetails) - class EmmCreateUsageReportType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -11674,14 +10843,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EmmCreateUsageReportType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(EmmCreateUsageReportType, self)._process_custom_annotations(annotation_type, field_path, processor) EmmCreateUsageReportType_validator = bv.Struct(EmmCreateUsageReportType) - class EmmErrorDetails(bb.Struct): """ Failed to sign in via EMM. @@ -11691,12 +10856,13 @@ class EmmErrorDetails(bb.Struct): """ __slots__ = [ - "_error_details_value", + '_error_details_value', ] _has_required_fields = True - def __init__(self, error_details=None): + def __init__(self, + error_details=None): self._error_details_value = bb.NOT_SET if error_details is not None: self.error_details = error_details @@ -11705,22 +10871,20 @@ def __init__(self, error_details=None): error_details = bb.Attribute("error_details", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EmmErrorDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(EmmErrorDetails, self)._process_custom_annotations(annotation_type, field_path, processor) EmmErrorDetails_validator = bv.Struct(EmmErrorDetails) - class EmmErrorType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -11729,20 +10893,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EmmErrorType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(EmmErrorType, self)._process_custom_annotations(annotation_type, field_path, processor) EmmErrorType_validator = bv.Struct(EmmErrorType) - class EmmRefreshAuthTokenDetails(bb.Struct): """ Refreshed auth token used for setting up EMM. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -11750,22 +10911,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EmmRefreshAuthTokenDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(EmmRefreshAuthTokenDetails, self)._process_custom_annotations(annotation_type, field_path, processor) EmmRefreshAuthTokenDetails_validator = bv.Struct(EmmRefreshAuthTokenDetails) - class EmmRefreshAuthTokenType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -11774,20 +10933,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EmmRefreshAuthTokenType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(EmmRefreshAuthTokenType, self)._process_custom_annotations(annotation_type, field_path, processor) EmmRefreshAuthTokenType_validator = bv.Struct(EmmRefreshAuthTokenType) - class EmmRemoveExceptionDetails(bb.Struct): """ Removed members from EMM exception list. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -11795,22 +10951,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EmmRemoveExceptionDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(EmmRemoveExceptionDetails, self)._process_custom_annotations(annotation_type, field_path, processor) EmmRemoveExceptionDetails_validator = bv.Struct(EmmRemoveExceptionDetails) - class EmmRemoveExceptionType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -11819,20 +10973,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EmmRemoveExceptionType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(EmmRemoveExceptionType, self)._process_custom_annotations(annotation_type, field_path, processor) EmmRemoveExceptionType_validator = bv.Struct(EmmRemoveExceptionType) - class EnabledDomainInvitesDetails(bb.Struct): """ Enabled domain invites. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -11840,22 +10991,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EnabledDomainInvitesDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(EnabledDomainInvitesDetails, self)._process_custom_annotations(annotation_type, field_path, processor) EnabledDomainInvitesDetails_validator = bv.Struct(EnabledDomainInvitesDetails) - class EnabledDomainInvitesType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -11864,14 +11013,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EnabledDomainInvitesType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(EnabledDomainInvitesType, self)._process_custom_annotations(annotation_type, field_path, processor) EnabledDomainInvitesType_validator = bv.Struct(EnabledDomainInvitesType) - class EncryptedFolderCancelTeamKeyRotationDetails(bb.Struct): """ Canceled team key rotation. @@ -11881,12 +11026,13 @@ class EncryptedFolderCancelTeamKeyRotationDetails(bb.Struct): """ __slots__ = [ - "_team_key_id_value", + '_team_key_id_value', ] _has_required_fields = True - def __init__(self, team_key_id=None): + def __init__(self, + team_key_id=None): self._team_key_id_value = bb.NOT_SET if team_key_id is not None: self.team_key_id = team_key_id @@ -11895,24 +11041,20 @@ def __init__(self, team_key_id=None): team_key_id = bb.Attribute("team_key_id") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EncryptedFolderCancelTeamKeyRotationDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - - -EncryptedFolderCancelTeamKeyRotationDetails_validator = bv.Struct( - EncryptedFolderCancelTeamKeyRotationDetails -) + super(EncryptedFolderCancelTeamKeyRotationDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +EncryptedFolderCancelTeamKeyRotationDetails_validator = bv.Struct(EncryptedFolderCancelTeamKeyRotationDetails) class EncryptedFolderCancelTeamKeyRotationType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -11921,15 +11063,9 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EncryptedFolderCancelTeamKeyRotationType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - - -EncryptedFolderCancelTeamKeyRotationType_validator = bv.Struct( - EncryptedFolderCancelTeamKeyRotationType -) + super(EncryptedFolderCancelTeamKeyRotationType, self)._process_custom_annotations(annotation_type, field_path, processor) +EncryptedFolderCancelTeamKeyRotationType_validator = bv.Struct(EncryptedFolderCancelTeamKeyRotationType) class EncryptedFolderEnrollBackupKeyDetails(bb.Struct): """ @@ -11940,12 +11076,13 @@ class EncryptedFolderEnrollBackupKeyDetails(bb.Struct): """ __slots__ = [ - "_backup_key_id_value", + '_backup_key_id_value', ] _has_required_fields = True - def __init__(self, backup_key_id=None): + def __init__(self, + backup_key_id=None): self._backup_key_id_value = bb.NOT_SET if backup_key_id is not None: self.backup_key_id = backup_key_id @@ -11954,22 +11091,20 @@ def __init__(self, backup_key_id=None): backup_key_id = bb.Attribute("backup_key_id") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EncryptedFolderEnrollBackupKeyDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(EncryptedFolderEnrollBackupKeyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) EncryptedFolderEnrollBackupKeyDetails_validator = bv.Struct(EncryptedFolderEnrollBackupKeyDetails) - class EncryptedFolderEnrollBackupKeyType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -11978,14 +11113,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EncryptedFolderEnrollBackupKeyType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(EncryptedFolderEnrollBackupKeyType, self)._process_custom_annotations(annotation_type, field_path, processor) EncryptedFolderEnrollBackupKeyType_validator = bv.Struct(EncryptedFolderEnrollBackupKeyType) - class EncryptedFolderEnrollClientDetails(bb.Struct): """ Enrolled device. @@ -11995,12 +11126,13 @@ class EncryptedFolderEnrollClientDetails(bb.Struct): """ __slots__ = [ - "_client_key_id_value", + '_client_key_id_value', ] _has_required_fields = True - def __init__(self, client_key_id=None): + def __init__(self, + client_key_id=None): self._client_key_id_value = bb.NOT_SET if client_key_id is not None: self.client_key_id = client_key_id @@ -12009,22 +11141,20 @@ def __init__(self, client_key_id=None): client_key_id = bb.Attribute("client_key_id") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EncryptedFolderEnrollClientDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(EncryptedFolderEnrollClientDetails, self)._process_custom_annotations(annotation_type, field_path, processor) EncryptedFolderEnrollClientDetails_validator = bv.Struct(EncryptedFolderEnrollClientDetails) - class EncryptedFolderEnrollClientType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -12033,20 +11163,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EncryptedFolderEnrollClientType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(EncryptedFolderEnrollClientType, self)._process_custom_annotations(annotation_type, field_path, processor) EncryptedFolderEnrollClientType_validator = bv.Struct(EncryptedFolderEnrollClientType) - class EncryptedFolderEnrollTeamDetails(bb.Struct): """ Activated team folder encryption. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -12054,22 +11181,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EncryptedFolderEnrollTeamDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(EncryptedFolderEnrollTeamDetails, self)._process_custom_annotations(annotation_type, field_path, processor) EncryptedFolderEnrollTeamDetails_validator = bv.Struct(EncryptedFolderEnrollTeamDetails) - class EncryptedFolderEnrollTeamType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -12078,20 +11203,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EncryptedFolderEnrollTeamType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(EncryptedFolderEnrollTeamType, self)._process_custom_annotations(annotation_type, field_path, processor) EncryptedFolderEnrollTeamType_validator = bv.Struct(EncryptedFolderEnrollTeamType) - class EncryptedFolderFinishTeamUnenrollmentDetails(bb.Struct): """ Deactivated team folder encryption. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -12099,24 +11221,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EncryptedFolderFinishTeamUnenrollmentDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - - -EncryptedFolderFinishTeamUnenrollmentDetails_validator = bv.Struct( - EncryptedFolderFinishTeamUnenrollmentDetails -) + super(EncryptedFolderFinishTeamUnenrollmentDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +EncryptedFolderFinishTeamUnenrollmentDetails_validator = bv.Struct(EncryptedFolderFinishTeamUnenrollmentDetails) class EncryptedFolderFinishTeamUnenrollmentType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -12125,15 +11243,9 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EncryptedFolderFinishTeamUnenrollmentType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - - -EncryptedFolderFinishTeamUnenrollmentType_validator = bv.Struct( - EncryptedFolderFinishTeamUnenrollmentType -) + super(EncryptedFolderFinishTeamUnenrollmentType, self)._process_custom_annotations(annotation_type, field_path, processor) +EncryptedFolderFinishTeamUnenrollmentType_validator = bv.Struct(EncryptedFolderFinishTeamUnenrollmentType) class EncryptedFolderInitTeamKeyRotationDetails(bb.Struct): """ @@ -12144,12 +11256,13 @@ class EncryptedFolderInitTeamKeyRotationDetails(bb.Struct): """ __slots__ = [ - "_team_key_id_value", + '_team_key_id_value', ] _has_required_fields = True - def __init__(self, team_key_id=None): + def __init__(self, + team_key_id=None): self._team_key_id_value = bb.NOT_SET if team_key_id is not None: self.team_key_id = team_key_id @@ -12158,24 +11271,20 @@ def __init__(self, team_key_id=None): team_key_id = bb.Attribute("team_key_id") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EncryptedFolderInitTeamKeyRotationDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - - -EncryptedFolderInitTeamKeyRotationDetails_validator = bv.Struct( - EncryptedFolderInitTeamKeyRotationDetails -) + super(EncryptedFolderInitTeamKeyRotationDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +EncryptedFolderInitTeamKeyRotationDetails_validator = bv.Struct(EncryptedFolderInitTeamKeyRotationDetails) class EncryptedFolderInitTeamKeyRotationType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -12184,20 +11293,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EncryptedFolderInitTeamKeyRotationType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(EncryptedFolderInitTeamKeyRotationType, self)._process_custom_annotations(annotation_type, field_path, processor) EncryptedFolderInitTeamKeyRotationType_validator = bv.Struct(EncryptedFolderInitTeamKeyRotationType) - class EncryptedFolderInitTeamUnenrollmentDetails(bb.Struct): """ Initiated deactivation of team folder encryption. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -12205,24 +11311,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EncryptedFolderInitTeamUnenrollmentDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - - -EncryptedFolderInitTeamUnenrollmentDetails_validator = bv.Struct( - EncryptedFolderInitTeamUnenrollmentDetails -) + super(EncryptedFolderInitTeamUnenrollmentDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +EncryptedFolderInitTeamUnenrollmentDetails_validator = bv.Struct(EncryptedFolderInitTeamUnenrollmentDetails) class EncryptedFolderInitTeamUnenrollmentType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -12231,15 +11333,9 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EncryptedFolderInitTeamUnenrollmentType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - - -EncryptedFolderInitTeamUnenrollmentType_validator = bv.Struct( - EncryptedFolderInitTeamUnenrollmentType -) + super(EncryptedFolderInitTeamUnenrollmentType, self)._process_custom_annotations(annotation_type, field_path, processor) +EncryptedFolderInitTeamUnenrollmentType_validator = bv.Struct(EncryptedFolderInitTeamUnenrollmentType) class EncryptedFolderRemoveBackupKeyDetails(bb.Struct): """ @@ -12250,12 +11346,13 @@ class EncryptedFolderRemoveBackupKeyDetails(bb.Struct): """ __slots__ = [ - "_backup_key_id_value", + '_backup_key_id_value', ] _has_required_fields = True - def __init__(self, backup_key_id=None): + def __init__(self, + backup_key_id=None): self._backup_key_id_value = bb.NOT_SET if backup_key_id is not None: self.backup_key_id = backup_key_id @@ -12264,22 +11361,20 @@ def __init__(self, backup_key_id=None): backup_key_id = bb.Attribute("backup_key_id") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EncryptedFolderRemoveBackupKeyDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(EncryptedFolderRemoveBackupKeyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) EncryptedFolderRemoveBackupKeyDetails_validator = bv.Struct(EncryptedFolderRemoveBackupKeyDetails) - class EncryptedFolderRemoveBackupKeyType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -12288,14 +11383,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EncryptedFolderRemoveBackupKeyType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(EncryptedFolderRemoveBackupKeyType, self)._process_custom_annotations(annotation_type, field_path, processor) EncryptedFolderRemoveBackupKeyType_validator = bv.Struct(EncryptedFolderRemoveBackupKeyType) - class EncryptedFolderRotateTeamKeyDetails(bb.Struct): """ Rotated team key. @@ -12305,12 +11396,13 @@ class EncryptedFolderRotateTeamKeyDetails(bb.Struct): """ __slots__ = [ - "_team_key_id_value", + '_team_key_id_value', ] _has_required_fields = True - def __init__(self, team_key_id=None): + def __init__(self, + team_key_id=None): self._team_key_id_value = bb.NOT_SET if team_key_id is not None: self.team_key_id = team_key_id @@ -12319,22 +11411,20 @@ def __init__(self, team_key_id=None): team_key_id = bb.Attribute("team_key_id") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EncryptedFolderRotateTeamKeyDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(EncryptedFolderRotateTeamKeyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) EncryptedFolderRotateTeamKeyDetails_validator = bv.Struct(EncryptedFolderRotateTeamKeyDetails) - class EncryptedFolderRotateTeamKeyType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -12343,14 +11433,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EncryptedFolderRotateTeamKeyType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(EncryptedFolderRotateTeamKeyType, self)._process_custom_annotations(annotation_type, field_path, processor) EncryptedFolderRotateTeamKeyType_validator = bv.Struct(EncryptedFolderRotateTeamKeyType) - class EncryptedFolderUnenrollClientDetails(bb.Struct): """ Unenrolled device. @@ -12360,12 +11446,13 @@ class EncryptedFolderUnenrollClientDetails(bb.Struct): """ __slots__ = [ - "_client_key_id_value", + '_client_key_id_value', ] _has_required_fields = True - def __init__(self, client_key_id=None): + def __init__(self, + client_key_id=None): self._client_key_id_value = bb.NOT_SET if client_key_id is not None: self.client_key_id = client_key_id @@ -12374,22 +11461,20 @@ def __init__(self, client_key_id=None): client_key_id = bb.Attribute("client_key_id") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EncryptedFolderUnenrollClientDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(EncryptedFolderUnenrollClientDetails, self)._process_custom_annotations(annotation_type, field_path, processor) EncryptedFolderUnenrollClientDetails_validator = bv.Struct(EncryptedFolderUnenrollClientDetails) - class EncryptedFolderUnenrollClientType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -12398,14 +11483,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EncryptedFolderUnenrollClientType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(EncryptedFolderUnenrollClientType, self)._process_custom_annotations(annotation_type, field_path, processor) EncryptedFolderUnenrollClientType_validator = bv.Struct(EncryptedFolderUnenrollClientType) - class EndedEnterpriseAdminSessionDeprecatedDetails(bb.Struct): """ Ended enterprise admin session. @@ -12415,12 +11496,13 @@ class EndedEnterpriseAdminSessionDeprecatedDetails(bb.Struct): """ __slots__ = [ - "_federation_extra_details_value", + '_federation_extra_details_value', ] _has_required_fields = True - def __init__(self, federation_extra_details=None): + def __init__(self, + federation_extra_details=None): self._federation_extra_details_value = bb.NOT_SET if federation_extra_details is not None: self.federation_extra_details = federation_extra_details @@ -12429,24 +11511,20 @@ def __init__(self, federation_extra_details=None): 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 - ) - - -EndedEnterpriseAdminSessionDeprecatedDetails_validator = bv.Struct( - EndedEnterpriseAdminSessionDeprecatedDetails -) + super(EndedEnterpriseAdminSessionDeprecatedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +EndedEnterpriseAdminSessionDeprecatedDetails_validator = bv.Struct(EndedEnterpriseAdminSessionDeprecatedDetails) class EndedEnterpriseAdminSessionDeprecatedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -12455,22 +11533,17 @@ def __init__(self, description=None): 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 - ) - - -EndedEnterpriseAdminSessionDeprecatedType_validator = bv.Struct( - EndedEnterpriseAdminSessionDeprecatedType -) + super(EndedEnterpriseAdminSessionDeprecatedType, self)._process_custom_annotations(annotation_type, field_path, processor) +EndedEnterpriseAdminSessionDeprecatedType_validator = bv.Struct(EndedEnterpriseAdminSessionDeprecatedType) class EndedEnterpriseAdminSessionDetails(bb.Struct): """ Ended enterprise admin session. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -12478,22 +11551,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EndedEnterpriseAdminSessionDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(EndedEnterpriseAdminSessionDetails, self)._process_custom_annotations(annotation_type, field_path, processor) EndedEnterpriseAdminSessionDetails_validator = bv.Struct(EndedEnterpriseAdminSessionDetails) - class EndedEnterpriseAdminSessionType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -12502,14 +11573,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EndedEnterpriseAdminSessionType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(EndedEnterpriseAdminSessionType, self)._process_custom_annotations(annotation_type, field_path, processor) EndedEnterpriseAdminSessionType_validator = bv.Struct(EndedEnterpriseAdminSessionType) - class EnforceLinkPasswordPolicy(bb.Union): """ Policy for deciding whether password must be enforced when an externally @@ -12520,7 +11587,7 @@ class EnforceLinkPasswordPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition optional = None # Attribute is overwritten below the class definition @@ -12534,7 +11601,7 @@ def is_optional(self): :rtype: bool """ - return self._tag == "optional" + return self._tag == 'optional' def is_required(self): """ @@ -12542,7 +11609,7 @@ def is_required(self): :rtype: bool """ - return self._tag == "required" + return self._tag == 'required' def is_other(self): """ @@ -12550,17 +11617,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EnforceLinkPasswordPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(EnforceLinkPasswordPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) EnforceLinkPasswordPolicy_validator = bv.Union(EnforceLinkPasswordPolicy) - class EnterpriseSettingsLockingDetails(bb.Struct): """ Changed who can update a setting. @@ -12576,21 +11639,19 @@ class EnterpriseSettingsLockingDetails(bb.Struct): """ __slots__ = [ - "_team_name_value", - "_settings_page_name_value", - "_previous_settings_page_locking_state_value", - "_new_settings_page_locking_state_value", + '_team_name_value', + '_settings_page_name_value', + '_previous_settings_page_locking_state_value', + '_new_settings_page_locking_state_value', ] _has_required_fields = True - def __init__( - self, - team_name=None, - settings_page_name=None, - previous_settings_page_locking_state=None, - new_settings_page_locking_state=None, - ): + def __init__(self, + team_name=None, + settings_page_name=None, + previous_settings_page_locking_state=None, + new_settings_page_locking_state=None): self._team_name_value = bb.NOT_SET self._settings_page_name_value = bb.NOT_SET self._previous_settings_page_locking_state_value = bb.NOT_SET @@ -12617,22 +11678,20 @@ def __init__( new_settings_page_locking_state = bb.Attribute("new_settings_page_locking_state") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EnterpriseSettingsLockingDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(EnterpriseSettingsLockingDetails, self)._process_custom_annotations(annotation_type, field_path, processor) EnterpriseSettingsLockingDetails_validator = bv.Struct(EnterpriseSettingsLockingDetails) - class EnterpriseSettingsLockingType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -12641,14 +11700,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EnterpriseSettingsLockingType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(EnterpriseSettingsLockingType, self)._process_custom_annotations(annotation_type, field_path, processor) EnterpriseSettingsLockingType_validator = bv.Struct(EnterpriseSettingsLockingType) - class EventCategory(bb.Union): """ Category of events in event audit log. @@ -12717,7 +11772,7 @@ class EventCategory(bb.Union): Events that apply to cross-team trust establishment. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition admin_alerting = None # Attribute is overwritten below the class definition @@ -12779,7 +11834,7 @@ def is_admin_alerting(self): :rtype: bool """ - return self._tag == "admin_alerting" + return self._tag == 'admin_alerting' def is_apps(self): """ @@ -12787,7 +11842,7 @@ def is_apps(self): :rtype: bool """ - return self._tag == "apps" + return self._tag == 'apps' def is_comments(self): """ @@ -12795,7 +11850,7 @@ def is_comments(self): :rtype: bool """ - return self._tag == "comments" + return self._tag == 'comments' def is_dash(self): """ @@ -12803,7 +11858,7 @@ def is_dash(self): :rtype: bool """ - return self._tag == "dash" + return self._tag == 'dash' def is_data_governance(self): """ @@ -12811,7 +11866,7 @@ def is_data_governance(self): :rtype: bool """ - return self._tag == "data_governance" + return self._tag == 'data_governance' def is_devices(self): """ @@ -12819,7 +11874,7 @@ def is_devices(self): :rtype: bool """ - return self._tag == "devices" + return self._tag == 'devices' def is_domains(self): """ @@ -12827,7 +11882,7 @@ def is_domains(self): :rtype: bool """ - return self._tag == "domains" + return self._tag == 'domains' def is_encryption(self): """ @@ -12835,7 +11890,7 @@ def is_encryption(self): :rtype: bool """ - return self._tag == "encryption" + return self._tag == 'encryption' def is_file_operations(self): """ @@ -12843,7 +11898,7 @@ def is_file_operations(self): :rtype: bool """ - return self._tag == "file_operations" + return self._tag == 'file_operations' def is_file_requests(self): """ @@ -12851,7 +11906,7 @@ def is_file_requests(self): :rtype: bool """ - return self._tag == "file_requests" + return self._tag == 'file_requests' def is_groups(self): """ @@ -12859,7 +11914,7 @@ def is_groups(self): :rtype: bool """ - return self._tag == "groups" + return self._tag == 'groups' def is_logins(self): """ @@ -12867,7 +11922,7 @@ def is_logins(self): :rtype: bool """ - return self._tag == "logins" + return self._tag == 'logins' def is_members(self): """ @@ -12875,7 +11930,7 @@ def is_members(self): :rtype: bool """ - return self._tag == "members" + return self._tag == 'members' def is_paper(self): """ @@ -12883,7 +11938,7 @@ def is_paper(self): :rtype: bool """ - return self._tag == "paper" + return self._tag == 'paper' def is_passwords(self): """ @@ -12891,7 +11946,7 @@ def is_passwords(self): :rtype: bool """ - return self._tag == "passwords" + return self._tag == 'passwords' def is_protect(self): """ @@ -12899,7 +11954,7 @@ def is_protect(self): :rtype: bool """ - return self._tag == "protect" + return self._tag == 'protect' def is_reports(self): """ @@ -12907,7 +11962,7 @@ def is_reports(self): :rtype: bool """ - return self._tag == "reports" + return self._tag == 'reports' def is_sharing(self): """ @@ -12915,7 +11970,7 @@ def is_sharing(self): :rtype: bool """ - return self._tag == "sharing" + return self._tag == 'sharing' def is_showcase(self): """ @@ -12923,7 +11978,7 @@ def is_showcase(self): :rtype: bool """ - return self._tag == "showcase" + return self._tag == 'showcase' def is_signatures(self): """ @@ -12931,7 +11986,7 @@ def is_signatures(self): :rtype: bool """ - return self._tag == "signatures" + return self._tag == 'signatures' def is_sso(self): """ @@ -12939,7 +11994,7 @@ def is_sso(self): :rtype: bool """ - return self._tag == "sso" + return self._tag == 'sso' def is_team_folders(self): """ @@ -12947,7 +12002,7 @@ def is_team_folders(self): :rtype: bool """ - return self._tag == "team_folders" + return self._tag == 'team_folders' def is_team_policies(self): """ @@ -12955,7 +12010,7 @@ def is_team_policies(self): :rtype: bool """ - return self._tag == "team_policies" + return self._tag == 'team_policies' def is_team_profile(self): """ @@ -12963,7 +12018,7 @@ def is_team_profile(self): :rtype: bool """ - return self._tag == "team_profile" + return self._tag == 'team_profile' def is_tfa(self): """ @@ -12971,7 +12026,7 @@ def is_tfa(self): :rtype: bool """ - return self._tag == "tfa" + return self._tag == 'tfa' def is_trusted_teams(self): """ @@ -12979,7 +12034,7 @@ def is_trusted_teams(self): :rtype: bool """ - return self._tag == "trusted_teams" + return self._tag == 'trusted_teams' def is_other(self): """ @@ -12987,17 +12042,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EventCategory, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(EventCategory, self)._process_custom_annotations(annotation_type, field_path, processor) EventCategory_validator = bv.Union(EventCategory) - class EventDetails(bb.Union): """ Additional fields depending on the event type. @@ -13012,7 +12063,7 @@ class EventDetails(bb.Union): :vartype EventDetails.missing_details: MissingDetails """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -13025,7 +12076,7 @@ def admin_alerting_alert_state_changed_details(cls, val): :param AdminAlertingAlertStateChangedDetails val: :rtype: EventDetails """ - return cls("admin_alerting_alert_state_changed_details", val) + return cls('admin_alerting_alert_state_changed_details', val) @classmethod def admin_alerting_changed_alert_config_details(cls, val): @@ -13036,7 +12087,7 @@ def admin_alerting_changed_alert_config_details(cls, val): :param AdminAlertingChangedAlertConfigDetails val: :rtype: EventDetails """ - return cls("admin_alerting_changed_alert_config_details", val) + return cls('admin_alerting_changed_alert_config_details', val) @classmethod def admin_alerting_triggered_alert_details(cls, val): @@ -13047,7 +12098,7 @@ def admin_alerting_triggered_alert_details(cls, val): :param AdminAlertingTriggeredAlertDetails val: :rtype: EventDetails """ - return cls("admin_alerting_triggered_alert_details", val) + return cls('admin_alerting_triggered_alert_details', val) @classmethod def ransomware_restore_process_completed_details(cls, val): @@ -13058,7 +12109,7 @@ def ransomware_restore_process_completed_details(cls, val): :param RansomwareRestoreProcessCompletedDetails val: :rtype: EventDetails """ - return cls("ransomware_restore_process_completed_details", val) + return cls('ransomware_restore_process_completed_details', val) @classmethod def ransomware_restore_process_started_details(cls, val): @@ -13069,7 +12120,7 @@ def ransomware_restore_process_started_details(cls, val): :param RansomwareRestoreProcessStartedDetails val: :rtype: EventDetails """ - return cls("ransomware_restore_process_started_details", val) + return cls('ransomware_restore_process_started_details', val) @classmethod def app_blocked_by_permissions_details(cls, val): @@ -13080,7 +12131,7 @@ def app_blocked_by_permissions_details(cls, val): :param AppBlockedByPermissionsDetails val: :rtype: EventDetails """ - return cls("app_blocked_by_permissions_details", val) + return cls('app_blocked_by_permissions_details', val) @classmethod def app_link_team_details(cls, val): @@ -13091,7 +12142,7 @@ def app_link_team_details(cls, val): :param AppLinkTeamDetails val: :rtype: EventDetails """ - return cls("app_link_team_details", val) + return cls('app_link_team_details', val) @classmethod def app_link_user_details(cls, val): @@ -13102,7 +12153,7 @@ def app_link_user_details(cls, val): :param AppLinkUserDetails val: :rtype: EventDetails """ - return cls("app_link_user_details", val) + return cls('app_link_user_details', val) @classmethod def app_unlink_team_details(cls, val): @@ -13113,7 +12164,7 @@ def app_unlink_team_details(cls, val): :param AppUnlinkTeamDetails val: :rtype: EventDetails """ - return cls("app_unlink_team_details", val) + return cls('app_unlink_team_details', val) @classmethod def app_unlink_user_details(cls, val): @@ -13124,7 +12175,7 @@ def app_unlink_user_details(cls, val): :param AppUnlinkUserDetails val: :rtype: EventDetails """ - return cls("app_unlink_user_details", val) + return cls('app_unlink_user_details', val) @classmethod def integration_connected_details(cls, val): @@ -13135,7 +12186,7 @@ def integration_connected_details(cls, val): :param IntegrationConnectedDetails val: :rtype: EventDetails """ - return cls("integration_connected_details", val) + return cls('integration_connected_details', val) @classmethod def integration_disconnected_details(cls, val): @@ -13146,7 +12197,7 @@ def integration_disconnected_details(cls, val): :param IntegrationDisconnectedDetails val: :rtype: EventDetails """ - return cls("integration_disconnected_details", val) + return cls('integration_disconnected_details', val) @classmethod def file_add_comment_details(cls, val): @@ -13157,7 +12208,7 @@ def file_add_comment_details(cls, val): :param FileAddCommentDetails val: :rtype: EventDetails """ - return cls("file_add_comment_details", val) + return cls('file_add_comment_details', val) @classmethod def file_change_comment_subscription_details(cls, val): @@ -13168,7 +12219,7 @@ def file_change_comment_subscription_details(cls, val): :param FileChangeCommentSubscriptionDetails val: :rtype: EventDetails """ - return cls("file_change_comment_subscription_details", val) + return cls('file_change_comment_subscription_details', val) @classmethod def file_delete_comment_details(cls, val): @@ -13179,7 +12230,7 @@ def file_delete_comment_details(cls, val): :param FileDeleteCommentDetails val: :rtype: EventDetails """ - return cls("file_delete_comment_details", val) + return cls('file_delete_comment_details', val) @classmethod def file_edit_comment_details(cls, val): @@ -13190,7 +12241,7 @@ def file_edit_comment_details(cls, val): :param FileEditCommentDetails val: :rtype: EventDetails """ - return cls("file_edit_comment_details", val) + return cls('file_edit_comment_details', val) @classmethod def file_like_comment_details(cls, val): @@ -13201,7 +12252,7 @@ def file_like_comment_details(cls, val): :param FileLikeCommentDetails val: :rtype: EventDetails """ - return cls("file_like_comment_details", val) + return cls('file_like_comment_details', val) @classmethod def file_resolve_comment_details(cls, val): @@ -13212,7 +12263,7 @@ def file_resolve_comment_details(cls, val): :param FileResolveCommentDetails val: :rtype: EventDetails """ - return cls("file_resolve_comment_details", val) + return cls('file_resolve_comment_details', val) @classmethod def file_unlike_comment_details(cls, val): @@ -13223,7 +12274,7 @@ def file_unlike_comment_details(cls, val): :param FileUnlikeCommentDetails val: :rtype: EventDetails """ - return cls("file_unlike_comment_details", val) + return cls('file_unlike_comment_details', val) @classmethod def file_unresolve_comment_details(cls, val): @@ -13234,7 +12285,7 @@ def file_unresolve_comment_details(cls, val): :param FileUnresolveCommentDetails val: :rtype: EventDetails """ - return cls("file_unresolve_comment_details", val) + return cls('file_unresolve_comment_details', val) @classmethod def dash_added_comment_to_stack_details(cls, val): @@ -13245,7 +12296,7 @@ def dash_added_comment_to_stack_details(cls, val): :param DashAddedCommentToStackDetails val: :rtype: EventDetails """ - return cls("dash_added_comment_to_stack_details", val) + return cls('dash_added_comment_to_stack_details', val) @classmethod def dash_added_connector_details(cls, val): @@ -13256,7 +12307,7 @@ def dash_added_connector_details(cls, val): :param DashAddedConnectorDetails val: :rtype: EventDetails """ - return cls("dash_added_connector_details", val) + return cls('dash_added_connector_details', val) @classmethod def dash_added_link_to_stack_details(cls, val): @@ -13267,7 +12318,7 @@ def dash_added_link_to_stack_details(cls, val): :param DashAddedLinkToStackDetails val: :rtype: EventDetails """ - return cls("dash_added_link_to_stack_details", val) + return cls('dash_added_link_to_stack_details', val) @classmethod def dash_added_team_email_domain_allowlist_details(cls, val): @@ -13279,7 +12330,7 @@ def dash_added_team_email_domain_allowlist_details(cls, val): :param DashAddedTeamEmailDomainAllowlistDetails val: :rtype: EventDetails """ - return cls("dash_added_team_email_domain_allowlist_details", val) + return cls('dash_added_team_email_domain_allowlist_details', val) @classmethod def dash_admin_added_org_wide_connector_details(cls, val): @@ -13290,7 +12341,7 @@ def dash_admin_added_org_wide_connector_details(cls, val): :param DashAdminAddedOrgWideConnectorDetails val: :rtype: EventDetails """ - return cls("dash_admin_added_org_wide_connector_details", val) + return cls('dash_admin_added_org_wide_connector_details', val) @classmethod def dash_admin_disabled_connector_details(cls, val): @@ -13301,7 +12352,7 @@ def dash_admin_disabled_connector_details(cls, val): :param DashAdminDisabledConnectorDetails val: :rtype: EventDetails """ - return cls("dash_admin_disabled_connector_details", val) + return cls('dash_admin_disabled_connector_details', val) @classmethod def dash_admin_enabled_connector_details(cls, val): @@ -13312,7 +12363,7 @@ def dash_admin_enabled_connector_details(cls, val): :param DashAdminEnabledConnectorDetails val: :rtype: EventDetails """ - return cls("dash_admin_enabled_connector_details", val) + return cls('dash_admin_enabled_connector_details', val) @classmethod def dash_admin_removed_org_wide_connector_details(cls, val): @@ -13324,7 +12375,7 @@ def dash_admin_removed_org_wide_connector_details(cls, val): :param DashAdminRemovedOrgWideConnectorDetails val: :rtype: EventDetails """ - return cls("dash_admin_removed_org_wide_connector_details", val) + return cls('dash_admin_removed_org_wide_connector_details', val) @classmethod def dash_archived_stack_details(cls, val): @@ -13335,7 +12386,7 @@ def dash_archived_stack_details(cls, val): :param DashArchivedStackDetails val: :rtype: EventDetails """ - return cls("dash_archived_stack_details", val) + return cls('dash_archived_stack_details', val) @classmethod def dash_changed_audience_of_shared_link_to_stack_details(cls, val): @@ -13347,7 +12398,7 @@ def dash_changed_audience_of_shared_link_to_stack_details(cls, val): :param DashChangedAudienceOfSharedLinkToStackDetails val: :rtype: EventDetails """ - return cls("dash_changed_audience_of_shared_link_to_stack_details", val) + return cls('dash_changed_audience_of_shared_link_to_stack_details', val) @classmethod def dash_cloned_stack_details(cls, val): @@ -13358,7 +12409,7 @@ def dash_cloned_stack_details(cls, val): :param DashClonedStackDetails val: :rtype: EventDetails """ - return cls("dash_cloned_stack_details", val) + return cls('dash_cloned_stack_details', val) @classmethod def dash_connector_tools_call_details(cls, val): @@ -13369,7 +12420,7 @@ def dash_connector_tools_call_details(cls, val): :param DashConnectorToolsCallDetails val: :rtype: EventDetails """ - return cls("dash_connector_tools_call_details", val) + return cls('dash_connector_tools_call_details', val) @classmethod def dash_created_stack_details(cls, val): @@ -13380,7 +12431,7 @@ def dash_created_stack_details(cls, val): :param DashCreatedStackDetails val: :rtype: EventDetails """ - return cls("dash_created_stack_details", val) + return cls('dash_created_stack_details', val) @classmethod def dash_deleted_comment_from_stack_details(cls, val): @@ -13391,7 +12442,7 @@ def dash_deleted_comment_from_stack_details(cls, val): :param DashDeletedCommentFromStackDetails val: :rtype: EventDetails """ - return cls("dash_deleted_comment_from_stack_details", val) + return cls('dash_deleted_comment_from_stack_details', val) @classmethod def dash_deleted_stack_details(cls, val): @@ -13402,7 +12453,7 @@ def dash_deleted_stack_details(cls, val): :param DashDeletedStackDetails val: :rtype: EventDetails """ - return cls("dash_deleted_stack_details", val) + return cls('dash_deleted_stack_details', val) @classmethod def dash_edited_comment_in_stack_details(cls, val): @@ -13413,7 +12464,7 @@ def dash_edited_comment_in_stack_details(cls, val): :param DashEditedCommentInStackDetails val: :rtype: EventDetails """ - return cls("dash_edited_comment_in_stack_details", val) + return cls('dash_edited_comment_in_stack_details', val) @classmethod def dash_external_user_opened_stack_details(cls, val): @@ -13424,7 +12475,7 @@ def dash_external_user_opened_stack_details(cls, val): :param DashExternalUserOpenedStackDetails val: :rtype: EventDetails """ - return cls("dash_external_user_opened_stack_details", val) + return cls('dash_external_user_opened_stack_details', val) @classmethod def dash_first_launched_desktop_details(cls, val): @@ -13435,7 +12486,7 @@ def dash_first_launched_desktop_details(cls, val): :param DashFirstLaunchedDesktopDetails val: :rtype: EventDetails """ - return cls("dash_first_launched_desktop_details", val) + return cls('dash_first_launched_desktop_details', val) @classmethod def dash_first_launched_extension_details(cls, val): @@ -13446,7 +12497,7 @@ def dash_first_launched_extension_details(cls, val): :param DashFirstLaunchedExtensionDetails val: :rtype: EventDetails """ - return cls("dash_first_launched_extension_details", val) + return cls('dash_first_launched_extension_details', val) @classmethod def dash_first_launched_web_start_page_details(cls, val): @@ -13457,7 +12508,7 @@ def dash_first_launched_web_start_page_details(cls, val): :param DashFirstLaunchedWebStartPageDetails val: :rtype: EventDetails """ - return cls("dash_first_launched_web_start_page_details", val) + return cls('dash_first_launched_web_start_page_details', val) @classmethod def dash_opened_shared_link_to_stack_details(cls, val): @@ -13468,7 +12519,7 @@ def dash_opened_shared_link_to_stack_details(cls, val): :param DashOpenedSharedLinkToStackDetails val: :rtype: EventDetails """ - return cls("dash_opened_shared_link_to_stack_details", val) + return cls('dash_opened_shared_link_to_stack_details', val) @classmethod def dash_opened_stack_details(cls, val): @@ -13479,7 +12530,7 @@ def dash_opened_stack_details(cls, val): :param DashOpenedStackDetails val: :rtype: EventDetails """ - return cls("dash_opened_stack_details", val) + return cls('dash_opened_stack_details', val) @classmethod def dash_preview_opt_out_status_changed_details(cls, val): @@ -13490,7 +12541,7 @@ def dash_preview_opt_out_status_changed_details(cls, val): :param DashPreviewOptOutStatusChangedDetails val: :rtype: EventDetails """ - return cls("dash_preview_opt_out_status_changed_details", val) + return cls('dash_preview_opt_out_status_changed_details', val) @classmethod def dash_removed_connector_details(cls, val): @@ -13501,7 +12552,7 @@ def dash_removed_connector_details(cls, val): :param DashRemovedConnectorDetails val: :rtype: EventDetails """ - return cls("dash_removed_connector_details", val) + return cls('dash_removed_connector_details', val) @classmethod def dash_removed_link_from_stack_details(cls, val): @@ -13512,7 +12563,7 @@ def dash_removed_link_from_stack_details(cls, val): :param DashRemovedLinkFromStackDetails val: :rtype: EventDetails """ - return cls("dash_removed_link_from_stack_details", val) + return cls('dash_removed_link_from_stack_details', val) @classmethod def dash_removed_shared_link_to_stack_details(cls, val): @@ -13523,7 +12574,7 @@ def dash_removed_shared_link_to_stack_details(cls, val): :param DashRemovedSharedLinkToStackDetails val: :rtype: EventDetails """ - return cls("dash_removed_shared_link_to_stack_details", val) + return cls('dash_removed_shared_link_to_stack_details', val) @classmethod def dash_removed_team_email_domain_allowlist_details(cls, val): @@ -13535,7 +12586,7 @@ def dash_removed_team_email_domain_allowlist_details(cls, val): :param DashRemovedTeamEmailDomainAllowlistDetails val: :rtype: EventDetails """ - return cls("dash_removed_team_email_domain_allowlist_details", val) + return cls('dash_removed_team_email_domain_allowlist_details', val) @classmethod def dash_renamed_stack_details(cls, val): @@ -13546,7 +12597,7 @@ def dash_renamed_stack_details(cls, val): :param DashRenamedStackDetails val: :rtype: EventDetails """ - return cls("dash_renamed_stack_details", val) + return cls('dash_renamed_stack_details', val) @classmethod def dash_shared_link_to_stack_details(cls, val): @@ -13557,7 +12608,7 @@ def dash_shared_link_to_stack_details(cls, val): :param DashSharedLinkToStackDetails val: :rtype: EventDetails """ - return cls("dash_shared_link_to_stack_details", val) + return cls('dash_shared_link_to_stack_details', val) @classmethod def dash_unarchived_stack_details(cls, val): @@ -13568,7 +12619,7 @@ def dash_unarchived_stack_details(cls, val): :param DashUnarchivedStackDetails val: :rtype: EventDetails """ - return cls("dash_unarchived_stack_details", val) + return cls('dash_unarchived_stack_details', val) @classmethod def dash_viewed_company_stack_details(cls, val): @@ -13579,7 +12630,7 @@ def dash_viewed_company_stack_details(cls, val): :param DashViewedCompanyStackDetails val: :rtype: EventDetails """ - return cls("dash_viewed_company_stack_details", val) + return cls('dash_viewed_company_stack_details', val) @classmethod def dash_viewed_external_ai_activity_report_details(cls, val): @@ -13591,7 +12642,7 @@ def dash_viewed_external_ai_activity_report_details(cls, val): :param DashViewedExternalAiActivityReportDetails val: :rtype: EventDetails """ - return cls("dash_viewed_external_ai_activity_report_details", val) + return cls('dash_viewed_external_ai_activity_report_details', val) @classmethod def governance_policy_add_folders_details(cls, val): @@ -13602,7 +12653,7 @@ def governance_policy_add_folders_details(cls, val): :param GovernancePolicyAddFoldersDetails val: :rtype: EventDetails """ - return cls("governance_policy_add_folders_details", val) + return cls('governance_policy_add_folders_details', val) @classmethod def governance_policy_add_folder_failed_details(cls, val): @@ -13613,7 +12664,7 @@ def governance_policy_add_folder_failed_details(cls, val): :param GovernancePolicyAddFolderFailedDetails val: :rtype: EventDetails """ - return cls("governance_policy_add_folder_failed_details", val) + return cls('governance_policy_add_folder_failed_details', val) @classmethod def governance_policy_content_disposed_details(cls, val): @@ -13624,7 +12675,7 @@ def governance_policy_content_disposed_details(cls, val): :param GovernancePolicyContentDisposedDetails val: :rtype: EventDetails """ - return cls("governance_policy_content_disposed_details", val) + return cls('governance_policy_content_disposed_details', val) @classmethod def governance_policy_create_details(cls, val): @@ -13635,7 +12686,7 @@ def governance_policy_create_details(cls, val): :param GovernancePolicyCreateDetails val: :rtype: EventDetails """ - return cls("governance_policy_create_details", val) + return cls('governance_policy_create_details', val) @classmethod def governance_policy_delete_details(cls, val): @@ -13646,7 +12697,7 @@ def governance_policy_delete_details(cls, val): :param GovernancePolicyDeleteDetails val: :rtype: EventDetails """ - return cls("governance_policy_delete_details", val) + return cls('governance_policy_delete_details', val) @classmethod def governance_policy_edit_details_details(cls, val): @@ -13657,7 +12708,7 @@ def governance_policy_edit_details_details(cls, val): :param GovernancePolicyEditDetailsDetails val: :rtype: EventDetails """ - return cls("governance_policy_edit_details_details", val) + return cls('governance_policy_edit_details_details', val) @classmethod def governance_policy_edit_duration_details(cls, val): @@ -13668,7 +12719,7 @@ def governance_policy_edit_duration_details(cls, val): :param GovernancePolicyEditDurationDetails val: :rtype: EventDetails """ - return cls("governance_policy_edit_duration_details", val) + return cls('governance_policy_edit_duration_details', val) @classmethod def governance_policy_export_created_details(cls, val): @@ -13679,7 +12730,7 @@ def governance_policy_export_created_details(cls, val): :param GovernancePolicyExportCreatedDetails val: :rtype: EventDetails """ - return cls("governance_policy_export_created_details", val) + return cls('governance_policy_export_created_details', val) @classmethod def governance_policy_export_removed_details(cls, val): @@ -13690,7 +12741,7 @@ def governance_policy_export_removed_details(cls, val): :param GovernancePolicyExportRemovedDetails val: :rtype: EventDetails """ - return cls("governance_policy_export_removed_details", val) + return cls('governance_policy_export_removed_details', val) @classmethod def governance_policy_remove_folders_details(cls, val): @@ -13701,7 +12752,7 @@ def governance_policy_remove_folders_details(cls, val): :param GovernancePolicyRemoveFoldersDetails val: :rtype: EventDetails """ - return cls("governance_policy_remove_folders_details", val) + return cls('governance_policy_remove_folders_details', val) @classmethod def governance_policy_report_created_details(cls, val): @@ -13712,7 +12763,7 @@ def governance_policy_report_created_details(cls, val): :param GovernancePolicyReportCreatedDetails val: :rtype: EventDetails """ - return cls("governance_policy_report_created_details", val) + return cls('governance_policy_report_created_details', val) @classmethod def governance_policy_zip_part_downloaded_details(cls, val): @@ -13724,7 +12775,7 @@ def governance_policy_zip_part_downloaded_details(cls, val): :param GovernancePolicyZipPartDownloadedDetails val: :rtype: EventDetails """ - return cls("governance_policy_zip_part_downloaded_details", val) + return cls('governance_policy_zip_part_downloaded_details', val) @classmethod def legal_holds_activate_a_hold_details(cls, val): @@ -13735,7 +12786,7 @@ def legal_holds_activate_a_hold_details(cls, val): :param LegalHoldsActivateAHoldDetails val: :rtype: EventDetails """ - return cls("legal_holds_activate_a_hold_details", val) + return cls('legal_holds_activate_a_hold_details', val) @classmethod def legal_holds_add_members_details(cls, val): @@ -13746,7 +12797,7 @@ def legal_holds_add_members_details(cls, val): :param LegalHoldsAddMembersDetails val: :rtype: EventDetails """ - return cls("legal_holds_add_members_details", val) + return cls('legal_holds_add_members_details', val) @classmethod def legal_holds_change_hold_details_details(cls, val): @@ -13757,7 +12808,7 @@ def legal_holds_change_hold_details_details(cls, val): :param LegalHoldsChangeHoldDetailsDetails val: :rtype: EventDetails """ - return cls("legal_holds_change_hold_details_details", val) + return cls('legal_holds_change_hold_details_details', val) @classmethod def legal_holds_change_hold_name_details(cls, val): @@ -13768,7 +12819,7 @@ def legal_holds_change_hold_name_details(cls, val): :param LegalHoldsChangeHoldNameDetails val: :rtype: EventDetails """ - return cls("legal_holds_change_hold_name_details", val) + return cls('legal_holds_change_hold_name_details', val) @classmethod def legal_holds_export_a_hold_details(cls, val): @@ -13779,7 +12830,7 @@ def legal_holds_export_a_hold_details(cls, val): :param LegalHoldsExportAHoldDetails val: :rtype: EventDetails """ - return cls("legal_holds_export_a_hold_details", val) + return cls('legal_holds_export_a_hold_details', val) @classmethod def legal_holds_export_cancelled_details(cls, val): @@ -13790,7 +12841,7 @@ def legal_holds_export_cancelled_details(cls, val): :param LegalHoldsExportCancelledDetails val: :rtype: EventDetails """ - return cls("legal_holds_export_cancelled_details", val) + return cls('legal_holds_export_cancelled_details', val) @classmethod def legal_holds_export_downloaded_details(cls, val): @@ -13801,7 +12852,7 @@ def legal_holds_export_downloaded_details(cls, val): :param LegalHoldsExportDownloadedDetails val: :rtype: EventDetails """ - return cls("legal_holds_export_downloaded_details", val) + return cls('legal_holds_export_downloaded_details', val) @classmethod def legal_holds_export_removed_details(cls, val): @@ -13812,7 +12863,7 @@ def legal_holds_export_removed_details(cls, val): :param LegalHoldsExportRemovedDetails val: :rtype: EventDetails """ - return cls("legal_holds_export_removed_details", val) + return cls('legal_holds_export_removed_details', val) @classmethod def legal_holds_release_a_hold_details(cls, val): @@ -13823,7 +12874,7 @@ def legal_holds_release_a_hold_details(cls, val): :param LegalHoldsReleaseAHoldDetails val: :rtype: EventDetails """ - return cls("legal_holds_release_a_hold_details", val) + return cls('legal_holds_release_a_hold_details', val) @classmethod def legal_holds_remove_members_details(cls, val): @@ -13834,7 +12885,7 @@ def legal_holds_remove_members_details(cls, val): :param LegalHoldsRemoveMembersDetails val: :rtype: EventDetails """ - return cls("legal_holds_remove_members_details", val) + return cls('legal_holds_remove_members_details', val) @classmethod def legal_holds_report_a_hold_details(cls, val): @@ -13845,7 +12896,7 @@ def legal_holds_report_a_hold_details(cls, val): :param LegalHoldsReportAHoldDetails val: :rtype: EventDetails """ - return cls("legal_holds_report_a_hold_details", val) + return cls('legal_holds_report_a_hold_details', val) @classmethod def device_change_ip_desktop_details(cls, val): @@ -13856,7 +12907,7 @@ def device_change_ip_desktop_details(cls, val): :param DeviceChangeIpDesktopDetails val: :rtype: EventDetails """ - return cls("device_change_ip_desktop_details", val) + return cls('device_change_ip_desktop_details', val) @classmethod def device_change_ip_mobile_details(cls, val): @@ -13867,7 +12918,7 @@ def device_change_ip_mobile_details(cls, val): :param DeviceChangeIpMobileDetails val: :rtype: EventDetails """ - return cls("device_change_ip_mobile_details", val) + return cls('device_change_ip_mobile_details', val) @classmethod def device_change_ip_web_details(cls, val): @@ -13878,7 +12929,7 @@ def device_change_ip_web_details(cls, val): :param DeviceChangeIpWebDetails val: :rtype: EventDetails """ - return cls("device_change_ip_web_details", val) + return cls('device_change_ip_web_details', val) @classmethod def device_delete_on_unlink_fail_details(cls, val): @@ -13889,7 +12940,7 @@ def device_delete_on_unlink_fail_details(cls, val): :param DeviceDeleteOnUnlinkFailDetails val: :rtype: EventDetails """ - return cls("device_delete_on_unlink_fail_details", val) + return cls('device_delete_on_unlink_fail_details', val) @classmethod def device_delete_on_unlink_success_details(cls, val): @@ -13900,7 +12951,7 @@ def device_delete_on_unlink_success_details(cls, val): :param DeviceDeleteOnUnlinkSuccessDetails val: :rtype: EventDetails """ - return cls("device_delete_on_unlink_success_details", val) + return cls('device_delete_on_unlink_success_details', val) @classmethod def device_link_fail_details(cls, val): @@ -13911,7 +12962,7 @@ def device_link_fail_details(cls, val): :param DeviceLinkFailDetails val: :rtype: EventDetails """ - return cls("device_link_fail_details", val) + return cls('device_link_fail_details', val) @classmethod def device_link_success_details(cls, val): @@ -13922,7 +12973,7 @@ def device_link_success_details(cls, val): :param DeviceLinkSuccessDetails val: :rtype: EventDetails """ - return cls("device_link_success_details", val) + return cls('device_link_success_details', val) @classmethod def device_management_disabled_details(cls, val): @@ -13933,7 +12984,7 @@ def device_management_disabled_details(cls, val): :param DeviceManagementDisabledDetails val: :rtype: EventDetails """ - return cls("device_management_disabled_details", val) + return cls('device_management_disabled_details', val) @classmethod def device_management_enabled_details(cls, val): @@ -13944,7 +12995,7 @@ def device_management_enabled_details(cls, val): :param DeviceManagementEnabledDetails val: :rtype: EventDetails """ - return cls("device_management_enabled_details", val) + return cls('device_management_enabled_details', val) @classmethod def device_sync_backup_status_changed_details(cls, val): @@ -13955,7 +13006,7 @@ def device_sync_backup_status_changed_details(cls, val): :param DeviceSyncBackupStatusChangedDetails val: :rtype: EventDetails """ - return cls("device_sync_backup_status_changed_details", val) + return cls('device_sync_backup_status_changed_details', val) @classmethod def device_unlink_details(cls, val): @@ -13966,7 +13017,7 @@ def device_unlink_details(cls, val): :param DeviceUnlinkDetails val: :rtype: EventDetails """ - return cls("device_unlink_details", val) + return cls('device_unlink_details', val) @classmethod def dropbox_passwords_exported_details(cls, val): @@ -13977,7 +13028,7 @@ def dropbox_passwords_exported_details(cls, val): :param DropboxPasswordsExportedDetails val: :rtype: EventDetails """ - return cls("dropbox_passwords_exported_details", val) + return cls('dropbox_passwords_exported_details', val) @classmethod def dropbox_passwords_new_device_enrolled_details(cls, val): @@ -13989,7 +13040,7 @@ def dropbox_passwords_new_device_enrolled_details(cls, val): :param DropboxPasswordsNewDeviceEnrolledDetails val: :rtype: EventDetails """ - return cls("dropbox_passwords_new_device_enrolled_details", val) + return cls('dropbox_passwords_new_device_enrolled_details', val) @classmethod def emm_refresh_auth_token_details(cls, val): @@ -14000,7 +13051,7 @@ def emm_refresh_auth_token_details(cls, val): :param EmmRefreshAuthTokenDetails val: :rtype: EventDetails """ - return cls("emm_refresh_auth_token_details", val) + return cls('emm_refresh_auth_token_details', val) @classmethod def external_drive_backup_eligibility_status_checked_details(cls, val): @@ -14012,7 +13063,7 @@ def external_drive_backup_eligibility_status_checked_details(cls, val): :param ExternalDriveBackupEligibilityStatusCheckedDetails val: :rtype: EventDetails """ - return cls("external_drive_backup_eligibility_status_checked_details", val) + return cls('external_drive_backup_eligibility_status_checked_details', val) @classmethod def external_drive_backup_status_changed_details(cls, val): @@ -14023,7 +13074,7 @@ def external_drive_backup_status_changed_details(cls, val): :param ExternalDriveBackupStatusChangedDetails val: :rtype: EventDetails """ - return cls("external_drive_backup_status_changed_details", val) + return cls('external_drive_backup_status_changed_details', val) @classmethod def account_capture_change_availability_details(cls, val): @@ -14034,7 +13085,7 @@ def account_capture_change_availability_details(cls, val): :param AccountCaptureChangeAvailabilityDetails val: :rtype: EventDetails """ - return cls("account_capture_change_availability_details", val) + return cls('account_capture_change_availability_details', val) @classmethod def account_capture_migrate_account_details(cls, val): @@ -14045,7 +13096,7 @@ def account_capture_migrate_account_details(cls, val): :param AccountCaptureMigrateAccountDetails val: :rtype: EventDetails """ - return cls("account_capture_migrate_account_details", val) + return cls('account_capture_migrate_account_details', val) @classmethod def account_capture_notification_emails_sent_details(cls, val): @@ -14057,7 +13108,7 @@ def account_capture_notification_emails_sent_details(cls, val): :param AccountCaptureNotificationEmailsSentDetails val: :rtype: EventDetails """ - return cls("account_capture_notification_emails_sent_details", val) + return cls('account_capture_notification_emails_sent_details', val) @classmethod def account_capture_relinquish_account_details(cls, val): @@ -14068,7 +13119,7 @@ def account_capture_relinquish_account_details(cls, val): :param AccountCaptureRelinquishAccountDetails val: :rtype: EventDetails """ - return cls("account_capture_relinquish_account_details", val) + return cls('account_capture_relinquish_account_details', val) @classmethod def disabled_domain_invites_details(cls, val): @@ -14079,7 +13130,7 @@ def disabled_domain_invites_details(cls, val): :param DisabledDomainInvitesDetails val: :rtype: EventDetails """ - return cls("disabled_domain_invites_details", val) + return cls('disabled_domain_invites_details', val) @classmethod def domain_invites_approve_request_to_join_team_details(cls, val): @@ -14091,7 +13142,7 @@ def domain_invites_approve_request_to_join_team_details(cls, val): :param DomainInvitesApproveRequestToJoinTeamDetails val: :rtype: EventDetails """ - return cls("domain_invites_approve_request_to_join_team_details", val) + return cls('domain_invites_approve_request_to_join_team_details', val) @classmethod def domain_invites_decline_request_to_join_team_details(cls, val): @@ -14103,7 +13154,7 @@ def domain_invites_decline_request_to_join_team_details(cls, val): :param DomainInvitesDeclineRequestToJoinTeamDetails val: :rtype: EventDetails """ - return cls("domain_invites_decline_request_to_join_team_details", val) + return cls('domain_invites_decline_request_to_join_team_details', val) @classmethod def domain_invites_email_existing_users_details(cls, val): @@ -14114,7 +13165,7 @@ def domain_invites_email_existing_users_details(cls, val): :param DomainInvitesEmailExistingUsersDetails val: :rtype: EventDetails """ - return cls("domain_invites_email_existing_users_details", val) + return cls('domain_invites_email_existing_users_details', val) @classmethod def domain_invites_request_to_join_team_details(cls, val): @@ -14125,7 +13176,7 @@ def domain_invites_request_to_join_team_details(cls, val): :param DomainInvitesRequestToJoinTeamDetails val: :rtype: EventDetails """ - return cls("domain_invites_request_to_join_team_details", val) + return cls('domain_invites_request_to_join_team_details', val) @classmethod def domain_invites_set_invite_new_user_pref_to_no_details(cls, val): @@ -14137,7 +13188,7 @@ def domain_invites_set_invite_new_user_pref_to_no_details(cls, val): :param DomainInvitesSetInviteNewUserPrefToNoDetails val: :rtype: EventDetails """ - return cls("domain_invites_set_invite_new_user_pref_to_no_details", val) + return cls('domain_invites_set_invite_new_user_pref_to_no_details', val) @classmethod def domain_invites_set_invite_new_user_pref_to_yes_details(cls, val): @@ -14149,7 +13200,7 @@ def domain_invites_set_invite_new_user_pref_to_yes_details(cls, val): :param DomainInvitesSetInviteNewUserPrefToYesDetails val: :rtype: EventDetails """ - return cls("domain_invites_set_invite_new_user_pref_to_yes_details", val) + return cls('domain_invites_set_invite_new_user_pref_to_yes_details', val) @classmethod def domain_verification_add_domain_fail_details(cls, val): @@ -14160,7 +13211,7 @@ def domain_verification_add_domain_fail_details(cls, val): :param DomainVerificationAddDomainFailDetails val: :rtype: EventDetails """ - return cls("domain_verification_add_domain_fail_details", val) + return cls('domain_verification_add_domain_fail_details', val) @classmethod def domain_verification_add_domain_success_details(cls, val): @@ -14172,7 +13223,7 @@ def domain_verification_add_domain_success_details(cls, val): :param DomainVerificationAddDomainSuccessDetails val: :rtype: EventDetails """ - return cls("domain_verification_add_domain_success_details", val) + return cls('domain_verification_add_domain_success_details', val) @classmethod def domain_verification_remove_domain_details(cls, val): @@ -14183,7 +13234,7 @@ def domain_verification_remove_domain_details(cls, val): :param DomainVerificationRemoveDomainDetails val: :rtype: EventDetails """ - return cls("domain_verification_remove_domain_details", val) + return cls('domain_verification_remove_domain_details', val) @classmethod def enabled_domain_invites_details(cls, val): @@ -14194,7 +13245,7 @@ def enabled_domain_invites_details(cls, val): :param EnabledDomainInvitesDetails val: :rtype: EventDetails """ - return cls("enabled_domain_invites_details", val) + return cls('enabled_domain_invites_details', val) @classmethod def encrypted_folder_cancel_team_key_rotation_details(cls, val): @@ -14206,7 +13257,7 @@ def encrypted_folder_cancel_team_key_rotation_details(cls, val): :param EncryptedFolderCancelTeamKeyRotationDetails val: :rtype: EventDetails """ - return cls("encrypted_folder_cancel_team_key_rotation_details", val) + return cls('encrypted_folder_cancel_team_key_rotation_details', val) @classmethod def encrypted_folder_enroll_backup_key_details(cls, val): @@ -14217,7 +13268,7 @@ def encrypted_folder_enroll_backup_key_details(cls, val): :param EncryptedFolderEnrollBackupKeyDetails val: :rtype: EventDetails """ - return cls("encrypted_folder_enroll_backup_key_details", val) + return cls('encrypted_folder_enroll_backup_key_details', val) @classmethod def encrypted_folder_enroll_client_details(cls, val): @@ -14228,7 +13279,7 @@ def encrypted_folder_enroll_client_details(cls, val): :param EncryptedFolderEnrollClientDetails val: :rtype: EventDetails """ - return cls("encrypted_folder_enroll_client_details", val) + return cls('encrypted_folder_enroll_client_details', val) @classmethod def encrypted_folder_enroll_team_details(cls, val): @@ -14239,7 +13290,7 @@ def encrypted_folder_enroll_team_details(cls, val): :param EncryptedFolderEnrollTeamDetails val: :rtype: EventDetails """ - return cls("encrypted_folder_enroll_team_details", val) + return cls('encrypted_folder_enroll_team_details', val) @classmethod def encrypted_folder_finish_team_unenrollment_details(cls, val): @@ -14251,7 +13302,7 @@ def encrypted_folder_finish_team_unenrollment_details(cls, val): :param EncryptedFolderFinishTeamUnenrollmentDetails val: :rtype: EventDetails """ - return cls("encrypted_folder_finish_team_unenrollment_details", val) + return cls('encrypted_folder_finish_team_unenrollment_details', val) @classmethod def encrypted_folder_init_team_key_rotation_details(cls, val): @@ -14263,7 +13314,7 @@ def encrypted_folder_init_team_key_rotation_details(cls, val): :param EncryptedFolderInitTeamKeyRotationDetails val: :rtype: EventDetails """ - return cls("encrypted_folder_init_team_key_rotation_details", val) + return cls('encrypted_folder_init_team_key_rotation_details', val) @classmethod def encrypted_folder_init_team_unenrollment_details(cls, val): @@ -14275,7 +13326,7 @@ def encrypted_folder_init_team_unenrollment_details(cls, val): :param EncryptedFolderInitTeamUnenrollmentDetails val: :rtype: EventDetails """ - return cls("encrypted_folder_init_team_unenrollment_details", val) + return cls('encrypted_folder_init_team_unenrollment_details', val) @classmethod def encrypted_folder_remove_backup_key_details(cls, val): @@ -14286,7 +13337,7 @@ def encrypted_folder_remove_backup_key_details(cls, val): :param EncryptedFolderRemoveBackupKeyDetails val: :rtype: EventDetails """ - return cls("encrypted_folder_remove_backup_key_details", val) + return cls('encrypted_folder_remove_backup_key_details', val) @classmethod def encrypted_folder_rotate_team_key_details(cls, val): @@ -14297,7 +13348,7 @@ def encrypted_folder_rotate_team_key_details(cls, val): :param EncryptedFolderRotateTeamKeyDetails val: :rtype: EventDetails """ - return cls("encrypted_folder_rotate_team_key_details", val) + return cls('encrypted_folder_rotate_team_key_details', val) @classmethod def encrypted_folder_unenroll_client_details(cls, val): @@ -14308,7 +13359,7 @@ def encrypted_folder_unenroll_client_details(cls, val): :param EncryptedFolderUnenrollClientDetails val: :rtype: EventDetails """ - return cls("encrypted_folder_unenroll_client_details", val) + return cls('encrypted_folder_unenroll_client_details', val) @classmethod def team_encryption_key_activate_key_details(cls, val): @@ -14319,7 +13370,7 @@ def team_encryption_key_activate_key_details(cls, val): :param TeamEncryptionKeyActivateKeyDetails val: :rtype: EventDetails """ - return cls("team_encryption_key_activate_key_details", val) + return cls('team_encryption_key_activate_key_details', val) @classmethod def team_encryption_key_cancel_key_deletion_details(cls, val): @@ -14331,7 +13382,7 @@ def team_encryption_key_cancel_key_deletion_details(cls, val): :param TeamEncryptionKeyCancelKeyDeletionDetails val: :rtype: EventDetails """ - return cls("team_encryption_key_cancel_key_deletion_details", val) + return cls('team_encryption_key_cancel_key_deletion_details', val) @classmethod def team_encryption_key_create_key_details(cls, val): @@ -14342,7 +13393,7 @@ def team_encryption_key_create_key_details(cls, val): :param TeamEncryptionKeyCreateKeyDetails val: :rtype: EventDetails """ - return cls("team_encryption_key_create_key_details", val) + return cls('team_encryption_key_create_key_details', val) @classmethod def team_encryption_key_deactivate_key_details(cls, val): @@ -14353,7 +13404,7 @@ def team_encryption_key_deactivate_key_details(cls, val): :param TeamEncryptionKeyDeactivateKeyDetails val: :rtype: EventDetails """ - return cls("team_encryption_key_deactivate_key_details", val) + return cls('team_encryption_key_deactivate_key_details', val) @classmethod def team_encryption_key_delete_key_details(cls, val): @@ -14364,7 +13415,7 @@ def team_encryption_key_delete_key_details(cls, val): :param TeamEncryptionKeyDeleteKeyDetails val: :rtype: EventDetails """ - return cls("team_encryption_key_delete_key_details", val) + return cls('team_encryption_key_delete_key_details', val) @classmethod def team_encryption_key_disable_key_details(cls, val): @@ -14375,7 +13426,7 @@ def team_encryption_key_disable_key_details(cls, val): :param TeamEncryptionKeyDisableKeyDetails val: :rtype: EventDetails """ - return cls("team_encryption_key_disable_key_details", val) + return cls('team_encryption_key_disable_key_details', val) @classmethod def team_encryption_key_enable_key_details(cls, val): @@ -14386,7 +13437,7 @@ def team_encryption_key_enable_key_details(cls, val): :param TeamEncryptionKeyEnableKeyDetails val: :rtype: EventDetails """ - return cls("team_encryption_key_enable_key_details", val) + return cls('team_encryption_key_enable_key_details', val) @classmethod def team_encryption_key_rotate_key_details(cls, val): @@ -14397,7 +13448,7 @@ def team_encryption_key_rotate_key_details(cls, val): :param TeamEncryptionKeyRotateKeyDetails val: :rtype: EventDetails """ - return cls("team_encryption_key_rotate_key_details", val) + return cls('team_encryption_key_rotate_key_details', val) @classmethod def team_encryption_key_schedule_key_deletion_details(cls, val): @@ -14409,7 +13460,7 @@ def team_encryption_key_schedule_key_deletion_details(cls, val): :param TeamEncryptionKeyScheduleKeyDeletionDetails val: :rtype: EventDetails """ - return cls("team_encryption_key_schedule_key_deletion_details", val) + return cls('team_encryption_key_schedule_key_deletion_details', val) @classmethod def apply_naming_convention_details(cls, val): @@ -14420,7 +13471,7 @@ def apply_naming_convention_details(cls, val): :param ApplyNamingConventionDetails val: :rtype: EventDetails """ - return cls("apply_naming_convention_details", val) + return cls('apply_naming_convention_details', val) @classmethod def create_folder_details(cls, val): @@ -14431,7 +13482,7 @@ def create_folder_details(cls, val): :param CreateFolderDetails val: :rtype: EventDetails """ - return cls("create_folder_details", val) + return cls('create_folder_details', val) @classmethod def file_add_details(cls, val): @@ -14442,7 +13493,7 @@ def file_add_details(cls, val): :param FileAddDetails val: :rtype: EventDetails """ - return cls("file_add_details", val) + return cls('file_add_details', val) @classmethod def file_add_from_automation_details(cls, val): @@ -14453,7 +13504,7 @@ def file_add_from_automation_details(cls, val): :param FileAddFromAutomationDetails val: :rtype: EventDetails """ - return cls("file_add_from_automation_details", val) + return cls('file_add_from_automation_details', val) @classmethod def file_copy_details(cls, val): @@ -14464,7 +13515,7 @@ def file_copy_details(cls, val): :param FileCopyDetails val: :rtype: EventDetails """ - return cls("file_copy_details", val) + return cls('file_copy_details', val) @classmethod def file_delete_details(cls, val): @@ -14475,7 +13526,7 @@ def file_delete_details(cls, val): :param FileDeleteDetails val: :rtype: EventDetails """ - return cls("file_delete_details", val) + return cls('file_delete_details', val) @classmethod def file_download_details(cls, val): @@ -14486,7 +13537,7 @@ def file_download_details(cls, val): :param FileDownloadDetails val: :rtype: EventDetails """ - return cls("file_download_details", val) + return cls('file_download_details', val) @classmethod def file_edit_details(cls, val): @@ -14497,7 +13548,7 @@ def file_edit_details(cls, val): :param FileEditDetails val: :rtype: EventDetails """ - return cls("file_edit_details", val) + return cls('file_edit_details', val) @classmethod def file_get_copy_reference_details(cls, val): @@ -14508,7 +13559,7 @@ def file_get_copy_reference_details(cls, val): :param FileGetCopyReferenceDetails val: :rtype: EventDetails """ - return cls("file_get_copy_reference_details", val) + return cls('file_get_copy_reference_details', val) @classmethod def file_locking_lock_status_changed_details(cls, val): @@ -14519,7 +13570,7 @@ def file_locking_lock_status_changed_details(cls, val): :param FileLockingLockStatusChangedDetails val: :rtype: EventDetails """ - return cls("file_locking_lock_status_changed_details", val) + return cls('file_locking_lock_status_changed_details', val) @classmethod def file_move_details(cls, val): @@ -14530,7 +13581,7 @@ def file_move_details(cls, val): :param FileMoveDetails val: :rtype: EventDetails """ - return cls("file_move_details", val) + return cls('file_move_details', val) @classmethod def file_permanently_delete_details(cls, val): @@ -14541,7 +13592,7 @@ def file_permanently_delete_details(cls, val): :param FilePermanentlyDeleteDetails val: :rtype: EventDetails """ - return cls("file_permanently_delete_details", val) + return cls('file_permanently_delete_details', val) @classmethod def file_preview_details(cls, val): @@ -14552,7 +13603,7 @@ def file_preview_details(cls, val): :param FilePreviewDetails val: :rtype: EventDetails """ - return cls("file_preview_details", val) + return cls('file_preview_details', val) @classmethod def file_rename_details(cls, val): @@ -14563,7 +13614,7 @@ def file_rename_details(cls, val): :param FileRenameDetails val: :rtype: EventDetails """ - return cls("file_rename_details", val) + return cls('file_rename_details', val) @classmethod def file_restore_details(cls, val): @@ -14574,7 +13625,7 @@ def file_restore_details(cls, val): :param FileRestoreDetails val: :rtype: EventDetails """ - return cls("file_restore_details", val) + return cls('file_restore_details', val) @classmethod def file_revert_details(cls, val): @@ -14585,7 +13636,7 @@ def file_revert_details(cls, val): :param FileRevertDetails val: :rtype: EventDetails """ - return cls("file_revert_details", val) + return cls('file_revert_details', val) @classmethod def file_rollback_changes_details(cls, val): @@ -14596,7 +13647,7 @@ def file_rollback_changes_details(cls, val): :param FileRollbackChangesDetails val: :rtype: EventDetails """ - return cls("file_rollback_changes_details", val) + return cls('file_rollback_changes_details', val) @classmethod def file_save_copy_reference_details(cls, val): @@ -14607,7 +13658,7 @@ def file_save_copy_reference_details(cls, val): :param FileSaveCopyReferenceDetails val: :rtype: EventDetails """ - return cls("file_save_copy_reference_details", val) + return cls('file_save_copy_reference_details', val) @classmethod def folder_overview_description_changed_details(cls, val): @@ -14618,7 +13669,7 @@ def folder_overview_description_changed_details(cls, val): :param FolderOverviewDescriptionChangedDetails val: :rtype: EventDetails """ - return cls("folder_overview_description_changed_details", val) + return cls('folder_overview_description_changed_details', val) @classmethod def folder_overview_item_pinned_details(cls, val): @@ -14629,7 +13680,7 @@ def folder_overview_item_pinned_details(cls, val): :param FolderOverviewItemPinnedDetails val: :rtype: EventDetails """ - return cls("folder_overview_item_pinned_details", val) + return cls('folder_overview_item_pinned_details', val) @classmethod def folder_overview_item_unpinned_details(cls, val): @@ -14640,7 +13691,7 @@ def folder_overview_item_unpinned_details(cls, val): :param FolderOverviewItemUnpinnedDetails val: :rtype: EventDetails """ - return cls("folder_overview_item_unpinned_details", val) + return cls('folder_overview_item_unpinned_details', val) @classmethod def media_hub_file_downloaded_details(cls, val): @@ -14651,7 +13702,7 @@ def media_hub_file_downloaded_details(cls, val): :param MediaHubFileDownloadedDetails val: :rtype: EventDetails """ - return cls("media_hub_file_downloaded_details", val) + return cls('media_hub_file_downloaded_details', val) @classmethod def object_label_added_details(cls, val): @@ -14662,7 +13713,7 @@ def object_label_added_details(cls, val): :param ObjectLabelAddedDetails val: :rtype: EventDetails """ - return cls("object_label_added_details", val) + return cls('object_label_added_details', val) @classmethod def object_label_removed_details(cls, val): @@ -14673,7 +13724,7 @@ def object_label_removed_details(cls, val): :param ObjectLabelRemovedDetails val: :rtype: EventDetails """ - return cls("object_label_removed_details", val) + return cls('object_label_removed_details', val) @classmethod def object_label_updated_value_details(cls, val): @@ -14684,7 +13735,7 @@ def object_label_updated_value_details(cls, val): :param ObjectLabelUpdatedValueDetails val: :rtype: EventDetails """ - return cls("object_label_updated_value_details", val) + return cls('object_label_updated_value_details', val) @classmethod def organize_folder_with_tidy_details(cls, val): @@ -14695,7 +13746,7 @@ def organize_folder_with_tidy_details(cls, val): :param OrganizeFolderWithTidyDetails val: :rtype: EventDetails """ - return cls("organize_folder_with_tidy_details", val) + return cls('organize_folder_with_tidy_details', val) @classmethod def replay_file_delete_details(cls, val): @@ -14706,7 +13757,7 @@ def replay_file_delete_details(cls, val): :param ReplayFileDeleteDetails val: :rtype: EventDetails """ - return cls("replay_file_delete_details", val) + return cls('replay_file_delete_details', val) @classmethod def replay_file_downloaded_details(cls, val): @@ -14717,7 +13768,7 @@ def replay_file_downloaded_details(cls, val): :param ReplayFileDownloadedDetails val: :rtype: EventDetails """ - return cls("replay_file_downloaded_details", val) + return cls('replay_file_downloaded_details', val) @classmethod def replay_team_project_created_details(cls, val): @@ -14728,7 +13779,7 @@ def replay_team_project_created_details(cls, val): :param ReplayTeamProjectCreatedDetails val: :rtype: EventDetails """ - return cls("replay_team_project_created_details", val) + return cls('replay_team_project_created_details', val) @classmethod def rewind_folder_details(cls, val): @@ -14739,7 +13790,7 @@ def rewind_folder_details(cls, val): :param RewindFolderDetails val: :rtype: EventDetails """ - return cls("rewind_folder_details", val) + return cls('rewind_folder_details', val) @classmethod def undo_naming_convention_details(cls, val): @@ -14750,7 +13801,7 @@ def undo_naming_convention_details(cls, val): :param UndoNamingConventionDetails val: :rtype: EventDetails """ - return cls("undo_naming_convention_details", val) + return cls('undo_naming_convention_details', val) @classmethod def undo_organize_folder_with_tidy_details(cls, val): @@ -14761,7 +13812,7 @@ def undo_organize_folder_with_tidy_details(cls, val): :param UndoOrganizeFolderWithTidyDetails val: :rtype: EventDetails """ - return cls("undo_organize_folder_with_tidy_details", val) + return cls('undo_organize_folder_with_tidy_details', val) @classmethod def user_tags_added_details(cls, val): @@ -14772,7 +13823,7 @@ def user_tags_added_details(cls, val): :param UserTagsAddedDetails val: :rtype: EventDetails """ - return cls("user_tags_added_details", val) + return cls('user_tags_added_details', val) @classmethod def user_tags_removed_details(cls, val): @@ -14783,7 +13834,7 @@ def user_tags_removed_details(cls, val): :param UserTagsRemovedDetails val: :rtype: EventDetails """ - return cls("user_tags_removed_details", val) + return cls('user_tags_removed_details', val) @classmethod def email_ingest_receive_file_details(cls, val): @@ -14794,7 +13845,7 @@ def email_ingest_receive_file_details(cls, val): :param EmailIngestReceiveFileDetails val: :rtype: EventDetails """ - return cls("email_ingest_receive_file_details", val) + return cls('email_ingest_receive_file_details', val) @classmethod def file_request_auto_close_details(cls, val): @@ -14805,7 +13856,7 @@ def file_request_auto_close_details(cls, val): :param FileRequestAutoCloseDetails val: :rtype: EventDetails """ - return cls("file_request_auto_close_details", val) + return cls('file_request_auto_close_details', val) @classmethod def file_request_change_details(cls, val): @@ -14816,7 +13867,7 @@ def file_request_change_details(cls, val): :param FileRequestChangeDetails val: :rtype: EventDetails """ - return cls("file_request_change_details", val) + return cls('file_request_change_details', val) @classmethod def file_request_close_details(cls, val): @@ -14827,7 +13878,7 @@ def file_request_close_details(cls, val): :param FileRequestCloseDetails val: :rtype: EventDetails """ - return cls("file_request_close_details", val) + return cls('file_request_close_details', val) @classmethod def file_request_create_details(cls, val): @@ -14838,7 +13889,7 @@ def file_request_create_details(cls, val): :param FileRequestCreateDetails val: :rtype: EventDetails """ - return cls("file_request_create_details", val) + return cls('file_request_create_details', val) @classmethod def file_request_delete_details(cls, val): @@ -14849,7 +13900,7 @@ def file_request_delete_details(cls, val): :param FileRequestDeleteDetails val: :rtype: EventDetails """ - return cls("file_request_delete_details", val) + return cls('file_request_delete_details', val) @classmethod def file_request_receive_file_details(cls, val): @@ -14860,7 +13911,7 @@ def file_request_receive_file_details(cls, val): :param FileRequestReceiveFileDetails val: :rtype: EventDetails """ - return cls("file_request_receive_file_details", val) + return cls('file_request_receive_file_details', val) @classmethod def group_add_external_id_details(cls, val): @@ -14871,7 +13922,7 @@ def group_add_external_id_details(cls, val): :param GroupAddExternalIdDetails val: :rtype: EventDetails """ - return cls("group_add_external_id_details", val) + return cls('group_add_external_id_details', val) @classmethod def group_add_member_details(cls, val): @@ -14882,7 +13933,7 @@ def group_add_member_details(cls, val): :param GroupAddMemberDetails val: :rtype: EventDetails """ - return cls("group_add_member_details", val) + return cls('group_add_member_details', val) @classmethod def group_change_external_id_details(cls, val): @@ -14893,7 +13944,7 @@ def group_change_external_id_details(cls, val): :param GroupChangeExternalIdDetails val: :rtype: EventDetails """ - return cls("group_change_external_id_details", val) + return cls('group_change_external_id_details', val) @classmethod def group_change_management_type_details(cls, val): @@ -14904,7 +13955,7 @@ def group_change_management_type_details(cls, val): :param GroupChangeManagementTypeDetails val: :rtype: EventDetails """ - return cls("group_change_management_type_details", val) + return cls('group_change_management_type_details', val) @classmethod def group_change_member_role_details(cls, val): @@ -14915,7 +13966,7 @@ def group_change_member_role_details(cls, val): :param GroupChangeMemberRoleDetails val: :rtype: EventDetails """ - return cls("group_change_member_role_details", val) + return cls('group_change_member_role_details', val) @classmethod def group_create_details(cls, val): @@ -14926,7 +13977,7 @@ def group_create_details(cls, val): :param GroupCreateDetails val: :rtype: EventDetails """ - return cls("group_create_details", val) + return cls('group_create_details', val) @classmethod def group_delete_details(cls, val): @@ -14937,7 +13988,7 @@ def group_delete_details(cls, val): :param GroupDeleteDetails val: :rtype: EventDetails """ - return cls("group_delete_details", val) + return cls('group_delete_details', val) @classmethod def group_description_updated_details(cls, val): @@ -14948,7 +13999,7 @@ def group_description_updated_details(cls, val): :param GroupDescriptionUpdatedDetails val: :rtype: EventDetails """ - return cls("group_description_updated_details", val) + return cls('group_description_updated_details', val) @classmethod def group_external_sharing_setting_override_changed_details(cls, val): @@ -14960,7 +14011,7 @@ def group_external_sharing_setting_override_changed_details(cls, val): :param GroupExternalSharingSettingOverrideChangedDetails val: :rtype: EventDetails """ - return cls("group_external_sharing_setting_override_changed_details", val) + return cls('group_external_sharing_setting_override_changed_details', val) @classmethod def group_join_policy_updated_details(cls, val): @@ -14971,7 +14022,7 @@ def group_join_policy_updated_details(cls, val): :param GroupJoinPolicyUpdatedDetails val: :rtype: EventDetails """ - return cls("group_join_policy_updated_details", val) + return cls('group_join_policy_updated_details', val) @classmethod def group_moved_details(cls, val): @@ -14982,7 +14033,7 @@ def group_moved_details(cls, val): :param GroupMovedDetails val: :rtype: EventDetails """ - return cls("group_moved_details", val) + return cls('group_moved_details', val) @classmethod def group_remove_external_id_details(cls, val): @@ -14993,7 +14044,7 @@ def group_remove_external_id_details(cls, val): :param GroupRemoveExternalIdDetails val: :rtype: EventDetails """ - return cls("group_remove_external_id_details", val) + return cls('group_remove_external_id_details', val) @classmethod def group_remove_member_details(cls, val): @@ -15004,7 +14055,7 @@ def group_remove_member_details(cls, val): :param GroupRemoveMemberDetails val: :rtype: EventDetails """ - return cls("group_remove_member_details", val) + return cls('group_remove_member_details', val) @classmethod def group_rename_details(cls, val): @@ -15015,7 +14066,7 @@ def group_rename_details(cls, val): :param GroupRenameDetails val: :rtype: EventDetails """ - return cls("group_rename_details", val) + return cls('group_rename_details', val) @classmethod def account_lock_or_unlocked_details(cls, val): @@ -15026,7 +14077,7 @@ def account_lock_or_unlocked_details(cls, val): :param AccountLockOrUnlockedDetails val: :rtype: EventDetails """ - return cls("account_lock_or_unlocked_details", val) + return cls('account_lock_or_unlocked_details', val) @classmethod def emm_error_details(cls, val): @@ -15037,7 +14088,7 @@ def emm_error_details(cls, val): :param EmmErrorDetails val: :rtype: EventDetails """ - return cls("emm_error_details", val) + return cls('emm_error_details', val) @classmethod def guest_admin_signed_in_via_trusted_teams_details(cls, val): @@ -15049,7 +14100,7 @@ def guest_admin_signed_in_via_trusted_teams_details(cls, val): :param GuestAdminSignedInViaTrustedTeamsDetails val: :rtype: EventDetails """ - return cls("guest_admin_signed_in_via_trusted_teams_details", val) + return cls('guest_admin_signed_in_via_trusted_teams_details', val) @classmethod def guest_admin_signed_out_via_trusted_teams_details(cls, val): @@ -15061,7 +14112,7 @@ def guest_admin_signed_out_via_trusted_teams_details(cls, val): :param GuestAdminSignedOutViaTrustedTeamsDetails val: :rtype: EventDetails """ - return cls("guest_admin_signed_out_via_trusted_teams_details", val) + return cls('guest_admin_signed_out_via_trusted_teams_details', val) @classmethod def login_fail_details(cls, val): @@ -15072,7 +14123,7 @@ def login_fail_details(cls, val): :param LoginFailDetails val: :rtype: EventDetails """ - return cls("login_fail_details", val) + return cls('login_fail_details', val) @classmethod def login_success_details(cls, val): @@ -15083,7 +14134,7 @@ def login_success_details(cls, val): :param LoginSuccessDetails val: :rtype: EventDetails """ - return cls("login_success_details", val) + return cls('login_success_details', val) @classmethod def logout_details(cls, val): @@ -15094,7 +14145,7 @@ def logout_details(cls, val): :param LogoutDetails val: :rtype: EventDetails """ - return cls("logout_details", val) + return cls('logout_details', val) @classmethod def reseller_support_session_end_details(cls, val): @@ -15105,7 +14156,7 @@ def reseller_support_session_end_details(cls, val): :param ResellerSupportSessionEndDetails val: :rtype: EventDetails """ - return cls("reseller_support_session_end_details", val) + return cls('reseller_support_session_end_details', val) @classmethod def reseller_support_session_start_details(cls, val): @@ -15116,7 +14167,7 @@ def reseller_support_session_start_details(cls, val): :param ResellerSupportSessionStartDetails val: :rtype: EventDetails """ - return cls("reseller_support_session_start_details", val) + return cls('reseller_support_session_start_details', val) @classmethod def sign_in_as_session_end_details(cls, val): @@ -15127,7 +14178,7 @@ def sign_in_as_session_end_details(cls, val): :param SignInAsSessionEndDetails val: :rtype: EventDetails """ - return cls("sign_in_as_session_end_details", val) + return cls('sign_in_as_session_end_details', val) @classmethod def sign_in_as_session_start_details(cls, val): @@ -15138,7 +14189,7 @@ def sign_in_as_session_start_details(cls, val): :param SignInAsSessionStartDetails val: :rtype: EventDetails """ - return cls("sign_in_as_session_start_details", val) + return cls('sign_in_as_session_start_details', val) @classmethod def sso_error_details(cls, val): @@ -15149,7 +14200,7 @@ def sso_error_details(cls, val): :param SsoErrorDetails val: :rtype: EventDetails """ - return cls("sso_error_details", val) + return cls('sso_error_details', val) @classmethod def addon_assigned_details(cls, val): @@ -15160,7 +14211,7 @@ def addon_assigned_details(cls, val): :param AddonAssignedDetails val: :rtype: EventDetails """ - return cls("addon_assigned_details", val) + return cls('addon_assigned_details', val) @classmethod def addon_removed_details(cls, val): @@ -15171,7 +14222,7 @@ def addon_removed_details(cls, val): :param AddonRemovedDetails val: :rtype: EventDetails """ - return cls("addon_removed_details", val) + return cls('addon_removed_details', val) @classmethod def backup_admin_invitation_sent_details(cls, val): @@ -15182,7 +14233,7 @@ def backup_admin_invitation_sent_details(cls, val): :param BackupAdminInvitationSentDetails val: :rtype: EventDetails """ - return cls("backup_admin_invitation_sent_details", val) + return cls('backup_admin_invitation_sent_details', val) @classmethod def backup_invitation_opened_details(cls, val): @@ -15193,7 +14244,7 @@ def backup_invitation_opened_details(cls, val): :param BackupInvitationOpenedDetails val: :rtype: EventDetails """ - return cls("backup_invitation_opened_details", val) + return cls('backup_invitation_opened_details', val) @classmethod def create_team_invite_link_details(cls, val): @@ -15204,7 +14255,7 @@ def create_team_invite_link_details(cls, val): :param CreateTeamInviteLinkDetails val: :rtype: EventDetails """ - return cls("create_team_invite_link_details", val) + return cls('create_team_invite_link_details', val) @classmethod def delete_team_invite_link_details(cls, val): @@ -15215,7 +14266,7 @@ def delete_team_invite_link_details(cls, val): :param DeleteTeamInviteLinkDetails val: :rtype: EventDetails """ - return cls("delete_team_invite_link_details", val) + return cls('delete_team_invite_link_details', val) @classmethod def member_add_external_id_details(cls, val): @@ -15226,7 +14277,7 @@ def member_add_external_id_details(cls, val): :param MemberAddExternalIdDetails val: :rtype: EventDetails """ - return cls("member_add_external_id_details", val) + return cls('member_add_external_id_details', val) @classmethod def member_add_name_details(cls, val): @@ -15237,7 +14288,7 @@ def member_add_name_details(cls, val): :param MemberAddNameDetails val: :rtype: EventDetails """ - return cls("member_add_name_details", val) + return cls('member_add_name_details', val) @classmethod def member_change_admin_role_details(cls, val): @@ -15248,7 +14299,7 @@ def member_change_admin_role_details(cls, val): :param MemberChangeAdminRoleDetails val: :rtype: EventDetails """ - return cls("member_change_admin_role_details", val) + return cls('member_change_admin_role_details', val) @classmethod def member_change_email_details(cls, val): @@ -15259,7 +14310,7 @@ def member_change_email_details(cls, val): :param MemberChangeEmailDetails val: :rtype: EventDetails """ - return cls("member_change_email_details", val) + return cls('member_change_email_details', val) @classmethod def member_change_external_id_details(cls, val): @@ -15270,7 +14321,7 @@ def member_change_external_id_details(cls, val): :param MemberChangeExternalIdDetails val: :rtype: EventDetails """ - return cls("member_change_external_id_details", val) + return cls('member_change_external_id_details', val) @classmethod def member_change_membership_type_details(cls, val): @@ -15281,7 +14332,7 @@ def member_change_membership_type_details(cls, val): :param MemberChangeMembershipTypeDetails val: :rtype: EventDetails """ - return cls("member_change_membership_type_details", val) + return cls('member_change_membership_type_details', val) @classmethod def member_change_name_details(cls, val): @@ -15292,7 +14343,7 @@ def member_change_name_details(cls, val): :param MemberChangeNameDetails val: :rtype: EventDetails """ - return cls("member_change_name_details", val) + return cls('member_change_name_details', val) @classmethod def member_change_reseller_role_details(cls, val): @@ -15303,7 +14354,7 @@ def member_change_reseller_role_details(cls, val): :param MemberChangeResellerRoleDetails val: :rtype: EventDetails """ - return cls("member_change_reseller_role_details", val) + return cls('member_change_reseller_role_details', val) @classmethod def member_change_status_details(cls, val): @@ -15314,7 +14365,7 @@ def member_change_status_details(cls, val): :param MemberChangeStatusDetails val: :rtype: EventDetails """ - return cls("member_change_status_details", val) + return cls('member_change_status_details', val) @classmethod def member_delete_manual_contacts_details(cls, val): @@ -15325,7 +14376,7 @@ def member_delete_manual_contacts_details(cls, val): :param MemberDeleteManualContactsDetails val: :rtype: EventDetails """ - return cls("member_delete_manual_contacts_details", val) + return cls('member_delete_manual_contacts_details', val) @classmethod def member_delete_profile_photo_details(cls, val): @@ -15336,7 +14387,7 @@ def member_delete_profile_photo_details(cls, val): :param MemberDeleteProfilePhotoDetails val: :rtype: EventDetails """ - return cls("member_delete_profile_photo_details", val) + return cls('member_delete_profile_photo_details', val) @classmethod def member_permanently_delete_account_contents_details(cls, val): @@ -15348,7 +14399,7 @@ def member_permanently_delete_account_contents_details(cls, val): :param MemberPermanentlyDeleteAccountContentsDetails val: :rtype: EventDetails """ - return cls("member_permanently_delete_account_contents_details", val) + return cls('member_permanently_delete_account_contents_details', val) @classmethod def member_remove_external_id_details(cls, val): @@ -15359,7 +14410,7 @@ def member_remove_external_id_details(cls, val): :param MemberRemoveExternalIdDetails val: :rtype: EventDetails """ - return cls("member_remove_external_id_details", val) + return cls('member_remove_external_id_details', val) @classmethod def member_set_profile_photo_details(cls, val): @@ -15370,7 +14421,7 @@ def member_set_profile_photo_details(cls, val): :param MemberSetProfilePhotoDetails val: :rtype: EventDetails """ - return cls("member_set_profile_photo_details", val) + return cls('member_set_profile_photo_details', val) @classmethod def member_space_limits_add_custom_quota_details(cls, val): @@ -15381,7 +14432,7 @@ def member_space_limits_add_custom_quota_details(cls, val): :param MemberSpaceLimitsAddCustomQuotaDetails val: :rtype: EventDetails """ - return cls("member_space_limits_add_custom_quota_details", val) + return cls('member_space_limits_add_custom_quota_details', val) @classmethod def member_space_limits_change_custom_quota_details(cls, val): @@ -15393,7 +14444,7 @@ def member_space_limits_change_custom_quota_details(cls, val): :param MemberSpaceLimitsChangeCustomQuotaDetails val: :rtype: EventDetails """ - return cls("member_space_limits_change_custom_quota_details", val) + return cls('member_space_limits_change_custom_quota_details', val) @classmethod def member_space_limits_change_status_details(cls, val): @@ -15404,7 +14455,7 @@ def member_space_limits_change_status_details(cls, val): :param MemberSpaceLimitsChangeStatusDetails val: :rtype: EventDetails """ - return cls("member_space_limits_change_status_details", val) + return cls('member_space_limits_change_status_details', val) @classmethod def member_space_limits_remove_custom_quota_details(cls, val): @@ -15416,7 +14467,7 @@ def member_space_limits_remove_custom_quota_details(cls, val): :param MemberSpaceLimitsRemoveCustomQuotaDetails val: :rtype: EventDetails """ - return cls("member_space_limits_remove_custom_quota_details", val) + return cls('member_space_limits_remove_custom_quota_details', val) @classmethod def member_suggest_details(cls, val): @@ -15427,7 +14478,7 @@ def member_suggest_details(cls, val): :param MemberSuggestDetails val: :rtype: EventDetails """ - return cls("member_suggest_details", val) + return cls('member_suggest_details', val) @classmethod def member_transfer_account_contents_details(cls, val): @@ -15438,7 +14489,7 @@ def member_transfer_account_contents_details(cls, val): :param MemberTransferAccountContentsDetails val: :rtype: EventDetails """ - return cls("member_transfer_account_contents_details", val) + return cls('member_transfer_account_contents_details', val) @classmethod def pending_secondary_email_added_details(cls, val): @@ -15449,7 +14500,7 @@ def pending_secondary_email_added_details(cls, val): :param PendingSecondaryEmailAddedDetails val: :rtype: EventDetails """ - return cls("pending_secondary_email_added_details", val) + return cls('pending_secondary_email_added_details', val) @classmethod def product_assigned_to_member_details(cls, val): @@ -15460,7 +14511,7 @@ def product_assigned_to_member_details(cls, val): :param ProductAssignedToMemberDetails val: :rtype: EventDetails """ - return cls("product_assigned_to_member_details", val) + return cls('product_assigned_to_member_details', val) @classmethod def product_removed_from_member_details(cls, val): @@ -15471,7 +14522,7 @@ def product_removed_from_member_details(cls, val): :param ProductRemovedFromMemberDetails val: :rtype: EventDetails """ - return cls("product_removed_from_member_details", val) + return cls('product_removed_from_member_details', val) @classmethod def secondary_email_deleted_details(cls, val): @@ -15482,7 +14533,7 @@ def secondary_email_deleted_details(cls, val): :param SecondaryEmailDeletedDetails val: :rtype: EventDetails """ - return cls("secondary_email_deleted_details", val) + return cls('secondary_email_deleted_details', val) @classmethod def secondary_email_verified_details(cls, val): @@ -15493,7 +14544,7 @@ def secondary_email_verified_details(cls, val): :param SecondaryEmailVerifiedDetails val: :rtype: EventDetails """ - return cls("secondary_email_verified_details", val) + return cls('secondary_email_verified_details', val) @classmethod def secondary_mails_policy_changed_details(cls, val): @@ -15504,7 +14555,7 @@ def secondary_mails_policy_changed_details(cls, val): :param SecondaryMailsPolicyChangedDetails val: :rtype: EventDetails """ - return cls("secondary_mails_policy_changed_details", val) + return cls('secondary_mails_policy_changed_details', val) @classmethod def binder_add_page_details(cls, val): @@ -15515,7 +14566,7 @@ def binder_add_page_details(cls, val): :param BinderAddPageDetails val: :rtype: EventDetails """ - return cls("binder_add_page_details", val) + return cls('binder_add_page_details', val) @classmethod def binder_add_section_details(cls, val): @@ -15526,7 +14577,7 @@ def binder_add_section_details(cls, val): :param BinderAddSectionDetails val: :rtype: EventDetails """ - return cls("binder_add_section_details", val) + return cls('binder_add_section_details', val) @classmethod def binder_remove_page_details(cls, val): @@ -15537,7 +14588,7 @@ def binder_remove_page_details(cls, val): :param BinderRemovePageDetails val: :rtype: EventDetails """ - return cls("binder_remove_page_details", val) + return cls('binder_remove_page_details', val) @classmethod def binder_remove_section_details(cls, val): @@ -15548,7 +14599,7 @@ def binder_remove_section_details(cls, val): :param BinderRemoveSectionDetails val: :rtype: EventDetails """ - return cls("binder_remove_section_details", val) + return cls('binder_remove_section_details', val) @classmethod def binder_rename_page_details(cls, val): @@ -15559,7 +14610,7 @@ def binder_rename_page_details(cls, val): :param BinderRenamePageDetails val: :rtype: EventDetails """ - return cls("binder_rename_page_details", val) + return cls('binder_rename_page_details', val) @classmethod def binder_rename_section_details(cls, val): @@ -15570,7 +14621,7 @@ def binder_rename_section_details(cls, val): :param BinderRenameSectionDetails val: :rtype: EventDetails """ - return cls("binder_rename_section_details", val) + return cls('binder_rename_section_details', val) @classmethod def binder_reorder_page_details(cls, val): @@ -15581,7 +14632,7 @@ def binder_reorder_page_details(cls, val): :param BinderReorderPageDetails val: :rtype: EventDetails """ - return cls("binder_reorder_page_details", val) + return cls('binder_reorder_page_details', val) @classmethod def binder_reorder_section_details(cls, val): @@ -15592,7 +14643,7 @@ def binder_reorder_section_details(cls, val): :param BinderReorderSectionDetails val: :rtype: EventDetails """ - return cls("binder_reorder_section_details", val) + return cls('binder_reorder_section_details', val) @classmethod def paper_content_add_member_details(cls, val): @@ -15603,7 +14654,7 @@ def paper_content_add_member_details(cls, val): :param PaperContentAddMemberDetails val: :rtype: EventDetails """ - return cls("paper_content_add_member_details", val) + return cls('paper_content_add_member_details', val) @classmethod def paper_content_add_to_folder_details(cls, val): @@ -15614,7 +14665,7 @@ def paper_content_add_to_folder_details(cls, val): :param PaperContentAddToFolderDetails val: :rtype: EventDetails """ - return cls("paper_content_add_to_folder_details", val) + return cls('paper_content_add_to_folder_details', val) @classmethod def paper_content_archive_details(cls, val): @@ -15625,7 +14676,7 @@ def paper_content_archive_details(cls, val): :param PaperContentArchiveDetails val: :rtype: EventDetails """ - return cls("paper_content_archive_details", val) + return cls('paper_content_archive_details', val) @classmethod def paper_content_create_details(cls, val): @@ -15636,7 +14687,7 @@ def paper_content_create_details(cls, val): :param PaperContentCreateDetails val: :rtype: EventDetails """ - return cls("paper_content_create_details", val) + return cls('paper_content_create_details', val) @classmethod def paper_content_permanently_delete_details(cls, val): @@ -15647,7 +14698,7 @@ def paper_content_permanently_delete_details(cls, val): :param PaperContentPermanentlyDeleteDetails val: :rtype: EventDetails """ - return cls("paper_content_permanently_delete_details", val) + return cls('paper_content_permanently_delete_details', val) @classmethod def paper_content_remove_from_folder_details(cls, val): @@ -15658,7 +14709,7 @@ def paper_content_remove_from_folder_details(cls, val): :param PaperContentRemoveFromFolderDetails val: :rtype: EventDetails """ - return cls("paper_content_remove_from_folder_details", val) + return cls('paper_content_remove_from_folder_details', val) @classmethod def paper_content_remove_member_details(cls, val): @@ -15669,7 +14720,7 @@ def paper_content_remove_member_details(cls, val): :param PaperContentRemoveMemberDetails val: :rtype: EventDetails """ - return cls("paper_content_remove_member_details", val) + return cls('paper_content_remove_member_details', val) @classmethod def paper_content_rename_details(cls, val): @@ -15680,7 +14731,7 @@ def paper_content_rename_details(cls, val): :param PaperContentRenameDetails val: :rtype: EventDetails """ - return cls("paper_content_rename_details", val) + return cls('paper_content_rename_details', val) @classmethod def paper_content_restore_details(cls, val): @@ -15691,7 +14742,7 @@ def paper_content_restore_details(cls, val): :param PaperContentRestoreDetails val: :rtype: EventDetails """ - return cls("paper_content_restore_details", val) + return cls('paper_content_restore_details', val) @classmethod def paper_doc_add_comment_details(cls, val): @@ -15702,7 +14753,7 @@ def paper_doc_add_comment_details(cls, val): :param PaperDocAddCommentDetails val: :rtype: EventDetails """ - return cls("paper_doc_add_comment_details", val) + return cls('paper_doc_add_comment_details', val) @classmethod def paper_doc_change_member_role_details(cls, val): @@ -15713,7 +14764,7 @@ def paper_doc_change_member_role_details(cls, val): :param PaperDocChangeMemberRoleDetails val: :rtype: EventDetails """ - return cls("paper_doc_change_member_role_details", val) + return cls('paper_doc_change_member_role_details', val) @classmethod def paper_doc_change_sharing_policy_details(cls, val): @@ -15724,7 +14775,7 @@ def paper_doc_change_sharing_policy_details(cls, val): :param PaperDocChangeSharingPolicyDetails val: :rtype: EventDetails """ - return cls("paper_doc_change_sharing_policy_details", val) + return cls('paper_doc_change_sharing_policy_details', val) @classmethod def paper_doc_change_subscription_details(cls, val): @@ -15735,7 +14786,7 @@ def paper_doc_change_subscription_details(cls, val): :param PaperDocChangeSubscriptionDetails val: :rtype: EventDetails """ - return cls("paper_doc_change_subscription_details", val) + return cls('paper_doc_change_subscription_details', val) @classmethod def paper_doc_deleted_details(cls, val): @@ -15746,7 +14797,7 @@ def paper_doc_deleted_details(cls, val): :param PaperDocDeletedDetails val: :rtype: EventDetails """ - return cls("paper_doc_deleted_details", val) + return cls('paper_doc_deleted_details', val) @classmethod def paper_doc_delete_comment_details(cls, val): @@ -15757,7 +14808,7 @@ def paper_doc_delete_comment_details(cls, val): :param PaperDocDeleteCommentDetails val: :rtype: EventDetails """ - return cls("paper_doc_delete_comment_details", val) + return cls('paper_doc_delete_comment_details', val) @classmethod def paper_doc_download_details(cls, val): @@ -15768,7 +14819,7 @@ def paper_doc_download_details(cls, val): :param PaperDocDownloadDetails val: :rtype: EventDetails """ - return cls("paper_doc_download_details", val) + return cls('paper_doc_download_details', val) @classmethod def paper_doc_edit_details(cls, val): @@ -15779,7 +14830,7 @@ def paper_doc_edit_details(cls, val): :param PaperDocEditDetails val: :rtype: EventDetails """ - return cls("paper_doc_edit_details", val) + return cls('paper_doc_edit_details', val) @classmethod def paper_doc_edit_comment_details(cls, val): @@ -15790,7 +14841,7 @@ def paper_doc_edit_comment_details(cls, val): :param PaperDocEditCommentDetails val: :rtype: EventDetails """ - return cls("paper_doc_edit_comment_details", val) + return cls('paper_doc_edit_comment_details', val) @classmethod def paper_doc_followed_details(cls, val): @@ -15801,7 +14852,7 @@ def paper_doc_followed_details(cls, val): :param PaperDocFollowedDetails val: :rtype: EventDetails """ - return cls("paper_doc_followed_details", val) + return cls('paper_doc_followed_details', val) @classmethod def paper_doc_mention_details(cls, val): @@ -15812,7 +14863,7 @@ def paper_doc_mention_details(cls, val): :param PaperDocMentionDetails val: :rtype: EventDetails """ - return cls("paper_doc_mention_details", val) + return cls('paper_doc_mention_details', val) @classmethod def paper_doc_ownership_changed_details(cls, val): @@ -15823,7 +14874,7 @@ def paper_doc_ownership_changed_details(cls, val): :param PaperDocOwnershipChangedDetails val: :rtype: EventDetails """ - return cls("paper_doc_ownership_changed_details", val) + return cls('paper_doc_ownership_changed_details', val) @classmethod def paper_doc_request_access_details(cls, val): @@ -15834,7 +14885,7 @@ def paper_doc_request_access_details(cls, val): :param PaperDocRequestAccessDetails val: :rtype: EventDetails """ - return cls("paper_doc_request_access_details", val) + return cls('paper_doc_request_access_details', val) @classmethod def paper_doc_resolve_comment_details(cls, val): @@ -15845,7 +14896,7 @@ def paper_doc_resolve_comment_details(cls, val): :param PaperDocResolveCommentDetails val: :rtype: EventDetails """ - return cls("paper_doc_resolve_comment_details", val) + return cls('paper_doc_resolve_comment_details', val) @classmethod def paper_doc_revert_details(cls, val): @@ -15856,7 +14907,7 @@ def paper_doc_revert_details(cls, val): :param PaperDocRevertDetails val: :rtype: EventDetails """ - return cls("paper_doc_revert_details", val) + return cls('paper_doc_revert_details', val) @classmethod def paper_doc_slack_share_details(cls, val): @@ -15867,7 +14918,7 @@ def paper_doc_slack_share_details(cls, val): :param PaperDocSlackShareDetails val: :rtype: EventDetails """ - return cls("paper_doc_slack_share_details", val) + return cls('paper_doc_slack_share_details', val) @classmethod def paper_doc_team_invite_details(cls, val): @@ -15878,7 +14929,7 @@ def paper_doc_team_invite_details(cls, val): :param PaperDocTeamInviteDetails val: :rtype: EventDetails """ - return cls("paper_doc_team_invite_details", val) + return cls('paper_doc_team_invite_details', val) @classmethod def paper_doc_trashed_details(cls, val): @@ -15889,7 +14940,7 @@ def paper_doc_trashed_details(cls, val): :param PaperDocTrashedDetails val: :rtype: EventDetails """ - return cls("paper_doc_trashed_details", val) + return cls('paper_doc_trashed_details', val) @classmethod def paper_doc_unresolve_comment_details(cls, val): @@ -15900,7 +14951,7 @@ def paper_doc_unresolve_comment_details(cls, val): :param PaperDocUnresolveCommentDetails val: :rtype: EventDetails """ - return cls("paper_doc_unresolve_comment_details", val) + return cls('paper_doc_unresolve_comment_details', val) @classmethod def paper_doc_untrashed_details(cls, val): @@ -15911,7 +14962,7 @@ def paper_doc_untrashed_details(cls, val): :param PaperDocUntrashedDetails val: :rtype: EventDetails """ - return cls("paper_doc_untrashed_details", val) + return cls('paper_doc_untrashed_details', val) @classmethod def paper_doc_view_details(cls, val): @@ -15922,7 +14973,7 @@ def paper_doc_view_details(cls, val): :param PaperDocViewDetails val: :rtype: EventDetails """ - return cls("paper_doc_view_details", val) + return cls('paper_doc_view_details', val) @classmethod def paper_external_view_allow_details(cls, val): @@ -15933,7 +14984,7 @@ def paper_external_view_allow_details(cls, val): :param PaperExternalViewAllowDetails val: :rtype: EventDetails """ - return cls("paper_external_view_allow_details", val) + return cls('paper_external_view_allow_details', val) @classmethod def paper_external_view_default_team_details(cls, val): @@ -15944,7 +14995,7 @@ def paper_external_view_default_team_details(cls, val): :param PaperExternalViewDefaultTeamDetails val: :rtype: EventDetails """ - return cls("paper_external_view_default_team_details", val) + return cls('paper_external_view_default_team_details', val) @classmethod def paper_external_view_forbid_details(cls, val): @@ -15955,7 +15006,7 @@ def paper_external_view_forbid_details(cls, val): :param PaperExternalViewForbidDetails val: :rtype: EventDetails """ - return cls("paper_external_view_forbid_details", val) + return cls('paper_external_view_forbid_details', val) @classmethod def paper_folder_change_subscription_details(cls, val): @@ -15966,7 +15017,7 @@ def paper_folder_change_subscription_details(cls, val): :param PaperFolderChangeSubscriptionDetails val: :rtype: EventDetails """ - return cls("paper_folder_change_subscription_details", val) + return cls('paper_folder_change_subscription_details', val) @classmethod def paper_folder_deleted_details(cls, val): @@ -15977,7 +15028,7 @@ def paper_folder_deleted_details(cls, val): :param PaperFolderDeletedDetails val: :rtype: EventDetails """ - return cls("paper_folder_deleted_details", val) + return cls('paper_folder_deleted_details', val) @classmethod def paper_folder_followed_details(cls, val): @@ -15988,7 +15039,7 @@ def paper_folder_followed_details(cls, val): :param PaperFolderFollowedDetails val: :rtype: EventDetails """ - return cls("paper_folder_followed_details", val) + return cls('paper_folder_followed_details', val) @classmethod def paper_folder_team_invite_details(cls, val): @@ -15999,7 +15050,7 @@ def paper_folder_team_invite_details(cls, val): :param PaperFolderTeamInviteDetails val: :rtype: EventDetails """ - return cls("paper_folder_team_invite_details", val) + return cls('paper_folder_team_invite_details', val) @classmethod def paper_published_link_change_permission_details(cls, val): @@ -16011,7 +15062,7 @@ def paper_published_link_change_permission_details(cls, val): :param PaperPublishedLinkChangePermissionDetails val: :rtype: EventDetails """ - return cls("paper_published_link_change_permission_details", val) + return cls('paper_published_link_change_permission_details', val) @classmethod def paper_published_link_create_details(cls, val): @@ -16022,7 +15073,7 @@ def paper_published_link_create_details(cls, val): :param PaperPublishedLinkCreateDetails val: :rtype: EventDetails """ - return cls("paper_published_link_create_details", val) + return cls('paper_published_link_create_details', val) @classmethod def paper_published_link_disabled_details(cls, val): @@ -16033,7 +15084,7 @@ def paper_published_link_disabled_details(cls, val): :param PaperPublishedLinkDisabledDetails val: :rtype: EventDetails """ - return cls("paper_published_link_disabled_details", val) + return cls('paper_published_link_disabled_details', val) @classmethod def paper_published_link_view_details(cls, val): @@ -16044,7 +15095,7 @@ def paper_published_link_view_details(cls, val): :param PaperPublishedLinkViewDetails val: :rtype: EventDetails """ - return cls("paper_published_link_view_details", val) + return cls('paper_published_link_view_details', val) @classmethod def password_change_details(cls, val): @@ -16055,7 +15106,7 @@ def password_change_details(cls, val): :param PasswordChangeDetails val: :rtype: EventDetails """ - return cls("password_change_details", val) + return cls('password_change_details', val) @classmethod def password_reset_details(cls, val): @@ -16066,7 +15117,7 @@ def password_reset_details(cls, val): :param PasswordResetDetails val: :rtype: EventDetails """ - return cls("password_reset_details", val) + return cls('password_reset_details', val) @classmethod def password_reset_all_details(cls, val): @@ -16077,7 +15128,7 @@ def password_reset_all_details(cls, val): :param PasswordResetAllDetails val: :rtype: EventDetails """ - return cls("password_reset_all_details", val) + return cls('password_reset_all_details', val) @classmethod def protect_internal_domains_changed_details(cls, val): @@ -16088,7 +15139,7 @@ def protect_internal_domains_changed_details(cls, val): :param ProtectInternalDomainsChangedDetails val: :rtype: EventDetails """ - return cls("protect_internal_domains_changed_details", val) + return cls('protect_internal_domains_changed_details', val) @classmethod def classification_create_report_details(cls, val): @@ -16099,7 +15150,7 @@ def classification_create_report_details(cls, val): :param ClassificationCreateReportDetails val: :rtype: EventDetails """ - return cls("classification_create_report_details", val) + return cls('classification_create_report_details', val) @classmethod def classification_create_report_fail_details(cls, val): @@ -16110,7 +15161,7 @@ def classification_create_report_fail_details(cls, val): :param ClassificationCreateReportFailDetails val: :rtype: EventDetails """ - return cls("classification_create_report_fail_details", val) + return cls('classification_create_report_fail_details', val) @classmethod def emm_create_exceptions_report_details(cls, val): @@ -16121,7 +15172,7 @@ def emm_create_exceptions_report_details(cls, val): :param EmmCreateExceptionsReportDetails val: :rtype: EventDetails """ - return cls("emm_create_exceptions_report_details", val) + return cls('emm_create_exceptions_report_details', val) @classmethod def emm_create_usage_report_details(cls, val): @@ -16132,7 +15183,7 @@ def emm_create_usage_report_details(cls, val): :param EmmCreateUsageReportDetails val: :rtype: EventDetails """ - return cls("emm_create_usage_report_details", val) + return cls('emm_create_usage_report_details', val) @classmethod def export_members_report_details(cls, val): @@ -16143,7 +15194,7 @@ def export_members_report_details(cls, val): :param ExportMembersReportDetails val: :rtype: EventDetails """ - return cls("export_members_report_details", val) + return cls('export_members_report_details', val) @classmethod def export_members_report_fail_details(cls, val): @@ -16154,7 +15205,7 @@ def export_members_report_fail_details(cls, val): :param ExportMembersReportFailDetails val: :rtype: EventDetails """ - return cls("export_members_report_fail_details", val) + return cls('export_members_report_fail_details', val) @classmethod def external_sharing_create_report_details(cls, val): @@ -16165,7 +15216,7 @@ def external_sharing_create_report_details(cls, val): :param ExternalSharingCreateReportDetails val: :rtype: EventDetails """ - return cls("external_sharing_create_report_details", val) + return cls('external_sharing_create_report_details', val) @classmethod def external_sharing_report_failed_details(cls, val): @@ -16176,7 +15227,7 @@ def external_sharing_report_failed_details(cls, val): :param ExternalSharingReportFailedDetails val: :rtype: EventDetails """ - return cls("external_sharing_report_failed_details", val) + return cls('external_sharing_report_failed_details', val) @classmethod def member_access_details_create_report_details(cls, val): @@ -16187,7 +15238,7 @@ def member_access_details_create_report_details(cls, val): :param MemberAccessDetailsCreateReportDetails val: :rtype: EventDetails """ - return cls("member_access_details_create_report_details", val) + return cls('member_access_details_create_report_details', val) @classmethod def member_access_details_create_report_failed_details(cls, val): @@ -16199,7 +15250,7 @@ def member_access_details_create_report_failed_details(cls, val): :param MemberAccessDetailsCreateReportFailedDetails val: :rtype: EventDetails """ - return cls("member_access_details_create_report_failed_details", val) + return cls('member_access_details_create_report_failed_details', val) @classmethod def no_expiration_link_gen_create_report_details(cls, val): @@ -16210,7 +15261,7 @@ def no_expiration_link_gen_create_report_details(cls, val): :param NoExpirationLinkGenCreateReportDetails val: :rtype: EventDetails """ - return cls("no_expiration_link_gen_create_report_details", val) + return cls('no_expiration_link_gen_create_report_details', val) @classmethod def no_expiration_link_gen_report_failed_details(cls, val): @@ -16221,7 +15272,7 @@ def no_expiration_link_gen_report_failed_details(cls, val): :param NoExpirationLinkGenReportFailedDetails val: :rtype: EventDetails """ - return cls("no_expiration_link_gen_report_failed_details", val) + return cls('no_expiration_link_gen_report_failed_details', val) @classmethod def no_password_link_gen_create_report_details(cls, val): @@ -16232,7 +15283,7 @@ def no_password_link_gen_create_report_details(cls, val): :param NoPasswordLinkGenCreateReportDetails val: :rtype: EventDetails """ - return cls("no_password_link_gen_create_report_details", val) + return cls('no_password_link_gen_create_report_details', val) @classmethod def no_password_link_gen_report_failed_details(cls, val): @@ -16243,7 +15294,7 @@ def no_password_link_gen_report_failed_details(cls, val): :param NoPasswordLinkGenReportFailedDetails val: :rtype: EventDetails """ - return cls("no_password_link_gen_report_failed_details", val) + return cls('no_password_link_gen_report_failed_details', val) @classmethod def no_password_link_view_create_report_details(cls, val): @@ -16254,7 +15305,7 @@ def no_password_link_view_create_report_details(cls, val): :param NoPasswordLinkViewCreateReportDetails val: :rtype: EventDetails """ - return cls("no_password_link_view_create_report_details", val) + return cls('no_password_link_view_create_report_details', val) @classmethod def no_password_link_view_report_failed_details(cls, val): @@ -16265,7 +15316,7 @@ def no_password_link_view_report_failed_details(cls, val): :param NoPasswordLinkViewReportFailedDetails val: :rtype: EventDetails """ - return cls("no_password_link_view_report_failed_details", val) + return cls('no_password_link_view_report_failed_details', val) @classmethod def outdated_link_view_create_report_details(cls, val): @@ -16276,7 +15327,7 @@ def outdated_link_view_create_report_details(cls, val): :param OutdatedLinkViewCreateReportDetails val: :rtype: EventDetails """ - return cls("outdated_link_view_create_report_details", val) + return cls('outdated_link_view_create_report_details', val) @classmethod def outdated_link_view_report_failed_details(cls, val): @@ -16287,7 +15338,7 @@ def outdated_link_view_report_failed_details(cls, val): :param OutdatedLinkViewReportFailedDetails val: :rtype: EventDetails """ - return cls("outdated_link_view_report_failed_details", val) + return cls('outdated_link_view_report_failed_details', val) @classmethod def paper_admin_export_start_details(cls, val): @@ -16298,7 +15349,7 @@ def paper_admin_export_start_details(cls, val): :param PaperAdminExportStartDetails val: :rtype: EventDetails """ - return cls("paper_admin_export_start_details", val) + return cls('paper_admin_export_start_details', val) @classmethod def ransomware_alert_create_report_details(cls, val): @@ -16309,7 +15360,7 @@ def ransomware_alert_create_report_details(cls, val): :param RansomwareAlertCreateReportDetails val: :rtype: EventDetails """ - return cls("ransomware_alert_create_report_details", val) + return cls('ransomware_alert_create_report_details', val) @classmethod def ransomware_alert_create_report_failed_details(cls, val): @@ -16321,7 +15372,7 @@ def ransomware_alert_create_report_failed_details(cls, val): :param RansomwareAlertCreateReportFailedDetails val: :rtype: EventDetails """ - return cls("ransomware_alert_create_report_failed_details", val) + return cls('ransomware_alert_create_report_failed_details', val) @classmethod def shared_folders_create_report_details(cls, val): @@ -16332,7 +15383,7 @@ def shared_folders_create_report_details(cls, val): :param SharedFoldersCreateReportDetails val: :rtype: EventDetails """ - return cls("shared_folders_create_report_details", val) + return cls('shared_folders_create_report_details', val) @classmethod def shared_folders_create_report_failed_details(cls, val): @@ -16343,7 +15394,7 @@ def shared_folders_create_report_failed_details(cls, val): :param SharedFoldersCreateReportFailedDetails val: :rtype: EventDetails """ - return cls("shared_folders_create_report_failed_details", val) + return cls('shared_folders_create_report_failed_details', val) @classmethod def smart_sync_create_admin_privilege_report_details(cls, val): @@ -16355,7 +15406,7 @@ def smart_sync_create_admin_privilege_report_details(cls, val): :param SmartSyncCreateAdminPrivilegeReportDetails val: :rtype: EventDetails """ - return cls("smart_sync_create_admin_privilege_report_details", val) + return cls('smart_sync_create_admin_privilege_report_details', val) @classmethod def team_activity_create_report_details(cls, val): @@ -16366,7 +15417,7 @@ def team_activity_create_report_details(cls, val): :param TeamActivityCreateReportDetails val: :rtype: EventDetails """ - return cls("team_activity_create_report_details", val) + return cls('team_activity_create_report_details', val) @classmethod def team_activity_create_report_fail_details(cls, val): @@ -16377,7 +15428,7 @@ def team_activity_create_report_fail_details(cls, val): :param TeamActivityCreateReportFailDetails val: :rtype: EventDetails """ - return cls("team_activity_create_report_fail_details", val) + return cls('team_activity_create_report_fail_details', val) @classmethod def team_folders_create_report_details(cls, val): @@ -16388,7 +15439,7 @@ def team_folders_create_report_details(cls, val): :param TeamFoldersCreateReportDetails val: :rtype: EventDetails """ - return cls("team_folders_create_report_details", val) + return cls('team_folders_create_report_details', val) @classmethod def team_folders_create_report_failed_details(cls, val): @@ -16399,7 +15450,7 @@ def team_folders_create_report_failed_details(cls, val): :param TeamFoldersCreateReportFailedDetails val: :rtype: EventDetails """ - return cls("team_folders_create_report_failed_details", val) + return cls('team_folders_create_report_failed_details', val) @classmethod def team_storage_create_report_details(cls, val): @@ -16410,7 +15461,7 @@ def team_storage_create_report_details(cls, val): :param TeamStorageCreateReportDetails val: :rtype: EventDetails """ - return cls("team_storage_create_report_details", val) + return cls('team_storage_create_report_details', val) @classmethod def team_storage_create_report_failed_details(cls, val): @@ -16421,7 +15472,7 @@ def team_storage_create_report_failed_details(cls, val): :param TeamStorageCreateReportFailedDetails val: :rtype: EventDetails """ - return cls("team_storage_create_report_failed_details", val) + return cls('team_storage_create_report_failed_details', val) @classmethod def collection_share_details(cls, val): @@ -16432,7 +15483,7 @@ def collection_share_details(cls, val): :param CollectionShareDetails val: :rtype: EventDetails """ - return cls("collection_share_details", val) + return cls('collection_share_details', val) @classmethod def file_transfers_file_add_details(cls, val): @@ -16443,7 +15494,7 @@ def file_transfers_file_add_details(cls, val): :param FileTransfersFileAddDetails val: :rtype: EventDetails """ - return cls("file_transfers_file_add_details", val) + return cls('file_transfers_file_add_details', val) @classmethod def file_transfers_transfer_delete_details(cls, val): @@ -16454,7 +15505,7 @@ def file_transfers_transfer_delete_details(cls, val): :param FileTransfersTransferDeleteDetails val: :rtype: EventDetails """ - return cls("file_transfers_transfer_delete_details", val) + return cls('file_transfers_transfer_delete_details', val) @classmethod def file_transfers_transfer_download_details(cls, val): @@ -16465,7 +15516,7 @@ def file_transfers_transfer_download_details(cls, val): :param FileTransfersTransferDownloadDetails val: :rtype: EventDetails """ - return cls("file_transfers_transfer_download_details", val) + return cls('file_transfers_transfer_download_details', val) @classmethod def file_transfers_transfer_send_details(cls, val): @@ -16476,7 +15527,7 @@ def file_transfers_transfer_send_details(cls, val): :param FileTransfersTransferSendDetails val: :rtype: EventDetails """ - return cls("file_transfers_transfer_send_details", val) + return cls('file_transfers_transfer_send_details', val) @classmethod def file_transfers_transfer_view_details(cls, val): @@ -16487,7 +15538,7 @@ def file_transfers_transfer_view_details(cls, val): :param FileTransfersTransferViewDetails val: :rtype: EventDetails """ - return cls("file_transfers_transfer_view_details", val) + return cls('file_transfers_transfer_view_details', val) @classmethod def media_hub_project_team_add_details(cls, val): @@ -16498,7 +15549,7 @@ def media_hub_project_team_add_details(cls, val): :param MediaHubProjectTeamAddDetails val: :rtype: EventDetails """ - return cls("media_hub_project_team_add_details", val) + return cls('media_hub_project_team_add_details', val) @classmethod def media_hub_project_team_delete_details(cls, val): @@ -16509,7 +15560,7 @@ def media_hub_project_team_delete_details(cls, val): :param MediaHubProjectTeamDeleteDetails val: :rtype: EventDetails """ - return cls("media_hub_project_team_delete_details", val) + return cls('media_hub_project_team_delete_details', val) @classmethod def media_hub_project_team_role_changed_details(cls, val): @@ -16520,7 +15571,7 @@ def media_hub_project_team_role_changed_details(cls, val): :param MediaHubProjectTeamRoleChangedDetails val: :rtype: EventDetails """ - return cls("media_hub_project_team_role_changed_details", val) + return cls('media_hub_project_team_role_changed_details', val) @classmethod def media_hub_shared_link_audience_changed_details(cls, val): @@ -16532,7 +15583,7 @@ def media_hub_shared_link_audience_changed_details(cls, val): :param MediaHubSharedLinkAudienceChangedDetails val: :rtype: EventDetails """ - return cls("media_hub_shared_link_audience_changed_details", val) + return cls('media_hub_shared_link_audience_changed_details', val) @classmethod def media_hub_shared_link_created_details(cls, val): @@ -16543,7 +15594,7 @@ def media_hub_shared_link_created_details(cls, val): :param MediaHubSharedLinkCreatedDetails val: :rtype: EventDetails """ - return cls("media_hub_shared_link_created_details", val) + return cls('media_hub_shared_link_created_details', val) @classmethod def media_hub_shared_link_download_setting_changed_details(cls, val): @@ -16555,7 +15606,7 @@ def media_hub_shared_link_download_setting_changed_details(cls, val): :param MediaHubSharedLinkDownloadSettingChangedDetails val: :rtype: EventDetails """ - return cls("media_hub_shared_link_download_setting_changed_details", val) + return cls('media_hub_shared_link_download_setting_changed_details', val) @classmethod def media_hub_shared_link_revoked_details(cls, val): @@ -16566,7 +15617,7 @@ def media_hub_shared_link_revoked_details(cls, val): :param MediaHubSharedLinkRevokedDetails val: :rtype: EventDetails """ - return cls("media_hub_shared_link_revoked_details", val) + return cls('media_hub_shared_link_revoked_details', val) @classmethod def note_acl_invite_only_details(cls, val): @@ -16577,7 +15628,7 @@ def note_acl_invite_only_details(cls, val): :param NoteAclInviteOnlyDetails val: :rtype: EventDetails """ - return cls("note_acl_invite_only_details", val) + return cls('note_acl_invite_only_details', val) @classmethod def note_acl_link_details(cls, val): @@ -16588,7 +15639,7 @@ def note_acl_link_details(cls, val): :param NoteAclLinkDetails val: :rtype: EventDetails """ - return cls("note_acl_link_details", val) + return cls('note_acl_link_details', val) @classmethod def note_acl_team_link_details(cls, val): @@ -16599,7 +15650,7 @@ def note_acl_team_link_details(cls, val): :param NoteAclTeamLinkDetails val: :rtype: EventDetails """ - return cls("note_acl_team_link_details", val) + return cls('note_acl_team_link_details', val) @classmethod def note_shared_details(cls, val): @@ -16610,7 +15661,7 @@ def note_shared_details(cls, val): :param NoteSharedDetails val: :rtype: EventDetails """ - return cls("note_shared_details", val) + return cls('note_shared_details', val) @classmethod def note_share_receive_details(cls, val): @@ -16621,7 +15672,7 @@ def note_share_receive_details(cls, val): :param NoteShareReceiveDetails val: :rtype: EventDetails """ - return cls("note_share_receive_details", val) + return cls('note_share_receive_details', val) @classmethod def open_note_shared_details(cls, val): @@ -16632,7 +15683,7 @@ def open_note_shared_details(cls, val): :param OpenNoteSharedDetails val: :rtype: EventDetails """ - return cls("open_note_shared_details", val) + return cls('open_note_shared_details', val) @classmethod def replay_file_shared_link_created_details(cls, val): @@ -16643,7 +15694,7 @@ def replay_file_shared_link_created_details(cls, val): :param ReplayFileSharedLinkCreatedDetails val: :rtype: EventDetails """ - return cls("replay_file_shared_link_created_details", val) + return cls('replay_file_shared_link_created_details', val) @classmethod def replay_file_shared_link_modified_details(cls, val): @@ -16654,7 +15705,7 @@ def replay_file_shared_link_modified_details(cls, val): :param ReplayFileSharedLinkModifiedDetails val: :rtype: EventDetails """ - return cls("replay_file_shared_link_modified_details", val) + return cls('replay_file_shared_link_modified_details', val) @classmethod def replay_project_team_add_details(cls, val): @@ -16665,7 +15716,7 @@ def replay_project_team_add_details(cls, val): :param ReplayProjectTeamAddDetails val: :rtype: EventDetails """ - return cls("replay_project_team_add_details", val) + return cls('replay_project_team_add_details', val) @classmethod def replay_project_team_delete_details(cls, val): @@ -16676,7 +15727,7 @@ def replay_project_team_delete_details(cls, val): :param ReplayProjectTeamDeleteDetails val: :rtype: EventDetails """ - return cls("replay_project_team_delete_details", val) + return cls('replay_project_team_delete_details', val) @classmethod def send_and_track_file_added_details(cls, val): @@ -16687,7 +15738,7 @@ def send_and_track_file_added_details(cls, val): :param SendAndTrackFileAddedDetails val: :rtype: EventDetails """ - return cls("send_and_track_file_added_details", val) + return cls('send_and_track_file_added_details', val) @classmethod def send_and_track_file_renamed_details(cls, val): @@ -16698,7 +15749,7 @@ def send_and_track_file_renamed_details(cls, val): :param SendAndTrackFileRenamedDetails val: :rtype: EventDetails """ - return cls("send_and_track_file_renamed_details", val) + return cls('send_and_track_file_renamed_details', val) @classmethod def send_and_track_file_updated_details(cls, val): @@ -16709,7 +15760,7 @@ def send_and_track_file_updated_details(cls, val): :param SendAndTrackFileUpdatedDetails val: :rtype: EventDetails """ - return cls("send_and_track_file_updated_details", val) + return cls('send_and_track_file_updated_details', val) @classmethod def send_and_track_link_created_details(cls, val): @@ -16720,7 +15771,7 @@ def send_and_track_link_created_details(cls, val): :param SendAndTrackLinkCreatedDetails val: :rtype: EventDetails """ - return cls("send_and_track_link_created_details", val) + return cls('send_and_track_link_created_details', val) @classmethod def send_and_track_link_deleted_details(cls, val): @@ -16731,7 +15782,7 @@ def send_and_track_link_deleted_details(cls, val): :param SendAndTrackLinkDeletedDetails val: :rtype: EventDetails """ - return cls("send_and_track_link_deleted_details", val) + return cls('send_and_track_link_deleted_details', val) @classmethod def send_and_track_link_updated_details(cls, val): @@ -16742,7 +15793,7 @@ def send_and_track_link_updated_details(cls, val): :param SendAndTrackLinkUpdatedDetails val: :rtype: EventDetails """ - return cls("send_and_track_link_updated_details", val) + return cls('send_and_track_link_updated_details', val) @classmethod def send_and_track_link_viewed_details(cls, val): @@ -16753,7 +15804,7 @@ def send_and_track_link_viewed_details(cls, val): :param SendAndTrackLinkViewedDetails val: :rtype: EventDetails """ - return cls("send_and_track_link_viewed_details", val) + return cls('send_and_track_link_viewed_details', val) @classmethod def send_and_track_removed_file_and_associated_links_details(cls, val): @@ -16765,7 +15816,7 @@ def send_and_track_removed_file_and_associated_links_details(cls, val): :param SendAndTrackRemovedFileAndAssociatedLinksDetails val: :rtype: EventDetails """ - return cls("send_and_track_removed_file_and_associated_links_details", val) + return cls('send_and_track_removed_file_and_associated_links_details', val) @classmethod def sf_add_group_details(cls, val): @@ -16776,7 +15827,7 @@ def sf_add_group_details(cls, val): :param SfAddGroupDetails val: :rtype: EventDetails """ - return cls("sf_add_group_details", val) + return cls('sf_add_group_details', val) @classmethod def sf_allow_non_members_to_view_shared_links_details(cls, val): @@ -16788,7 +15839,7 @@ def sf_allow_non_members_to_view_shared_links_details(cls, val): :param SfAllowNonMembersToViewSharedLinksDetails val: :rtype: EventDetails """ - return cls("sf_allow_non_members_to_view_shared_links_details", val) + return cls('sf_allow_non_members_to_view_shared_links_details', val) @classmethod def sf_external_invite_warn_details(cls, val): @@ -16799,7 +15850,7 @@ def sf_external_invite_warn_details(cls, val): :param SfExternalInviteWarnDetails val: :rtype: EventDetails """ - return cls("sf_external_invite_warn_details", val) + return cls('sf_external_invite_warn_details', val) @classmethod def sf_fb_invite_details(cls, val): @@ -16810,7 +15861,7 @@ def sf_fb_invite_details(cls, val): :param SfFbInviteDetails val: :rtype: EventDetails """ - return cls("sf_fb_invite_details", val) + return cls('sf_fb_invite_details', val) @classmethod def sf_fb_invite_change_role_details(cls, val): @@ -16821,7 +15872,7 @@ def sf_fb_invite_change_role_details(cls, val): :param SfFbInviteChangeRoleDetails val: :rtype: EventDetails """ - return cls("sf_fb_invite_change_role_details", val) + return cls('sf_fb_invite_change_role_details', val) @classmethod def sf_fb_uninvite_details(cls, val): @@ -16832,7 +15883,7 @@ def sf_fb_uninvite_details(cls, val): :param SfFbUninviteDetails val: :rtype: EventDetails """ - return cls("sf_fb_uninvite_details", val) + return cls('sf_fb_uninvite_details', val) @classmethod def sf_invite_group_details(cls, val): @@ -16843,7 +15894,7 @@ def sf_invite_group_details(cls, val): :param SfInviteGroupDetails val: :rtype: EventDetails """ - return cls("sf_invite_group_details", val) + return cls('sf_invite_group_details', val) @classmethod def sf_team_grant_access_details(cls, val): @@ -16854,7 +15905,7 @@ def sf_team_grant_access_details(cls, val): :param SfTeamGrantAccessDetails val: :rtype: EventDetails """ - return cls("sf_team_grant_access_details", val) + return cls('sf_team_grant_access_details', val) @classmethod def sf_team_invite_details(cls, val): @@ -16865,7 +15916,7 @@ def sf_team_invite_details(cls, val): :param SfTeamInviteDetails val: :rtype: EventDetails """ - return cls("sf_team_invite_details", val) + return cls('sf_team_invite_details', val) @classmethod def sf_team_invite_change_role_details(cls, val): @@ -16876,7 +15927,7 @@ def sf_team_invite_change_role_details(cls, val): :param SfTeamInviteChangeRoleDetails val: :rtype: EventDetails """ - return cls("sf_team_invite_change_role_details", val) + return cls('sf_team_invite_change_role_details', val) @classmethod def sf_team_join_details(cls, val): @@ -16887,7 +15938,7 @@ def sf_team_join_details(cls, val): :param SfTeamJoinDetails val: :rtype: EventDetails """ - return cls("sf_team_join_details", val) + return cls('sf_team_join_details', val) @classmethod def sf_team_join_from_oob_link_details(cls, val): @@ -16898,7 +15949,7 @@ def sf_team_join_from_oob_link_details(cls, val): :param SfTeamJoinFromOobLinkDetails val: :rtype: EventDetails """ - return cls("sf_team_join_from_oob_link_details", val) + return cls('sf_team_join_from_oob_link_details', val) @classmethod def sf_team_uninvite_details(cls, val): @@ -16909,7 +15960,7 @@ def sf_team_uninvite_details(cls, val): :param SfTeamUninviteDetails val: :rtype: EventDetails """ - return cls("sf_team_uninvite_details", val) + return cls('sf_team_uninvite_details', val) @classmethod def shared_content_add_invitees_details(cls, val): @@ -16920,7 +15971,7 @@ def shared_content_add_invitees_details(cls, val): :param SharedContentAddInviteesDetails val: :rtype: EventDetails """ - return cls("shared_content_add_invitees_details", val) + return cls('shared_content_add_invitees_details', val) @classmethod def shared_content_add_link_expiry_details(cls, val): @@ -16931,7 +15982,7 @@ def shared_content_add_link_expiry_details(cls, val): :param SharedContentAddLinkExpiryDetails val: :rtype: EventDetails """ - return cls("shared_content_add_link_expiry_details", val) + return cls('shared_content_add_link_expiry_details', val) @classmethod def shared_content_add_link_password_details(cls, val): @@ -16942,7 +15993,7 @@ def shared_content_add_link_password_details(cls, val): :param SharedContentAddLinkPasswordDetails val: :rtype: EventDetails """ - return cls("shared_content_add_link_password_details", val) + return cls('shared_content_add_link_password_details', val) @classmethod def shared_content_add_member_details(cls, val): @@ -16953,7 +16004,7 @@ def shared_content_add_member_details(cls, val): :param SharedContentAddMemberDetails val: :rtype: EventDetails """ - return cls("shared_content_add_member_details", val) + return cls('shared_content_add_member_details', val) @classmethod def shared_content_change_downloads_policy_details(cls, val): @@ -16965,7 +16016,7 @@ def shared_content_change_downloads_policy_details(cls, val): :param SharedContentChangeDownloadsPolicyDetails val: :rtype: EventDetails """ - return cls("shared_content_change_downloads_policy_details", val) + return cls('shared_content_change_downloads_policy_details', val) @classmethod def shared_content_change_invitee_role_details(cls, val): @@ -16976,7 +16027,7 @@ def shared_content_change_invitee_role_details(cls, val): :param SharedContentChangeInviteeRoleDetails val: :rtype: EventDetails """ - return cls("shared_content_change_invitee_role_details", val) + return cls('shared_content_change_invitee_role_details', val) @classmethod def shared_content_change_link_audience_details(cls, val): @@ -16987,7 +16038,7 @@ def shared_content_change_link_audience_details(cls, val): :param SharedContentChangeLinkAudienceDetails val: :rtype: EventDetails """ - return cls("shared_content_change_link_audience_details", val) + return cls('shared_content_change_link_audience_details', val) @classmethod def shared_content_change_link_expiry_details(cls, val): @@ -16998,7 +16049,7 @@ def shared_content_change_link_expiry_details(cls, val): :param SharedContentChangeLinkExpiryDetails val: :rtype: EventDetails """ - return cls("shared_content_change_link_expiry_details", val) + return cls('shared_content_change_link_expiry_details', val) @classmethod def shared_content_change_link_password_details(cls, val): @@ -17009,7 +16060,7 @@ def shared_content_change_link_password_details(cls, val): :param SharedContentChangeLinkPasswordDetails val: :rtype: EventDetails """ - return cls("shared_content_change_link_password_details", val) + return cls('shared_content_change_link_password_details', val) @classmethod def shared_content_change_member_role_details(cls, val): @@ -17020,7 +16071,7 @@ def shared_content_change_member_role_details(cls, val): :param SharedContentChangeMemberRoleDetails val: :rtype: EventDetails """ - return cls("shared_content_change_member_role_details", val) + return cls('shared_content_change_member_role_details', val) @classmethod def shared_content_change_viewer_info_policy_details(cls, val): @@ -17032,7 +16083,7 @@ def shared_content_change_viewer_info_policy_details(cls, val): :param SharedContentChangeViewerInfoPolicyDetails val: :rtype: EventDetails """ - return cls("shared_content_change_viewer_info_policy_details", val) + return cls('shared_content_change_viewer_info_policy_details', val) @classmethod def shared_content_claim_invitation_details(cls, val): @@ -17043,7 +16094,7 @@ def shared_content_claim_invitation_details(cls, val): :param SharedContentClaimInvitationDetails val: :rtype: EventDetails """ - return cls("shared_content_claim_invitation_details", val) + return cls('shared_content_claim_invitation_details', val) @classmethod def shared_content_copy_details(cls, val): @@ -17054,7 +16105,7 @@ def shared_content_copy_details(cls, val): :param SharedContentCopyDetails val: :rtype: EventDetails """ - return cls("shared_content_copy_details", val) + return cls('shared_content_copy_details', val) @classmethod def shared_content_download_details(cls, val): @@ -17065,7 +16116,7 @@ def shared_content_download_details(cls, val): :param SharedContentDownloadDetails val: :rtype: EventDetails """ - return cls("shared_content_download_details", val) + return cls('shared_content_download_details', val) @classmethod def shared_content_relinquish_membership_details(cls, val): @@ -17076,7 +16127,7 @@ def shared_content_relinquish_membership_details(cls, val): :param SharedContentRelinquishMembershipDetails val: :rtype: EventDetails """ - return cls("shared_content_relinquish_membership_details", val) + return cls('shared_content_relinquish_membership_details', val) @classmethod def shared_content_remove_invitees_details(cls, val): @@ -17087,7 +16138,7 @@ def shared_content_remove_invitees_details(cls, val): :param SharedContentRemoveInviteesDetails val: :rtype: EventDetails """ - return cls("shared_content_remove_invitees_details", val) + return cls('shared_content_remove_invitees_details', val) @classmethod def shared_content_remove_link_expiry_details(cls, val): @@ -17098,7 +16149,7 @@ def shared_content_remove_link_expiry_details(cls, val): :param SharedContentRemoveLinkExpiryDetails val: :rtype: EventDetails """ - return cls("shared_content_remove_link_expiry_details", val) + return cls('shared_content_remove_link_expiry_details', val) @classmethod def shared_content_remove_link_password_details(cls, val): @@ -17109,7 +16160,7 @@ def shared_content_remove_link_password_details(cls, val): :param SharedContentRemoveLinkPasswordDetails val: :rtype: EventDetails """ - return cls("shared_content_remove_link_password_details", val) + return cls('shared_content_remove_link_password_details', val) @classmethod def shared_content_remove_member_details(cls, val): @@ -17120,7 +16171,7 @@ def shared_content_remove_member_details(cls, val): :param SharedContentRemoveMemberDetails val: :rtype: EventDetails """ - return cls("shared_content_remove_member_details", val) + return cls('shared_content_remove_member_details', val) @classmethod def shared_content_request_access_details(cls, val): @@ -17131,7 +16182,7 @@ def shared_content_request_access_details(cls, val): :param SharedContentRequestAccessDetails val: :rtype: EventDetails """ - return cls("shared_content_request_access_details", val) + return cls('shared_content_request_access_details', val) @classmethod def shared_content_restore_invitees_details(cls, val): @@ -17142,7 +16193,7 @@ def shared_content_restore_invitees_details(cls, val): :param SharedContentRestoreInviteesDetails val: :rtype: EventDetails """ - return cls("shared_content_restore_invitees_details", val) + return cls('shared_content_restore_invitees_details', val) @classmethod def shared_content_restore_member_details(cls, val): @@ -17153,7 +16204,7 @@ def shared_content_restore_member_details(cls, val): :param SharedContentRestoreMemberDetails val: :rtype: EventDetails """ - return cls("shared_content_restore_member_details", val) + return cls('shared_content_restore_member_details', val) @classmethod def shared_content_unshare_details(cls, val): @@ -17164,7 +16215,7 @@ def shared_content_unshare_details(cls, val): :param SharedContentUnshareDetails val: :rtype: EventDetails """ - return cls("shared_content_unshare_details", val) + return cls('shared_content_unshare_details', val) @classmethod def shared_content_view_details(cls, val): @@ -17175,7 +16226,7 @@ def shared_content_view_details(cls, val): :param SharedContentViewDetails val: :rtype: EventDetails """ - return cls("shared_content_view_details", val) + return cls('shared_content_view_details', val) @classmethod def shared_folder_change_link_policy_details(cls, val): @@ -17186,7 +16237,7 @@ def shared_folder_change_link_policy_details(cls, val): :param SharedFolderChangeLinkPolicyDetails val: :rtype: EventDetails """ - return cls("shared_folder_change_link_policy_details", val) + return cls('shared_folder_change_link_policy_details', val) @classmethod def shared_folder_change_members_inheritance_policy_details(cls, val): @@ -17198,7 +16249,7 @@ def shared_folder_change_members_inheritance_policy_details(cls, val): :param SharedFolderChangeMembersInheritancePolicyDetails val: :rtype: EventDetails """ - return cls("shared_folder_change_members_inheritance_policy_details", val) + return cls('shared_folder_change_members_inheritance_policy_details', val) @classmethod def shared_folder_change_members_management_policy_details(cls, val): @@ -17210,7 +16261,7 @@ def shared_folder_change_members_management_policy_details(cls, val): :param SharedFolderChangeMembersManagementPolicyDetails val: :rtype: EventDetails """ - return cls("shared_folder_change_members_management_policy_details", val) + return cls('shared_folder_change_members_management_policy_details', val) @classmethod def shared_folder_change_members_policy_details(cls, val): @@ -17221,7 +16272,7 @@ def shared_folder_change_members_policy_details(cls, val): :param SharedFolderChangeMembersPolicyDetails val: :rtype: EventDetails """ - return cls("shared_folder_change_members_policy_details", val) + return cls('shared_folder_change_members_policy_details', val) @classmethod def shared_folder_create_details(cls, val): @@ -17232,7 +16283,7 @@ def shared_folder_create_details(cls, val): :param SharedFolderCreateDetails val: :rtype: EventDetails """ - return cls("shared_folder_create_details", val) + return cls('shared_folder_create_details', val) @classmethod def shared_folder_decline_invitation_details(cls, val): @@ -17243,7 +16294,7 @@ def shared_folder_decline_invitation_details(cls, val): :param SharedFolderDeclineInvitationDetails val: :rtype: EventDetails """ - return cls("shared_folder_decline_invitation_details", val) + return cls('shared_folder_decline_invitation_details', val) @classmethod def shared_folder_mount_details(cls, val): @@ -17254,7 +16305,7 @@ def shared_folder_mount_details(cls, val): :param SharedFolderMountDetails val: :rtype: EventDetails """ - return cls("shared_folder_mount_details", val) + return cls('shared_folder_mount_details', val) @classmethod def shared_folder_nest_details(cls, val): @@ -17265,7 +16316,7 @@ def shared_folder_nest_details(cls, val): :param SharedFolderNestDetails val: :rtype: EventDetails """ - return cls("shared_folder_nest_details", val) + return cls('shared_folder_nest_details', val) @classmethod def shared_folder_transfer_ownership_details(cls, val): @@ -17276,7 +16327,7 @@ def shared_folder_transfer_ownership_details(cls, val): :param SharedFolderTransferOwnershipDetails val: :rtype: EventDetails """ - return cls("shared_folder_transfer_ownership_details", val) + return cls('shared_folder_transfer_ownership_details', val) @classmethod def shared_folder_unmount_details(cls, val): @@ -17287,7 +16338,7 @@ def shared_folder_unmount_details(cls, val): :param SharedFolderUnmountDetails val: :rtype: EventDetails """ - return cls("shared_folder_unmount_details", val) + return cls('shared_folder_unmount_details', val) @classmethod def shared_link_add_expiry_details(cls, val): @@ -17298,7 +16349,7 @@ def shared_link_add_expiry_details(cls, val): :param SharedLinkAddExpiryDetails val: :rtype: EventDetails """ - return cls("shared_link_add_expiry_details", val) + return cls('shared_link_add_expiry_details', val) @classmethod def shared_link_change_expiry_details(cls, val): @@ -17309,7 +16360,7 @@ def shared_link_change_expiry_details(cls, val): :param SharedLinkChangeExpiryDetails val: :rtype: EventDetails """ - return cls("shared_link_change_expiry_details", val) + return cls('shared_link_change_expiry_details', val) @classmethod def shared_link_change_visibility_details(cls, val): @@ -17320,7 +16371,7 @@ def shared_link_change_visibility_details(cls, val): :param SharedLinkChangeVisibilityDetails val: :rtype: EventDetails """ - return cls("shared_link_change_visibility_details", val) + return cls('shared_link_change_visibility_details', val) @classmethod def shared_link_copy_details(cls, val): @@ -17331,7 +16382,7 @@ def shared_link_copy_details(cls, val): :param SharedLinkCopyDetails val: :rtype: EventDetails """ - return cls("shared_link_copy_details", val) + return cls('shared_link_copy_details', val) @classmethod def shared_link_create_details(cls, val): @@ -17342,7 +16393,7 @@ def shared_link_create_details(cls, val): :param SharedLinkCreateDetails val: :rtype: EventDetails """ - return cls("shared_link_create_details", val) + return cls('shared_link_create_details', val) @classmethod def shared_link_disable_details(cls, val): @@ -17353,7 +16404,7 @@ def shared_link_disable_details(cls, val): :param SharedLinkDisableDetails val: :rtype: EventDetails """ - return cls("shared_link_disable_details", val) + return cls('shared_link_disable_details', val) @classmethod def shared_link_download_details(cls, val): @@ -17364,7 +16415,7 @@ def shared_link_download_details(cls, val): :param SharedLinkDownloadDetails val: :rtype: EventDetails """ - return cls("shared_link_download_details", val) + return cls('shared_link_download_details', val) @classmethod def shared_link_remove_expiry_details(cls, val): @@ -17375,7 +16426,7 @@ def shared_link_remove_expiry_details(cls, val): :param SharedLinkRemoveExpiryDetails val: :rtype: EventDetails """ - return cls("shared_link_remove_expiry_details", val) + return cls('shared_link_remove_expiry_details', val) @classmethod def shared_link_remove_visitor_details(cls, val): @@ -17386,7 +16437,7 @@ def shared_link_remove_visitor_details(cls, val): :param SharedLinkRemoveVisitorDetails val: :rtype: EventDetails """ - return cls("shared_link_remove_visitor_details", val) + return cls('shared_link_remove_visitor_details', val) @classmethod def shared_link_settings_add_expiration_details(cls, val): @@ -17397,7 +16448,7 @@ def shared_link_settings_add_expiration_details(cls, val): :param SharedLinkSettingsAddExpirationDetails val: :rtype: EventDetails """ - return cls("shared_link_settings_add_expiration_details", val) + return cls('shared_link_settings_add_expiration_details', val) @classmethod def shared_link_settings_add_password_details(cls, val): @@ -17408,7 +16459,7 @@ def shared_link_settings_add_password_details(cls, val): :param SharedLinkSettingsAddPasswordDetails val: :rtype: EventDetails """ - return cls("shared_link_settings_add_password_details", val) + return cls('shared_link_settings_add_password_details', val) @classmethod def shared_link_settings_allow_download_disabled_details(cls, val): @@ -17420,7 +16471,7 @@ def shared_link_settings_allow_download_disabled_details(cls, val): :param SharedLinkSettingsAllowDownloadDisabledDetails val: :rtype: EventDetails """ - return cls("shared_link_settings_allow_download_disabled_details", val) + return cls('shared_link_settings_allow_download_disabled_details', val) @classmethod def shared_link_settings_allow_download_enabled_details(cls, val): @@ -17432,7 +16483,7 @@ def shared_link_settings_allow_download_enabled_details(cls, val): :param SharedLinkSettingsAllowDownloadEnabledDetails val: :rtype: EventDetails """ - return cls("shared_link_settings_allow_download_enabled_details", val) + return cls('shared_link_settings_allow_download_enabled_details', val) @classmethod def shared_link_settings_change_audience_details(cls, val): @@ -17443,7 +16494,7 @@ def shared_link_settings_change_audience_details(cls, val): :param SharedLinkSettingsChangeAudienceDetails val: :rtype: EventDetails """ - return cls("shared_link_settings_change_audience_details", val) + return cls('shared_link_settings_change_audience_details', val) @classmethod def shared_link_settings_change_expiration_details(cls, val): @@ -17455,7 +16506,7 @@ def shared_link_settings_change_expiration_details(cls, val): :param SharedLinkSettingsChangeExpirationDetails val: :rtype: EventDetails """ - return cls("shared_link_settings_change_expiration_details", val) + return cls('shared_link_settings_change_expiration_details', val) @classmethod def shared_link_settings_change_password_details(cls, val): @@ -17466,7 +16517,7 @@ def shared_link_settings_change_password_details(cls, val): :param SharedLinkSettingsChangePasswordDetails val: :rtype: EventDetails """ - return cls("shared_link_settings_change_password_details", val) + return cls('shared_link_settings_change_password_details', val) @classmethod def shared_link_settings_remove_expiration_details(cls, val): @@ -17478,7 +16529,7 @@ def shared_link_settings_remove_expiration_details(cls, val): :param SharedLinkSettingsRemoveExpirationDetails val: :rtype: EventDetails """ - return cls("shared_link_settings_remove_expiration_details", val) + return cls('shared_link_settings_remove_expiration_details', val) @classmethod def shared_link_settings_remove_password_details(cls, val): @@ -17489,7 +16540,7 @@ def shared_link_settings_remove_password_details(cls, val): :param SharedLinkSettingsRemovePasswordDetails val: :rtype: EventDetails """ - return cls("shared_link_settings_remove_password_details", val) + return cls('shared_link_settings_remove_password_details', val) @classmethod def shared_link_share_details(cls, val): @@ -17500,7 +16551,7 @@ def shared_link_share_details(cls, val): :param SharedLinkShareDetails val: :rtype: EventDetails """ - return cls("shared_link_share_details", val) + return cls('shared_link_share_details', val) @classmethod def shared_link_view_details(cls, val): @@ -17511,7 +16562,7 @@ def shared_link_view_details(cls, val): :param SharedLinkViewDetails val: :rtype: EventDetails """ - return cls("shared_link_view_details", val) + return cls('shared_link_view_details', val) @classmethod def shared_note_opened_details(cls, val): @@ -17522,7 +16573,7 @@ def shared_note_opened_details(cls, val): :param SharedNoteOpenedDetails val: :rtype: EventDetails """ - return cls("shared_note_opened_details", val) + return cls('shared_note_opened_details', val) @classmethod def shmodel_disable_downloads_details(cls, val): @@ -17533,7 +16584,7 @@ def shmodel_disable_downloads_details(cls, val): :param ShmodelDisableDownloadsDetails val: :rtype: EventDetails """ - return cls("shmodel_disable_downloads_details", val) + return cls('shmodel_disable_downloads_details', val) @classmethod def shmodel_enable_downloads_details(cls, val): @@ -17544,7 +16595,7 @@ def shmodel_enable_downloads_details(cls, val): :param ShmodelEnableDownloadsDetails val: :rtype: EventDetails """ - return cls("shmodel_enable_downloads_details", val) + return cls('shmodel_enable_downloads_details', val) @classmethod def shmodel_group_share_details(cls, val): @@ -17555,7 +16606,7 @@ def shmodel_group_share_details(cls, val): :param ShmodelGroupShareDetails val: :rtype: EventDetails """ - return cls("shmodel_group_share_details", val) + return cls('shmodel_group_share_details', val) @classmethod def showcase_access_granted_details(cls, val): @@ -17566,7 +16617,7 @@ def showcase_access_granted_details(cls, val): :param ShowcaseAccessGrantedDetails val: :rtype: EventDetails """ - return cls("showcase_access_granted_details", val) + return cls('showcase_access_granted_details', val) @classmethod def showcase_add_member_details(cls, val): @@ -17577,7 +16628,7 @@ def showcase_add_member_details(cls, val): :param ShowcaseAddMemberDetails val: :rtype: EventDetails """ - return cls("showcase_add_member_details", val) + return cls('showcase_add_member_details', val) @classmethod def showcase_archived_details(cls, val): @@ -17588,7 +16639,7 @@ def showcase_archived_details(cls, val): :param ShowcaseArchivedDetails val: :rtype: EventDetails """ - return cls("showcase_archived_details", val) + return cls('showcase_archived_details', val) @classmethod def showcase_created_details(cls, val): @@ -17599,7 +16650,7 @@ def showcase_created_details(cls, val): :param ShowcaseCreatedDetails val: :rtype: EventDetails """ - return cls("showcase_created_details", val) + return cls('showcase_created_details', val) @classmethod def showcase_delete_comment_details(cls, val): @@ -17610,7 +16661,7 @@ def showcase_delete_comment_details(cls, val): :param ShowcaseDeleteCommentDetails val: :rtype: EventDetails """ - return cls("showcase_delete_comment_details", val) + return cls('showcase_delete_comment_details', val) @classmethod def showcase_edited_details(cls, val): @@ -17621,7 +16672,7 @@ def showcase_edited_details(cls, val): :param ShowcaseEditedDetails val: :rtype: EventDetails """ - return cls("showcase_edited_details", val) + return cls('showcase_edited_details', val) @classmethod def showcase_edit_comment_details(cls, val): @@ -17632,7 +16683,7 @@ def showcase_edit_comment_details(cls, val): :param ShowcaseEditCommentDetails val: :rtype: EventDetails """ - return cls("showcase_edit_comment_details", val) + return cls('showcase_edit_comment_details', val) @classmethod def showcase_file_added_details(cls, val): @@ -17643,7 +16694,7 @@ def showcase_file_added_details(cls, val): :param ShowcaseFileAddedDetails val: :rtype: EventDetails """ - return cls("showcase_file_added_details", val) + return cls('showcase_file_added_details', val) @classmethod def showcase_file_download_details(cls, val): @@ -17654,7 +16705,7 @@ def showcase_file_download_details(cls, val): :param ShowcaseFileDownloadDetails val: :rtype: EventDetails """ - return cls("showcase_file_download_details", val) + return cls('showcase_file_download_details', val) @classmethod def showcase_file_removed_details(cls, val): @@ -17665,7 +16716,7 @@ def showcase_file_removed_details(cls, val): :param ShowcaseFileRemovedDetails val: :rtype: EventDetails """ - return cls("showcase_file_removed_details", val) + return cls('showcase_file_removed_details', val) @classmethod def showcase_file_view_details(cls, val): @@ -17676,7 +16727,7 @@ def showcase_file_view_details(cls, val): :param ShowcaseFileViewDetails val: :rtype: EventDetails """ - return cls("showcase_file_view_details", val) + return cls('showcase_file_view_details', val) @classmethod def showcase_permanently_deleted_details(cls, val): @@ -17687,7 +16738,7 @@ def showcase_permanently_deleted_details(cls, val): :param ShowcasePermanentlyDeletedDetails val: :rtype: EventDetails """ - return cls("showcase_permanently_deleted_details", val) + return cls('showcase_permanently_deleted_details', val) @classmethod def showcase_post_comment_details(cls, val): @@ -17698,7 +16749,7 @@ def showcase_post_comment_details(cls, val): :param ShowcasePostCommentDetails val: :rtype: EventDetails """ - return cls("showcase_post_comment_details", val) + return cls('showcase_post_comment_details', val) @classmethod def showcase_remove_member_details(cls, val): @@ -17709,7 +16760,7 @@ def showcase_remove_member_details(cls, val): :param ShowcaseRemoveMemberDetails val: :rtype: EventDetails """ - return cls("showcase_remove_member_details", val) + return cls('showcase_remove_member_details', val) @classmethod def showcase_renamed_details(cls, val): @@ -17720,7 +16771,7 @@ def showcase_renamed_details(cls, val): :param ShowcaseRenamedDetails val: :rtype: EventDetails """ - return cls("showcase_renamed_details", val) + return cls('showcase_renamed_details', val) @classmethod def showcase_request_access_details(cls, val): @@ -17731,7 +16782,7 @@ def showcase_request_access_details(cls, val): :param ShowcaseRequestAccessDetails val: :rtype: EventDetails """ - return cls("showcase_request_access_details", val) + return cls('showcase_request_access_details', val) @classmethod def showcase_resolve_comment_details(cls, val): @@ -17742,7 +16793,7 @@ def showcase_resolve_comment_details(cls, val): :param ShowcaseResolveCommentDetails val: :rtype: EventDetails """ - return cls("showcase_resolve_comment_details", val) + return cls('showcase_resolve_comment_details', val) @classmethod def showcase_restored_details(cls, val): @@ -17753,7 +16804,7 @@ def showcase_restored_details(cls, val): :param ShowcaseRestoredDetails val: :rtype: EventDetails """ - return cls("showcase_restored_details", val) + return cls('showcase_restored_details', val) @classmethod def showcase_trashed_details(cls, val): @@ -17764,7 +16815,7 @@ def showcase_trashed_details(cls, val): :param ShowcaseTrashedDetails val: :rtype: EventDetails """ - return cls("showcase_trashed_details", val) + return cls('showcase_trashed_details', val) @classmethod def showcase_trashed_deprecated_details(cls, val): @@ -17775,7 +16826,7 @@ def showcase_trashed_deprecated_details(cls, val): :param ShowcaseTrashedDeprecatedDetails val: :rtype: EventDetails """ - return cls("showcase_trashed_deprecated_details", val) + return cls('showcase_trashed_deprecated_details', val) @classmethod def showcase_unresolve_comment_details(cls, val): @@ -17786,7 +16837,7 @@ def showcase_unresolve_comment_details(cls, val): :param ShowcaseUnresolveCommentDetails val: :rtype: EventDetails """ - return cls("showcase_unresolve_comment_details", val) + return cls('showcase_unresolve_comment_details', val) @classmethod def showcase_untrashed_details(cls, val): @@ -17797,7 +16848,7 @@ def showcase_untrashed_details(cls, val): :param ShowcaseUntrashedDetails val: :rtype: EventDetails """ - return cls("showcase_untrashed_details", val) + return cls('showcase_untrashed_details', val) @classmethod def showcase_untrashed_deprecated_details(cls, val): @@ -17808,7 +16859,7 @@ def showcase_untrashed_deprecated_details(cls, val): :param ShowcaseUntrashedDeprecatedDetails val: :rtype: EventDetails """ - return cls("showcase_untrashed_deprecated_details", val) + return cls('showcase_untrashed_deprecated_details', val) @classmethod def showcase_view_details(cls, val): @@ -17819,7 +16870,7 @@ def showcase_view_details(cls, val): :param ShowcaseViewDetails val: :rtype: EventDetails """ - return cls("showcase_view_details", val) + return cls('showcase_view_details', val) @classmethod def sign_signature_request_canceled_details(cls, val): @@ -17830,7 +16881,7 @@ def sign_signature_request_canceled_details(cls, val): :param SignSignatureRequestCanceledDetails val: :rtype: EventDetails """ - return cls("sign_signature_request_canceled_details", val) + return cls('sign_signature_request_canceled_details', val) @classmethod def sign_signature_request_completed_details(cls, val): @@ -17841,7 +16892,7 @@ def sign_signature_request_completed_details(cls, val): :param SignSignatureRequestCompletedDetails val: :rtype: EventDetails """ - return cls("sign_signature_request_completed_details", val) + return cls('sign_signature_request_completed_details', val) @classmethod def sign_signature_request_declined_details(cls, val): @@ -17852,7 +16903,7 @@ def sign_signature_request_declined_details(cls, val): :param SignSignatureRequestDeclinedDetails val: :rtype: EventDetails """ - return cls("sign_signature_request_declined_details", val) + return cls('sign_signature_request_declined_details', val) @classmethod def sign_signature_request_opened_details(cls, val): @@ -17863,7 +16914,7 @@ def sign_signature_request_opened_details(cls, val): :param SignSignatureRequestOpenedDetails val: :rtype: EventDetails """ - return cls("sign_signature_request_opened_details", val) + return cls('sign_signature_request_opened_details', val) @classmethod def sign_signature_request_reminder_sent_details(cls, val): @@ -17874,7 +16925,7 @@ def sign_signature_request_reminder_sent_details(cls, val): :param SignSignatureRequestReminderSentDetails val: :rtype: EventDetails """ - return cls("sign_signature_request_reminder_sent_details", val) + return cls('sign_signature_request_reminder_sent_details', val) @classmethod def sign_signature_request_sent_details(cls, val): @@ -17885,7 +16936,7 @@ def sign_signature_request_sent_details(cls, val): :param SignSignatureRequestSentDetails val: :rtype: EventDetails """ - return cls("sign_signature_request_sent_details", val) + return cls('sign_signature_request_sent_details', val) @classmethod def sign_template_created_details(cls, val): @@ -17896,7 +16947,7 @@ def sign_template_created_details(cls, val): :param SignTemplateCreatedDetails val: :rtype: EventDetails """ - return cls("sign_template_created_details", val) + return cls('sign_template_created_details', val) @classmethod def sign_template_shared_details(cls, val): @@ -17907,7 +16958,7 @@ def sign_template_shared_details(cls, val): :param SignTemplateSharedDetails val: :rtype: EventDetails """ - return cls("sign_template_shared_details", val) + return cls('sign_template_shared_details', val) @classmethod def risc_security_event_details(cls, val): @@ -17918,7 +16969,7 @@ def risc_security_event_details(cls, val): :param RiscSecurityEventDetails val: :rtype: EventDetails """ - return cls("risc_security_event_details", val) + return cls('risc_security_event_details', val) @classmethod def sso_add_cert_details(cls, val): @@ -17929,7 +16980,7 @@ def sso_add_cert_details(cls, val): :param SsoAddCertDetails val: :rtype: EventDetails """ - return cls("sso_add_cert_details", val) + return cls('sso_add_cert_details', val) @classmethod def sso_add_login_url_details(cls, val): @@ -17940,7 +16991,7 @@ def sso_add_login_url_details(cls, val): :param SsoAddLoginUrlDetails val: :rtype: EventDetails """ - return cls("sso_add_login_url_details", val) + return cls('sso_add_login_url_details', val) @classmethod def sso_add_logout_url_details(cls, val): @@ -17951,7 +17002,7 @@ def sso_add_logout_url_details(cls, val): :param SsoAddLogoutUrlDetails val: :rtype: EventDetails """ - return cls("sso_add_logout_url_details", val) + return cls('sso_add_logout_url_details', val) @classmethod def sso_change_cert_details(cls, val): @@ -17962,7 +17013,7 @@ def sso_change_cert_details(cls, val): :param SsoChangeCertDetails val: :rtype: EventDetails """ - return cls("sso_change_cert_details", val) + return cls('sso_change_cert_details', val) @classmethod def sso_change_login_url_details(cls, val): @@ -17973,7 +17024,7 @@ def sso_change_login_url_details(cls, val): :param SsoChangeLoginUrlDetails val: :rtype: EventDetails """ - return cls("sso_change_login_url_details", val) + return cls('sso_change_login_url_details', val) @classmethod def sso_change_logout_url_details(cls, val): @@ -17984,7 +17035,7 @@ def sso_change_logout_url_details(cls, val): :param SsoChangeLogoutUrlDetails val: :rtype: EventDetails """ - return cls("sso_change_logout_url_details", val) + return cls('sso_change_logout_url_details', val) @classmethod def sso_change_saml_identity_mode_details(cls, val): @@ -17995,7 +17046,7 @@ def sso_change_saml_identity_mode_details(cls, val): :param SsoChangeSamlIdentityModeDetails val: :rtype: EventDetails """ - return cls("sso_change_saml_identity_mode_details", val) + return cls('sso_change_saml_identity_mode_details', val) @classmethod def sso_remove_cert_details(cls, val): @@ -18006,7 +17057,7 @@ def sso_remove_cert_details(cls, val): :param SsoRemoveCertDetails val: :rtype: EventDetails """ - return cls("sso_remove_cert_details", val) + return cls('sso_remove_cert_details', val) @classmethod def sso_remove_login_url_details(cls, val): @@ -18017,7 +17068,7 @@ def sso_remove_login_url_details(cls, val): :param SsoRemoveLoginUrlDetails val: :rtype: EventDetails """ - return cls("sso_remove_login_url_details", val) + return cls('sso_remove_login_url_details', val) @classmethod def sso_remove_logout_url_details(cls, val): @@ -18028,7 +17079,7 @@ def sso_remove_logout_url_details(cls, val): :param SsoRemoveLogoutUrlDetails val: :rtype: EventDetails """ - return cls("sso_remove_logout_url_details", val) + return cls('sso_remove_logout_url_details', val) @classmethod def team_folder_change_status_details(cls, val): @@ -18039,7 +17090,7 @@ def team_folder_change_status_details(cls, val): :param TeamFolderChangeStatusDetails val: :rtype: EventDetails """ - return cls("team_folder_change_status_details", val) + return cls('team_folder_change_status_details', val) @classmethod def team_folder_create_details(cls, val): @@ -18050,7 +17101,7 @@ def team_folder_create_details(cls, val): :param TeamFolderCreateDetails val: :rtype: EventDetails """ - return cls("team_folder_create_details", val) + return cls('team_folder_create_details', val) @classmethod def team_folder_downgrade_details(cls, val): @@ -18061,7 +17112,7 @@ def team_folder_downgrade_details(cls, val): :param TeamFolderDowngradeDetails val: :rtype: EventDetails """ - return cls("team_folder_downgrade_details", val) + return cls('team_folder_downgrade_details', val) @classmethod def team_folder_permanently_delete_details(cls, val): @@ -18072,7 +17123,7 @@ def team_folder_permanently_delete_details(cls, val): :param TeamFolderPermanentlyDeleteDetails val: :rtype: EventDetails """ - return cls("team_folder_permanently_delete_details", val) + return cls('team_folder_permanently_delete_details', val) @classmethod def team_folder_rename_details(cls, val): @@ -18083,7 +17134,7 @@ def team_folder_rename_details(cls, val): :param TeamFolderRenameDetails val: :rtype: EventDetails """ - return cls("team_folder_rename_details", val) + return cls('team_folder_rename_details', val) @classmethod def team_folder_space_limits_change_caps_type_details(cls, val): @@ -18095,7 +17146,7 @@ def team_folder_space_limits_change_caps_type_details(cls, val): :param TeamFolderSpaceLimitsChangeCapsTypeDetails val: :rtype: EventDetails """ - return cls("team_folder_space_limits_change_caps_type_details", val) + return cls('team_folder_space_limits_change_caps_type_details', val) @classmethod def team_folder_space_limits_change_limit_details(cls, val): @@ -18107,7 +17158,7 @@ def team_folder_space_limits_change_limit_details(cls, val): :param TeamFolderSpaceLimitsChangeLimitDetails val: :rtype: EventDetails """ - return cls("team_folder_space_limits_change_limit_details", val) + return cls('team_folder_space_limits_change_limit_details', val) @classmethod def team_folder_space_limits_change_notification_target_details(cls, val): @@ -18119,7 +17170,7 @@ def team_folder_space_limits_change_notification_target_details(cls, val): :param TeamFolderSpaceLimitsChangeNotificationTargetDetails val: :rtype: EventDetails """ - return cls("team_folder_space_limits_change_notification_target_details", val) + return cls('team_folder_space_limits_change_notification_target_details', val) @classmethod def team_selective_sync_settings_changed_details(cls, val): @@ -18130,7 +17181,7 @@ def team_selective_sync_settings_changed_details(cls, val): :param TeamSelectiveSyncSettingsChangedDetails val: :rtype: EventDetails """ - return cls("team_selective_sync_settings_changed_details", val) + return cls('team_selective_sync_settings_changed_details', val) @classmethod def account_capture_change_policy_details(cls, val): @@ -18141,7 +17192,7 @@ def account_capture_change_policy_details(cls, val): :param AccountCaptureChangePolicyDetails val: :rtype: EventDetails """ - return cls("account_capture_change_policy_details", val) + return cls('account_capture_change_policy_details', val) @classmethod def admin_email_reminders_changed_details(cls, val): @@ -18152,7 +17203,7 @@ def admin_email_reminders_changed_details(cls, val): :param AdminEmailRemindersChangedDetails val: :rtype: EventDetails """ - return cls("admin_email_reminders_changed_details", val) + return cls('admin_email_reminders_changed_details', val) @classmethod def ai_third_party_sharing_dropbox_base_policy_changed_details(cls, val): @@ -18164,7 +17215,7 @@ def ai_third_party_sharing_dropbox_base_policy_changed_details(cls, val): :param AiThirdPartySharingDropboxBasePolicyChangedDetails val: :rtype: EventDetails """ - return cls("ai_third_party_sharing_dropbox_base_policy_changed_details", val) + return cls('ai_third_party_sharing_dropbox_base_policy_changed_details', val) @classmethod def allow_download_disabled_details(cls, val): @@ -18175,7 +17226,7 @@ def allow_download_disabled_details(cls, val): :param AllowDownloadDisabledDetails val: :rtype: EventDetails """ - return cls("allow_download_disabled_details", val) + return cls('allow_download_disabled_details', val) @classmethod def allow_download_enabled_details(cls, val): @@ -18186,7 +17237,7 @@ def allow_download_enabled_details(cls, val): :param AllowDownloadEnabledDetails val: :rtype: EventDetails """ - return cls("allow_download_enabled_details", val) + return cls('allow_download_enabled_details', val) @classmethod def apple_login_change_policy_details(cls, val): @@ -18197,7 +17248,7 @@ def apple_login_change_policy_details(cls, val): :param AppleLoginChangePolicyDetails val: :rtype: EventDetails """ - return cls("apple_login_change_policy_details", val) + return cls('apple_login_change_policy_details', val) @classmethod def app_permissions_changed_details(cls, val): @@ -18208,7 +17259,7 @@ def app_permissions_changed_details(cls, val): :param AppPermissionsChangedDetails val: :rtype: EventDetails """ - return cls("app_permissions_changed_details", val) + return cls('app_permissions_changed_details', val) @classmethod def camera_uploads_policy_changed_details(cls, val): @@ -18219,7 +17270,7 @@ def camera_uploads_policy_changed_details(cls, val): :param CameraUploadsPolicyChangedDetails val: :rtype: EventDetails """ - return cls("camera_uploads_policy_changed_details", val) + return cls('camera_uploads_policy_changed_details', val) @classmethod def capture_team_space_policy_changed_details(cls, val): @@ -18230,7 +17281,7 @@ def capture_team_space_policy_changed_details(cls, val): :param CaptureTeamSpacePolicyChangedDetails val: :rtype: EventDetails """ - return cls("capture_team_space_policy_changed_details", val) + return cls('capture_team_space_policy_changed_details', val) @classmethod def capture_transcript_policy_changed_details(cls, val): @@ -18241,7 +17292,7 @@ def capture_transcript_policy_changed_details(cls, val): :param CaptureTranscriptPolicyChangedDetails val: :rtype: EventDetails """ - return cls("capture_transcript_policy_changed_details", val) + return cls('capture_transcript_policy_changed_details', val) @classmethod def classification_change_policy_details(cls, val): @@ -18252,7 +17303,7 @@ def classification_change_policy_details(cls, val): :param ClassificationChangePolicyDetails val: :rtype: EventDetails """ - return cls("classification_change_policy_details", val) + return cls('classification_change_policy_details', val) @classmethod def computer_backup_policy_changed_details(cls, val): @@ -18263,7 +17314,7 @@ def computer_backup_policy_changed_details(cls, val): :param ComputerBackupPolicyChangedDetails val: :rtype: EventDetails """ - return cls("computer_backup_policy_changed_details", val) + return cls('computer_backup_policy_changed_details', val) @classmethod def content_administration_policy_changed_details(cls, val): @@ -18275,7 +17326,7 @@ def content_administration_policy_changed_details(cls, val): :param ContentAdministrationPolicyChangedDetails val: :rtype: EventDetails """ - return cls("content_administration_policy_changed_details", val) + return cls('content_administration_policy_changed_details', val) @classmethod def content_deletion_protection_change_policy_details(cls, val): @@ -18287,7 +17338,7 @@ def content_deletion_protection_change_policy_details(cls, val): :param ContentDeletionProtectionChangePolicyDetails val: :rtype: EventDetails """ - return cls("content_deletion_protection_change_policy_details", val) + return cls('content_deletion_protection_change_policy_details', val) @classmethod def dash_external_sharing_policy_changed_details(cls, val): @@ -18298,7 +17349,7 @@ def dash_external_sharing_policy_changed_details(cls, val): :param DashExternalSharingPolicyChangedDetails val: :rtype: EventDetails """ - return cls("dash_external_sharing_policy_changed_details", val) + return cls('dash_external_sharing_policy_changed_details', val) @classmethod def data_placement_restriction_change_policy_details(cls, val): @@ -18310,7 +17361,7 @@ def data_placement_restriction_change_policy_details(cls, val): :param DataPlacementRestrictionChangePolicyDetails val: :rtype: EventDetails """ - return cls("data_placement_restriction_change_policy_details", val) + return cls('data_placement_restriction_change_policy_details', val) @classmethod def data_placement_restriction_satisfy_policy_details(cls, val): @@ -18322,7 +17373,7 @@ def data_placement_restriction_satisfy_policy_details(cls, val): :param DataPlacementRestrictionSatisfyPolicyDetails val: :rtype: EventDetails """ - return cls("data_placement_restriction_satisfy_policy_details", val) + return cls('data_placement_restriction_satisfy_policy_details', val) @classmethod def device_approvals_add_exception_details(cls, val): @@ -18333,7 +17384,7 @@ def device_approvals_add_exception_details(cls, val): :param DeviceApprovalsAddExceptionDetails val: :rtype: EventDetails """ - return cls("device_approvals_add_exception_details", val) + return cls('device_approvals_add_exception_details', val) @classmethod def device_approvals_change_desktop_policy_details(cls, val): @@ -18345,7 +17396,7 @@ def device_approvals_change_desktop_policy_details(cls, val): :param DeviceApprovalsChangeDesktopPolicyDetails val: :rtype: EventDetails """ - return cls("device_approvals_change_desktop_policy_details", val) + return cls('device_approvals_change_desktop_policy_details', val) @classmethod def device_approvals_change_mobile_policy_details(cls, val): @@ -18357,7 +17408,7 @@ def device_approvals_change_mobile_policy_details(cls, val): :param DeviceApprovalsChangeMobilePolicyDetails val: :rtype: EventDetails """ - return cls("device_approvals_change_mobile_policy_details", val) + return cls('device_approvals_change_mobile_policy_details', val) @classmethod def device_approvals_change_overage_action_details(cls, val): @@ -18369,7 +17420,7 @@ def device_approvals_change_overage_action_details(cls, val): :param DeviceApprovalsChangeOverageActionDetails val: :rtype: EventDetails """ - return cls("device_approvals_change_overage_action_details", val) + return cls('device_approvals_change_overage_action_details', val) @classmethod def device_approvals_change_unlink_action_details(cls, val): @@ -18381,7 +17432,7 @@ def device_approvals_change_unlink_action_details(cls, val): :param DeviceApprovalsChangeUnlinkActionDetails val: :rtype: EventDetails """ - return cls("device_approvals_change_unlink_action_details", val) + return cls('device_approvals_change_unlink_action_details', val) @classmethod def device_approvals_remove_exception_details(cls, val): @@ -18392,7 +17443,7 @@ def device_approvals_remove_exception_details(cls, val): :param DeviceApprovalsRemoveExceptionDetails val: :rtype: EventDetails """ - return cls("device_approvals_remove_exception_details", val) + return cls('device_approvals_remove_exception_details', val) @classmethod def directory_restrictions_add_members_details(cls, val): @@ -18403,7 +17454,7 @@ def directory_restrictions_add_members_details(cls, val): :param DirectoryRestrictionsAddMembersDetails val: :rtype: EventDetails """ - return cls("directory_restrictions_add_members_details", val) + return cls('directory_restrictions_add_members_details', val) @classmethod def directory_restrictions_remove_members_details(cls, val): @@ -18415,7 +17466,7 @@ def directory_restrictions_remove_members_details(cls, val): :param DirectoryRestrictionsRemoveMembersDetails val: :rtype: EventDetails """ - return cls("directory_restrictions_remove_members_details", val) + return cls('directory_restrictions_remove_members_details', val) @classmethod def dropbox_passwords_policy_changed_details(cls, val): @@ -18426,7 +17477,7 @@ def dropbox_passwords_policy_changed_details(cls, val): :param DropboxPasswordsPolicyChangedDetails val: :rtype: EventDetails """ - return cls("dropbox_passwords_policy_changed_details", val) + return cls('dropbox_passwords_policy_changed_details', val) @classmethod def email_ingest_policy_changed_details(cls, val): @@ -18437,7 +17488,7 @@ def email_ingest_policy_changed_details(cls, val): :param EmailIngestPolicyChangedDetails val: :rtype: EventDetails """ - return cls("email_ingest_policy_changed_details", val) + return cls('email_ingest_policy_changed_details', val) @classmethod def emm_add_exception_details(cls, val): @@ -18448,7 +17499,7 @@ def emm_add_exception_details(cls, val): :param EmmAddExceptionDetails val: :rtype: EventDetails """ - return cls("emm_add_exception_details", val) + return cls('emm_add_exception_details', val) @classmethod def emm_change_policy_details(cls, val): @@ -18459,7 +17510,7 @@ def emm_change_policy_details(cls, val): :param EmmChangePolicyDetails val: :rtype: EventDetails """ - return cls("emm_change_policy_details", val) + return cls('emm_change_policy_details', val) @classmethod def emm_remove_exception_details(cls, val): @@ -18470,7 +17521,7 @@ def emm_remove_exception_details(cls, val): :param EmmRemoveExceptionDetails val: :rtype: EventDetails """ - return cls("emm_remove_exception_details", val) + return cls('emm_remove_exception_details', val) @classmethod def extended_version_history_change_policy_details(cls, val): @@ -18482,7 +17533,7 @@ def extended_version_history_change_policy_details(cls, val): :param ExtendedVersionHistoryChangePolicyDetails val: :rtype: EventDetails """ - return cls("extended_version_history_change_policy_details", val) + return cls('extended_version_history_change_policy_details', val) @classmethod def external_drive_backup_policy_changed_details(cls, val): @@ -18493,7 +17544,7 @@ def external_drive_backup_policy_changed_details(cls, val): :param ExternalDriveBackupPolicyChangedDetails val: :rtype: EventDetails """ - return cls("external_drive_backup_policy_changed_details", val) + return cls('external_drive_backup_policy_changed_details', val) @classmethod def file_comments_change_policy_details(cls, val): @@ -18504,7 +17555,7 @@ def file_comments_change_policy_details(cls, val): :param FileCommentsChangePolicyDetails val: :rtype: EventDetails """ - return cls("file_comments_change_policy_details", val) + return cls('file_comments_change_policy_details', val) @classmethod def file_locking_policy_changed_details(cls, val): @@ -18515,7 +17566,7 @@ def file_locking_policy_changed_details(cls, val): :param FileLockingPolicyChangedDetails val: :rtype: EventDetails """ - return cls("file_locking_policy_changed_details", val) + return cls('file_locking_policy_changed_details', val) @classmethod def file_provider_migration_policy_changed_details(cls, val): @@ -18527,7 +17578,7 @@ def file_provider_migration_policy_changed_details(cls, val): :param FileProviderMigrationPolicyChangedDetails val: :rtype: EventDetails """ - return cls("file_provider_migration_policy_changed_details", val) + return cls('file_provider_migration_policy_changed_details', val) @classmethod def file_requests_change_policy_details(cls, val): @@ -18538,7 +17589,7 @@ def file_requests_change_policy_details(cls, val): :param FileRequestsChangePolicyDetails val: :rtype: EventDetails """ - return cls("file_requests_change_policy_details", val) + return cls('file_requests_change_policy_details', val) @classmethod def file_requests_emails_enabled_details(cls, val): @@ -18549,7 +17600,7 @@ def file_requests_emails_enabled_details(cls, val): :param FileRequestsEmailsEnabledDetails val: :rtype: EventDetails """ - return cls("file_requests_emails_enabled_details", val) + return cls('file_requests_emails_enabled_details', val) @classmethod def file_requests_emails_restricted_to_team_only_details(cls, val): @@ -18561,7 +17612,7 @@ def file_requests_emails_restricted_to_team_only_details(cls, val): :param FileRequestsEmailsRestrictedToTeamOnlyDetails val: :rtype: EventDetails """ - return cls("file_requests_emails_restricted_to_team_only_details", val) + return cls('file_requests_emails_restricted_to_team_only_details', val) @classmethod def file_transfers_policy_changed_details(cls, val): @@ -18572,7 +17623,7 @@ def file_transfers_policy_changed_details(cls, val): :param FileTransfersPolicyChangedDetails val: :rtype: EventDetails """ - return cls("file_transfers_policy_changed_details", val) + return cls('file_transfers_policy_changed_details', val) @classmethod def flexible_file_names_policy_changed_details(cls, val): @@ -18583,7 +17634,7 @@ def flexible_file_names_policy_changed_details(cls, val): :param FlexibleFileNamesPolicyChangedDetails val: :rtype: EventDetails """ - return cls("flexible_file_names_policy_changed_details", val) + return cls('flexible_file_names_policy_changed_details', val) @classmethod def folder_link_restriction_policy_changed_details(cls, val): @@ -18595,7 +17646,7 @@ def folder_link_restriction_policy_changed_details(cls, val): :param FolderLinkRestrictionPolicyChangedDetails val: :rtype: EventDetails """ - return cls("folder_link_restriction_policy_changed_details", val) + return cls('folder_link_restriction_policy_changed_details', val) @classmethod def google_sso_change_policy_details(cls, val): @@ -18606,7 +17657,7 @@ def google_sso_change_policy_details(cls, val): :param GoogleSsoChangePolicyDetails val: :rtype: EventDetails """ - return cls("google_sso_change_policy_details", val) + return cls('google_sso_change_policy_details', val) @classmethod def group_user_management_change_policy_details(cls, val): @@ -18617,7 +17668,7 @@ def group_user_management_change_policy_details(cls, val): :param GroupUserManagementChangePolicyDetails val: :rtype: EventDetails """ - return cls("group_user_management_change_policy_details", val) + return cls('group_user_management_change_policy_details', val) @classmethod def integration_policy_changed_details(cls, val): @@ -18628,7 +17679,7 @@ def integration_policy_changed_details(cls, val): :param IntegrationPolicyChangedDetails val: :rtype: EventDetails """ - return cls("integration_policy_changed_details", val) + return cls('integration_policy_changed_details', val) @classmethod def invite_acceptance_email_policy_changed_details(cls, val): @@ -18640,7 +17691,7 @@ def invite_acceptance_email_policy_changed_details(cls, val): :param InviteAcceptanceEmailPolicyChangedDetails val: :rtype: EventDetails """ - return cls("invite_acceptance_email_policy_changed_details", val) + return cls('invite_acceptance_email_policy_changed_details', val) @classmethod def media_hub_adding_people_policy_changed_details(cls, val): @@ -18652,7 +17703,7 @@ def media_hub_adding_people_policy_changed_details(cls, val): :param MediaHubAddingPeoplePolicyChangedDetails val: :rtype: EventDetails """ - return cls("media_hub_adding_people_policy_changed_details", val) + return cls('media_hub_adding_people_policy_changed_details', val) @classmethod def media_hub_download_policy_changed_details(cls, val): @@ -18663,7 +17714,7 @@ def media_hub_download_policy_changed_details(cls, val): :param MediaHubDownloadPolicyChangedDetails val: :rtype: EventDetails """ - return cls("media_hub_download_policy_changed_details", val) + return cls('media_hub_download_policy_changed_details', val) @classmethod def media_hub_link_sharing_policy_changed_details(cls, val): @@ -18675,7 +17726,7 @@ def media_hub_link_sharing_policy_changed_details(cls, val): :param MediaHubLinkSharingPolicyChangedDetails val: :rtype: EventDetails """ - return cls("media_hub_link_sharing_policy_changed_details", val) + return cls('media_hub_link_sharing_policy_changed_details', val) @classmethod def member_requests_change_policy_details(cls, val): @@ -18686,7 +17737,7 @@ def member_requests_change_policy_details(cls, val): :param MemberRequestsChangePolicyDetails val: :rtype: EventDetails """ - return cls("member_requests_change_policy_details", val) + return cls('member_requests_change_policy_details', val) @classmethod def member_send_invite_policy_changed_details(cls, val): @@ -18697,7 +17748,7 @@ def member_send_invite_policy_changed_details(cls, val): :param MemberSendInvitePolicyChangedDetails val: :rtype: EventDetails """ - return cls("member_send_invite_policy_changed_details", val) + return cls('member_send_invite_policy_changed_details', val) @classmethod def member_space_limits_add_exception_details(cls, val): @@ -18708,7 +17759,7 @@ def member_space_limits_add_exception_details(cls, val): :param MemberSpaceLimitsAddExceptionDetails val: :rtype: EventDetails """ - return cls("member_space_limits_add_exception_details", val) + return cls('member_space_limits_add_exception_details', val) @classmethod def member_space_limits_change_caps_type_policy_details(cls, val): @@ -18720,7 +17771,7 @@ def member_space_limits_change_caps_type_policy_details(cls, val): :param MemberSpaceLimitsChangeCapsTypePolicyDetails val: :rtype: EventDetails """ - return cls("member_space_limits_change_caps_type_policy_details", val) + return cls('member_space_limits_change_caps_type_policy_details', val) @classmethod def member_space_limits_change_policy_details(cls, val): @@ -18731,7 +17782,7 @@ def member_space_limits_change_policy_details(cls, val): :param MemberSpaceLimitsChangePolicyDetails val: :rtype: EventDetails """ - return cls("member_space_limits_change_policy_details", val) + return cls('member_space_limits_change_policy_details', val) @classmethod def member_space_limits_remove_exception_details(cls, val): @@ -18742,7 +17793,7 @@ def member_space_limits_remove_exception_details(cls, val): :param MemberSpaceLimitsRemoveExceptionDetails val: :rtype: EventDetails """ - return cls("member_space_limits_remove_exception_details", val) + return cls('member_space_limits_remove_exception_details', val) @classmethod def member_suggestions_change_policy_details(cls, val): @@ -18753,7 +17804,7 @@ def member_suggestions_change_policy_details(cls, val): :param MemberSuggestionsChangePolicyDetails val: :rtype: EventDetails """ - return cls("member_suggestions_change_policy_details", val) + return cls('member_suggestions_change_policy_details', val) @classmethod def microsoft_login_change_policy_details(cls, val): @@ -18764,7 +17815,7 @@ def microsoft_login_change_policy_details(cls, val): :param MicrosoftLoginChangePolicyDetails val: :rtype: EventDetails """ - return cls("microsoft_login_change_policy_details", val) + return cls('microsoft_login_change_policy_details', val) @classmethod def microsoft_office_addin_change_policy_details(cls, val): @@ -18775,7 +17826,7 @@ def microsoft_office_addin_change_policy_details(cls, val): :param MicrosoftOfficeAddinChangePolicyDetails val: :rtype: EventDetails """ - return cls("microsoft_office_addin_change_policy_details", val) + return cls('microsoft_office_addin_change_policy_details', val) @classmethod def multi_team_identity_policy_changed_details(cls, val): @@ -18786,7 +17837,7 @@ def multi_team_identity_policy_changed_details(cls, val): :param MultiTeamIdentityPolicyChangedDetails val: :rtype: EventDetails """ - return cls("multi_team_identity_policy_changed_details", val) + return cls('multi_team_identity_policy_changed_details', val) @classmethod def network_control_change_policy_details(cls, val): @@ -18797,7 +17848,7 @@ def network_control_change_policy_details(cls, val): :param NetworkControlChangePolicyDetails val: :rtype: EventDetails """ - return cls("network_control_change_policy_details", val) + return cls('network_control_change_policy_details', val) @classmethod def paper_change_deployment_policy_details(cls, val): @@ -18808,7 +17859,7 @@ def paper_change_deployment_policy_details(cls, val): :param PaperChangeDeploymentPolicyDetails val: :rtype: EventDetails """ - return cls("paper_change_deployment_policy_details", val) + return cls('paper_change_deployment_policy_details', val) @classmethod def paper_change_member_link_policy_details(cls, val): @@ -18819,7 +17870,7 @@ def paper_change_member_link_policy_details(cls, val): :param PaperChangeMemberLinkPolicyDetails val: :rtype: EventDetails """ - return cls("paper_change_member_link_policy_details", val) + return cls('paper_change_member_link_policy_details', val) @classmethod def paper_change_member_policy_details(cls, val): @@ -18830,7 +17881,7 @@ def paper_change_member_policy_details(cls, val): :param PaperChangeMemberPolicyDetails val: :rtype: EventDetails """ - return cls("paper_change_member_policy_details", val) + return cls('paper_change_member_policy_details', val) @classmethod def paper_change_policy_details(cls, val): @@ -18841,7 +17892,7 @@ def paper_change_policy_details(cls, val): :param PaperChangePolicyDetails val: :rtype: EventDetails """ - return cls("paper_change_policy_details", val) + return cls('paper_change_policy_details', val) @classmethod def paper_default_folder_policy_changed_details(cls, val): @@ -18852,7 +17903,7 @@ def paper_default_folder_policy_changed_details(cls, val): :param PaperDefaultFolderPolicyChangedDetails val: :rtype: EventDetails """ - return cls("paper_default_folder_policy_changed_details", val) + return cls('paper_default_folder_policy_changed_details', val) @classmethod def paper_desktop_policy_changed_details(cls, val): @@ -18863,7 +17914,7 @@ def paper_desktop_policy_changed_details(cls, val): :param PaperDesktopPolicyChangedDetails val: :rtype: EventDetails """ - return cls("paper_desktop_policy_changed_details", val) + return cls('paper_desktop_policy_changed_details', val) @classmethod def paper_enabled_users_group_addition_details(cls, val): @@ -18874,7 +17925,7 @@ def paper_enabled_users_group_addition_details(cls, val): :param PaperEnabledUsersGroupAdditionDetails val: :rtype: EventDetails """ - return cls("paper_enabled_users_group_addition_details", val) + return cls('paper_enabled_users_group_addition_details', val) @classmethod def paper_enabled_users_group_removal_details(cls, val): @@ -18885,7 +17936,7 @@ def paper_enabled_users_group_removal_details(cls, val): :param PaperEnabledUsersGroupRemovalDetails val: :rtype: EventDetails """ - return cls("paper_enabled_users_group_removal_details", val) + return cls('paper_enabled_users_group_removal_details', val) @classmethod def passkey_login_policy_changed_details(cls, val): @@ -18896,7 +17947,7 @@ def passkey_login_policy_changed_details(cls, val): :param PasskeyLoginPolicyChangedDetails val: :rtype: EventDetails """ - return cls("passkey_login_policy_changed_details", val) + return cls('passkey_login_policy_changed_details', val) @classmethod def password_strength_requirements_change_policy_details(cls, val): @@ -18908,7 +17959,7 @@ def password_strength_requirements_change_policy_details(cls, val): :param PasswordStrengthRequirementsChangePolicyDetails val: :rtype: EventDetails """ - return cls("password_strength_requirements_change_policy_details", val) + return cls('password_strength_requirements_change_policy_details', val) @classmethod def permanent_delete_change_policy_details(cls, val): @@ -18919,7 +17970,7 @@ def permanent_delete_change_policy_details(cls, val): :param PermanentDeleteChangePolicyDetails val: :rtype: EventDetails """ - return cls("permanent_delete_change_policy_details", val) + return cls('permanent_delete_change_policy_details', val) @classmethod def previews_ai_policy_changed_details(cls, val): @@ -18930,7 +17981,7 @@ def previews_ai_policy_changed_details(cls, val): :param PreviewsAiPolicyChangedDetails val: :rtype: EventDetails """ - return cls("previews_ai_policy_changed_details", val) + return cls('previews_ai_policy_changed_details', val) @classmethod def replay_adding_people_policy_changed_details(cls, val): @@ -18941,7 +17992,7 @@ def replay_adding_people_policy_changed_details(cls, val): :param ReplayAddingPeoplePolicyChangedDetails val: :rtype: EventDetails """ - return cls("replay_adding_people_policy_changed_details", val) + return cls('replay_adding_people_policy_changed_details', val) @classmethod def replay_sharing_policy_changed_details(cls, val): @@ -18952,7 +18003,7 @@ def replay_sharing_policy_changed_details(cls, val): :param ReplaySharingPolicyChangedDetails val: :rtype: EventDetails """ - return cls("replay_sharing_policy_changed_details", val) + return cls('replay_sharing_policy_changed_details', val) @classmethod def reseller_support_change_policy_details(cls, val): @@ -18963,7 +18014,7 @@ def reseller_support_change_policy_details(cls, val): :param ResellerSupportChangePolicyDetails val: :rtype: EventDetails """ - return cls("reseller_support_change_policy_details", val) + return cls('reseller_support_change_policy_details', val) @classmethod def rewind_policy_changed_details(cls, val): @@ -18974,7 +18025,7 @@ def rewind_policy_changed_details(cls, val): :param RewindPolicyChangedDetails val: :rtype: EventDetails """ - return cls("rewind_policy_changed_details", val) + return cls('rewind_policy_changed_details', val) @classmethod def send_and_track_policy_changed_details(cls, val): @@ -18985,7 +18036,7 @@ def send_and_track_policy_changed_details(cls, val): :param SendAndTrackPolicyChangedDetails val: :rtype: EventDetails """ - return cls("send_and_track_policy_changed_details", val) + return cls('send_and_track_policy_changed_details', val) @classmethod def send_external_sharing_policy_changed_details(cls, val): @@ -18996,7 +18047,7 @@ def send_external_sharing_policy_changed_details(cls, val): :param SendExternalSharingPolicyChangedDetails val: :rtype: EventDetails """ - return cls("send_external_sharing_policy_changed_details", val) + return cls('send_external_sharing_policy_changed_details', val) @classmethod def send_for_signature_policy_changed_details(cls, val): @@ -19007,7 +18058,7 @@ def send_for_signature_policy_changed_details(cls, val): :param SendForSignaturePolicyChangedDetails val: :rtype: EventDetails """ - return cls("send_for_signature_policy_changed_details", val) + return cls('send_for_signature_policy_changed_details', val) @classmethod def shared_link_default_permissions_policy_changed_details(cls, val): @@ -19019,7 +18070,7 @@ def shared_link_default_permissions_policy_changed_details(cls, val): :param SharedLinkDefaultPermissionsPolicyChangedDetails val: :rtype: EventDetails """ - return cls("shared_link_default_permissions_policy_changed_details", val) + return cls('shared_link_default_permissions_policy_changed_details', val) @classmethod def sharing_change_folder_join_policy_details(cls, val): @@ -19030,7 +18081,7 @@ def sharing_change_folder_join_policy_details(cls, val): :param SharingChangeFolderJoinPolicyDetails val: :rtype: EventDetails """ - return cls("sharing_change_folder_join_policy_details", val) + return cls('sharing_change_folder_join_policy_details', val) @classmethod def sharing_change_link_allow_change_expiration_policy_details(cls, val): @@ -19042,7 +18093,7 @@ def sharing_change_link_allow_change_expiration_policy_details(cls, val): :param SharingChangeLinkAllowChangeExpirationPolicyDetails val: :rtype: EventDetails """ - return cls("sharing_change_link_allow_change_expiration_policy_details", val) + return cls('sharing_change_link_allow_change_expiration_policy_details', val) @classmethod def sharing_change_link_default_expiration_policy_details(cls, val): @@ -19054,7 +18105,7 @@ def sharing_change_link_default_expiration_policy_details(cls, val): :param SharingChangeLinkDefaultExpirationPolicyDetails val: :rtype: EventDetails """ - return cls("sharing_change_link_default_expiration_policy_details", val) + return cls('sharing_change_link_default_expiration_policy_details', val) @classmethod def sharing_change_link_enforce_password_policy_details(cls, val): @@ -19066,7 +18117,7 @@ def sharing_change_link_enforce_password_policy_details(cls, val): :param SharingChangeLinkEnforcePasswordPolicyDetails val: :rtype: EventDetails """ - return cls("sharing_change_link_enforce_password_policy_details", val) + return cls('sharing_change_link_enforce_password_policy_details', val) @classmethod def sharing_change_link_policy_details(cls, val): @@ -19077,7 +18128,7 @@ def sharing_change_link_policy_details(cls, val): :param SharingChangeLinkPolicyDetails val: :rtype: EventDetails """ - return cls("sharing_change_link_policy_details", val) + return cls('sharing_change_link_policy_details', val) @classmethod def sharing_change_member_policy_details(cls, val): @@ -19088,7 +18139,7 @@ def sharing_change_member_policy_details(cls, val): :param SharingChangeMemberPolicyDetails val: :rtype: EventDetails """ - return cls("sharing_change_member_policy_details", val) + return cls('sharing_change_member_policy_details', val) @classmethod def showcase_change_download_policy_details(cls, val): @@ -19099,7 +18150,7 @@ def showcase_change_download_policy_details(cls, val): :param ShowcaseChangeDownloadPolicyDetails val: :rtype: EventDetails """ - return cls("showcase_change_download_policy_details", val) + return cls('showcase_change_download_policy_details', val) @classmethod def showcase_change_enabled_policy_details(cls, val): @@ -19110,7 +18161,7 @@ def showcase_change_enabled_policy_details(cls, val): :param ShowcaseChangeEnabledPolicyDetails val: :rtype: EventDetails """ - return cls("showcase_change_enabled_policy_details", val) + return cls('showcase_change_enabled_policy_details', val) @classmethod def showcase_change_external_sharing_policy_details(cls, val): @@ -19122,7 +18173,7 @@ def showcase_change_external_sharing_policy_details(cls, val): :param ShowcaseChangeExternalSharingPolicyDetails val: :rtype: EventDetails """ - return cls("showcase_change_external_sharing_policy_details", val) + return cls('showcase_change_external_sharing_policy_details', val) @classmethod def sign_external_sharing_policy_changed_details(cls, val): @@ -19133,7 +18184,7 @@ def sign_external_sharing_policy_changed_details(cls, val): :param SignExternalSharingPolicyChangedDetails val: :rtype: EventDetails """ - return cls("sign_external_sharing_policy_changed_details", val) + return cls('sign_external_sharing_policy_changed_details', val) @classmethod def sign_template_creation_permission_changed_details(cls, val): @@ -19145,7 +18196,7 @@ def sign_template_creation_permission_changed_details(cls, val): :param SignTemplateCreationPermissionChangedDetails val: :rtype: EventDetails """ - return cls("sign_template_creation_permission_changed_details", val) + return cls('sign_template_creation_permission_changed_details', val) @classmethod def smarter_smart_sync_policy_changed_details(cls, val): @@ -19156,7 +18207,7 @@ def smarter_smart_sync_policy_changed_details(cls, val): :param SmarterSmartSyncPolicyChangedDetails val: :rtype: EventDetails """ - return cls("smarter_smart_sync_policy_changed_details", val) + return cls('smarter_smart_sync_policy_changed_details', val) @classmethod def smart_sync_change_policy_details(cls, val): @@ -19167,7 +18218,7 @@ def smart_sync_change_policy_details(cls, val): :param SmartSyncChangePolicyDetails val: :rtype: EventDetails """ - return cls("smart_sync_change_policy_details", val) + return cls('smart_sync_change_policy_details', val) @classmethod def smart_sync_not_opt_out_details(cls, val): @@ -19178,7 +18229,7 @@ def smart_sync_not_opt_out_details(cls, val): :param SmartSyncNotOptOutDetails val: :rtype: EventDetails """ - return cls("smart_sync_not_opt_out_details", val) + return cls('smart_sync_not_opt_out_details', val) @classmethod def smart_sync_opt_out_details(cls, val): @@ -19189,7 +18240,7 @@ def smart_sync_opt_out_details(cls, val): :param SmartSyncOptOutDetails val: :rtype: EventDetails """ - return cls("smart_sync_opt_out_details", val) + return cls('smart_sync_opt_out_details', val) @classmethod def sso_change_policy_details(cls, val): @@ -19200,7 +18251,7 @@ def sso_change_policy_details(cls, val): :param SsoChangePolicyDetails val: :rtype: EventDetails """ - return cls("sso_change_policy_details", val) + return cls('sso_change_policy_details', val) @classmethod def stack_cross_team_access_policy_changed_details(cls, val): @@ -19212,7 +18263,7 @@ def stack_cross_team_access_policy_changed_details(cls, val): :param StackCrossTeamAccessPolicyChangedDetails val: :rtype: EventDetails """ - return cls("stack_cross_team_access_policy_changed_details", val) + return cls('stack_cross_team_access_policy_changed_details', val) @classmethod def team_branding_policy_changed_details(cls, val): @@ -19223,7 +18274,7 @@ def team_branding_policy_changed_details(cls, val): :param TeamBrandingPolicyChangedDetails val: :rtype: EventDetails """ - return cls("team_branding_policy_changed_details", val) + return cls('team_branding_policy_changed_details', val) @classmethod def team_extensions_policy_changed_details(cls, val): @@ -19234,7 +18285,7 @@ def team_extensions_policy_changed_details(cls, val): :param TeamExtensionsPolicyChangedDetails val: :rtype: EventDetails """ - return cls("team_extensions_policy_changed_details", val) + return cls('team_extensions_policy_changed_details', val) @classmethod def team_member_storage_request_policy_changed_details(cls, val): @@ -19246,7 +18297,7 @@ def team_member_storage_request_policy_changed_details(cls, val): :param TeamMemberStorageRequestPolicyChangedDetails val: :rtype: EventDetails """ - return cls("team_member_storage_request_policy_changed_details", val) + return cls('team_member_storage_request_policy_changed_details', val) @classmethod def team_selective_sync_policy_changed_details(cls, val): @@ -19257,7 +18308,7 @@ def team_selective_sync_policy_changed_details(cls, val): :param TeamSelectiveSyncPolicyChangedDetails val: :rtype: EventDetails """ - return cls("team_selective_sync_policy_changed_details", val) + return cls('team_selective_sync_policy_changed_details', val) @classmethod def team_sharing_whitelist_subjects_changed_details(cls, val): @@ -19269,7 +18320,7 @@ def team_sharing_whitelist_subjects_changed_details(cls, val): :param TeamSharingWhitelistSubjectsChangedDetails val: :rtype: EventDetails """ - return cls("team_sharing_whitelist_subjects_changed_details", val) + return cls('team_sharing_whitelist_subjects_changed_details', val) @classmethod def tfa_add_exception_details(cls, val): @@ -19280,7 +18331,7 @@ def tfa_add_exception_details(cls, val): :param TfaAddExceptionDetails val: :rtype: EventDetails """ - return cls("tfa_add_exception_details", val) + return cls('tfa_add_exception_details', val) @classmethod def tfa_change_policy_details(cls, val): @@ -19291,7 +18342,7 @@ def tfa_change_policy_details(cls, val): :param TfaChangePolicyDetails val: :rtype: EventDetails """ - return cls("tfa_change_policy_details", val) + return cls('tfa_change_policy_details', val) @classmethod def tfa_remove_exception_details(cls, val): @@ -19302,7 +18353,7 @@ def tfa_remove_exception_details(cls, val): :param TfaRemoveExceptionDetails val: :rtype: EventDetails """ - return cls("tfa_remove_exception_details", val) + return cls('tfa_remove_exception_details', val) @classmethod def top_level_content_policy_changed_details(cls, val): @@ -19313,7 +18364,7 @@ def top_level_content_policy_changed_details(cls, val): :param TopLevelContentPolicyChangedDetails val: :rtype: EventDetails """ - return cls("top_level_content_policy_changed_details", val) + return cls('top_level_content_policy_changed_details', val) @classmethod def two_account_change_policy_details(cls, val): @@ -19324,7 +18375,7 @@ def two_account_change_policy_details(cls, val): :param TwoAccountChangePolicyDetails val: :rtype: EventDetails """ - return cls("two_account_change_policy_details", val) + return cls('two_account_change_policy_details', val) @classmethod def viewer_info_policy_changed_details(cls, val): @@ -19335,7 +18386,7 @@ def viewer_info_policy_changed_details(cls, val): :param ViewerInfoPolicyChangedDetails val: :rtype: EventDetails """ - return cls("viewer_info_policy_changed_details", val) + return cls('viewer_info_policy_changed_details', val) @classmethod def watermarking_policy_changed_details(cls, val): @@ -19346,7 +18397,7 @@ def watermarking_policy_changed_details(cls, val): :param WatermarkingPolicyChangedDetails val: :rtype: EventDetails """ - return cls("watermarking_policy_changed_details", val) + return cls('watermarking_policy_changed_details', val) @classmethod def web_sessions_change_active_session_limit_details(cls, val): @@ -19358,7 +18409,7 @@ def web_sessions_change_active_session_limit_details(cls, val): :param WebSessionsChangeActiveSessionLimitDetails val: :rtype: EventDetails """ - return cls("web_sessions_change_active_session_limit_details", val) + return cls('web_sessions_change_active_session_limit_details', val) @classmethod def web_sessions_change_fixed_length_policy_details(cls, val): @@ -19370,7 +18421,7 @@ def web_sessions_change_fixed_length_policy_details(cls, val): :param WebSessionsChangeFixedLengthPolicyDetails val: :rtype: EventDetails """ - return cls("web_sessions_change_fixed_length_policy_details", val) + return cls('web_sessions_change_fixed_length_policy_details', val) @classmethod def web_sessions_change_idle_length_policy_details(cls, val): @@ -19382,7 +18433,7 @@ def web_sessions_change_idle_length_policy_details(cls, val): :param WebSessionsChangeIdleLengthPolicyDetails val: :rtype: EventDetails """ - return cls("web_sessions_change_idle_length_policy_details", val) + return cls('web_sessions_change_idle_length_policy_details', val) @classmethod def data_residency_migration_request_successful_details(cls, val): @@ -19394,7 +18445,7 @@ def data_residency_migration_request_successful_details(cls, val): :param DataResidencyMigrationRequestSuccessfulDetails val: :rtype: EventDetails """ - return cls("data_residency_migration_request_successful_details", val) + return cls('data_residency_migration_request_successful_details', val) @classmethod def data_residency_migration_request_unsuccessful_details(cls, val): @@ -19406,7 +18457,7 @@ def data_residency_migration_request_unsuccessful_details(cls, val): :param DataResidencyMigrationRequestUnsuccessfulDetails val: :rtype: EventDetails """ - return cls("data_residency_migration_request_unsuccessful_details", val) + return cls('data_residency_migration_request_unsuccessful_details', val) @classmethod def team_merge_from_details(cls, val): @@ -19417,7 +18468,7 @@ def team_merge_from_details(cls, val): :param TeamMergeFromDetails val: :rtype: EventDetails """ - return cls("team_merge_from_details", val) + return cls('team_merge_from_details', val) @classmethod def team_merge_to_details(cls, val): @@ -19428,7 +18479,7 @@ def team_merge_to_details(cls, val): :param TeamMergeToDetails val: :rtype: EventDetails """ - return cls("team_merge_to_details", val) + return cls('team_merge_to_details', val) @classmethod def team_profile_add_background_details(cls, val): @@ -19439,7 +18490,7 @@ def team_profile_add_background_details(cls, val): :param TeamProfileAddBackgroundDetails val: :rtype: EventDetails """ - return cls("team_profile_add_background_details", val) + return cls('team_profile_add_background_details', val) @classmethod def team_profile_add_logo_details(cls, val): @@ -19450,7 +18501,7 @@ def team_profile_add_logo_details(cls, val): :param TeamProfileAddLogoDetails val: :rtype: EventDetails """ - return cls("team_profile_add_logo_details", val) + return cls('team_profile_add_logo_details', val) @classmethod def team_profile_change_background_details(cls, val): @@ -19461,7 +18512,7 @@ def team_profile_change_background_details(cls, val): :param TeamProfileChangeBackgroundDetails val: :rtype: EventDetails """ - return cls("team_profile_change_background_details", val) + return cls('team_profile_change_background_details', val) @classmethod def team_profile_change_default_language_details(cls, val): @@ -19472,7 +18523,7 @@ def team_profile_change_default_language_details(cls, val): :param TeamProfileChangeDefaultLanguageDetails val: :rtype: EventDetails """ - return cls("team_profile_change_default_language_details", val) + return cls('team_profile_change_default_language_details', val) @classmethod def team_profile_change_logo_details(cls, val): @@ -19483,7 +18534,7 @@ def team_profile_change_logo_details(cls, val): :param TeamProfileChangeLogoDetails val: :rtype: EventDetails """ - return cls("team_profile_change_logo_details", val) + return cls('team_profile_change_logo_details', val) @classmethod def team_profile_change_name_details(cls, val): @@ -19494,7 +18545,7 @@ def team_profile_change_name_details(cls, val): :param TeamProfileChangeNameDetails val: :rtype: EventDetails """ - return cls("team_profile_change_name_details", val) + return cls('team_profile_change_name_details', val) @classmethod def team_profile_remove_background_details(cls, val): @@ -19505,7 +18556,7 @@ def team_profile_remove_background_details(cls, val): :param TeamProfileRemoveBackgroundDetails val: :rtype: EventDetails """ - return cls("team_profile_remove_background_details", val) + return cls('team_profile_remove_background_details', val) @classmethod def team_profile_remove_logo_details(cls, val): @@ -19516,7 +18567,7 @@ def team_profile_remove_logo_details(cls, val): :param TeamProfileRemoveLogoDetails val: :rtype: EventDetails """ - return cls("team_profile_remove_logo_details", val) + return cls('team_profile_remove_logo_details', val) @classmethod def passkey_add_details(cls, val): @@ -19527,7 +18578,7 @@ def passkey_add_details(cls, val): :param PasskeyAddDetails val: :rtype: EventDetails """ - return cls("passkey_add_details", val) + return cls('passkey_add_details', val) @classmethod def passkey_remove_details(cls, val): @@ -19538,7 +18589,7 @@ def passkey_remove_details(cls, val): :param PasskeyRemoveDetails val: :rtype: EventDetails """ - return cls("passkey_remove_details", val) + return cls('passkey_remove_details', val) @classmethod def tfa_add_backup_phone_details(cls, val): @@ -19549,7 +18600,7 @@ def tfa_add_backup_phone_details(cls, val): :param TfaAddBackupPhoneDetails val: :rtype: EventDetails """ - return cls("tfa_add_backup_phone_details", val) + return cls('tfa_add_backup_phone_details', val) @classmethod def tfa_add_security_key_details(cls, val): @@ -19560,7 +18611,7 @@ def tfa_add_security_key_details(cls, val): :param TfaAddSecurityKeyDetails val: :rtype: EventDetails """ - return cls("tfa_add_security_key_details", val) + return cls('tfa_add_security_key_details', val) @classmethod def tfa_change_backup_phone_details(cls, val): @@ -19571,7 +18622,7 @@ def tfa_change_backup_phone_details(cls, val): :param TfaChangeBackupPhoneDetails val: :rtype: EventDetails """ - return cls("tfa_change_backup_phone_details", val) + return cls('tfa_change_backup_phone_details', val) @classmethod def tfa_change_status_details(cls, val): @@ -19582,7 +18633,7 @@ def tfa_change_status_details(cls, val): :param TfaChangeStatusDetails val: :rtype: EventDetails """ - return cls("tfa_change_status_details", val) + return cls('tfa_change_status_details', val) @classmethod def tfa_remove_backup_phone_details(cls, val): @@ -19593,7 +18644,7 @@ def tfa_remove_backup_phone_details(cls, val): :param TfaRemoveBackupPhoneDetails val: :rtype: EventDetails """ - return cls("tfa_remove_backup_phone_details", val) + return cls('tfa_remove_backup_phone_details', val) @classmethod def tfa_remove_security_key_details(cls, val): @@ -19604,7 +18655,7 @@ def tfa_remove_security_key_details(cls, val): :param TfaRemoveSecurityKeyDetails val: :rtype: EventDetails """ - return cls("tfa_remove_security_key_details", val) + return cls('tfa_remove_security_key_details', val) @classmethod def tfa_reset_details(cls, val): @@ -19615,7 +18666,7 @@ def tfa_reset_details(cls, val): :param TfaResetDetails val: :rtype: EventDetails """ - return cls("tfa_reset_details", val) + return cls('tfa_reset_details', val) @classmethod def changed_enterprise_admin_role_details(cls, val): @@ -19626,7 +18677,7 @@ def changed_enterprise_admin_role_details(cls, val): :param ChangedEnterpriseAdminRoleDetails val: :rtype: EventDetails """ - return cls("changed_enterprise_admin_role_details", val) + return cls('changed_enterprise_admin_role_details', val) @classmethod def changed_enterprise_connected_team_status_details(cls, val): @@ -19638,7 +18689,7 @@ def changed_enterprise_connected_team_status_details(cls, val): :param ChangedEnterpriseConnectedTeamStatusDetails val: :rtype: EventDetails """ - return cls("changed_enterprise_connected_team_status_details", val) + return cls('changed_enterprise_connected_team_status_details', val) @classmethod def ended_enterprise_admin_session_details(cls, val): @@ -19649,7 +18700,7 @@ def ended_enterprise_admin_session_details(cls, val): :param EndedEnterpriseAdminSessionDetails val: :rtype: EventDetails """ - return cls("ended_enterprise_admin_session_details", val) + return cls('ended_enterprise_admin_session_details', val) @classmethod def ended_enterprise_admin_session_deprecated_details(cls, val): @@ -19661,7 +18712,7 @@ def ended_enterprise_admin_session_deprecated_details(cls, val): :param EndedEnterpriseAdminSessionDeprecatedDetails val: :rtype: EventDetails """ - return cls("ended_enterprise_admin_session_deprecated_details", val) + return cls('ended_enterprise_admin_session_deprecated_details', val) @classmethod def enterprise_settings_locking_details(cls, val): @@ -19672,7 +18723,7 @@ def enterprise_settings_locking_details(cls, val): :param EnterpriseSettingsLockingDetails val: :rtype: EventDetails """ - return cls("enterprise_settings_locking_details", val) + return cls('enterprise_settings_locking_details', val) @classmethod def guest_admin_change_status_details(cls, val): @@ -19683,7 +18734,7 @@ def guest_admin_change_status_details(cls, val): :param GuestAdminChangeStatusDetails val: :rtype: EventDetails """ - return cls("guest_admin_change_status_details", val) + return cls('guest_admin_change_status_details', val) @classmethod def started_enterprise_admin_session_details(cls, val): @@ -19694,7 +18745,7 @@ def started_enterprise_admin_session_details(cls, val): :param StartedEnterpriseAdminSessionDetails val: :rtype: EventDetails """ - return cls("started_enterprise_admin_session_details", val) + return cls('started_enterprise_admin_session_details', val) @classmethod def team_merge_request_accepted_details(cls, val): @@ -19705,7 +18756,7 @@ def team_merge_request_accepted_details(cls, val): :param TeamMergeRequestAcceptedDetails val: :rtype: EventDetails """ - return cls("team_merge_request_accepted_details", val) + return cls('team_merge_request_accepted_details', val) @classmethod def team_merge_request_accepted_shown_to_primary_team_details(cls, val): @@ -19717,7 +18768,7 @@ def team_merge_request_accepted_shown_to_primary_team_details(cls, val): :param TeamMergeRequestAcceptedShownToPrimaryTeamDetails val: :rtype: EventDetails """ - return cls("team_merge_request_accepted_shown_to_primary_team_details", val) + return cls('team_merge_request_accepted_shown_to_primary_team_details', val) @classmethod def team_merge_request_accepted_shown_to_secondary_team_details(cls, val): @@ -19729,7 +18780,7 @@ def team_merge_request_accepted_shown_to_secondary_team_details(cls, val): :param TeamMergeRequestAcceptedShownToSecondaryTeamDetails val: :rtype: EventDetails """ - return cls("team_merge_request_accepted_shown_to_secondary_team_details", val) + return cls('team_merge_request_accepted_shown_to_secondary_team_details', val) @classmethod def team_merge_request_auto_canceled_details(cls, val): @@ -19740,7 +18791,7 @@ def team_merge_request_auto_canceled_details(cls, val): :param TeamMergeRequestAutoCanceledDetails val: :rtype: EventDetails """ - return cls("team_merge_request_auto_canceled_details", val) + return cls('team_merge_request_auto_canceled_details', val) @classmethod def team_merge_request_canceled_details(cls, val): @@ -19751,7 +18802,7 @@ def team_merge_request_canceled_details(cls, val): :param TeamMergeRequestCanceledDetails val: :rtype: EventDetails """ - return cls("team_merge_request_canceled_details", val) + return cls('team_merge_request_canceled_details', val) @classmethod def team_merge_request_canceled_shown_to_primary_team_details(cls, val): @@ -19763,7 +18814,7 @@ def team_merge_request_canceled_shown_to_primary_team_details(cls, val): :param TeamMergeRequestCanceledShownToPrimaryTeamDetails val: :rtype: EventDetails """ - return cls("team_merge_request_canceled_shown_to_primary_team_details", val) + return cls('team_merge_request_canceled_shown_to_primary_team_details', val) @classmethod def team_merge_request_canceled_shown_to_secondary_team_details(cls, val): @@ -19775,7 +18826,7 @@ def team_merge_request_canceled_shown_to_secondary_team_details(cls, val): :param TeamMergeRequestCanceledShownToSecondaryTeamDetails val: :rtype: EventDetails """ - return cls("team_merge_request_canceled_shown_to_secondary_team_details", val) + return cls('team_merge_request_canceled_shown_to_secondary_team_details', val) @classmethod def team_merge_request_expired_details(cls, val): @@ -19786,7 +18837,7 @@ def team_merge_request_expired_details(cls, val): :param TeamMergeRequestExpiredDetails val: :rtype: EventDetails """ - return cls("team_merge_request_expired_details", val) + return cls('team_merge_request_expired_details', val) @classmethod def team_merge_request_expired_shown_to_primary_team_details(cls, val): @@ -19798,7 +18849,7 @@ def team_merge_request_expired_shown_to_primary_team_details(cls, val): :param TeamMergeRequestExpiredShownToPrimaryTeamDetails val: :rtype: EventDetails """ - return cls("team_merge_request_expired_shown_to_primary_team_details", val) + return cls('team_merge_request_expired_shown_to_primary_team_details', val) @classmethod def team_merge_request_expired_shown_to_secondary_team_details(cls, val): @@ -19810,7 +18861,7 @@ def team_merge_request_expired_shown_to_secondary_team_details(cls, val): :param TeamMergeRequestExpiredShownToSecondaryTeamDetails val: :rtype: EventDetails """ - return cls("team_merge_request_expired_shown_to_secondary_team_details", val) + return cls('team_merge_request_expired_shown_to_secondary_team_details', val) @classmethod def team_merge_request_rejected_shown_to_primary_team_details(cls, val): @@ -19822,7 +18873,7 @@ def team_merge_request_rejected_shown_to_primary_team_details(cls, val): :param TeamMergeRequestRejectedShownToPrimaryTeamDetails val: :rtype: EventDetails """ - return cls("team_merge_request_rejected_shown_to_primary_team_details", val) + return cls('team_merge_request_rejected_shown_to_primary_team_details', val) @classmethod def team_merge_request_rejected_shown_to_secondary_team_details(cls, val): @@ -19834,7 +18885,7 @@ def team_merge_request_rejected_shown_to_secondary_team_details(cls, val): :param TeamMergeRequestRejectedShownToSecondaryTeamDetails val: :rtype: EventDetails """ - return cls("team_merge_request_rejected_shown_to_secondary_team_details", val) + return cls('team_merge_request_rejected_shown_to_secondary_team_details', val) @classmethod def team_merge_request_reminder_details(cls, val): @@ -19845,7 +18896,7 @@ def team_merge_request_reminder_details(cls, val): :param TeamMergeRequestReminderDetails val: :rtype: EventDetails """ - return cls("team_merge_request_reminder_details", val) + return cls('team_merge_request_reminder_details', val) @classmethod def team_merge_request_reminder_shown_to_primary_team_details(cls, val): @@ -19857,7 +18908,7 @@ def team_merge_request_reminder_shown_to_primary_team_details(cls, val): :param TeamMergeRequestReminderShownToPrimaryTeamDetails val: :rtype: EventDetails """ - return cls("team_merge_request_reminder_shown_to_primary_team_details", val) + return cls('team_merge_request_reminder_shown_to_primary_team_details', val) @classmethod def team_merge_request_reminder_shown_to_secondary_team_details(cls, val): @@ -19869,7 +18920,7 @@ def team_merge_request_reminder_shown_to_secondary_team_details(cls, val): :param TeamMergeRequestReminderShownToSecondaryTeamDetails val: :rtype: EventDetails """ - return cls("team_merge_request_reminder_shown_to_secondary_team_details", val) + return cls('team_merge_request_reminder_shown_to_secondary_team_details', val) @classmethod def team_merge_request_revoked_details(cls, val): @@ -19880,7 +18931,7 @@ def team_merge_request_revoked_details(cls, val): :param TeamMergeRequestRevokedDetails val: :rtype: EventDetails """ - return cls("team_merge_request_revoked_details", val) + return cls('team_merge_request_revoked_details', val) @classmethod def team_merge_request_sent_shown_to_primary_team_details(cls, val): @@ -19892,7 +18943,7 @@ def team_merge_request_sent_shown_to_primary_team_details(cls, val): :param TeamMergeRequestSentShownToPrimaryTeamDetails val: :rtype: EventDetails """ - return cls("team_merge_request_sent_shown_to_primary_team_details", val) + return cls('team_merge_request_sent_shown_to_primary_team_details', val) @classmethod def team_merge_request_sent_shown_to_secondary_team_details(cls, val): @@ -19904,7 +18955,7 @@ def team_merge_request_sent_shown_to_secondary_team_details(cls, val): :param TeamMergeRequestSentShownToSecondaryTeamDetails val: :rtype: EventDetails """ - return cls("team_merge_request_sent_shown_to_secondary_team_details", val) + return cls('team_merge_request_sent_shown_to_secondary_team_details', val) @classmethod def missing_details(cls, val): @@ -19915,7 +18966,7 @@ def missing_details(cls, val): :param MissingDetails val: :rtype: EventDetails """ - return cls("missing_details", val) + return cls('missing_details', val) def is_admin_alerting_alert_state_changed_details(self): """ @@ -19923,7 +18974,7 @@ def is_admin_alerting_alert_state_changed_details(self): :rtype: bool """ - return self._tag == "admin_alerting_alert_state_changed_details" + return self._tag == 'admin_alerting_alert_state_changed_details' def is_admin_alerting_changed_alert_config_details(self): """ @@ -19931,7 +18982,7 @@ def is_admin_alerting_changed_alert_config_details(self): :rtype: bool """ - return self._tag == "admin_alerting_changed_alert_config_details" + return self._tag == 'admin_alerting_changed_alert_config_details' def is_admin_alerting_triggered_alert_details(self): """ @@ -19939,7 +18990,7 @@ def is_admin_alerting_triggered_alert_details(self): :rtype: bool """ - return self._tag == "admin_alerting_triggered_alert_details" + return self._tag == 'admin_alerting_triggered_alert_details' def is_ransomware_restore_process_completed_details(self): """ @@ -19947,7 +18998,7 @@ def is_ransomware_restore_process_completed_details(self): :rtype: bool """ - return self._tag == "ransomware_restore_process_completed_details" + return self._tag == 'ransomware_restore_process_completed_details' def is_ransomware_restore_process_started_details(self): """ @@ -19955,7 +19006,7 @@ def is_ransomware_restore_process_started_details(self): :rtype: bool """ - return self._tag == "ransomware_restore_process_started_details" + return self._tag == 'ransomware_restore_process_started_details' def is_app_blocked_by_permissions_details(self): """ @@ -19963,7 +19014,7 @@ def is_app_blocked_by_permissions_details(self): :rtype: bool """ - return self._tag == "app_blocked_by_permissions_details" + return self._tag == 'app_blocked_by_permissions_details' def is_app_link_team_details(self): """ @@ -19971,7 +19022,7 @@ def is_app_link_team_details(self): :rtype: bool """ - return self._tag == "app_link_team_details" + return self._tag == 'app_link_team_details' def is_app_link_user_details(self): """ @@ -19979,7 +19030,7 @@ def is_app_link_user_details(self): :rtype: bool """ - return self._tag == "app_link_user_details" + return self._tag == 'app_link_user_details' def is_app_unlink_team_details(self): """ @@ -19987,7 +19038,7 @@ def is_app_unlink_team_details(self): :rtype: bool """ - return self._tag == "app_unlink_team_details" + return self._tag == 'app_unlink_team_details' def is_app_unlink_user_details(self): """ @@ -19995,7 +19046,7 @@ def is_app_unlink_user_details(self): :rtype: bool """ - return self._tag == "app_unlink_user_details" + return self._tag == 'app_unlink_user_details' def is_integration_connected_details(self): """ @@ -20003,7 +19054,7 @@ def is_integration_connected_details(self): :rtype: bool """ - return self._tag == "integration_connected_details" + return self._tag == 'integration_connected_details' def is_integration_disconnected_details(self): """ @@ -20011,7 +19062,7 @@ def is_integration_disconnected_details(self): :rtype: bool """ - return self._tag == "integration_disconnected_details" + return self._tag == 'integration_disconnected_details' def is_file_add_comment_details(self): """ @@ -20019,7 +19070,7 @@ def is_file_add_comment_details(self): :rtype: bool """ - return self._tag == "file_add_comment_details" + return self._tag == 'file_add_comment_details' def is_file_change_comment_subscription_details(self): """ @@ -20027,7 +19078,7 @@ def is_file_change_comment_subscription_details(self): :rtype: bool """ - return self._tag == "file_change_comment_subscription_details" + return self._tag == 'file_change_comment_subscription_details' def is_file_delete_comment_details(self): """ @@ -20035,7 +19086,7 @@ def is_file_delete_comment_details(self): :rtype: bool """ - return self._tag == "file_delete_comment_details" + return self._tag == 'file_delete_comment_details' def is_file_edit_comment_details(self): """ @@ -20043,7 +19094,7 @@ def is_file_edit_comment_details(self): :rtype: bool """ - return self._tag == "file_edit_comment_details" + return self._tag == 'file_edit_comment_details' def is_file_like_comment_details(self): """ @@ -20051,7 +19102,7 @@ def is_file_like_comment_details(self): :rtype: bool """ - return self._tag == "file_like_comment_details" + return self._tag == 'file_like_comment_details' def is_file_resolve_comment_details(self): """ @@ -20059,7 +19110,7 @@ def is_file_resolve_comment_details(self): :rtype: bool """ - return self._tag == "file_resolve_comment_details" + return self._tag == 'file_resolve_comment_details' def is_file_unlike_comment_details(self): """ @@ -20067,7 +19118,7 @@ def is_file_unlike_comment_details(self): :rtype: bool """ - return self._tag == "file_unlike_comment_details" + return self._tag == 'file_unlike_comment_details' def is_file_unresolve_comment_details(self): """ @@ -20075,7 +19126,7 @@ def is_file_unresolve_comment_details(self): :rtype: bool """ - return self._tag == "file_unresolve_comment_details" + return self._tag == 'file_unresolve_comment_details' def is_dash_added_comment_to_stack_details(self): """ @@ -20083,7 +19134,7 @@ def is_dash_added_comment_to_stack_details(self): :rtype: bool """ - return self._tag == "dash_added_comment_to_stack_details" + return self._tag == 'dash_added_comment_to_stack_details' def is_dash_added_connector_details(self): """ @@ -20091,7 +19142,7 @@ def is_dash_added_connector_details(self): :rtype: bool """ - return self._tag == "dash_added_connector_details" + return self._tag == 'dash_added_connector_details' def is_dash_added_link_to_stack_details(self): """ @@ -20099,7 +19150,7 @@ def is_dash_added_link_to_stack_details(self): :rtype: bool """ - return self._tag == "dash_added_link_to_stack_details" + return self._tag == 'dash_added_link_to_stack_details' def is_dash_added_team_email_domain_allowlist_details(self): """ @@ -20107,7 +19158,7 @@ def is_dash_added_team_email_domain_allowlist_details(self): :rtype: bool """ - return self._tag == "dash_added_team_email_domain_allowlist_details" + return self._tag == 'dash_added_team_email_domain_allowlist_details' def is_dash_admin_added_org_wide_connector_details(self): """ @@ -20115,7 +19166,7 @@ def is_dash_admin_added_org_wide_connector_details(self): :rtype: bool """ - return self._tag == "dash_admin_added_org_wide_connector_details" + return self._tag == 'dash_admin_added_org_wide_connector_details' def is_dash_admin_disabled_connector_details(self): """ @@ -20123,7 +19174,7 @@ def is_dash_admin_disabled_connector_details(self): :rtype: bool """ - return self._tag == "dash_admin_disabled_connector_details" + return self._tag == 'dash_admin_disabled_connector_details' def is_dash_admin_enabled_connector_details(self): """ @@ -20131,7 +19182,7 @@ def is_dash_admin_enabled_connector_details(self): :rtype: bool """ - return self._tag == "dash_admin_enabled_connector_details" + return self._tag == 'dash_admin_enabled_connector_details' def is_dash_admin_removed_org_wide_connector_details(self): """ @@ -20139,7 +19190,7 @@ def is_dash_admin_removed_org_wide_connector_details(self): :rtype: bool """ - return self._tag == "dash_admin_removed_org_wide_connector_details" + return self._tag == 'dash_admin_removed_org_wide_connector_details' def is_dash_archived_stack_details(self): """ @@ -20147,7 +19198,7 @@ def is_dash_archived_stack_details(self): :rtype: bool """ - return self._tag == "dash_archived_stack_details" + return self._tag == 'dash_archived_stack_details' def is_dash_changed_audience_of_shared_link_to_stack_details(self): """ @@ -20155,7 +19206,7 @@ def is_dash_changed_audience_of_shared_link_to_stack_details(self): :rtype: bool """ - return self._tag == "dash_changed_audience_of_shared_link_to_stack_details" + return self._tag == 'dash_changed_audience_of_shared_link_to_stack_details' def is_dash_cloned_stack_details(self): """ @@ -20163,7 +19214,7 @@ def is_dash_cloned_stack_details(self): :rtype: bool """ - return self._tag == "dash_cloned_stack_details" + return self._tag == 'dash_cloned_stack_details' def is_dash_connector_tools_call_details(self): """ @@ -20171,7 +19222,7 @@ def is_dash_connector_tools_call_details(self): :rtype: bool """ - return self._tag == "dash_connector_tools_call_details" + return self._tag == 'dash_connector_tools_call_details' def is_dash_created_stack_details(self): """ @@ -20179,7 +19230,7 @@ def is_dash_created_stack_details(self): :rtype: bool """ - return self._tag == "dash_created_stack_details" + return self._tag == 'dash_created_stack_details' def is_dash_deleted_comment_from_stack_details(self): """ @@ -20187,7 +19238,7 @@ def is_dash_deleted_comment_from_stack_details(self): :rtype: bool """ - return self._tag == "dash_deleted_comment_from_stack_details" + return self._tag == 'dash_deleted_comment_from_stack_details' def is_dash_deleted_stack_details(self): """ @@ -20195,7 +19246,7 @@ def is_dash_deleted_stack_details(self): :rtype: bool """ - return self._tag == "dash_deleted_stack_details" + return self._tag == 'dash_deleted_stack_details' def is_dash_edited_comment_in_stack_details(self): """ @@ -20203,7 +19254,7 @@ def is_dash_edited_comment_in_stack_details(self): :rtype: bool """ - return self._tag == "dash_edited_comment_in_stack_details" + return self._tag == 'dash_edited_comment_in_stack_details' def is_dash_external_user_opened_stack_details(self): """ @@ -20211,7 +19262,7 @@ def is_dash_external_user_opened_stack_details(self): :rtype: bool """ - return self._tag == "dash_external_user_opened_stack_details" + return self._tag == 'dash_external_user_opened_stack_details' def is_dash_first_launched_desktop_details(self): """ @@ -20219,7 +19270,7 @@ def is_dash_first_launched_desktop_details(self): :rtype: bool """ - return self._tag == "dash_first_launched_desktop_details" + return self._tag == 'dash_first_launched_desktop_details' def is_dash_first_launched_extension_details(self): """ @@ -20227,7 +19278,7 @@ def is_dash_first_launched_extension_details(self): :rtype: bool """ - return self._tag == "dash_first_launched_extension_details" + return self._tag == 'dash_first_launched_extension_details' def is_dash_first_launched_web_start_page_details(self): """ @@ -20235,7 +19286,7 @@ def is_dash_first_launched_web_start_page_details(self): :rtype: bool """ - return self._tag == "dash_first_launched_web_start_page_details" + return self._tag == 'dash_first_launched_web_start_page_details' def is_dash_opened_shared_link_to_stack_details(self): """ @@ -20243,7 +19294,7 @@ def is_dash_opened_shared_link_to_stack_details(self): :rtype: bool """ - return self._tag == "dash_opened_shared_link_to_stack_details" + return self._tag == 'dash_opened_shared_link_to_stack_details' def is_dash_opened_stack_details(self): """ @@ -20251,7 +19302,7 @@ def is_dash_opened_stack_details(self): :rtype: bool """ - return self._tag == "dash_opened_stack_details" + return self._tag == 'dash_opened_stack_details' def is_dash_preview_opt_out_status_changed_details(self): """ @@ -20259,7 +19310,7 @@ def is_dash_preview_opt_out_status_changed_details(self): :rtype: bool """ - return self._tag == "dash_preview_opt_out_status_changed_details" + return self._tag == 'dash_preview_opt_out_status_changed_details' def is_dash_removed_connector_details(self): """ @@ -20267,7 +19318,7 @@ def is_dash_removed_connector_details(self): :rtype: bool """ - return self._tag == "dash_removed_connector_details" + return self._tag == 'dash_removed_connector_details' def is_dash_removed_link_from_stack_details(self): """ @@ -20275,7 +19326,7 @@ def is_dash_removed_link_from_stack_details(self): :rtype: bool """ - return self._tag == "dash_removed_link_from_stack_details" + return self._tag == 'dash_removed_link_from_stack_details' def is_dash_removed_shared_link_to_stack_details(self): """ @@ -20283,7 +19334,7 @@ def is_dash_removed_shared_link_to_stack_details(self): :rtype: bool """ - return self._tag == "dash_removed_shared_link_to_stack_details" + return self._tag == 'dash_removed_shared_link_to_stack_details' def is_dash_removed_team_email_domain_allowlist_details(self): """ @@ -20291,7 +19342,7 @@ def is_dash_removed_team_email_domain_allowlist_details(self): :rtype: bool """ - return self._tag == "dash_removed_team_email_domain_allowlist_details" + return self._tag == 'dash_removed_team_email_domain_allowlist_details' def is_dash_renamed_stack_details(self): """ @@ -20299,7 +19350,7 @@ def is_dash_renamed_stack_details(self): :rtype: bool """ - return self._tag == "dash_renamed_stack_details" + return self._tag == 'dash_renamed_stack_details' def is_dash_shared_link_to_stack_details(self): """ @@ -20307,7 +19358,7 @@ def is_dash_shared_link_to_stack_details(self): :rtype: bool """ - return self._tag == "dash_shared_link_to_stack_details" + return self._tag == 'dash_shared_link_to_stack_details' def is_dash_unarchived_stack_details(self): """ @@ -20315,7 +19366,7 @@ def is_dash_unarchived_stack_details(self): :rtype: bool """ - return self._tag == "dash_unarchived_stack_details" + return self._tag == 'dash_unarchived_stack_details' def is_dash_viewed_company_stack_details(self): """ @@ -20323,7 +19374,7 @@ def is_dash_viewed_company_stack_details(self): :rtype: bool """ - return self._tag == "dash_viewed_company_stack_details" + return self._tag == 'dash_viewed_company_stack_details' def is_dash_viewed_external_ai_activity_report_details(self): """ @@ -20331,7 +19382,7 @@ def is_dash_viewed_external_ai_activity_report_details(self): :rtype: bool """ - return self._tag == "dash_viewed_external_ai_activity_report_details" + return self._tag == 'dash_viewed_external_ai_activity_report_details' def is_governance_policy_add_folders_details(self): """ @@ -20339,7 +19390,7 @@ def is_governance_policy_add_folders_details(self): :rtype: bool """ - return self._tag == "governance_policy_add_folders_details" + return self._tag == 'governance_policy_add_folders_details' def is_governance_policy_add_folder_failed_details(self): """ @@ -20347,7 +19398,7 @@ def is_governance_policy_add_folder_failed_details(self): :rtype: bool """ - return self._tag == "governance_policy_add_folder_failed_details" + return self._tag == 'governance_policy_add_folder_failed_details' def is_governance_policy_content_disposed_details(self): """ @@ -20355,7 +19406,7 @@ def is_governance_policy_content_disposed_details(self): :rtype: bool """ - return self._tag == "governance_policy_content_disposed_details" + return self._tag == 'governance_policy_content_disposed_details' def is_governance_policy_create_details(self): """ @@ -20363,7 +19414,7 @@ def is_governance_policy_create_details(self): :rtype: bool """ - return self._tag == "governance_policy_create_details" + return self._tag == 'governance_policy_create_details' def is_governance_policy_delete_details(self): """ @@ -20371,7 +19422,7 @@ def is_governance_policy_delete_details(self): :rtype: bool """ - return self._tag == "governance_policy_delete_details" + return self._tag == 'governance_policy_delete_details' def is_governance_policy_edit_details_details(self): """ @@ -20379,7 +19430,7 @@ def is_governance_policy_edit_details_details(self): :rtype: bool """ - return self._tag == "governance_policy_edit_details_details" + return self._tag == 'governance_policy_edit_details_details' def is_governance_policy_edit_duration_details(self): """ @@ -20387,7 +19438,7 @@ def is_governance_policy_edit_duration_details(self): :rtype: bool """ - return self._tag == "governance_policy_edit_duration_details" + return self._tag == 'governance_policy_edit_duration_details' def is_governance_policy_export_created_details(self): """ @@ -20395,7 +19446,7 @@ def is_governance_policy_export_created_details(self): :rtype: bool """ - return self._tag == "governance_policy_export_created_details" + return self._tag == 'governance_policy_export_created_details' def is_governance_policy_export_removed_details(self): """ @@ -20403,7 +19454,7 @@ def is_governance_policy_export_removed_details(self): :rtype: bool """ - return self._tag == "governance_policy_export_removed_details" + return self._tag == 'governance_policy_export_removed_details' def is_governance_policy_remove_folders_details(self): """ @@ -20411,7 +19462,7 @@ def is_governance_policy_remove_folders_details(self): :rtype: bool """ - return self._tag == "governance_policy_remove_folders_details" + return self._tag == 'governance_policy_remove_folders_details' def is_governance_policy_report_created_details(self): """ @@ -20419,7 +19470,7 @@ def is_governance_policy_report_created_details(self): :rtype: bool """ - return self._tag == "governance_policy_report_created_details" + return self._tag == 'governance_policy_report_created_details' def is_governance_policy_zip_part_downloaded_details(self): """ @@ -20427,7 +19478,7 @@ def is_governance_policy_zip_part_downloaded_details(self): :rtype: bool """ - return self._tag == "governance_policy_zip_part_downloaded_details" + return self._tag == 'governance_policy_zip_part_downloaded_details' def is_legal_holds_activate_a_hold_details(self): """ @@ -20435,7 +19486,7 @@ def is_legal_holds_activate_a_hold_details(self): :rtype: bool """ - return self._tag == "legal_holds_activate_a_hold_details" + return self._tag == 'legal_holds_activate_a_hold_details' def is_legal_holds_add_members_details(self): """ @@ -20443,7 +19494,7 @@ def is_legal_holds_add_members_details(self): :rtype: bool """ - return self._tag == "legal_holds_add_members_details" + return self._tag == 'legal_holds_add_members_details' def is_legal_holds_change_hold_details_details(self): """ @@ -20451,7 +19502,7 @@ def is_legal_holds_change_hold_details_details(self): :rtype: bool """ - return self._tag == "legal_holds_change_hold_details_details" + return self._tag == 'legal_holds_change_hold_details_details' def is_legal_holds_change_hold_name_details(self): """ @@ -20459,7 +19510,7 @@ def is_legal_holds_change_hold_name_details(self): :rtype: bool """ - return self._tag == "legal_holds_change_hold_name_details" + return self._tag == 'legal_holds_change_hold_name_details' def is_legal_holds_export_a_hold_details(self): """ @@ -20467,7 +19518,7 @@ def is_legal_holds_export_a_hold_details(self): :rtype: bool """ - return self._tag == "legal_holds_export_a_hold_details" + return self._tag == 'legal_holds_export_a_hold_details' def is_legal_holds_export_cancelled_details(self): """ @@ -20475,7 +19526,7 @@ def is_legal_holds_export_cancelled_details(self): :rtype: bool """ - return self._tag == "legal_holds_export_cancelled_details" + return self._tag == 'legal_holds_export_cancelled_details' def is_legal_holds_export_downloaded_details(self): """ @@ -20483,7 +19534,7 @@ def is_legal_holds_export_downloaded_details(self): :rtype: bool """ - return self._tag == "legal_holds_export_downloaded_details" + return self._tag == 'legal_holds_export_downloaded_details' def is_legal_holds_export_removed_details(self): """ @@ -20491,7 +19542,7 @@ def is_legal_holds_export_removed_details(self): :rtype: bool """ - return self._tag == "legal_holds_export_removed_details" + return self._tag == 'legal_holds_export_removed_details' def is_legal_holds_release_a_hold_details(self): """ @@ -20499,7 +19550,7 @@ def is_legal_holds_release_a_hold_details(self): :rtype: bool """ - return self._tag == "legal_holds_release_a_hold_details" + return self._tag == 'legal_holds_release_a_hold_details' def is_legal_holds_remove_members_details(self): """ @@ -20507,7 +19558,7 @@ def is_legal_holds_remove_members_details(self): :rtype: bool """ - return self._tag == "legal_holds_remove_members_details" + return self._tag == 'legal_holds_remove_members_details' def is_legal_holds_report_a_hold_details(self): """ @@ -20515,7 +19566,7 @@ def is_legal_holds_report_a_hold_details(self): :rtype: bool """ - return self._tag == "legal_holds_report_a_hold_details" + return self._tag == 'legal_holds_report_a_hold_details' def is_device_change_ip_desktop_details(self): """ @@ -20523,7 +19574,7 @@ def is_device_change_ip_desktop_details(self): :rtype: bool """ - return self._tag == "device_change_ip_desktop_details" + return self._tag == 'device_change_ip_desktop_details' def is_device_change_ip_mobile_details(self): """ @@ -20531,7 +19582,7 @@ def is_device_change_ip_mobile_details(self): :rtype: bool """ - return self._tag == "device_change_ip_mobile_details" + return self._tag == 'device_change_ip_mobile_details' def is_device_change_ip_web_details(self): """ @@ -20539,7 +19590,7 @@ def is_device_change_ip_web_details(self): :rtype: bool """ - return self._tag == "device_change_ip_web_details" + return self._tag == 'device_change_ip_web_details' def is_device_delete_on_unlink_fail_details(self): """ @@ -20547,7 +19598,7 @@ def is_device_delete_on_unlink_fail_details(self): :rtype: bool """ - return self._tag == "device_delete_on_unlink_fail_details" + return self._tag == 'device_delete_on_unlink_fail_details' def is_device_delete_on_unlink_success_details(self): """ @@ -20555,7 +19606,7 @@ def is_device_delete_on_unlink_success_details(self): :rtype: bool """ - return self._tag == "device_delete_on_unlink_success_details" + return self._tag == 'device_delete_on_unlink_success_details' def is_device_link_fail_details(self): """ @@ -20563,7 +19614,7 @@ def is_device_link_fail_details(self): :rtype: bool """ - return self._tag == "device_link_fail_details" + return self._tag == 'device_link_fail_details' def is_device_link_success_details(self): """ @@ -20571,7 +19622,7 @@ def is_device_link_success_details(self): :rtype: bool """ - return self._tag == "device_link_success_details" + return self._tag == 'device_link_success_details' def is_device_management_disabled_details(self): """ @@ -20579,7 +19630,7 @@ def is_device_management_disabled_details(self): :rtype: bool """ - return self._tag == "device_management_disabled_details" + return self._tag == 'device_management_disabled_details' def is_device_management_enabled_details(self): """ @@ -20587,7 +19638,7 @@ def is_device_management_enabled_details(self): :rtype: bool """ - return self._tag == "device_management_enabled_details" + return self._tag == 'device_management_enabled_details' def is_device_sync_backup_status_changed_details(self): """ @@ -20595,7 +19646,7 @@ def is_device_sync_backup_status_changed_details(self): :rtype: bool """ - return self._tag == "device_sync_backup_status_changed_details" + return self._tag == 'device_sync_backup_status_changed_details' def is_device_unlink_details(self): """ @@ -20603,7 +19654,7 @@ def is_device_unlink_details(self): :rtype: bool """ - return self._tag == "device_unlink_details" + return self._tag == 'device_unlink_details' def is_dropbox_passwords_exported_details(self): """ @@ -20611,7 +19662,7 @@ def is_dropbox_passwords_exported_details(self): :rtype: bool """ - return self._tag == "dropbox_passwords_exported_details" + return self._tag == 'dropbox_passwords_exported_details' def is_dropbox_passwords_new_device_enrolled_details(self): """ @@ -20619,7 +19670,7 @@ def is_dropbox_passwords_new_device_enrolled_details(self): :rtype: bool """ - return self._tag == "dropbox_passwords_new_device_enrolled_details" + return self._tag == 'dropbox_passwords_new_device_enrolled_details' def is_emm_refresh_auth_token_details(self): """ @@ -20627,7 +19678,7 @@ def is_emm_refresh_auth_token_details(self): :rtype: bool """ - return self._tag == "emm_refresh_auth_token_details" + return self._tag == 'emm_refresh_auth_token_details' def is_external_drive_backup_eligibility_status_checked_details(self): """ @@ -20635,7 +19686,7 @@ def is_external_drive_backup_eligibility_status_checked_details(self): :rtype: bool """ - return self._tag == "external_drive_backup_eligibility_status_checked_details" + return self._tag == 'external_drive_backup_eligibility_status_checked_details' def is_external_drive_backup_status_changed_details(self): """ @@ -20643,7 +19694,7 @@ def is_external_drive_backup_status_changed_details(self): :rtype: bool """ - return self._tag == "external_drive_backup_status_changed_details" + return self._tag == 'external_drive_backup_status_changed_details' def is_account_capture_change_availability_details(self): """ @@ -20651,7 +19702,7 @@ def is_account_capture_change_availability_details(self): :rtype: bool """ - return self._tag == "account_capture_change_availability_details" + return self._tag == 'account_capture_change_availability_details' def is_account_capture_migrate_account_details(self): """ @@ -20659,7 +19710,7 @@ def is_account_capture_migrate_account_details(self): :rtype: bool """ - return self._tag == "account_capture_migrate_account_details" + return self._tag == 'account_capture_migrate_account_details' def is_account_capture_notification_emails_sent_details(self): """ @@ -20667,7 +19718,7 @@ def is_account_capture_notification_emails_sent_details(self): :rtype: bool """ - return self._tag == "account_capture_notification_emails_sent_details" + return self._tag == 'account_capture_notification_emails_sent_details' def is_account_capture_relinquish_account_details(self): """ @@ -20675,7 +19726,7 @@ def is_account_capture_relinquish_account_details(self): :rtype: bool """ - return self._tag == "account_capture_relinquish_account_details" + return self._tag == 'account_capture_relinquish_account_details' def is_disabled_domain_invites_details(self): """ @@ -20683,7 +19734,7 @@ def is_disabled_domain_invites_details(self): :rtype: bool """ - return self._tag == "disabled_domain_invites_details" + return self._tag == 'disabled_domain_invites_details' def is_domain_invites_approve_request_to_join_team_details(self): """ @@ -20691,7 +19742,7 @@ def is_domain_invites_approve_request_to_join_team_details(self): :rtype: bool """ - return self._tag == "domain_invites_approve_request_to_join_team_details" + return self._tag == 'domain_invites_approve_request_to_join_team_details' def is_domain_invites_decline_request_to_join_team_details(self): """ @@ -20699,7 +19750,7 @@ def is_domain_invites_decline_request_to_join_team_details(self): :rtype: bool """ - return self._tag == "domain_invites_decline_request_to_join_team_details" + return self._tag == 'domain_invites_decline_request_to_join_team_details' def is_domain_invites_email_existing_users_details(self): """ @@ -20707,7 +19758,7 @@ def is_domain_invites_email_existing_users_details(self): :rtype: bool """ - return self._tag == "domain_invites_email_existing_users_details" + return self._tag == 'domain_invites_email_existing_users_details' def is_domain_invites_request_to_join_team_details(self): """ @@ -20715,7 +19766,7 @@ def is_domain_invites_request_to_join_team_details(self): :rtype: bool """ - return self._tag == "domain_invites_request_to_join_team_details" + return self._tag == 'domain_invites_request_to_join_team_details' def is_domain_invites_set_invite_new_user_pref_to_no_details(self): """ @@ -20723,7 +19774,7 @@ def is_domain_invites_set_invite_new_user_pref_to_no_details(self): :rtype: bool """ - return self._tag == "domain_invites_set_invite_new_user_pref_to_no_details" + return self._tag == 'domain_invites_set_invite_new_user_pref_to_no_details' def is_domain_invites_set_invite_new_user_pref_to_yes_details(self): """ @@ -20731,7 +19782,7 @@ def is_domain_invites_set_invite_new_user_pref_to_yes_details(self): :rtype: bool """ - return self._tag == "domain_invites_set_invite_new_user_pref_to_yes_details" + return self._tag == 'domain_invites_set_invite_new_user_pref_to_yes_details' def is_domain_verification_add_domain_fail_details(self): """ @@ -20739,7 +19790,7 @@ def is_domain_verification_add_domain_fail_details(self): :rtype: bool """ - return self._tag == "domain_verification_add_domain_fail_details" + return self._tag == 'domain_verification_add_domain_fail_details' def is_domain_verification_add_domain_success_details(self): """ @@ -20747,7 +19798,7 @@ def is_domain_verification_add_domain_success_details(self): :rtype: bool """ - return self._tag == "domain_verification_add_domain_success_details" + return self._tag == 'domain_verification_add_domain_success_details' def is_domain_verification_remove_domain_details(self): """ @@ -20755,7 +19806,7 @@ def is_domain_verification_remove_domain_details(self): :rtype: bool """ - return self._tag == "domain_verification_remove_domain_details" + return self._tag == 'domain_verification_remove_domain_details' def is_enabled_domain_invites_details(self): """ @@ -20763,7 +19814,7 @@ def is_enabled_domain_invites_details(self): :rtype: bool """ - return self._tag == "enabled_domain_invites_details" + return self._tag == 'enabled_domain_invites_details' def is_encrypted_folder_cancel_team_key_rotation_details(self): """ @@ -20771,7 +19822,7 @@ def is_encrypted_folder_cancel_team_key_rotation_details(self): :rtype: bool """ - return self._tag == "encrypted_folder_cancel_team_key_rotation_details" + return self._tag == 'encrypted_folder_cancel_team_key_rotation_details' def is_encrypted_folder_enroll_backup_key_details(self): """ @@ -20779,7 +19830,7 @@ def is_encrypted_folder_enroll_backup_key_details(self): :rtype: bool """ - return self._tag == "encrypted_folder_enroll_backup_key_details" + return self._tag == 'encrypted_folder_enroll_backup_key_details' def is_encrypted_folder_enroll_client_details(self): """ @@ -20787,7 +19838,7 @@ def is_encrypted_folder_enroll_client_details(self): :rtype: bool """ - return self._tag == "encrypted_folder_enroll_client_details" + return self._tag == 'encrypted_folder_enroll_client_details' def is_encrypted_folder_enroll_team_details(self): """ @@ -20795,7 +19846,7 @@ def is_encrypted_folder_enroll_team_details(self): :rtype: bool """ - return self._tag == "encrypted_folder_enroll_team_details" + return self._tag == 'encrypted_folder_enroll_team_details' def is_encrypted_folder_finish_team_unenrollment_details(self): """ @@ -20803,7 +19854,7 @@ def is_encrypted_folder_finish_team_unenrollment_details(self): :rtype: bool """ - return self._tag == "encrypted_folder_finish_team_unenrollment_details" + return self._tag == 'encrypted_folder_finish_team_unenrollment_details' def is_encrypted_folder_init_team_key_rotation_details(self): """ @@ -20811,7 +19862,7 @@ def is_encrypted_folder_init_team_key_rotation_details(self): :rtype: bool """ - return self._tag == "encrypted_folder_init_team_key_rotation_details" + return self._tag == 'encrypted_folder_init_team_key_rotation_details' def is_encrypted_folder_init_team_unenrollment_details(self): """ @@ -20819,7 +19870,7 @@ def is_encrypted_folder_init_team_unenrollment_details(self): :rtype: bool """ - return self._tag == "encrypted_folder_init_team_unenrollment_details" + return self._tag == 'encrypted_folder_init_team_unenrollment_details' def is_encrypted_folder_remove_backup_key_details(self): """ @@ -20827,7 +19878,7 @@ def is_encrypted_folder_remove_backup_key_details(self): :rtype: bool """ - return self._tag == "encrypted_folder_remove_backup_key_details" + return self._tag == 'encrypted_folder_remove_backup_key_details' def is_encrypted_folder_rotate_team_key_details(self): """ @@ -20835,7 +19886,7 @@ def is_encrypted_folder_rotate_team_key_details(self): :rtype: bool """ - return self._tag == "encrypted_folder_rotate_team_key_details" + return self._tag == 'encrypted_folder_rotate_team_key_details' def is_encrypted_folder_unenroll_client_details(self): """ @@ -20843,7 +19894,7 @@ def is_encrypted_folder_unenroll_client_details(self): :rtype: bool """ - return self._tag == "encrypted_folder_unenroll_client_details" + return self._tag == 'encrypted_folder_unenroll_client_details' def is_team_encryption_key_activate_key_details(self): """ @@ -20851,7 +19902,7 @@ def is_team_encryption_key_activate_key_details(self): :rtype: bool """ - return self._tag == "team_encryption_key_activate_key_details" + return self._tag == 'team_encryption_key_activate_key_details' def is_team_encryption_key_cancel_key_deletion_details(self): """ @@ -20859,7 +19910,7 @@ def is_team_encryption_key_cancel_key_deletion_details(self): :rtype: bool """ - return self._tag == "team_encryption_key_cancel_key_deletion_details" + return self._tag == 'team_encryption_key_cancel_key_deletion_details' def is_team_encryption_key_create_key_details(self): """ @@ -20867,7 +19918,7 @@ def is_team_encryption_key_create_key_details(self): :rtype: bool """ - return self._tag == "team_encryption_key_create_key_details" + return self._tag == 'team_encryption_key_create_key_details' def is_team_encryption_key_deactivate_key_details(self): """ @@ -20875,7 +19926,7 @@ def is_team_encryption_key_deactivate_key_details(self): :rtype: bool """ - return self._tag == "team_encryption_key_deactivate_key_details" + return self._tag == 'team_encryption_key_deactivate_key_details' def is_team_encryption_key_delete_key_details(self): """ @@ -20883,7 +19934,7 @@ def is_team_encryption_key_delete_key_details(self): :rtype: bool """ - return self._tag == "team_encryption_key_delete_key_details" + return self._tag == 'team_encryption_key_delete_key_details' def is_team_encryption_key_disable_key_details(self): """ @@ -20891,7 +19942,7 @@ def is_team_encryption_key_disable_key_details(self): :rtype: bool """ - return self._tag == "team_encryption_key_disable_key_details" + return self._tag == 'team_encryption_key_disable_key_details' def is_team_encryption_key_enable_key_details(self): """ @@ -20899,7 +19950,7 @@ def is_team_encryption_key_enable_key_details(self): :rtype: bool """ - return self._tag == "team_encryption_key_enable_key_details" + return self._tag == 'team_encryption_key_enable_key_details' def is_team_encryption_key_rotate_key_details(self): """ @@ -20907,7 +19958,7 @@ def is_team_encryption_key_rotate_key_details(self): :rtype: bool """ - return self._tag == "team_encryption_key_rotate_key_details" + return self._tag == 'team_encryption_key_rotate_key_details' def is_team_encryption_key_schedule_key_deletion_details(self): """ @@ -20915,7 +19966,7 @@ def is_team_encryption_key_schedule_key_deletion_details(self): :rtype: bool """ - return self._tag == "team_encryption_key_schedule_key_deletion_details" + return self._tag == 'team_encryption_key_schedule_key_deletion_details' def is_apply_naming_convention_details(self): """ @@ -20923,7 +19974,7 @@ def is_apply_naming_convention_details(self): :rtype: bool """ - return self._tag == "apply_naming_convention_details" + return self._tag == 'apply_naming_convention_details' def is_create_folder_details(self): """ @@ -20931,7 +19982,7 @@ def is_create_folder_details(self): :rtype: bool """ - return self._tag == "create_folder_details" + return self._tag == 'create_folder_details' def is_file_add_details(self): """ @@ -20939,7 +19990,7 @@ def is_file_add_details(self): :rtype: bool """ - return self._tag == "file_add_details" + return self._tag == 'file_add_details' def is_file_add_from_automation_details(self): """ @@ -20947,7 +19998,7 @@ def is_file_add_from_automation_details(self): :rtype: bool """ - return self._tag == "file_add_from_automation_details" + return self._tag == 'file_add_from_automation_details' def is_file_copy_details(self): """ @@ -20955,7 +20006,7 @@ def is_file_copy_details(self): :rtype: bool """ - return self._tag == "file_copy_details" + return self._tag == 'file_copy_details' def is_file_delete_details(self): """ @@ -20963,7 +20014,7 @@ def is_file_delete_details(self): :rtype: bool """ - return self._tag == "file_delete_details" + return self._tag == 'file_delete_details' def is_file_download_details(self): """ @@ -20971,7 +20022,7 @@ def is_file_download_details(self): :rtype: bool """ - return self._tag == "file_download_details" + return self._tag == 'file_download_details' def is_file_edit_details(self): """ @@ -20979,7 +20030,7 @@ def is_file_edit_details(self): :rtype: bool """ - return self._tag == "file_edit_details" + return self._tag == 'file_edit_details' def is_file_get_copy_reference_details(self): """ @@ -20987,7 +20038,7 @@ def is_file_get_copy_reference_details(self): :rtype: bool """ - return self._tag == "file_get_copy_reference_details" + return self._tag == 'file_get_copy_reference_details' def is_file_locking_lock_status_changed_details(self): """ @@ -20995,7 +20046,7 @@ def is_file_locking_lock_status_changed_details(self): :rtype: bool """ - return self._tag == "file_locking_lock_status_changed_details" + return self._tag == 'file_locking_lock_status_changed_details' def is_file_move_details(self): """ @@ -21003,7 +20054,7 @@ def is_file_move_details(self): :rtype: bool """ - return self._tag == "file_move_details" + return self._tag == 'file_move_details' def is_file_permanently_delete_details(self): """ @@ -21011,7 +20062,7 @@ def is_file_permanently_delete_details(self): :rtype: bool """ - return self._tag == "file_permanently_delete_details" + return self._tag == 'file_permanently_delete_details' def is_file_preview_details(self): """ @@ -21019,7 +20070,7 @@ def is_file_preview_details(self): :rtype: bool """ - return self._tag == "file_preview_details" + return self._tag == 'file_preview_details' def is_file_rename_details(self): """ @@ -21027,7 +20078,7 @@ def is_file_rename_details(self): :rtype: bool """ - return self._tag == "file_rename_details" + return self._tag == 'file_rename_details' def is_file_restore_details(self): """ @@ -21035,7 +20086,7 @@ def is_file_restore_details(self): :rtype: bool """ - return self._tag == "file_restore_details" + return self._tag == 'file_restore_details' def is_file_revert_details(self): """ @@ -21043,7 +20094,7 @@ def is_file_revert_details(self): :rtype: bool """ - return self._tag == "file_revert_details" + return self._tag == 'file_revert_details' def is_file_rollback_changes_details(self): """ @@ -21051,7 +20102,7 @@ def is_file_rollback_changes_details(self): :rtype: bool """ - return self._tag == "file_rollback_changes_details" + return self._tag == 'file_rollback_changes_details' def is_file_save_copy_reference_details(self): """ @@ -21059,7 +20110,7 @@ def is_file_save_copy_reference_details(self): :rtype: bool """ - return self._tag == "file_save_copy_reference_details" + return self._tag == 'file_save_copy_reference_details' def is_folder_overview_description_changed_details(self): """ @@ -21067,7 +20118,7 @@ def is_folder_overview_description_changed_details(self): :rtype: bool """ - return self._tag == "folder_overview_description_changed_details" + return self._tag == 'folder_overview_description_changed_details' def is_folder_overview_item_pinned_details(self): """ @@ -21075,7 +20126,7 @@ def is_folder_overview_item_pinned_details(self): :rtype: bool """ - return self._tag == "folder_overview_item_pinned_details" + return self._tag == 'folder_overview_item_pinned_details' def is_folder_overview_item_unpinned_details(self): """ @@ -21083,7 +20134,7 @@ def is_folder_overview_item_unpinned_details(self): :rtype: bool """ - return self._tag == "folder_overview_item_unpinned_details" + return self._tag == 'folder_overview_item_unpinned_details' def is_media_hub_file_downloaded_details(self): """ @@ -21091,7 +20142,7 @@ def is_media_hub_file_downloaded_details(self): :rtype: bool """ - return self._tag == "media_hub_file_downloaded_details" + return self._tag == 'media_hub_file_downloaded_details' def is_object_label_added_details(self): """ @@ -21099,7 +20150,7 @@ def is_object_label_added_details(self): :rtype: bool """ - return self._tag == "object_label_added_details" + return self._tag == 'object_label_added_details' def is_object_label_removed_details(self): """ @@ -21107,7 +20158,7 @@ def is_object_label_removed_details(self): :rtype: bool """ - return self._tag == "object_label_removed_details" + return self._tag == 'object_label_removed_details' def is_object_label_updated_value_details(self): """ @@ -21115,7 +20166,7 @@ def is_object_label_updated_value_details(self): :rtype: bool """ - return self._tag == "object_label_updated_value_details" + return self._tag == 'object_label_updated_value_details' def is_organize_folder_with_tidy_details(self): """ @@ -21123,7 +20174,7 @@ def is_organize_folder_with_tidy_details(self): :rtype: bool """ - return self._tag == "organize_folder_with_tidy_details" + return self._tag == 'organize_folder_with_tidy_details' def is_replay_file_delete_details(self): """ @@ -21131,7 +20182,7 @@ def is_replay_file_delete_details(self): :rtype: bool """ - return self._tag == "replay_file_delete_details" + return self._tag == 'replay_file_delete_details' def is_replay_file_downloaded_details(self): """ @@ -21139,7 +20190,7 @@ def is_replay_file_downloaded_details(self): :rtype: bool """ - return self._tag == "replay_file_downloaded_details" + return self._tag == 'replay_file_downloaded_details' def is_replay_team_project_created_details(self): """ @@ -21147,7 +20198,7 @@ def is_replay_team_project_created_details(self): :rtype: bool """ - return self._tag == "replay_team_project_created_details" + return self._tag == 'replay_team_project_created_details' def is_rewind_folder_details(self): """ @@ -21155,7 +20206,7 @@ def is_rewind_folder_details(self): :rtype: bool """ - return self._tag == "rewind_folder_details" + return self._tag == 'rewind_folder_details' def is_undo_naming_convention_details(self): """ @@ -21163,7 +20214,7 @@ def is_undo_naming_convention_details(self): :rtype: bool """ - return self._tag == "undo_naming_convention_details" + return self._tag == 'undo_naming_convention_details' def is_undo_organize_folder_with_tidy_details(self): """ @@ -21171,7 +20222,7 @@ def is_undo_organize_folder_with_tidy_details(self): :rtype: bool """ - return self._tag == "undo_organize_folder_with_tidy_details" + return self._tag == 'undo_organize_folder_with_tidy_details' def is_user_tags_added_details(self): """ @@ -21179,7 +20230,7 @@ def is_user_tags_added_details(self): :rtype: bool """ - return self._tag == "user_tags_added_details" + return self._tag == 'user_tags_added_details' def is_user_tags_removed_details(self): """ @@ -21187,7 +20238,7 @@ def is_user_tags_removed_details(self): :rtype: bool """ - return self._tag == "user_tags_removed_details" + return self._tag == 'user_tags_removed_details' def is_email_ingest_receive_file_details(self): """ @@ -21195,7 +20246,7 @@ def is_email_ingest_receive_file_details(self): :rtype: bool """ - return self._tag == "email_ingest_receive_file_details" + return self._tag == 'email_ingest_receive_file_details' def is_file_request_auto_close_details(self): """ @@ -21203,7 +20254,7 @@ def is_file_request_auto_close_details(self): :rtype: bool """ - return self._tag == "file_request_auto_close_details" + return self._tag == 'file_request_auto_close_details' def is_file_request_change_details(self): """ @@ -21211,7 +20262,7 @@ def is_file_request_change_details(self): :rtype: bool """ - return self._tag == "file_request_change_details" + return self._tag == 'file_request_change_details' def is_file_request_close_details(self): """ @@ -21219,7 +20270,7 @@ def is_file_request_close_details(self): :rtype: bool """ - return self._tag == "file_request_close_details" + return self._tag == 'file_request_close_details' def is_file_request_create_details(self): """ @@ -21227,7 +20278,7 @@ def is_file_request_create_details(self): :rtype: bool """ - return self._tag == "file_request_create_details" + return self._tag == 'file_request_create_details' def is_file_request_delete_details(self): """ @@ -21235,7 +20286,7 @@ def is_file_request_delete_details(self): :rtype: bool """ - return self._tag == "file_request_delete_details" + return self._tag == 'file_request_delete_details' def is_file_request_receive_file_details(self): """ @@ -21243,7 +20294,7 @@ def is_file_request_receive_file_details(self): :rtype: bool """ - return self._tag == "file_request_receive_file_details" + return self._tag == 'file_request_receive_file_details' def is_group_add_external_id_details(self): """ @@ -21251,7 +20302,7 @@ def is_group_add_external_id_details(self): :rtype: bool """ - return self._tag == "group_add_external_id_details" + return self._tag == 'group_add_external_id_details' def is_group_add_member_details(self): """ @@ -21259,7 +20310,7 @@ def is_group_add_member_details(self): :rtype: bool """ - return self._tag == "group_add_member_details" + return self._tag == 'group_add_member_details' def is_group_change_external_id_details(self): """ @@ -21267,7 +20318,7 @@ def is_group_change_external_id_details(self): :rtype: bool """ - return self._tag == "group_change_external_id_details" + return self._tag == 'group_change_external_id_details' def is_group_change_management_type_details(self): """ @@ -21275,7 +20326,7 @@ def is_group_change_management_type_details(self): :rtype: bool """ - return self._tag == "group_change_management_type_details" + return self._tag == 'group_change_management_type_details' def is_group_change_member_role_details(self): """ @@ -21283,7 +20334,7 @@ def is_group_change_member_role_details(self): :rtype: bool """ - return self._tag == "group_change_member_role_details" + return self._tag == 'group_change_member_role_details' def is_group_create_details(self): """ @@ -21291,7 +20342,7 @@ def is_group_create_details(self): :rtype: bool """ - return self._tag == "group_create_details" + return self._tag == 'group_create_details' def is_group_delete_details(self): """ @@ -21299,7 +20350,7 @@ def is_group_delete_details(self): :rtype: bool """ - return self._tag == "group_delete_details" + return self._tag == 'group_delete_details' def is_group_description_updated_details(self): """ @@ -21307,7 +20358,7 @@ def is_group_description_updated_details(self): :rtype: bool """ - return self._tag == "group_description_updated_details" + return self._tag == 'group_description_updated_details' def is_group_external_sharing_setting_override_changed_details(self): """ @@ -21315,7 +20366,7 @@ def is_group_external_sharing_setting_override_changed_details(self): :rtype: bool """ - return self._tag == "group_external_sharing_setting_override_changed_details" + return self._tag == 'group_external_sharing_setting_override_changed_details' def is_group_join_policy_updated_details(self): """ @@ -21323,7 +20374,7 @@ def is_group_join_policy_updated_details(self): :rtype: bool """ - return self._tag == "group_join_policy_updated_details" + return self._tag == 'group_join_policy_updated_details' def is_group_moved_details(self): """ @@ -21331,7 +20382,7 @@ def is_group_moved_details(self): :rtype: bool """ - return self._tag == "group_moved_details" + return self._tag == 'group_moved_details' def is_group_remove_external_id_details(self): """ @@ -21339,7 +20390,7 @@ def is_group_remove_external_id_details(self): :rtype: bool """ - return self._tag == "group_remove_external_id_details" + return self._tag == 'group_remove_external_id_details' def is_group_remove_member_details(self): """ @@ -21347,7 +20398,7 @@ def is_group_remove_member_details(self): :rtype: bool """ - return self._tag == "group_remove_member_details" + return self._tag == 'group_remove_member_details' def is_group_rename_details(self): """ @@ -21355,7 +20406,7 @@ def is_group_rename_details(self): :rtype: bool """ - return self._tag == "group_rename_details" + return self._tag == 'group_rename_details' def is_account_lock_or_unlocked_details(self): """ @@ -21363,7 +20414,7 @@ def is_account_lock_or_unlocked_details(self): :rtype: bool """ - return self._tag == "account_lock_or_unlocked_details" + return self._tag == 'account_lock_or_unlocked_details' def is_emm_error_details(self): """ @@ -21371,7 +20422,7 @@ def is_emm_error_details(self): :rtype: bool """ - return self._tag == "emm_error_details" + return self._tag == 'emm_error_details' def is_guest_admin_signed_in_via_trusted_teams_details(self): """ @@ -21379,7 +20430,7 @@ def is_guest_admin_signed_in_via_trusted_teams_details(self): :rtype: bool """ - return self._tag == "guest_admin_signed_in_via_trusted_teams_details" + return self._tag == 'guest_admin_signed_in_via_trusted_teams_details' def is_guest_admin_signed_out_via_trusted_teams_details(self): """ @@ -21387,7 +20438,7 @@ def is_guest_admin_signed_out_via_trusted_teams_details(self): :rtype: bool """ - return self._tag == "guest_admin_signed_out_via_trusted_teams_details" + return self._tag == 'guest_admin_signed_out_via_trusted_teams_details' def is_login_fail_details(self): """ @@ -21395,7 +20446,7 @@ def is_login_fail_details(self): :rtype: bool """ - return self._tag == "login_fail_details" + return self._tag == 'login_fail_details' def is_login_success_details(self): """ @@ -21403,7 +20454,7 @@ def is_login_success_details(self): :rtype: bool """ - return self._tag == "login_success_details" + return self._tag == 'login_success_details' def is_logout_details(self): """ @@ -21411,7 +20462,7 @@ def is_logout_details(self): :rtype: bool """ - return self._tag == "logout_details" + return self._tag == 'logout_details' def is_reseller_support_session_end_details(self): """ @@ -21419,7 +20470,7 @@ def is_reseller_support_session_end_details(self): :rtype: bool """ - return self._tag == "reseller_support_session_end_details" + return self._tag == 'reseller_support_session_end_details' def is_reseller_support_session_start_details(self): """ @@ -21427,7 +20478,7 @@ def is_reseller_support_session_start_details(self): :rtype: bool """ - return self._tag == "reseller_support_session_start_details" + return self._tag == 'reseller_support_session_start_details' def is_sign_in_as_session_end_details(self): """ @@ -21435,7 +20486,7 @@ def is_sign_in_as_session_end_details(self): :rtype: bool """ - return self._tag == "sign_in_as_session_end_details" + return self._tag == 'sign_in_as_session_end_details' def is_sign_in_as_session_start_details(self): """ @@ -21443,7 +20494,7 @@ def is_sign_in_as_session_start_details(self): :rtype: bool """ - return self._tag == "sign_in_as_session_start_details" + return self._tag == 'sign_in_as_session_start_details' def is_sso_error_details(self): """ @@ -21451,7 +20502,7 @@ def is_sso_error_details(self): :rtype: bool """ - return self._tag == "sso_error_details" + return self._tag == 'sso_error_details' def is_addon_assigned_details(self): """ @@ -21459,7 +20510,7 @@ def is_addon_assigned_details(self): :rtype: bool """ - return self._tag == "addon_assigned_details" + return self._tag == 'addon_assigned_details' def is_addon_removed_details(self): """ @@ -21467,7 +20518,7 @@ def is_addon_removed_details(self): :rtype: bool """ - return self._tag == "addon_removed_details" + return self._tag == 'addon_removed_details' def is_backup_admin_invitation_sent_details(self): """ @@ -21475,7 +20526,7 @@ def is_backup_admin_invitation_sent_details(self): :rtype: bool """ - return self._tag == "backup_admin_invitation_sent_details" + return self._tag == 'backup_admin_invitation_sent_details' def is_backup_invitation_opened_details(self): """ @@ -21483,7 +20534,7 @@ def is_backup_invitation_opened_details(self): :rtype: bool """ - return self._tag == "backup_invitation_opened_details" + return self._tag == 'backup_invitation_opened_details' def is_create_team_invite_link_details(self): """ @@ -21491,7 +20542,7 @@ def is_create_team_invite_link_details(self): :rtype: bool """ - return self._tag == "create_team_invite_link_details" + return self._tag == 'create_team_invite_link_details' def is_delete_team_invite_link_details(self): """ @@ -21499,7 +20550,7 @@ def is_delete_team_invite_link_details(self): :rtype: bool """ - return self._tag == "delete_team_invite_link_details" + return self._tag == 'delete_team_invite_link_details' def is_member_add_external_id_details(self): """ @@ -21507,7 +20558,7 @@ def is_member_add_external_id_details(self): :rtype: bool """ - return self._tag == "member_add_external_id_details" + return self._tag == 'member_add_external_id_details' def is_member_add_name_details(self): """ @@ -21515,7 +20566,7 @@ def is_member_add_name_details(self): :rtype: bool """ - return self._tag == "member_add_name_details" + return self._tag == 'member_add_name_details' def is_member_change_admin_role_details(self): """ @@ -21523,7 +20574,7 @@ def is_member_change_admin_role_details(self): :rtype: bool """ - return self._tag == "member_change_admin_role_details" + return self._tag == 'member_change_admin_role_details' def is_member_change_email_details(self): """ @@ -21531,7 +20582,7 @@ def is_member_change_email_details(self): :rtype: bool """ - return self._tag == "member_change_email_details" + return self._tag == 'member_change_email_details' def is_member_change_external_id_details(self): """ @@ -21539,7 +20590,7 @@ def is_member_change_external_id_details(self): :rtype: bool """ - return self._tag == "member_change_external_id_details" + return self._tag == 'member_change_external_id_details' def is_member_change_membership_type_details(self): """ @@ -21547,7 +20598,7 @@ def is_member_change_membership_type_details(self): :rtype: bool """ - return self._tag == "member_change_membership_type_details" + return self._tag == 'member_change_membership_type_details' def is_member_change_name_details(self): """ @@ -21555,7 +20606,7 @@ def is_member_change_name_details(self): :rtype: bool """ - return self._tag == "member_change_name_details" + return self._tag == 'member_change_name_details' def is_member_change_reseller_role_details(self): """ @@ -21563,7 +20614,7 @@ def is_member_change_reseller_role_details(self): :rtype: bool """ - return self._tag == "member_change_reseller_role_details" + return self._tag == 'member_change_reseller_role_details' def is_member_change_status_details(self): """ @@ -21571,7 +20622,7 @@ def is_member_change_status_details(self): :rtype: bool """ - return self._tag == "member_change_status_details" + return self._tag == 'member_change_status_details' def is_member_delete_manual_contacts_details(self): """ @@ -21579,7 +20630,7 @@ def is_member_delete_manual_contacts_details(self): :rtype: bool """ - return self._tag == "member_delete_manual_contacts_details" + return self._tag == 'member_delete_manual_contacts_details' def is_member_delete_profile_photo_details(self): """ @@ -21587,7 +20638,7 @@ def is_member_delete_profile_photo_details(self): :rtype: bool """ - return self._tag == "member_delete_profile_photo_details" + return self._tag == 'member_delete_profile_photo_details' def is_member_permanently_delete_account_contents_details(self): """ @@ -21595,7 +20646,7 @@ def is_member_permanently_delete_account_contents_details(self): :rtype: bool """ - return self._tag == "member_permanently_delete_account_contents_details" + return self._tag == 'member_permanently_delete_account_contents_details' def is_member_remove_external_id_details(self): """ @@ -21603,7 +20654,7 @@ def is_member_remove_external_id_details(self): :rtype: bool """ - return self._tag == "member_remove_external_id_details" + return self._tag == 'member_remove_external_id_details' def is_member_set_profile_photo_details(self): """ @@ -21611,7 +20662,7 @@ def is_member_set_profile_photo_details(self): :rtype: bool """ - return self._tag == "member_set_profile_photo_details" + return self._tag == 'member_set_profile_photo_details' def is_member_space_limits_add_custom_quota_details(self): """ @@ -21619,7 +20670,7 @@ def is_member_space_limits_add_custom_quota_details(self): :rtype: bool """ - return self._tag == "member_space_limits_add_custom_quota_details" + return self._tag == 'member_space_limits_add_custom_quota_details' def is_member_space_limits_change_custom_quota_details(self): """ @@ -21627,7 +20678,7 @@ def is_member_space_limits_change_custom_quota_details(self): :rtype: bool """ - return self._tag == "member_space_limits_change_custom_quota_details" + return self._tag == 'member_space_limits_change_custom_quota_details' def is_member_space_limits_change_status_details(self): """ @@ -21635,7 +20686,7 @@ def is_member_space_limits_change_status_details(self): :rtype: bool """ - return self._tag == "member_space_limits_change_status_details" + return self._tag == 'member_space_limits_change_status_details' def is_member_space_limits_remove_custom_quota_details(self): """ @@ -21643,7 +20694,7 @@ def is_member_space_limits_remove_custom_quota_details(self): :rtype: bool """ - return self._tag == "member_space_limits_remove_custom_quota_details" + return self._tag == 'member_space_limits_remove_custom_quota_details' def is_member_suggest_details(self): """ @@ -21651,7 +20702,7 @@ def is_member_suggest_details(self): :rtype: bool """ - return self._tag == "member_suggest_details" + return self._tag == 'member_suggest_details' def is_member_transfer_account_contents_details(self): """ @@ -21659,7 +20710,7 @@ def is_member_transfer_account_contents_details(self): :rtype: bool """ - return self._tag == "member_transfer_account_contents_details" + return self._tag == 'member_transfer_account_contents_details' def is_pending_secondary_email_added_details(self): """ @@ -21667,7 +20718,7 @@ def is_pending_secondary_email_added_details(self): :rtype: bool """ - return self._tag == "pending_secondary_email_added_details" + return self._tag == 'pending_secondary_email_added_details' def is_product_assigned_to_member_details(self): """ @@ -21675,7 +20726,7 @@ def is_product_assigned_to_member_details(self): :rtype: bool """ - return self._tag == "product_assigned_to_member_details" + return self._tag == 'product_assigned_to_member_details' def is_product_removed_from_member_details(self): """ @@ -21683,7 +20734,7 @@ def is_product_removed_from_member_details(self): :rtype: bool """ - return self._tag == "product_removed_from_member_details" + return self._tag == 'product_removed_from_member_details' def is_secondary_email_deleted_details(self): """ @@ -21691,7 +20742,7 @@ def is_secondary_email_deleted_details(self): :rtype: bool """ - return self._tag == "secondary_email_deleted_details" + return self._tag == 'secondary_email_deleted_details' def is_secondary_email_verified_details(self): """ @@ -21699,7 +20750,7 @@ def is_secondary_email_verified_details(self): :rtype: bool """ - return self._tag == "secondary_email_verified_details" + return self._tag == 'secondary_email_verified_details' def is_secondary_mails_policy_changed_details(self): """ @@ -21707,7 +20758,7 @@ def is_secondary_mails_policy_changed_details(self): :rtype: bool """ - return self._tag == "secondary_mails_policy_changed_details" + return self._tag == 'secondary_mails_policy_changed_details' def is_binder_add_page_details(self): """ @@ -21715,7 +20766,7 @@ def is_binder_add_page_details(self): :rtype: bool """ - return self._tag == "binder_add_page_details" + return self._tag == 'binder_add_page_details' def is_binder_add_section_details(self): """ @@ -21723,7 +20774,7 @@ def is_binder_add_section_details(self): :rtype: bool """ - return self._tag == "binder_add_section_details" + return self._tag == 'binder_add_section_details' def is_binder_remove_page_details(self): """ @@ -21731,7 +20782,7 @@ def is_binder_remove_page_details(self): :rtype: bool """ - return self._tag == "binder_remove_page_details" + return self._tag == 'binder_remove_page_details' def is_binder_remove_section_details(self): """ @@ -21739,7 +20790,7 @@ def is_binder_remove_section_details(self): :rtype: bool """ - return self._tag == "binder_remove_section_details" + return self._tag == 'binder_remove_section_details' def is_binder_rename_page_details(self): """ @@ -21747,7 +20798,7 @@ def is_binder_rename_page_details(self): :rtype: bool """ - return self._tag == "binder_rename_page_details" + return self._tag == 'binder_rename_page_details' def is_binder_rename_section_details(self): """ @@ -21755,7 +20806,7 @@ def is_binder_rename_section_details(self): :rtype: bool """ - return self._tag == "binder_rename_section_details" + return self._tag == 'binder_rename_section_details' def is_binder_reorder_page_details(self): """ @@ -21763,7 +20814,7 @@ def is_binder_reorder_page_details(self): :rtype: bool """ - return self._tag == "binder_reorder_page_details" + return self._tag == 'binder_reorder_page_details' def is_binder_reorder_section_details(self): """ @@ -21771,7 +20822,7 @@ def is_binder_reorder_section_details(self): :rtype: bool """ - return self._tag == "binder_reorder_section_details" + return self._tag == 'binder_reorder_section_details' def is_paper_content_add_member_details(self): """ @@ -21779,7 +20830,7 @@ def is_paper_content_add_member_details(self): :rtype: bool """ - return self._tag == "paper_content_add_member_details" + return self._tag == 'paper_content_add_member_details' def is_paper_content_add_to_folder_details(self): """ @@ -21787,7 +20838,7 @@ def is_paper_content_add_to_folder_details(self): :rtype: bool """ - return self._tag == "paper_content_add_to_folder_details" + return self._tag == 'paper_content_add_to_folder_details' def is_paper_content_archive_details(self): """ @@ -21795,7 +20846,7 @@ def is_paper_content_archive_details(self): :rtype: bool """ - return self._tag == "paper_content_archive_details" + return self._tag == 'paper_content_archive_details' def is_paper_content_create_details(self): """ @@ -21803,7 +20854,7 @@ def is_paper_content_create_details(self): :rtype: bool """ - return self._tag == "paper_content_create_details" + return self._tag == 'paper_content_create_details' def is_paper_content_permanently_delete_details(self): """ @@ -21811,7 +20862,7 @@ def is_paper_content_permanently_delete_details(self): :rtype: bool """ - return self._tag == "paper_content_permanently_delete_details" + return self._tag == 'paper_content_permanently_delete_details' def is_paper_content_remove_from_folder_details(self): """ @@ -21819,7 +20870,7 @@ def is_paper_content_remove_from_folder_details(self): :rtype: bool """ - return self._tag == "paper_content_remove_from_folder_details" + return self._tag == 'paper_content_remove_from_folder_details' def is_paper_content_remove_member_details(self): """ @@ -21827,7 +20878,7 @@ def is_paper_content_remove_member_details(self): :rtype: bool """ - return self._tag == "paper_content_remove_member_details" + return self._tag == 'paper_content_remove_member_details' def is_paper_content_rename_details(self): """ @@ -21835,7 +20886,7 @@ def is_paper_content_rename_details(self): :rtype: bool """ - return self._tag == "paper_content_rename_details" + return self._tag == 'paper_content_rename_details' def is_paper_content_restore_details(self): """ @@ -21843,7 +20894,7 @@ def is_paper_content_restore_details(self): :rtype: bool """ - return self._tag == "paper_content_restore_details" + return self._tag == 'paper_content_restore_details' def is_paper_doc_add_comment_details(self): """ @@ -21851,7 +20902,7 @@ def is_paper_doc_add_comment_details(self): :rtype: bool """ - return self._tag == "paper_doc_add_comment_details" + return self._tag == 'paper_doc_add_comment_details' def is_paper_doc_change_member_role_details(self): """ @@ -21859,7 +20910,7 @@ def is_paper_doc_change_member_role_details(self): :rtype: bool """ - return self._tag == "paper_doc_change_member_role_details" + return self._tag == 'paper_doc_change_member_role_details' def is_paper_doc_change_sharing_policy_details(self): """ @@ -21867,7 +20918,7 @@ def is_paper_doc_change_sharing_policy_details(self): :rtype: bool """ - return self._tag == "paper_doc_change_sharing_policy_details" + return self._tag == 'paper_doc_change_sharing_policy_details' def is_paper_doc_change_subscription_details(self): """ @@ -21875,7 +20926,7 @@ def is_paper_doc_change_subscription_details(self): :rtype: bool """ - return self._tag == "paper_doc_change_subscription_details" + return self._tag == 'paper_doc_change_subscription_details' def is_paper_doc_deleted_details(self): """ @@ -21883,7 +20934,7 @@ def is_paper_doc_deleted_details(self): :rtype: bool """ - return self._tag == "paper_doc_deleted_details" + return self._tag == 'paper_doc_deleted_details' def is_paper_doc_delete_comment_details(self): """ @@ -21891,7 +20942,7 @@ def is_paper_doc_delete_comment_details(self): :rtype: bool """ - return self._tag == "paper_doc_delete_comment_details" + return self._tag == 'paper_doc_delete_comment_details' def is_paper_doc_download_details(self): """ @@ -21899,7 +20950,7 @@ def is_paper_doc_download_details(self): :rtype: bool """ - return self._tag == "paper_doc_download_details" + return self._tag == 'paper_doc_download_details' def is_paper_doc_edit_details(self): """ @@ -21907,7 +20958,7 @@ def is_paper_doc_edit_details(self): :rtype: bool """ - return self._tag == "paper_doc_edit_details" + return self._tag == 'paper_doc_edit_details' def is_paper_doc_edit_comment_details(self): """ @@ -21915,7 +20966,7 @@ def is_paper_doc_edit_comment_details(self): :rtype: bool """ - return self._tag == "paper_doc_edit_comment_details" + return self._tag == 'paper_doc_edit_comment_details' def is_paper_doc_followed_details(self): """ @@ -21923,7 +20974,7 @@ def is_paper_doc_followed_details(self): :rtype: bool """ - return self._tag == "paper_doc_followed_details" + return self._tag == 'paper_doc_followed_details' def is_paper_doc_mention_details(self): """ @@ -21931,7 +20982,7 @@ def is_paper_doc_mention_details(self): :rtype: bool """ - return self._tag == "paper_doc_mention_details" + return self._tag == 'paper_doc_mention_details' def is_paper_doc_ownership_changed_details(self): """ @@ -21939,7 +20990,7 @@ def is_paper_doc_ownership_changed_details(self): :rtype: bool """ - return self._tag == "paper_doc_ownership_changed_details" + return self._tag == 'paper_doc_ownership_changed_details' def is_paper_doc_request_access_details(self): """ @@ -21947,7 +20998,7 @@ def is_paper_doc_request_access_details(self): :rtype: bool """ - return self._tag == "paper_doc_request_access_details" + return self._tag == 'paper_doc_request_access_details' def is_paper_doc_resolve_comment_details(self): """ @@ -21955,7 +21006,7 @@ def is_paper_doc_resolve_comment_details(self): :rtype: bool """ - return self._tag == "paper_doc_resolve_comment_details" + return self._tag == 'paper_doc_resolve_comment_details' def is_paper_doc_revert_details(self): """ @@ -21963,7 +21014,7 @@ def is_paper_doc_revert_details(self): :rtype: bool """ - return self._tag == "paper_doc_revert_details" + return self._tag == 'paper_doc_revert_details' def is_paper_doc_slack_share_details(self): """ @@ -21971,7 +21022,7 @@ def is_paper_doc_slack_share_details(self): :rtype: bool """ - return self._tag == "paper_doc_slack_share_details" + return self._tag == 'paper_doc_slack_share_details' def is_paper_doc_team_invite_details(self): """ @@ -21979,7 +21030,7 @@ def is_paper_doc_team_invite_details(self): :rtype: bool """ - return self._tag == "paper_doc_team_invite_details" + return self._tag == 'paper_doc_team_invite_details' def is_paper_doc_trashed_details(self): """ @@ -21987,7 +21038,7 @@ def is_paper_doc_trashed_details(self): :rtype: bool """ - return self._tag == "paper_doc_trashed_details" + return self._tag == 'paper_doc_trashed_details' def is_paper_doc_unresolve_comment_details(self): """ @@ -21995,7 +21046,7 @@ def is_paper_doc_unresolve_comment_details(self): :rtype: bool """ - return self._tag == "paper_doc_unresolve_comment_details" + return self._tag == 'paper_doc_unresolve_comment_details' def is_paper_doc_untrashed_details(self): """ @@ -22003,7 +21054,7 @@ def is_paper_doc_untrashed_details(self): :rtype: bool """ - return self._tag == "paper_doc_untrashed_details" + return self._tag == 'paper_doc_untrashed_details' def is_paper_doc_view_details(self): """ @@ -22011,7 +21062,7 @@ def is_paper_doc_view_details(self): :rtype: bool """ - return self._tag == "paper_doc_view_details" + return self._tag == 'paper_doc_view_details' def is_paper_external_view_allow_details(self): """ @@ -22019,7 +21070,7 @@ def is_paper_external_view_allow_details(self): :rtype: bool """ - return self._tag == "paper_external_view_allow_details" + return self._tag == 'paper_external_view_allow_details' def is_paper_external_view_default_team_details(self): """ @@ -22027,7 +21078,7 @@ def is_paper_external_view_default_team_details(self): :rtype: bool """ - return self._tag == "paper_external_view_default_team_details" + return self._tag == 'paper_external_view_default_team_details' def is_paper_external_view_forbid_details(self): """ @@ -22035,7 +21086,7 @@ def is_paper_external_view_forbid_details(self): :rtype: bool """ - return self._tag == "paper_external_view_forbid_details" + return self._tag == 'paper_external_view_forbid_details' def is_paper_folder_change_subscription_details(self): """ @@ -22043,7 +21094,7 @@ def is_paper_folder_change_subscription_details(self): :rtype: bool """ - return self._tag == "paper_folder_change_subscription_details" + return self._tag == 'paper_folder_change_subscription_details' def is_paper_folder_deleted_details(self): """ @@ -22051,7 +21102,7 @@ def is_paper_folder_deleted_details(self): :rtype: bool """ - return self._tag == "paper_folder_deleted_details" + return self._tag == 'paper_folder_deleted_details' def is_paper_folder_followed_details(self): """ @@ -22059,7 +21110,7 @@ def is_paper_folder_followed_details(self): :rtype: bool """ - return self._tag == "paper_folder_followed_details" + return self._tag == 'paper_folder_followed_details' def is_paper_folder_team_invite_details(self): """ @@ -22067,7 +21118,7 @@ def is_paper_folder_team_invite_details(self): :rtype: bool """ - return self._tag == "paper_folder_team_invite_details" + return self._tag == 'paper_folder_team_invite_details' def is_paper_published_link_change_permission_details(self): """ @@ -22075,7 +21126,7 @@ def is_paper_published_link_change_permission_details(self): :rtype: bool """ - return self._tag == "paper_published_link_change_permission_details" + return self._tag == 'paper_published_link_change_permission_details' def is_paper_published_link_create_details(self): """ @@ -22083,7 +21134,7 @@ def is_paper_published_link_create_details(self): :rtype: bool """ - return self._tag == "paper_published_link_create_details" + return self._tag == 'paper_published_link_create_details' def is_paper_published_link_disabled_details(self): """ @@ -22091,7 +21142,7 @@ def is_paper_published_link_disabled_details(self): :rtype: bool """ - return self._tag == "paper_published_link_disabled_details" + return self._tag == 'paper_published_link_disabled_details' def is_paper_published_link_view_details(self): """ @@ -22099,7 +21150,7 @@ def is_paper_published_link_view_details(self): :rtype: bool """ - return self._tag == "paper_published_link_view_details" + return self._tag == 'paper_published_link_view_details' def is_password_change_details(self): """ @@ -22107,7 +21158,7 @@ def is_password_change_details(self): :rtype: bool """ - return self._tag == "password_change_details" + return self._tag == 'password_change_details' def is_password_reset_details(self): """ @@ -22115,7 +21166,7 @@ def is_password_reset_details(self): :rtype: bool """ - return self._tag == "password_reset_details" + return self._tag == 'password_reset_details' def is_password_reset_all_details(self): """ @@ -22123,7 +21174,7 @@ def is_password_reset_all_details(self): :rtype: bool """ - return self._tag == "password_reset_all_details" + return self._tag == 'password_reset_all_details' def is_protect_internal_domains_changed_details(self): """ @@ -22131,7 +21182,7 @@ def is_protect_internal_domains_changed_details(self): :rtype: bool """ - return self._tag == "protect_internal_domains_changed_details" + return self._tag == 'protect_internal_domains_changed_details' def is_classification_create_report_details(self): """ @@ -22139,7 +21190,7 @@ def is_classification_create_report_details(self): :rtype: bool """ - return self._tag == "classification_create_report_details" + return self._tag == 'classification_create_report_details' def is_classification_create_report_fail_details(self): """ @@ -22147,7 +21198,7 @@ def is_classification_create_report_fail_details(self): :rtype: bool """ - return self._tag == "classification_create_report_fail_details" + return self._tag == 'classification_create_report_fail_details' def is_emm_create_exceptions_report_details(self): """ @@ -22155,7 +21206,7 @@ def is_emm_create_exceptions_report_details(self): :rtype: bool """ - return self._tag == "emm_create_exceptions_report_details" + return self._tag == 'emm_create_exceptions_report_details' def is_emm_create_usage_report_details(self): """ @@ -22163,7 +21214,7 @@ def is_emm_create_usage_report_details(self): :rtype: bool """ - return self._tag == "emm_create_usage_report_details" + return self._tag == 'emm_create_usage_report_details' def is_export_members_report_details(self): """ @@ -22171,7 +21222,7 @@ def is_export_members_report_details(self): :rtype: bool """ - return self._tag == "export_members_report_details" + return self._tag == 'export_members_report_details' def is_export_members_report_fail_details(self): """ @@ -22179,7 +21230,7 @@ def is_export_members_report_fail_details(self): :rtype: bool """ - return self._tag == "export_members_report_fail_details" + return self._tag == 'export_members_report_fail_details' def is_external_sharing_create_report_details(self): """ @@ -22187,7 +21238,7 @@ def is_external_sharing_create_report_details(self): :rtype: bool """ - return self._tag == "external_sharing_create_report_details" + return self._tag == 'external_sharing_create_report_details' def is_external_sharing_report_failed_details(self): """ @@ -22195,7 +21246,7 @@ def is_external_sharing_report_failed_details(self): :rtype: bool """ - return self._tag == "external_sharing_report_failed_details" + return self._tag == 'external_sharing_report_failed_details' def is_member_access_details_create_report_details(self): """ @@ -22203,7 +21254,7 @@ def is_member_access_details_create_report_details(self): :rtype: bool """ - return self._tag == "member_access_details_create_report_details" + return self._tag == 'member_access_details_create_report_details' def is_member_access_details_create_report_failed_details(self): """ @@ -22211,7 +21262,7 @@ def is_member_access_details_create_report_failed_details(self): :rtype: bool """ - return self._tag == "member_access_details_create_report_failed_details" + return self._tag == 'member_access_details_create_report_failed_details' def is_no_expiration_link_gen_create_report_details(self): """ @@ -22219,7 +21270,7 @@ def is_no_expiration_link_gen_create_report_details(self): :rtype: bool """ - return self._tag == "no_expiration_link_gen_create_report_details" + return self._tag == 'no_expiration_link_gen_create_report_details' def is_no_expiration_link_gen_report_failed_details(self): """ @@ -22227,7 +21278,7 @@ def is_no_expiration_link_gen_report_failed_details(self): :rtype: bool """ - return self._tag == "no_expiration_link_gen_report_failed_details" + return self._tag == 'no_expiration_link_gen_report_failed_details' def is_no_password_link_gen_create_report_details(self): """ @@ -22235,7 +21286,7 @@ def is_no_password_link_gen_create_report_details(self): :rtype: bool """ - return self._tag == "no_password_link_gen_create_report_details" + return self._tag == 'no_password_link_gen_create_report_details' def is_no_password_link_gen_report_failed_details(self): """ @@ -22243,7 +21294,7 @@ def is_no_password_link_gen_report_failed_details(self): :rtype: bool """ - return self._tag == "no_password_link_gen_report_failed_details" + return self._tag == 'no_password_link_gen_report_failed_details' def is_no_password_link_view_create_report_details(self): """ @@ -22251,7 +21302,7 @@ def is_no_password_link_view_create_report_details(self): :rtype: bool """ - return self._tag == "no_password_link_view_create_report_details" + return self._tag == 'no_password_link_view_create_report_details' def is_no_password_link_view_report_failed_details(self): """ @@ -22259,7 +21310,7 @@ def is_no_password_link_view_report_failed_details(self): :rtype: bool """ - return self._tag == "no_password_link_view_report_failed_details" + return self._tag == 'no_password_link_view_report_failed_details' def is_outdated_link_view_create_report_details(self): """ @@ -22267,7 +21318,7 @@ def is_outdated_link_view_create_report_details(self): :rtype: bool """ - return self._tag == "outdated_link_view_create_report_details" + return self._tag == 'outdated_link_view_create_report_details' def is_outdated_link_view_report_failed_details(self): """ @@ -22275,7 +21326,7 @@ def is_outdated_link_view_report_failed_details(self): :rtype: bool """ - return self._tag == "outdated_link_view_report_failed_details" + return self._tag == 'outdated_link_view_report_failed_details' def is_paper_admin_export_start_details(self): """ @@ -22283,7 +21334,7 @@ def is_paper_admin_export_start_details(self): :rtype: bool """ - return self._tag == "paper_admin_export_start_details" + return self._tag == 'paper_admin_export_start_details' def is_ransomware_alert_create_report_details(self): """ @@ -22291,7 +21342,7 @@ def is_ransomware_alert_create_report_details(self): :rtype: bool """ - return self._tag == "ransomware_alert_create_report_details" + return self._tag == 'ransomware_alert_create_report_details' def is_ransomware_alert_create_report_failed_details(self): """ @@ -22299,7 +21350,7 @@ def is_ransomware_alert_create_report_failed_details(self): :rtype: bool """ - return self._tag == "ransomware_alert_create_report_failed_details" + return self._tag == 'ransomware_alert_create_report_failed_details' def is_shared_folders_create_report_details(self): """ @@ -22307,7 +21358,7 @@ def is_shared_folders_create_report_details(self): :rtype: bool """ - return self._tag == "shared_folders_create_report_details" + return self._tag == 'shared_folders_create_report_details' def is_shared_folders_create_report_failed_details(self): """ @@ -22315,7 +21366,7 @@ def is_shared_folders_create_report_failed_details(self): :rtype: bool """ - return self._tag == "shared_folders_create_report_failed_details" + return self._tag == 'shared_folders_create_report_failed_details' def is_smart_sync_create_admin_privilege_report_details(self): """ @@ -22323,7 +21374,7 @@ def is_smart_sync_create_admin_privilege_report_details(self): :rtype: bool """ - return self._tag == "smart_sync_create_admin_privilege_report_details" + return self._tag == 'smart_sync_create_admin_privilege_report_details' def is_team_activity_create_report_details(self): """ @@ -22331,7 +21382,7 @@ def is_team_activity_create_report_details(self): :rtype: bool """ - return self._tag == "team_activity_create_report_details" + return self._tag == 'team_activity_create_report_details' def is_team_activity_create_report_fail_details(self): """ @@ -22339,7 +21390,7 @@ def is_team_activity_create_report_fail_details(self): :rtype: bool """ - return self._tag == "team_activity_create_report_fail_details" + return self._tag == 'team_activity_create_report_fail_details' def is_team_folders_create_report_details(self): """ @@ -22347,7 +21398,7 @@ def is_team_folders_create_report_details(self): :rtype: bool """ - return self._tag == "team_folders_create_report_details" + return self._tag == 'team_folders_create_report_details' def is_team_folders_create_report_failed_details(self): """ @@ -22355,7 +21406,7 @@ def is_team_folders_create_report_failed_details(self): :rtype: bool """ - return self._tag == "team_folders_create_report_failed_details" + return self._tag == 'team_folders_create_report_failed_details' def is_team_storage_create_report_details(self): """ @@ -22363,7 +21414,7 @@ def is_team_storage_create_report_details(self): :rtype: bool """ - return self._tag == "team_storage_create_report_details" + return self._tag == 'team_storage_create_report_details' def is_team_storage_create_report_failed_details(self): """ @@ -22371,7 +21422,7 @@ def is_team_storage_create_report_failed_details(self): :rtype: bool """ - return self._tag == "team_storage_create_report_failed_details" + return self._tag == 'team_storage_create_report_failed_details' def is_collection_share_details(self): """ @@ -22379,7 +21430,7 @@ def is_collection_share_details(self): :rtype: bool """ - return self._tag == "collection_share_details" + return self._tag == 'collection_share_details' def is_file_transfers_file_add_details(self): """ @@ -22387,7 +21438,7 @@ def is_file_transfers_file_add_details(self): :rtype: bool """ - return self._tag == "file_transfers_file_add_details" + return self._tag == 'file_transfers_file_add_details' def is_file_transfers_transfer_delete_details(self): """ @@ -22395,7 +21446,7 @@ def is_file_transfers_transfer_delete_details(self): :rtype: bool """ - return self._tag == "file_transfers_transfer_delete_details" + return self._tag == 'file_transfers_transfer_delete_details' def is_file_transfers_transfer_download_details(self): """ @@ -22403,7 +21454,7 @@ def is_file_transfers_transfer_download_details(self): :rtype: bool """ - return self._tag == "file_transfers_transfer_download_details" + return self._tag == 'file_transfers_transfer_download_details' def is_file_transfers_transfer_send_details(self): """ @@ -22411,7 +21462,7 @@ def is_file_transfers_transfer_send_details(self): :rtype: bool """ - return self._tag == "file_transfers_transfer_send_details" + return self._tag == 'file_transfers_transfer_send_details' def is_file_transfers_transfer_view_details(self): """ @@ -22419,7 +21470,7 @@ def is_file_transfers_transfer_view_details(self): :rtype: bool """ - return self._tag == "file_transfers_transfer_view_details" + return self._tag == 'file_transfers_transfer_view_details' def is_media_hub_project_team_add_details(self): """ @@ -22427,7 +21478,7 @@ def is_media_hub_project_team_add_details(self): :rtype: bool """ - return self._tag == "media_hub_project_team_add_details" + return self._tag == 'media_hub_project_team_add_details' def is_media_hub_project_team_delete_details(self): """ @@ -22435,7 +21486,7 @@ def is_media_hub_project_team_delete_details(self): :rtype: bool """ - return self._tag == "media_hub_project_team_delete_details" + return self._tag == 'media_hub_project_team_delete_details' def is_media_hub_project_team_role_changed_details(self): """ @@ -22443,7 +21494,7 @@ def is_media_hub_project_team_role_changed_details(self): :rtype: bool """ - return self._tag == "media_hub_project_team_role_changed_details" + return self._tag == 'media_hub_project_team_role_changed_details' def is_media_hub_shared_link_audience_changed_details(self): """ @@ -22451,7 +21502,7 @@ def is_media_hub_shared_link_audience_changed_details(self): :rtype: bool """ - return self._tag == "media_hub_shared_link_audience_changed_details" + return self._tag == 'media_hub_shared_link_audience_changed_details' def is_media_hub_shared_link_created_details(self): """ @@ -22459,7 +21510,7 @@ def is_media_hub_shared_link_created_details(self): :rtype: bool """ - return self._tag == "media_hub_shared_link_created_details" + return self._tag == 'media_hub_shared_link_created_details' def is_media_hub_shared_link_download_setting_changed_details(self): """ @@ -22467,7 +21518,7 @@ def is_media_hub_shared_link_download_setting_changed_details(self): :rtype: bool """ - return self._tag == "media_hub_shared_link_download_setting_changed_details" + return self._tag == 'media_hub_shared_link_download_setting_changed_details' def is_media_hub_shared_link_revoked_details(self): """ @@ -22475,7 +21526,7 @@ def is_media_hub_shared_link_revoked_details(self): :rtype: bool """ - return self._tag == "media_hub_shared_link_revoked_details" + return self._tag == 'media_hub_shared_link_revoked_details' def is_note_acl_invite_only_details(self): """ @@ -22483,7 +21534,7 @@ def is_note_acl_invite_only_details(self): :rtype: bool """ - return self._tag == "note_acl_invite_only_details" + return self._tag == 'note_acl_invite_only_details' def is_note_acl_link_details(self): """ @@ -22491,7 +21542,7 @@ def is_note_acl_link_details(self): :rtype: bool """ - return self._tag == "note_acl_link_details" + return self._tag == 'note_acl_link_details' def is_note_acl_team_link_details(self): """ @@ -22499,7 +21550,7 @@ def is_note_acl_team_link_details(self): :rtype: bool """ - return self._tag == "note_acl_team_link_details" + return self._tag == 'note_acl_team_link_details' def is_note_shared_details(self): """ @@ -22507,7 +21558,7 @@ def is_note_shared_details(self): :rtype: bool """ - return self._tag == "note_shared_details" + return self._tag == 'note_shared_details' def is_note_share_receive_details(self): """ @@ -22515,7 +21566,7 @@ def is_note_share_receive_details(self): :rtype: bool """ - return self._tag == "note_share_receive_details" + return self._tag == 'note_share_receive_details' def is_open_note_shared_details(self): """ @@ -22523,7 +21574,7 @@ def is_open_note_shared_details(self): :rtype: bool """ - return self._tag == "open_note_shared_details" + return self._tag == 'open_note_shared_details' def is_replay_file_shared_link_created_details(self): """ @@ -22531,7 +21582,7 @@ def is_replay_file_shared_link_created_details(self): :rtype: bool """ - return self._tag == "replay_file_shared_link_created_details" + return self._tag == 'replay_file_shared_link_created_details' def is_replay_file_shared_link_modified_details(self): """ @@ -22539,7 +21590,7 @@ def is_replay_file_shared_link_modified_details(self): :rtype: bool """ - return self._tag == "replay_file_shared_link_modified_details" + return self._tag == 'replay_file_shared_link_modified_details' def is_replay_project_team_add_details(self): """ @@ -22547,7 +21598,7 @@ def is_replay_project_team_add_details(self): :rtype: bool """ - return self._tag == "replay_project_team_add_details" + return self._tag == 'replay_project_team_add_details' def is_replay_project_team_delete_details(self): """ @@ -22555,7 +21606,7 @@ def is_replay_project_team_delete_details(self): :rtype: bool """ - return self._tag == "replay_project_team_delete_details" + return self._tag == 'replay_project_team_delete_details' def is_send_and_track_file_added_details(self): """ @@ -22563,7 +21614,7 @@ def is_send_and_track_file_added_details(self): :rtype: bool """ - return self._tag == "send_and_track_file_added_details" + return self._tag == 'send_and_track_file_added_details' def is_send_and_track_file_renamed_details(self): """ @@ -22571,7 +21622,7 @@ def is_send_and_track_file_renamed_details(self): :rtype: bool """ - return self._tag == "send_and_track_file_renamed_details" + return self._tag == 'send_and_track_file_renamed_details' def is_send_and_track_file_updated_details(self): """ @@ -22579,7 +21630,7 @@ def is_send_and_track_file_updated_details(self): :rtype: bool """ - return self._tag == "send_and_track_file_updated_details" + return self._tag == 'send_and_track_file_updated_details' def is_send_and_track_link_created_details(self): """ @@ -22587,7 +21638,7 @@ def is_send_and_track_link_created_details(self): :rtype: bool """ - return self._tag == "send_and_track_link_created_details" + return self._tag == 'send_and_track_link_created_details' def is_send_and_track_link_deleted_details(self): """ @@ -22595,7 +21646,7 @@ def is_send_and_track_link_deleted_details(self): :rtype: bool """ - return self._tag == "send_and_track_link_deleted_details" + return self._tag == 'send_and_track_link_deleted_details' def is_send_and_track_link_updated_details(self): """ @@ -22603,7 +21654,7 @@ def is_send_and_track_link_updated_details(self): :rtype: bool """ - return self._tag == "send_and_track_link_updated_details" + return self._tag == 'send_and_track_link_updated_details' def is_send_and_track_link_viewed_details(self): """ @@ -22611,7 +21662,7 @@ def is_send_and_track_link_viewed_details(self): :rtype: bool """ - return self._tag == "send_and_track_link_viewed_details" + return self._tag == 'send_and_track_link_viewed_details' def is_send_and_track_removed_file_and_associated_links_details(self): """ @@ -22619,7 +21670,7 @@ def is_send_and_track_removed_file_and_associated_links_details(self): :rtype: bool """ - return self._tag == "send_and_track_removed_file_and_associated_links_details" + return self._tag == 'send_and_track_removed_file_and_associated_links_details' def is_sf_add_group_details(self): """ @@ -22627,7 +21678,7 @@ def is_sf_add_group_details(self): :rtype: bool """ - return self._tag == "sf_add_group_details" + return self._tag == 'sf_add_group_details' def is_sf_allow_non_members_to_view_shared_links_details(self): """ @@ -22635,7 +21686,7 @@ def is_sf_allow_non_members_to_view_shared_links_details(self): :rtype: bool """ - return self._tag == "sf_allow_non_members_to_view_shared_links_details" + return self._tag == 'sf_allow_non_members_to_view_shared_links_details' def is_sf_external_invite_warn_details(self): """ @@ -22643,7 +21694,7 @@ def is_sf_external_invite_warn_details(self): :rtype: bool """ - return self._tag == "sf_external_invite_warn_details" + return self._tag == 'sf_external_invite_warn_details' def is_sf_fb_invite_details(self): """ @@ -22651,7 +21702,7 @@ def is_sf_fb_invite_details(self): :rtype: bool """ - return self._tag == "sf_fb_invite_details" + return self._tag == 'sf_fb_invite_details' def is_sf_fb_invite_change_role_details(self): """ @@ -22659,7 +21710,7 @@ def is_sf_fb_invite_change_role_details(self): :rtype: bool """ - return self._tag == "sf_fb_invite_change_role_details" + return self._tag == 'sf_fb_invite_change_role_details' def is_sf_fb_uninvite_details(self): """ @@ -22667,7 +21718,7 @@ def is_sf_fb_uninvite_details(self): :rtype: bool """ - return self._tag == "sf_fb_uninvite_details" + return self._tag == 'sf_fb_uninvite_details' def is_sf_invite_group_details(self): """ @@ -22675,7 +21726,7 @@ def is_sf_invite_group_details(self): :rtype: bool """ - return self._tag == "sf_invite_group_details" + return self._tag == 'sf_invite_group_details' def is_sf_team_grant_access_details(self): """ @@ -22683,7 +21734,7 @@ def is_sf_team_grant_access_details(self): :rtype: bool """ - return self._tag == "sf_team_grant_access_details" + return self._tag == 'sf_team_grant_access_details' def is_sf_team_invite_details(self): """ @@ -22691,7 +21742,7 @@ def is_sf_team_invite_details(self): :rtype: bool """ - return self._tag == "sf_team_invite_details" + return self._tag == 'sf_team_invite_details' def is_sf_team_invite_change_role_details(self): """ @@ -22699,7 +21750,7 @@ def is_sf_team_invite_change_role_details(self): :rtype: bool """ - return self._tag == "sf_team_invite_change_role_details" + return self._tag == 'sf_team_invite_change_role_details' def is_sf_team_join_details(self): """ @@ -22707,7 +21758,7 @@ def is_sf_team_join_details(self): :rtype: bool """ - return self._tag == "sf_team_join_details" + return self._tag == 'sf_team_join_details' def is_sf_team_join_from_oob_link_details(self): """ @@ -22715,7 +21766,7 @@ def is_sf_team_join_from_oob_link_details(self): :rtype: bool """ - return self._tag == "sf_team_join_from_oob_link_details" + return self._tag == 'sf_team_join_from_oob_link_details' def is_sf_team_uninvite_details(self): """ @@ -22723,7 +21774,7 @@ def is_sf_team_uninvite_details(self): :rtype: bool """ - return self._tag == "sf_team_uninvite_details" + return self._tag == 'sf_team_uninvite_details' def is_shared_content_add_invitees_details(self): """ @@ -22731,7 +21782,7 @@ def is_shared_content_add_invitees_details(self): :rtype: bool """ - return self._tag == "shared_content_add_invitees_details" + return self._tag == 'shared_content_add_invitees_details' def is_shared_content_add_link_expiry_details(self): """ @@ -22739,7 +21790,7 @@ def is_shared_content_add_link_expiry_details(self): :rtype: bool """ - return self._tag == "shared_content_add_link_expiry_details" + return self._tag == 'shared_content_add_link_expiry_details' def is_shared_content_add_link_password_details(self): """ @@ -22747,7 +21798,7 @@ def is_shared_content_add_link_password_details(self): :rtype: bool """ - return self._tag == "shared_content_add_link_password_details" + return self._tag == 'shared_content_add_link_password_details' def is_shared_content_add_member_details(self): """ @@ -22755,7 +21806,7 @@ def is_shared_content_add_member_details(self): :rtype: bool """ - return self._tag == "shared_content_add_member_details" + return self._tag == 'shared_content_add_member_details' def is_shared_content_change_downloads_policy_details(self): """ @@ -22763,7 +21814,7 @@ def is_shared_content_change_downloads_policy_details(self): :rtype: bool """ - return self._tag == "shared_content_change_downloads_policy_details" + return self._tag == 'shared_content_change_downloads_policy_details' def is_shared_content_change_invitee_role_details(self): """ @@ -22771,7 +21822,7 @@ def is_shared_content_change_invitee_role_details(self): :rtype: bool """ - return self._tag == "shared_content_change_invitee_role_details" + return self._tag == 'shared_content_change_invitee_role_details' def is_shared_content_change_link_audience_details(self): """ @@ -22779,7 +21830,7 @@ def is_shared_content_change_link_audience_details(self): :rtype: bool """ - return self._tag == "shared_content_change_link_audience_details" + return self._tag == 'shared_content_change_link_audience_details' def is_shared_content_change_link_expiry_details(self): """ @@ -22787,7 +21838,7 @@ def is_shared_content_change_link_expiry_details(self): :rtype: bool """ - return self._tag == "shared_content_change_link_expiry_details" + return self._tag == 'shared_content_change_link_expiry_details' def is_shared_content_change_link_password_details(self): """ @@ -22795,7 +21846,7 @@ def is_shared_content_change_link_password_details(self): :rtype: bool """ - return self._tag == "shared_content_change_link_password_details" + return self._tag == 'shared_content_change_link_password_details' def is_shared_content_change_member_role_details(self): """ @@ -22803,7 +21854,7 @@ def is_shared_content_change_member_role_details(self): :rtype: bool """ - return self._tag == "shared_content_change_member_role_details" + return self._tag == 'shared_content_change_member_role_details' def is_shared_content_change_viewer_info_policy_details(self): """ @@ -22811,7 +21862,7 @@ def is_shared_content_change_viewer_info_policy_details(self): :rtype: bool """ - return self._tag == "shared_content_change_viewer_info_policy_details" + return self._tag == 'shared_content_change_viewer_info_policy_details' def is_shared_content_claim_invitation_details(self): """ @@ -22819,7 +21870,7 @@ def is_shared_content_claim_invitation_details(self): :rtype: bool """ - return self._tag == "shared_content_claim_invitation_details" + return self._tag == 'shared_content_claim_invitation_details' def is_shared_content_copy_details(self): """ @@ -22827,7 +21878,7 @@ def is_shared_content_copy_details(self): :rtype: bool """ - return self._tag == "shared_content_copy_details" + return self._tag == 'shared_content_copy_details' def is_shared_content_download_details(self): """ @@ -22835,7 +21886,7 @@ def is_shared_content_download_details(self): :rtype: bool """ - return self._tag == "shared_content_download_details" + return self._tag == 'shared_content_download_details' def is_shared_content_relinquish_membership_details(self): """ @@ -22843,7 +21894,7 @@ def is_shared_content_relinquish_membership_details(self): :rtype: bool """ - return self._tag == "shared_content_relinquish_membership_details" + return self._tag == 'shared_content_relinquish_membership_details' def is_shared_content_remove_invitees_details(self): """ @@ -22851,7 +21902,7 @@ def is_shared_content_remove_invitees_details(self): :rtype: bool """ - return self._tag == "shared_content_remove_invitees_details" + return self._tag == 'shared_content_remove_invitees_details' def is_shared_content_remove_link_expiry_details(self): """ @@ -22859,7 +21910,7 @@ def is_shared_content_remove_link_expiry_details(self): :rtype: bool """ - return self._tag == "shared_content_remove_link_expiry_details" + return self._tag == 'shared_content_remove_link_expiry_details' def is_shared_content_remove_link_password_details(self): """ @@ -22867,7 +21918,7 @@ def is_shared_content_remove_link_password_details(self): :rtype: bool """ - return self._tag == "shared_content_remove_link_password_details" + return self._tag == 'shared_content_remove_link_password_details' def is_shared_content_remove_member_details(self): """ @@ -22875,7 +21926,7 @@ def is_shared_content_remove_member_details(self): :rtype: bool """ - return self._tag == "shared_content_remove_member_details" + return self._tag == 'shared_content_remove_member_details' def is_shared_content_request_access_details(self): """ @@ -22883,7 +21934,7 @@ def is_shared_content_request_access_details(self): :rtype: bool """ - return self._tag == "shared_content_request_access_details" + return self._tag == 'shared_content_request_access_details' def is_shared_content_restore_invitees_details(self): """ @@ -22891,7 +21942,7 @@ def is_shared_content_restore_invitees_details(self): :rtype: bool """ - return self._tag == "shared_content_restore_invitees_details" + return self._tag == 'shared_content_restore_invitees_details' def is_shared_content_restore_member_details(self): """ @@ -22899,7 +21950,7 @@ def is_shared_content_restore_member_details(self): :rtype: bool """ - return self._tag == "shared_content_restore_member_details" + return self._tag == 'shared_content_restore_member_details' def is_shared_content_unshare_details(self): """ @@ -22907,7 +21958,7 @@ def is_shared_content_unshare_details(self): :rtype: bool """ - return self._tag == "shared_content_unshare_details" + return self._tag == 'shared_content_unshare_details' def is_shared_content_view_details(self): """ @@ -22915,7 +21966,7 @@ def is_shared_content_view_details(self): :rtype: bool """ - return self._tag == "shared_content_view_details" + return self._tag == 'shared_content_view_details' def is_shared_folder_change_link_policy_details(self): """ @@ -22923,7 +21974,7 @@ def is_shared_folder_change_link_policy_details(self): :rtype: bool """ - return self._tag == "shared_folder_change_link_policy_details" + return self._tag == 'shared_folder_change_link_policy_details' def is_shared_folder_change_members_inheritance_policy_details(self): """ @@ -22931,7 +21982,7 @@ def is_shared_folder_change_members_inheritance_policy_details(self): :rtype: bool """ - return self._tag == "shared_folder_change_members_inheritance_policy_details" + return self._tag == 'shared_folder_change_members_inheritance_policy_details' def is_shared_folder_change_members_management_policy_details(self): """ @@ -22939,7 +21990,7 @@ def is_shared_folder_change_members_management_policy_details(self): :rtype: bool """ - return self._tag == "shared_folder_change_members_management_policy_details" + return self._tag == 'shared_folder_change_members_management_policy_details' def is_shared_folder_change_members_policy_details(self): """ @@ -22947,7 +21998,7 @@ def is_shared_folder_change_members_policy_details(self): :rtype: bool """ - return self._tag == "shared_folder_change_members_policy_details" + return self._tag == 'shared_folder_change_members_policy_details' def is_shared_folder_create_details(self): """ @@ -22955,7 +22006,7 @@ def is_shared_folder_create_details(self): :rtype: bool """ - return self._tag == "shared_folder_create_details" + return self._tag == 'shared_folder_create_details' def is_shared_folder_decline_invitation_details(self): """ @@ -22963,7 +22014,7 @@ def is_shared_folder_decline_invitation_details(self): :rtype: bool """ - return self._tag == "shared_folder_decline_invitation_details" + return self._tag == 'shared_folder_decline_invitation_details' def is_shared_folder_mount_details(self): """ @@ -22971,7 +22022,7 @@ def is_shared_folder_mount_details(self): :rtype: bool """ - return self._tag == "shared_folder_mount_details" + return self._tag == 'shared_folder_mount_details' def is_shared_folder_nest_details(self): """ @@ -22979,7 +22030,7 @@ def is_shared_folder_nest_details(self): :rtype: bool """ - return self._tag == "shared_folder_nest_details" + return self._tag == 'shared_folder_nest_details' def is_shared_folder_transfer_ownership_details(self): """ @@ -22987,7 +22038,7 @@ def is_shared_folder_transfer_ownership_details(self): :rtype: bool """ - return self._tag == "shared_folder_transfer_ownership_details" + return self._tag == 'shared_folder_transfer_ownership_details' def is_shared_folder_unmount_details(self): """ @@ -22995,7 +22046,7 @@ def is_shared_folder_unmount_details(self): :rtype: bool """ - return self._tag == "shared_folder_unmount_details" + return self._tag == 'shared_folder_unmount_details' def is_shared_link_add_expiry_details(self): """ @@ -23003,7 +22054,7 @@ def is_shared_link_add_expiry_details(self): :rtype: bool """ - return self._tag == "shared_link_add_expiry_details" + return self._tag == 'shared_link_add_expiry_details' def is_shared_link_change_expiry_details(self): """ @@ -23011,7 +22062,7 @@ def is_shared_link_change_expiry_details(self): :rtype: bool """ - return self._tag == "shared_link_change_expiry_details" + return self._tag == 'shared_link_change_expiry_details' def is_shared_link_change_visibility_details(self): """ @@ -23019,7 +22070,7 @@ def is_shared_link_change_visibility_details(self): :rtype: bool """ - return self._tag == "shared_link_change_visibility_details" + return self._tag == 'shared_link_change_visibility_details' def is_shared_link_copy_details(self): """ @@ -23027,7 +22078,7 @@ def is_shared_link_copy_details(self): :rtype: bool """ - return self._tag == "shared_link_copy_details" + return self._tag == 'shared_link_copy_details' def is_shared_link_create_details(self): """ @@ -23035,7 +22086,7 @@ def is_shared_link_create_details(self): :rtype: bool """ - return self._tag == "shared_link_create_details" + return self._tag == 'shared_link_create_details' def is_shared_link_disable_details(self): """ @@ -23043,7 +22094,7 @@ def is_shared_link_disable_details(self): :rtype: bool """ - return self._tag == "shared_link_disable_details" + return self._tag == 'shared_link_disable_details' def is_shared_link_download_details(self): """ @@ -23051,7 +22102,7 @@ def is_shared_link_download_details(self): :rtype: bool """ - return self._tag == "shared_link_download_details" + return self._tag == 'shared_link_download_details' def is_shared_link_remove_expiry_details(self): """ @@ -23059,7 +22110,7 @@ def is_shared_link_remove_expiry_details(self): :rtype: bool """ - return self._tag == "shared_link_remove_expiry_details" + return self._tag == 'shared_link_remove_expiry_details' def is_shared_link_remove_visitor_details(self): """ @@ -23067,7 +22118,7 @@ def is_shared_link_remove_visitor_details(self): :rtype: bool """ - return self._tag == "shared_link_remove_visitor_details" + return self._tag == 'shared_link_remove_visitor_details' def is_shared_link_settings_add_expiration_details(self): """ @@ -23075,7 +22126,7 @@ def is_shared_link_settings_add_expiration_details(self): :rtype: bool """ - return self._tag == "shared_link_settings_add_expiration_details" + return self._tag == 'shared_link_settings_add_expiration_details' def is_shared_link_settings_add_password_details(self): """ @@ -23083,7 +22134,7 @@ def is_shared_link_settings_add_password_details(self): :rtype: bool """ - return self._tag == "shared_link_settings_add_password_details" + return self._tag == 'shared_link_settings_add_password_details' def is_shared_link_settings_allow_download_disabled_details(self): """ @@ -23091,7 +22142,7 @@ def is_shared_link_settings_allow_download_disabled_details(self): :rtype: bool """ - return self._tag == "shared_link_settings_allow_download_disabled_details" + return self._tag == 'shared_link_settings_allow_download_disabled_details' def is_shared_link_settings_allow_download_enabled_details(self): """ @@ -23099,7 +22150,7 @@ def is_shared_link_settings_allow_download_enabled_details(self): :rtype: bool """ - return self._tag == "shared_link_settings_allow_download_enabled_details" + return self._tag == 'shared_link_settings_allow_download_enabled_details' def is_shared_link_settings_change_audience_details(self): """ @@ -23107,7 +22158,7 @@ def is_shared_link_settings_change_audience_details(self): :rtype: bool """ - return self._tag == "shared_link_settings_change_audience_details" + return self._tag == 'shared_link_settings_change_audience_details' def is_shared_link_settings_change_expiration_details(self): """ @@ -23115,7 +22166,7 @@ def is_shared_link_settings_change_expiration_details(self): :rtype: bool """ - return self._tag == "shared_link_settings_change_expiration_details" + return self._tag == 'shared_link_settings_change_expiration_details' def is_shared_link_settings_change_password_details(self): """ @@ -23123,7 +22174,7 @@ def is_shared_link_settings_change_password_details(self): :rtype: bool """ - return self._tag == "shared_link_settings_change_password_details" + return self._tag == 'shared_link_settings_change_password_details' def is_shared_link_settings_remove_expiration_details(self): """ @@ -23131,7 +22182,7 @@ def is_shared_link_settings_remove_expiration_details(self): :rtype: bool """ - return self._tag == "shared_link_settings_remove_expiration_details" + return self._tag == 'shared_link_settings_remove_expiration_details' def is_shared_link_settings_remove_password_details(self): """ @@ -23139,7 +22190,7 @@ def is_shared_link_settings_remove_password_details(self): :rtype: bool """ - return self._tag == "shared_link_settings_remove_password_details" + return self._tag == 'shared_link_settings_remove_password_details' def is_shared_link_share_details(self): """ @@ -23147,7 +22198,7 @@ def is_shared_link_share_details(self): :rtype: bool """ - return self._tag == "shared_link_share_details" + return self._tag == 'shared_link_share_details' def is_shared_link_view_details(self): """ @@ -23155,7 +22206,7 @@ def is_shared_link_view_details(self): :rtype: bool """ - return self._tag == "shared_link_view_details" + return self._tag == 'shared_link_view_details' def is_shared_note_opened_details(self): """ @@ -23163,7 +22214,7 @@ def is_shared_note_opened_details(self): :rtype: bool """ - return self._tag == "shared_note_opened_details" + return self._tag == 'shared_note_opened_details' def is_shmodel_disable_downloads_details(self): """ @@ -23171,7 +22222,7 @@ def is_shmodel_disable_downloads_details(self): :rtype: bool """ - return self._tag == "shmodel_disable_downloads_details" + return self._tag == 'shmodel_disable_downloads_details' def is_shmodel_enable_downloads_details(self): """ @@ -23179,7 +22230,7 @@ def is_shmodel_enable_downloads_details(self): :rtype: bool """ - return self._tag == "shmodel_enable_downloads_details" + return self._tag == 'shmodel_enable_downloads_details' def is_shmodel_group_share_details(self): """ @@ -23187,7 +22238,7 @@ def is_shmodel_group_share_details(self): :rtype: bool """ - return self._tag == "shmodel_group_share_details" + return self._tag == 'shmodel_group_share_details' def is_showcase_access_granted_details(self): """ @@ -23195,7 +22246,7 @@ def is_showcase_access_granted_details(self): :rtype: bool """ - return self._tag == "showcase_access_granted_details" + return self._tag == 'showcase_access_granted_details' def is_showcase_add_member_details(self): """ @@ -23203,7 +22254,7 @@ def is_showcase_add_member_details(self): :rtype: bool """ - return self._tag == "showcase_add_member_details" + return self._tag == 'showcase_add_member_details' def is_showcase_archived_details(self): """ @@ -23211,7 +22262,7 @@ def is_showcase_archived_details(self): :rtype: bool """ - return self._tag == "showcase_archived_details" + return self._tag == 'showcase_archived_details' def is_showcase_created_details(self): """ @@ -23219,7 +22270,7 @@ def is_showcase_created_details(self): :rtype: bool """ - return self._tag == "showcase_created_details" + return self._tag == 'showcase_created_details' def is_showcase_delete_comment_details(self): """ @@ -23227,7 +22278,7 @@ def is_showcase_delete_comment_details(self): :rtype: bool """ - return self._tag == "showcase_delete_comment_details" + return self._tag == 'showcase_delete_comment_details' def is_showcase_edited_details(self): """ @@ -23235,7 +22286,7 @@ def is_showcase_edited_details(self): :rtype: bool """ - return self._tag == "showcase_edited_details" + return self._tag == 'showcase_edited_details' def is_showcase_edit_comment_details(self): """ @@ -23243,7 +22294,7 @@ def is_showcase_edit_comment_details(self): :rtype: bool """ - return self._tag == "showcase_edit_comment_details" + return self._tag == 'showcase_edit_comment_details' def is_showcase_file_added_details(self): """ @@ -23251,7 +22302,7 @@ def is_showcase_file_added_details(self): :rtype: bool """ - return self._tag == "showcase_file_added_details" + return self._tag == 'showcase_file_added_details' def is_showcase_file_download_details(self): """ @@ -23259,7 +22310,7 @@ def is_showcase_file_download_details(self): :rtype: bool """ - return self._tag == "showcase_file_download_details" + return self._tag == 'showcase_file_download_details' def is_showcase_file_removed_details(self): """ @@ -23267,7 +22318,7 @@ def is_showcase_file_removed_details(self): :rtype: bool """ - return self._tag == "showcase_file_removed_details" + return self._tag == 'showcase_file_removed_details' def is_showcase_file_view_details(self): """ @@ -23275,7 +22326,7 @@ def is_showcase_file_view_details(self): :rtype: bool """ - return self._tag == "showcase_file_view_details" + return self._tag == 'showcase_file_view_details' def is_showcase_permanently_deleted_details(self): """ @@ -23283,7 +22334,7 @@ def is_showcase_permanently_deleted_details(self): :rtype: bool """ - return self._tag == "showcase_permanently_deleted_details" + return self._tag == 'showcase_permanently_deleted_details' def is_showcase_post_comment_details(self): """ @@ -23291,7 +22342,7 @@ def is_showcase_post_comment_details(self): :rtype: bool """ - return self._tag == "showcase_post_comment_details" + return self._tag == 'showcase_post_comment_details' def is_showcase_remove_member_details(self): """ @@ -23299,7 +22350,7 @@ def is_showcase_remove_member_details(self): :rtype: bool """ - return self._tag == "showcase_remove_member_details" + return self._tag == 'showcase_remove_member_details' def is_showcase_renamed_details(self): """ @@ -23307,7 +22358,7 @@ def is_showcase_renamed_details(self): :rtype: bool """ - return self._tag == "showcase_renamed_details" + return self._tag == 'showcase_renamed_details' def is_showcase_request_access_details(self): """ @@ -23315,7 +22366,7 @@ def is_showcase_request_access_details(self): :rtype: bool """ - return self._tag == "showcase_request_access_details" + return self._tag == 'showcase_request_access_details' def is_showcase_resolve_comment_details(self): """ @@ -23323,7 +22374,7 @@ def is_showcase_resolve_comment_details(self): :rtype: bool """ - return self._tag == "showcase_resolve_comment_details" + return self._tag == 'showcase_resolve_comment_details' def is_showcase_restored_details(self): """ @@ -23331,7 +22382,7 @@ def is_showcase_restored_details(self): :rtype: bool """ - return self._tag == "showcase_restored_details" + return self._tag == 'showcase_restored_details' def is_showcase_trashed_details(self): """ @@ -23339,7 +22390,7 @@ def is_showcase_trashed_details(self): :rtype: bool """ - return self._tag == "showcase_trashed_details" + return self._tag == 'showcase_trashed_details' def is_showcase_trashed_deprecated_details(self): """ @@ -23347,7 +22398,7 @@ def is_showcase_trashed_deprecated_details(self): :rtype: bool """ - return self._tag == "showcase_trashed_deprecated_details" + return self._tag == 'showcase_trashed_deprecated_details' def is_showcase_unresolve_comment_details(self): """ @@ -23355,7 +22406,7 @@ def is_showcase_unresolve_comment_details(self): :rtype: bool """ - return self._tag == "showcase_unresolve_comment_details" + return self._tag == 'showcase_unresolve_comment_details' def is_showcase_untrashed_details(self): """ @@ -23363,7 +22414,7 @@ def is_showcase_untrashed_details(self): :rtype: bool """ - return self._tag == "showcase_untrashed_details" + return self._tag == 'showcase_untrashed_details' def is_showcase_untrashed_deprecated_details(self): """ @@ -23371,7 +22422,7 @@ def is_showcase_untrashed_deprecated_details(self): :rtype: bool """ - return self._tag == "showcase_untrashed_deprecated_details" + return self._tag == 'showcase_untrashed_deprecated_details' def is_showcase_view_details(self): """ @@ -23379,7 +22430,7 @@ def is_showcase_view_details(self): :rtype: bool """ - return self._tag == "showcase_view_details" + return self._tag == 'showcase_view_details' def is_sign_signature_request_canceled_details(self): """ @@ -23387,7 +22438,7 @@ def is_sign_signature_request_canceled_details(self): :rtype: bool """ - return self._tag == "sign_signature_request_canceled_details" + return self._tag == 'sign_signature_request_canceled_details' def is_sign_signature_request_completed_details(self): """ @@ -23395,7 +22446,7 @@ def is_sign_signature_request_completed_details(self): :rtype: bool """ - return self._tag == "sign_signature_request_completed_details" + return self._tag == 'sign_signature_request_completed_details' def is_sign_signature_request_declined_details(self): """ @@ -23403,7 +22454,7 @@ def is_sign_signature_request_declined_details(self): :rtype: bool """ - return self._tag == "sign_signature_request_declined_details" + return self._tag == 'sign_signature_request_declined_details' def is_sign_signature_request_opened_details(self): """ @@ -23411,7 +22462,7 @@ def is_sign_signature_request_opened_details(self): :rtype: bool """ - return self._tag == "sign_signature_request_opened_details" + return self._tag == 'sign_signature_request_opened_details' def is_sign_signature_request_reminder_sent_details(self): """ @@ -23419,7 +22470,7 @@ def is_sign_signature_request_reminder_sent_details(self): :rtype: bool """ - return self._tag == "sign_signature_request_reminder_sent_details" + return self._tag == 'sign_signature_request_reminder_sent_details' def is_sign_signature_request_sent_details(self): """ @@ -23427,7 +22478,7 @@ def is_sign_signature_request_sent_details(self): :rtype: bool """ - return self._tag == "sign_signature_request_sent_details" + return self._tag == 'sign_signature_request_sent_details' def is_sign_template_created_details(self): """ @@ -23435,7 +22486,7 @@ def is_sign_template_created_details(self): :rtype: bool """ - return self._tag == "sign_template_created_details" + return self._tag == 'sign_template_created_details' def is_sign_template_shared_details(self): """ @@ -23443,7 +22494,7 @@ def is_sign_template_shared_details(self): :rtype: bool """ - return self._tag == "sign_template_shared_details" + return self._tag == 'sign_template_shared_details' def is_risc_security_event_details(self): """ @@ -23451,7 +22502,7 @@ def is_risc_security_event_details(self): :rtype: bool """ - return self._tag == "risc_security_event_details" + return self._tag == 'risc_security_event_details' def is_sso_add_cert_details(self): """ @@ -23459,7 +22510,7 @@ def is_sso_add_cert_details(self): :rtype: bool """ - return self._tag == "sso_add_cert_details" + return self._tag == 'sso_add_cert_details' def is_sso_add_login_url_details(self): """ @@ -23467,7 +22518,7 @@ def is_sso_add_login_url_details(self): :rtype: bool """ - return self._tag == "sso_add_login_url_details" + return self._tag == 'sso_add_login_url_details' def is_sso_add_logout_url_details(self): """ @@ -23475,7 +22526,7 @@ def is_sso_add_logout_url_details(self): :rtype: bool """ - return self._tag == "sso_add_logout_url_details" + return self._tag == 'sso_add_logout_url_details' def is_sso_change_cert_details(self): """ @@ -23483,7 +22534,7 @@ def is_sso_change_cert_details(self): :rtype: bool """ - return self._tag == "sso_change_cert_details" + return self._tag == 'sso_change_cert_details' def is_sso_change_login_url_details(self): """ @@ -23491,7 +22542,7 @@ def is_sso_change_login_url_details(self): :rtype: bool """ - return self._tag == "sso_change_login_url_details" + return self._tag == 'sso_change_login_url_details' def is_sso_change_logout_url_details(self): """ @@ -23499,7 +22550,7 @@ def is_sso_change_logout_url_details(self): :rtype: bool """ - return self._tag == "sso_change_logout_url_details" + return self._tag == 'sso_change_logout_url_details' def is_sso_change_saml_identity_mode_details(self): """ @@ -23507,7 +22558,7 @@ def is_sso_change_saml_identity_mode_details(self): :rtype: bool """ - return self._tag == "sso_change_saml_identity_mode_details" + return self._tag == 'sso_change_saml_identity_mode_details' def is_sso_remove_cert_details(self): """ @@ -23515,7 +22566,7 @@ def is_sso_remove_cert_details(self): :rtype: bool """ - return self._tag == "sso_remove_cert_details" + return self._tag == 'sso_remove_cert_details' def is_sso_remove_login_url_details(self): """ @@ -23523,7 +22574,7 @@ def is_sso_remove_login_url_details(self): :rtype: bool """ - return self._tag == "sso_remove_login_url_details" + return self._tag == 'sso_remove_login_url_details' def is_sso_remove_logout_url_details(self): """ @@ -23531,7 +22582,7 @@ def is_sso_remove_logout_url_details(self): :rtype: bool """ - return self._tag == "sso_remove_logout_url_details" + return self._tag == 'sso_remove_logout_url_details' def is_team_folder_change_status_details(self): """ @@ -23539,7 +22590,7 @@ def is_team_folder_change_status_details(self): :rtype: bool """ - return self._tag == "team_folder_change_status_details" + return self._tag == 'team_folder_change_status_details' def is_team_folder_create_details(self): """ @@ -23547,7 +22598,7 @@ def is_team_folder_create_details(self): :rtype: bool """ - return self._tag == "team_folder_create_details" + return self._tag == 'team_folder_create_details' def is_team_folder_downgrade_details(self): """ @@ -23555,7 +22606,7 @@ def is_team_folder_downgrade_details(self): :rtype: bool """ - return self._tag == "team_folder_downgrade_details" + return self._tag == 'team_folder_downgrade_details' def is_team_folder_permanently_delete_details(self): """ @@ -23563,7 +22614,7 @@ def is_team_folder_permanently_delete_details(self): :rtype: bool """ - return self._tag == "team_folder_permanently_delete_details" + return self._tag == 'team_folder_permanently_delete_details' def is_team_folder_rename_details(self): """ @@ -23571,7 +22622,7 @@ def is_team_folder_rename_details(self): :rtype: bool """ - return self._tag == "team_folder_rename_details" + return self._tag == 'team_folder_rename_details' def is_team_folder_space_limits_change_caps_type_details(self): """ @@ -23579,7 +22630,7 @@ def is_team_folder_space_limits_change_caps_type_details(self): :rtype: bool """ - return self._tag == "team_folder_space_limits_change_caps_type_details" + return self._tag == 'team_folder_space_limits_change_caps_type_details' def is_team_folder_space_limits_change_limit_details(self): """ @@ -23587,7 +22638,7 @@ def is_team_folder_space_limits_change_limit_details(self): :rtype: bool """ - return self._tag == "team_folder_space_limits_change_limit_details" + return self._tag == 'team_folder_space_limits_change_limit_details' def is_team_folder_space_limits_change_notification_target_details(self): """ @@ -23595,7 +22646,7 @@ def is_team_folder_space_limits_change_notification_target_details(self): :rtype: bool """ - return self._tag == "team_folder_space_limits_change_notification_target_details" + return self._tag == 'team_folder_space_limits_change_notification_target_details' def is_team_selective_sync_settings_changed_details(self): """ @@ -23603,7 +22654,7 @@ def is_team_selective_sync_settings_changed_details(self): :rtype: bool """ - return self._tag == "team_selective_sync_settings_changed_details" + return self._tag == 'team_selective_sync_settings_changed_details' def is_account_capture_change_policy_details(self): """ @@ -23611,7 +22662,7 @@ def is_account_capture_change_policy_details(self): :rtype: bool """ - return self._tag == "account_capture_change_policy_details" + return self._tag == 'account_capture_change_policy_details' def is_admin_email_reminders_changed_details(self): """ @@ -23619,7 +22670,7 @@ def is_admin_email_reminders_changed_details(self): :rtype: bool """ - return self._tag == "admin_email_reminders_changed_details" + return self._tag == 'admin_email_reminders_changed_details' def is_ai_third_party_sharing_dropbox_base_policy_changed_details(self): """ @@ -23627,7 +22678,7 @@ def is_ai_third_party_sharing_dropbox_base_policy_changed_details(self): :rtype: bool """ - return self._tag == "ai_third_party_sharing_dropbox_base_policy_changed_details" + return self._tag == 'ai_third_party_sharing_dropbox_base_policy_changed_details' def is_allow_download_disabled_details(self): """ @@ -23635,7 +22686,7 @@ def is_allow_download_disabled_details(self): :rtype: bool """ - return self._tag == "allow_download_disabled_details" + return self._tag == 'allow_download_disabled_details' def is_allow_download_enabled_details(self): """ @@ -23643,7 +22694,7 @@ def is_allow_download_enabled_details(self): :rtype: bool """ - return self._tag == "allow_download_enabled_details" + return self._tag == 'allow_download_enabled_details' def is_apple_login_change_policy_details(self): """ @@ -23651,7 +22702,7 @@ def is_apple_login_change_policy_details(self): :rtype: bool """ - return self._tag == "apple_login_change_policy_details" + return self._tag == 'apple_login_change_policy_details' def is_app_permissions_changed_details(self): """ @@ -23659,7 +22710,7 @@ def is_app_permissions_changed_details(self): :rtype: bool """ - return self._tag == "app_permissions_changed_details" + return self._tag == 'app_permissions_changed_details' def is_camera_uploads_policy_changed_details(self): """ @@ -23667,7 +22718,7 @@ def is_camera_uploads_policy_changed_details(self): :rtype: bool """ - return self._tag == "camera_uploads_policy_changed_details" + return self._tag == 'camera_uploads_policy_changed_details' def is_capture_team_space_policy_changed_details(self): """ @@ -23675,7 +22726,7 @@ def is_capture_team_space_policy_changed_details(self): :rtype: bool """ - return self._tag == "capture_team_space_policy_changed_details" + return self._tag == 'capture_team_space_policy_changed_details' def is_capture_transcript_policy_changed_details(self): """ @@ -23683,7 +22734,7 @@ def is_capture_transcript_policy_changed_details(self): :rtype: bool """ - return self._tag == "capture_transcript_policy_changed_details" + return self._tag == 'capture_transcript_policy_changed_details' def is_classification_change_policy_details(self): """ @@ -23691,7 +22742,7 @@ def is_classification_change_policy_details(self): :rtype: bool """ - return self._tag == "classification_change_policy_details" + return self._tag == 'classification_change_policy_details' def is_computer_backup_policy_changed_details(self): """ @@ -23699,7 +22750,7 @@ def is_computer_backup_policy_changed_details(self): :rtype: bool """ - return self._tag == "computer_backup_policy_changed_details" + return self._tag == 'computer_backup_policy_changed_details' def is_content_administration_policy_changed_details(self): """ @@ -23707,7 +22758,7 @@ def is_content_administration_policy_changed_details(self): :rtype: bool """ - return self._tag == "content_administration_policy_changed_details" + return self._tag == 'content_administration_policy_changed_details' def is_content_deletion_protection_change_policy_details(self): """ @@ -23715,7 +22766,7 @@ def is_content_deletion_protection_change_policy_details(self): :rtype: bool """ - return self._tag == "content_deletion_protection_change_policy_details" + return self._tag == 'content_deletion_protection_change_policy_details' def is_dash_external_sharing_policy_changed_details(self): """ @@ -23723,7 +22774,7 @@ def is_dash_external_sharing_policy_changed_details(self): :rtype: bool """ - return self._tag == "dash_external_sharing_policy_changed_details" + return self._tag == 'dash_external_sharing_policy_changed_details' def is_data_placement_restriction_change_policy_details(self): """ @@ -23731,7 +22782,7 @@ def is_data_placement_restriction_change_policy_details(self): :rtype: bool """ - return self._tag == "data_placement_restriction_change_policy_details" + return self._tag == 'data_placement_restriction_change_policy_details' def is_data_placement_restriction_satisfy_policy_details(self): """ @@ -23739,7 +22790,7 @@ def is_data_placement_restriction_satisfy_policy_details(self): :rtype: bool """ - return self._tag == "data_placement_restriction_satisfy_policy_details" + return self._tag == 'data_placement_restriction_satisfy_policy_details' def is_device_approvals_add_exception_details(self): """ @@ -23747,7 +22798,7 @@ def is_device_approvals_add_exception_details(self): :rtype: bool """ - return self._tag == "device_approvals_add_exception_details" + return self._tag == 'device_approvals_add_exception_details' def is_device_approvals_change_desktop_policy_details(self): """ @@ -23755,7 +22806,7 @@ def is_device_approvals_change_desktop_policy_details(self): :rtype: bool """ - return self._tag == "device_approvals_change_desktop_policy_details" + return self._tag == 'device_approvals_change_desktop_policy_details' def is_device_approvals_change_mobile_policy_details(self): """ @@ -23763,7 +22814,7 @@ def is_device_approvals_change_mobile_policy_details(self): :rtype: bool """ - return self._tag == "device_approvals_change_mobile_policy_details" + return self._tag == 'device_approvals_change_mobile_policy_details' def is_device_approvals_change_overage_action_details(self): """ @@ -23771,7 +22822,7 @@ def is_device_approvals_change_overage_action_details(self): :rtype: bool """ - return self._tag == "device_approvals_change_overage_action_details" + return self._tag == 'device_approvals_change_overage_action_details' def is_device_approvals_change_unlink_action_details(self): """ @@ -23779,7 +22830,7 @@ def is_device_approvals_change_unlink_action_details(self): :rtype: bool """ - return self._tag == "device_approvals_change_unlink_action_details" + return self._tag == 'device_approvals_change_unlink_action_details' def is_device_approvals_remove_exception_details(self): """ @@ -23787,7 +22838,7 @@ def is_device_approvals_remove_exception_details(self): :rtype: bool """ - return self._tag == "device_approvals_remove_exception_details" + return self._tag == 'device_approvals_remove_exception_details' def is_directory_restrictions_add_members_details(self): """ @@ -23795,7 +22846,7 @@ def is_directory_restrictions_add_members_details(self): :rtype: bool """ - return self._tag == "directory_restrictions_add_members_details" + return self._tag == 'directory_restrictions_add_members_details' def is_directory_restrictions_remove_members_details(self): """ @@ -23803,7 +22854,7 @@ def is_directory_restrictions_remove_members_details(self): :rtype: bool """ - return self._tag == "directory_restrictions_remove_members_details" + return self._tag == 'directory_restrictions_remove_members_details' def is_dropbox_passwords_policy_changed_details(self): """ @@ -23811,7 +22862,7 @@ def is_dropbox_passwords_policy_changed_details(self): :rtype: bool """ - return self._tag == "dropbox_passwords_policy_changed_details" + return self._tag == 'dropbox_passwords_policy_changed_details' def is_email_ingest_policy_changed_details(self): """ @@ -23819,7 +22870,7 @@ def is_email_ingest_policy_changed_details(self): :rtype: bool """ - return self._tag == "email_ingest_policy_changed_details" + return self._tag == 'email_ingest_policy_changed_details' def is_emm_add_exception_details(self): """ @@ -23827,7 +22878,7 @@ def is_emm_add_exception_details(self): :rtype: bool """ - return self._tag == "emm_add_exception_details" + return self._tag == 'emm_add_exception_details' def is_emm_change_policy_details(self): """ @@ -23835,7 +22886,7 @@ def is_emm_change_policy_details(self): :rtype: bool """ - return self._tag == "emm_change_policy_details" + return self._tag == 'emm_change_policy_details' def is_emm_remove_exception_details(self): """ @@ -23843,7 +22894,7 @@ def is_emm_remove_exception_details(self): :rtype: bool """ - return self._tag == "emm_remove_exception_details" + return self._tag == 'emm_remove_exception_details' def is_extended_version_history_change_policy_details(self): """ @@ -23851,7 +22902,7 @@ def is_extended_version_history_change_policy_details(self): :rtype: bool """ - return self._tag == "extended_version_history_change_policy_details" + return self._tag == 'extended_version_history_change_policy_details' def is_external_drive_backup_policy_changed_details(self): """ @@ -23859,7 +22910,7 @@ def is_external_drive_backup_policy_changed_details(self): :rtype: bool """ - return self._tag == "external_drive_backup_policy_changed_details" + return self._tag == 'external_drive_backup_policy_changed_details' def is_file_comments_change_policy_details(self): """ @@ -23867,7 +22918,7 @@ def is_file_comments_change_policy_details(self): :rtype: bool """ - return self._tag == "file_comments_change_policy_details" + return self._tag == 'file_comments_change_policy_details' def is_file_locking_policy_changed_details(self): """ @@ -23875,7 +22926,7 @@ def is_file_locking_policy_changed_details(self): :rtype: bool """ - return self._tag == "file_locking_policy_changed_details" + return self._tag == 'file_locking_policy_changed_details' def is_file_provider_migration_policy_changed_details(self): """ @@ -23883,7 +22934,7 @@ def is_file_provider_migration_policy_changed_details(self): :rtype: bool """ - return self._tag == "file_provider_migration_policy_changed_details" + return self._tag == 'file_provider_migration_policy_changed_details' def is_file_requests_change_policy_details(self): """ @@ -23891,7 +22942,7 @@ def is_file_requests_change_policy_details(self): :rtype: bool """ - return self._tag == "file_requests_change_policy_details" + return self._tag == 'file_requests_change_policy_details' def is_file_requests_emails_enabled_details(self): """ @@ -23899,7 +22950,7 @@ def is_file_requests_emails_enabled_details(self): :rtype: bool """ - return self._tag == "file_requests_emails_enabled_details" + return self._tag == 'file_requests_emails_enabled_details' def is_file_requests_emails_restricted_to_team_only_details(self): """ @@ -23907,7 +22958,7 @@ def is_file_requests_emails_restricted_to_team_only_details(self): :rtype: bool """ - return self._tag == "file_requests_emails_restricted_to_team_only_details" + return self._tag == 'file_requests_emails_restricted_to_team_only_details' def is_file_transfers_policy_changed_details(self): """ @@ -23915,7 +22966,7 @@ def is_file_transfers_policy_changed_details(self): :rtype: bool """ - return self._tag == "file_transfers_policy_changed_details" + return self._tag == 'file_transfers_policy_changed_details' def is_flexible_file_names_policy_changed_details(self): """ @@ -23923,7 +22974,7 @@ def is_flexible_file_names_policy_changed_details(self): :rtype: bool """ - return self._tag == "flexible_file_names_policy_changed_details" + return self._tag == 'flexible_file_names_policy_changed_details' def is_folder_link_restriction_policy_changed_details(self): """ @@ -23931,7 +22982,7 @@ def is_folder_link_restriction_policy_changed_details(self): :rtype: bool """ - return self._tag == "folder_link_restriction_policy_changed_details" + return self._tag == 'folder_link_restriction_policy_changed_details' def is_google_sso_change_policy_details(self): """ @@ -23939,7 +22990,7 @@ def is_google_sso_change_policy_details(self): :rtype: bool """ - return self._tag == "google_sso_change_policy_details" + return self._tag == 'google_sso_change_policy_details' def is_group_user_management_change_policy_details(self): """ @@ -23947,7 +22998,7 @@ def is_group_user_management_change_policy_details(self): :rtype: bool """ - return self._tag == "group_user_management_change_policy_details" + return self._tag == 'group_user_management_change_policy_details' def is_integration_policy_changed_details(self): """ @@ -23955,7 +23006,7 @@ def is_integration_policy_changed_details(self): :rtype: bool """ - return self._tag == "integration_policy_changed_details" + return self._tag == 'integration_policy_changed_details' def is_invite_acceptance_email_policy_changed_details(self): """ @@ -23963,7 +23014,7 @@ def is_invite_acceptance_email_policy_changed_details(self): :rtype: bool """ - return self._tag == "invite_acceptance_email_policy_changed_details" + return self._tag == 'invite_acceptance_email_policy_changed_details' def is_media_hub_adding_people_policy_changed_details(self): """ @@ -23971,7 +23022,7 @@ def is_media_hub_adding_people_policy_changed_details(self): :rtype: bool """ - return self._tag == "media_hub_adding_people_policy_changed_details" + return self._tag == 'media_hub_adding_people_policy_changed_details' def is_media_hub_download_policy_changed_details(self): """ @@ -23979,7 +23030,7 @@ def is_media_hub_download_policy_changed_details(self): :rtype: bool """ - return self._tag == "media_hub_download_policy_changed_details" + return self._tag == 'media_hub_download_policy_changed_details' def is_media_hub_link_sharing_policy_changed_details(self): """ @@ -23987,7 +23038,7 @@ def is_media_hub_link_sharing_policy_changed_details(self): :rtype: bool """ - return self._tag == "media_hub_link_sharing_policy_changed_details" + return self._tag == 'media_hub_link_sharing_policy_changed_details' def is_member_requests_change_policy_details(self): """ @@ -23995,7 +23046,7 @@ def is_member_requests_change_policy_details(self): :rtype: bool """ - return self._tag == "member_requests_change_policy_details" + return self._tag == 'member_requests_change_policy_details' def is_member_send_invite_policy_changed_details(self): """ @@ -24003,7 +23054,7 @@ def is_member_send_invite_policy_changed_details(self): :rtype: bool """ - return self._tag == "member_send_invite_policy_changed_details" + return self._tag == 'member_send_invite_policy_changed_details' def is_member_space_limits_add_exception_details(self): """ @@ -24011,7 +23062,7 @@ def is_member_space_limits_add_exception_details(self): :rtype: bool """ - return self._tag == "member_space_limits_add_exception_details" + return self._tag == 'member_space_limits_add_exception_details' def is_member_space_limits_change_caps_type_policy_details(self): """ @@ -24019,7 +23070,7 @@ def is_member_space_limits_change_caps_type_policy_details(self): :rtype: bool """ - return self._tag == "member_space_limits_change_caps_type_policy_details" + return self._tag == 'member_space_limits_change_caps_type_policy_details' def is_member_space_limits_change_policy_details(self): """ @@ -24027,7 +23078,7 @@ def is_member_space_limits_change_policy_details(self): :rtype: bool """ - return self._tag == "member_space_limits_change_policy_details" + return self._tag == 'member_space_limits_change_policy_details' def is_member_space_limits_remove_exception_details(self): """ @@ -24035,7 +23086,7 @@ def is_member_space_limits_remove_exception_details(self): :rtype: bool """ - return self._tag == "member_space_limits_remove_exception_details" + return self._tag == 'member_space_limits_remove_exception_details' def is_member_suggestions_change_policy_details(self): """ @@ -24043,7 +23094,7 @@ def is_member_suggestions_change_policy_details(self): :rtype: bool """ - return self._tag == "member_suggestions_change_policy_details" + return self._tag == 'member_suggestions_change_policy_details' def is_microsoft_login_change_policy_details(self): """ @@ -24051,7 +23102,7 @@ def is_microsoft_login_change_policy_details(self): :rtype: bool """ - return self._tag == "microsoft_login_change_policy_details" + return self._tag == 'microsoft_login_change_policy_details' def is_microsoft_office_addin_change_policy_details(self): """ @@ -24059,7 +23110,7 @@ def is_microsoft_office_addin_change_policy_details(self): :rtype: bool """ - return self._tag == "microsoft_office_addin_change_policy_details" + return self._tag == 'microsoft_office_addin_change_policy_details' def is_multi_team_identity_policy_changed_details(self): """ @@ -24067,7 +23118,7 @@ def is_multi_team_identity_policy_changed_details(self): :rtype: bool """ - return self._tag == "multi_team_identity_policy_changed_details" + return self._tag == 'multi_team_identity_policy_changed_details' def is_network_control_change_policy_details(self): """ @@ -24075,7 +23126,7 @@ def is_network_control_change_policy_details(self): :rtype: bool """ - return self._tag == "network_control_change_policy_details" + return self._tag == 'network_control_change_policy_details' def is_paper_change_deployment_policy_details(self): """ @@ -24083,7 +23134,7 @@ def is_paper_change_deployment_policy_details(self): :rtype: bool """ - return self._tag == "paper_change_deployment_policy_details" + return self._tag == 'paper_change_deployment_policy_details' def is_paper_change_member_link_policy_details(self): """ @@ -24091,7 +23142,7 @@ def is_paper_change_member_link_policy_details(self): :rtype: bool """ - return self._tag == "paper_change_member_link_policy_details" + return self._tag == 'paper_change_member_link_policy_details' def is_paper_change_member_policy_details(self): """ @@ -24099,7 +23150,7 @@ def is_paper_change_member_policy_details(self): :rtype: bool """ - return self._tag == "paper_change_member_policy_details" + return self._tag == 'paper_change_member_policy_details' def is_paper_change_policy_details(self): """ @@ -24107,7 +23158,7 @@ def is_paper_change_policy_details(self): :rtype: bool """ - return self._tag == "paper_change_policy_details" + return self._tag == 'paper_change_policy_details' def is_paper_default_folder_policy_changed_details(self): """ @@ -24115,7 +23166,7 @@ def is_paper_default_folder_policy_changed_details(self): :rtype: bool """ - return self._tag == "paper_default_folder_policy_changed_details" + return self._tag == 'paper_default_folder_policy_changed_details' def is_paper_desktop_policy_changed_details(self): """ @@ -24123,7 +23174,7 @@ def is_paper_desktop_policy_changed_details(self): :rtype: bool """ - return self._tag == "paper_desktop_policy_changed_details" + return self._tag == 'paper_desktop_policy_changed_details' def is_paper_enabled_users_group_addition_details(self): """ @@ -24131,7 +23182,7 @@ def is_paper_enabled_users_group_addition_details(self): :rtype: bool """ - return self._tag == "paper_enabled_users_group_addition_details" + return self._tag == 'paper_enabled_users_group_addition_details' def is_paper_enabled_users_group_removal_details(self): """ @@ -24139,7 +23190,7 @@ def is_paper_enabled_users_group_removal_details(self): :rtype: bool """ - return self._tag == "paper_enabled_users_group_removal_details" + return self._tag == 'paper_enabled_users_group_removal_details' def is_passkey_login_policy_changed_details(self): """ @@ -24147,7 +23198,7 @@ def is_passkey_login_policy_changed_details(self): :rtype: bool """ - return self._tag == "passkey_login_policy_changed_details" + return self._tag == 'passkey_login_policy_changed_details' def is_password_strength_requirements_change_policy_details(self): """ @@ -24155,7 +23206,7 @@ def is_password_strength_requirements_change_policy_details(self): :rtype: bool """ - return self._tag == "password_strength_requirements_change_policy_details" + return self._tag == 'password_strength_requirements_change_policy_details' def is_permanent_delete_change_policy_details(self): """ @@ -24163,7 +23214,7 @@ def is_permanent_delete_change_policy_details(self): :rtype: bool """ - return self._tag == "permanent_delete_change_policy_details" + return self._tag == 'permanent_delete_change_policy_details' def is_previews_ai_policy_changed_details(self): """ @@ -24171,7 +23222,7 @@ def is_previews_ai_policy_changed_details(self): :rtype: bool """ - return self._tag == "previews_ai_policy_changed_details" + return self._tag == 'previews_ai_policy_changed_details' def is_replay_adding_people_policy_changed_details(self): """ @@ -24179,7 +23230,7 @@ def is_replay_adding_people_policy_changed_details(self): :rtype: bool """ - return self._tag == "replay_adding_people_policy_changed_details" + return self._tag == 'replay_adding_people_policy_changed_details' def is_replay_sharing_policy_changed_details(self): """ @@ -24187,7 +23238,7 @@ def is_replay_sharing_policy_changed_details(self): :rtype: bool """ - return self._tag == "replay_sharing_policy_changed_details" + return self._tag == 'replay_sharing_policy_changed_details' def is_reseller_support_change_policy_details(self): """ @@ -24195,7 +23246,7 @@ def is_reseller_support_change_policy_details(self): :rtype: bool """ - return self._tag == "reseller_support_change_policy_details" + return self._tag == 'reseller_support_change_policy_details' def is_rewind_policy_changed_details(self): """ @@ -24203,7 +23254,7 @@ def is_rewind_policy_changed_details(self): :rtype: bool """ - return self._tag == "rewind_policy_changed_details" + return self._tag == 'rewind_policy_changed_details' def is_send_and_track_policy_changed_details(self): """ @@ -24211,7 +23262,7 @@ def is_send_and_track_policy_changed_details(self): :rtype: bool """ - return self._tag == "send_and_track_policy_changed_details" + return self._tag == 'send_and_track_policy_changed_details' def is_send_external_sharing_policy_changed_details(self): """ @@ -24219,7 +23270,7 @@ def is_send_external_sharing_policy_changed_details(self): :rtype: bool """ - return self._tag == "send_external_sharing_policy_changed_details" + return self._tag == 'send_external_sharing_policy_changed_details' def is_send_for_signature_policy_changed_details(self): """ @@ -24227,7 +23278,7 @@ def is_send_for_signature_policy_changed_details(self): :rtype: bool """ - return self._tag == "send_for_signature_policy_changed_details" + return self._tag == 'send_for_signature_policy_changed_details' def is_shared_link_default_permissions_policy_changed_details(self): """ @@ -24235,7 +23286,7 @@ def is_shared_link_default_permissions_policy_changed_details(self): :rtype: bool """ - return self._tag == "shared_link_default_permissions_policy_changed_details" + return self._tag == 'shared_link_default_permissions_policy_changed_details' def is_sharing_change_folder_join_policy_details(self): """ @@ -24243,7 +23294,7 @@ def is_sharing_change_folder_join_policy_details(self): :rtype: bool """ - return self._tag == "sharing_change_folder_join_policy_details" + return self._tag == 'sharing_change_folder_join_policy_details' def is_sharing_change_link_allow_change_expiration_policy_details(self): """ @@ -24251,7 +23302,7 @@ def is_sharing_change_link_allow_change_expiration_policy_details(self): :rtype: bool """ - return self._tag == "sharing_change_link_allow_change_expiration_policy_details" + return self._tag == 'sharing_change_link_allow_change_expiration_policy_details' def is_sharing_change_link_default_expiration_policy_details(self): """ @@ -24259,7 +23310,7 @@ def is_sharing_change_link_default_expiration_policy_details(self): :rtype: bool """ - return self._tag == "sharing_change_link_default_expiration_policy_details" + return self._tag == 'sharing_change_link_default_expiration_policy_details' def is_sharing_change_link_enforce_password_policy_details(self): """ @@ -24267,7 +23318,7 @@ def is_sharing_change_link_enforce_password_policy_details(self): :rtype: bool """ - return self._tag == "sharing_change_link_enforce_password_policy_details" + return self._tag == 'sharing_change_link_enforce_password_policy_details' def is_sharing_change_link_policy_details(self): """ @@ -24275,7 +23326,7 @@ def is_sharing_change_link_policy_details(self): :rtype: bool """ - return self._tag == "sharing_change_link_policy_details" + return self._tag == 'sharing_change_link_policy_details' def is_sharing_change_member_policy_details(self): """ @@ -24283,7 +23334,7 @@ def is_sharing_change_member_policy_details(self): :rtype: bool """ - return self._tag == "sharing_change_member_policy_details" + return self._tag == 'sharing_change_member_policy_details' def is_showcase_change_download_policy_details(self): """ @@ -24291,7 +23342,7 @@ def is_showcase_change_download_policy_details(self): :rtype: bool """ - return self._tag == "showcase_change_download_policy_details" + return self._tag == 'showcase_change_download_policy_details' def is_showcase_change_enabled_policy_details(self): """ @@ -24299,7 +23350,7 @@ def is_showcase_change_enabled_policy_details(self): :rtype: bool """ - return self._tag == "showcase_change_enabled_policy_details" + return self._tag == 'showcase_change_enabled_policy_details' def is_showcase_change_external_sharing_policy_details(self): """ @@ -24307,7 +23358,7 @@ def is_showcase_change_external_sharing_policy_details(self): :rtype: bool """ - return self._tag == "showcase_change_external_sharing_policy_details" + return self._tag == 'showcase_change_external_sharing_policy_details' def is_sign_external_sharing_policy_changed_details(self): """ @@ -24315,7 +23366,7 @@ def is_sign_external_sharing_policy_changed_details(self): :rtype: bool """ - return self._tag == "sign_external_sharing_policy_changed_details" + return self._tag == 'sign_external_sharing_policy_changed_details' def is_sign_template_creation_permission_changed_details(self): """ @@ -24323,7 +23374,7 @@ def is_sign_template_creation_permission_changed_details(self): :rtype: bool """ - return self._tag == "sign_template_creation_permission_changed_details" + return self._tag == 'sign_template_creation_permission_changed_details' def is_smarter_smart_sync_policy_changed_details(self): """ @@ -24331,7 +23382,7 @@ def is_smarter_smart_sync_policy_changed_details(self): :rtype: bool """ - return self._tag == "smarter_smart_sync_policy_changed_details" + return self._tag == 'smarter_smart_sync_policy_changed_details' def is_smart_sync_change_policy_details(self): """ @@ -24339,7 +23390,7 @@ def is_smart_sync_change_policy_details(self): :rtype: bool """ - return self._tag == "smart_sync_change_policy_details" + return self._tag == 'smart_sync_change_policy_details' def is_smart_sync_not_opt_out_details(self): """ @@ -24347,7 +23398,7 @@ def is_smart_sync_not_opt_out_details(self): :rtype: bool """ - return self._tag == "smart_sync_not_opt_out_details" + return self._tag == 'smart_sync_not_opt_out_details' def is_smart_sync_opt_out_details(self): """ @@ -24355,7 +23406,7 @@ def is_smart_sync_opt_out_details(self): :rtype: bool """ - return self._tag == "smart_sync_opt_out_details" + return self._tag == 'smart_sync_opt_out_details' def is_sso_change_policy_details(self): """ @@ -24363,7 +23414,7 @@ def is_sso_change_policy_details(self): :rtype: bool """ - return self._tag == "sso_change_policy_details" + return self._tag == 'sso_change_policy_details' def is_stack_cross_team_access_policy_changed_details(self): """ @@ -24371,7 +23422,7 @@ def is_stack_cross_team_access_policy_changed_details(self): :rtype: bool """ - return self._tag == "stack_cross_team_access_policy_changed_details" + return self._tag == 'stack_cross_team_access_policy_changed_details' def is_team_branding_policy_changed_details(self): """ @@ -24379,7 +23430,7 @@ def is_team_branding_policy_changed_details(self): :rtype: bool """ - return self._tag == "team_branding_policy_changed_details" + return self._tag == 'team_branding_policy_changed_details' def is_team_extensions_policy_changed_details(self): """ @@ -24387,7 +23438,7 @@ def is_team_extensions_policy_changed_details(self): :rtype: bool """ - return self._tag == "team_extensions_policy_changed_details" + return self._tag == 'team_extensions_policy_changed_details' def is_team_member_storage_request_policy_changed_details(self): """ @@ -24395,7 +23446,7 @@ def is_team_member_storage_request_policy_changed_details(self): :rtype: bool """ - return self._tag == "team_member_storage_request_policy_changed_details" + return self._tag == 'team_member_storage_request_policy_changed_details' def is_team_selective_sync_policy_changed_details(self): """ @@ -24403,7 +23454,7 @@ def is_team_selective_sync_policy_changed_details(self): :rtype: bool """ - return self._tag == "team_selective_sync_policy_changed_details" + return self._tag == 'team_selective_sync_policy_changed_details' def is_team_sharing_whitelist_subjects_changed_details(self): """ @@ -24411,7 +23462,7 @@ def is_team_sharing_whitelist_subjects_changed_details(self): :rtype: bool """ - return self._tag == "team_sharing_whitelist_subjects_changed_details" + return self._tag == 'team_sharing_whitelist_subjects_changed_details' def is_tfa_add_exception_details(self): """ @@ -24419,7 +23470,7 @@ def is_tfa_add_exception_details(self): :rtype: bool """ - return self._tag == "tfa_add_exception_details" + return self._tag == 'tfa_add_exception_details' def is_tfa_change_policy_details(self): """ @@ -24427,7 +23478,7 @@ def is_tfa_change_policy_details(self): :rtype: bool """ - return self._tag == "tfa_change_policy_details" + return self._tag == 'tfa_change_policy_details' def is_tfa_remove_exception_details(self): """ @@ -24435,7 +23486,7 @@ def is_tfa_remove_exception_details(self): :rtype: bool """ - return self._tag == "tfa_remove_exception_details" + return self._tag == 'tfa_remove_exception_details' def is_top_level_content_policy_changed_details(self): """ @@ -24443,7 +23494,7 @@ def is_top_level_content_policy_changed_details(self): :rtype: bool """ - return self._tag == "top_level_content_policy_changed_details" + return self._tag == 'top_level_content_policy_changed_details' def is_two_account_change_policy_details(self): """ @@ -24451,7 +23502,7 @@ def is_two_account_change_policy_details(self): :rtype: bool """ - return self._tag == "two_account_change_policy_details" + return self._tag == 'two_account_change_policy_details' def is_viewer_info_policy_changed_details(self): """ @@ -24459,7 +23510,7 @@ def is_viewer_info_policy_changed_details(self): :rtype: bool """ - return self._tag == "viewer_info_policy_changed_details" + return self._tag == 'viewer_info_policy_changed_details' def is_watermarking_policy_changed_details(self): """ @@ -24467,7 +23518,7 @@ def is_watermarking_policy_changed_details(self): :rtype: bool """ - return self._tag == "watermarking_policy_changed_details" + return self._tag == 'watermarking_policy_changed_details' def is_web_sessions_change_active_session_limit_details(self): """ @@ -24475,7 +23526,7 @@ def is_web_sessions_change_active_session_limit_details(self): :rtype: bool """ - return self._tag == "web_sessions_change_active_session_limit_details" + return self._tag == 'web_sessions_change_active_session_limit_details' def is_web_sessions_change_fixed_length_policy_details(self): """ @@ -24483,7 +23534,7 @@ def is_web_sessions_change_fixed_length_policy_details(self): :rtype: bool """ - return self._tag == "web_sessions_change_fixed_length_policy_details" + return self._tag == 'web_sessions_change_fixed_length_policy_details' def is_web_sessions_change_idle_length_policy_details(self): """ @@ -24491,7 +23542,7 @@ def is_web_sessions_change_idle_length_policy_details(self): :rtype: bool """ - return self._tag == "web_sessions_change_idle_length_policy_details" + return self._tag == 'web_sessions_change_idle_length_policy_details' def is_data_residency_migration_request_successful_details(self): """ @@ -24499,7 +23550,7 @@ def is_data_residency_migration_request_successful_details(self): :rtype: bool """ - return self._tag == "data_residency_migration_request_successful_details" + return self._tag == 'data_residency_migration_request_successful_details' def is_data_residency_migration_request_unsuccessful_details(self): """ @@ -24507,7 +23558,7 @@ def is_data_residency_migration_request_unsuccessful_details(self): :rtype: bool """ - return self._tag == "data_residency_migration_request_unsuccessful_details" + return self._tag == 'data_residency_migration_request_unsuccessful_details' def is_team_merge_from_details(self): """ @@ -24515,7 +23566,7 @@ def is_team_merge_from_details(self): :rtype: bool """ - return self._tag == "team_merge_from_details" + return self._tag == 'team_merge_from_details' def is_team_merge_to_details(self): """ @@ -24523,7 +23574,7 @@ def is_team_merge_to_details(self): :rtype: bool """ - return self._tag == "team_merge_to_details" + return self._tag == 'team_merge_to_details' def is_team_profile_add_background_details(self): """ @@ -24531,7 +23582,7 @@ def is_team_profile_add_background_details(self): :rtype: bool """ - return self._tag == "team_profile_add_background_details" + return self._tag == 'team_profile_add_background_details' def is_team_profile_add_logo_details(self): """ @@ -24539,7 +23590,7 @@ def is_team_profile_add_logo_details(self): :rtype: bool """ - return self._tag == "team_profile_add_logo_details" + return self._tag == 'team_profile_add_logo_details' def is_team_profile_change_background_details(self): """ @@ -24547,7 +23598,7 @@ def is_team_profile_change_background_details(self): :rtype: bool """ - return self._tag == "team_profile_change_background_details" + return self._tag == 'team_profile_change_background_details' def is_team_profile_change_default_language_details(self): """ @@ -24555,7 +23606,7 @@ def is_team_profile_change_default_language_details(self): :rtype: bool """ - return self._tag == "team_profile_change_default_language_details" + return self._tag == 'team_profile_change_default_language_details' def is_team_profile_change_logo_details(self): """ @@ -24563,7 +23614,7 @@ def is_team_profile_change_logo_details(self): :rtype: bool """ - return self._tag == "team_profile_change_logo_details" + return self._tag == 'team_profile_change_logo_details' def is_team_profile_change_name_details(self): """ @@ -24571,7 +23622,7 @@ def is_team_profile_change_name_details(self): :rtype: bool """ - return self._tag == "team_profile_change_name_details" + return self._tag == 'team_profile_change_name_details' def is_team_profile_remove_background_details(self): """ @@ -24579,7 +23630,7 @@ def is_team_profile_remove_background_details(self): :rtype: bool """ - return self._tag == "team_profile_remove_background_details" + return self._tag == 'team_profile_remove_background_details' def is_team_profile_remove_logo_details(self): """ @@ -24587,7 +23638,7 @@ def is_team_profile_remove_logo_details(self): :rtype: bool """ - return self._tag == "team_profile_remove_logo_details" + return self._tag == 'team_profile_remove_logo_details' def is_passkey_add_details(self): """ @@ -24595,7 +23646,7 @@ def is_passkey_add_details(self): :rtype: bool """ - return self._tag == "passkey_add_details" + return self._tag == 'passkey_add_details' def is_passkey_remove_details(self): """ @@ -24603,7 +23654,7 @@ def is_passkey_remove_details(self): :rtype: bool """ - return self._tag == "passkey_remove_details" + return self._tag == 'passkey_remove_details' def is_tfa_add_backup_phone_details(self): """ @@ -24611,7 +23662,7 @@ def is_tfa_add_backup_phone_details(self): :rtype: bool """ - return self._tag == "tfa_add_backup_phone_details" + return self._tag == 'tfa_add_backup_phone_details' def is_tfa_add_security_key_details(self): """ @@ -24619,7 +23670,7 @@ def is_tfa_add_security_key_details(self): :rtype: bool """ - return self._tag == "tfa_add_security_key_details" + return self._tag == 'tfa_add_security_key_details' def is_tfa_change_backup_phone_details(self): """ @@ -24627,7 +23678,7 @@ def is_tfa_change_backup_phone_details(self): :rtype: bool """ - return self._tag == "tfa_change_backup_phone_details" + return self._tag == 'tfa_change_backup_phone_details' def is_tfa_change_status_details(self): """ @@ -24635,7 +23686,7 @@ def is_tfa_change_status_details(self): :rtype: bool """ - return self._tag == "tfa_change_status_details" + return self._tag == 'tfa_change_status_details' def is_tfa_remove_backup_phone_details(self): """ @@ -24643,7 +23694,7 @@ def is_tfa_remove_backup_phone_details(self): :rtype: bool """ - return self._tag == "tfa_remove_backup_phone_details" + return self._tag == 'tfa_remove_backup_phone_details' def is_tfa_remove_security_key_details(self): """ @@ -24651,7 +23702,7 @@ def is_tfa_remove_security_key_details(self): :rtype: bool """ - return self._tag == "tfa_remove_security_key_details" + return self._tag == 'tfa_remove_security_key_details' def is_tfa_reset_details(self): """ @@ -24659,7 +23710,7 @@ def is_tfa_reset_details(self): :rtype: bool """ - return self._tag == "tfa_reset_details" + return self._tag == 'tfa_reset_details' def is_changed_enterprise_admin_role_details(self): """ @@ -24667,7 +23718,7 @@ def is_changed_enterprise_admin_role_details(self): :rtype: bool """ - return self._tag == "changed_enterprise_admin_role_details" + return self._tag == 'changed_enterprise_admin_role_details' def is_changed_enterprise_connected_team_status_details(self): """ @@ -24675,7 +23726,7 @@ def is_changed_enterprise_connected_team_status_details(self): :rtype: bool """ - return self._tag == "changed_enterprise_connected_team_status_details" + return self._tag == 'changed_enterprise_connected_team_status_details' def is_ended_enterprise_admin_session_details(self): """ @@ -24683,7 +23734,7 @@ def is_ended_enterprise_admin_session_details(self): :rtype: bool """ - return self._tag == "ended_enterprise_admin_session_details" + return self._tag == 'ended_enterprise_admin_session_details' def is_ended_enterprise_admin_session_deprecated_details(self): """ @@ -24691,7 +23742,7 @@ def is_ended_enterprise_admin_session_deprecated_details(self): :rtype: bool """ - return self._tag == "ended_enterprise_admin_session_deprecated_details" + return self._tag == 'ended_enterprise_admin_session_deprecated_details' def is_enterprise_settings_locking_details(self): """ @@ -24699,7 +23750,7 @@ def is_enterprise_settings_locking_details(self): :rtype: bool """ - return self._tag == "enterprise_settings_locking_details" + return self._tag == 'enterprise_settings_locking_details' def is_guest_admin_change_status_details(self): """ @@ -24707,7 +23758,7 @@ def is_guest_admin_change_status_details(self): :rtype: bool """ - return self._tag == "guest_admin_change_status_details" + return self._tag == 'guest_admin_change_status_details' def is_started_enterprise_admin_session_details(self): """ @@ -24715,7 +23766,7 @@ def is_started_enterprise_admin_session_details(self): :rtype: bool """ - return self._tag == "started_enterprise_admin_session_details" + return self._tag == 'started_enterprise_admin_session_details' def is_team_merge_request_accepted_details(self): """ @@ -24723,7 +23774,7 @@ def is_team_merge_request_accepted_details(self): :rtype: bool """ - return self._tag == "team_merge_request_accepted_details" + return self._tag == 'team_merge_request_accepted_details' def is_team_merge_request_accepted_shown_to_primary_team_details(self): """ @@ -24731,7 +23782,7 @@ def is_team_merge_request_accepted_shown_to_primary_team_details(self): :rtype: bool """ - return self._tag == "team_merge_request_accepted_shown_to_primary_team_details" + return self._tag == 'team_merge_request_accepted_shown_to_primary_team_details' def is_team_merge_request_accepted_shown_to_secondary_team_details(self): """ @@ -24739,7 +23790,7 @@ def is_team_merge_request_accepted_shown_to_secondary_team_details(self): :rtype: bool """ - return self._tag == "team_merge_request_accepted_shown_to_secondary_team_details" + return self._tag == 'team_merge_request_accepted_shown_to_secondary_team_details' def is_team_merge_request_auto_canceled_details(self): """ @@ -24747,7 +23798,7 @@ def is_team_merge_request_auto_canceled_details(self): :rtype: bool """ - return self._tag == "team_merge_request_auto_canceled_details" + return self._tag == 'team_merge_request_auto_canceled_details' def is_team_merge_request_canceled_details(self): """ @@ -24755,7 +23806,7 @@ def is_team_merge_request_canceled_details(self): :rtype: bool """ - return self._tag == "team_merge_request_canceled_details" + return self._tag == 'team_merge_request_canceled_details' def is_team_merge_request_canceled_shown_to_primary_team_details(self): """ @@ -24763,7 +23814,7 @@ def is_team_merge_request_canceled_shown_to_primary_team_details(self): :rtype: bool """ - return self._tag == "team_merge_request_canceled_shown_to_primary_team_details" + return self._tag == 'team_merge_request_canceled_shown_to_primary_team_details' def is_team_merge_request_canceled_shown_to_secondary_team_details(self): """ @@ -24771,7 +23822,7 @@ def is_team_merge_request_canceled_shown_to_secondary_team_details(self): :rtype: bool """ - return self._tag == "team_merge_request_canceled_shown_to_secondary_team_details" + return self._tag == 'team_merge_request_canceled_shown_to_secondary_team_details' def is_team_merge_request_expired_details(self): """ @@ -24779,7 +23830,7 @@ def is_team_merge_request_expired_details(self): :rtype: bool """ - return self._tag == "team_merge_request_expired_details" + return self._tag == 'team_merge_request_expired_details' def is_team_merge_request_expired_shown_to_primary_team_details(self): """ @@ -24787,7 +23838,7 @@ def is_team_merge_request_expired_shown_to_primary_team_details(self): :rtype: bool """ - return self._tag == "team_merge_request_expired_shown_to_primary_team_details" + return self._tag == 'team_merge_request_expired_shown_to_primary_team_details' def is_team_merge_request_expired_shown_to_secondary_team_details(self): """ @@ -24795,7 +23846,7 @@ def is_team_merge_request_expired_shown_to_secondary_team_details(self): :rtype: bool """ - return self._tag == "team_merge_request_expired_shown_to_secondary_team_details" + return self._tag == 'team_merge_request_expired_shown_to_secondary_team_details' def is_team_merge_request_rejected_shown_to_primary_team_details(self): """ @@ -24803,7 +23854,7 @@ def is_team_merge_request_rejected_shown_to_primary_team_details(self): :rtype: bool """ - return self._tag == "team_merge_request_rejected_shown_to_primary_team_details" + return self._tag == 'team_merge_request_rejected_shown_to_primary_team_details' def is_team_merge_request_rejected_shown_to_secondary_team_details(self): """ @@ -24811,7 +23862,7 @@ def is_team_merge_request_rejected_shown_to_secondary_team_details(self): :rtype: bool """ - return self._tag == "team_merge_request_rejected_shown_to_secondary_team_details" + return self._tag == 'team_merge_request_rejected_shown_to_secondary_team_details' def is_team_merge_request_reminder_details(self): """ @@ -24819,7 +23870,7 @@ def is_team_merge_request_reminder_details(self): :rtype: bool """ - return self._tag == "team_merge_request_reminder_details" + return self._tag == 'team_merge_request_reminder_details' def is_team_merge_request_reminder_shown_to_primary_team_details(self): """ @@ -24827,7 +23878,7 @@ def is_team_merge_request_reminder_shown_to_primary_team_details(self): :rtype: bool """ - return self._tag == "team_merge_request_reminder_shown_to_primary_team_details" + return self._tag == 'team_merge_request_reminder_shown_to_primary_team_details' def is_team_merge_request_reminder_shown_to_secondary_team_details(self): """ @@ -24835,7 +23886,7 @@ def is_team_merge_request_reminder_shown_to_secondary_team_details(self): :rtype: bool """ - return self._tag == "team_merge_request_reminder_shown_to_secondary_team_details" + return self._tag == 'team_merge_request_reminder_shown_to_secondary_team_details' def is_team_merge_request_revoked_details(self): """ @@ -24843,7 +23894,7 @@ def is_team_merge_request_revoked_details(self): :rtype: bool """ - return self._tag == "team_merge_request_revoked_details" + return self._tag == 'team_merge_request_revoked_details' def is_team_merge_request_sent_shown_to_primary_team_details(self): """ @@ -24851,7 +23902,7 @@ def is_team_merge_request_sent_shown_to_primary_team_details(self): :rtype: bool """ - return self._tag == "team_merge_request_sent_shown_to_primary_team_details" + return self._tag == 'team_merge_request_sent_shown_to_primary_team_details' def is_team_merge_request_sent_shown_to_secondary_team_details(self): """ @@ -24859,7 +23910,7 @@ def is_team_merge_request_sent_shown_to_secondary_team_details(self): :rtype: bool """ - return self._tag == "team_merge_request_sent_shown_to_secondary_team_details" + return self._tag == 'team_merge_request_sent_shown_to_secondary_team_details' def is_missing_details(self): """ @@ -24867,7 +23918,7 @@ def is_missing_details(self): :rtype: bool """ - return self._tag == "missing_details" + return self._tag == 'missing_details' def is_other(self): """ @@ -24875,7 +23926,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_admin_alerting_alert_state_changed_details(self): """ @@ -25174,9 +24225,7 @@ def get_dash_changed_audience_of_shared_link_to_stack_details(self): :rtype: DashChangedAudienceOfSharedLinkToStackDetails """ if not self.is_dash_changed_audience_of_shared_link_to_stack_details(): - raise AttributeError( - "tag 'dash_changed_audience_of_shared_link_to_stack_details' not set" - ) + raise AttributeError("tag 'dash_changed_audience_of_shared_link_to_stack_details' not set") return self._value def get_dash_cloned_stack_details(self): @@ -25776,9 +24825,7 @@ def get_external_drive_backup_eligibility_status_checked_details(self): :rtype: ExternalDriveBackupEligibilityStatusCheckedDetails """ if not self.is_external_drive_backup_eligibility_status_checked_details(): - raise AttributeError( - "tag 'external_drive_backup_eligibility_status_checked_details' not set" - ) + raise AttributeError("tag 'external_drive_backup_eligibility_status_checked_details' not set") return self._value def get_external_drive_backup_status_changed_details(self): @@ -25848,9 +24895,7 @@ def get_domain_invites_approve_request_to_join_team_details(self): :rtype: DomainInvitesApproveRequestToJoinTeamDetails """ if not self.is_domain_invites_approve_request_to_join_team_details(): - raise AttributeError( - "tag 'domain_invites_approve_request_to_join_team_details' not set" - ) + raise AttributeError("tag 'domain_invites_approve_request_to_join_team_details' not set") return self._value def get_domain_invites_decline_request_to_join_team_details(self): @@ -25860,9 +24905,7 @@ def get_domain_invites_decline_request_to_join_team_details(self): :rtype: DomainInvitesDeclineRequestToJoinTeamDetails """ if not self.is_domain_invites_decline_request_to_join_team_details(): - raise AttributeError( - "tag 'domain_invites_decline_request_to_join_team_details' not set" - ) + raise AttributeError("tag 'domain_invites_decline_request_to_join_team_details' not set") return self._value def get_domain_invites_email_existing_users_details(self): @@ -25892,9 +24935,7 @@ def get_domain_invites_set_invite_new_user_pref_to_no_details(self): :rtype: DomainInvitesSetInviteNewUserPrefToNoDetails """ if not self.is_domain_invites_set_invite_new_user_pref_to_no_details(): - raise AttributeError( - "tag 'domain_invites_set_invite_new_user_pref_to_no_details' not set" - ) + raise AttributeError("tag 'domain_invites_set_invite_new_user_pref_to_no_details' not set") return self._value def get_domain_invites_set_invite_new_user_pref_to_yes_details(self): @@ -25904,9 +24945,7 @@ def get_domain_invites_set_invite_new_user_pref_to_yes_details(self): :rtype: DomainInvitesSetInviteNewUserPrefToYesDetails """ if not self.is_domain_invites_set_invite_new_user_pref_to_yes_details(): - raise AttributeError( - "tag 'domain_invites_set_invite_new_user_pref_to_yes_details' not set" - ) + raise AttributeError("tag 'domain_invites_set_invite_new_user_pref_to_yes_details' not set") return self._value def get_domain_verification_add_domain_fail_details(self): @@ -26636,9 +25675,7 @@ def get_group_external_sharing_setting_override_changed_details(self): :rtype: GroupExternalSharingSettingOverrideChangedDetails """ if not self.is_group_external_sharing_setting_override_changed_details(): - raise AttributeError( - "tag 'group_external_sharing_setting_override_changed_details' not set" - ) + raise AttributeError("tag 'group_external_sharing_setting_override_changed_details' not set") return self._value def get_group_join_policy_updated_details(self): @@ -28078,9 +27115,7 @@ def get_media_hub_shared_link_download_setting_changed_details(self): :rtype: MediaHubSharedLinkDownloadSettingChangedDetails """ if not self.is_media_hub_shared_link_download_setting_changed_details(): - raise AttributeError( - "tag 'media_hub_shared_link_download_setting_changed_details' not set" - ) + raise AttributeError("tag 'media_hub_shared_link_download_setting_changed_details' not set") return self._value def get_media_hub_shared_link_revoked_details(self): @@ -28270,9 +27305,7 @@ def get_send_and_track_removed_file_and_associated_links_details(self): :rtype: SendAndTrackRemovedFileAndAssociatedLinksDetails """ if not self.is_send_and_track_removed_file_and_associated_links_details(): - raise AttributeError( - "tag 'send_and_track_removed_file_and_associated_links_details' not set" - ) + raise AttributeError("tag 'send_and_track_removed_file_and_associated_links_details' not set") return self._value def get_sf_add_group_details(self): @@ -28662,9 +27695,7 @@ def get_shared_folder_change_members_inheritance_policy_details(self): :rtype: SharedFolderChangeMembersInheritancePolicyDetails """ if not self.is_shared_folder_change_members_inheritance_policy_details(): - raise AttributeError( - "tag 'shared_folder_change_members_inheritance_policy_details' not set" - ) + raise AttributeError("tag 'shared_folder_change_members_inheritance_policy_details' not set") return self._value def get_shared_folder_change_members_management_policy_details(self): @@ -28674,9 +27705,7 @@ def get_shared_folder_change_members_management_policy_details(self): :rtype: SharedFolderChangeMembersManagementPolicyDetails """ if not self.is_shared_folder_change_members_management_policy_details(): - raise AttributeError( - "tag 'shared_folder_change_members_management_policy_details' not set" - ) + raise AttributeError("tag 'shared_folder_change_members_management_policy_details' not set") return self._value def get_shared_folder_change_members_policy_details(self): @@ -28866,9 +27895,7 @@ def get_shared_link_settings_allow_download_disabled_details(self): :rtype: SharedLinkSettingsAllowDownloadDisabledDetails """ if not self.is_shared_link_settings_allow_download_disabled_details(): - raise AttributeError( - "tag 'shared_link_settings_allow_download_disabled_details' not set" - ) + raise AttributeError("tag 'shared_link_settings_allow_download_disabled_details' not set") return self._value def get_shared_link_settings_allow_download_enabled_details(self): @@ -28878,9 +27905,7 @@ def get_shared_link_settings_allow_download_enabled_details(self): :rtype: SharedLinkSettingsAllowDownloadEnabledDetails """ if not self.is_shared_link_settings_allow_download_enabled_details(): - raise AttributeError( - "tag 'shared_link_settings_allow_download_enabled_details' not set" - ) + raise AttributeError("tag 'shared_link_settings_allow_download_enabled_details' not set") return self._value def get_shared_link_settings_change_audience_details(self): @@ -29500,9 +28525,7 @@ def get_team_folder_space_limits_change_notification_target_details(self): :rtype: TeamFolderSpaceLimitsChangeNotificationTargetDetails """ if not self.is_team_folder_space_limits_change_notification_target_details(): - raise AttributeError( - "tag 'team_folder_space_limits_change_notification_target_details' not set" - ) + raise AttributeError("tag 'team_folder_space_limits_change_notification_target_details' not set") return self._value def get_team_selective_sync_settings_changed_details(self): @@ -29542,9 +28565,7 @@ def get_ai_third_party_sharing_dropbox_base_policy_changed_details(self): :rtype: AiThirdPartySharingDropboxBasePolicyChangedDetails """ if not self.is_ai_third_party_sharing_dropbox_base_policy_changed_details(): - raise AttributeError( - "tag 'ai_third_party_sharing_dropbox_base_policy_changed_details' not set" - ) + raise AttributeError("tag 'ai_third_party_sharing_dropbox_base_policy_changed_details' not set") return self._value def get_allow_download_disabled_details(self): @@ -29894,9 +28915,7 @@ def get_file_requests_emails_restricted_to_team_only_details(self): :rtype: FileRequestsEmailsRestrictedToTeamOnlyDetails """ if not self.is_file_requests_emails_restricted_to_team_only_details(): - raise AttributeError( - "tag 'file_requests_emails_restricted_to_team_only_details' not set" - ) + raise AttributeError("tag 'file_requests_emails_restricted_to_team_only_details' not set") return self._value def get_file_transfers_policy_changed_details(self): @@ -30036,9 +29055,7 @@ def get_member_space_limits_change_caps_type_policy_details(self): :rtype: MemberSpaceLimitsChangeCapsTypePolicyDetails """ if not self.is_member_space_limits_change_caps_type_policy_details(): - raise AttributeError( - "tag 'member_space_limits_change_caps_type_policy_details' not set" - ) + raise AttributeError("tag 'member_space_limits_change_caps_type_policy_details' not set") return self._value def get_member_space_limits_change_policy_details(self): @@ -30208,9 +29225,7 @@ def get_password_strength_requirements_change_policy_details(self): :rtype: PasswordStrengthRequirementsChangePolicyDetails """ if not self.is_password_strength_requirements_change_policy_details(): - raise AttributeError( - "tag 'password_strength_requirements_change_policy_details' not set" - ) + raise AttributeError("tag 'password_strength_requirements_change_policy_details' not set") return self._value def get_permanent_delete_change_policy_details(self): @@ -30310,9 +29325,7 @@ def get_shared_link_default_permissions_policy_changed_details(self): :rtype: SharedLinkDefaultPermissionsPolicyChangedDetails """ if not self.is_shared_link_default_permissions_policy_changed_details(): - raise AttributeError( - "tag 'shared_link_default_permissions_policy_changed_details' not set" - ) + raise AttributeError("tag 'shared_link_default_permissions_policy_changed_details' not set") return self._value def get_sharing_change_folder_join_policy_details(self): @@ -30332,9 +29345,7 @@ def get_sharing_change_link_allow_change_expiration_policy_details(self): :rtype: SharingChangeLinkAllowChangeExpirationPolicyDetails """ if not self.is_sharing_change_link_allow_change_expiration_policy_details(): - raise AttributeError( - "tag 'sharing_change_link_allow_change_expiration_policy_details' not set" - ) + raise AttributeError("tag 'sharing_change_link_allow_change_expiration_policy_details' not set") return self._value def get_sharing_change_link_default_expiration_policy_details(self): @@ -30344,9 +29355,7 @@ def get_sharing_change_link_default_expiration_policy_details(self): :rtype: SharingChangeLinkDefaultExpirationPolicyDetails """ if not self.is_sharing_change_link_default_expiration_policy_details(): - raise AttributeError( - "tag 'sharing_change_link_default_expiration_policy_details' not set" - ) + raise AttributeError("tag 'sharing_change_link_default_expiration_policy_details' not set") return self._value def get_sharing_change_link_enforce_password_policy_details(self): @@ -30356,9 +29365,7 @@ def get_sharing_change_link_enforce_password_policy_details(self): :rtype: SharingChangeLinkEnforcePasswordPolicyDetails """ if not self.is_sharing_change_link_enforce_password_policy_details(): - raise AttributeError( - "tag 'sharing_change_link_enforce_password_policy_details' not set" - ) + raise AttributeError("tag 'sharing_change_link_enforce_password_policy_details' not set") return self._value def get_sharing_change_link_policy_details(self): @@ -30648,9 +29655,7 @@ def get_data_residency_migration_request_successful_details(self): :rtype: DataResidencyMigrationRequestSuccessfulDetails """ if not self.is_data_residency_migration_request_successful_details(): - raise AttributeError( - "tag 'data_residency_migration_request_successful_details' not set" - ) + raise AttributeError("tag 'data_residency_migration_request_successful_details' not set") return self._value def get_data_residency_migration_request_unsuccessful_details(self): @@ -30660,9 +29665,7 @@ def get_data_residency_migration_request_unsuccessful_details(self): :rtype: DataResidencyMigrationRequestUnsuccessfulDetails """ if not self.is_data_residency_migration_request_unsuccessful_details(): - raise AttributeError( - "tag 'data_residency_migration_request_unsuccessful_details' not set" - ) + raise AttributeError("tag 'data_residency_migration_request_unsuccessful_details' not set") return self._value def get_team_merge_from_details(self): @@ -30942,9 +29945,7 @@ def get_team_merge_request_accepted_shown_to_primary_team_details(self): :rtype: TeamMergeRequestAcceptedShownToPrimaryTeamDetails """ if not self.is_team_merge_request_accepted_shown_to_primary_team_details(): - raise AttributeError( - "tag 'team_merge_request_accepted_shown_to_primary_team_details' not set" - ) + raise AttributeError("tag 'team_merge_request_accepted_shown_to_primary_team_details' not set") return self._value def get_team_merge_request_accepted_shown_to_secondary_team_details(self): @@ -30954,9 +29955,7 @@ def get_team_merge_request_accepted_shown_to_secondary_team_details(self): :rtype: TeamMergeRequestAcceptedShownToSecondaryTeamDetails """ if not self.is_team_merge_request_accepted_shown_to_secondary_team_details(): - raise AttributeError( - "tag 'team_merge_request_accepted_shown_to_secondary_team_details' not set" - ) + raise AttributeError("tag 'team_merge_request_accepted_shown_to_secondary_team_details' not set") return self._value def get_team_merge_request_auto_canceled_details(self): @@ -30986,9 +29985,7 @@ def get_team_merge_request_canceled_shown_to_primary_team_details(self): :rtype: TeamMergeRequestCanceledShownToPrimaryTeamDetails """ if not self.is_team_merge_request_canceled_shown_to_primary_team_details(): - raise AttributeError( - "tag 'team_merge_request_canceled_shown_to_primary_team_details' not set" - ) + raise AttributeError("tag 'team_merge_request_canceled_shown_to_primary_team_details' not set") return self._value def get_team_merge_request_canceled_shown_to_secondary_team_details(self): @@ -30998,9 +29995,7 @@ def get_team_merge_request_canceled_shown_to_secondary_team_details(self): :rtype: TeamMergeRequestCanceledShownToSecondaryTeamDetails """ if not self.is_team_merge_request_canceled_shown_to_secondary_team_details(): - raise AttributeError( - "tag 'team_merge_request_canceled_shown_to_secondary_team_details' not set" - ) + raise AttributeError("tag 'team_merge_request_canceled_shown_to_secondary_team_details' not set") return self._value def get_team_merge_request_expired_details(self): @@ -31020,9 +30015,7 @@ def get_team_merge_request_expired_shown_to_primary_team_details(self): :rtype: TeamMergeRequestExpiredShownToPrimaryTeamDetails """ if not self.is_team_merge_request_expired_shown_to_primary_team_details(): - raise AttributeError( - "tag 'team_merge_request_expired_shown_to_primary_team_details' not set" - ) + raise AttributeError("tag 'team_merge_request_expired_shown_to_primary_team_details' not set") return self._value def get_team_merge_request_expired_shown_to_secondary_team_details(self): @@ -31032,9 +30025,7 @@ def get_team_merge_request_expired_shown_to_secondary_team_details(self): :rtype: TeamMergeRequestExpiredShownToSecondaryTeamDetails """ if not self.is_team_merge_request_expired_shown_to_secondary_team_details(): - raise AttributeError( - "tag 'team_merge_request_expired_shown_to_secondary_team_details' not set" - ) + raise AttributeError("tag 'team_merge_request_expired_shown_to_secondary_team_details' not set") return self._value def get_team_merge_request_rejected_shown_to_primary_team_details(self): @@ -31044,9 +30035,7 @@ def get_team_merge_request_rejected_shown_to_primary_team_details(self): :rtype: TeamMergeRequestRejectedShownToPrimaryTeamDetails """ if not self.is_team_merge_request_rejected_shown_to_primary_team_details(): - raise AttributeError( - "tag 'team_merge_request_rejected_shown_to_primary_team_details' not set" - ) + raise AttributeError("tag 'team_merge_request_rejected_shown_to_primary_team_details' not set") return self._value def get_team_merge_request_rejected_shown_to_secondary_team_details(self): @@ -31056,9 +30045,7 @@ def get_team_merge_request_rejected_shown_to_secondary_team_details(self): :rtype: TeamMergeRequestRejectedShownToSecondaryTeamDetails """ if not self.is_team_merge_request_rejected_shown_to_secondary_team_details(): - raise AttributeError( - "tag 'team_merge_request_rejected_shown_to_secondary_team_details' not set" - ) + raise AttributeError("tag 'team_merge_request_rejected_shown_to_secondary_team_details' not set") return self._value def get_team_merge_request_reminder_details(self): @@ -31078,9 +30065,7 @@ def get_team_merge_request_reminder_shown_to_primary_team_details(self): :rtype: TeamMergeRequestReminderShownToPrimaryTeamDetails """ if not self.is_team_merge_request_reminder_shown_to_primary_team_details(): - raise AttributeError( - "tag 'team_merge_request_reminder_shown_to_primary_team_details' not set" - ) + raise AttributeError("tag 'team_merge_request_reminder_shown_to_primary_team_details' not set") return self._value def get_team_merge_request_reminder_shown_to_secondary_team_details(self): @@ -31090,9 +30075,7 @@ def get_team_merge_request_reminder_shown_to_secondary_team_details(self): :rtype: TeamMergeRequestReminderShownToSecondaryTeamDetails """ if not self.is_team_merge_request_reminder_shown_to_secondary_team_details(): - raise AttributeError( - "tag 'team_merge_request_reminder_shown_to_secondary_team_details' not set" - ) + raise AttributeError("tag 'team_merge_request_reminder_shown_to_secondary_team_details' not set") return self._value def get_team_merge_request_revoked_details(self): @@ -31112,9 +30095,7 @@ def get_team_merge_request_sent_shown_to_primary_team_details(self): :rtype: TeamMergeRequestSentShownToPrimaryTeamDetails """ if not self.is_team_merge_request_sent_shown_to_primary_team_details(): - raise AttributeError( - "tag 'team_merge_request_sent_shown_to_primary_team_details' not set" - ) + raise AttributeError("tag 'team_merge_request_sent_shown_to_primary_team_details' not set") return self._value def get_team_merge_request_sent_shown_to_secondary_team_details(self): @@ -31124,9 +30105,7 @@ def get_team_merge_request_sent_shown_to_secondary_team_details(self): :rtype: TeamMergeRequestSentShownToSecondaryTeamDetails """ if not self.is_team_merge_request_sent_shown_to_secondary_team_details(): - raise AttributeError( - "tag 'team_merge_request_sent_shown_to_secondary_team_details' not set" - ) + raise AttributeError("tag 'team_merge_request_sent_shown_to_secondary_team_details' not set") return self._value def get_missing_details(self): @@ -31143,14 +30122,10 @@ def get_missing_details(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EventDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(EventDetails, self)._process_custom_annotations(annotation_type, field_path, processor) EventDetails_validator = bv.Union(EventDetails) - class EventType(bb.Union): """ The type of the event with description. @@ -33102,7 +32077,7 @@ class EventType(bb.Union): :vartype EventType.team_merge_request_sent_shown_to_secondary_team: TeamMergeRequestSentShownToSecondaryTeamType """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -33115,7 +32090,7 @@ def admin_alerting_alert_state_changed(cls, val): :param AdminAlertingAlertStateChangedType val: :rtype: EventType """ - return cls("admin_alerting_alert_state_changed", val) + return cls('admin_alerting_alert_state_changed', val) @classmethod def admin_alerting_changed_alert_config(cls, val): @@ -33126,7 +32101,7 @@ def admin_alerting_changed_alert_config(cls, val): :param AdminAlertingChangedAlertConfigType val: :rtype: EventType """ - return cls("admin_alerting_changed_alert_config", val) + return cls('admin_alerting_changed_alert_config', val) @classmethod def admin_alerting_triggered_alert(cls, val): @@ -33137,7 +32112,7 @@ def admin_alerting_triggered_alert(cls, val): :param AdminAlertingTriggeredAlertType val: :rtype: EventType """ - return cls("admin_alerting_triggered_alert", val) + return cls('admin_alerting_triggered_alert', val) @classmethod def ransomware_restore_process_completed(cls, val): @@ -33148,7 +32123,7 @@ def ransomware_restore_process_completed(cls, val): :param RansomwareRestoreProcessCompletedType val: :rtype: EventType """ - return cls("ransomware_restore_process_completed", val) + return cls('ransomware_restore_process_completed', val) @classmethod def ransomware_restore_process_started(cls, val): @@ -33159,7 +32134,7 @@ def ransomware_restore_process_started(cls, val): :param RansomwareRestoreProcessStartedType val: :rtype: EventType """ - return cls("ransomware_restore_process_started", val) + return cls('ransomware_restore_process_started', val) @classmethod def app_blocked_by_permissions(cls, val): @@ -33170,7 +32145,7 @@ def app_blocked_by_permissions(cls, val): :param AppBlockedByPermissionsType val: :rtype: EventType """ - return cls("app_blocked_by_permissions", val) + return cls('app_blocked_by_permissions', val) @classmethod def app_link_team(cls, val): @@ -33181,7 +32156,7 @@ def app_link_team(cls, val): :param AppLinkTeamType val: :rtype: EventType """ - return cls("app_link_team", val) + return cls('app_link_team', val) @classmethod def app_link_user(cls, val): @@ -33192,7 +32167,7 @@ def app_link_user(cls, val): :param AppLinkUserType val: :rtype: EventType """ - return cls("app_link_user", val) + return cls('app_link_user', val) @classmethod def app_unlink_team(cls, val): @@ -33203,7 +32178,7 @@ def app_unlink_team(cls, val): :param AppUnlinkTeamType val: :rtype: EventType """ - return cls("app_unlink_team", val) + return cls('app_unlink_team', val) @classmethod def app_unlink_user(cls, val): @@ -33214,7 +32189,7 @@ def app_unlink_user(cls, val): :param AppUnlinkUserType val: :rtype: EventType """ - return cls("app_unlink_user", val) + return cls('app_unlink_user', val) @classmethod def integration_connected(cls, val): @@ -33225,7 +32200,7 @@ def integration_connected(cls, val): :param IntegrationConnectedType val: :rtype: EventType """ - return cls("integration_connected", val) + return cls('integration_connected', val) @classmethod def integration_disconnected(cls, val): @@ -33236,7 +32211,7 @@ def integration_disconnected(cls, val): :param IntegrationDisconnectedType val: :rtype: EventType """ - return cls("integration_disconnected", val) + return cls('integration_disconnected', val) @classmethod def file_add_comment(cls, val): @@ -33247,7 +32222,7 @@ def file_add_comment(cls, val): :param FileAddCommentType val: :rtype: EventType """ - return cls("file_add_comment", val) + return cls('file_add_comment', val) @classmethod def file_change_comment_subscription(cls, val): @@ -33258,7 +32233,7 @@ def file_change_comment_subscription(cls, val): :param FileChangeCommentSubscriptionType val: :rtype: EventType """ - return cls("file_change_comment_subscription", val) + return cls('file_change_comment_subscription', val) @classmethod def file_delete_comment(cls, val): @@ -33269,7 +32244,7 @@ def file_delete_comment(cls, val): :param FileDeleteCommentType val: :rtype: EventType """ - return cls("file_delete_comment", val) + return cls('file_delete_comment', val) @classmethod def file_edit_comment(cls, val): @@ -33280,7 +32255,7 @@ def file_edit_comment(cls, val): :param FileEditCommentType val: :rtype: EventType """ - return cls("file_edit_comment", val) + return cls('file_edit_comment', val) @classmethod def file_like_comment(cls, val): @@ -33291,7 +32266,7 @@ def file_like_comment(cls, val): :param FileLikeCommentType val: :rtype: EventType """ - return cls("file_like_comment", val) + return cls('file_like_comment', val) @classmethod def file_resolve_comment(cls, val): @@ -33302,7 +32277,7 @@ def file_resolve_comment(cls, val): :param FileResolveCommentType val: :rtype: EventType """ - return cls("file_resolve_comment", val) + return cls('file_resolve_comment', val) @classmethod def file_unlike_comment(cls, val): @@ -33313,7 +32288,7 @@ def file_unlike_comment(cls, val): :param FileUnlikeCommentType val: :rtype: EventType """ - return cls("file_unlike_comment", val) + return cls('file_unlike_comment', val) @classmethod def file_unresolve_comment(cls, val): @@ -33324,7 +32299,7 @@ def file_unresolve_comment(cls, val): :param FileUnresolveCommentType val: :rtype: EventType """ - return cls("file_unresolve_comment", val) + return cls('file_unresolve_comment', val) @classmethod def dash_added_comment_to_stack(cls, val): @@ -33335,7 +32310,7 @@ def dash_added_comment_to_stack(cls, val): :param DashAddedCommentToStackType val: :rtype: EventType """ - return cls("dash_added_comment_to_stack", val) + return cls('dash_added_comment_to_stack', val) @classmethod def dash_added_connector(cls, val): @@ -33346,7 +32321,7 @@ def dash_added_connector(cls, val): :param DashAddedConnectorType val: :rtype: EventType """ - return cls("dash_added_connector", val) + return cls('dash_added_connector', val) @classmethod def dash_added_link_to_stack(cls, val): @@ -33357,7 +32332,7 @@ def dash_added_link_to_stack(cls, val): :param DashAddedLinkToStackType val: :rtype: EventType """ - return cls("dash_added_link_to_stack", val) + return cls('dash_added_link_to_stack', val) @classmethod def dash_added_team_email_domain_allowlist(cls, val): @@ -33368,7 +32343,7 @@ def dash_added_team_email_domain_allowlist(cls, val): :param DashAddedTeamEmailDomainAllowlistType val: :rtype: EventType """ - return cls("dash_added_team_email_domain_allowlist", val) + return cls('dash_added_team_email_domain_allowlist', val) @classmethod def dash_admin_added_org_wide_connector(cls, val): @@ -33379,7 +32354,7 @@ def dash_admin_added_org_wide_connector(cls, val): :param DashAdminAddedOrgWideConnectorType val: :rtype: EventType """ - return cls("dash_admin_added_org_wide_connector", val) + return cls('dash_admin_added_org_wide_connector', val) @classmethod def dash_admin_disabled_connector(cls, val): @@ -33390,7 +32365,7 @@ def dash_admin_disabled_connector(cls, val): :param DashAdminDisabledConnectorType val: :rtype: EventType """ - return cls("dash_admin_disabled_connector", val) + return cls('dash_admin_disabled_connector', val) @classmethod def dash_admin_enabled_connector(cls, val): @@ -33401,7 +32376,7 @@ def dash_admin_enabled_connector(cls, val): :param DashAdminEnabledConnectorType val: :rtype: EventType """ - return cls("dash_admin_enabled_connector", val) + return cls('dash_admin_enabled_connector', val) @classmethod def dash_admin_removed_org_wide_connector(cls, val): @@ -33412,7 +32387,7 @@ def dash_admin_removed_org_wide_connector(cls, val): :param DashAdminRemovedOrgWideConnectorType val: :rtype: EventType """ - return cls("dash_admin_removed_org_wide_connector", val) + return cls('dash_admin_removed_org_wide_connector', val) @classmethod def dash_archived_stack(cls, val): @@ -33423,7 +32398,7 @@ def dash_archived_stack(cls, val): :param DashArchivedStackType val: :rtype: EventType """ - return cls("dash_archived_stack", val) + return cls('dash_archived_stack', val) @classmethod def dash_changed_audience_of_shared_link_to_stack(cls, val): @@ -33435,7 +32410,7 @@ def dash_changed_audience_of_shared_link_to_stack(cls, val): :param DashChangedAudienceOfSharedLinkToStackType val: :rtype: EventType """ - return cls("dash_changed_audience_of_shared_link_to_stack", val) + return cls('dash_changed_audience_of_shared_link_to_stack', val) @classmethod def dash_cloned_stack(cls, val): @@ -33446,7 +32421,7 @@ def dash_cloned_stack(cls, val): :param DashClonedStackType val: :rtype: EventType """ - return cls("dash_cloned_stack", val) + return cls('dash_cloned_stack', val) @classmethod def dash_connector_tools_call(cls, val): @@ -33457,7 +32432,7 @@ def dash_connector_tools_call(cls, val): :param DashConnectorToolsCallType val: :rtype: EventType """ - return cls("dash_connector_tools_call", val) + return cls('dash_connector_tools_call', val) @classmethod def dash_created_stack(cls, val): @@ -33468,7 +32443,7 @@ def dash_created_stack(cls, val): :param DashCreatedStackType val: :rtype: EventType """ - return cls("dash_created_stack", val) + return cls('dash_created_stack', val) @classmethod def dash_deleted_comment_from_stack(cls, val): @@ -33479,7 +32454,7 @@ def dash_deleted_comment_from_stack(cls, val): :param DashDeletedCommentFromStackType val: :rtype: EventType """ - return cls("dash_deleted_comment_from_stack", val) + return cls('dash_deleted_comment_from_stack', val) @classmethod def dash_deleted_stack(cls, val): @@ -33490,7 +32465,7 @@ def dash_deleted_stack(cls, val): :param DashDeletedStackType val: :rtype: EventType """ - return cls("dash_deleted_stack", val) + return cls('dash_deleted_stack', val) @classmethod def dash_edited_comment_in_stack(cls, val): @@ -33501,7 +32476,7 @@ def dash_edited_comment_in_stack(cls, val): :param DashEditedCommentInStackType val: :rtype: EventType """ - return cls("dash_edited_comment_in_stack", val) + return cls('dash_edited_comment_in_stack', val) @classmethod def dash_external_user_opened_stack(cls, val): @@ -33512,7 +32487,7 @@ def dash_external_user_opened_stack(cls, val): :param DashExternalUserOpenedStackType val: :rtype: EventType """ - return cls("dash_external_user_opened_stack", val) + return cls('dash_external_user_opened_stack', val) @classmethod def dash_first_launched_desktop(cls, val): @@ -33523,7 +32498,7 @@ def dash_first_launched_desktop(cls, val): :param DashFirstLaunchedDesktopType val: :rtype: EventType """ - return cls("dash_first_launched_desktop", val) + return cls('dash_first_launched_desktop', val) @classmethod def dash_first_launched_extension(cls, val): @@ -33534,7 +32509,7 @@ def dash_first_launched_extension(cls, val): :param DashFirstLaunchedExtensionType val: :rtype: EventType """ - return cls("dash_first_launched_extension", val) + return cls('dash_first_launched_extension', val) @classmethod def dash_first_launched_web_start_page(cls, val): @@ -33545,7 +32520,7 @@ def dash_first_launched_web_start_page(cls, val): :param DashFirstLaunchedWebStartPageType val: :rtype: EventType """ - return cls("dash_first_launched_web_start_page", val) + return cls('dash_first_launched_web_start_page', val) @classmethod def dash_opened_shared_link_to_stack(cls, val): @@ -33556,7 +32531,7 @@ def dash_opened_shared_link_to_stack(cls, val): :param DashOpenedSharedLinkToStackType val: :rtype: EventType """ - return cls("dash_opened_shared_link_to_stack", val) + return cls('dash_opened_shared_link_to_stack', val) @classmethod def dash_opened_stack(cls, val): @@ -33567,7 +32542,7 @@ def dash_opened_stack(cls, val): :param DashOpenedStackType val: :rtype: EventType """ - return cls("dash_opened_stack", val) + return cls('dash_opened_stack', val) @classmethod def dash_preview_opt_out_status_changed(cls, val): @@ -33578,7 +32553,7 @@ def dash_preview_opt_out_status_changed(cls, val): :param DashPreviewOptOutStatusChangedType val: :rtype: EventType """ - return cls("dash_preview_opt_out_status_changed", val) + return cls('dash_preview_opt_out_status_changed', val) @classmethod def dash_removed_connector(cls, val): @@ -33589,7 +32564,7 @@ def dash_removed_connector(cls, val): :param DashRemovedConnectorType val: :rtype: EventType """ - return cls("dash_removed_connector", val) + return cls('dash_removed_connector', val) @classmethod def dash_removed_link_from_stack(cls, val): @@ -33600,7 +32575,7 @@ def dash_removed_link_from_stack(cls, val): :param DashRemovedLinkFromStackType val: :rtype: EventType """ - return cls("dash_removed_link_from_stack", val) + return cls('dash_removed_link_from_stack', val) @classmethod def dash_removed_shared_link_to_stack(cls, val): @@ -33611,7 +32586,7 @@ def dash_removed_shared_link_to_stack(cls, val): :param DashRemovedSharedLinkToStackType val: :rtype: EventType """ - return cls("dash_removed_shared_link_to_stack", val) + return cls('dash_removed_shared_link_to_stack', val) @classmethod def dash_removed_team_email_domain_allowlist(cls, val): @@ -33622,7 +32597,7 @@ def dash_removed_team_email_domain_allowlist(cls, val): :param DashRemovedTeamEmailDomainAllowlistType val: :rtype: EventType """ - return cls("dash_removed_team_email_domain_allowlist", val) + return cls('dash_removed_team_email_domain_allowlist', val) @classmethod def dash_renamed_stack(cls, val): @@ -33633,7 +32608,7 @@ def dash_renamed_stack(cls, val): :param DashRenamedStackType val: :rtype: EventType """ - return cls("dash_renamed_stack", val) + return cls('dash_renamed_stack', val) @classmethod def dash_shared_link_to_stack(cls, val): @@ -33644,7 +32619,7 @@ def dash_shared_link_to_stack(cls, val): :param DashSharedLinkToStackType val: :rtype: EventType """ - return cls("dash_shared_link_to_stack", val) + return cls('dash_shared_link_to_stack', val) @classmethod def dash_unarchived_stack(cls, val): @@ -33655,7 +32630,7 @@ def dash_unarchived_stack(cls, val): :param DashUnarchivedStackType val: :rtype: EventType """ - return cls("dash_unarchived_stack", val) + return cls('dash_unarchived_stack', val) @classmethod def dash_viewed_company_stack(cls, val): @@ -33666,7 +32641,7 @@ def dash_viewed_company_stack(cls, val): :param DashViewedCompanyStackType val: :rtype: EventType """ - return cls("dash_viewed_company_stack", val) + return cls('dash_viewed_company_stack', val) @classmethod def dash_viewed_external_ai_activity_report(cls, val): @@ -33677,7 +32652,7 @@ def dash_viewed_external_ai_activity_report(cls, val): :param DashViewedExternalAiActivityReportType val: :rtype: EventType """ - return cls("dash_viewed_external_ai_activity_report", val) + return cls('dash_viewed_external_ai_activity_report', val) @classmethod def governance_policy_add_folders(cls, val): @@ -33688,7 +32663,7 @@ def governance_policy_add_folders(cls, val): :param GovernancePolicyAddFoldersType val: :rtype: EventType """ - return cls("governance_policy_add_folders", val) + return cls('governance_policy_add_folders', val) @classmethod def governance_policy_add_folder_failed(cls, val): @@ -33699,7 +32674,7 @@ def governance_policy_add_folder_failed(cls, val): :param GovernancePolicyAddFolderFailedType val: :rtype: EventType """ - return cls("governance_policy_add_folder_failed", val) + return cls('governance_policy_add_folder_failed', val) @classmethod def governance_policy_content_disposed(cls, val): @@ -33710,7 +32685,7 @@ def governance_policy_content_disposed(cls, val): :param GovernancePolicyContentDisposedType val: :rtype: EventType """ - return cls("governance_policy_content_disposed", val) + return cls('governance_policy_content_disposed', val) @classmethod def governance_policy_create(cls, val): @@ -33721,7 +32696,7 @@ def governance_policy_create(cls, val): :param GovernancePolicyCreateType val: :rtype: EventType """ - return cls("governance_policy_create", val) + return cls('governance_policy_create', val) @classmethod def governance_policy_delete(cls, val): @@ -33732,7 +32707,7 @@ def governance_policy_delete(cls, val): :param GovernancePolicyDeleteType val: :rtype: EventType """ - return cls("governance_policy_delete", val) + return cls('governance_policy_delete', val) @classmethod def governance_policy_edit_details(cls, val): @@ -33743,7 +32718,7 @@ def governance_policy_edit_details(cls, val): :param GovernancePolicyEditDetailsType val: :rtype: EventType """ - return cls("governance_policy_edit_details", val) + return cls('governance_policy_edit_details', val) @classmethod def governance_policy_edit_duration(cls, val): @@ -33754,7 +32729,7 @@ def governance_policy_edit_duration(cls, val): :param GovernancePolicyEditDurationType val: :rtype: EventType """ - return cls("governance_policy_edit_duration", val) + return cls('governance_policy_edit_duration', val) @classmethod def governance_policy_export_created(cls, val): @@ -33765,7 +32740,7 @@ def governance_policy_export_created(cls, val): :param GovernancePolicyExportCreatedType val: :rtype: EventType """ - return cls("governance_policy_export_created", val) + return cls('governance_policy_export_created', val) @classmethod def governance_policy_export_removed(cls, val): @@ -33776,7 +32751,7 @@ def governance_policy_export_removed(cls, val): :param GovernancePolicyExportRemovedType val: :rtype: EventType """ - return cls("governance_policy_export_removed", val) + return cls('governance_policy_export_removed', val) @classmethod def governance_policy_remove_folders(cls, val): @@ -33787,7 +32762,7 @@ def governance_policy_remove_folders(cls, val): :param GovernancePolicyRemoveFoldersType val: :rtype: EventType """ - return cls("governance_policy_remove_folders", val) + return cls('governance_policy_remove_folders', val) @classmethod def governance_policy_report_created(cls, val): @@ -33798,7 +32773,7 @@ def governance_policy_report_created(cls, val): :param GovernancePolicyReportCreatedType val: :rtype: EventType """ - return cls("governance_policy_report_created", val) + return cls('governance_policy_report_created', val) @classmethod def governance_policy_zip_part_downloaded(cls, val): @@ -33809,7 +32784,7 @@ def governance_policy_zip_part_downloaded(cls, val): :param GovernancePolicyZipPartDownloadedType val: :rtype: EventType """ - return cls("governance_policy_zip_part_downloaded", val) + return cls('governance_policy_zip_part_downloaded', val) @classmethod def legal_holds_activate_a_hold(cls, val): @@ -33820,7 +32795,7 @@ def legal_holds_activate_a_hold(cls, val): :param LegalHoldsActivateAHoldType val: :rtype: EventType """ - return cls("legal_holds_activate_a_hold", val) + return cls('legal_holds_activate_a_hold', val) @classmethod def legal_holds_add_members(cls, val): @@ -33831,7 +32806,7 @@ def legal_holds_add_members(cls, val): :param LegalHoldsAddMembersType val: :rtype: EventType """ - return cls("legal_holds_add_members", val) + return cls('legal_holds_add_members', val) @classmethod def legal_holds_change_hold_details(cls, val): @@ -33842,7 +32817,7 @@ def legal_holds_change_hold_details(cls, val): :param LegalHoldsChangeHoldDetailsType val: :rtype: EventType """ - return cls("legal_holds_change_hold_details", val) + return cls('legal_holds_change_hold_details', val) @classmethod def legal_holds_change_hold_name(cls, val): @@ -33853,7 +32828,7 @@ def legal_holds_change_hold_name(cls, val): :param LegalHoldsChangeHoldNameType val: :rtype: EventType """ - return cls("legal_holds_change_hold_name", val) + return cls('legal_holds_change_hold_name', val) @classmethod def legal_holds_export_a_hold(cls, val): @@ -33864,7 +32839,7 @@ def legal_holds_export_a_hold(cls, val): :param LegalHoldsExportAHoldType val: :rtype: EventType """ - return cls("legal_holds_export_a_hold", val) + return cls('legal_holds_export_a_hold', val) @classmethod def legal_holds_export_cancelled(cls, val): @@ -33875,7 +32850,7 @@ def legal_holds_export_cancelled(cls, val): :param LegalHoldsExportCancelledType val: :rtype: EventType """ - return cls("legal_holds_export_cancelled", val) + return cls('legal_holds_export_cancelled', val) @classmethod def legal_holds_export_downloaded(cls, val): @@ -33886,7 +32861,7 @@ def legal_holds_export_downloaded(cls, val): :param LegalHoldsExportDownloadedType val: :rtype: EventType """ - return cls("legal_holds_export_downloaded", val) + return cls('legal_holds_export_downloaded', val) @classmethod def legal_holds_export_removed(cls, val): @@ -33897,7 +32872,7 @@ def legal_holds_export_removed(cls, val): :param LegalHoldsExportRemovedType val: :rtype: EventType """ - return cls("legal_holds_export_removed", val) + return cls('legal_holds_export_removed', val) @classmethod def legal_holds_release_a_hold(cls, val): @@ -33908,7 +32883,7 @@ def legal_holds_release_a_hold(cls, val): :param LegalHoldsReleaseAHoldType val: :rtype: EventType """ - return cls("legal_holds_release_a_hold", val) + return cls('legal_holds_release_a_hold', val) @classmethod def legal_holds_remove_members(cls, val): @@ -33919,7 +32894,7 @@ def legal_holds_remove_members(cls, val): :param LegalHoldsRemoveMembersType val: :rtype: EventType """ - return cls("legal_holds_remove_members", val) + return cls('legal_holds_remove_members', val) @classmethod def legal_holds_report_a_hold(cls, val): @@ -33930,7 +32905,7 @@ def legal_holds_report_a_hold(cls, val): :param LegalHoldsReportAHoldType val: :rtype: EventType """ - return cls("legal_holds_report_a_hold", val) + return cls('legal_holds_report_a_hold', val) @classmethod def device_change_ip_desktop(cls, val): @@ -33941,7 +32916,7 @@ def device_change_ip_desktop(cls, val): :param DeviceChangeIpDesktopType val: :rtype: EventType """ - return cls("device_change_ip_desktop", val) + return cls('device_change_ip_desktop', val) @classmethod def device_change_ip_mobile(cls, val): @@ -33952,7 +32927,7 @@ def device_change_ip_mobile(cls, val): :param DeviceChangeIpMobileType val: :rtype: EventType """ - return cls("device_change_ip_mobile", val) + return cls('device_change_ip_mobile', val) @classmethod def device_change_ip_web(cls, val): @@ -33963,7 +32938,7 @@ def device_change_ip_web(cls, val): :param DeviceChangeIpWebType val: :rtype: EventType """ - return cls("device_change_ip_web", val) + return cls('device_change_ip_web', val) @classmethod def device_delete_on_unlink_fail(cls, val): @@ -33974,7 +32949,7 @@ def device_delete_on_unlink_fail(cls, val): :param DeviceDeleteOnUnlinkFailType val: :rtype: EventType """ - return cls("device_delete_on_unlink_fail", val) + return cls('device_delete_on_unlink_fail', val) @classmethod def device_delete_on_unlink_success(cls, val): @@ -33985,7 +32960,7 @@ def device_delete_on_unlink_success(cls, val): :param DeviceDeleteOnUnlinkSuccessType val: :rtype: EventType """ - return cls("device_delete_on_unlink_success", val) + return cls('device_delete_on_unlink_success', val) @classmethod def device_link_fail(cls, val): @@ -33996,7 +32971,7 @@ def device_link_fail(cls, val): :param DeviceLinkFailType val: :rtype: EventType """ - return cls("device_link_fail", val) + return cls('device_link_fail', val) @classmethod def device_link_success(cls, val): @@ -34007,7 +32982,7 @@ def device_link_success(cls, val): :param DeviceLinkSuccessType val: :rtype: EventType """ - return cls("device_link_success", val) + return cls('device_link_success', val) @classmethod def device_management_disabled(cls, val): @@ -34018,7 +32993,7 @@ def device_management_disabled(cls, val): :param DeviceManagementDisabledType val: :rtype: EventType """ - return cls("device_management_disabled", val) + return cls('device_management_disabled', val) @classmethod def device_management_enabled(cls, val): @@ -34029,7 +33004,7 @@ def device_management_enabled(cls, val): :param DeviceManagementEnabledType val: :rtype: EventType """ - return cls("device_management_enabled", val) + return cls('device_management_enabled', val) @classmethod def device_sync_backup_status_changed(cls, val): @@ -34040,7 +33015,7 @@ def device_sync_backup_status_changed(cls, val): :param DeviceSyncBackupStatusChangedType val: :rtype: EventType """ - return cls("device_sync_backup_status_changed", val) + return cls('device_sync_backup_status_changed', val) @classmethod def device_unlink(cls, val): @@ -34051,7 +33026,7 @@ def device_unlink(cls, val): :param DeviceUnlinkType val: :rtype: EventType """ - return cls("device_unlink", val) + return cls('device_unlink', val) @classmethod def dropbox_passwords_exported(cls, val): @@ -34062,7 +33037,7 @@ def dropbox_passwords_exported(cls, val): :param DropboxPasswordsExportedType val: :rtype: EventType """ - return cls("dropbox_passwords_exported", val) + return cls('dropbox_passwords_exported', val) @classmethod def dropbox_passwords_new_device_enrolled(cls, val): @@ -34073,7 +33048,7 @@ def dropbox_passwords_new_device_enrolled(cls, val): :param DropboxPasswordsNewDeviceEnrolledType val: :rtype: EventType """ - return cls("dropbox_passwords_new_device_enrolled", val) + return cls('dropbox_passwords_new_device_enrolled', val) @classmethod def emm_refresh_auth_token(cls, val): @@ -34084,7 +33059,7 @@ def emm_refresh_auth_token(cls, val): :param EmmRefreshAuthTokenType val: :rtype: EventType """ - return cls("emm_refresh_auth_token", val) + return cls('emm_refresh_auth_token', val) @classmethod def external_drive_backup_eligibility_status_checked(cls, val): @@ -34096,7 +33071,7 @@ def external_drive_backup_eligibility_status_checked(cls, val): :param ExternalDriveBackupEligibilityStatusCheckedType val: :rtype: EventType """ - return cls("external_drive_backup_eligibility_status_checked", val) + return cls('external_drive_backup_eligibility_status_checked', val) @classmethod def external_drive_backup_status_changed(cls, val): @@ -34107,7 +33082,7 @@ def external_drive_backup_status_changed(cls, val): :param ExternalDriveBackupStatusChangedType val: :rtype: EventType """ - return cls("external_drive_backup_status_changed", val) + return cls('external_drive_backup_status_changed', val) @classmethod def account_capture_change_availability(cls, val): @@ -34118,7 +33093,7 @@ def account_capture_change_availability(cls, val): :param AccountCaptureChangeAvailabilityType val: :rtype: EventType """ - return cls("account_capture_change_availability", val) + return cls('account_capture_change_availability', val) @classmethod def account_capture_migrate_account(cls, val): @@ -34129,7 +33104,7 @@ def account_capture_migrate_account(cls, val): :param AccountCaptureMigrateAccountType val: :rtype: EventType """ - return cls("account_capture_migrate_account", val) + return cls('account_capture_migrate_account', val) @classmethod def account_capture_notification_emails_sent(cls, val): @@ -34140,7 +33115,7 @@ def account_capture_notification_emails_sent(cls, val): :param AccountCaptureNotificationEmailsSentType val: :rtype: EventType """ - return cls("account_capture_notification_emails_sent", val) + return cls('account_capture_notification_emails_sent', val) @classmethod def account_capture_relinquish_account(cls, val): @@ -34151,7 +33126,7 @@ def account_capture_relinquish_account(cls, val): :param AccountCaptureRelinquishAccountType val: :rtype: EventType """ - return cls("account_capture_relinquish_account", val) + return cls('account_capture_relinquish_account', val) @classmethod def disabled_domain_invites(cls, val): @@ -34162,7 +33137,7 @@ def disabled_domain_invites(cls, val): :param DisabledDomainInvitesType val: :rtype: EventType """ - return cls("disabled_domain_invites", val) + return cls('disabled_domain_invites', val) @classmethod def domain_invites_approve_request_to_join_team(cls, val): @@ -34173,7 +33148,7 @@ def domain_invites_approve_request_to_join_team(cls, val): :param DomainInvitesApproveRequestToJoinTeamType val: :rtype: EventType """ - return cls("domain_invites_approve_request_to_join_team", val) + return cls('domain_invites_approve_request_to_join_team', val) @classmethod def domain_invites_decline_request_to_join_team(cls, val): @@ -34184,7 +33159,7 @@ def domain_invites_decline_request_to_join_team(cls, val): :param DomainInvitesDeclineRequestToJoinTeamType val: :rtype: EventType """ - return cls("domain_invites_decline_request_to_join_team", val) + return cls('domain_invites_decline_request_to_join_team', val) @classmethod def domain_invites_email_existing_users(cls, val): @@ -34195,7 +33170,7 @@ def domain_invites_email_existing_users(cls, val): :param DomainInvitesEmailExistingUsersType val: :rtype: EventType """ - return cls("domain_invites_email_existing_users", val) + return cls('domain_invites_email_existing_users', val) @classmethod def domain_invites_request_to_join_team(cls, val): @@ -34206,7 +33181,7 @@ def domain_invites_request_to_join_team(cls, val): :param DomainInvitesRequestToJoinTeamType val: :rtype: EventType """ - return cls("domain_invites_request_to_join_team", val) + return cls('domain_invites_request_to_join_team', val) @classmethod def domain_invites_set_invite_new_user_pref_to_no(cls, val): @@ -34218,7 +33193,7 @@ def domain_invites_set_invite_new_user_pref_to_no(cls, val): :param DomainInvitesSetInviteNewUserPrefToNoType val: :rtype: EventType """ - return cls("domain_invites_set_invite_new_user_pref_to_no", val) + return cls('domain_invites_set_invite_new_user_pref_to_no', val) @classmethod def domain_invites_set_invite_new_user_pref_to_yes(cls, val): @@ -34230,7 +33205,7 @@ def domain_invites_set_invite_new_user_pref_to_yes(cls, val): :param DomainInvitesSetInviteNewUserPrefToYesType val: :rtype: EventType """ - return cls("domain_invites_set_invite_new_user_pref_to_yes", val) + return cls('domain_invites_set_invite_new_user_pref_to_yes', val) @classmethod def domain_verification_add_domain_fail(cls, val): @@ -34241,7 +33216,7 @@ def domain_verification_add_domain_fail(cls, val): :param DomainVerificationAddDomainFailType val: :rtype: EventType """ - return cls("domain_verification_add_domain_fail", val) + return cls('domain_verification_add_domain_fail', val) @classmethod def domain_verification_add_domain_success(cls, val): @@ -34252,7 +33227,7 @@ def domain_verification_add_domain_success(cls, val): :param DomainVerificationAddDomainSuccessType val: :rtype: EventType """ - return cls("domain_verification_add_domain_success", val) + return cls('domain_verification_add_domain_success', val) @classmethod def domain_verification_remove_domain(cls, val): @@ -34263,7 +33238,7 @@ def domain_verification_remove_domain(cls, val): :param DomainVerificationRemoveDomainType val: :rtype: EventType """ - return cls("domain_verification_remove_domain", val) + return cls('domain_verification_remove_domain', val) @classmethod def enabled_domain_invites(cls, val): @@ -34274,7 +33249,7 @@ def enabled_domain_invites(cls, val): :param EnabledDomainInvitesType val: :rtype: EventType """ - return cls("enabled_domain_invites", val) + return cls('enabled_domain_invites', val) @classmethod def encrypted_folder_cancel_team_key_rotation(cls, val): @@ -34285,7 +33260,7 @@ def encrypted_folder_cancel_team_key_rotation(cls, val): :param EncryptedFolderCancelTeamKeyRotationType val: :rtype: EventType """ - return cls("encrypted_folder_cancel_team_key_rotation", val) + return cls('encrypted_folder_cancel_team_key_rotation', val) @classmethod def encrypted_folder_enroll_backup_key(cls, val): @@ -34296,7 +33271,7 @@ def encrypted_folder_enroll_backup_key(cls, val): :param EncryptedFolderEnrollBackupKeyType val: :rtype: EventType """ - return cls("encrypted_folder_enroll_backup_key", val) + return cls('encrypted_folder_enroll_backup_key', val) @classmethod def encrypted_folder_enroll_client(cls, val): @@ -34307,7 +33282,7 @@ def encrypted_folder_enroll_client(cls, val): :param EncryptedFolderEnrollClientType val: :rtype: EventType """ - return cls("encrypted_folder_enroll_client", val) + return cls('encrypted_folder_enroll_client', val) @classmethod def encrypted_folder_enroll_team(cls, val): @@ -34318,7 +33293,7 @@ def encrypted_folder_enroll_team(cls, val): :param EncryptedFolderEnrollTeamType val: :rtype: EventType """ - return cls("encrypted_folder_enroll_team", val) + return cls('encrypted_folder_enroll_team', val) @classmethod def encrypted_folder_finish_team_unenrollment(cls, val): @@ -34329,7 +33304,7 @@ def encrypted_folder_finish_team_unenrollment(cls, val): :param EncryptedFolderFinishTeamUnenrollmentType val: :rtype: EventType """ - return cls("encrypted_folder_finish_team_unenrollment", val) + return cls('encrypted_folder_finish_team_unenrollment', val) @classmethod def encrypted_folder_init_team_key_rotation(cls, val): @@ -34340,7 +33315,7 @@ def encrypted_folder_init_team_key_rotation(cls, val): :param EncryptedFolderInitTeamKeyRotationType val: :rtype: EventType """ - return cls("encrypted_folder_init_team_key_rotation", val) + return cls('encrypted_folder_init_team_key_rotation', val) @classmethod def encrypted_folder_init_team_unenrollment(cls, val): @@ -34351,7 +33326,7 @@ def encrypted_folder_init_team_unenrollment(cls, val): :param EncryptedFolderInitTeamUnenrollmentType val: :rtype: EventType """ - return cls("encrypted_folder_init_team_unenrollment", val) + return cls('encrypted_folder_init_team_unenrollment', val) @classmethod def encrypted_folder_remove_backup_key(cls, val): @@ -34362,7 +33337,7 @@ def encrypted_folder_remove_backup_key(cls, val): :param EncryptedFolderRemoveBackupKeyType val: :rtype: EventType """ - return cls("encrypted_folder_remove_backup_key", val) + return cls('encrypted_folder_remove_backup_key', val) @classmethod def encrypted_folder_rotate_team_key(cls, val): @@ -34373,7 +33348,7 @@ def encrypted_folder_rotate_team_key(cls, val): :param EncryptedFolderRotateTeamKeyType val: :rtype: EventType """ - return cls("encrypted_folder_rotate_team_key", val) + return cls('encrypted_folder_rotate_team_key', val) @classmethod def encrypted_folder_unenroll_client(cls, val): @@ -34384,7 +33359,7 @@ def encrypted_folder_unenroll_client(cls, val): :param EncryptedFolderUnenrollClientType val: :rtype: EventType """ - return cls("encrypted_folder_unenroll_client", val) + return cls('encrypted_folder_unenroll_client', val) @classmethod def team_encryption_key_activate_key(cls, val): @@ -34395,7 +33370,7 @@ def team_encryption_key_activate_key(cls, val): :param TeamEncryptionKeyActivateKeyType val: :rtype: EventType """ - return cls("team_encryption_key_activate_key", val) + return cls('team_encryption_key_activate_key', val) @classmethod def team_encryption_key_cancel_key_deletion(cls, val): @@ -34406,7 +33381,7 @@ def team_encryption_key_cancel_key_deletion(cls, val): :param TeamEncryptionKeyCancelKeyDeletionType val: :rtype: EventType """ - return cls("team_encryption_key_cancel_key_deletion", val) + return cls('team_encryption_key_cancel_key_deletion', val) @classmethod def team_encryption_key_create_key(cls, val): @@ -34417,7 +33392,7 @@ def team_encryption_key_create_key(cls, val): :param TeamEncryptionKeyCreateKeyType val: :rtype: EventType """ - return cls("team_encryption_key_create_key", val) + return cls('team_encryption_key_create_key', val) @classmethod def team_encryption_key_deactivate_key(cls, val): @@ -34428,7 +33403,7 @@ def team_encryption_key_deactivate_key(cls, val): :param TeamEncryptionKeyDeactivateKeyType val: :rtype: EventType """ - return cls("team_encryption_key_deactivate_key", val) + return cls('team_encryption_key_deactivate_key', val) @classmethod def team_encryption_key_delete_key(cls, val): @@ -34439,7 +33414,7 @@ def team_encryption_key_delete_key(cls, val): :param TeamEncryptionKeyDeleteKeyType val: :rtype: EventType """ - return cls("team_encryption_key_delete_key", val) + return cls('team_encryption_key_delete_key', val) @classmethod def team_encryption_key_disable_key(cls, val): @@ -34450,7 +33425,7 @@ def team_encryption_key_disable_key(cls, val): :param TeamEncryptionKeyDisableKeyType val: :rtype: EventType """ - return cls("team_encryption_key_disable_key", val) + return cls('team_encryption_key_disable_key', val) @classmethod def team_encryption_key_enable_key(cls, val): @@ -34461,7 +33436,7 @@ def team_encryption_key_enable_key(cls, val): :param TeamEncryptionKeyEnableKeyType val: :rtype: EventType """ - return cls("team_encryption_key_enable_key", val) + return cls('team_encryption_key_enable_key', val) @classmethod def team_encryption_key_rotate_key(cls, val): @@ -34472,7 +33447,7 @@ def team_encryption_key_rotate_key(cls, val): :param TeamEncryptionKeyRotateKeyType val: :rtype: EventType """ - return cls("team_encryption_key_rotate_key", val) + return cls('team_encryption_key_rotate_key', val) @classmethod def team_encryption_key_schedule_key_deletion(cls, val): @@ -34483,7 +33458,7 @@ def team_encryption_key_schedule_key_deletion(cls, val): :param TeamEncryptionKeyScheduleKeyDeletionType val: :rtype: EventType """ - return cls("team_encryption_key_schedule_key_deletion", val) + return cls('team_encryption_key_schedule_key_deletion', val) @classmethod def apply_naming_convention(cls, val): @@ -34494,7 +33469,7 @@ def apply_naming_convention(cls, val): :param ApplyNamingConventionType val: :rtype: EventType """ - return cls("apply_naming_convention", val) + return cls('apply_naming_convention', val) @classmethod def create_folder(cls, val): @@ -34505,7 +33480,7 @@ def create_folder(cls, val): :param CreateFolderType val: :rtype: EventType """ - return cls("create_folder", val) + return cls('create_folder', val) @classmethod def file_add(cls, val): @@ -34516,7 +33491,7 @@ def file_add(cls, val): :param FileAddType val: :rtype: EventType """ - return cls("file_add", val) + return cls('file_add', val) @classmethod def file_add_from_automation(cls, val): @@ -34527,7 +33502,7 @@ def file_add_from_automation(cls, val): :param FileAddFromAutomationType val: :rtype: EventType """ - return cls("file_add_from_automation", val) + return cls('file_add_from_automation', val) @classmethod def file_copy(cls, val): @@ -34538,7 +33513,7 @@ def file_copy(cls, val): :param FileCopyType val: :rtype: EventType """ - return cls("file_copy", val) + return cls('file_copy', val) @classmethod def file_delete(cls, val): @@ -34549,7 +33524,7 @@ def file_delete(cls, val): :param FileDeleteType val: :rtype: EventType """ - return cls("file_delete", val) + return cls('file_delete', val) @classmethod def file_download(cls, val): @@ -34560,7 +33535,7 @@ def file_download(cls, val): :param FileDownloadType val: :rtype: EventType """ - return cls("file_download", val) + return cls('file_download', val) @classmethod def file_edit(cls, val): @@ -34571,7 +33546,7 @@ def file_edit(cls, val): :param FileEditType val: :rtype: EventType """ - return cls("file_edit", val) + return cls('file_edit', val) @classmethod def file_get_copy_reference(cls, val): @@ -34582,7 +33557,7 @@ def file_get_copy_reference(cls, val): :param FileGetCopyReferenceType val: :rtype: EventType """ - return cls("file_get_copy_reference", val) + return cls('file_get_copy_reference', val) @classmethod def file_locking_lock_status_changed(cls, val): @@ -34593,7 +33568,7 @@ def file_locking_lock_status_changed(cls, val): :param FileLockingLockStatusChangedType val: :rtype: EventType """ - return cls("file_locking_lock_status_changed", val) + return cls('file_locking_lock_status_changed', val) @classmethod def file_move(cls, val): @@ -34604,7 +33579,7 @@ def file_move(cls, val): :param FileMoveType val: :rtype: EventType """ - return cls("file_move", val) + return cls('file_move', val) @classmethod def file_permanently_delete(cls, val): @@ -34615,7 +33590,7 @@ def file_permanently_delete(cls, val): :param FilePermanentlyDeleteType val: :rtype: EventType """ - return cls("file_permanently_delete", val) + return cls('file_permanently_delete', val) @classmethod def file_preview(cls, val): @@ -34626,7 +33601,7 @@ def file_preview(cls, val): :param FilePreviewType val: :rtype: EventType """ - return cls("file_preview", val) + return cls('file_preview', val) @classmethod def file_rename(cls, val): @@ -34637,7 +33612,7 @@ def file_rename(cls, val): :param FileRenameType val: :rtype: EventType """ - return cls("file_rename", val) + return cls('file_rename', val) @classmethod def file_restore(cls, val): @@ -34648,7 +33623,7 @@ def file_restore(cls, val): :param FileRestoreType val: :rtype: EventType """ - return cls("file_restore", val) + return cls('file_restore', val) @classmethod def file_revert(cls, val): @@ -34659,7 +33634,7 @@ def file_revert(cls, val): :param FileRevertType val: :rtype: EventType """ - return cls("file_revert", val) + return cls('file_revert', val) @classmethod def file_rollback_changes(cls, val): @@ -34670,7 +33645,7 @@ def file_rollback_changes(cls, val): :param FileRollbackChangesType val: :rtype: EventType """ - return cls("file_rollback_changes", val) + return cls('file_rollback_changes', val) @classmethod def file_save_copy_reference(cls, val): @@ -34681,7 +33656,7 @@ def file_save_copy_reference(cls, val): :param FileSaveCopyReferenceType val: :rtype: EventType """ - return cls("file_save_copy_reference", val) + return cls('file_save_copy_reference', val) @classmethod def folder_overview_description_changed(cls, val): @@ -34692,7 +33667,7 @@ def folder_overview_description_changed(cls, val): :param FolderOverviewDescriptionChangedType val: :rtype: EventType """ - return cls("folder_overview_description_changed", val) + return cls('folder_overview_description_changed', val) @classmethod def folder_overview_item_pinned(cls, val): @@ -34703,7 +33678,7 @@ def folder_overview_item_pinned(cls, val): :param FolderOverviewItemPinnedType val: :rtype: EventType """ - return cls("folder_overview_item_pinned", val) + return cls('folder_overview_item_pinned', val) @classmethod def folder_overview_item_unpinned(cls, val): @@ -34714,7 +33689,7 @@ def folder_overview_item_unpinned(cls, val): :param FolderOverviewItemUnpinnedType val: :rtype: EventType """ - return cls("folder_overview_item_unpinned", val) + return cls('folder_overview_item_unpinned', val) @classmethod def media_hub_file_downloaded(cls, val): @@ -34725,7 +33700,7 @@ def media_hub_file_downloaded(cls, val): :param MediaHubFileDownloadedType val: :rtype: EventType """ - return cls("media_hub_file_downloaded", val) + return cls('media_hub_file_downloaded', val) @classmethod def object_label_added(cls, val): @@ -34736,7 +33711,7 @@ def object_label_added(cls, val): :param ObjectLabelAddedType val: :rtype: EventType """ - return cls("object_label_added", val) + return cls('object_label_added', val) @classmethod def object_label_removed(cls, val): @@ -34747,7 +33722,7 @@ def object_label_removed(cls, val): :param ObjectLabelRemovedType val: :rtype: EventType """ - return cls("object_label_removed", val) + return cls('object_label_removed', val) @classmethod def object_label_updated_value(cls, val): @@ -34758,7 +33733,7 @@ def object_label_updated_value(cls, val): :param ObjectLabelUpdatedValueType val: :rtype: EventType """ - return cls("object_label_updated_value", val) + return cls('object_label_updated_value', val) @classmethod def organize_folder_with_tidy(cls, val): @@ -34769,7 +33744,7 @@ def organize_folder_with_tidy(cls, val): :param OrganizeFolderWithTidyType val: :rtype: EventType """ - return cls("organize_folder_with_tidy", val) + return cls('organize_folder_with_tidy', val) @classmethod def replay_file_delete(cls, val): @@ -34780,7 +33755,7 @@ def replay_file_delete(cls, val): :param ReplayFileDeleteType val: :rtype: EventType """ - return cls("replay_file_delete", val) + return cls('replay_file_delete', val) @classmethod def replay_file_downloaded(cls, val): @@ -34791,7 +33766,7 @@ def replay_file_downloaded(cls, val): :param ReplayFileDownloadedType val: :rtype: EventType """ - return cls("replay_file_downloaded", val) + return cls('replay_file_downloaded', val) @classmethod def replay_team_project_created(cls, val): @@ -34802,7 +33777,7 @@ def replay_team_project_created(cls, val): :param ReplayTeamProjectCreatedType val: :rtype: EventType """ - return cls("replay_team_project_created", val) + return cls('replay_team_project_created', val) @classmethod def rewind_folder(cls, val): @@ -34813,7 +33788,7 @@ def rewind_folder(cls, val): :param RewindFolderType val: :rtype: EventType """ - return cls("rewind_folder", val) + return cls('rewind_folder', val) @classmethod def undo_naming_convention(cls, val): @@ -34824,7 +33799,7 @@ def undo_naming_convention(cls, val): :param UndoNamingConventionType val: :rtype: EventType """ - return cls("undo_naming_convention", val) + return cls('undo_naming_convention', val) @classmethod def undo_organize_folder_with_tidy(cls, val): @@ -34835,7 +33810,7 @@ def undo_organize_folder_with_tidy(cls, val): :param UndoOrganizeFolderWithTidyType val: :rtype: EventType """ - return cls("undo_organize_folder_with_tidy", val) + return cls('undo_organize_folder_with_tidy', val) @classmethod def user_tags_added(cls, val): @@ -34846,7 +33821,7 @@ def user_tags_added(cls, val): :param UserTagsAddedType val: :rtype: EventType """ - return cls("user_tags_added", val) + return cls('user_tags_added', val) @classmethod def user_tags_removed(cls, val): @@ -34857,7 +33832,7 @@ def user_tags_removed(cls, val): :param UserTagsRemovedType val: :rtype: EventType """ - return cls("user_tags_removed", val) + return cls('user_tags_removed', val) @classmethod def email_ingest_receive_file(cls, val): @@ -34868,7 +33843,7 @@ def email_ingest_receive_file(cls, val): :param EmailIngestReceiveFileType val: :rtype: EventType """ - return cls("email_ingest_receive_file", val) + return cls('email_ingest_receive_file', val) @classmethod def file_request_auto_close(cls, val): @@ -34879,7 +33854,7 @@ def file_request_auto_close(cls, val): :param FileRequestAutoCloseType val: :rtype: EventType """ - return cls("file_request_auto_close", val) + return cls('file_request_auto_close', val) @classmethod def file_request_change(cls, val): @@ -34890,7 +33865,7 @@ def file_request_change(cls, val): :param FileRequestChangeType val: :rtype: EventType """ - return cls("file_request_change", val) + return cls('file_request_change', val) @classmethod def file_request_close(cls, val): @@ -34901,7 +33876,7 @@ def file_request_close(cls, val): :param FileRequestCloseType val: :rtype: EventType """ - return cls("file_request_close", val) + return cls('file_request_close', val) @classmethod def file_request_create(cls, val): @@ -34912,7 +33887,7 @@ def file_request_create(cls, val): :param FileRequestCreateType val: :rtype: EventType """ - return cls("file_request_create", val) + return cls('file_request_create', val) @classmethod def file_request_delete(cls, val): @@ -34923,7 +33898,7 @@ def file_request_delete(cls, val): :param FileRequestDeleteType val: :rtype: EventType """ - return cls("file_request_delete", val) + return cls('file_request_delete', val) @classmethod def file_request_receive_file(cls, val): @@ -34934,7 +33909,7 @@ def file_request_receive_file(cls, val): :param FileRequestReceiveFileType val: :rtype: EventType """ - return cls("file_request_receive_file", val) + return cls('file_request_receive_file', val) @classmethod def group_add_external_id(cls, val): @@ -34945,7 +33920,7 @@ def group_add_external_id(cls, val): :param GroupAddExternalIdType val: :rtype: EventType """ - return cls("group_add_external_id", val) + return cls('group_add_external_id', val) @classmethod def group_add_member(cls, val): @@ -34956,7 +33931,7 @@ def group_add_member(cls, val): :param GroupAddMemberType val: :rtype: EventType """ - return cls("group_add_member", val) + return cls('group_add_member', val) @classmethod def group_change_external_id(cls, val): @@ -34967,7 +33942,7 @@ def group_change_external_id(cls, val): :param GroupChangeExternalIdType val: :rtype: EventType """ - return cls("group_change_external_id", val) + return cls('group_change_external_id', val) @classmethod def group_change_management_type(cls, val): @@ -34978,7 +33953,7 @@ def group_change_management_type(cls, val): :param GroupChangeManagementTypeType val: :rtype: EventType """ - return cls("group_change_management_type", val) + return cls('group_change_management_type', val) @classmethod def group_change_member_role(cls, val): @@ -34989,7 +33964,7 @@ def group_change_member_role(cls, val): :param GroupChangeMemberRoleType val: :rtype: EventType """ - return cls("group_change_member_role", val) + return cls('group_change_member_role', val) @classmethod def group_create(cls, val): @@ -35000,7 +33975,7 @@ def group_create(cls, val): :param GroupCreateType val: :rtype: EventType """ - return cls("group_create", val) + return cls('group_create', val) @classmethod def group_delete(cls, val): @@ -35011,7 +33986,7 @@ def group_delete(cls, val): :param GroupDeleteType val: :rtype: EventType """ - return cls("group_delete", val) + return cls('group_delete', val) @classmethod def group_description_updated(cls, val): @@ -35022,7 +33997,7 @@ def group_description_updated(cls, val): :param GroupDescriptionUpdatedType val: :rtype: EventType """ - return cls("group_description_updated", val) + return cls('group_description_updated', val) @classmethod def group_external_sharing_setting_override_changed(cls, val): @@ -35034,7 +34009,7 @@ def group_external_sharing_setting_override_changed(cls, val): :param GroupExternalSharingSettingOverrideChangedType val: :rtype: EventType """ - return cls("group_external_sharing_setting_override_changed", val) + return cls('group_external_sharing_setting_override_changed', val) @classmethod def group_join_policy_updated(cls, val): @@ -35045,7 +34020,7 @@ def group_join_policy_updated(cls, val): :param GroupJoinPolicyUpdatedType val: :rtype: EventType """ - return cls("group_join_policy_updated", val) + return cls('group_join_policy_updated', val) @classmethod def group_moved(cls, val): @@ -35056,7 +34031,7 @@ def group_moved(cls, val): :param GroupMovedType val: :rtype: EventType """ - return cls("group_moved", val) + return cls('group_moved', val) @classmethod def group_remove_external_id(cls, val): @@ -35067,7 +34042,7 @@ def group_remove_external_id(cls, val): :param GroupRemoveExternalIdType val: :rtype: EventType """ - return cls("group_remove_external_id", val) + return cls('group_remove_external_id', val) @classmethod def group_remove_member(cls, val): @@ -35078,7 +34053,7 @@ def group_remove_member(cls, val): :param GroupRemoveMemberType val: :rtype: EventType """ - return cls("group_remove_member", val) + return cls('group_remove_member', val) @classmethod def group_rename(cls, val): @@ -35089,7 +34064,7 @@ def group_rename(cls, val): :param GroupRenameType val: :rtype: EventType """ - return cls("group_rename", val) + return cls('group_rename', val) @classmethod def account_lock_or_unlocked(cls, val): @@ -35100,7 +34075,7 @@ def account_lock_or_unlocked(cls, val): :param AccountLockOrUnlockedType val: :rtype: EventType """ - return cls("account_lock_or_unlocked", val) + return cls('account_lock_or_unlocked', val) @classmethod def emm_error(cls, val): @@ -35111,7 +34086,7 @@ def emm_error(cls, val): :param EmmErrorType val: :rtype: EventType """ - return cls("emm_error", val) + return cls('emm_error', val) @classmethod def guest_admin_signed_in_via_trusted_teams(cls, val): @@ -35122,7 +34097,7 @@ def guest_admin_signed_in_via_trusted_teams(cls, val): :param GuestAdminSignedInViaTrustedTeamsType val: :rtype: EventType """ - return cls("guest_admin_signed_in_via_trusted_teams", val) + return cls('guest_admin_signed_in_via_trusted_teams', val) @classmethod def guest_admin_signed_out_via_trusted_teams(cls, val): @@ -35133,7 +34108,7 @@ def guest_admin_signed_out_via_trusted_teams(cls, val): :param GuestAdminSignedOutViaTrustedTeamsType val: :rtype: EventType """ - return cls("guest_admin_signed_out_via_trusted_teams", val) + return cls('guest_admin_signed_out_via_trusted_teams', val) @classmethod def login_fail(cls, val): @@ -35144,7 +34119,7 @@ def login_fail(cls, val): :param LoginFailType val: :rtype: EventType """ - return cls("login_fail", val) + return cls('login_fail', val) @classmethod def login_success(cls, val): @@ -35155,7 +34130,7 @@ def login_success(cls, val): :param LoginSuccessType val: :rtype: EventType """ - return cls("login_success", val) + return cls('login_success', val) @classmethod def logout(cls, val): @@ -35166,7 +34141,7 @@ def logout(cls, val): :param LogoutType val: :rtype: EventType """ - return cls("logout", val) + return cls('logout', val) @classmethod def reseller_support_session_end(cls, val): @@ -35177,7 +34152,7 @@ def reseller_support_session_end(cls, val): :param ResellerSupportSessionEndType val: :rtype: EventType """ - return cls("reseller_support_session_end", val) + return cls('reseller_support_session_end', val) @classmethod def reseller_support_session_start(cls, val): @@ -35188,7 +34163,7 @@ def reseller_support_session_start(cls, val): :param ResellerSupportSessionStartType val: :rtype: EventType """ - return cls("reseller_support_session_start", val) + return cls('reseller_support_session_start', val) @classmethod def sign_in_as_session_end(cls, val): @@ -35199,7 +34174,7 @@ def sign_in_as_session_end(cls, val): :param SignInAsSessionEndType val: :rtype: EventType """ - return cls("sign_in_as_session_end", val) + return cls('sign_in_as_session_end', val) @classmethod def sign_in_as_session_start(cls, val): @@ -35210,7 +34185,7 @@ def sign_in_as_session_start(cls, val): :param SignInAsSessionStartType val: :rtype: EventType """ - return cls("sign_in_as_session_start", val) + return cls('sign_in_as_session_start', val) @classmethod def sso_error(cls, val): @@ -35221,7 +34196,7 @@ def sso_error(cls, val): :param SsoErrorType val: :rtype: EventType """ - return cls("sso_error", val) + return cls('sso_error', val) @classmethod def addon_assigned(cls, val): @@ -35232,7 +34207,7 @@ def addon_assigned(cls, val): :param AddonAssignedType val: :rtype: EventType """ - return cls("addon_assigned", val) + return cls('addon_assigned', val) @classmethod def addon_removed(cls, val): @@ -35243,7 +34218,7 @@ def addon_removed(cls, val): :param AddonRemovedType val: :rtype: EventType """ - return cls("addon_removed", val) + return cls('addon_removed', val) @classmethod def backup_admin_invitation_sent(cls, val): @@ -35254,7 +34229,7 @@ def backup_admin_invitation_sent(cls, val): :param BackupAdminInvitationSentType val: :rtype: EventType """ - return cls("backup_admin_invitation_sent", val) + return cls('backup_admin_invitation_sent', val) @classmethod def backup_invitation_opened(cls, val): @@ -35265,7 +34240,7 @@ def backup_invitation_opened(cls, val): :param BackupInvitationOpenedType val: :rtype: EventType """ - return cls("backup_invitation_opened", val) + return cls('backup_invitation_opened', val) @classmethod def create_team_invite_link(cls, val): @@ -35276,7 +34251,7 @@ def create_team_invite_link(cls, val): :param CreateTeamInviteLinkType val: :rtype: EventType """ - return cls("create_team_invite_link", val) + return cls('create_team_invite_link', val) @classmethod def delete_team_invite_link(cls, val): @@ -35287,7 +34262,7 @@ def delete_team_invite_link(cls, val): :param DeleteTeamInviteLinkType val: :rtype: EventType """ - return cls("delete_team_invite_link", val) + return cls('delete_team_invite_link', val) @classmethod def member_add_external_id(cls, val): @@ -35298,7 +34273,7 @@ def member_add_external_id(cls, val): :param MemberAddExternalIdType val: :rtype: EventType """ - return cls("member_add_external_id", val) + return cls('member_add_external_id', val) @classmethod def member_add_name(cls, val): @@ -35309,7 +34284,7 @@ def member_add_name(cls, val): :param MemberAddNameType val: :rtype: EventType """ - return cls("member_add_name", val) + return cls('member_add_name', val) @classmethod def member_change_admin_role(cls, val): @@ -35320,7 +34295,7 @@ def member_change_admin_role(cls, val): :param MemberChangeAdminRoleType val: :rtype: EventType """ - return cls("member_change_admin_role", val) + return cls('member_change_admin_role', val) @classmethod def member_change_email(cls, val): @@ -35331,7 +34306,7 @@ def member_change_email(cls, val): :param MemberChangeEmailType val: :rtype: EventType """ - return cls("member_change_email", val) + return cls('member_change_email', val) @classmethod def member_change_external_id(cls, val): @@ -35342,7 +34317,7 @@ def member_change_external_id(cls, val): :param MemberChangeExternalIdType val: :rtype: EventType """ - return cls("member_change_external_id", val) + return cls('member_change_external_id', val) @classmethod def member_change_membership_type(cls, val): @@ -35353,7 +34328,7 @@ def member_change_membership_type(cls, val): :param MemberChangeMembershipTypeType val: :rtype: EventType """ - return cls("member_change_membership_type", val) + return cls('member_change_membership_type', val) @classmethod def member_change_name(cls, val): @@ -35364,7 +34339,7 @@ def member_change_name(cls, val): :param MemberChangeNameType val: :rtype: EventType """ - return cls("member_change_name", val) + return cls('member_change_name', val) @classmethod def member_change_reseller_role(cls, val): @@ -35375,7 +34350,7 @@ def member_change_reseller_role(cls, val): :param MemberChangeResellerRoleType val: :rtype: EventType """ - return cls("member_change_reseller_role", val) + return cls('member_change_reseller_role', val) @classmethod def member_change_status(cls, val): @@ -35386,7 +34361,7 @@ def member_change_status(cls, val): :param MemberChangeStatusType val: :rtype: EventType """ - return cls("member_change_status", val) + return cls('member_change_status', val) @classmethod def member_delete_manual_contacts(cls, val): @@ -35397,7 +34372,7 @@ def member_delete_manual_contacts(cls, val): :param MemberDeleteManualContactsType val: :rtype: EventType """ - return cls("member_delete_manual_contacts", val) + return cls('member_delete_manual_contacts', val) @classmethod def member_delete_profile_photo(cls, val): @@ -35408,7 +34383,7 @@ def member_delete_profile_photo(cls, val): :param MemberDeleteProfilePhotoType val: :rtype: EventType """ - return cls("member_delete_profile_photo", val) + return cls('member_delete_profile_photo', val) @classmethod def member_permanently_delete_account_contents(cls, val): @@ -35419,7 +34394,7 @@ def member_permanently_delete_account_contents(cls, val): :param MemberPermanentlyDeleteAccountContentsType val: :rtype: EventType """ - return cls("member_permanently_delete_account_contents", val) + return cls('member_permanently_delete_account_contents', val) @classmethod def member_remove_external_id(cls, val): @@ -35430,7 +34405,7 @@ def member_remove_external_id(cls, val): :param MemberRemoveExternalIdType val: :rtype: EventType """ - return cls("member_remove_external_id", val) + return cls('member_remove_external_id', val) @classmethod def member_set_profile_photo(cls, val): @@ -35441,7 +34416,7 @@ def member_set_profile_photo(cls, val): :param MemberSetProfilePhotoType val: :rtype: EventType """ - return cls("member_set_profile_photo", val) + return cls('member_set_profile_photo', val) @classmethod def member_space_limits_add_custom_quota(cls, val): @@ -35452,7 +34427,7 @@ def member_space_limits_add_custom_quota(cls, val): :param MemberSpaceLimitsAddCustomQuotaType val: :rtype: EventType """ - return cls("member_space_limits_add_custom_quota", val) + return cls('member_space_limits_add_custom_quota', val) @classmethod def member_space_limits_change_custom_quota(cls, val): @@ -35463,7 +34438,7 @@ def member_space_limits_change_custom_quota(cls, val): :param MemberSpaceLimitsChangeCustomQuotaType val: :rtype: EventType """ - return cls("member_space_limits_change_custom_quota", val) + return cls('member_space_limits_change_custom_quota', val) @classmethod def member_space_limits_change_status(cls, val): @@ -35474,7 +34449,7 @@ def member_space_limits_change_status(cls, val): :param MemberSpaceLimitsChangeStatusType val: :rtype: EventType """ - return cls("member_space_limits_change_status", val) + return cls('member_space_limits_change_status', val) @classmethod def member_space_limits_remove_custom_quota(cls, val): @@ -35485,7 +34460,7 @@ def member_space_limits_remove_custom_quota(cls, val): :param MemberSpaceLimitsRemoveCustomQuotaType val: :rtype: EventType """ - return cls("member_space_limits_remove_custom_quota", val) + return cls('member_space_limits_remove_custom_quota', val) @classmethod def member_suggest(cls, val): @@ -35496,7 +34471,7 @@ def member_suggest(cls, val): :param MemberSuggestType val: :rtype: EventType """ - return cls("member_suggest", val) + return cls('member_suggest', val) @classmethod def member_transfer_account_contents(cls, val): @@ -35507,7 +34482,7 @@ def member_transfer_account_contents(cls, val): :param MemberTransferAccountContentsType val: :rtype: EventType """ - return cls("member_transfer_account_contents", val) + return cls('member_transfer_account_contents', val) @classmethod def pending_secondary_email_added(cls, val): @@ -35518,7 +34493,7 @@ def pending_secondary_email_added(cls, val): :param PendingSecondaryEmailAddedType val: :rtype: EventType """ - return cls("pending_secondary_email_added", val) + return cls('pending_secondary_email_added', val) @classmethod def product_assigned_to_member(cls, val): @@ -35529,7 +34504,7 @@ def product_assigned_to_member(cls, val): :param ProductAssignedToMemberType val: :rtype: EventType """ - return cls("product_assigned_to_member", val) + return cls('product_assigned_to_member', val) @classmethod def product_removed_from_member(cls, val): @@ -35540,7 +34515,7 @@ def product_removed_from_member(cls, val): :param ProductRemovedFromMemberType val: :rtype: EventType """ - return cls("product_removed_from_member", val) + return cls('product_removed_from_member', val) @classmethod def secondary_email_deleted(cls, val): @@ -35551,7 +34526,7 @@ def secondary_email_deleted(cls, val): :param SecondaryEmailDeletedType val: :rtype: EventType """ - return cls("secondary_email_deleted", val) + return cls('secondary_email_deleted', val) @classmethod def secondary_email_verified(cls, val): @@ -35562,7 +34537,7 @@ def secondary_email_verified(cls, val): :param SecondaryEmailVerifiedType val: :rtype: EventType """ - return cls("secondary_email_verified", val) + return cls('secondary_email_verified', val) @classmethod def secondary_mails_policy_changed(cls, val): @@ -35573,7 +34548,7 @@ def secondary_mails_policy_changed(cls, val): :param SecondaryMailsPolicyChangedType val: :rtype: EventType """ - return cls("secondary_mails_policy_changed", val) + return cls('secondary_mails_policy_changed', val) @classmethod def binder_add_page(cls, val): @@ -35584,7 +34559,7 @@ def binder_add_page(cls, val): :param BinderAddPageType val: :rtype: EventType """ - return cls("binder_add_page", val) + return cls('binder_add_page', val) @classmethod def binder_add_section(cls, val): @@ -35595,7 +34570,7 @@ def binder_add_section(cls, val): :param BinderAddSectionType val: :rtype: EventType """ - return cls("binder_add_section", val) + return cls('binder_add_section', val) @classmethod def binder_remove_page(cls, val): @@ -35606,7 +34581,7 @@ def binder_remove_page(cls, val): :param BinderRemovePageType val: :rtype: EventType """ - return cls("binder_remove_page", val) + return cls('binder_remove_page', val) @classmethod def binder_remove_section(cls, val): @@ -35617,7 +34592,7 @@ def binder_remove_section(cls, val): :param BinderRemoveSectionType val: :rtype: EventType """ - return cls("binder_remove_section", val) + return cls('binder_remove_section', val) @classmethod def binder_rename_page(cls, val): @@ -35628,7 +34603,7 @@ def binder_rename_page(cls, val): :param BinderRenamePageType val: :rtype: EventType """ - return cls("binder_rename_page", val) + return cls('binder_rename_page', val) @classmethod def binder_rename_section(cls, val): @@ -35639,7 +34614,7 @@ def binder_rename_section(cls, val): :param BinderRenameSectionType val: :rtype: EventType """ - return cls("binder_rename_section", val) + return cls('binder_rename_section', val) @classmethod def binder_reorder_page(cls, val): @@ -35650,7 +34625,7 @@ def binder_reorder_page(cls, val): :param BinderReorderPageType val: :rtype: EventType """ - return cls("binder_reorder_page", val) + return cls('binder_reorder_page', val) @classmethod def binder_reorder_section(cls, val): @@ -35661,7 +34636,7 @@ def binder_reorder_section(cls, val): :param BinderReorderSectionType val: :rtype: EventType """ - return cls("binder_reorder_section", val) + return cls('binder_reorder_section', val) @classmethod def paper_content_add_member(cls, val): @@ -35672,7 +34647,7 @@ def paper_content_add_member(cls, val): :param PaperContentAddMemberType val: :rtype: EventType """ - return cls("paper_content_add_member", val) + return cls('paper_content_add_member', val) @classmethod def paper_content_add_to_folder(cls, val): @@ -35683,7 +34658,7 @@ def paper_content_add_to_folder(cls, val): :param PaperContentAddToFolderType val: :rtype: EventType """ - return cls("paper_content_add_to_folder", val) + return cls('paper_content_add_to_folder', val) @classmethod def paper_content_archive(cls, val): @@ -35694,7 +34669,7 @@ def paper_content_archive(cls, val): :param PaperContentArchiveType val: :rtype: EventType """ - return cls("paper_content_archive", val) + return cls('paper_content_archive', val) @classmethod def paper_content_create(cls, val): @@ -35705,7 +34680,7 @@ def paper_content_create(cls, val): :param PaperContentCreateType val: :rtype: EventType """ - return cls("paper_content_create", val) + return cls('paper_content_create', val) @classmethod def paper_content_permanently_delete(cls, val): @@ -35716,7 +34691,7 @@ def paper_content_permanently_delete(cls, val): :param PaperContentPermanentlyDeleteType val: :rtype: EventType """ - return cls("paper_content_permanently_delete", val) + return cls('paper_content_permanently_delete', val) @classmethod def paper_content_remove_from_folder(cls, val): @@ -35727,7 +34702,7 @@ def paper_content_remove_from_folder(cls, val): :param PaperContentRemoveFromFolderType val: :rtype: EventType """ - return cls("paper_content_remove_from_folder", val) + return cls('paper_content_remove_from_folder', val) @classmethod def paper_content_remove_member(cls, val): @@ -35738,7 +34713,7 @@ def paper_content_remove_member(cls, val): :param PaperContentRemoveMemberType val: :rtype: EventType """ - return cls("paper_content_remove_member", val) + return cls('paper_content_remove_member', val) @classmethod def paper_content_rename(cls, val): @@ -35749,7 +34724,7 @@ def paper_content_rename(cls, val): :param PaperContentRenameType val: :rtype: EventType """ - return cls("paper_content_rename", val) + return cls('paper_content_rename', val) @classmethod def paper_content_restore(cls, val): @@ -35760,7 +34735,7 @@ def paper_content_restore(cls, val): :param PaperContentRestoreType val: :rtype: EventType """ - return cls("paper_content_restore", val) + return cls('paper_content_restore', val) @classmethod def paper_doc_add_comment(cls, val): @@ -35771,7 +34746,7 @@ def paper_doc_add_comment(cls, val): :param PaperDocAddCommentType val: :rtype: EventType """ - return cls("paper_doc_add_comment", val) + return cls('paper_doc_add_comment', val) @classmethod def paper_doc_change_member_role(cls, val): @@ -35782,7 +34757,7 @@ def paper_doc_change_member_role(cls, val): :param PaperDocChangeMemberRoleType val: :rtype: EventType """ - return cls("paper_doc_change_member_role", val) + return cls('paper_doc_change_member_role', val) @classmethod def paper_doc_change_sharing_policy(cls, val): @@ -35793,7 +34768,7 @@ def paper_doc_change_sharing_policy(cls, val): :param PaperDocChangeSharingPolicyType val: :rtype: EventType """ - return cls("paper_doc_change_sharing_policy", val) + return cls('paper_doc_change_sharing_policy', val) @classmethod def paper_doc_change_subscription(cls, val): @@ -35804,7 +34779,7 @@ def paper_doc_change_subscription(cls, val): :param PaperDocChangeSubscriptionType val: :rtype: EventType """ - return cls("paper_doc_change_subscription", val) + return cls('paper_doc_change_subscription', val) @classmethod def paper_doc_deleted(cls, val): @@ -35815,7 +34790,7 @@ def paper_doc_deleted(cls, val): :param PaperDocDeletedType val: :rtype: EventType """ - return cls("paper_doc_deleted", val) + return cls('paper_doc_deleted', val) @classmethod def paper_doc_delete_comment(cls, val): @@ -35826,7 +34801,7 @@ def paper_doc_delete_comment(cls, val): :param PaperDocDeleteCommentType val: :rtype: EventType """ - return cls("paper_doc_delete_comment", val) + return cls('paper_doc_delete_comment', val) @classmethod def paper_doc_download(cls, val): @@ -35837,7 +34812,7 @@ def paper_doc_download(cls, val): :param PaperDocDownloadType val: :rtype: EventType """ - return cls("paper_doc_download", val) + return cls('paper_doc_download', val) @classmethod def paper_doc_edit(cls, val): @@ -35848,7 +34823,7 @@ def paper_doc_edit(cls, val): :param PaperDocEditType val: :rtype: EventType """ - return cls("paper_doc_edit", val) + return cls('paper_doc_edit', val) @classmethod def paper_doc_edit_comment(cls, val): @@ -35859,7 +34834,7 @@ def paper_doc_edit_comment(cls, val): :param PaperDocEditCommentType val: :rtype: EventType """ - return cls("paper_doc_edit_comment", val) + return cls('paper_doc_edit_comment', val) @classmethod def paper_doc_followed(cls, val): @@ -35870,7 +34845,7 @@ def paper_doc_followed(cls, val): :param PaperDocFollowedType val: :rtype: EventType """ - return cls("paper_doc_followed", val) + return cls('paper_doc_followed', val) @classmethod def paper_doc_mention(cls, val): @@ -35881,7 +34856,7 @@ def paper_doc_mention(cls, val): :param PaperDocMentionType val: :rtype: EventType """ - return cls("paper_doc_mention", val) + return cls('paper_doc_mention', val) @classmethod def paper_doc_ownership_changed(cls, val): @@ -35892,7 +34867,7 @@ def paper_doc_ownership_changed(cls, val): :param PaperDocOwnershipChangedType val: :rtype: EventType """ - return cls("paper_doc_ownership_changed", val) + return cls('paper_doc_ownership_changed', val) @classmethod def paper_doc_request_access(cls, val): @@ -35903,7 +34878,7 @@ def paper_doc_request_access(cls, val): :param PaperDocRequestAccessType val: :rtype: EventType """ - return cls("paper_doc_request_access", val) + return cls('paper_doc_request_access', val) @classmethod def paper_doc_resolve_comment(cls, val): @@ -35914,7 +34889,7 @@ def paper_doc_resolve_comment(cls, val): :param PaperDocResolveCommentType val: :rtype: EventType """ - return cls("paper_doc_resolve_comment", val) + return cls('paper_doc_resolve_comment', val) @classmethod def paper_doc_revert(cls, val): @@ -35925,7 +34900,7 @@ def paper_doc_revert(cls, val): :param PaperDocRevertType val: :rtype: EventType """ - return cls("paper_doc_revert", val) + return cls('paper_doc_revert', val) @classmethod def paper_doc_slack_share(cls, val): @@ -35936,7 +34911,7 @@ def paper_doc_slack_share(cls, val): :param PaperDocSlackShareType val: :rtype: EventType """ - return cls("paper_doc_slack_share", val) + return cls('paper_doc_slack_share', val) @classmethod def paper_doc_team_invite(cls, val): @@ -35947,7 +34922,7 @@ def paper_doc_team_invite(cls, val): :param PaperDocTeamInviteType val: :rtype: EventType """ - return cls("paper_doc_team_invite", val) + return cls('paper_doc_team_invite', val) @classmethod def paper_doc_trashed(cls, val): @@ -35958,7 +34933,7 @@ def paper_doc_trashed(cls, val): :param PaperDocTrashedType val: :rtype: EventType """ - return cls("paper_doc_trashed", val) + return cls('paper_doc_trashed', val) @classmethod def paper_doc_unresolve_comment(cls, val): @@ -35969,7 +34944,7 @@ def paper_doc_unresolve_comment(cls, val): :param PaperDocUnresolveCommentType val: :rtype: EventType """ - return cls("paper_doc_unresolve_comment", val) + return cls('paper_doc_unresolve_comment', val) @classmethod def paper_doc_untrashed(cls, val): @@ -35980,7 +34955,7 @@ def paper_doc_untrashed(cls, val): :param PaperDocUntrashedType val: :rtype: EventType """ - return cls("paper_doc_untrashed", val) + return cls('paper_doc_untrashed', val) @classmethod def paper_doc_view(cls, val): @@ -35991,7 +34966,7 @@ def paper_doc_view(cls, val): :param PaperDocViewType val: :rtype: EventType """ - return cls("paper_doc_view", val) + return cls('paper_doc_view', val) @classmethod def paper_external_view_allow(cls, val): @@ -36002,7 +34977,7 @@ def paper_external_view_allow(cls, val): :param PaperExternalViewAllowType val: :rtype: EventType """ - return cls("paper_external_view_allow", val) + return cls('paper_external_view_allow', val) @classmethod def paper_external_view_default_team(cls, val): @@ -36013,7 +34988,7 @@ def paper_external_view_default_team(cls, val): :param PaperExternalViewDefaultTeamType val: :rtype: EventType """ - return cls("paper_external_view_default_team", val) + return cls('paper_external_view_default_team', val) @classmethod def paper_external_view_forbid(cls, val): @@ -36024,7 +34999,7 @@ def paper_external_view_forbid(cls, val): :param PaperExternalViewForbidType val: :rtype: EventType """ - return cls("paper_external_view_forbid", val) + return cls('paper_external_view_forbid', val) @classmethod def paper_folder_change_subscription(cls, val): @@ -36035,7 +35010,7 @@ def paper_folder_change_subscription(cls, val): :param PaperFolderChangeSubscriptionType val: :rtype: EventType """ - return cls("paper_folder_change_subscription", val) + return cls('paper_folder_change_subscription', val) @classmethod def paper_folder_deleted(cls, val): @@ -36046,7 +35021,7 @@ def paper_folder_deleted(cls, val): :param PaperFolderDeletedType val: :rtype: EventType """ - return cls("paper_folder_deleted", val) + return cls('paper_folder_deleted', val) @classmethod def paper_folder_followed(cls, val): @@ -36057,7 +35032,7 @@ def paper_folder_followed(cls, val): :param PaperFolderFollowedType val: :rtype: EventType """ - return cls("paper_folder_followed", val) + return cls('paper_folder_followed', val) @classmethod def paper_folder_team_invite(cls, val): @@ -36068,7 +35043,7 @@ def paper_folder_team_invite(cls, val): :param PaperFolderTeamInviteType val: :rtype: EventType """ - return cls("paper_folder_team_invite", val) + return cls('paper_folder_team_invite', val) @classmethod def paper_published_link_change_permission(cls, val): @@ -36079,7 +35054,7 @@ def paper_published_link_change_permission(cls, val): :param PaperPublishedLinkChangePermissionType val: :rtype: EventType """ - return cls("paper_published_link_change_permission", val) + return cls('paper_published_link_change_permission', val) @classmethod def paper_published_link_create(cls, val): @@ -36090,7 +35065,7 @@ def paper_published_link_create(cls, val): :param PaperPublishedLinkCreateType val: :rtype: EventType """ - return cls("paper_published_link_create", val) + return cls('paper_published_link_create', val) @classmethod def paper_published_link_disabled(cls, val): @@ -36101,7 +35076,7 @@ def paper_published_link_disabled(cls, val): :param PaperPublishedLinkDisabledType val: :rtype: EventType """ - return cls("paper_published_link_disabled", val) + return cls('paper_published_link_disabled', val) @classmethod def paper_published_link_view(cls, val): @@ -36112,7 +35087,7 @@ def paper_published_link_view(cls, val): :param PaperPublishedLinkViewType val: :rtype: EventType """ - return cls("paper_published_link_view", val) + return cls('paper_published_link_view', val) @classmethod def password_change(cls, val): @@ -36123,7 +35098,7 @@ def password_change(cls, val): :param PasswordChangeType val: :rtype: EventType """ - return cls("password_change", val) + return cls('password_change', val) @classmethod def password_reset(cls, val): @@ -36134,7 +35109,7 @@ def password_reset(cls, val): :param PasswordResetType val: :rtype: EventType """ - return cls("password_reset", val) + return cls('password_reset', val) @classmethod def password_reset_all(cls, val): @@ -36145,7 +35120,7 @@ def password_reset_all(cls, val): :param PasswordResetAllType val: :rtype: EventType """ - return cls("password_reset_all", val) + return cls('password_reset_all', val) @classmethod def protect_internal_domains_changed(cls, val): @@ -36156,7 +35131,7 @@ def protect_internal_domains_changed(cls, val): :param ProtectInternalDomainsChangedType val: :rtype: EventType """ - return cls("protect_internal_domains_changed", val) + return cls('protect_internal_domains_changed', val) @classmethod def classification_create_report(cls, val): @@ -36167,7 +35142,7 @@ def classification_create_report(cls, val): :param ClassificationCreateReportType val: :rtype: EventType """ - return cls("classification_create_report", val) + return cls('classification_create_report', val) @classmethod def classification_create_report_fail(cls, val): @@ -36178,7 +35153,7 @@ def classification_create_report_fail(cls, val): :param ClassificationCreateReportFailType val: :rtype: EventType """ - return cls("classification_create_report_fail", val) + return cls('classification_create_report_fail', val) @classmethod def emm_create_exceptions_report(cls, val): @@ -36189,7 +35164,7 @@ def emm_create_exceptions_report(cls, val): :param EmmCreateExceptionsReportType val: :rtype: EventType """ - return cls("emm_create_exceptions_report", val) + return cls('emm_create_exceptions_report', val) @classmethod def emm_create_usage_report(cls, val): @@ -36200,7 +35175,7 @@ def emm_create_usage_report(cls, val): :param EmmCreateUsageReportType val: :rtype: EventType """ - return cls("emm_create_usage_report", val) + return cls('emm_create_usage_report', val) @classmethod def export_members_report(cls, val): @@ -36211,7 +35186,7 @@ def export_members_report(cls, val): :param ExportMembersReportType val: :rtype: EventType """ - return cls("export_members_report", val) + return cls('export_members_report', val) @classmethod def export_members_report_fail(cls, val): @@ -36222,7 +35197,7 @@ def export_members_report_fail(cls, val): :param ExportMembersReportFailType val: :rtype: EventType """ - return cls("export_members_report_fail", val) + return cls('export_members_report_fail', val) @classmethod def external_sharing_create_report(cls, val): @@ -36233,7 +35208,7 @@ def external_sharing_create_report(cls, val): :param ExternalSharingCreateReportType val: :rtype: EventType """ - return cls("external_sharing_create_report", val) + return cls('external_sharing_create_report', val) @classmethod def external_sharing_report_failed(cls, val): @@ -36244,7 +35219,7 @@ def external_sharing_report_failed(cls, val): :param ExternalSharingReportFailedType val: :rtype: EventType """ - return cls("external_sharing_report_failed", val) + return cls('external_sharing_report_failed', val) @classmethod def member_access_details_create_report(cls, val): @@ -36255,7 +35230,7 @@ def member_access_details_create_report(cls, val): :param MemberAccessDetailsCreateReportType val: :rtype: EventType """ - return cls("member_access_details_create_report", val) + return cls('member_access_details_create_report', val) @classmethod def member_access_details_create_report_failed(cls, val): @@ -36266,7 +35241,7 @@ def member_access_details_create_report_failed(cls, val): :param MemberAccessDetailsCreateReportFailedType val: :rtype: EventType """ - return cls("member_access_details_create_report_failed", val) + return cls('member_access_details_create_report_failed', val) @classmethod def no_expiration_link_gen_create_report(cls, val): @@ -36277,7 +35252,7 @@ def no_expiration_link_gen_create_report(cls, val): :param NoExpirationLinkGenCreateReportType val: :rtype: EventType """ - return cls("no_expiration_link_gen_create_report", val) + return cls('no_expiration_link_gen_create_report', val) @classmethod def no_expiration_link_gen_report_failed(cls, val): @@ -36288,7 +35263,7 @@ def no_expiration_link_gen_report_failed(cls, val): :param NoExpirationLinkGenReportFailedType val: :rtype: EventType """ - return cls("no_expiration_link_gen_report_failed", val) + return cls('no_expiration_link_gen_report_failed', val) @classmethod def no_password_link_gen_create_report(cls, val): @@ -36299,7 +35274,7 @@ def no_password_link_gen_create_report(cls, val): :param NoPasswordLinkGenCreateReportType val: :rtype: EventType """ - return cls("no_password_link_gen_create_report", val) + return cls('no_password_link_gen_create_report', val) @classmethod def no_password_link_gen_report_failed(cls, val): @@ -36310,7 +35285,7 @@ def no_password_link_gen_report_failed(cls, val): :param NoPasswordLinkGenReportFailedType val: :rtype: EventType """ - return cls("no_password_link_gen_report_failed", val) + return cls('no_password_link_gen_report_failed', val) @classmethod def no_password_link_view_create_report(cls, val): @@ -36321,7 +35296,7 @@ def no_password_link_view_create_report(cls, val): :param NoPasswordLinkViewCreateReportType val: :rtype: EventType """ - return cls("no_password_link_view_create_report", val) + return cls('no_password_link_view_create_report', val) @classmethod def no_password_link_view_report_failed(cls, val): @@ -36332,7 +35307,7 @@ def no_password_link_view_report_failed(cls, val): :param NoPasswordLinkViewReportFailedType val: :rtype: EventType """ - return cls("no_password_link_view_report_failed", val) + return cls('no_password_link_view_report_failed', val) @classmethod def outdated_link_view_create_report(cls, val): @@ -36343,7 +35318,7 @@ def outdated_link_view_create_report(cls, val): :param OutdatedLinkViewCreateReportType val: :rtype: EventType """ - return cls("outdated_link_view_create_report", val) + return cls('outdated_link_view_create_report', val) @classmethod def outdated_link_view_report_failed(cls, val): @@ -36354,7 +35329,7 @@ def outdated_link_view_report_failed(cls, val): :param OutdatedLinkViewReportFailedType val: :rtype: EventType """ - return cls("outdated_link_view_report_failed", val) + return cls('outdated_link_view_report_failed', val) @classmethod def paper_admin_export_start(cls, val): @@ -36365,7 +35340,7 @@ def paper_admin_export_start(cls, val): :param PaperAdminExportStartType val: :rtype: EventType """ - return cls("paper_admin_export_start", val) + return cls('paper_admin_export_start', val) @classmethod def ransomware_alert_create_report(cls, val): @@ -36376,7 +35351,7 @@ def ransomware_alert_create_report(cls, val): :param RansomwareAlertCreateReportType val: :rtype: EventType """ - return cls("ransomware_alert_create_report", val) + return cls('ransomware_alert_create_report', val) @classmethod def ransomware_alert_create_report_failed(cls, val): @@ -36387,7 +35362,7 @@ def ransomware_alert_create_report_failed(cls, val): :param RansomwareAlertCreateReportFailedType val: :rtype: EventType """ - return cls("ransomware_alert_create_report_failed", val) + return cls('ransomware_alert_create_report_failed', val) @classmethod def shared_folders_create_report(cls, val): @@ -36398,7 +35373,7 @@ def shared_folders_create_report(cls, val): :param SharedFoldersCreateReportType val: :rtype: EventType """ - return cls("shared_folders_create_report", val) + return cls('shared_folders_create_report', val) @classmethod def shared_folders_create_report_failed(cls, val): @@ -36409,7 +35384,7 @@ def shared_folders_create_report_failed(cls, val): :param SharedFoldersCreateReportFailedType val: :rtype: EventType """ - return cls("shared_folders_create_report_failed", val) + return cls('shared_folders_create_report_failed', val) @classmethod def smart_sync_create_admin_privilege_report(cls, val): @@ -36420,7 +35395,7 @@ def smart_sync_create_admin_privilege_report(cls, val): :param SmartSyncCreateAdminPrivilegeReportType val: :rtype: EventType """ - return cls("smart_sync_create_admin_privilege_report", val) + return cls('smart_sync_create_admin_privilege_report', val) @classmethod def team_activity_create_report(cls, val): @@ -36431,7 +35406,7 @@ def team_activity_create_report(cls, val): :param TeamActivityCreateReportType val: :rtype: EventType """ - return cls("team_activity_create_report", val) + return cls('team_activity_create_report', val) @classmethod def team_activity_create_report_fail(cls, val): @@ -36442,7 +35417,7 @@ def team_activity_create_report_fail(cls, val): :param TeamActivityCreateReportFailType val: :rtype: EventType """ - return cls("team_activity_create_report_fail", val) + return cls('team_activity_create_report_fail', val) @classmethod def team_folders_create_report(cls, val): @@ -36453,7 +35428,7 @@ def team_folders_create_report(cls, val): :param TeamFoldersCreateReportType val: :rtype: EventType """ - return cls("team_folders_create_report", val) + return cls('team_folders_create_report', val) @classmethod def team_folders_create_report_failed(cls, val): @@ -36464,7 +35439,7 @@ def team_folders_create_report_failed(cls, val): :param TeamFoldersCreateReportFailedType val: :rtype: EventType """ - return cls("team_folders_create_report_failed", val) + return cls('team_folders_create_report_failed', val) @classmethod def team_storage_create_report(cls, val): @@ -36475,7 +35450,7 @@ def team_storage_create_report(cls, val): :param TeamStorageCreateReportType val: :rtype: EventType """ - return cls("team_storage_create_report", val) + return cls('team_storage_create_report', val) @classmethod def team_storage_create_report_failed(cls, val): @@ -36486,7 +35461,7 @@ def team_storage_create_report_failed(cls, val): :param TeamStorageCreateReportFailedType val: :rtype: EventType """ - return cls("team_storage_create_report_failed", val) + return cls('team_storage_create_report_failed', val) @classmethod def collection_share(cls, val): @@ -36497,7 +35472,7 @@ def collection_share(cls, val): :param CollectionShareType val: :rtype: EventType """ - return cls("collection_share", val) + return cls('collection_share', val) @classmethod def file_transfers_file_add(cls, val): @@ -36508,7 +35483,7 @@ def file_transfers_file_add(cls, val): :param FileTransfersFileAddType val: :rtype: EventType """ - return cls("file_transfers_file_add", val) + return cls('file_transfers_file_add', val) @classmethod def file_transfers_transfer_delete(cls, val): @@ -36519,7 +35494,7 @@ def file_transfers_transfer_delete(cls, val): :param FileTransfersTransferDeleteType val: :rtype: EventType """ - return cls("file_transfers_transfer_delete", val) + return cls('file_transfers_transfer_delete', val) @classmethod def file_transfers_transfer_download(cls, val): @@ -36530,7 +35505,7 @@ def file_transfers_transfer_download(cls, val): :param FileTransfersTransferDownloadType val: :rtype: EventType """ - return cls("file_transfers_transfer_download", val) + return cls('file_transfers_transfer_download', val) @classmethod def file_transfers_transfer_send(cls, val): @@ -36541,7 +35516,7 @@ def file_transfers_transfer_send(cls, val): :param FileTransfersTransferSendType val: :rtype: EventType """ - return cls("file_transfers_transfer_send", val) + return cls('file_transfers_transfer_send', val) @classmethod def file_transfers_transfer_view(cls, val): @@ -36552,7 +35527,7 @@ def file_transfers_transfer_view(cls, val): :param FileTransfersTransferViewType val: :rtype: EventType """ - return cls("file_transfers_transfer_view", val) + return cls('file_transfers_transfer_view', val) @classmethod def media_hub_project_team_add(cls, val): @@ -36563,7 +35538,7 @@ def media_hub_project_team_add(cls, val): :param MediaHubProjectTeamAddType val: :rtype: EventType """ - return cls("media_hub_project_team_add", val) + return cls('media_hub_project_team_add', val) @classmethod def media_hub_project_team_delete(cls, val): @@ -36574,7 +35549,7 @@ def media_hub_project_team_delete(cls, val): :param MediaHubProjectTeamDeleteType val: :rtype: EventType """ - return cls("media_hub_project_team_delete", val) + return cls('media_hub_project_team_delete', val) @classmethod def media_hub_project_team_role_changed(cls, val): @@ -36585,7 +35560,7 @@ def media_hub_project_team_role_changed(cls, val): :param MediaHubProjectTeamRoleChangedType val: :rtype: EventType """ - return cls("media_hub_project_team_role_changed", val) + return cls('media_hub_project_team_role_changed', val) @classmethod def media_hub_shared_link_audience_changed(cls, val): @@ -36596,7 +35571,7 @@ def media_hub_shared_link_audience_changed(cls, val): :param MediaHubSharedLinkAudienceChangedType val: :rtype: EventType """ - return cls("media_hub_shared_link_audience_changed", val) + return cls('media_hub_shared_link_audience_changed', val) @classmethod def media_hub_shared_link_created(cls, val): @@ -36607,7 +35582,7 @@ def media_hub_shared_link_created(cls, val): :param MediaHubSharedLinkCreatedType val: :rtype: EventType """ - return cls("media_hub_shared_link_created", val) + return cls('media_hub_shared_link_created', val) @classmethod def media_hub_shared_link_download_setting_changed(cls, val): @@ -36619,7 +35594,7 @@ def media_hub_shared_link_download_setting_changed(cls, val): :param MediaHubSharedLinkDownloadSettingChangedType val: :rtype: EventType """ - return cls("media_hub_shared_link_download_setting_changed", val) + return cls('media_hub_shared_link_download_setting_changed', val) @classmethod def media_hub_shared_link_revoked(cls, val): @@ -36630,7 +35605,7 @@ def media_hub_shared_link_revoked(cls, val): :param MediaHubSharedLinkRevokedType val: :rtype: EventType """ - return cls("media_hub_shared_link_revoked", val) + return cls('media_hub_shared_link_revoked', val) @classmethod def note_acl_invite_only(cls, val): @@ -36641,7 +35616,7 @@ def note_acl_invite_only(cls, val): :param NoteAclInviteOnlyType val: :rtype: EventType """ - return cls("note_acl_invite_only", val) + return cls('note_acl_invite_only', val) @classmethod def note_acl_link(cls, val): @@ -36652,7 +35627,7 @@ def note_acl_link(cls, val): :param NoteAclLinkType val: :rtype: EventType """ - return cls("note_acl_link", val) + return cls('note_acl_link', val) @classmethod def note_acl_team_link(cls, val): @@ -36663,7 +35638,7 @@ def note_acl_team_link(cls, val): :param NoteAclTeamLinkType val: :rtype: EventType """ - return cls("note_acl_team_link", val) + return cls('note_acl_team_link', val) @classmethod def note_shared(cls, val): @@ -36674,7 +35649,7 @@ def note_shared(cls, val): :param NoteSharedType val: :rtype: EventType """ - return cls("note_shared", val) + return cls('note_shared', val) @classmethod def note_share_receive(cls, val): @@ -36685,7 +35660,7 @@ def note_share_receive(cls, val): :param NoteShareReceiveType val: :rtype: EventType """ - return cls("note_share_receive", val) + return cls('note_share_receive', val) @classmethod def open_note_shared(cls, val): @@ -36696,7 +35671,7 @@ def open_note_shared(cls, val): :param OpenNoteSharedType val: :rtype: EventType """ - return cls("open_note_shared", val) + return cls('open_note_shared', val) @classmethod def replay_file_shared_link_created(cls, val): @@ -36707,7 +35682,7 @@ def replay_file_shared_link_created(cls, val): :param ReplayFileSharedLinkCreatedType val: :rtype: EventType """ - return cls("replay_file_shared_link_created", val) + return cls('replay_file_shared_link_created', val) @classmethod def replay_file_shared_link_modified(cls, val): @@ -36718,7 +35693,7 @@ def replay_file_shared_link_modified(cls, val): :param ReplayFileSharedLinkModifiedType val: :rtype: EventType """ - return cls("replay_file_shared_link_modified", val) + return cls('replay_file_shared_link_modified', val) @classmethod def replay_project_team_add(cls, val): @@ -36729,7 +35704,7 @@ def replay_project_team_add(cls, val): :param ReplayProjectTeamAddType val: :rtype: EventType """ - return cls("replay_project_team_add", val) + return cls('replay_project_team_add', val) @classmethod def replay_project_team_delete(cls, val): @@ -36740,7 +35715,7 @@ def replay_project_team_delete(cls, val): :param ReplayProjectTeamDeleteType val: :rtype: EventType """ - return cls("replay_project_team_delete", val) + return cls('replay_project_team_delete', val) @classmethod def send_and_track_file_added(cls, val): @@ -36751,7 +35726,7 @@ def send_and_track_file_added(cls, val): :param SendAndTrackFileAddedType val: :rtype: EventType """ - return cls("send_and_track_file_added", val) + return cls('send_and_track_file_added', val) @classmethod def send_and_track_file_renamed(cls, val): @@ -36762,7 +35737,7 @@ def send_and_track_file_renamed(cls, val): :param SendAndTrackFileRenamedType val: :rtype: EventType """ - return cls("send_and_track_file_renamed", val) + return cls('send_and_track_file_renamed', val) @classmethod def send_and_track_file_updated(cls, val): @@ -36773,7 +35748,7 @@ def send_and_track_file_updated(cls, val): :param SendAndTrackFileUpdatedType val: :rtype: EventType """ - return cls("send_and_track_file_updated", val) + return cls('send_and_track_file_updated', val) @classmethod def send_and_track_link_created(cls, val): @@ -36784,7 +35759,7 @@ def send_and_track_link_created(cls, val): :param SendAndTrackLinkCreatedType val: :rtype: EventType """ - return cls("send_and_track_link_created", val) + return cls('send_and_track_link_created', val) @classmethod def send_and_track_link_deleted(cls, val): @@ -36795,7 +35770,7 @@ def send_and_track_link_deleted(cls, val): :param SendAndTrackLinkDeletedType val: :rtype: EventType """ - return cls("send_and_track_link_deleted", val) + return cls('send_and_track_link_deleted', val) @classmethod def send_and_track_link_updated(cls, val): @@ -36806,7 +35781,7 @@ def send_and_track_link_updated(cls, val): :param SendAndTrackLinkUpdatedType val: :rtype: EventType """ - return cls("send_and_track_link_updated", val) + return cls('send_and_track_link_updated', val) @classmethod def send_and_track_link_viewed(cls, val): @@ -36817,7 +35792,7 @@ def send_and_track_link_viewed(cls, val): :param SendAndTrackLinkViewedType val: :rtype: EventType """ - return cls("send_and_track_link_viewed", val) + return cls('send_and_track_link_viewed', val) @classmethod def send_and_track_removed_file_and_associated_links(cls, val): @@ -36829,7 +35804,7 @@ def send_and_track_removed_file_and_associated_links(cls, val): :param SendAndTrackRemovedFileAndAssociatedLinksType val: :rtype: EventType """ - return cls("send_and_track_removed_file_and_associated_links", val) + return cls('send_and_track_removed_file_and_associated_links', val) @classmethod def sf_add_group(cls, val): @@ -36840,7 +35815,7 @@ def sf_add_group(cls, val): :param SfAddGroupType val: :rtype: EventType """ - return cls("sf_add_group", val) + return cls('sf_add_group', val) @classmethod def sf_allow_non_members_to_view_shared_links(cls, val): @@ -36851,7 +35826,7 @@ def sf_allow_non_members_to_view_shared_links(cls, val): :param SfAllowNonMembersToViewSharedLinksType val: :rtype: EventType """ - return cls("sf_allow_non_members_to_view_shared_links", val) + return cls('sf_allow_non_members_to_view_shared_links', val) @classmethod def sf_external_invite_warn(cls, val): @@ -36862,7 +35837,7 @@ def sf_external_invite_warn(cls, val): :param SfExternalInviteWarnType val: :rtype: EventType """ - return cls("sf_external_invite_warn", val) + return cls('sf_external_invite_warn', val) @classmethod def sf_fb_invite(cls, val): @@ -36873,7 +35848,7 @@ def sf_fb_invite(cls, val): :param SfFbInviteType val: :rtype: EventType """ - return cls("sf_fb_invite", val) + return cls('sf_fb_invite', val) @classmethod def sf_fb_invite_change_role(cls, val): @@ -36884,7 +35859,7 @@ def sf_fb_invite_change_role(cls, val): :param SfFbInviteChangeRoleType val: :rtype: EventType """ - return cls("sf_fb_invite_change_role", val) + return cls('sf_fb_invite_change_role', val) @classmethod def sf_fb_uninvite(cls, val): @@ -36895,7 +35870,7 @@ def sf_fb_uninvite(cls, val): :param SfFbUninviteType val: :rtype: EventType """ - return cls("sf_fb_uninvite", val) + return cls('sf_fb_uninvite', val) @classmethod def sf_invite_group(cls, val): @@ -36906,7 +35881,7 @@ def sf_invite_group(cls, val): :param SfInviteGroupType val: :rtype: EventType """ - return cls("sf_invite_group", val) + return cls('sf_invite_group', val) @classmethod def sf_team_grant_access(cls, val): @@ -36917,7 +35892,7 @@ def sf_team_grant_access(cls, val): :param SfTeamGrantAccessType val: :rtype: EventType """ - return cls("sf_team_grant_access", val) + return cls('sf_team_grant_access', val) @classmethod def sf_team_invite(cls, val): @@ -36928,7 +35903,7 @@ def sf_team_invite(cls, val): :param SfTeamInviteType val: :rtype: EventType """ - return cls("sf_team_invite", val) + return cls('sf_team_invite', val) @classmethod def sf_team_invite_change_role(cls, val): @@ -36939,7 +35914,7 @@ def sf_team_invite_change_role(cls, val): :param SfTeamInviteChangeRoleType val: :rtype: EventType """ - return cls("sf_team_invite_change_role", val) + return cls('sf_team_invite_change_role', val) @classmethod def sf_team_join(cls, val): @@ -36950,7 +35925,7 @@ def sf_team_join(cls, val): :param SfTeamJoinType val: :rtype: EventType """ - return cls("sf_team_join", val) + return cls('sf_team_join', val) @classmethod def sf_team_join_from_oob_link(cls, val): @@ -36961,7 +35936,7 @@ def sf_team_join_from_oob_link(cls, val): :param SfTeamJoinFromOobLinkType val: :rtype: EventType """ - return cls("sf_team_join_from_oob_link", val) + return cls('sf_team_join_from_oob_link', val) @classmethod def sf_team_uninvite(cls, val): @@ -36972,7 +35947,7 @@ def sf_team_uninvite(cls, val): :param SfTeamUninviteType val: :rtype: EventType """ - return cls("sf_team_uninvite", val) + return cls('sf_team_uninvite', val) @classmethod def shared_content_add_invitees(cls, val): @@ -36983,7 +35958,7 @@ def shared_content_add_invitees(cls, val): :param SharedContentAddInviteesType val: :rtype: EventType """ - return cls("shared_content_add_invitees", val) + return cls('shared_content_add_invitees', val) @classmethod def shared_content_add_link_expiry(cls, val): @@ -36994,7 +35969,7 @@ def shared_content_add_link_expiry(cls, val): :param SharedContentAddLinkExpiryType val: :rtype: EventType """ - return cls("shared_content_add_link_expiry", val) + return cls('shared_content_add_link_expiry', val) @classmethod def shared_content_add_link_password(cls, val): @@ -37005,7 +35980,7 @@ def shared_content_add_link_password(cls, val): :param SharedContentAddLinkPasswordType val: :rtype: EventType """ - return cls("shared_content_add_link_password", val) + return cls('shared_content_add_link_password', val) @classmethod def shared_content_add_member(cls, val): @@ -37016,7 +35991,7 @@ def shared_content_add_member(cls, val): :param SharedContentAddMemberType val: :rtype: EventType """ - return cls("shared_content_add_member", val) + return cls('shared_content_add_member', val) @classmethod def shared_content_change_downloads_policy(cls, val): @@ -37027,7 +36002,7 @@ def shared_content_change_downloads_policy(cls, val): :param SharedContentChangeDownloadsPolicyType val: :rtype: EventType """ - return cls("shared_content_change_downloads_policy", val) + return cls('shared_content_change_downloads_policy', val) @classmethod def shared_content_change_invitee_role(cls, val): @@ -37038,7 +36013,7 @@ def shared_content_change_invitee_role(cls, val): :param SharedContentChangeInviteeRoleType val: :rtype: EventType """ - return cls("shared_content_change_invitee_role", val) + return cls('shared_content_change_invitee_role', val) @classmethod def shared_content_change_link_audience(cls, val): @@ -37049,7 +36024,7 @@ def shared_content_change_link_audience(cls, val): :param SharedContentChangeLinkAudienceType val: :rtype: EventType """ - return cls("shared_content_change_link_audience", val) + return cls('shared_content_change_link_audience', val) @classmethod def shared_content_change_link_expiry(cls, val): @@ -37060,7 +36035,7 @@ def shared_content_change_link_expiry(cls, val): :param SharedContentChangeLinkExpiryType val: :rtype: EventType """ - return cls("shared_content_change_link_expiry", val) + return cls('shared_content_change_link_expiry', val) @classmethod def shared_content_change_link_password(cls, val): @@ -37071,7 +36046,7 @@ def shared_content_change_link_password(cls, val): :param SharedContentChangeLinkPasswordType val: :rtype: EventType """ - return cls("shared_content_change_link_password", val) + return cls('shared_content_change_link_password', val) @classmethod def shared_content_change_member_role(cls, val): @@ -37082,7 +36057,7 @@ def shared_content_change_member_role(cls, val): :param SharedContentChangeMemberRoleType val: :rtype: EventType """ - return cls("shared_content_change_member_role", val) + return cls('shared_content_change_member_role', val) @classmethod def shared_content_change_viewer_info_policy(cls, val): @@ -37093,7 +36068,7 @@ def shared_content_change_viewer_info_policy(cls, val): :param SharedContentChangeViewerInfoPolicyType val: :rtype: EventType """ - return cls("shared_content_change_viewer_info_policy", val) + return cls('shared_content_change_viewer_info_policy', val) @classmethod def shared_content_claim_invitation(cls, val): @@ -37104,7 +36079,7 @@ def shared_content_claim_invitation(cls, val): :param SharedContentClaimInvitationType val: :rtype: EventType """ - return cls("shared_content_claim_invitation", val) + return cls('shared_content_claim_invitation', val) @classmethod def shared_content_copy(cls, val): @@ -37115,7 +36090,7 @@ def shared_content_copy(cls, val): :param SharedContentCopyType val: :rtype: EventType """ - return cls("shared_content_copy", val) + return cls('shared_content_copy', val) @classmethod def shared_content_download(cls, val): @@ -37126,7 +36101,7 @@ def shared_content_download(cls, val): :param SharedContentDownloadType val: :rtype: EventType """ - return cls("shared_content_download", val) + return cls('shared_content_download', val) @classmethod def shared_content_relinquish_membership(cls, val): @@ -37137,7 +36112,7 @@ def shared_content_relinquish_membership(cls, val): :param SharedContentRelinquishMembershipType val: :rtype: EventType """ - return cls("shared_content_relinquish_membership", val) + return cls('shared_content_relinquish_membership', val) @classmethod def shared_content_remove_invitees(cls, val): @@ -37148,7 +36123,7 @@ def shared_content_remove_invitees(cls, val): :param SharedContentRemoveInviteesType val: :rtype: EventType """ - return cls("shared_content_remove_invitees", val) + return cls('shared_content_remove_invitees', val) @classmethod def shared_content_remove_link_expiry(cls, val): @@ -37159,7 +36134,7 @@ def shared_content_remove_link_expiry(cls, val): :param SharedContentRemoveLinkExpiryType val: :rtype: EventType """ - return cls("shared_content_remove_link_expiry", val) + return cls('shared_content_remove_link_expiry', val) @classmethod def shared_content_remove_link_password(cls, val): @@ -37170,7 +36145,7 @@ def shared_content_remove_link_password(cls, val): :param SharedContentRemoveLinkPasswordType val: :rtype: EventType """ - return cls("shared_content_remove_link_password", val) + return cls('shared_content_remove_link_password', val) @classmethod def shared_content_remove_member(cls, val): @@ -37181,7 +36156,7 @@ def shared_content_remove_member(cls, val): :param SharedContentRemoveMemberType val: :rtype: EventType """ - return cls("shared_content_remove_member", val) + return cls('shared_content_remove_member', val) @classmethod def shared_content_request_access(cls, val): @@ -37192,7 +36167,7 @@ def shared_content_request_access(cls, val): :param SharedContentRequestAccessType val: :rtype: EventType """ - return cls("shared_content_request_access", val) + return cls('shared_content_request_access', val) @classmethod def shared_content_restore_invitees(cls, val): @@ -37203,7 +36178,7 @@ def shared_content_restore_invitees(cls, val): :param SharedContentRestoreInviteesType val: :rtype: EventType """ - return cls("shared_content_restore_invitees", val) + return cls('shared_content_restore_invitees', val) @classmethod def shared_content_restore_member(cls, val): @@ -37214,7 +36189,7 @@ def shared_content_restore_member(cls, val): :param SharedContentRestoreMemberType val: :rtype: EventType """ - return cls("shared_content_restore_member", val) + return cls('shared_content_restore_member', val) @classmethod def shared_content_unshare(cls, val): @@ -37225,7 +36200,7 @@ def shared_content_unshare(cls, val): :param SharedContentUnshareType val: :rtype: EventType """ - return cls("shared_content_unshare", val) + return cls('shared_content_unshare', val) @classmethod def shared_content_view(cls, val): @@ -37236,7 +36211,7 @@ def shared_content_view(cls, val): :param SharedContentViewType val: :rtype: EventType """ - return cls("shared_content_view", val) + return cls('shared_content_view', val) @classmethod def shared_folder_change_link_policy(cls, val): @@ -37247,7 +36222,7 @@ def shared_folder_change_link_policy(cls, val): :param SharedFolderChangeLinkPolicyType val: :rtype: EventType """ - return cls("shared_folder_change_link_policy", val) + return cls('shared_folder_change_link_policy', val) @classmethod def shared_folder_change_members_inheritance_policy(cls, val): @@ -37259,7 +36234,7 @@ def shared_folder_change_members_inheritance_policy(cls, val): :param SharedFolderChangeMembersInheritancePolicyType val: :rtype: EventType """ - return cls("shared_folder_change_members_inheritance_policy", val) + return cls('shared_folder_change_members_inheritance_policy', val) @classmethod def shared_folder_change_members_management_policy(cls, val): @@ -37271,7 +36246,7 @@ def shared_folder_change_members_management_policy(cls, val): :param SharedFolderChangeMembersManagementPolicyType val: :rtype: EventType """ - return cls("shared_folder_change_members_management_policy", val) + return cls('shared_folder_change_members_management_policy', val) @classmethod def shared_folder_change_members_policy(cls, val): @@ -37282,7 +36257,7 @@ def shared_folder_change_members_policy(cls, val): :param SharedFolderChangeMembersPolicyType val: :rtype: EventType """ - return cls("shared_folder_change_members_policy", val) + return cls('shared_folder_change_members_policy', val) @classmethod def shared_folder_create(cls, val): @@ -37293,7 +36268,7 @@ def shared_folder_create(cls, val): :param SharedFolderCreateType val: :rtype: EventType """ - return cls("shared_folder_create", val) + return cls('shared_folder_create', val) @classmethod def shared_folder_decline_invitation(cls, val): @@ -37304,7 +36279,7 @@ def shared_folder_decline_invitation(cls, val): :param SharedFolderDeclineInvitationType val: :rtype: EventType """ - return cls("shared_folder_decline_invitation", val) + return cls('shared_folder_decline_invitation', val) @classmethod def shared_folder_mount(cls, val): @@ -37315,7 +36290,7 @@ def shared_folder_mount(cls, val): :param SharedFolderMountType val: :rtype: EventType """ - return cls("shared_folder_mount", val) + return cls('shared_folder_mount', val) @classmethod def shared_folder_nest(cls, val): @@ -37326,7 +36301,7 @@ def shared_folder_nest(cls, val): :param SharedFolderNestType val: :rtype: EventType """ - return cls("shared_folder_nest", val) + return cls('shared_folder_nest', val) @classmethod def shared_folder_transfer_ownership(cls, val): @@ -37337,7 +36312,7 @@ def shared_folder_transfer_ownership(cls, val): :param SharedFolderTransferOwnershipType val: :rtype: EventType """ - return cls("shared_folder_transfer_ownership", val) + return cls('shared_folder_transfer_ownership', val) @classmethod def shared_folder_unmount(cls, val): @@ -37348,7 +36323,7 @@ def shared_folder_unmount(cls, val): :param SharedFolderUnmountType val: :rtype: EventType """ - return cls("shared_folder_unmount", val) + return cls('shared_folder_unmount', val) @classmethod def shared_link_add_expiry(cls, val): @@ -37359,7 +36334,7 @@ def shared_link_add_expiry(cls, val): :param SharedLinkAddExpiryType val: :rtype: EventType """ - return cls("shared_link_add_expiry", val) + return cls('shared_link_add_expiry', val) @classmethod def shared_link_change_expiry(cls, val): @@ -37370,7 +36345,7 @@ def shared_link_change_expiry(cls, val): :param SharedLinkChangeExpiryType val: :rtype: EventType """ - return cls("shared_link_change_expiry", val) + return cls('shared_link_change_expiry', val) @classmethod def shared_link_change_visibility(cls, val): @@ -37381,7 +36356,7 @@ def shared_link_change_visibility(cls, val): :param SharedLinkChangeVisibilityType val: :rtype: EventType """ - return cls("shared_link_change_visibility", val) + return cls('shared_link_change_visibility', val) @classmethod def shared_link_copy(cls, val): @@ -37392,7 +36367,7 @@ def shared_link_copy(cls, val): :param SharedLinkCopyType val: :rtype: EventType """ - return cls("shared_link_copy", val) + return cls('shared_link_copy', val) @classmethod def shared_link_create(cls, val): @@ -37403,7 +36378,7 @@ def shared_link_create(cls, val): :param SharedLinkCreateType val: :rtype: EventType """ - return cls("shared_link_create", val) + return cls('shared_link_create', val) @classmethod def shared_link_disable(cls, val): @@ -37414,7 +36389,7 @@ def shared_link_disable(cls, val): :param SharedLinkDisableType val: :rtype: EventType """ - return cls("shared_link_disable", val) + return cls('shared_link_disable', val) @classmethod def shared_link_download(cls, val): @@ -37425,7 +36400,7 @@ def shared_link_download(cls, val): :param SharedLinkDownloadType val: :rtype: EventType """ - return cls("shared_link_download", val) + return cls('shared_link_download', val) @classmethod def shared_link_remove_expiry(cls, val): @@ -37436,7 +36411,7 @@ def shared_link_remove_expiry(cls, val): :param SharedLinkRemoveExpiryType val: :rtype: EventType """ - return cls("shared_link_remove_expiry", val) + return cls('shared_link_remove_expiry', val) @classmethod def shared_link_remove_visitor(cls, val): @@ -37447,7 +36422,7 @@ def shared_link_remove_visitor(cls, val): :param SharedLinkRemoveVisitorType val: :rtype: EventType """ - return cls("shared_link_remove_visitor", val) + return cls('shared_link_remove_visitor', val) @classmethod def shared_link_settings_add_expiration(cls, val): @@ -37458,7 +36433,7 @@ def shared_link_settings_add_expiration(cls, val): :param SharedLinkSettingsAddExpirationType val: :rtype: EventType """ - return cls("shared_link_settings_add_expiration", val) + return cls('shared_link_settings_add_expiration', val) @classmethod def shared_link_settings_add_password(cls, val): @@ -37469,7 +36444,7 @@ def shared_link_settings_add_password(cls, val): :param SharedLinkSettingsAddPasswordType val: :rtype: EventType """ - return cls("shared_link_settings_add_password", val) + return cls('shared_link_settings_add_password', val) @classmethod def shared_link_settings_allow_download_disabled(cls, val): @@ -37480,7 +36455,7 @@ def shared_link_settings_allow_download_disabled(cls, val): :param SharedLinkSettingsAllowDownloadDisabledType val: :rtype: EventType """ - return cls("shared_link_settings_allow_download_disabled", val) + return cls('shared_link_settings_allow_download_disabled', val) @classmethod def shared_link_settings_allow_download_enabled(cls, val): @@ -37491,7 +36466,7 @@ def shared_link_settings_allow_download_enabled(cls, val): :param SharedLinkSettingsAllowDownloadEnabledType val: :rtype: EventType """ - return cls("shared_link_settings_allow_download_enabled", val) + return cls('shared_link_settings_allow_download_enabled', val) @classmethod def shared_link_settings_change_audience(cls, val): @@ -37502,7 +36477,7 @@ def shared_link_settings_change_audience(cls, val): :param SharedLinkSettingsChangeAudienceType val: :rtype: EventType """ - return cls("shared_link_settings_change_audience", val) + return cls('shared_link_settings_change_audience', val) @classmethod def shared_link_settings_change_expiration(cls, val): @@ -37513,7 +36488,7 @@ def shared_link_settings_change_expiration(cls, val): :param SharedLinkSettingsChangeExpirationType val: :rtype: EventType """ - return cls("shared_link_settings_change_expiration", val) + return cls('shared_link_settings_change_expiration', val) @classmethod def shared_link_settings_change_password(cls, val): @@ -37524,7 +36499,7 @@ def shared_link_settings_change_password(cls, val): :param SharedLinkSettingsChangePasswordType val: :rtype: EventType """ - return cls("shared_link_settings_change_password", val) + return cls('shared_link_settings_change_password', val) @classmethod def shared_link_settings_remove_expiration(cls, val): @@ -37535,7 +36510,7 @@ def shared_link_settings_remove_expiration(cls, val): :param SharedLinkSettingsRemoveExpirationType val: :rtype: EventType """ - return cls("shared_link_settings_remove_expiration", val) + return cls('shared_link_settings_remove_expiration', val) @classmethod def shared_link_settings_remove_password(cls, val): @@ -37546,7 +36521,7 @@ def shared_link_settings_remove_password(cls, val): :param SharedLinkSettingsRemovePasswordType val: :rtype: EventType """ - return cls("shared_link_settings_remove_password", val) + return cls('shared_link_settings_remove_password', val) @classmethod def shared_link_share(cls, val): @@ -37557,7 +36532,7 @@ def shared_link_share(cls, val): :param SharedLinkShareType val: :rtype: EventType """ - return cls("shared_link_share", val) + return cls('shared_link_share', val) @classmethod def shared_link_view(cls, val): @@ -37568,7 +36543,7 @@ def shared_link_view(cls, val): :param SharedLinkViewType val: :rtype: EventType """ - return cls("shared_link_view", val) + return cls('shared_link_view', val) @classmethod def shared_note_opened(cls, val): @@ -37579,7 +36554,7 @@ def shared_note_opened(cls, val): :param SharedNoteOpenedType val: :rtype: EventType """ - return cls("shared_note_opened", val) + return cls('shared_note_opened', val) @classmethod def shmodel_disable_downloads(cls, val): @@ -37590,7 +36565,7 @@ def shmodel_disable_downloads(cls, val): :param ShmodelDisableDownloadsType val: :rtype: EventType """ - return cls("shmodel_disable_downloads", val) + return cls('shmodel_disable_downloads', val) @classmethod def shmodel_enable_downloads(cls, val): @@ -37601,7 +36576,7 @@ def shmodel_enable_downloads(cls, val): :param ShmodelEnableDownloadsType val: :rtype: EventType """ - return cls("shmodel_enable_downloads", val) + return cls('shmodel_enable_downloads', val) @classmethod def shmodel_group_share(cls, val): @@ -37612,7 +36587,7 @@ def shmodel_group_share(cls, val): :param ShmodelGroupShareType val: :rtype: EventType """ - return cls("shmodel_group_share", val) + return cls('shmodel_group_share', val) @classmethod def showcase_access_granted(cls, val): @@ -37623,7 +36598,7 @@ def showcase_access_granted(cls, val): :param ShowcaseAccessGrantedType val: :rtype: EventType """ - return cls("showcase_access_granted", val) + return cls('showcase_access_granted', val) @classmethod def showcase_add_member(cls, val): @@ -37634,7 +36609,7 @@ def showcase_add_member(cls, val): :param ShowcaseAddMemberType val: :rtype: EventType """ - return cls("showcase_add_member", val) + return cls('showcase_add_member', val) @classmethod def showcase_archived(cls, val): @@ -37645,7 +36620,7 @@ def showcase_archived(cls, val): :param ShowcaseArchivedType val: :rtype: EventType """ - return cls("showcase_archived", val) + return cls('showcase_archived', val) @classmethod def showcase_created(cls, val): @@ -37656,7 +36631,7 @@ def showcase_created(cls, val): :param ShowcaseCreatedType val: :rtype: EventType """ - return cls("showcase_created", val) + return cls('showcase_created', val) @classmethod def showcase_delete_comment(cls, val): @@ -37667,7 +36642,7 @@ def showcase_delete_comment(cls, val): :param ShowcaseDeleteCommentType val: :rtype: EventType """ - return cls("showcase_delete_comment", val) + return cls('showcase_delete_comment', val) @classmethod def showcase_edited(cls, val): @@ -37678,7 +36653,7 @@ def showcase_edited(cls, val): :param ShowcaseEditedType val: :rtype: EventType """ - return cls("showcase_edited", val) + return cls('showcase_edited', val) @classmethod def showcase_edit_comment(cls, val): @@ -37689,7 +36664,7 @@ def showcase_edit_comment(cls, val): :param ShowcaseEditCommentType val: :rtype: EventType """ - return cls("showcase_edit_comment", val) + return cls('showcase_edit_comment', val) @classmethod def showcase_file_added(cls, val): @@ -37700,7 +36675,7 @@ def showcase_file_added(cls, val): :param ShowcaseFileAddedType val: :rtype: EventType """ - return cls("showcase_file_added", val) + return cls('showcase_file_added', val) @classmethod def showcase_file_download(cls, val): @@ -37711,7 +36686,7 @@ def showcase_file_download(cls, val): :param ShowcaseFileDownloadType val: :rtype: EventType """ - return cls("showcase_file_download", val) + return cls('showcase_file_download', val) @classmethod def showcase_file_removed(cls, val): @@ -37722,7 +36697,7 @@ def showcase_file_removed(cls, val): :param ShowcaseFileRemovedType val: :rtype: EventType """ - return cls("showcase_file_removed", val) + return cls('showcase_file_removed', val) @classmethod def showcase_file_view(cls, val): @@ -37733,7 +36708,7 @@ def showcase_file_view(cls, val): :param ShowcaseFileViewType val: :rtype: EventType """ - return cls("showcase_file_view", val) + return cls('showcase_file_view', val) @classmethod def showcase_permanently_deleted(cls, val): @@ -37744,7 +36719,7 @@ def showcase_permanently_deleted(cls, val): :param ShowcasePermanentlyDeletedType val: :rtype: EventType """ - return cls("showcase_permanently_deleted", val) + return cls('showcase_permanently_deleted', val) @classmethod def showcase_post_comment(cls, val): @@ -37755,7 +36730,7 @@ def showcase_post_comment(cls, val): :param ShowcasePostCommentType val: :rtype: EventType """ - return cls("showcase_post_comment", val) + return cls('showcase_post_comment', val) @classmethod def showcase_remove_member(cls, val): @@ -37766,7 +36741,7 @@ def showcase_remove_member(cls, val): :param ShowcaseRemoveMemberType val: :rtype: EventType """ - return cls("showcase_remove_member", val) + return cls('showcase_remove_member', val) @classmethod def showcase_renamed(cls, val): @@ -37777,7 +36752,7 @@ def showcase_renamed(cls, val): :param ShowcaseRenamedType val: :rtype: EventType """ - return cls("showcase_renamed", val) + return cls('showcase_renamed', val) @classmethod def showcase_request_access(cls, val): @@ -37788,7 +36763,7 @@ def showcase_request_access(cls, val): :param ShowcaseRequestAccessType val: :rtype: EventType """ - return cls("showcase_request_access", val) + return cls('showcase_request_access', val) @classmethod def showcase_resolve_comment(cls, val): @@ -37799,7 +36774,7 @@ def showcase_resolve_comment(cls, val): :param ShowcaseResolveCommentType val: :rtype: EventType """ - return cls("showcase_resolve_comment", val) + return cls('showcase_resolve_comment', val) @classmethod def showcase_restored(cls, val): @@ -37810,7 +36785,7 @@ def showcase_restored(cls, val): :param ShowcaseRestoredType val: :rtype: EventType """ - return cls("showcase_restored", val) + return cls('showcase_restored', val) @classmethod def showcase_trashed(cls, val): @@ -37821,7 +36796,7 @@ def showcase_trashed(cls, val): :param ShowcaseTrashedType val: :rtype: EventType """ - return cls("showcase_trashed", val) + return cls('showcase_trashed', val) @classmethod def showcase_trashed_deprecated(cls, val): @@ -37832,7 +36807,7 @@ def showcase_trashed_deprecated(cls, val): :param ShowcaseTrashedDeprecatedType val: :rtype: EventType """ - return cls("showcase_trashed_deprecated", val) + return cls('showcase_trashed_deprecated', val) @classmethod def showcase_unresolve_comment(cls, val): @@ -37843,7 +36818,7 @@ def showcase_unresolve_comment(cls, val): :param ShowcaseUnresolveCommentType val: :rtype: EventType """ - return cls("showcase_unresolve_comment", val) + return cls('showcase_unresolve_comment', val) @classmethod def showcase_untrashed(cls, val): @@ -37854,7 +36829,7 @@ def showcase_untrashed(cls, val): :param ShowcaseUntrashedType val: :rtype: EventType """ - return cls("showcase_untrashed", val) + return cls('showcase_untrashed', val) @classmethod def showcase_untrashed_deprecated(cls, val): @@ -37865,7 +36840,7 @@ def showcase_untrashed_deprecated(cls, val): :param ShowcaseUntrashedDeprecatedType val: :rtype: EventType """ - return cls("showcase_untrashed_deprecated", val) + return cls('showcase_untrashed_deprecated', val) @classmethod def showcase_view(cls, val): @@ -37876,7 +36851,7 @@ def showcase_view(cls, val): :param ShowcaseViewType val: :rtype: EventType """ - return cls("showcase_view", val) + return cls('showcase_view', val) @classmethod def sign_signature_request_canceled(cls, val): @@ -37887,7 +36862,7 @@ def sign_signature_request_canceled(cls, val): :param SignSignatureRequestCanceledType val: :rtype: EventType """ - return cls("sign_signature_request_canceled", val) + return cls('sign_signature_request_canceled', val) @classmethod def sign_signature_request_completed(cls, val): @@ -37898,7 +36873,7 @@ def sign_signature_request_completed(cls, val): :param SignSignatureRequestCompletedType val: :rtype: EventType """ - return cls("sign_signature_request_completed", val) + return cls('sign_signature_request_completed', val) @classmethod def sign_signature_request_declined(cls, val): @@ -37909,7 +36884,7 @@ def sign_signature_request_declined(cls, val): :param SignSignatureRequestDeclinedType val: :rtype: EventType """ - return cls("sign_signature_request_declined", val) + return cls('sign_signature_request_declined', val) @classmethod def sign_signature_request_opened(cls, val): @@ -37920,7 +36895,7 @@ def sign_signature_request_opened(cls, val): :param SignSignatureRequestOpenedType val: :rtype: EventType """ - return cls("sign_signature_request_opened", val) + return cls('sign_signature_request_opened', val) @classmethod def sign_signature_request_reminder_sent(cls, val): @@ -37931,7 +36906,7 @@ def sign_signature_request_reminder_sent(cls, val): :param SignSignatureRequestReminderSentType val: :rtype: EventType """ - return cls("sign_signature_request_reminder_sent", val) + return cls('sign_signature_request_reminder_sent', val) @classmethod def sign_signature_request_sent(cls, val): @@ -37942,7 +36917,7 @@ def sign_signature_request_sent(cls, val): :param SignSignatureRequestSentType val: :rtype: EventType """ - return cls("sign_signature_request_sent", val) + return cls('sign_signature_request_sent', val) @classmethod def sign_template_created(cls, val): @@ -37953,7 +36928,7 @@ def sign_template_created(cls, val): :param SignTemplateCreatedType val: :rtype: EventType """ - return cls("sign_template_created", val) + return cls('sign_template_created', val) @classmethod def sign_template_shared(cls, val): @@ -37964,7 +36939,7 @@ def sign_template_shared(cls, val): :param SignTemplateSharedType val: :rtype: EventType """ - return cls("sign_template_shared", val) + return cls('sign_template_shared', val) @classmethod def risc_security_event(cls, val): @@ -37975,7 +36950,7 @@ def risc_security_event(cls, val): :param RiscSecurityEventType val: :rtype: EventType """ - return cls("risc_security_event", val) + return cls('risc_security_event', val) @classmethod def sso_add_cert(cls, val): @@ -37986,7 +36961,7 @@ def sso_add_cert(cls, val): :param SsoAddCertType val: :rtype: EventType """ - return cls("sso_add_cert", val) + return cls('sso_add_cert', val) @classmethod def sso_add_login_url(cls, val): @@ -37997,7 +36972,7 @@ def sso_add_login_url(cls, val): :param SsoAddLoginUrlType val: :rtype: EventType """ - return cls("sso_add_login_url", val) + return cls('sso_add_login_url', val) @classmethod def sso_add_logout_url(cls, val): @@ -38008,7 +36983,7 @@ def sso_add_logout_url(cls, val): :param SsoAddLogoutUrlType val: :rtype: EventType """ - return cls("sso_add_logout_url", val) + return cls('sso_add_logout_url', val) @classmethod def sso_change_cert(cls, val): @@ -38019,7 +36994,7 @@ def sso_change_cert(cls, val): :param SsoChangeCertType val: :rtype: EventType """ - return cls("sso_change_cert", val) + return cls('sso_change_cert', val) @classmethod def sso_change_login_url(cls, val): @@ -38030,7 +37005,7 @@ def sso_change_login_url(cls, val): :param SsoChangeLoginUrlType val: :rtype: EventType """ - return cls("sso_change_login_url", val) + return cls('sso_change_login_url', val) @classmethod def sso_change_logout_url(cls, val): @@ -38041,7 +37016,7 @@ def sso_change_logout_url(cls, val): :param SsoChangeLogoutUrlType val: :rtype: EventType """ - return cls("sso_change_logout_url", val) + return cls('sso_change_logout_url', val) @classmethod def sso_change_saml_identity_mode(cls, val): @@ -38052,7 +37027,7 @@ def sso_change_saml_identity_mode(cls, val): :param SsoChangeSamlIdentityModeType val: :rtype: EventType """ - return cls("sso_change_saml_identity_mode", val) + return cls('sso_change_saml_identity_mode', val) @classmethod def sso_remove_cert(cls, val): @@ -38063,7 +37038,7 @@ def sso_remove_cert(cls, val): :param SsoRemoveCertType val: :rtype: EventType """ - return cls("sso_remove_cert", val) + return cls('sso_remove_cert', val) @classmethod def sso_remove_login_url(cls, val): @@ -38074,7 +37049,7 @@ def sso_remove_login_url(cls, val): :param SsoRemoveLoginUrlType val: :rtype: EventType """ - return cls("sso_remove_login_url", val) + return cls('sso_remove_login_url', val) @classmethod def sso_remove_logout_url(cls, val): @@ -38085,7 +37060,7 @@ def sso_remove_logout_url(cls, val): :param SsoRemoveLogoutUrlType val: :rtype: EventType """ - return cls("sso_remove_logout_url", val) + return cls('sso_remove_logout_url', val) @classmethod def team_folder_change_status(cls, val): @@ -38096,7 +37071,7 @@ def team_folder_change_status(cls, val): :param TeamFolderChangeStatusType val: :rtype: EventType """ - return cls("team_folder_change_status", val) + return cls('team_folder_change_status', val) @classmethod def team_folder_create(cls, val): @@ -38107,7 +37082,7 @@ def team_folder_create(cls, val): :param TeamFolderCreateType val: :rtype: EventType """ - return cls("team_folder_create", val) + return cls('team_folder_create', val) @classmethod def team_folder_downgrade(cls, val): @@ -38118,7 +37093,7 @@ def team_folder_downgrade(cls, val): :param TeamFolderDowngradeType val: :rtype: EventType """ - return cls("team_folder_downgrade", val) + return cls('team_folder_downgrade', val) @classmethod def team_folder_permanently_delete(cls, val): @@ -38129,7 +37104,7 @@ def team_folder_permanently_delete(cls, val): :param TeamFolderPermanentlyDeleteType val: :rtype: EventType """ - return cls("team_folder_permanently_delete", val) + return cls('team_folder_permanently_delete', val) @classmethod def team_folder_rename(cls, val): @@ -38140,7 +37115,7 @@ def team_folder_rename(cls, val): :param TeamFolderRenameType val: :rtype: EventType """ - return cls("team_folder_rename", val) + return cls('team_folder_rename', val) @classmethod def team_folder_space_limits_change_caps_type(cls, val): @@ -38151,7 +37126,7 @@ def team_folder_space_limits_change_caps_type(cls, val): :param TeamFolderSpaceLimitsChangeCapsTypeType val: :rtype: EventType """ - return cls("team_folder_space_limits_change_caps_type", val) + return cls('team_folder_space_limits_change_caps_type', val) @classmethod def team_folder_space_limits_change_limit(cls, val): @@ -38162,7 +37137,7 @@ def team_folder_space_limits_change_limit(cls, val): :param TeamFolderSpaceLimitsChangeLimitType val: :rtype: EventType """ - return cls("team_folder_space_limits_change_limit", val) + return cls('team_folder_space_limits_change_limit', val) @classmethod def team_folder_space_limits_change_notification_target(cls, val): @@ -38174,7 +37149,7 @@ def team_folder_space_limits_change_notification_target(cls, val): :param TeamFolderSpaceLimitsChangeNotificationTargetType val: :rtype: EventType """ - return cls("team_folder_space_limits_change_notification_target", val) + return cls('team_folder_space_limits_change_notification_target', val) @classmethod def team_selective_sync_settings_changed(cls, val): @@ -38185,7 +37160,7 @@ def team_selective_sync_settings_changed(cls, val): :param TeamSelectiveSyncSettingsChangedType val: :rtype: EventType """ - return cls("team_selective_sync_settings_changed", val) + return cls('team_selective_sync_settings_changed', val) @classmethod def account_capture_change_policy(cls, val): @@ -38196,7 +37171,7 @@ def account_capture_change_policy(cls, val): :param AccountCaptureChangePolicyType val: :rtype: EventType """ - return cls("account_capture_change_policy", val) + return cls('account_capture_change_policy', val) @classmethod def admin_email_reminders_changed(cls, val): @@ -38207,7 +37182,7 @@ def admin_email_reminders_changed(cls, val): :param AdminEmailRemindersChangedType val: :rtype: EventType """ - return cls("admin_email_reminders_changed", val) + return cls('admin_email_reminders_changed', val) @classmethod def ai_third_party_sharing_dropbox_base_policy_changed(cls, val): @@ -38219,7 +37194,7 @@ def ai_third_party_sharing_dropbox_base_policy_changed(cls, val): :param AiThirdPartySharingDropboxBasePolicyChangedType val: :rtype: EventType """ - return cls("ai_third_party_sharing_dropbox_base_policy_changed", val) + return cls('ai_third_party_sharing_dropbox_base_policy_changed', val) @classmethod def allow_download_disabled(cls, val): @@ -38230,7 +37205,7 @@ def allow_download_disabled(cls, val): :param AllowDownloadDisabledType val: :rtype: EventType """ - return cls("allow_download_disabled", val) + return cls('allow_download_disabled', val) @classmethod def allow_download_enabled(cls, val): @@ -38241,7 +37216,7 @@ def allow_download_enabled(cls, val): :param AllowDownloadEnabledType val: :rtype: EventType """ - return cls("allow_download_enabled", val) + return cls('allow_download_enabled', val) @classmethod def apple_login_change_policy(cls, val): @@ -38252,7 +37227,7 @@ def apple_login_change_policy(cls, val): :param AppleLoginChangePolicyType val: :rtype: EventType """ - return cls("apple_login_change_policy", val) + return cls('apple_login_change_policy', val) @classmethod def app_permissions_changed(cls, val): @@ -38263,7 +37238,7 @@ def app_permissions_changed(cls, val): :param AppPermissionsChangedType val: :rtype: EventType """ - return cls("app_permissions_changed", val) + return cls('app_permissions_changed', val) @classmethod def camera_uploads_policy_changed(cls, val): @@ -38274,7 +37249,7 @@ def camera_uploads_policy_changed(cls, val): :param CameraUploadsPolicyChangedType val: :rtype: EventType """ - return cls("camera_uploads_policy_changed", val) + return cls('camera_uploads_policy_changed', val) @classmethod def capture_team_space_policy_changed(cls, val): @@ -38285,7 +37260,7 @@ def capture_team_space_policy_changed(cls, val): :param CaptureTeamSpacePolicyChangedType val: :rtype: EventType """ - return cls("capture_team_space_policy_changed", val) + return cls('capture_team_space_policy_changed', val) @classmethod def capture_transcript_policy_changed(cls, val): @@ -38296,7 +37271,7 @@ def capture_transcript_policy_changed(cls, val): :param CaptureTranscriptPolicyChangedType val: :rtype: EventType """ - return cls("capture_transcript_policy_changed", val) + return cls('capture_transcript_policy_changed', val) @classmethod def classification_change_policy(cls, val): @@ -38307,7 +37282,7 @@ def classification_change_policy(cls, val): :param ClassificationChangePolicyType val: :rtype: EventType """ - return cls("classification_change_policy", val) + return cls('classification_change_policy', val) @classmethod def computer_backup_policy_changed(cls, val): @@ -38318,7 +37293,7 @@ def computer_backup_policy_changed(cls, val): :param ComputerBackupPolicyChangedType val: :rtype: EventType """ - return cls("computer_backup_policy_changed", val) + return cls('computer_backup_policy_changed', val) @classmethod def content_administration_policy_changed(cls, val): @@ -38329,7 +37304,7 @@ def content_administration_policy_changed(cls, val): :param ContentAdministrationPolicyChangedType val: :rtype: EventType """ - return cls("content_administration_policy_changed", val) + return cls('content_administration_policy_changed', val) @classmethod def content_deletion_protection_change_policy(cls, val): @@ -38340,7 +37315,7 @@ def content_deletion_protection_change_policy(cls, val): :param ContentDeletionProtectionChangePolicyType val: :rtype: EventType """ - return cls("content_deletion_protection_change_policy", val) + return cls('content_deletion_protection_change_policy', val) @classmethod def dash_external_sharing_policy_changed(cls, val): @@ -38351,7 +37326,7 @@ def dash_external_sharing_policy_changed(cls, val): :param DashExternalSharingPolicyChangedType val: :rtype: EventType """ - return cls("dash_external_sharing_policy_changed", val) + return cls('dash_external_sharing_policy_changed', val) @classmethod def data_placement_restriction_change_policy(cls, val): @@ -38362,7 +37337,7 @@ def data_placement_restriction_change_policy(cls, val): :param DataPlacementRestrictionChangePolicyType val: :rtype: EventType """ - return cls("data_placement_restriction_change_policy", val) + return cls('data_placement_restriction_change_policy', val) @classmethod def data_placement_restriction_satisfy_policy(cls, val): @@ -38373,7 +37348,7 @@ def data_placement_restriction_satisfy_policy(cls, val): :param DataPlacementRestrictionSatisfyPolicyType val: :rtype: EventType """ - return cls("data_placement_restriction_satisfy_policy", val) + return cls('data_placement_restriction_satisfy_policy', val) @classmethod def device_approvals_add_exception(cls, val): @@ -38384,7 +37359,7 @@ def device_approvals_add_exception(cls, val): :param DeviceApprovalsAddExceptionType val: :rtype: EventType """ - return cls("device_approvals_add_exception", val) + return cls('device_approvals_add_exception', val) @classmethod def device_approvals_change_desktop_policy(cls, val): @@ -38395,7 +37370,7 @@ def device_approvals_change_desktop_policy(cls, val): :param DeviceApprovalsChangeDesktopPolicyType val: :rtype: EventType """ - return cls("device_approvals_change_desktop_policy", val) + return cls('device_approvals_change_desktop_policy', val) @classmethod def device_approvals_change_mobile_policy(cls, val): @@ -38406,7 +37381,7 @@ def device_approvals_change_mobile_policy(cls, val): :param DeviceApprovalsChangeMobilePolicyType val: :rtype: EventType """ - return cls("device_approvals_change_mobile_policy", val) + return cls('device_approvals_change_mobile_policy', val) @classmethod def device_approvals_change_overage_action(cls, val): @@ -38417,7 +37392,7 @@ def device_approvals_change_overage_action(cls, val): :param DeviceApprovalsChangeOverageActionType val: :rtype: EventType """ - return cls("device_approvals_change_overage_action", val) + return cls('device_approvals_change_overage_action', val) @classmethod def device_approvals_change_unlink_action(cls, val): @@ -38428,7 +37403,7 @@ def device_approvals_change_unlink_action(cls, val): :param DeviceApprovalsChangeUnlinkActionType val: :rtype: EventType """ - return cls("device_approvals_change_unlink_action", val) + return cls('device_approvals_change_unlink_action', val) @classmethod def device_approvals_remove_exception(cls, val): @@ -38439,7 +37414,7 @@ def device_approvals_remove_exception(cls, val): :param DeviceApprovalsRemoveExceptionType val: :rtype: EventType """ - return cls("device_approvals_remove_exception", val) + return cls('device_approvals_remove_exception', val) @classmethod def directory_restrictions_add_members(cls, val): @@ -38450,7 +37425,7 @@ def directory_restrictions_add_members(cls, val): :param DirectoryRestrictionsAddMembersType val: :rtype: EventType """ - return cls("directory_restrictions_add_members", val) + return cls('directory_restrictions_add_members', val) @classmethod def directory_restrictions_remove_members(cls, val): @@ -38461,7 +37436,7 @@ def directory_restrictions_remove_members(cls, val): :param DirectoryRestrictionsRemoveMembersType val: :rtype: EventType """ - return cls("directory_restrictions_remove_members", val) + return cls('directory_restrictions_remove_members', val) @classmethod def dropbox_passwords_policy_changed(cls, val): @@ -38472,7 +37447,7 @@ def dropbox_passwords_policy_changed(cls, val): :param DropboxPasswordsPolicyChangedType val: :rtype: EventType """ - return cls("dropbox_passwords_policy_changed", val) + return cls('dropbox_passwords_policy_changed', val) @classmethod def email_ingest_policy_changed(cls, val): @@ -38483,7 +37458,7 @@ def email_ingest_policy_changed(cls, val): :param EmailIngestPolicyChangedType val: :rtype: EventType """ - return cls("email_ingest_policy_changed", val) + return cls('email_ingest_policy_changed', val) @classmethod def emm_add_exception(cls, val): @@ -38494,7 +37469,7 @@ def emm_add_exception(cls, val): :param EmmAddExceptionType val: :rtype: EventType """ - return cls("emm_add_exception", val) + return cls('emm_add_exception', val) @classmethod def emm_change_policy(cls, val): @@ -38505,7 +37480,7 @@ def emm_change_policy(cls, val): :param EmmChangePolicyType val: :rtype: EventType """ - return cls("emm_change_policy", val) + return cls('emm_change_policy', val) @classmethod def emm_remove_exception(cls, val): @@ -38516,7 +37491,7 @@ def emm_remove_exception(cls, val): :param EmmRemoveExceptionType val: :rtype: EventType """ - return cls("emm_remove_exception", val) + return cls('emm_remove_exception', val) @classmethod def extended_version_history_change_policy(cls, val): @@ -38527,7 +37502,7 @@ def extended_version_history_change_policy(cls, val): :param ExtendedVersionHistoryChangePolicyType val: :rtype: EventType """ - return cls("extended_version_history_change_policy", val) + return cls('extended_version_history_change_policy', val) @classmethod def external_drive_backup_policy_changed(cls, val): @@ -38538,7 +37513,7 @@ def external_drive_backup_policy_changed(cls, val): :param ExternalDriveBackupPolicyChangedType val: :rtype: EventType """ - return cls("external_drive_backup_policy_changed", val) + return cls('external_drive_backup_policy_changed', val) @classmethod def file_comments_change_policy(cls, val): @@ -38549,7 +37524,7 @@ def file_comments_change_policy(cls, val): :param FileCommentsChangePolicyType val: :rtype: EventType """ - return cls("file_comments_change_policy", val) + return cls('file_comments_change_policy', val) @classmethod def file_locking_policy_changed(cls, val): @@ -38560,7 +37535,7 @@ def file_locking_policy_changed(cls, val): :param FileLockingPolicyChangedType val: :rtype: EventType """ - return cls("file_locking_policy_changed", val) + return cls('file_locking_policy_changed', val) @classmethod def file_provider_migration_policy_changed(cls, val): @@ -38571,7 +37546,7 @@ def file_provider_migration_policy_changed(cls, val): :param FileProviderMigrationPolicyChangedType val: :rtype: EventType """ - return cls("file_provider_migration_policy_changed", val) + return cls('file_provider_migration_policy_changed', val) @classmethod def file_requests_change_policy(cls, val): @@ -38582,7 +37557,7 @@ def file_requests_change_policy(cls, val): :param FileRequestsChangePolicyType val: :rtype: EventType """ - return cls("file_requests_change_policy", val) + return cls('file_requests_change_policy', val) @classmethod def file_requests_emails_enabled(cls, val): @@ -38593,7 +37568,7 @@ def file_requests_emails_enabled(cls, val): :param FileRequestsEmailsEnabledType val: :rtype: EventType """ - return cls("file_requests_emails_enabled", val) + return cls('file_requests_emails_enabled', val) @classmethod def file_requests_emails_restricted_to_team_only(cls, val): @@ -38604,7 +37579,7 @@ def file_requests_emails_restricted_to_team_only(cls, val): :param FileRequestsEmailsRestrictedToTeamOnlyType val: :rtype: EventType """ - return cls("file_requests_emails_restricted_to_team_only", val) + return cls('file_requests_emails_restricted_to_team_only', val) @classmethod def file_transfers_policy_changed(cls, val): @@ -38615,7 +37590,7 @@ def file_transfers_policy_changed(cls, val): :param FileTransfersPolicyChangedType val: :rtype: EventType """ - return cls("file_transfers_policy_changed", val) + return cls('file_transfers_policy_changed', val) @classmethod def flexible_file_names_policy_changed(cls, val): @@ -38626,7 +37601,7 @@ def flexible_file_names_policy_changed(cls, val): :param FlexibleFileNamesPolicyChangedType val: :rtype: EventType """ - return cls("flexible_file_names_policy_changed", val) + return cls('flexible_file_names_policy_changed', val) @classmethod def folder_link_restriction_policy_changed(cls, val): @@ -38637,7 +37612,7 @@ def folder_link_restriction_policy_changed(cls, val): :param FolderLinkRestrictionPolicyChangedType val: :rtype: EventType """ - return cls("folder_link_restriction_policy_changed", val) + return cls('folder_link_restriction_policy_changed', val) @classmethod def google_sso_change_policy(cls, val): @@ -38648,7 +37623,7 @@ def google_sso_change_policy(cls, val): :param GoogleSsoChangePolicyType val: :rtype: EventType """ - return cls("google_sso_change_policy", val) + return cls('google_sso_change_policy', val) @classmethod def group_user_management_change_policy(cls, val): @@ -38659,7 +37634,7 @@ def group_user_management_change_policy(cls, val): :param GroupUserManagementChangePolicyType val: :rtype: EventType """ - return cls("group_user_management_change_policy", val) + return cls('group_user_management_change_policy', val) @classmethod def integration_policy_changed(cls, val): @@ -38670,7 +37645,7 @@ def integration_policy_changed(cls, val): :param IntegrationPolicyChangedType val: :rtype: EventType """ - return cls("integration_policy_changed", val) + return cls('integration_policy_changed', val) @classmethod def invite_acceptance_email_policy_changed(cls, val): @@ -38681,7 +37656,7 @@ def invite_acceptance_email_policy_changed(cls, val): :param InviteAcceptanceEmailPolicyChangedType val: :rtype: EventType """ - return cls("invite_acceptance_email_policy_changed", val) + return cls('invite_acceptance_email_policy_changed', val) @classmethod def media_hub_adding_people_policy_changed(cls, val): @@ -38692,7 +37667,7 @@ def media_hub_adding_people_policy_changed(cls, val): :param MediaHubAddingPeoplePolicyChangedType val: :rtype: EventType """ - return cls("media_hub_adding_people_policy_changed", val) + return cls('media_hub_adding_people_policy_changed', val) @classmethod def media_hub_download_policy_changed(cls, val): @@ -38703,7 +37678,7 @@ def media_hub_download_policy_changed(cls, val): :param MediaHubDownloadPolicyChangedType val: :rtype: EventType """ - return cls("media_hub_download_policy_changed", val) + return cls('media_hub_download_policy_changed', val) @classmethod def media_hub_link_sharing_policy_changed(cls, val): @@ -38714,7 +37689,7 @@ def media_hub_link_sharing_policy_changed(cls, val): :param MediaHubLinkSharingPolicyChangedType val: :rtype: EventType """ - return cls("media_hub_link_sharing_policy_changed", val) + return cls('media_hub_link_sharing_policy_changed', val) @classmethod def member_requests_change_policy(cls, val): @@ -38725,7 +37700,7 @@ def member_requests_change_policy(cls, val): :param MemberRequestsChangePolicyType val: :rtype: EventType """ - return cls("member_requests_change_policy", val) + return cls('member_requests_change_policy', val) @classmethod def member_send_invite_policy_changed(cls, val): @@ -38736,7 +37711,7 @@ def member_send_invite_policy_changed(cls, val): :param MemberSendInvitePolicyChangedType val: :rtype: EventType """ - return cls("member_send_invite_policy_changed", val) + return cls('member_send_invite_policy_changed', val) @classmethod def member_space_limits_add_exception(cls, val): @@ -38747,7 +37722,7 @@ def member_space_limits_add_exception(cls, val): :param MemberSpaceLimitsAddExceptionType val: :rtype: EventType """ - return cls("member_space_limits_add_exception", val) + return cls('member_space_limits_add_exception', val) @classmethod def member_space_limits_change_caps_type_policy(cls, val): @@ -38758,7 +37733,7 @@ def member_space_limits_change_caps_type_policy(cls, val): :param MemberSpaceLimitsChangeCapsTypePolicyType val: :rtype: EventType """ - return cls("member_space_limits_change_caps_type_policy", val) + return cls('member_space_limits_change_caps_type_policy', val) @classmethod def member_space_limits_change_policy(cls, val): @@ -38769,7 +37744,7 @@ def member_space_limits_change_policy(cls, val): :param MemberSpaceLimitsChangePolicyType val: :rtype: EventType """ - return cls("member_space_limits_change_policy", val) + return cls('member_space_limits_change_policy', val) @classmethod def member_space_limits_remove_exception(cls, val): @@ -38780,7 +37755,7 @@ def member_space_limits_remove_exception(cls, val): :param MemberSpaceLimitsRemoveExceptionType val: :rtype: EventType """ - return cls("member_space_limits_remove_exception", val) + return cls('member_space_limits_remove_exception', val) @classmethod def member_suggestions_change_policy(cls, val): @@ -38791,7 +37766,7 @@ def member_suggestions_change_policy(cls, val): :param MemberSuggestionsChangePolicyType val: :rtype: EventType """ - return cls("member_suggestions_change_policy", val) + return cls('member_suggestions_change_policy', val) @classmethod def microsoft_login_change_policy(cls, val): @@ -38802,7 +37777,7 @@ def microsoft_login_change_policy(cls, val): :param MicrosoftLoginChangePolicyType val: :rtype: EventType """ - return cls("microsoft_login_change_policy", val) + return cls('microsoft_login_change_policy', val) @classmethod def microsoft_office_addin_change_policy(cls, val): @@ -38813,7 +37788,7 @@ def microsoft_office_addin_change_policy(cls, val): :param MicrosoftOfficeAddinChangePolicyType val: :rtype: EventType """ - return cls("microsoft_office_addin_change_policy", val) + return cls('microsoft_office_addin_change_policy', val) @classmethod def multi_team_identity_policy_changed(cls, val): @@ -38824,7 +37799,7 @@ def multi_team_identity_policy_changed(cls, val): :param MultiTeamIdentityPolicyChangedType val: :rtype: EventType """ - return cls("multi_team_identity_policy_changed", val) + return cls('multi_team_identity_policy_changed', val) @classmethod def network_control_change_policy(cls, val): @@ -38835,7 +37810,7 @@ def network_control_change_policy(cls, val): :param NetworkControlChangePolicyType val: :rtype: EventType """ - return cls("network_control_change_policy", val) + return cls('network_control_change_policy', val) @classmethod def paper_change_deployment_policy(cls, val): @@ -38846,7 +37821,7 @@ def paper_change_deployment_policy(cls, val): :param PaperChangeDeploymentPolicyType val: :rtype: EventType """ - return cls("paper_change_deployment_policy", val) + return cls('paper_change_deployment_policy', val) @classmethod def paper_change_member_link_policy(cls, val): @@ -38857,7 +37832,7 @@ def paper_change_member_link_policy(cls, val): :param PaperChangeMemberLinkPolicyType val: :rtype: EventType """ - return cls("paper_change_member_link_policy", val) + return cls('paper_change_member_link_policy', val) @classmethod def paper_change_member_policy(cls, val): @@ -38868,7 +37843,7 @@ def paper_change_member_policy(cls, val): :param PaperChangeMemberPolicyType val: :rtype: EventType """ - return cls("paper_change_member_policy", val) + return cls('paper_change_member_policy', val) @classmethod def paper_change_policy(cls, val): @@ -38879,7 +37854,7 @@ def paper_change_policy(cls, val): :param PaperChangePolicyType val: :rtype: EventType """ - return cls("paper_change_policy", val) + return cls('paper_change_policy', val) @classmethod def paper_default_folder_policy_changed(cls, val): @@ -38890,7 +37865,7 @@ def paper_default_folder_policy_changed(cls, val): :param PaperDefaultFolderPolicyChangedType val: :rtype: EventType """ - return cls("paper_default_folder_policy_changed", val) + return cls('paper_default_folder_policy_changed', val) @classmethod def paper_desktop_policy_changed(cls, val): @@ -38901,7 +37876,7 @@ def paper_desktop_policy_changed(cls, val): :param PaperDesktopPolicyChangedType val: :rtype: EventType """ - return cls("paper_desktop_policy_changed", val) + return cls('paper_desktop_policy_changed', val) @classmethod def paper_enabled_users_group_addition(cls, val): @@ -38912,7 +37887,7 @@ def paper_enabled_users_group_addition(cls, val): :param PaperEnabledUsersGroupAdditionType val: :rtype: EventType """ - return cls("paper_enabled_users_group_addition", val) + return cls('paper_enabled_users_group_addition', val) @classmethod def paper_enabled_users_group_removal(cls, val): @@ -38923,7 +37898,7 @@ def paper_enabled_users_group_removal(cls, val): :param PaperEnabledUsersGroupRemovalType val: :rtype: EventType """ - return cls("paper_enabled_users_group_removal", val) + return cls('paper_enabled_users_group_removal', val) @classmethod def passkey_login_policy_changed(cls, val): @@ -38934,7 +37909,7 @@ def passkey_login_policy_changed(cls, val): :param PasskeyLoginPolicyChangedType val: :rtype: EventType """ - return cls("passkey_login_policy_changed", val) + return cls('passkey_login_policy_changed', val) @classmethod def password_strength_requirements_change_policy(cls, val): @@ -38945,7 +37920,7 @@ def password_strength_requirements_change_policy(cls, val): :param PasswordStrengthRequirementsChangePolicyType val: :rtype: EventType """ - return cls("password_strength_requirements_change_policy", val) + return cls('password_strength_requirements_change_policy', val) @classmethod def permanent_delete_change_policy(cls, val): @@ -38956,7 +37931,7 @@ def permanent_delete_change_policy(cls, val): :param PermanentDeleteChangePolicyType val: :rtype: EventType """ - return cls("permanent_delete_change_policy", val) + return cls('permanent_delete_change_policy', val) @classmethod def previews_ai_policy_changed(cls, val): @@ -38967,7 +37942,7 @@ def previews_ai_policy_changed(cls, val): :param PreviewsAiPolicyChangedType val: :rtype: EventType """ - return cls("previews_ai_policy_changed", val) + return cls('previews_ai_policy_changed', val) @classmethod def replay_adding_people_policy_changed(cls, val): @@ -38978,7 +37953,7 @@ def replay_adding_people_policy_changed(cls, val): :param ReplayAddingPeoplePolicyChangedType val: :rtype: EventType """ - return cls("replay_adding_people_policy_changed", val) + return cls('replay_adding_people_policy_changed', val) @classmethod def replay_sharing_policy_changed(cls, val): @@ -38989,7 +37964,7 @@ def replay_sharing_policy_changed(cls, val): :param ReplaySharingPolicyChangedType val: :rtype: EventType """ - return cls("replay_sharing_policy_changed", val) + return cls('replay_sharing_policy_changed', val) @classmethod def reseller_support_change_policy(cls, val): @@ -39000,7 +37975,7 @@ def reseller_support_change_policy(cls, val): :param ResellerSupportChangePolicyType val: :rtype: EventType """ - return cls("reseller_support_change_policy", val) + return cls('reseller_support_change_policy', val) @classmethod def rewind_policy_changed(cls, val): @@ -39011,7 +37986,7 @@ def rewind_policy_changed(cls, val): :param RewindPolicyChangedType val: :rtype: EventType """ - return cls("rewind_policy_changed", val) + return cls('rewind_policy_changed', val) @classmethod def send_and_track_policy_changed(cls, val): @@ -39022,7 +37997,7 @@ def send_and_track_policy_changed(cls, val): :param SendAndTrackPolicyChangedType val: :rtype: EventType """ - return cls("send_and_track_policy_changed", val) + return cls('send_and_track_policy_changed', val) @classmethod def send_external_sharing_policy_changed(cls, val): @@ -39033,7 +38008,7 @@ def send_external_sharing_policy_changed(cls, val): :param SendExternalSharingPolicyChangedType val: :rtype: EventType """ - return cls("send_external_sharing_policy_changed", val) + return cls('send_external_sharing_policy_changed', val) @classmethod def send_for_signature_policy_changed(cls, val): @@ -39044,7 +38019,7 @@ def send_for_signature_policy_changed(cls, val): :param SendForSignaturePolicyChangedType val: :rtype: EventType """ - return cls("send_for_signature_policy_changed", val) + return cls('send_for_signature_policy_changed', val) @classmethod def shared_link_default_permissions_policy_changed(cls, val): @@ -39056,7 +38031,7 @@ def shared_link_default_permissions_policy_changed(cls, val): :param SharedLinkDefaultPermissionsPolicyChangedType val: :rtype: EventType """ - return cls("shared_link_default_permissions_policy_changed", val) + return cls('shared_link_default_permissions_policy_changed', val) @classmethod def sharing_change_folder_join_policy(cls, val): @@ -39067,7 +38042,7 @@ def sharing_change_folder_join_policy(cls, val): :param SharingChangeFolderJoinPolicyType val: :rtype: EventType """ - return cls("sharing_change_folder_join_policy", val) + return cls('sharing_change_folder_join_policy', val) @classmethod def sharing_change_link_allow_change_expiration_policy(cls, val): @@ -39079,7 +38054,7 @@ def sharing_change_link_allow_change_expiration_policy(cls, val): :param SharingChangeLinkAllowChangeExpirationPolicyType val: :rtype: EventType """ - return cls("sharing_change_link_allow_change_expiration_policy", val) + return cls('sharing_change_link_allow_change_expiration_policy', val) @classmethod def sharing_change_link_default_expiration_policy(cls, val): @@ -39091,7 +38066,7 @@ def sharing_change_link_default_expiration_policy(cls, val): :param SharingChangeLinkDefaultExpirationPolicyType val: :rtype: EventType """ - return cls("sharing_change_link_default_expiration_policy", val) + return cls('sharing_change_link_default_expiration_policy', val) @classmethod def sharing_change_link_enforce_password_policy(cls, val): @@ -39102,7 +38077,7 @@ def sharing_change_link_enforce_password_policy(cls, val): :param SharingChangeLinkEnforcePasswordPolicyType val: :rtype: EventType """ - return cls("sharing_change_link_enforce_password_policy", val) + return cls('sharing_change_link_enforce_password_policy', val) @classmethod def sharing_change_link_policy(cls, val): @@ -39113,7 +38088,7 @@ def sharing_change_link_policy(cls, val): :param SharingChangeLinkPolicyType val: :rtype: EventType """ - return cls("sharing_change_link_policy", val) + return cls('sharing_change_link_policy', val) @classmethod def sharing_change_member_policy(cls, val): @@ -39124,7 +38099,7 @@ def sharing_change_member_policy(cls, val): :param SharingChangeMemberPolicyType val: :rtype: EventType """ - return cls("sharing_change_member_policy", val) + return cls('sharing_change_member_policy', val) @classmethod def showcase_change_download_policy(cls, val): @@ -39135,7 +38110,7 @@ def showcase_change_download_policy(cls, val): :param ShowcaseChangeDownloadPolicyType val: :rtype: EventType """ - return cls("showcase_change_download_policy", val) + return cls('showcase_change_download_policy', val) @classmethod def showcase_change_enabled_policy(cls, val): @@ -39146,7 +38121,7 @@ def showcase_change_enabled_policy(cls, val): :param ShowcaseChangeEnabledPolicyType val: :rtype: EventType """ - return cls("showcase_change_enabled_policy", val) + return cls('showcase_change_enabled_policy', val) @classmethod def showcase_change_external_sharing_policy(cls, val): @@ -39157,7 +38132,7 @@ def showcase_change_external_sharing_policy(cls, val): :param ShowcaseChangeExternalSharingPolicyType val: :rtype: EventType """ - return cls("showcase_change_external_sharing_policy", val) + return cls('showcase_change_external_sharing_policy', val) @classmethod def sign_external_sharing_policy_changed(cls, val): @@ -39168,7 +38143,7 @@ def sign_external_sharing_policy_changed(cls, val): :param SignExternalSharingPolicyChangedType val: :rtype: EventType """ - return cls("sign_external_sharing_policy_changed", val) + return cls('sign_external_sharing_policy_changed', val) @classmethod def sign_template_creation_permission_changed(cls, val): @@ -39179,7 +38154,7 @@ def sign_template_creation_permission_changed(cls, val): :param SignTemplateCreationPermissionChangedType val: :rtype: EventType """ - return cls("sign_template_creation_permission_changed", val) + return cls('sign_template_creation_permission_changed', val) @classmethod def smarter_smart_sync_policy_changed(cls, val): @@ -39190,7 +38165,7 @@ def smarter_smart_sync_policy_changed(cls, val): :param SmarterSmartSyncPolicyChangedType val: :rtype: EventType """ - return cls("smarter_smart_sync_policy_changed", val) + return cls('smarter_smart_sync_policy_changed', val) @classmethod def smart_sync_change_policy(cls, val): @@ -39201,7 +38176,7 @@ def smart_sync_change_policy(cls, val): :param SmartSyncChangePolicyType val: :rtype: EventType """ - return cls("smart_sync_change_policy", val) + return cls('smart_sync_change_policy', val) @classmethod def smart_sync_not_opt_out(cls, val): @@ -39212,7 +38187,7 @@ def smart_sync_not_opt_out(cls, val): :param SmartSyncNotOptOutType val: :rtype: EventType """ - return cls("smart_sync_not_opt_out", val) + return cls('smart_sync_not_opt_out', val) @classmethod def smart_sync_opt_out(cls, val): @@ -39223,7 +38198,7 @@ def smart_sync_opt_out(cls, val): :param SmartSyncOptOutType val: :rtype: EventType """ - return cls("smart_sync_opt_out", val) + return cls('smart_sync_opt_out', val) @classmethod def sso_change_policy(cls, val): @@ -39234,7 +38209,7 @@ def sso_change_policy(cls, val): :param SsoChangePolicyType val: :rtype: EventType """ - return cls("sso_change_policy", val) + return cls('sso_change_policy', val) @classmethod def stack_cross_team_access_policy_changed(cls, val): @@ -39245,7 +38220,7 @@ def stack_cross_team_access_policy_changed(cls, val): :param StackCrossTeamAccessPolicyChangedType val: :rtype: EventType """ - return cls("stack_cross_team_access_policy_changed", val) + return cls('stack_cross_team_access_policy_changed', val) @classmethod def team_branding_policy_changed(cls, val): @@ -39256,7 +38231,7 @@ def team_branding_policy_changed(cls, val): :param TeamBrandingPolicyChangedType val: :rtype: EventType """ - return cls("team_branding_policy_changed", val) + return cls('team_branding_policy_changed', val) @classmethod def team_extensions_policy_changed(cls, val): @@ -39267,7 +38242,7 @@ def team_extensions_policy_changed(cls, val): :param TeamExtensionsPolicyChangedType val: :rtype: EventType """ - return cls("team_extensions_policy_changed", val) + return cls('team_extensions_policy_changed', val) @classmethod def team_member_storage_request_policy_changed(cls, val): @@ -39278,7 +38253,7 @@ def team_member_storage_request_policy_changed(cls, val): :param TeamMemberStorageRequestPolicyChangedType val: :rtype: EventType """ - return cls("team_member_storage_request_policy_changed", val) + return cls('team_member_storage_request_policy_changed', val) @classmethod def team_selective_sync_policy_changed(cls, val): @@ -39289,7 +38264,7 @@ def team_selective_sync_policy_changed(cls, val): :param TeamSelectiveSyncPolicyChangedType val: :rtype: EventType """ - return cls("team_selective_sync_policy_changed", val) + return cls('team_selective_sync_policy_changed', val) @classmethod def team_sharing_whitelist_subjects_changed(cls, val): @@ -39300,7 +38275,7 @@ def team_sharing_whitelist_subjects_changed(cls, val): :param TeamSharingWhitelistSubjectsChangedType val: :rtype: EventType """ - return cls("team_sharing_whitelist_subjects_changed", val) + return cls('team_sharing_whitelist_subjects_changed', val) @classmethod def tfa_add_exception(cls, val): @@ -39311,7 +38286,7 @@ def tfa_add_exception(cls, val): :param TfaAddExceptionType val: :rtype: EventType """ - return cls("tfa_add_exception", val) + return cls('tfa_add_exception', val) @classmethod def tfa_change_policy(cls, val): @@ -39322,7 +38297,7 @@ def tfa_change_policy(cls, val): :param TfaChangePolicyType val: :rtype: EventType """ - return cls("tfa_change_policy", val) + return cls('tfa_change_policy', val) @classmethod def tfa_remove_exception(cls, val): @@ -39333,7 +38308,7 @@ def tfa_remove_exception(cls, val): :param TfaRemoveExceptionType val: :rtype: EventType """ - return cls("tfa_remove_exception", val) + return cls('tfa_remove_exception', val) @classmethod def top_level_content_policy_changed(cls, val): @@ -39344,7 +38319,7 @@ def top_level_content_policy_changed(cls, val): :param TopLevelContentPolicyChangedType val: :rtype: EventType """ - return cls("top_level_content_policy_changed", val) + return cls('top_level_content_policy_changed', val) @classmethod def two_account_change_policy(cls, val): @@ -39355,7 +38330,7 @@ def two_account_change_policy(cls, val): :param TwoAccountChangePolicyType val: :rtype: EventType """ - return cls("two_account_change_policy", val) + return cls('two_account_change_policy', val) @classmethod def viewer_info_policy_changed(cls, val): @@ -39366,7 +38341,7 @@ def viewer_info_policy_changed(cls, val): :param ViewerInfoPolicyChangedType val: :rtype: EventType """ - return cls("viewer_info_policy_changed", val) + return cls('viewer_info_policy_changed', val) @classmethod def watermarking_policy_changed(cls, val): @@ -39377,7 +38352,7 @@ def watermarking_policy_changed(cls, val): :param WatermarkingPolicyChangedType val: :rtype: EventType """ - return cls("watermarking_policy_changed", val) + return cls('watermarking_policy_changed', val) @classmethod def web_sessions_change_active_session_limit(cls, val): @@ -39388,7 +38363,7 @@ def web_sessions_change_active_session_limit(cls, val): :param WebSessionsChangeActiveSessionLimitType val: :rtype: EventType """ - return cls("web_sessions_change_active_session_limit", val) + return cls('web_sessions_change_active_session_limit', val) @classmethod def web_sessions_change_fixed_length_policy(cls, val): @@ -39399,7 +38374,7 @@ def web_sessions_change_fixed_length_policy(cls, val): :param WebSessionsChangeFixedLengthPolicyType val: :rtype: EventType """ - return cls("web_sessions_change_fixed_length_policy", val) + return cls('web_sessions_change_fixed_length_policy', val) @classmethod def web_sessions_change_idle_length_policy(cls, val): @@ -39410,7 +38385,7 @@ def web_sessions_change_idle_length_policy(cls, val): :param WebSessionsChangeIdleLengthPolicyType val: :rtype: EventType """ - return cls("web_sessions_change_idle_length_policy", val) + return cls('web_sessions_change_idle_length_policy', val) @classmethod def data_residency_migration_request_successful(cls, val): @@ -39421,7 +38396,7 @@ def data_residency_migration_request_successful(cls, val): :param DataResidencyMigrationRequestSuccessfulType val: :rtype: EventType """ - return cls("data_residency_migration_request_successful", val) + return cls('data_residency_migration_request_successful', val) @classmethod def data_residency_migration_request_unsuccessful(cls, val): @@ -39433,7 +38408,7 @@ def data_residency_migration_request_unsuccessful(cls, val): :param DataResidencyMigrationRequestUnsuccessfulType val: :rtype: EventType """ - return cls("data_residency_migration_request_unsuccessful", val) + return cls('data_residency_migration_request_unsuccessful', val) @classmethod def team_merge_from(cls, val): @@ -39444,7 +38419,7 @@ def team_merge_from(cls, val): :param TeamMergeFromType val: :rtype: EventType """ - return cls("team_merge_from", val) + return cls('team_merge_from', val) @classmethod def team_merge_to(cls, val): @@ -39455,7 +38430,7 @@ def team_merge_to(cls, val): :param TeamMergeToType val: :rtype: EventType """ - return cls("team_merge_to", val) + return cls('team_merge_to', val) @classmethod def team_profile_add_background(cls, val): @@ -39466,7 +38441,7 @@ def team_profile_add_background(cls, val): :param TeamProfileAddBackgroundType val: :rtype: EventType """ - return cls("team_profile_add_background", val) + return cls('team_profile_add_background', val) @classmethod def team_profile_add_logo(cls, val): @@ -39477,7 +38452,7 @@ def team_profile_add_logo(cls, val): :param TeamProfileAddLogoType val: :rtype: EventType """ - return cls("team_profile_add_logo", val) + return cls('team_profile_add_logo', val) @classmethod def team_profile_change_background(cls, val): @@ -39488,7 +38463,7 @@ def team_profile_change_background(cls, val): :param TeamProfileChangeBackgroundType val: :rtype: EventType """ - return cls("team_profile_change_background", val) + return cls('team_profile_change_background', val) @classmethod def team_profile_change_default_language(cls, val): @@ -39499,7 +38474,7 @@ def team_profile_change_default_language(cls, val): :param TeamProfileChangeDefaultLanguageType val: :rtype: EventType """ - return cls("team_profile_change_default_language", val) + return cls('team_profile_change_default_language', val) @classmethod def team_profile_change_logo(cls, val): @@ -39510,7 +38485,7 @@ def team_profile_change_logo(cls, val): :param TeamProfileChangeLogoType val: :rtype: EventType """ - return cls("team_profile_change_logo", val) + return cls('team_profile_change_logo', val) @classmethod def team_profile_change_name(cls, val): @@ -39521,7 +38496,7 @@ def team_profile_change_name(cls, val): :param TeamProfileChangeNameType val: :rtype: EventType """ - return cls("team_profile_change_name", val) + return cls('team_profile_change_name', val) @classmethod def team_profile_remove_background(cls, val): @@ -39532,7 +38507,7 @@ def team_profile_remove_background(cls, val): :param TeamProfileRemoveBackgroundType val: :rtype: EventType """ - return cls("team_profile_remove_background", val) + return cls('team_profile_remove_background', val) @classmethod def team_profile_remove_logo(cls, val): @@ -39543,7 +38518,7 @@ def team_profile_remove_logo(cls, val): :param TeamProfileRemoveLogoType val: :rtype: EventType """ - return cls("team_profile_remove_logo", val) + return cls('team_profile_remove_logo', val) @classmethod def passkey_add(cls, val): @@ -39554,7 +38529,7 @@ def passkey_add(cls, val): :param PasskeyAddType val: :rtype: EventType """ - return cls("passkey_add", val) + return cls('passkey_add', val) @classmethod def passkey_remove(cls, val): @@ -39565,7 +38540,7 @@ def passkey_remove(cls, val): :param PasskeyRemoveType val: :rtype: EventType """ - return cls("passkey_remove", val) + return cls('passkey_remove', val) @classmethod def tfa_add_backup_phone(cls, val): @@ -39576,7 +38551,7 @@ def tfa_add_backup_phone(cls, val): :param TfaAddBackupPhoneType val: :rtype: EventType """ - return cls("tfa_add_backup_phone", val) + return cls('tfa_add_backup_phone', val) @classmethod def tfa_add_security_key(cls, val): @@ -39587,7 +38562,7 @@ def tfa_add_security_key(cls, val): :param TfaAddSecurityKeyType val: :rtype: EventType """ - return cls("tfa_add_security_key", val) + return cls('tfa_add_security_key', val) @classmethod def tfa_change_backup_phone(cls, val): @@ -39598,7 +38573,7 @@ def tfa_change_backup_phone(cls, val): :param TfaChangeBackupPhoneType val: :rtype: EventType """ - return cls("tfa_change_backup_phone", val) + return cls('tfa_change_backup_phone', val) @classmethod def tfa_change_status(cls, val): @@ -39609,7 +38584,7 @@ def tfa_change_status(cls, val): :param TfaChangeStatusType val: :rtype: EventType """ - return cls("tfa_change_status", val) + return cls('tfa_change_status', val) @classmethod def tfa_remove_backup_phone(cls, val): @@ -39620,7 +38595,7 @@ def tfa_remove_backup_phone(cls, val): :param TfaRemoveBackupPhoneType val: :rtype: EventType """ - return cls("tfa_remove_backup_phone", val) + return cls('tfa_remove_backup_phone', val) @classmethod def tfa_remove_security_key(cls, val): @@ -39631,7 +38606,7 @@ def tfa_remove_security_key(cls, val): :param TfaRemoveSecurityKeyType val: :rtype: EventType """ - return cls("tfa_remove_security_key", val) + return cls('tfa_remove_security_key', val) @classmethod def tfa_reset(cls, val): @@ -39642,7 +38617,7 @@ def tfa_reset(cls, val): :param TfaResetType val: :rtype: EventType """ - return cls("tfa_reset", val) + return cls('tfa_reset', val) @classmethod def changed_enterprise_admin_role(cls, val): @@ -39653,7 +38628,7 @@ def changed_enterprise_admin_role(cls, val): :param ChangedEnterpriseAdminRoleType val: :rtype: EventType """ - return cls("changed_enterprise_admin_role", val) + return cls('changed_enterprise_admin_role', val) @classmethod def changed_enterprise_connected_team_status(cls, val): @@ -39664,7 +38639,7 @@ def changed_enterprise_connected_team_status(cls, val): :param ChangedEnterpriseConnectedTeamStatusType val: :rtype: EventType """ - return cls("changed_enterprise_connected_team_status", val) + return cls('changed_enterprise_connected_team_status', val) @classmethod def ended_enterprise_admin_session(cls, val): @@ -39675,7 +38650,7 @@ def ended_enterprise_admin_session(cls, val): :param EndedEnterpriseAdminSessionType val: :rtype: EventType """ - return cls("ended_enterprise_admin_session", val) + return cls('ended_enterprise_admin_session', val) @classmethod def ended_enterprise_admin_session_deprecated(cls, val): @@ -39686,7 +38661,7 @@ def ended_enterprise_admin_session_deprecated(cls, val): :param EndedEnterpriseAdminSessionDeprecatedType val: :rtype: EventType """ - return cls("ended_enterprise_admin_session_deprecated", val) + return cls('ended_enterprise_admin_session_deprecated', val) @classmethod def enterprise_settings_locking(cls, val): @@ -39697,7 +38672,7 @@ def enterprise_settings_locking(cls, val): :param EnterpriseSettingsLockingType val: :rtype: EventType """ - return cls("enterprise_settings_locking", val) + return cls('enterprise_settings_locking', val) @classmethod def guest_admin_change_status(cls, val): @@ -39708,7 +38683,7 @@ def guest_admin_change_status(cls, val): :param GuestAdminChangeStatusType val: :rtype: EventType """ - return cls("guest_admin_change_status", val) + return cls('guest_admin_change_status', val) @classmethod def started_enterprise_admin_session(cls, val): @@ -39719,7 +38694,7 @@ def started_enterprise_admin_session(cls, val): :param StartedEnterpriseAdminSessionType val: :rtype: EventType """ - return cls("started_enterprise_admin_session", val) + return cls('started_enterprise_admin_session', val) @classmethod def team_merge_request_accepted(cls, val): @@ -39730,7 +38705,7 @@ def team_merge_request_accepted(cls, val): :param TeamMergeRequestAcceptedType val: :rtype: EventType """ - return cls("team_merge_request_accepted", val) + return cls('team_merge_request_accepted', val) @classmethod def team_merge_request_accepted_shown_to_primary_team(cls, val): @@ -39742,7 +38717,7 @@ def team_merge_request_accepted_shown_to_primary_team(cls, val): :param TeamMergeRequestAcceptedShownToPrimaryTeamType val: :rtype: EventType """ - return cls("team_merge_request_accepted_shown_to_primary_team", val) + return cls('team_merge_request_accepted_shown_to_primary_team', val) @classmethod def team_merge_request_accepted_shown_to_secondary_team(cls, val): @@ -39754,7 +38729,7 @@ def team_merge_request_accepted_shown_to_secondary_team(cls, val): :param TeamMergeRequestAcceptedShownToSecondaryTeamType val: :rtype: EventType """ - return cls("team_merge_request_accepted_shown_to_secondary_team", val) + return cls('team_merge_request_accepted_shown_to_secondary_team', val) @classmethod def team_merge_request_auto_canceled(cls, val): @@ -39765,7 +38740,7 @@ def team_merge_request_auto_canceled(cls, val): :param TeamMergeRequestAutoCanceledType val: :rtype: EventType """ - return cls("team_merge_request_auto_canceled", val) + return cls('team_merge_request_auto_canceled', val) @classmethod def team_merge_request_canceled(cls, val): @@ -39776,7 +38751,7 @@ def team_merge_request_canceled(cls, val): :param TeamMergeRequestCanceledType val: :rtype: EventType """ - return cls("team_merge_request_canceled", val) + return cls('team_merge_request_canceled', val) @classmethod def team_merge_request_canceled_shown_to_primary_team(cls, val): @@ -39788,7 +38763,7 @@ def team_merge_request_canceled_shown_to_primary_team(cls, val): :param TeamMergeRequestCanceledShownToPrimaryTeamType val: :rtype: EventType """ - return cls("team_merge_request_canceled_shown_to_primary_team", val) + return cls('team_merge_request_canceled_shown_to_primary_team', val) @classmethod def team_merge_request_canceled_shown_to_secondary_team(cls, val): @@ -39800,7 +38775,7 @@ def team_merge_request_canceled_shown_to_secondary_team(cls, val): :param TeamMergeRequestCanceledShownToSecondaryTeamType val: :rtype: EventType """ - return cls("team_merge_request_canceled_shown_to_secondary_team", val) + return cls('team_merge_request_canceled_shown_to_secondary_team', val) @classmethod def team_merge_request_expired(cls, val): @@ -39811,7 +38786,7 @@ def team_merge_request_expired(cls, val): :param TeamMergeRequestExpiredType val: :rtype: EventType """ - return cls("team_merge_request_expired", val) + return cls('team_merge_request_expired', val) @classmethod def team_merge_request_expired_shown_to_primary_team(cls, val): @@ -39823,7 +38798,7 @@ def team_merge_request_expired_shown_to_primary_team(cls, val): :param TeamMergeRequestExpiredShownToPrimaryTeamType val: :rtype: EventType """ - return cls("team_merge_request_expired_shown_to_primary_team", val) + return cls('team_merge_request_expired_shown_to_primary_team', val) @classmethod def team_merge_request_expired_shown_to_secondary_team(cls, val): @@ -39835,7 +38810,7 @@ def team_merge_request_expired_shown_to_secondary_team(cls, val): :param TeamMergeRequestExpiredShownToSecondaryTeamType val: :rtype: EventType """ - return cls("team_merge_request_expired_shown_to_secondary_team", val) + return cls('team_merge_request_expired_shown_to_secondary_team', val) @classmethod def team_merge_request_rejected_shown_to_primary_team(cls, val): @@ -39847,7 +38822,7 @@ def team_merge_request_rejected_shown_to_primary_team(cls, val): :param TeamMergeRequestRejectedShownToPrimaryTeamType val: :rtype: EventType """ - return cls("team_merge_request_rejected_shown_to_primary_team", val) + return cls('team_merge_request_rejected_shown_to_primary_team', val) @classmethod def team_merge_request_rejected_shown_to_secondary_team(cls, val): @@ -39859,7 +38834,7 @@ def team_merge_request_rejected_shown_to_secondary_team(cls, val): :param TeamMergeRequestRejectedShownToSecondaryTeamType val: :rtype: EventType """ - return cls("team_merge_request_rejected_shown_to_secondary_team", val) + return cls('team_merge_request_rejected_shown_to_secondary_team', val) @classmethod def team_merge_request_reminder(cls, val): @@ -39870,7 +38845,7 @@ def team_merge_request_reminder(cls, val): :param TeamMergeRequestReminderType val: :rtype: EventType """ - return cls("team_merge_request_reminder", val) + return cls('team_merge_request_reminder', val) @classmethod def team_merge_request_reminder_shown_to_primary_team(cls, val): @@ -39882,7 +38857,7 @@ def team_merge_request_reminder_shown_to_primary_team(cls, val): :param TeamMergeRequestReminderShownToPrimaryTeamType val: :rtype: EventType """ - return cls("team_merge_request_reminder_shown_to_primary_team", val) + return cls('team_merge_request_reminder_shown_to_primary_team', val) @classmethod def team_merge_request_reminder_shown_to_secondary_team(cls, val): @@ -39894,7 +38869,7 @@ def team_merge_request_reminder_shown_to_secondary_team(cls, val): :param TeamMergeRequestReminderShownToSecondaryTeamType val: :rtype: EventType """ - return cls("team_merge_request_reminder_shown_to_secondary_team", val) + return cls('team_merge_request_reminder_shown_to_secondary_team', val) @classmethod def team_merge_request_revoked(cls, val): @@ -39905,7 +38880,7 @@ def team_merge_request_revoked(cls, val): :param TeamMergeRequestRevokedType val: :rtype: EventType """ - return cls("team_merge_request_revoked", val) + return cls('team_merge_request_revoked', val) @classmethod def team_merge_request_sent_shown_to_primary_team(cls, val): @@ -39917,7 +38892,7 @@ def team_merge_request_sent_shown_to_primary_team(cls, val): :param TeamMergeRequestSentShownToPrimaryTeamType val: :rtype: EventType """ - return cls("team_merge_request_sent_shown_to_primary_team", val) + return cls('team_merge_request_sent_shown_to_primary_team', val) @classmethod def team_merge_request_sent_shown_to_secondary_team(cls, val): @@ -39929,7 +38904,7 @@ def team_merge_request_sent_shown_to_secondary_team(cls, val): :param TeamMergeRequestSentShownToSecondaryTeamType val: :rtype: EventType """ - return cls("team_merge_request_sent_shown_to_secondary_team", val) + return cls('team_merge_request_sent_shown_to_secondary_team', val) def is_admin_alerting_alert_state_changed(self): """ @@ -39937,7 +38912,7 @@ def is_admin_alerting_alert_state_changed(self): :rtype: bool """ - return self._tag == "admin_alerting_alert_state_changed" + return self._tag == 'admin_alerting_alert_state_changed' def is_admin_alerting_changed_alert_config(self): """ @@ -39945,7 +38920,7 @@ def is_admin_alerting_changed_alert_config(self): :rtype: bool """ - return self._tag == "admin_alerting_changed_alert_config" + return self._tag == 'admin_alerting_changed_alert_config' def is_admin_alerting_triggered_alert(self): """ @@ -39953,7 +38928,7 @@ def is_admin_alerting_triggered_alert(self): :rtype: bool """ - return self._tag == "admin_alerting_triggered_alert" + return self._tag == 'admin_alerting_triggered_alert' def is_ransomware_restore_process_completed(self): """ @@ -39961,7 +38936,7 @@ def is_ransomware_restore_process_completed(self): :rtype: bool """ - return self._tag == "ransomware_restore_process_completed" + return self._tag == 'ransomware_restore_process_completed' def is_ransomware_restore_process_started(self): """ @@ -39969,7 +38944,7 @@ def is_ransomware_restore_process_started(self): :rtype: bool """ - return self._tag == "ransomware_restore_process_started" + return self._tag == 'ransomware_restore_process_started' def is_app_blocked_by_permissions(self): """ @@ -39977,7 +38952,7 @@ def is_app_blocked_by_permissions(self): :rtype: bool """ - return self._tag == "app_blocked_by_permissions" + return self._tag == 'app_blocked_by_permissions' def is_app_link_team(self): """ @@ -39985,7 +38960,7 @@ def is_app_link_team(self): :rtype: bool """ - return self._tag == "app_link_team" + return self._tag == 'app_link_team' def is_app_link_user(self): """ @@ -39993,7 +38968,7 @@ def is_app_link_user(self): :rtype: bool """ - return self._tag == "app_link_user" + return self._tag == 'app_link_user' def is_app_unlink_team(self): """ @@ -40001,7 +38976,7 @@ def is_app_unlink_team(self): :rtype: bool """ - return self._tag == "app_unlink_team" + return self._tag == 'app_unlink_team' def is_app_unlink_user(self): """ @@ -40009,7 +38984,7 @@ def is_app_unlink_user(self): :rtype: bool """ - return self._tag == "app_unlink_user" + return self._tag == 'app_unlink_user' def is_integration_connected(self): """ @@ -40017,7 +38992,7 @@ def is_integration_connected(self): :rtype: bool """ - return self._tag == "integration_connected" + return self._tag == 'integration_connected' def is_integration_disconnected(self): """ @@ -40025,7 +39000,7 @@ def is_integration_disconnected(self): :rtype: bool """ - return self._tag == "integration_disconnected" + return self._tag == 'integration_disconnected' def is_file_add_comment(self): """ @@ -40033,7 +39008,7 @@ def is_file_add_comment(self): :rtype: bool """ - return self._tag == "file_add_comment" + return self._tag == 'file_add_comment' def is_file_change_comment_subscription(self): """ @@ -40041,7 +39016,7 @@ def is_file_change_comment_subscription(self): :rtype: bool """ - return self._tag == "file_change_comment_subscription" + return self._tag == 'file_change_comment_subscription' def is_file_delete_comment(self): """ @@ -40049,7 +39024,7 @@ def is_file_delete_comment(self): :rtype: bool """ - return self._tag == "file_delete_comment" + return self._tag == 'file_delete_comment' def is_file_edit_comment(self): """ @@ -40057,7 +39032,7 @@ def is_file_edit_comment(self): :rtype: bool """ - return self._tag == "file_edit_comment" + return self._tag == 'file_edit_comment' def is_file_like_comment(self): """ @@ -40065,7 +39040,7 @@ def is_file_like_comment(self): :rtype: bool """ - return self._tag == "file_like_comment" + return self._tag == 'file_like_comment' def is_file_resolve_comment(self): """ @@ -40073,7 +39048,7 @@ def is_file_resolve_comment(self): :rtype: bool """ - return self._tag == "file_resolve_comment" + return self._tag == 'file_resolve_comment' def is_file_unlike_comment(self): """ @@ -40081,7 +39056,7 @@ def is_file_unlike_comment(self): :rtype: bool """ - return self._tag == "file_unlike_comment" + return self._tag == 'file_unlike_comment' def is_file_unresolve_comment(self): """ @@ -40089,7 +39064,7 @@ def is_file_unresolve_comment(self): :rtype: bool """ - return self._tag == "file_unresolve_comment" + return self._tag == 'file_unresolve_comment' def is_dash_added_comment_to_stack(self): """ @@ -40097,7 +39072,7 @@ def is_dash_added_comment_to_stack(self): :rtype: bool """ - return self._tag == "dash_added_comment_to_stack" + return self._tag == 'dash_added_comment_to_stack' def is_dash_added_connector(self): """ @@ -40105,7 +39080,7 @@ def is_dash_added_connector(self): :rtype: bool """ - return self._tag == "dash_added_connector" + return self._tag == 'dash_added_connector' def is_dash_added_link_to_stack(self): """ @@ -40113,7 +39088,7 @@ def is_dash_added_link_to_stack(self): :rtype: bool """ - return self._tag == "dash_added_link_to_stack" + return self._tag == 'dash_added_link_to_stack' def is_dash_added_team_email_domain_allowlist(self): """ @@ -40121,7 +39096,7 @@ def is_dash_added_team_email_domain_allowlist(self): :rtype: bool """ - return self._tag == "dash_added_team_email_domain_allowlist" + return self._tag == 'dash_added_team_email_domain_allowlist' def is_dash_admin_added_org_wide_connector(self): """ @@ -40129,7 +39104,7 @@ def is_dash_admin_added_org_wide_connector(self): :rtype: bool """ - return self._tag == "dash_admin_added_org_wide_connector" + return self._tag == 'dash_admin_added_org_wide_connector' def is_dash_admin_disabled_connector(self): """ @@ -40137,7 +39112,7 @@ def is_dash_admin_disabled_connector(self): :rtype: bool """ - return self._tag == "dash_admin_disabled_connector" + return self._tag == 'dash_admin_disabled_connector' def is_dash_admin_enabled_connector(self): """ @@ -40145,7 +39120,7 @@ def is_dash_admin_enabled_connector(self): :rtype: bool """ - return self._tag == "dash_admin_enabled_connector" + return self._tag == 'dash_admin_enabled_connector' def is_dash_admin_removed_org_wide_connector(self): """ @@ -40153,7 +39128,7 @@ def is_dash_admin_removed_org_wide_connector(self): :rtype: bool """ - return self._tag == "dash_admin_removed_org_wide_connector" + return self._tag == 'dash_admin_removed_org_wide_connector' def is_dash_archived_stack(self): """ @@ -40161,7 +39136,7 @@ def is_dash_archived_stack(self): :rtype: bool """ - return self._tag == "dash_archived_stack" + return self._tag == 'dash_archived_stack' def is_dash_changed_audience_of_shared_link_to_stack(self): """ @@ -40169,7 +39144,7 @@ def is_dash_changed_audience_of_shared_link_to_stack(self): :rtype: bool """ - return self._tag == "dash_changed_audience_of_shared_link_to_stack" + return self._tag == 'dash_changed_audience_of_shared_link_to_stack' def is_dash_cloned_stack(self): """ @@ -40177,7 +39152,7 @@ def is_dash_cloned_stack(self): :rtype: bool """ - return self._tag == "dash_cloned_stack" + return self._tag == 'dash_cloned_stack' def is_dash_connector_tools_call(self): """ @@ -40185,7 +39160,7 @@ def is_dash_connector_tools_call(self): :rtype: bool """ - return self._tag == "dash_connector_tools_call" + return self._tag == 'dash_connector_tools_call' def is_dash_created_stack(self): """ @@ -40193,7 +39168,7 @@ def is_dash_created_stack(self): :rtype: bool """ - return self._tag == "dash_created_stack" + return self._tag == 'dash_created_stack' def is_dash_deleted_comment_from_stack(self): """ @@ -40201,7 +39176,7 @@ def is_dash_deleted_comment_from_stack(self): :rtype: bool """ - return self._tag == "dash_deleted_comment_from_stack" + return self._tag == 'dash_deleted_comment_from_stack' def is_dash_deleted_stack(self): """ @@ -40209,7 +39184,7 @@ def is_dash_deleted_stack(self): :rtype: bool """ - return self._tag == "dash_deleted_stack" + return self._tag == 'dash_deleted_stack' def is_dash_edited_comment_in_stack(self): """ @@ -40217,7 +39192,7 @@ def is_dash_edited_comment_in_stack(self): :rtype: bool """ - return self._tag == "dash_edited_comment_in_stack" + return self._tag == 'dash_edited_comment_in_stack' def is_dash_external_user_opened_stack(self): """ @@ -40225,7 +39200,7 @@ def is_dash_external_user_opened_stack(self): :rtype: bool """ - return self._tag == "dash_external_user_opened_stack" + return self._tag == 'dash_external_user_opened_stack' def is_dash_first_launched_desktop(self): """ @@ -40233,7 +39208,7 @@ def is_dash_first_launched_desktop(self): :rtype: bool """ - return self._tag == "dash_first_launched_desktop" + return self._tag == 'dash_first_launched_desktop' def is_dash_first_launched_extension(self): """ @@ -40241,7 +39216,7 @@ def is_dash_first_launched_extension(self): :rtype: bool """ - return self._tag == "dash_first_launched_extension" + return self._tag == 'dash_first_launched_extension' def is_dash_first_launched_web_start_page(self): """ @@ -40249,7 +39224,7 @@ def is_dash_first_launched_web_start_page(self): :rtype: bool """ - return self._tag == "dash_first_launched_web_start_page" + return self._tag == 'dash_first_launched_web_start_page' def is_dash_opened_shared_link_to_stack(self): """ @@ -40257,7 +39232,7 @@ def is_dash_opened_shared_link_to_stack(self): :rtype: bool """ - return self._tag == "dash_opened_shared_link_to_stack" + return self._tag == 'dash_opened_shared_link_to_stack' def is_dash_opened_stack(self): """ @@ -40265,7 +39240,7 @@ def is_dash_opened_stack(self): :rtype: bool """ - return self._tag == "dash_opened_stack" + return self._tag == 'dash_opened_stack' def is_dash_preview_opt_out_status_changed(self): """ @@ -40273,7 +39248,7 @@ def is_dash_preview_opt_out_status_changed(self): :rtype: bool """ - return self._tag == "dash_preview_opt_out_status_changed" + return self._tag == 'dash_preview_opt_out_status_changed' def is_dash_removed_connector(self): """ @@ -40281,7 +39256,7 @@ def is_dash_removed_connector(self): :rtype: bool """ - return self._tag == "dash_removed_connector" + return self._tag == 'dash_removed_connector' def is_dash_removed_link_from_stack(self): """ @@ -40289,7 +39264,7 @@ def is_dash_removed_link_from_stack(self): :rtype: bool """ - return self._tag == "dash_removed_link_from_stack" + return self._tag == 'dash_removed_link_from_stack' def is_dash_removed_shared_link_to_stack(self): """ @@ -40297,7 +39272,7 @@ def is_dash_removed_shared_link_to_stack(self): :rtype: bool """ - return self._tag == "dash_removed_shared_link_to_stack" + return self._tag == 'dash_removed_shared_link_to_stack' def is_dash_removed_team_email_domain_allowlist(self): """ @@ -40305,7 +39280,7 @@ def is_dash_removed_team_email_domain_allowlist(self): :rtype: bool """ - return self._tag == "dash_removed_team_email_domain_allowlist" + return self._tag == 'dash_removed_team_email_domain_allowlist' def is_dash_renamed_stack(self): """ @@ -40313,7 +39288,7 @@ def is_dash_renamed_stack(self): :rtype: bool """ - return self._tag == "dash_renamed_stack" + return self._tag == 'dash_renamed_stack' def is_dash_shared_link_to_stack(self): """ @@ -40321,7 +39296,7 @@ def is_dash_shared_link_to_stack(self): :rtype: bool """ - return self._tag == "dash_shared_link_to_stack" + return self._tag == 'dash_shared_link_to_stack' def is_dash_unarchived_stack(self): """ @@ -40329,7 +39304,7 @@ def is_dash_unarchived_stack(self): :rtype: bool """ - return self._tag == "dash_unarchived_stack" + return self._tag == 'dash_unarchived_stack' def is_dash_viewed_company_stack(self): """ @@ -40337,7 +39312,7 @@ def is_dash_viewed_company_stack(self): :rtype: bool """ - return self._tag == "dash_viewed_company_stack" + return self._tag == 'dash_viewed_company_stack' def is_dash_viewed_external_ai_activity_report(self): """ @@ -40345,7 +39320,7 @@ def is_dash_viewed_external_ai_activity_report(self): :rtype: bool """ - return self._tag == "dash_viewed_external_ai_activity_report" + return self._tag == 'dash_viewed_external_ai_activity_report' def is_governance_policy_add_folders(self): """ @@ -40353,7 +39328,7 @@ def is_governance_policy_add_folders(self): :rtype: bool """ - return self._tag == "governance_policy_add_folders" + return self._tag == 'governance_policy_add_folders' def is_governance_policy_add_folder_failed(self): """ @@ -40361,7 +39336,7 @@ def is_governance_policy_add_folder_failed(self): :rtype: bool """ - return self._tag == "governance_policy_add_folder_failed" + return self._tag == 'governance_policy_add_folder_failed' def is_governance_policy_content_disposed(self): """ @@ -40369,7 +39344,7 @@ def is_governance_policy_content_disposed(self): :rtype: bool """ - return self._tag == "governance_policy_content_disposed" + return self._tag == 'governance_policy_content_disposed' def is_governance_policy_create(self): """ @@ -40377,7 +39352,7 @@ def is_governance_policy_create(self): :rtype: bool """ - return self._tag == "governance_policy_create" + return self._tag == 'governance_policy_create' def is_governance_policy_delete(self): """ @@ -40385,7 +39360,7 @@ def is_governance_policy_delete(self): :rtype: bool """ - return self._tag == "governance_policy_delete" + return self._tag == 'governance_policy_delete' def is_governance_policy_edit_details(self): """ @@ -40393,7 +39368,7 @@ def is_governance_policy_edit_details(self): :rtype: bool """ - return self._tag == "governance_policy_edit_details" + return self._tag == 'governance_policy_edit_details' def is_governance_policy_edit_duration(self): """ @@ -40401,7 +39376,7 @@ def is_governance_policy_edit_duration(self): :rtype: bool """ - return self._tag == "governance_policy_edit_duration" + return self._tag == 'governance_policy_edit_duration' def is_governance_policy_export_created(self): """ @@ -40409,7 +39384,7 @@ def is_governance_policy_export_created(self): :rtype: bool """ - return self._tag == "governance_policy_export_created" + return self._tag == 'governance_policy_export_created' def is_governance_policy_export_removed(self): """ @@ -40417,7 +39392,7 @@ def is_governance_policy_export_removed(self): :rtype: bool """ - return self._tag == "governance_policy_export_removed" + return self._tag == 'governance_policy_export_removed' def is_governance_policy_remove_folders(self): """ @@ -40425,7 +39400,7 @@ def is_governance_policy_remove_folders(self): :rtype: bool """ - return self._tag == "governance_policy_remove_folders" + return self._tag == 'governance_policy_remove_folders' def is_governance_policy_report_created(self): """ @@ -40433,7 +39408,7 @@ def is_governance_policy_report_created(self): :rtype: bool """ - return self._tag == "governance_policy_report_created" + return self._tag == 'governance_policy_report_created' def is_governance_policy_zip_part_downloaded(self): """ @@ -40441,7 +39416,7 @@ def is_governance_policy_zip_part_downloaded(self): :rtype: bool """ - return self._tag == "governance_policy_zip_part_downloaded" + return self._tag == 'governance_policy_zip_part_downloaded' def is_legal_holds_activate_a_hold(self): """ @@ -40449,7 +39424,7 @@ def is_legal_holds_activate_a_hold(self): :rtype: bool """ - return self._tag == "legal_holds_activate_a_hold" + return self._tag == 'legal_holds_activate_a_hold' def is_legal_holds_add_members(self): """ @@ -40457,7 +39432,7 @@ def is_legal_holds_add_members(self): :rtype: bool """ - return self._tag == "legal_holds_add_members" + return self._tag == 'legal_holds_add_members' def is_legal_holds_change_hold_details(self): """ @@ -40465,7 +39440,7 @@ def is_legal_holds_change_hold_details(self): :rtype: bool """ - return self._tag == "legal_holds_change_hold_details" + return self._tag == 'legal_holds_change_hold_details' def is_legal_holds_change_hold_name(self): """ @@ -40473,7 +39448,7 @@ def is_legal_holds_change_hold_name(self): :rtype: bool """ - return self._tag == "legal_holds_change_hold_name" + return self._tag == 'legal_holds_change_hold_name' def is_legal_holds_export_a_hold(self): """ @@ -40481,7 +39456,7 @@ def is_legal_holds_export_a_hold(self): :rtype: bool """ - return self._tag == "legal_holds_export_a_hold" + return self._tag == 'legal_holds_export_a_hold' def is_legal_holds_export_cancelled(self): """ @@ -40489,7 +39464,7 @@ def is_legal_holds_export_cancelled(self): :rtype: bool """ - return self._tag == "legal_holds_export_cancelled" + return self._tag == 'legal_holds_export_cancelled' def is_legal_holds_export_downloaded(self): """ @@ -40497,7 +39472,7 @@ def is_legal_holds_export_downloaded(self): :rtype: bool """ - return self._tag == "legal_holds_export_downloaded" + return self._tag == 'legal_holds_export_downloaded' def is_legal_holds_export_removed(self): """ @@ -40505,7 +39480,7 @@ def is_legal_holds_export_removed(self): :rtype: bool """ - return self._tag == "legal_holds_export_removed" + return self._tag == 'legal_holds_export_removed' def is_legal_holds_release_a_hold(self): """ @@ -40513,7 +39488,7 @@ def is_legal_holds_release_a_hold(self): :rtype: bool """ - return self._tag == "legal_holds_release_a_hold" + return self._tag == 'legal_holds_release_a_hold' def is_legal_holds_remove_members(self): """ @@ -40521,7 +39496,7 @@ def is_legal_holds_remove_members(self): :rtype: bool """ - return self._tag == "legal_holds_remove_members" + return self._tag == 'legal_holds_remove_members' def is_legal_holds_report_a_hold(self): """ @@ -40529,7 +39504,7 @@ def is_legal_holds_report_a_hold(self): :rtype: bool """ - return self._tag == "legal_holds_report_a_hold" + return self._tag == 'legal_holds_report_a_hold' def is_device_change_ip_desktop(self): """ @@ -40537,7 +39512,7 @@ def is_device_change_ip_desktop(self): :rtype: bool """ - return self._tag == "device_change_ip_desktop" + return self._tag == 'device_change_ip_desktop' def is_device_change_ip_mobile(self): """ @@ -40545,7 +39520,7 @@ def is_device_change_ip_mobile(self): :rtype: bool """ - return self._tag == "device_change_ip_mobile" + return self._tag == 'device_change_ip_mobile' def is_device_change_ip_web(self): """ @@ -40553,7 +39528,7 @@ def is_device_change_ip_web(self): :rtype: bool """ - return self._tag == "device_change_ip_web" + return self._tag == 'device_change_ip_web' def is_device_delete_on_unlink_fail(self): """ @@ -40561,7 +39536,7 @@ def is_device_delete_on_unlink_fail(self): :rtype: bool """ - return self._tag == "device_delete_on_unlink_fail" + return self._tag == 'device_delete_on_unlink_fail' def is_device_delete_on_unlink_success(self): """ @@ -40569,7 +39544,7 @@ def is_device_delete_on_unlink_success(self): :rtype: bool """ - return self._tag == "device_delete_on_unlink_success" + return self._tag == 'device_delete_on_unlink_success' def is_device_link_fail(self): """ @@ -40577,7 +39552,7 @@ def is_device_link_fail(self): :rtype: bool """ - return self._tag == "device_link_fail" + return self._tag == 'device_link_fail' def is_device_link_success(self): """ @@ -40585,7 +39560,7 @@ def is_device_link_success(self): :rtype: bool """ - return self._tag == "device_link_success" + return self._tag == 'device_link_success' def is_device_management_disabled(self): """ @@ -40593,7 +39568,7 @@ def is_device_management_disabled(self): :rtype: bool """ - return self._tag == "device_management_disabled" + return self._tag == 'device_management_disabled' def is_device_management_enabled(self): """ @@ -40601,7 +39576,7 @@ def is_device_management_enabled(self): :rtype: bool """ - return self._tag == "device_management_enabled" + return self._tag == 'device_management_enabled' def is_device_sync_backup_status_changed(self): """ @@ -40609,7 +39584,7 @@ def is_device_sync_backup_status_changed(self): :rtype: bool """ - return self._tag == "device_sync_backup_status_changed" + return self._tag == 'device_sync_backup_status_changed' def is_device_unlink(self): """ @@ -40617,7 +39592,7 @@ def is_device_unlink(self): :rtype: bool """ - return self._tag == "device_unlink" + return self._tag == 'device_unlink' def is_dropbox_passwords_exported(self): """ @@ -40625,7 +39600,7 @@ def is_dropbox_passwords_exported(self): :rtype: bool """ - return self._tag == "dropbox_passwords_exported" + return self._tag == 'dropbox_passwords_exported' def is_dropbox_passwords_new_device_enrolled(self): """ @@ -40633,7 +39608,7 @@ def is_dropbox_passwords_new_device_enrolled(self): :rtype: bool """ - return self._tag == "dropbox_passwords_new_device_enrolled" + return self._tag == 'dropbox_passwords_new_device_enrolled' def is_emm_refresh_auth_token(self): """ @@ -40641,7 +39616,7 @@ def is_emm_refresh_auth_token(self): :rtype: bool """ - return self._tag == "emm_refresh_auth_token" + return self._tag == 'emm_refresh_auth_token' def is_external_drive_backup_eligibility_status_checked(self): """ @@ -40649,7 +39624,7 @@ def is_external_drive_backup_eligibility_status_checked(self): :rtype: bool """ - return self._tag == "external_drive_backup_eligibility_status_checked" + return self._tag == 'external_drive_backup_eligibility_status_checked' def is_external_drive_backup_status_changed(self): """ @@ -40657,7 +39632,7 @@ def is_external_drive_backup_status_changed(self): :rtype: bool """ - return self._tag == "external_drive_backup_status_changed" + return self._tag == 'external_drive_backup_status_changed' def is_account_capture_change_availability(self): """ @@ -40665,7 +39640,7 @@ def is_account_capture_change_availability(self): :rtype: bool """ - return self._tag == "account_capture_change_availability" + return self._tag == 'account_capture_change_availability' def is_account_capture_migrate_account(self): """ @@ -40673,7 +39648,7 @@ def is_account_capture_migrate_account(self): :rtype: bool """ - return self._tag == "account_capture_migrate_account" + return self._tag == 'account_capture_migrate_account' def is_account_capture_notification_emails_sent(self): """ @@ -40681,7 +39656,7 @@ def is_account_capture_notification_emails_sent(self): :rtype: bool """ - return self._tag == "account_capture_notification_emails_sent" + return self._tag == 'account_capture_notification_emails_sent' def is_account_capture_relinquish_account(self): """ @@ -40689,7 +39664,7 @@ def is_account_capture_relinquish_account(self): :rtype: bool """ - return self._tag == "account_capture_relinquish_account" + return self._tag == 'account_capture_relinquish_account' def is_disabled_domain_invites(self): """ @@ -40697,7 +39672,7 @@ def is_disabled_domain_invites(self): :rtype: bool """ - return self._tag == "disabled_domain_invites" + return self._tag == 'disabled_domain_invites' def is_domain_invites_approve_request_to_join_team(self): """ @@ -40705,7 +39680,7 @@ def is_domain_invites_approve_request_to_join_team(self): :rtype: bool """ - return self._tag == "domain_invites_approve_request_to_join_team" + return self._tag == 'domain_invites_approve_request_to_join_team' def is_domain_invites_decline_request_to_join_team(self): """ @@ -40713,7 +39688,7 @@ def is_domain_invites_decline_request_to_join_team(self): :rtype: bool """ - return self._tag == "domain_invites_decline_request_to_join_team" + return self._tag == 'domain_invites_decline_request_to_join_team' def is_domain_invites_email_existing_users(self): """ @@ -40721,7 +39696,7 @@ def is_domain_invites_email_existing_users(self): :rtype: bool """ - return self._tag == "domain_invites_email_existing_users" + return self._tag == 'domain_invites_email_existing_users' def is_domain_invites_request_to_join_team(self): """ @@ -40729,7 +39704,7 @@ def is_domain_invites_request_to_join_team(self): :rtype: bool """ - return self._tag == "domain_invites_request_to_join_team" + return self._tag == 'domain_invites_request_to_join_team' def is_domain_invites_set_invite_new_user_pref_to_no(self): """ @@ -40737,7 +39712,7 @@ def is_domain_invites_set_invite_new_user_pref_to_no(self): :rtype: bool """ - return self._tag == "domain_invites_set_invite_new_user_pref_to_no" + return self._tag == 'domain_invites_set_invite_new_user_pref_to_no' def is_domain_invites_set_invite_new_user_pref_to_yes(self): """ @@ -40745,7 +39720,7 @@ def is_domain_invites_set_invite_new_user_pref_to_yes(self): :rtype: bool """ - return self._tag == "domain_invites_set_invite_new_user_pref_to_yes" + return self._tag == 'domain_invites_set_invite_new_user_pref_to_yes' def is_domain_verification_add_domain_fail(self): """ @@ -40753,7 +39728,7 @@ def is_domain_verification_add_domain_fail(self): :rtype: bool """ - return self._tag == "domain_verification_add_domain_fail" + return self._tag == 'domain_verification_add_domain_fail' def is_domain_verification_add_domain_success(self): """ @@ -40761,7 +39736,7 @@ def is_domain_verification_add_domain_success(self): :rtype: bool """ - return self._tag == "domain_verification_add_domain_success" + return self._tag == 'domain_verification_add_domain_success' def is_domain_verification_remove_domain(self): """ @@ -40769,7 +39744,7 @@ def is_domain_verification_remove_domain(self): :rtype: bool """ - return self._tag == "domain_verification_remove_domain" + return self._tag == 'domain_verification_remove_domain' def is_enabled_domain_invites(self): """ @@ -40777,7 +39752,7 @@ def is_enabled_domain_invites(self): :rtype: bool """ - return self._tag == "enabled_domain_invites" + return self._tag == 'enabled_domain_invites' def is_encrypted_folder_cancel_team_key_rotation(self): """ @@ -40785,7 +39760,7 @@ def is_encrypted_folder_cancel_team_key_rotation(self): :rtype: bool """ - return self._tag == "encrypted_folder_cancel_team_key_rotation" + return self._tag == 'encrypted_folder_cancel_team_key_rotation' def is_encrypted_folder_enroll_backup_key(self): """ @@ -40793,7 +39768,7 @@ def is_encrypted_folder_enroll_backup_key(self): :rtype: bool """ - return self._tag == "encrypted_folder_enroll_backup_key" + return self._tag == 'encrypted_folder_enroll_backup_key' def is_encrypted_folder_enroll_client(self): """ @@ -40801,7 +39776,7 @@ def is_encrypted_folder_enroll_client(self): :rtype: bool """ - return self._tag == "encrypted_folder_enroll_client" + return self._tag == 'encrypted_folder_enroll_client' def is_encrypted_folder_enroll_team(self): """ @@ -40809,7 +39784,7 @@ def is_encrypted_folder_enroll_team(self): :rtype: bool """ - return self._tag == "encrypted_folder_enroll_team" + return self._tag == 'encrypted_folder_enroll_team' def is_encrypted_folder_finish_team_unenrollment(self): """ @@ -40817,7 +39792,7 @@ def is_encrypted_folder_finish_team_unenrollment(self): :rtype: bool """ - return self._tag == "encrypted_folder_finish_team_unenrollment" + return self._tag == 'encrypted_folder_finish_team_unenrollment' def is_encrypted_folder_init_team_key_rotation(self): """ @@ -40825,7 +39800,7 @@ def is_encrypted_folder_init_team_key_rotation(self): :rtype: bool """ - return self._tag == "encrypted_folder_init_team_key_rotation" + return self._tag == 'encrypted_folder_init_team_key_rotation' def is_encrypted_folder_init_team_unenrollment(self): """ @@ -40833,7 +39808,7 @@ def is_encrypted_folder_init_team_unenrollment(self): :rtype: bool """ - return self._tag == "encrypted_folder_init_team_unenrollment" + return self._tag == 'encrypted_folder_init_team_unenrollment' def is_encrypted_folder_remove_backup_key(self): """ @@ -40841,7 +39816,7 @@ def is_encrypted_folder_remove_backup_key(self): :rtype: bool """ - return self._tag == "encrypted_folder_remove_backup_key" + return self._tag == 'encrypted_folder_remove_backup_key' def is_encrypted_folder_rotate_team_key(self): """ @@ -40849,7 +39824,7 @@ def is_encrypted_folder_rotate_team_key(self): :rtype: bool """ - return self._tag == "encrypted_folder_rotate_team_key" + return self._tag == 'encrypted_folder_rotate_team_key' def is_encrypted_folder_unenroll_client(self): """ @@ -40857,7 +39832,7 @@ def is_encrypted_folder_unenroll_client(self): :rtype: bool """ - return self._tag == "encrypted_folder_unenroll_client" + return self._tag == 'encrypted_folder_unenroll_client' def is_team_encryption_key_activate_key(self): """ @@ -40865,7 +39840,7 @@ def is_team_encryption_key_activate_key(self): :rtype: bool """ - return self._tag == "team_encryption_key_activate_key" + return self._tag == 'team_encryption_key_activate_key' def is_team_encryption_key_cancel_key_deletion(self): """ @@ -40873,7 +39848,7 @@ def is_team_encryption_key_cancel_key_deletion(self): :rtype: bool """ - return self._tag == "team_encryption_key_cancel_key_deletion" + return self._tag == 'team_encryption_key_cancel_key_deletion' def is_team_encryption_key_create_key(self): """ @@ -40881,7 +39856,7 @@ def is_team_encryption_key_create_key(self): :rtype: bool """ - return self._tag == "team_encryption_key_create_key" + return self._tag == 'team_encryption_key_create_key' def is_team_encryption_key_deactivate_key(self): """ @@ -40889,7 +39864,7 @@ def is_team_encryption_key_deactivate_key(self): :rtype: bool """ - return self._tag == "team_encryption_key_deactivate_key" + return self._tag == 'team_encryption_key_deactivate_key' def is_team_encryption_key_delete_key(self): """ @@ -40897,7 +39872,7 @@ def is_team_encryption_key_delete_key(self): :rtype: bool """ - return self._tag == "team_encryption_key_delete_key" + return self._tag == 'team_encryption_key_delete_key' def is_team_encryption_key_disable_key(self): """ @@ -40905,7 +39880,7 @@ def is_team_encryption_key_disable_key(self): :rtype: bool """ - return self._tag == "team_encryption_key_disable_key" + return self._tag == 'team_encryption_key_disable_key' def is_team_encryption_key_enable_key(self): """ @@ -40913,7 +39888,7 @@ def is_team_encryption_key_enable_key(self): :rtype: bool """ - return self._tag == "team_encryption_key_enable_key" + return self._tag == 'team_encryption_key_enable_key' def is_team_encryption_key_rotate_key(self): """ @@ -40921,7 +39896,7 @@ def is_team_encryption_key_rotate_key(self): :rtype: bool """ - return self._tag == "team_encryption_key_rotate_key" + return self._tag == 'team_encryption_key_rotate_key' def is_team_encryption_key_schedule_key_deletion(self): """ @@ -40929,7 +39904,7 @@ def is_team_encryption_key_schedule_key_deletion(self): :rtype: bool """ - return self._tag == "team_encryption_key_schedule_key_deletion" + return self._tag == 'team_encryption_key_schedule_key_deletion' def is_apply_naming_convention(self): """ @@ -40937,7 +39912,7 @@ def is_apply_naming_convention(self): :rtype: bool """ - return self._tag == "apply_naming_convention" + return self._tag == 'apply_naming_convention' def is_create_folder(self): """ @@ -40945,7 +39920,7 @@ def is_create_folder(self): :rtype: bool """ - return self._tag == "create_folder" + return self._tag == 'create_folder' def is_file_add(self): """ @@ -40953,7 +39928,7 @@ def is_file_add(self): :rtype: bool """ - return self._tag == "file_add" + return self._tag == 'file_add' def is_file_add_from_automation(self): """ @@ -40961,7 +39936,7 @@ def is_file_add_from_automation(self): :rtype: bool """ - return self._tag == "file_add_from_automation" + return self._tag == 'file_add_from_automation' def is_file_copy(self): """ @@ -40969,7 +39944,7 @@ def is_file_copy(self): :rtype: bool """ - return self._tag == "file_copy" + return self._tag == 'file_copy' def is_file_delete(self): """ @@ -40977,7 +39952,7 @@ def is_file_delete(self): :rtype: bool """ - return self._tag == "file_delete" + return self._tag == 'file_delete' def is_file_download(self): """ @@ -40985,7 +39960,7 @@ def is_file_download(self): :rtype: bool """ - return self._tag == "file_download" + return self._tag == 'file_download' def is_file_edit(self): """ @@ -40993,7 +39968,7 @@ def is_file_edit(self): :rtype: bool """ - return self._tag == "file_edit" + return self._tag == 'file_edit' def is_file_get_copy_reference(self): """ @@ -41001,7 +39976,7 @@ def is_file_get_copy_reference(self): :rtype: bool """ - return self._tag == "file_get_copy_reference" + return self._tag == 'file_get_copy_reference' def is_file_locking_lock_status_changed(self): """ @@ -41009,7 +39984,7 @@ def is_file_locking_lock_status_changed(self): :rtype: bool """ - return self._tag == "file_locking_lock_status_changed" + return self._tag == 'file_locking_lock_status_changed' def is_file_move(self): """ @@ -41017,7 +39992,7 @@ def is_file_move(self): :rtype: bool """ - return self._tag == "file_move" + return self._tag == 'file_move' def is_file_permanently_delete(self): """ @@ -41025,7 +40000,7 @@ def is_file_permanently_delete(self): :rtype: bool """ - return self._tag == "file_permanently_delete" + return self._tag == 'file_permanently_delete' def is_file_preview(self): """ @@ -41033,7 +40008,7 @@ def is_file_preview(self): :rtype: bool """ - return self._tag == "file_preview" + return self._tag == 'file_preview' def is_file_rename(self): """ @@ -41041,7 +40016,7 @@ def is_file_rename(self): :rtype: bool """ - return self._tag == "file_rename" + return self._tag == 'file_rename' def is_file_restore(self): """ @@ -41049,7 +40024,7 @@ def is_file_restore(self): :rtype: bool """ - return self._tag == "file_restore" + return self._tag == 'file_restore' def is_file_revert(self): """ @@ -41057,7 +40032,7 @@ def is_file_revert(self): :rtype: bool """ - return self._tag == "file_revert" + return self._tag == 'file_revert' def is_file_rollback_changes(self): """ @@ -41065,7 +40040,7 @@ def is_file_rollback_changes(self): :rtype: bool """ - return self._tag == "file_rollback_changes" + return self._tag == 'file_rollback_changes' def is_file_save_copy_reference(self): """ @@ -41073,7 +40048,7 @@ def is_file_save_copy_reference(self): :rtype: bool """ - return self._tag == "file_save_copy_reference" + return self._tag == 'file_save_copy_reference' def is_folder_overview_description_changed(self): """ @@ -41081,7 +40056,7 @@ def is_folder_overview_description_changed(self): :rtype: bool """ - return self._tag == "folder_overview_description_changed" + return self._tag == 'folder_overview_description_changed' def is_folder_overview_item_pinned(self): """ @@ -41089,7 +40064,7 @@ def is_folder_overview_item_pinned(self): :rtype: bool """ - return self._tag == "folder_overview_item_pinned" + return self._tag == 'folder_overview_item_pinned' def is_folder_overview_item_unpinned(self): """ @@ -41097,7 +40072,7 @@ def is_folder_overview_item_unpinned(self): :rtype: bool """ - return self._tag == "folder_overview_item_unpinned" + return self._tag == 'folder_overview_item_unpinned' def is_media_hub_file_downloaded(self): """ @@ -41105,7 +40080,7 @@ def is_media_hub_file_downloaded(self): :rtype: bool """ - return self._tag == "media_hub_file_downloaded" + return self._tag == 'media_hub_file_downloaded' def is_object_label_added(self): """ @@ -41113,7 +40088,7 @@ def is_object_label_added(self): :rtype: bool """ - return self._tag == "object_label_added" + return self._tag == 'object_label_added' def is_object_label_removed(self): """ @@ -41121,7 +40096,7 @@ def is_object_label_removed(self): :rtype: bool """ - return self._tag == "object_label_removed" + return self._tag == 'object_label_removed' def is_object_label_updated_value(self): """ @@ -41129,7 +40104,7 @@ def is_object_label_updated_value(self): :rtype: bool """ - return self._tag == "object_label_updated_value" + return self._tag == 'object_label_updated_value' def is_organize_folder_with_tidy(self): """ @@ -41137,7 +40112,7 @@ def is_organize_folder_with_tidy(self): :rtype: bool """ - return self._tag == "organize_folder_with_tidy" + return self._tag == 'organize_folder_with_tidy' def is_replay_file_delete(self): """ @@ -41145,7 +40120,7 @@ def is_replay_file_delete(self): :rtype: bool """ - return self._tag == "replay_file_delete" + return self._tag == 'replay_file_delete' def is_replay_file_downloaded(self): """ @@ -41153,7 +40128,7 @@ def is_replay_file_downloaded(self): :rtype: bool """ - return self._tag == "replay_file_downloaded" + return self._tag == 'replay_file_downloaded' def is_replay_team_project_created(self): """ @@ -41161,7 +40136,7 @@ def is_replay_team_project_created(self): :rtype: bool """ - return self._tag == "replay_team_project_created" + return self._tag == 'replay_team_project_created' def is_rewind_folder(self): """ @@ -41169,7 +40144,7 @@ def is_rewind_folder(self): :rtype: bool """ - return self._tag == "rewind_folder" + return self._tag == 'rewind_folder' def is_undo_naming_convention(self): """ @@ -41177,7 +40152,7 @@ def is_undo_naming_convention(self): :rtype: bool """ - return self._tag == "undo_naming_convention" + return self._tag == 'undo_naming_convention' def is_undo_organize_folder_with_tidy(self): """ @@ -41185,7 +40160,7 @@ def is_undo_organize_folder_with_tidy(self): :rtype: bool """ - return self._tag == "undo_organize_folder_with_tidy" + return self._tag == 'undo_organize_folder_with_tidy' def is_user_tags_added(self): """ @@ -41193,7 +40168,7 @@ def is_user_tags_added(self): :rtype: bool """ - return self._tag == "user_tags_added" + return self._tag == 'user_tags_added' def is_user_tags_removed(self): """ @@ -41201,7 +40176,7 @@ def is_user_tags_removed(self): :rtype: bool """ - return self._tag == "user_tags_removed" + return self._tag == 'user_tags_removed' def is_email_ingest_receive_file(self): """ @@ -41209,7 +40184,7 @@ def is_email_ingest_receive_file(self): :rtype: bool """ - return self._tag == "email_ingest_receive_file" + return self._tag == 'email_ingest_receive_file' def is_file_request_auto_close(self): """ @@ -41217,7 +40192,7 @@ def is_file_request_auto_close(self): :rtype: bool """ - return self._tag == "file_request_auto_close" + return self._tag == 'file_request_auto_close' def is_file_request_change(self): """ @@ -41225,7 +40200,7 @@ def is_file_request_change(self): :rtype: bool """ - return self._tag == "file_request_change" + return self._tag == 'file_request_change' def is_file_request_close(self): """ @@ -41233,7 +40208,7 @@ def is_file_request_close(self): :rtype: bool """ - return self._tag == "file_request_close" + return self._tag == 'file_request_close' def is_file_request_create(self): """ @@ -41241,7 +40216,7 @@ def is_file_request_create(self): :rtype: bool """ - return self._tag == "file_request_create" + return self._tag == 'file_request_create' def is_file_request_delete(self): """ @@ -41249,7 +40224,7 @@ def is_file_request_delete(self): :rtype: bool """ - return self._tag == "file_request_delete" + return self._tag == 'file_request_delete' def is_file_request_receive_file(self): """ @@ -41257,7 +40232,7 @@ def is_file_request_receive_file(self): :rtype: bool """ - return self._tag == "file_request_receive_file" + return self._tag == 'file_request_receive_file' def is_group_add_external_id(self): """ @@ -41265,7 +40240,7 @@ def is_group_add_external_id(self): :rtype: bool """ - return self._tag == "group_add_external_id" + return self._tag == 'group_add_external_id' def is_group_add_member(self): """ @@ -41273,7 +40248,7 @@ def is_group_add_member(self): :rtype: bool """ - return self._tag == "group_add_member" + return self._tag == 'group_add_member' def is_group_change_external_id(self): """ @@ -41281,7 +40256,7 @@ def is_group_change_external_id(self): :rtype: bool """ - return self._tag == "group_change_external_id" + return self._tag == 'group_change_external_id' def is_group_change_management_type(self): """ @@ -41289,7 +40264,7 @@ def is_group_change_management_type(self): :rtype: bool """ - return self._tag == "group_change_management_type" + return self._tag == 'group_change_management_type' def is_group_change_member_role(self): """ @@ -41297,7 +40272,7 @@ def is_group_change_member_role(self): :rtype: bool """ - return self._tag == "group_change_member_role" + return self._tag == 'group_change_member_role' def is_group_create(self): """ @@ -41305,7 +40280,7 @@ def is_group_create(self): :rtype: bool """ - return self._tag == "group_create" + return self._tag == 'group_create' def is_group_delete(self): """ @@ -41313,7 +40288,7 @@ def is_group_delete(self): :rtype: bool """ - return self._tag == "group_delete" + return self._tag == 'group_delete' def is_group_description_updated(self): """ @@ -41321,7 +40296,7 @@ def is_group_description_updated(self): :rtype: bool """ - return self._tag == "group_description_updated" + return self._tag == 'group_description_updated' def is_group_external_sharing_setting_override_changed(self): """ @@ -41329,7 +40304,7 @@ def is_group_external_sharing_setting_override_changed(self): :rtype: bool """ - return self._tag == "group_external_sharing_setting_override_changed" + return self._tag == 'group_external_sharing_setting_override_changed' def is_group_join_policy_updated(self): """ @@ -41337,7 +40312,7 @@ def is_group_join_policy_updated(self): :rtype: bool """ - return self._tag == "group_join_policy_updated" + return self._tag == 'group_join_policy_updated' def is_group_moved(self): """ @@ -41345,7 +40320,7 @@ def is_group_moved(self): :rtype: bool """ - return self._tag == "group_moved" + return self._tag == 'group_moved' def is_group_remove_external_id(self): """ @@ -41353,7 +40328,7 @@ def is_group_remove_external_id(self): :rtype: bool """ - return self._tag == "group_remove_external_id" + return self._tag == 'group_remove_external_id' def is_group_remove_member(self): """ @@ -41361,7 +40336,7 @@ def is_group_remove_member(self): :rtype: bool """ - return self._tag == "group_remove_member" + return self._tag == 'group_remove_member' def is_group_rename(self): """ @@ -41369,7 +40344,7 @@ def is_group_rename(self): :rtype: bool """ - return self._tag == "group_rename" + return self._tag == 'group_rename' def is_account_lock_or_unlocked(self): """ @@ -41377,7 +40352,7 @@ def is_account_lock_or_unlocked(self): :rtype: bool """ - return self._tag == "account_lock_or_unlocked" + return self._tag == 'account_lock_or_unlocked' def is_emm_error(self): """ @@ -41385,7 +40360,7 @@ def is_emm_error(self): :rtype: bool """ - return self._tag == "emm_error" + return self._tag == 'emm_error' def is_guest_admin_signed_in_via_trusted_teams(self): """ @@ -41393,7 +40368,7 @@ def is_guest_admin_signed_in_via_trusted_teams(self): :rtype: bool """ - return self._tag == "guest_admin_signed_in_via_trusted_teams" + return self._tag == 'guest_admin_signed_in_via_trusted_teams' def is_guest_admin_signed_out_via_trusted_teams(self): """ @@ -41401,7 +40376,7 @@ def is_guest_admin_signed_out_via_trusted_teams(self): :rtype: bool """ - return self._tag == "guest_admin_signed_out_via_trusted_teams" + return self._tag == 'guest_admin_signed_out_via_trusted_teams' def is_login_fail(self): """ @@ -41409,7 +40384,7 @@ def is_login_fail(self): :rtype: bool """ - return self._tag == "login_fail" + return self._tag == 'login_fail' def is_login_success(self): """ @@ -41417,7 +40392,7 @@ def is_login_success(self): :rtype: bool """ - return self._tag == "login_success" + return self._tag == 'login_success' def is_logout(self): """ @@ -41425,7 +40400,7 @@ def is_logout(self): :rtype: bool """ - return self._tag == "logout" + return self._tag == 'logout' def is_reseller_support_session_end(self): """ @@ -41433,7 +40408,7 @@ def is_reseller_support_session_end(self): :rtype: bool """ - return self._tag == "reseller_support_session_end" + return self._tag == 'reseller_support_session_end' def is_reseller_support_session_start(self): """ @@ -41441,7 +40416,7 @@ def is_reseller_support_session_start(self): :rtype: bool """ - return self._tag == "reseller_support_session_start" + return self._tag == 'reseller_support_session_start' def is_sign_in_as_session_end(self): """ @@ -41449,7 +40424,7 @@ def is_sign_in_as_session_end(self): :rtype: bool """ - return self._tag == "sign_in_as_session_end" + return self._tag == 'sign_in_as_session_end' def is_sign_in_as_session_start(self): """ @@ -41457,7 +40432,7 @@ def is_sign_in_as_session_start(self): :rtype: bool """ - return self._tag == "sign_in_as_session_start" + return self._tag == 'sign_in_as_session_start' def is_sso_error(self): """ @@ -41465,7 +40440,7 @@ def is_sso_error(self): :rtype: bool """ - return self._tag == "sso_error" + return self._tag == 'sso_error' def is_addon_assigned(self): """ @@ -41473,7 +40448,7 @@ def is_addon_assigned(self): :rtype: bool """ - return self._tag == "addon_assigned" + return self._tag == 'addon_assigned' def is_addon_removed(self): """ @@ -41481,7 +40456,7 @@ def is_addon_removed(self): :rtype: bool """ - return self._tag == "addon_removed" + return self._tag == 'addon_removed' def is_backup_admin_invitation_sent(self): """ @@ -41489,7 +40464,7 @@ def is_backup_admin_invitation_sent(self): :rtype: bool """ - return self._tag == "backup_admin_invitation_sent" + return self._tag == 'backup_admin_invitation_sent' def is_backup_invitation_opened(self): """ @@ -41497,7 +40472,7 @@ def is_backup_invitation_opened(self): :rtype: bool """ - return self._tag == "backup_invitation_opened" + return self._tag == 'backup_invitation_opened' def is_create_team_invite_link(self): """ @@ -41505,7 +40480,7 @@ def is_create_team_invite_link(self): :rtype: bool """ - return self._tag == "create_team_invite_link" + return self._tag == 'create_team_invite_link' def is_delete_team_invite_link(self): """ @@ -41513,7 +40488,7 @@ def is_delete_team_invite_link(self): :rtype: bool """ - return self._tag == "delete_team_invite_link" + return self._tag == 'delete_team_invite_link' def is_member_add_external_id(self): """ @@ -41521,7 +40496,7 @@ def is_member_add_external_id(self): :rtype: bool """ - return self._tag == "member_add_external_id" + return self._tag == 'member_add_external_id' def is_member_add_name(self): """ @@ -41529,7 +40504,7 @@ def is_member_add_name(self): :rtype: bool """ - return self._tag == "member_add_name" + return self._tag == 'member_add_name' def is_member_change_admin_role(self): """ @@ -41537,7 +40512,7 @@ def is_member_change_admin_role(self): :rtype: bool """ - return self._tag == "member_change_admin_role" + return self._tag == 'member_change_admin_role' def is_member_change_email(self): """ @@ -41545,7 +40520,7 @@ def is_member_change_email(self): :rtype: bool """ - return self._tag == "member_change_email" + return self._tag == 'member_change_email' def is_member_change_external_id(self): """ @@ -41553,7 +40528,7 @@ def is_member_change_external_id(self): :rtype: bool """ - return self._tag == "member_change_external_id" + return self._tag == 'member_change_external_id' def is_member_change_membership_type(self): """ @@ -41561,7 +40536,7 @@ def is_member_change_membership_type(self): :rtype: bool """ - return self._tag == "member_change_membership_type" + return self._tag == 'member_change_membership_type' def is_member_change_name(self): """ @@ -41569,7 +40544,7 @@ def is_member_change_name(self): :rtype: bool """ - return self._tag == "member_change_name" + return self._tag == 'member_change_name' def is_member_change_reseller_role(self): """ @@ -41577,7 +40552,7 @@ def is_member_change_reseller_role(self): :rtype: bool """ - return self._tag == "member_change_reseller_role" + return self._tag == 'member_change_reseller_role' def is_member_change_status(self): """ @@ -41585,7 +40560,7 @@ def is_member_change_status(self): :rtype: bool """ - return self._tag == "member_change_status" + return self._tag == 'member_change_status' def is_member_delete_manual_contacts(self): """ @@ -41593,7 +40568,7 @@ def is_member_delete_manual_contacts(self): :rtype: bool """ - return self._tag == "member_delete_manual_contacts" + return self._tag == 'member_delete_manual_contacts' def is_member_delete_profile_photo(self): """ @@ -41601,7 +40576,7 @@ def is_member_delete_profile_photo(self): :rtype: bool """ - return self._tag == "member_delete_profile_photo" + return self._tag == 'member_delete_profile_photo' def is_member_permanently_delete_account_contents(self): """ @@ -41609,7 +40584,7 @@ def is_member_permanently_delete_account_contents(self): :rtype: bool """ - return self._tag == "member_permanently_delete_account_contents" + return self._tag == 'member_permanently_delete_account_contents' def is_member_remove_external_id(self): """ @@ -41617,7 +40592,7 @@ def is_member_remove_external_id(self): :rtype: bool """ - return self._tag == "member_remove_external_id" + return self._tag == 'member_remove_external_id' def is_member_set_profile_photo(self): """ @@ -41625,7 +40600,7 @@ def is_member_set_profile_photo(self): :rtype: bool """ - return self._tag == "member_set_profile_photo" + return self._tag == 'member_set_profile_photo' def is_member_space_limits_add_custom_quota(self): """ @@ -41633,7 +40608,7 @@ def is_member_space_limits_add_custom_quota(self): :rtype: bool """ - return self._tag == "member_space_limits_add_custom_quota" + return self._tag == 'member_space_limits_add_custom_quota' def is_member_space_limits_change_custom_quota(self): """ @@ -41641,7 +40616,7 @@ def is_member_space_limits_change_custom_quota(self): :rtype: bool """ - return self._tag == "member_space_limits_change_custom_quota" + return self._tag == 'member_space_limits_change_custom_quota' def is_member_space_limits_change_status(self): """ @@ -41649,7 +40624,7 @@ def is_member_space_limits_change_status(self): :rtype: bool """ - return self._tag == "member_space_limits_change_status" + return self._tag == 'member_space_limits_change_status' def is_member_space_limits_remove_custom_quota(self): """ @@ -41657,7 +40632,7 @@ def is_member_space_limits_remove_custom_quota(self): :rtype: bool """ - return self._tag == "member_space_limits_remove_custom_quota" + return self._tag == 'member_space_limits_remove_custom_quota' def is_member_suggest(self): """ @@ -41665,7 +40640,7 @@ def is_member_suggest(self): :rtype: bool """ - return self._tag == "member_suggest" + return self._tag == 'member_suggest' def is_member_transfer_account_contents(self): """ @@ -41673,7 +40648,7 @@ def is_member_transfer_account_contents(self): :rtype: bool """ - return self._tag == "member_transfer_account_contents" + return self._tag == 'member_transfer_account_contents' def is_pending_secondary_email_added(self): """ @@ -41681,7 +40656,7 @@ def is_pending_secondary_email_added(self): :rtype: bool """ - return self._tag == "pending_secondary_email_added" + return self._tag == 'pending_secondary_email_added' def is_product_assigned_to_member(self): """ @@ -41689,7 +40664,7 @@ def is_product_assigned_to_member(self): :rtype: bool """ - return self._tag == "product_assigned_to_member" + return self._tag == 'product_assigned_to_member' def is_product_removed_from_member(self): """ @@ -41697,7 +40672,7 @@ def is_product_removed_from_member(self): :rtype: bool """ - return self._tag == "product_removed_from_member" + return self._tag == 'product_removed_from_member' def is_secondary_email_deleted(self): """ @@ -41705,7 +40680,7 @@ def is_secondary_email_deleted(self): :rtype: bool """ - return self._tag == "secondary_email_deleted" + return self._tag == 'secondary_email_deleted' def is_secondary_email_verified(self): """ @@ -41713,7 +40688,7 @@ def is_secondary_email_verified(self): :rtype: bool """ - return self._tag == "secondary_email_verified" + return self._tag == 'secondary_email_verified' def is_secondary_mails_policy_changed(self): """ @@ -41721,7 +40696,7 @@ def is_secondary_mails_policy_changed(self): :rtype: bool """ - return self._tag == "secondary_mails_policy_changed" + return self._tag == 'secondary_mails_policy_changed' def is_binder_add_page(self): """ @@ -41729,7 +40704,7 @@ def is_binder_add_page(self): :rtype: bool """ - return self._tag == "binder_add_page" + return self._tag == 'binder_add_page' def is_binder_add_section(self): """ @@ -41737,7 +40712,7 @@ def is_binder_add_section(self): :rtype: bool """ - return self._tag == "binder_add_section" + return self._tag == 'binder_add_section' def is_binder_remove_page(self): """ @@ -41745,7 +40720,7 @@ def is_binder_remove_page(self): :rtype: bool """ - return self._tag == "binder_remove_page" + return self._tag == 'binder_remove_page' def is_binder_remove_section(self): """ @@ -41753,7 +40728,7 @@ def is_binder_remove_section(self): :rtype: bool """ - return self._tag == "binder_remove_section" + return self._tag == 'binder_remove_section' def is_binder_rename_page(self): """ @@ -41761,7 +40736,7 @@ def is_binder_rename_page(self): :rtype: bool """ - return self._tag == "binder_rename_page" + return self._tag == 'binder_rename_page' def is_binder_rename_section(self): """ @@ -41769,7 +40744,7 @@ def is_binder_rename_section(self): :rtype: bool """ - return self._tag == "binder_rename_section" + return self._tag == 'binder_rename_section' def is_binder_reorder_page(self): """ @@ -41777,7 +40752,7 @@ def is_binder_reorder_page(self): :rtype: bool """ - return self._tag == "binder_reorder_page" + return self._tag == 'binder_reorder_page' def is_binder_reorder_section(self): """ @@ -41785,7 +40760,7 @@ def is_binder_reorder_section(self): :rtype: bool """ - return self._tag == "binder_reorder_section" + return self._tag == 'binder_reorder_section' def is_paper_content_add_member(self): """ @@ -41793,7 +40768,7 @@ def is_paper_content_add_member(self): :rtype: bool """ - return self._tag == "paper_content_add_member" + return self._tag == 'paper_content_add_member' def is_paper_content_add_to_folder(self): """ @@ -41801,7 +40776,7 @@ def is_paper_content_add_to_folder(self): :rtype: bool """ - return self._tag == "paper_content_add_to_folder" + return self._tag == 'paper_content_add_to_folder' def is_paper_content_archive(self): """ @@ -41809,7 +40784,7 @@ def is_paper_content_archive(self): :rtype: bool """ - return self._tag == "paper_content_archive" + return self._tag == 'paper_content_archive' def is_paper_content_create(self): """ @@ -41817,7 +40792,7 @@ def is_paper_content_create(self): :rtype: bool """ - return self._tag == "paper_content_create" + return self._tag == 'paper_content_create' def is_paper_content_permanently_delete(self): """ @@ -41825,7 +40800,7 @@ def is_paper_content_permanently_delete(self): :rtype: bool """ - return self._tag == "paper_content_permanently_delete" + return self._tag == 'paper_content_permanently_delete' def is_paper_content_remove_from_folder(self): """ @@ -41833,7 +40808,7 @@ def is_paper_content_remove_from_folder(self): :rtype: bool """ - return self._tag == "paper_content_remove_from_folder" + return self._tag == 'paper_content_remove_from_folder' def is_paper_content_remove_member(self): """ @@ -41841,7 +40816,7 @@ def is_paper_content_remove_member(self): :rtype: bool """ - return self._tag == "paper_content_remove_member" + return self._tag == 'paper_content_remove_member' def is_paper_content_rename(self): """ @@ -41849,7 +40824,7 @@ def is_paper_content_rename(self): :rtype: bool """ - return self._tag == "paper_content_rename" + return self._tag == 'paper_content_rename' def is_paper_content_restore(self): """ @@ -41857,7 +40832,7 @@ def is_paper_content_restore(self): :rtype: bool """ - return self._tag == "paper_content_restore" + return self._tag == 'paper_content_restore' def is_paper_doc_add_comment(self): """ @@ -41865,7 +40840,7 @@ def is_paper_doc_add_comment(self): :rtype: bool """ - return self._tag == "paper_doc_add_comment" + return self._tag == 'paper_doc_add_comment' def is_paper_doc_change_member_role(self): """ @@ -41873,7 +40848,7 @@ def is_paper_doc_change_member_role(self): :rtype: bool """ - return self._tag == "paper_doc_change_member_role" + return self._tag == 'paper_doc_change_member_role' def is_paper_doc_change_sharing_policy(self): """ @@ -41881,7 +40856,7 @@ def is_paper_doc_change_sharing_policy(self): :rtype: bool """ - return self._tag == "paper_doc_change_sharing_policy" + return self._tag == 'paper_doc_change_sharing_policy' def is_paper_doc_change_subscription(self): """ @@ -41889,7 +40864,7 @@ def is_paper_doc_change_subscription(self): :rtype: bool """ - return self._tag == "paper_doc_change_subscription" + return self._tag == 'paper_doc_change_subscription' def is_paper_doc_deleted(self): """ @@ -41897,7 +40872,7 @@ def is_paper_doc_deleted(self): :rtype: bool """ - return self._tag == "paper_doc_deleted" + return self._tag == 'paper_doc_deleted' def is_paper_doc_delete_comment(self): """ @@ -41905,7 +40880,7 @@ def is_paper_doc_delete_comment(self): :rtype: bool """ - return self._tag == "paper_doc_delete_comment" + return self._tag == 'paper_doc_delete_comment' def is_paper_doc_download(self): """ @@ -41913,7 +40888,7 @@ def is_paper_doc_download(self): :rtype: bool """ - return self._tag == "paper_doc_download" + return self._tag == 'paper_doc_download' def is_paper_doc_edit(self): """ @@ -41921,7 +40896,7 @@ def is_paper_doc_edit(self): :rtype: bool """ - return self._tag == "paper_doc_edit" + return self._tag == 'paper_doc_edit' def is_paper_doc_edit_comment(self): """ @@ -41929,7 +40904,7 @@ def is_paper_doc_edit_comment(self): :rtype: bool """ - return self._tag == "paper_doc_edit_comment" + return self._tag == 'paper_doc_edit_comment' def is_paper_doc_followed(self): """ @@ -41937,7 +40912,7 @@ def is_paper_doc_followed(self): :rtype: bool """ - return self._tag == "paper_doc_followed" + return self._tag == 'paper_doc_followed' def is_paper_doc_mention(self): """ @@ -41945,7 +40920,7 @@ def is_paper_doc_mention(self): :rtype: bool """ - return self._tag == "paper_doc_mention" + return self._tag == 'paper_doc_mention' def is_paper_doc_ownership_changed(self): """ @@ -41953,7 +40928,7 @@ def is_paper_doc_ownership_changed(self): :rtype: bool """ - return self._tag == "paper_doc_ownership_changed" + return self._tag == 'paper_doc_ownership_changed' def is_paper_doc_request_access(self): """ @@ -41961,7 +40936,7 @@ def is_paper_doc_request_access(self): :rtype: bool """ - return self._tag == "paper_doc_request_access" + return self._tag == 'paper_doc_request_access' def is_paper_doc_resolve_comment(self): """ @@ -41969,7 +40944,7 @@ def is_paper_doc_resolve_comment(self): :rtype: bool """ - return self._tag == "paper_doc_resolve_comment" + return self._tag == 'paper_doc_resolve_comment' def is_paper_doc_revert(self): """ @@ -41977,7 +40952,7 @@ def is_paper_doc_revert(self): :rtype: bool """ - return self._tag == "paper_doc_revert" + return self._tag == 'paper_doc_revert' def is_paper_doc_slack_share(self): """ @@ -41985,7 +40960,7 @@ def is_paper_doc_slack_share(self): :rtype: bool """ - return self._tag == "paper_doc_slack_share" + return self._tag == 'paper_doc_slack_share' def is_paper_doc_team_invite(self): """ @@ -41993,7 +40968,7 @@ def is_paper_doc_team_invite(self): :rtype: bool """ - return self._tag == "paper_doc_team_invite" + return self._tag == 'paper_doc_team_invite' def is_paper_doc_trashed(self): """ @@ -42001,7 +40976,7 @@ def is_paper_doc_trashed(self): :rtype: bool """ - return self._tag == "paper_doc_trashed" + return self._tag == 'paper_doc_trashed' def is_paper_doc_unresolve_comment(self): """ @@ -42009,7 +40984,7 @@ def is_paper_doc_unresolve_comment(self): :rtype: bool """ - return self._tag == "paper_doc_unresolve_comment" + return self._tag == 'paper_doc_unresolve_comment' def is_paper_doc_untrashed(self): """ @@ -42017,7 +40992,7 @@ def is_paper_doc_untrashed(self): :rtype: bool """ - return self._tag == "paper_doc_untrashed" + return self._tag == 'paper_doc_untrashed' def is_paper_doc_view(self): """ @@ -42025,7 +41000,7 @@ def is_paper_doc_view(self): :rtype: bool """ - return self._tag == "paper_doc_view" + return self._tag == 'paper_doc_view' def is_paper_external_view_allow(self): """ @@ -42033,7 +41008,7 @@ def is_paper_external_view_allow(self): :rtype: bool """ - return self._tag == "paper_external_view_allow" + return self._tag == 'paper_external_view_allow' def is_paper_external_view_default_team(self): """ @@ -42041,7 +41016,7 @@ def is_paper_external_view_default_team(self): :rtype: bool """ - return self._tag == "paper_external_view_default_team" + return self._tag == 'paper_external_view_default_team' def is_paper_external_view_forbid(self): """ @@ -42049,7 +41024,7 @@ def is_paper_external_view_forbid(self): :rtype: bool """ - return self._tag == "paper_external_view_forbid" + return self._tag == 'paper_external_view_forbid' def is_paper_folder_change_subscription(self): """ @@ -42057,7 +41032,7 @@ def is_paper_folder_change_subscription(self): :rtype: bool """ - return self._tag == "paper_folder_change_subscription" + return self._tag == 'paper_folder_change_subscription' def is_paper_folder_deleted(self): """ @@ -42065,7 +41040,7 @@ def is_paper_folder_deleted(self): :rtype: bool """ - return self._tag == "paper_folder_deleted" + return self._tag == 'paper_folder_deleted' def is_paper_folder_followed(self): """ @@ -42073,7 +41048,7 @@ def is_paper_folder_followed(self): :rtype: bool """ - return self._tag == "paper_folder_followed" + return self._tag == 'paper_folder_followed' def is_paper_folder_team_invite(self): """ @@ -42081,7 +41056,7 @@ def is_paper_folder_team_invite(self): :rtype: bool """ - return self._tag == "paper_folder_team_invite" + return self._tag == 'paper_folder_team_invite' def is_paper_published_link_change_permission(self): """ @@ -42089,7 +41064,7 @@ def is_paper_published_link_change_permission(self): :rtype: bool """ - return self._tag == "paper_published_link_change_permission" + return self._tag == 'paper_published_link_change_permission' def is_paper_published_link_create(self): """ @@ -42097,7 +41072,7 @@ def is_paper_published_link_create(self): :rtype: bool """ - return self._tag == "paper_published_link_create" + return self._tag == 'paper_published_link_create' def is_paper_published_link_disabled(self): """ @@ -42105,7 +41080,7 @@ def is_paper_published_link_disabled(self): :rtype: bool """ - return self._tag == "paper_published_link_disabled" + return self._tag == 'paper_published_link_disabled' def is_paper_published_link_view(self): """ @@ -42113,7 +41088,7 @@ def is_paper_published_link_view(self): :rtype: bool """ - return self._tag == "paper_published_link_view" + return self._tag == 'paper_published_link_view' def is_password_change(self): """ @@ -42121,7 +41096,7 @@ def is_password_change(self): :rtype: bool """ - return self._tag == "password_change" + return self._tag == 'password_change' def is_password_reset(self): """ @@ -42129,7 +41104,7 @@ def is_password_reset(self): :rtype: bool """ - return self._tag == "password_reset" + return self._tag == 'password_reset' def is_password_reset_all(self): """ @@ -42137,7 +41112,7 @@ def is_password_reset_all(self): :rtype: bool """ - return self._tag == "password_reset_all" + return self._tag == 'password_reset_all' def is_protect_internal_domains_changed(self): """ @@ -42145,7 +41120,7 @@ def is_protect_internal_domains_changed(self): :rtype: bool """ - return self._tag == "protect_internal_domains_changed" + return self._tag == 'protect_internal_domains_changed' def is_classification_create_report(self): """ @@ -42153,7 +41128,7 @@ def is_classification_create_report(self): :rtype: bool """ - return self._tag == "classification_create_report" + return self._tag == 'classification_create_report' def is_classification_create_report_fail(self): """ @@ -42161,7 +41136,7 @@ def is_classification_create_report_fail(self): :rtype: bool """ - return self._tag == "classification_create_report_fail" + return self._tag == 'classification_create_report_fail' def is_emm_create_exceptions_report(self): """ @@ -42169,7 +41144,7 @@ def is_emm_create_exceptions_report(self): :rtype: bool """ - return self._tag == "emm_create_exceptions_report" + return self._tag == 'emm_create_exceptions_report' def is_emm_create_usage_report(self): """ @@ -42177,7 +41152,7 @@ def is_emm_create_usage_report(self): :rtype: bool """ - return self._tag == "emm_create_usage_report" + return self._tag == 'emm_create_usage_report' def is_export_members_report(self): """ @@ -42185,7 +41160,7 @@ def is_export_members_report(self): :rtype: bool """ - return self._tag == "export_members_report" + return self._tag == 'export_members_report' def is_export_members_report_fail(self): """ @@ -42193,7 +41168,7 @@ def is_export_members_report_fail(self): :rtype: bool """ - return self._tag == "export_members_report_fail" + return self._tag == 'export_members_report_fail' def is_external_sharing_create_report(self): """ @@ -42201,7 +41176,7 @@ def is_external_sharing_create_report(self): :rtype: bool """ - return self._tag == "external_sharing_create_report" + return self._tag == 'external_sharing_create_report' def is_external_sharing_report_failed(self): """ @@ -42209,7 +41184,7 @@ def is_external_sharing_report_failed(self): :rtype: bool """ - return self._tag == "external_sharing_report_failed" + return self._tag == 'external_sharing_report_failed' def is_member_access_details_create_report(self): """ @@ -42217,7 +41192,7 @@ def is_member_access_details_create_report(self): :rtype: bool """ - return self._tag == "member_access_details_create_report" + return self._tag == 'member_access_details_create_report' def is_member_access_details_create_report_failed(self): """ @@ -42225,7 +41200,7 @@ def is_member_access_details_create_report_failed(self): :rtype: bool """ - return self._tag == "member_access_details_create_report_failed" + return self._tag == 'member_access_details_create_report_failed' def is_no_expiration_link_gen_create_report(self): """ @@ -42233,7 +41208,7 @@ def is_no_expiration_link_gen_create_report(self): :rtype: bool """ - return self._tag == "no_expiration_link_gen_create_report" + return self._tag == 'no_expiration_link_gen_create_report' def is_no_expiration_link_gen_report_failed(self): """ @@ -42241,7 +41216,7 @@ def is_no_expiration_link_gen_report_failed(self): :rtype: bool """ - return self._tag == "no_expiration_link_gen_report_failed" + return self._tag == 'no_expiration_link_gen_report_failed' def is_no_password_link_gen_create_report(self): """ @@ -42249,7 +41224,7 @@ def is_no_password_link_gen_create_report(self): :rtype: bool """ - return self._tag == "no_password_link_gen_create_report" + return self._tag == 'no_password_link_gen_create_report' def is_no_password_link_gen_report_failed(self): """ @@ -42257,7 +41232,7 @@ def is_no_password_link_gen_report_failed(self): :rtype: bool """ - return self._tag == "no_password_link_gen_report_failed" + return self._tag == 'no_password_link_gen_report_failed' def is_no_password_link_view_create_report(self): """ @@ -42265,7 +41240,7 @@ def is_no_password_link_view_create_report(self): :rtype: bool """ - return self._tag == "no_password_link_view_create_report" + return self._tag == 'no_password_link_view_create_report' def is_no_password_link_view_report_failed(self): """ @@ -42273,7 +41248,7 @@ def is_no_password_link_view_report_failed(self): :rtype: bool """ - return self._tag == "no_password_link_view_report_failed" + return self._tag == 'no_password_link_view_report_failed' def is_outdated_link_view_create_report(self): """ @@ -42281,7 +41256,7 @@ def is_outdated_link_view_create_report(self): :rtype: bool """ - return self._tag == "outdated_link_view_create_report" + return self._tag == 'outdated_link_view_create_report' def is_outdated_link_view_report_failed(self): """ @@ -42289,7 +41264,7 @@ def is_outdated_link_view_report_failed(self): :rtype: bool """ - return self._tag == "outdated_link_view_report_failed" + return self._tag == 'outdated_link_view_report_failed' def is_paper_admin_export_start(self): """ @@ -42297,7 +41272,7 @@ def is_paper_admin_export_start(self): :rtype: bool """ - return self._tag == "paper_admin_export_start" + return self._tag == 'paper_admin_export_start' def is_ransomware_alert_create_report(self): """ @@ -42305,7 +41280,7 @@ def is_ransomware_alert_create_report(self): :rtype: bool """ - return self._tag == "ransomware_alert_create_report" + return self._tag == 'ransomware_alert_create_report' def is_ransomware_alert_create_report_failed(self): """ @@ -42313,7 +41288,7 @@ def is_ransomware_alert_create_report_failed(self): :rtype: bool """ - return self._tag == "ransomware_alert_create_report_failed" + return self._tag == 'ransomware_alert_create_report_failed' def is_shared_folders_create_report(self): """ @@ -42321,7 +41296,7 @@ def is_shared_folders_create_report(self): :rtype: bool """ - return self._tag == "shared_folders_create_report" + return self._tag == 'shared_folders_create_report' def is_shared_folders_create_report_failed(self): """ @@ -42329,7 +41304,7 @@ def is_shared_folders_create_report_failed(self): :rtype: bool """ - return self._tag == "shared_folders_create_report_failed" + return self._tag == 'shared_folders_create_report_failed' def is_smart_sync_create_admin_privilege_report(self): """ @@ -42337,7 +41312,7 @@ def is_smart_sync_create_admin_privilege_report(self): :rtype: bool """ - return self._tag == "smart_sync_create_admin_privilege_report" + return self._tag == 'smart_sync_create_admin_privilege_report' def is_team_activity_create_report(self): """ @@ -42345,7 +41320,7 @@ def is_team_activity_create_report(self): :rtype: bool """ - return self._tag == "team_activity_create_report" + return self._tag == 'team_activity_create_report' def is_team_activity_create_report_fail(self): """ @@ -42353,7 +41328,7 @@ def is_team_activity_create_report_fail(self): :rtype: bool """ - return self._tag == "team_activity_create_report_fail" + return self._tag == 'team_activity_create_report_fail' def is_team_folders_create_report(self): """ @@ -42361,7 +41336,7 @@ def is_team_folders_create_report(self): :rtype: bool """ - return self._tag == "team_folders_create_report" + return self._tag == 'team_folders_create_report' def is_team_folders_create_report_failed(self): """ @@ -42369,7 +41344,7 @@ def is_team_folders_create_report_failed(self): :rtype: bool """ - return self._tag == "team_folders_create_report_failed" + return self._tag == 'team_folders_create_report_failed' def is_team_storage_create_report(self): """ @@ -42377,7 +41352,7 @@ def is_team_storage_create_report(self): :rtype: bool """ - return self._tag == "team_storage_create_report" + return self._tag == 'team_storage_create_report' def is_team_storage_create_report_failed(self): """ @@ -42385,7 +41360,7 @@ def is_team_storage_create_report_failed(self): :rtype: bool """ - return self._tag == "team_storage_create_report_failed" + return self._tag == 'team_storage_create_report_failed' def is_collection_share(self): """ @@ -42393,7 +41368,7 @@ def is_collection_share(self): :rtype: bool """ - return self._tag == "collection_share" + return self._tag == 'collection_share' def is_file_transfers_file_add(self): """ @@ -42401,7 +41376,7 @@ def is_file_transfers_file_add(self): :rtype: bool """ - return self._tag == "file_transfers_file_add" + return self._tag == 'file_transfers_file_add' def is_file_transfers_transfer_delete(self): """ @@ -42409,7 +41384,7 @@ def is_file_transfers_transfer_delete(self): :rtype: bool """ - return self._tag == "file_transfers_transfer_delete" + return self._tag == 'file_transfers_transfer_delete' def is_file_transfers_transfer_download(self): """ @@ -42417,7 +41392,7 @@ def is_file_transfers_transfer_download(self): :rtype: bool """ - return self._tag == "file_transfers_transfer_download" + return self._tag == 'file_transfers_transfer_download' def is_file_transfers_transfer_send(self): """ @@ -42425,7 +41400,7 @@ def is_file_transfers_transfer_send(self): :rtype: bool """ - return self._tag == "file_transfers_transfer_send" + return self._tag == 'file_transfers_transfer_send' def is_file_transfers_transfer_view(self): """ @@ -42433,7 +41408,7 @@ def is_file_transfers_transfer_view(self): :rtype: bool """ - return self._tag == "file_transfers_transfer_view" + return self._tag == 'file_transfers_transfer_view' def is_media_hub_project_team_add(self): """ @@ -42441,7 +41416,7 @@ def is_media_hub_project_team_add(self): :rtype: bool """ - return self._tag == "media_hub_project_team_add" + return self._tag == 'media_hub_project_team_add' def is_media_hub_project_team_delete(self): """ @@ -42449,7 +41424,7 @@ def is_media_hub_project_team_delete(self): :rtype: bool """ - return self._tag == "media_hub_project_team_delete" + return self._tag == 'media_hub_project_team_delete' def is_media_hub_project_team_role_changed(self): """ @@ -42457,7 +41432,7 @@ def is_media_hub_project_team_role_changed(self): :rtype: bool """ - return self._tag == "media_hub_project_team_role_changed" + return self._tag == 'media_hub_project_team_role_changed' def is_media_hub_shared_link_audience_changed(self): """ @@ -42465,7 +41440,7 @@ def is_media_hub_shared_link_audience_changed(self): :rtype: bool """ - return self._tag == "media_hub_shared_link_audience_changed" + return self._tag == 'media_hub_shared_link_audience_changed' def is_media_hub_shared_link_created(self): """ @@ -42473,7 +41448,7 @@ def is_media_hub_shared_link_created(self): :rtype: bool """ - return self._tag == "media_hub_shared_link_created" + return self._tag == 'media_hub_shared_link_created' def is_media_hub_shared_link_download_setting_changed(self): """ @@ -42481,7 +41456,7 @@ def is_media_hub_shared_link_download_setting_changed(self): :rtype: bool """ - return self._tag == "media_hub_shared_link_download_setting_changed" + return self._tag == 'media_hub_shared_link_download_setting_changed' def is_media_hub_shared_link_revoked(self): """ @@ -42489,7 +41464,7 @@ def is_media_hub_shared_link_revoked(self): :rtype: bool """ - return self._tag == "media_hub_shared_link_revoked" + return self._tag == 'media_hub_shared_link_revoked' def is_note_acl_invite_only(self): """ @@ -42497,7 +41472,7 @@ def is_note_acl_invite_only(self): :rtype: bool """ - return self._tag == "note_acl_invite_only" + return self._tag == 'note_acl_invite_only' def is_note_acl_link(self): """ @@ -42505,7 +41480,7 @@ def is_note_acl_link(self): :rtype: bool """ - return self._tag == "note_acl_link" + return self._tag == 'note_acl_link' def is_note_acl_team_link(self): """ @@ -42513,7 +41488,7 @@ def is_note_acl_team_link(self): :rtype: bool """ - return self._tag == "note_acl_team_link" + return self._tag == 'note_acl_team_link' def is_note_shared(self): """ @@ -42521,7 +41496,7 @@ def is_note_shared(self): :rtype: bool """ - return self._tag == "note_shared" + return self._tag == 'note_shared' def is_note_share_receive(self): """ @@ -42529,7 +41504,7 @@ def is_note_share_receive(self): :rtype: bool """ - return self._tag == "note_share_receive" + return self._tag == 'note_share_receive' def is_open_note_shared(self): """ @@ -42537,7 +41512,7 @@ def is_open_note_shared(self): :rtype: bool """ - return self._tag == "open_note_shared" + return self._tag == 'open_note_shared' def is_replay_file_shared_link_created(self): """ @@ -42545,7 +41520,7 @@ def is_replay_file_shared_link_created(self): :rtype: bool """ - return self._tag == "replay_file_shared_link_created" + return self._tag == 'replay_file_shared_link_created' def is_replay_file_shared_link_modified(self): """ @@ -42553,7 +41528,7 @@ def is_replay_file_shared_link_modified(self): :rtype: bool """ - return self._tag == "replay_file_shared_link_modified" + return self._tag == 'replay_file_shared_link_modified' def is_replay_project_team_add(self): """ @@ -42561,7 +41536,7 @@ def is_replay_project_team_add(self): :rtype: bool """ - return self._tag == "replay_project_team_add" + return self._tag == 'replay_project_team_add' def is_replay_project_team_delete(self): """ @@ -42569,7 +41544,7 @@ def is_replay_project_team_delete(self): :rtype: bool """ - return self._tag == "replay_project_team_delete" + return self._tag == 'replay_project_team_delete' def is_send_and_track_file_added(self): """ @@ -42577,7 +41552,7 @@ def is_send_and_track_file_added(self): :rtype: bool """ - return self._tag == "send_and_track_file_added" + return self._tag == 'send_and_track_file_added' def is_send_and_track_file_renamed(self): """ @@ -42585,7 +41560,7 @@ def is_send_and_track_file_renamed(self): :rtype: bool """ - return self._tag == "send_and_track_file_renamed" + return self._tag == 'send_and_track_file_renamed' def is_send_and_track_file_updated(self): """ @@ -42593,7 +41568,7 @@ def is_send_and_track_file_updated(self): :rtype: bool """ - return self._tag == "send_and_track_file_updated" + return self._tag == 'send_and_track_file_updated' def is_send_and_track_link_created(self): """ @@ -42601,7 +41576,7 @@ def is_send_and_track_link_created(self): :rtype: bool """ - return self._tag == "send_and_track_link_created" + return self._tag == 'send_and_track_link_created' def is_send_and_track_link_deleted(self): """ @@ -42609,7 +41584,7 @@ def is_send_and_track_link_deleted(self): :rtype: bool """ - return self._tag == "send_and_track_link_deleted" + return self._tag == 'send_and_track_link_deleted' def is_send_and_track_link_updated(self): """ @@ -42617,7 +41592,7 @@ def is_send_and_track_link_updated(self): :rtype: bool """ - return self._tag == "send_and_track_link_updated" + return self._tag == 'send_and_track_link_updated' def is_send_and_track_link_viewed(self): """ @@ -42625,7 +41600,7 @@ def is_send_and_track_link_viewed(self): :rtype: bool """ - return self._tag == "send_and_track_link_viewed" + return self._tag == 'send_and_track_link_viewed' def is_send_and_track_removed_file_and_associated_links(self): """ @@ -42633,7 +41608,7 @@ def is_send_and_track_removed_file_and_associated_links(self): :rtype: bool """ - return self._tag == "send_and_track_removed_file_and_associated_links" + return self._tag == 'send_and_track_removed_file_and_associated_links' def is_sf_add_group(self): """ @@ -42641,7 +41616,7 @@ def is_sf_add_group(self): :rtype: bool """ - return self._tag == "sf_add_group" + return self._tag == 'sf_add_group' def is_sf_allow_non_members_to_view_shared_links(self): """ @@ -42649,7 +41624,7 @@ def is_sf_allow_non_members_to_view_shared_links(self): :rtype: bool """ - return self._tag == "sf_allow_non_members_to_view_shared_links" + return self._tag == 'sf_allow_non_members_to_view_shared_links' def is_sf_external_invite_warn(self): """ @@ -42657,7 +41632,7 @@ def is_sf_external_invite_warn(self): :rtype: bool """ - return self._tag == "sf_external_invite_warn" + return self._tag == 'sf_external_invite_warn' def is_sf_fb_invite(self): """ @@ -42665,7 +41640,7 @@ def is_sf_fb_invite(self): :rtype: bool """ - return self._tag == "sf_fb_invite" + return self._tag == 'sf_fb_invite' def is_sf_fb_invite_change_role(self): """ @@ -42673,7 +41648,7 @@ def is_sf_fb_invite_change_role(self): :rtype: bool """ - return self._tag == "sf_fb_invite_change_role" + return self._tag == 'sf_fb_invite_change_role' def is_sf_fb_uninvite(self): """ @@ -42681,7 +41656,7 @@ def is_sf_fb_uninvite(self): :rtype: bool """ - return self._tag == "sf_fb_uninvite" + return self._tag == 'sf_fb_uninvite' def is_sf_invite_group(self): """ @@ -42689,7 +41664,7 @@ def is_sf_invite_group(self): :rtype: bool """ - return self._tag == "sf_invite_group" + return self._tag == 'sf_invite_group' def is_sf_team_grant_access(self): """ @@ -42697,7 +41672,7 @@ def is_sf_team_grant_access(self): :rtype: bool """ - return self._tag == "sf_team_grant_access" + return self._tag == 'sf_team_grant_access' def is_sf_team_invite(self): """ @@ -42705,7 +41680,7 @@ def is_sf_team_invite(self): :rtype: bool """ - return self._tag == "sf_team_invite" + return self._tag == 'sf_team_invite' def is_sf_team_invite_change_role(self): """ @@ -42713,7 +41688,7 @@ def is_sf_team_invite_change_role(self): :rtype: bool """ - return self._tag == "sf_team_invite_change_role" + return self._tag == 'sf_team_invite_change_role' def is_sf_team_join(self): """ @@ -42721,7 +41696,7 @@ def is_sf_team_join(self): :rtype: bool """ - return self._tag == "sf_team_join" + return self._tag == 'sf_team_join' def is_sf_team_join_from_oob_link(self): """ @@ -42729,7 +41704,7 @@ def is_sf_team_join_from_oob_link(self): :rtype: bool """ - return self._tag == "sf_team_join_from_oob_link" + return self._tag == 'sf_team_join_from_oob_link' def is_sf_team_uninvite(self): """ @@ -42737,7 +41712,7 @@ def is_sf_team_uninvite(self): :rtype: bool """ - return self._tag == "sf_team_uninvite" + return self._tag == 'sf_team_uninvite' def is_shared_content_add_invitees(self): """ @@ -42745,7 +41720,7 @@ def is_shared_content_add_invitees(self): :rtype: bool """ - return self._tag == "shared_content_add_invitees" + return self._tag == 'shared_content_add_invitees' def is_shared_content_add_link_expiry(self): """ @@ -42753,7 +41728,7 @@ def is_shared_content_add_link_expiry(self): :rtype: bool """ - return self._tag == "shared_content_add_link_expiry" + return self._tag == 'shared_content_add_link_expiry' def is_shared_content_add_link_password(self): """ @@ -42761,7 +41736,7 @@ def is_shared_content_add_link_password(self): :rtype: bool """ - return self._tag == "shared_content_add_link_password" + return self._tag == 'shared_content_add_link_password' def is_shared_content_add_member(self): """ @@ -42769,7 +41744,7 @@ def is_shared_content_add_member(self): :rtype: bool """ - return self._tag == "shared_content_add_member" + return self._tag == 'shared_content_add_member' def is_shared_content_change_downloads_policy(self): """ @@ -42777,7 +41752,7 @@ def is_shared_content_change_downloads_policy(self): :rtype: bool """ - return self._tag == "shared_content_change_downloads_policy" + return self._tag == 'shared_content_change_downloads_policy' def is_shared_content_change_invitee_role(self): """ @@ -42785,7 +41760,7 @@ def is_shared_content_change_invitee_role(self): :rtype: bool """ - return self._tag == "shared_content_change_invitee_role" + return self._tag == 'shared_content_change_invitee_role' def is_shared_content_change_link_audience(self): """ @@ -42793,7 +41768,7 @@ def is_shared_content_change_link_audience(self): :rtype: bool """ - return self._tag == "shared_content_change_link_audience" + return self._tag == 'shared_content_change_link_audience' def is_shared_content_change_link_expiry(self): """ @@ -42801,7 +41776,7 @@ def is_shared_content_change_link_expiry(self): :rtype: bool """ - return self._tag == "shared_content_change_link_expiry" + return self._tag == 'shared_content_change_link_expiry' def is_shared_content_change_link_password(self): """ @@ -42809,7 +41784,7 @@ def is_shared_content_change_link_password(self): :rtype: bool """ - return self._tag == "shared_content_change_link_password" + return self._tag == 'shared_content_change_link_password' def is_shared_content_change_member_role(self): """ @@ -42817,7 +41792,7 @@ def is_shared_content_change_member_role(self): :rtype: bool """ - return self._tag == "shared_content_change_member_role" + return self._tag == 'shared_content_change_member_role' def is_shared_content_change_viewer_info_policy(self): """ @@ -42825,7 +41800,7 @@ def is_shared_content_change_viewer_info_policy(self): :rtype: bool """ - return self._tag == "shared_content_change_viewer_info_policy" + return self._tag == 'shared_content_change_viewer_info_policy' def is_shared_content_claim_invitation(self): """ @@ -42833,7 +41808,7 @@ def is_shared_content_claim_invitation(self): :rtype: bool """ - return self._tag == "shared_content_claim_invitation" + return self._tag == 'shared_content_claim_invitation' def is_shared_content_copy(self): """ @@ -42841,7 +41816,7 @@ def is_shared_content_copy(self): :rtype: bool """ - return self._tag == "shared_content_copy" + return self._tag == 'shared_content_copy' def is_shared_content_download(self): """ @@ -42849,7 +41824,7 @@ def is_shared_content_download(self): :rtype: bool """ - return self._tag == "shared_content_download" + return self._tag == 'shared_content_download' def is_shared_content_relinquish_membership(self): """ @@ -42857,7 +41832,7 @@ def is_shared_content_relinquish_membership(self): :rtype: bool """ - return self._tag == "shared_content_relinquish_membership" + return self._tag == 'shared_content_relinquish_membership' def is_shared_content_remove_invitees(self): """ @@ -42865,7 +41840,7 @@ def is_shared_content_remove_invitees(self): :rtype: bool """ - return self._tag == "shared_content_remove_invitees" + return self._tag == 'shared_content_remove_invitees' def is_shared_content_remove_link_expiry(self): """ @@ -42873,7 +41848,7 @@ def is_shared_content_remove_link_expiry(self): :rtype: bool """ - return self._tag == "shared_content_remove_link_expiry" + return self._tag == 'shared_content_remove_link_expiry' def is_shared_content_remove_link_password(self): """ @@ -42881,7 +41856,7 @@ def is_shared_content_remove_link_password(self): :rtype: bool """ - return self._tag == "shared_content_remove_link_password" + return self._tag == 'shared_content_remove_link_password' def is_shared_content_remove_member(self): """ @@ -42889,7 +41864,7 @@ def is_shared_content_remove_member(self): :rtype: bool """ - return self._tag == "shared_content_remove_member" + return self._tag == 'shared_content_remove_member' def is_shared_content_request_access(self): """ @@ -42897,7 +41872,7 @@ def is_shared_content_request_access(self): :rtype: bool """ - return self._tag == "shared_content_request_access" + return self._tag == 'shared_content_request_access' def is_shared_content_restore_invitees(self): """ @@ -42905,7 +41880,7 @@ def is_shared_content_restore_invitees(self): :rtype: bool """ - return self._tag == "shared_content_restore_invitees" + return self._tag == 'shared_content_restore_invitees' def is_shared_content_restore_member(self): """ @@ -42913,7 +41888,7 @@ def is_shared_content_restore_member(self): :rtype: bool """ - return self._tag == "shared_content_restore_member" + return self._tag == 'shared_content_restore_member' def is_shared_content_unshare(self): """ @@ -42921,7 +41896,7 @@ def is_shared_content_unshare(self): :rtype: bool """ - return self._tag == "shared_content_unshare" + return self._tag == 'shared_content_unshare' def is_shared_content_view(self): """ @@ -42929,7 +41904,7 @@ def is_shared_content_view(self): :rtype: bool """ - return self._tag == "shared_content_view" + return self._tag == 'shared_content_view' def is_shared_folder_change_link_policy(self): """ @@ -42937,7 +41912,7 @@ def is_shared_folder_change_link_policy(self): :rtype: bool """ - return self._tag == "shared_folder_change_link_policy" + return self._tag == 'shared_folder_change_link_policy' def is_shared_folder_change_members_inheritance_policy(self): """ @@ -42945,7 +41920,7 @@ def is_shared_folder_change_members_inheritance_policy(self): :rtype: bool """ - return self._tag == "shared_folder_change_members_inheritance_policy" + return self._tag == 'shared_folder_change_members_inheritance_policy' def is_shared_folder_change_members_management_policy(self): """ @@ -42953,7 +41928,7 @@ def is_shared_folder_change_members_management_policy(self): :rtype: bool """ - return self._tag == "shared_folder_change_members_management_policy" + return self._tag == 'shared_folder_change_members_management_policy' def is_shared_folder_change_members_policy(self): """ @@ -42961,7 +41936,7 @@ def is_shared_folder_change_members_policy(self): :rtype: bool """ - return self._tag == "shared_folder_change_members_policy" + return self._tag == 'shared_folder_change_members_policy' def is_shared_folder_create(self): """ @@ -42969,7 +41944,7 @@ def is_shared_folder_create(self): :rtype: bool """ - return self._tag == "shared_folder_create" + return self._tag == 'shared_folder_create' def is_shared_folder_decline_invitation(self): """ @@ -42977,7 +41952,7 @@ def is_shared_folder_decline_invitation(self): :rtype: bool """ - return self._tag == "shared_folder_decline_invitation" + return self._tag == 'shared_folder_decline_invitation' def is_shared_folder_mount(self): """ @@ -42985,7 +41960,7 @@ def is_shared_folder_mount(self): :rtype: bool """ - return self._tag == "shared_folder_mount" + return self._tag == 'shared_folder_mount' def is_shared_folder_nest(self): """ @@ -42993,7 +41968,7 @@ def is_shared_folder_nest(self): :rtype: bool """ - return self._tag == "shared_folder_nest" + return self._tag == 'shared_folder_nest' def is_shared_folder_transfer_ownership(self): """ @@ -43001,7 +41976,7 @@ def is_shared_folder_transfer_ownership(self): :rtype: bool """ - return self._tag == "shared_folder_transfer_ownership" + return self._tag == 'shared_folder_transfer_ownership' def is_shared_folder_unmount(self): """ @@ -43009,7 +41984,7 @@ def is_shared_folder_unmount(self): :rtype: bool """ - return self._tag == "shared_folder_unmount" + return self._tag == 'shared_folder_unmount' def is_shared_link_add_expiry(self): """ @@ -43017,7 +41992,7 @@ def is_shared_link_add_expiry(self): :rtype: bool """ - return self._tag == "shared_link_add_expiry" + return self._tag == 'shared_link_add_expiry' def is_shared_link_change_expiry(self): """ @@ -43025,7 +42000,7 @@ def is_shared_link_change_expiry(self): :rtype: bool """ - return self._tag == "shared_link_change_expiry" + return self._tag == 'shared_link_change_expiry' def is_shared_link_change_visibility(self): """ @@ -43033,7 +42008,7 @@ def is_shared_link_change_visibility(self): :rtype: bool """ - return self._tag == "shared_link_change_visibility" + return self._tag == 'shared_link_change_visibility' def is_shared_link_copy(self): """ @@ -43041,7 +42016,7 @@ def is_shared_link_copy(self): :rtype: bool """ - return self._tag == "shared_link_copy" + return self._tag == 'shared_link_copy' def is_shared_link_create(self): """ @@ -43049,7 +42024,7 @@ def is_shared_link_create(self): :rtype: bool """ - return self._tag == "shared_link_create" + return self._tag == 'shared_link_create' def is_shared_link_disable(self): """ @@ -43057,7 +42032,7 @@ def is_shared_link_disable(self): :rtype: bool """ - return self._tag == "shared_link_disable" + return self._tag == 'shared_link_disable' def is_shared_link_download(self): """ @@ -43065,7 +42040,7 @@ def is_shared_link_download(self): :rtype: bool """ - return self._tag == "shared_link_download" + return self._tag == 'shared_link_download' def is_shared_link_remove_expiry(self): """ @@ -43073,7 +42048,7 @@ def is_shared_link_remove_expiry(self): :rtype: bool """ - return self._tag == "shared_link_remove_expiry" + return self._tag == 'shared_link_remove_expiry' def is_shared_link_remove_visitor(self): """ @@ -43081,7 +42056,7 @@ def is_shared_link_remove_visitor(self): :rtype: bool """ - return self._tag == "shared_link_remove_visitor" + return self._tag == 'shared_link_remove_visitor' def is_shared_link_settings_add_expiration(self): """ @@ -43089,7 +42064,7 @@ def is_shared_link_settings_add_expiration(self): :rtype: bool """ - return self._tag == "shared_link_settings_add_expiration" + return self._tag == 'shared_link_settings_add_expiration' def is_shared_link_settings_add_password(self): """ @@ -43097,7 +42072,7 @@ def is_shared_link_settings_add_password(self): :rtype: bool """ - return self._tag == "shared_link_settings_add_password" + return self._tag == 'shared_link_settings_add_password' def is_shared_link_settings_allow_download_disabled(self): """ @@ -43105,7 +42080,7 @@ def is_shared_link_settings_allow_download_disabled(self): :rtype: bool """ - return self._tag == "shared_link_settings_allow_download_disabled" + return self._tag == 'shared_link_settings_allow_download_disabled' def is_shared_link_settings_allow_download_enabled(self): """ @@ -43113,7 +42088,7 @@ def is_shared_link_settings_allow_download_enabled(self): :rtype: bool """ - return self._tag == "shared_link_settings_allow_download_enabled" + return self._tag == 'shared_link_settings_allow_download_enabled' def is_shared_link_settings_change_audience(self): """ @@ -43121,7 +42096,7 @@ def is_shared_link_settings_change_audience(self): :rtype: bool """ - return self._tag == "shared_link_settings_change_audience" + return self._tag == 'shared_link_settings_change_audience' def is_shared_link_settings_change_expiration(self): """ @@ -43129,7 +42104,7 @@ def is_shared_link_settings_change_expiration(self): :rtype: bool """ - return self._tag == "shared_link_settings_change_expiration" + return self._tag == 'shared_link_settings_change_expiration' def is_shared_link_settings_change_password(self): """ @@ -43137,7 +42112,7 @@ def is_shared_link_settings_change_password(self): :rtype: bool """ - return self._tag == "shared_link_settings_change_password" + return self._tag == 'shared_link_settings_change_password' def is_shared_link_settings_remove_expiration(self): """ @@ -43145,7 +42120,7 @@ def is_shared_link_settings_remove_expiration(self): :rtype: bool """ - return self._tag == "shared_link_settings_remove_expiration" + return self._tag == 'shared_link_settings_remove_expiration' def is_shared_link_settings_remove_password(self): """ @@ -43153,7 +42128,7 @@ def is_shared_link_settings_remove_password(self): :rtype: bool """ - return self._tag == "shared_link_settings_remove_password" + return self._tag == 'shared_link_settings_remove_password' def is_shared_link_share(self): """ @@ -43161,7 +42136,7 @@ def is_shared_link_share(self): :rtype: bool """ - return self._tag == "shared_link_share" + return self._tag == 'shared_link_share' def is_shared_link_view(self): """ @@ -43169,7 +42144,7 @@ def is_shared_link_view(self): :rtype: bool """ - return self._tag == "shared_link_view" + return self._tag == 'shared_link_view' def is_shared_note_opened(self): """ @@ -43177,7 +42152,7 @@ def is_shared_note_opened(self): :rtype: bool """ - return self._tag == "shared_note_opened" + return self._tag == 'shared_note_opened' def is_shmodel_disable_downloads(self): """ @@ -43185,7 +42160,7 @@ def is_shmodel_disable_downloads(self): :rtype: bool """ - return self._tag == "shmodel_disable_downloads" + return self._tag == 'shmodel_disable_downloads' def is_shmodel_enable_downloads(self): """ @@ -43193,7 +42168,7 @@ def is_shmodel_enable_downloads(self): :rtype: bool """ - return self._tag == "shmodel_enable_downloads" + return self._tag == 'shmodel_enable_downloads' def is_shmodel_group_share(self): """ @@ -43201,7 +42176,7 @@ def is_shmodel_group_share(self): :rtype: bool """ - return self._tag == "shmodel_group_share" + return self._tag == 'shmodel_group_share' def is_showcase_access_granted(self): """ @@ -43209,7 +42184,7 @@ def is_showcase_access_granted(self): :rtype: bool """ - return self._tag == "showcase_access_granted" + return self._tag == 'showcase_access_granted' def is_showcase_add_member(self): """ @@ -43217,7 +42192,7 @@ def is_showcase_add_member(self): :rtype: bool """ - return self._tag == "showcase_add_member" + return self._tag == 'showcase_add_member' def is_showcase_archived(self): """ @@ -43225,7 +42200,7 @@ def is_showcase_archived(self): :rtype: bool """ - return self._tag == "showcase_archived" + return self._tag == 'showcase_archived' def is_showcase_created(self): """ @@ -43233,7 +42208,7 @@ def is_showcase_created(self): :rtype: bool """ - return self._tag == "showcase_created" + return self._tag == 'showcase_created' def is_showcase_delete_comment(self): """ @@ -43241,7 +42216,7 @@ def is_showcase_delete_comment(self): :rtype: bool """ - return self._tag == "showcase_delete_comment" + return self._tag == 'showcase_delete_comment' def is_showcase_edited(self): """ @@ -43249,7 +42224,7 @@ def is_showcase_edited(self): :rtype: bool """ - return self._tag == "showcase_edited" + return self._tag == 'showcase_edited' def is_showcase_edit_comment(self): """ @@ -43257,7 +42232,7 @@ def is_showcase_edit_comment(self): :rtype: bool """ - return self._tag == "showcase_edit_comment" + return self._tag == 'showcase_edit_comment' def is_showcase_file_added(self): """ @@ -43265,7 +42240,7 @@ def is_showcase_file_added(self): :rtype: bool """ - return self._tag == "showcase_file_added" + return self._tag == 'showcase_file_added' def is_showcase_file_download(self): """ @@ -43273,7 +42248,7 @@ def is_showcase_file_download(self): :rtype: bool """ - return self._tag == "showcase_file_download" + return self._tag == 'showcase_file_download' def is_showcase_file_removed(self): """ @@ -43281,7 +42256,7 @@ def is_showcase_file_removed(self): :rtype: bool """ - return self._tag == "showcase_file_removed" + return self._tag == 'showcase_file_removed' def is_showcase_file_view(self): """ @@ -43289,7 +42264,7 @@ def is_showcase_file_view(self): :rtype: bool """ - return self._tag == "showcase_file_view" + return self._tag == 'showcase_file_view' def is_showcase_permanently_deleted(self): """ @@ -43297,7 +42272,7 @@ def is_showcase_permanently_deleted(self): :rtype: bool """ - return self._tag == "showcase_permanently_deleted" + return self._tag == 'showcase_permanently_deleted' def is_showcase_post_comment(self): """ @@ -43305,7 +42280,7 @@ def is_showcase_post_comment(self): :rtype: bool """ - return self._tag == "showcase_post_comment" + return self._tag == 'showcase_post_comment' def is_showcase_remove_member(self): """ @@ -43313,7 +42288,7 @@ def is_showcase_remove_member(self): :rtype: bool """ - return self._tag == "showcase_remove_member" + return self._tag == 'showcase_remove_member' def is_showcase_renamed(self): """ @@ -43321,7 +42296,7 @@ def is_showcase_renamed(self): :rtype: bool """ - return self._tag == "showcase_renamed" + return self._tag == 'showcase_renamed' def is_showcase_request_access(self): """ @@ -43329,7 +42304,7 @@ def is_showcase_request_access(self): :rtype: bool """ - return self._tag == "showcase_request_access" + return self._tag == 'showcase_request_access' def is_showcase_resolve_comment(self): """ @@ -43337,7 +42312,7 @@ def is_showcase_resolve_comment(self): :rtype: bool """ - return self._tag == "showcase_resolve_comment" + return self._tag == 'showcase_resolve_comment' def is_showcase_restored(self): """ @@ -43345,7 +42320,7 @@ def is_showcase_restored(self): :rtype: bool """ - return self._tag == "showcase_restored" + return self._tag == 'showcase_restored' def is_showcase_trashed(self): """ @@ -43353,7 +42328,7 @@ def is_showcase_trashed(self): :rtype: bool """ - return self._tag == "showcase_trashed" + return self._tag == 'showcase_trashed' def is_showcase_trashed_deprecated(self): """ @@ -43361,7 +42336,7 @@ def is_showcase_trashed_deprecated(self): :rtype: bool """ - return self._tag == "showcase_trashed_deprecated" + return self._tag == 'showcase_trashed_deprecated' def is_showcase_unresolve_comment(self): """ @@ -43369,7 +42344,7 @@ def is_showcase_unresolve_comment(self): :rtype: bool """ - return self._tag == "showcase_unresolve_comment" + return self._tag == 'showcase_unresolve_comment' def is_showcase_untrashed(self): """ @@ -43377,7 +42352,7 @@ def is_showcase_untrashed(self): :rtype: bool """ - return self._tag == "showcase_untrashed" + return self._tag == 'showcase_untrashed' def is_showcase_untrashed_deprecated(self): """ @@ -43385,7 +42360,7 @@ def is_showcase_untrashed_deprecated(self): :rtype: bool """ - return self._tag == "showcase_untrashed_deprecated" + return self._tag == 'showcase_untrashed_deprecated' def is_showcase_view(self): """ @@ -43393,7 +42368,7 @@ def is_showcase_view(self): :rtype: bool """ - return self._tag == "showcase_view" + return self._tag == 'showcase_view' def is_sign_signature_request_canceled(self): """ @@ -43401,7 +42376,7 @@ def is_sign_signature_request_canceled(self): :rtype: bool """ - return self._tag == "sign_signature_request_canceled" + return self._tag == 'sign_signature_request_canceled' def is_sign_signature_request_completed(self): """ @@ -43409,7 +42384,7 @@ def is_sign_signature_request_completed(self): :rtype: bool """ - return self._tag == "sign_signature_request_completed" + return self._tag == 'sign_signature_request_completed' def is_sign_signature_request_declined(self): """ @@ -43417,7 +42392,7 @@ def is_sign_signature_request_declined(self): :rtype: bool """ - return self._tag == "sign_signature_request_declined" + return self._tag == 'sign_signature_request_declined' def is_sign_signature_request_opened(self): """ @@ -43425,7 +42400,7 @@ def is_sign_signature_request_opened(self): :rtype: bool """ - return self._tag == "sign_signature_request_opened" + return self._tag == 'sign_signature_request_opened' def is_sign_signature_request_reminder_sent(self): """ @@ -43433,7 +42408,7 @@ def is_sign_signature_request_reminder_sent(self): :rtype: bool """ - return self._tag == "sign_signature_request_reminder_sent" + return self._tag == 'sign_signature_request_reminder_sent' def is_sign_signature_request_sent(self): """ @@ -43441,7 +42416,7 @@ def is_sign_signature_request_sent(self): :rtype: bool """ - return self._tag == "sign_signature_request_sent" + return self._tag == 'sign_signature_request_sent' def is_sign_template_created(self): """ @@ -43449,7 +42424,7 @@ def is_sign_template_created(self): :rtype: bool """ - return self._tag == "sign_template_created" + return self._tag == 'sign_template_created' def is_sign_template_shared(self): """ @@ -43457,7 +42432,7 @@ def is_sign_template_shared(self): :rtype: bool """ - return self._tag == "sign_template_shared" + return self._tag == 'sign_template_shared' def is_risc_security_event(self): """ @@ -43465,7 +42440,7 @@ def is_risc_security_event(self): :rtype: bool """ - return self._tag == "risc_security_event" + return self._tag == 'risc_security_event' def is_sso_add_cert(self): """ @@ -43473,7 +42448,7 @@ def is_sso_add_cert(self): :rtype: bool """ - return self._tag == "sso_add_cert" + return self._tag == 'sso_add_cert' def is_sso_add_login_url(self): """ @@ -43481,7 +42456,7 @@ def is_sso_add_login_url(self): :rtype: bool """ - return self._tag == "sso_add_login_url" + return self._tag == 'sso_add_login_url' def is_sso_add_logout_url(self): """ @@ -43489,7 +42464,7 @@ def is_sso_add_logout_url(self): :rtype: bool """ - return self._tag == "sso_add_logout_url" + return self._tag == 'sso_add_logout_url' def is_sso_change_cert(self): """ @@ -43497,7 +42472,7 @@ def is_sso_change_cert(self): :rtype: bool """ - return self._tag == "sso_change_cert" + return self._tag == 'sso_change_cert' def is_sso_change_login_url(self): """ @@ -43505,7 +42480,7 @@ def is_sso_change_login_url(self): :rtype: bool """ - return self._tag == "sso_change_login_url" + return self._tag == 'sso_change_login_url' def is_sso_change_logout_url(self): """ @@ -43513,7 +42488,7 @@ def is_sso_change_logout_url(self): :rtype: bool """ - return self._tag == "sso_change_logout_url" + return self._tag == 'sso_change_logout_url' def is_sso_change_saml_identity_mode(self): """ @@ -43521,7 +42496,7 @@ def is_sso_change_saml_identity_mode(self): :rtype: bool """ - return self._tag == "sso_change_saml_identity_mode" + return self._tag == 'sso_change_saml_identity_mode' def is_sso_remove_cert(self): """ @@ -43529,7 +42504,7 @@ def is_sso_remove_cert(self): :rtype: bool """ - return self._tag == "sso_remove_cert" + return self._tag == 'sso_remove_cert' def is_sso_remove_login_url(self): """ @@ -43537,7 +42512,7 @@ def is_sso_remove_login_url(self): :rtype: bool """ - return self._tag == "sso_remove_login_url" + return self._tag == 'sso_remove_login_url' def is_sso_remove_logout_url(self): """ @@ -43545,7 +42520,7 @@ def is_sso_remove_logout_url(self): :rtype: bool """ - return self._tag == "sso_remove_logout_url" + return self._tag == 'sso_remove_logout_url' def is_team_folder_change_status(self): """ @@ -43553,7 +42528,7 @@ def is_team_folder_change_status(self): :rtype: bool """ - return self._tag == "team_folder_change_status" + return self._tag == 'team_folder_change_status' def is_team_folder_create(self): """ @@ -43561,7 +42536,7 @@ def is_team_folder_create(self): :rtype: bool """ - return self._tag == "team_folder_create" + return self._tag == 'team_folder_create' def is_team_folder_downgrade(self): """ @@ -43569,7 +42544,7 @@ def is_team_folder_downgrade(self): :rtype: bool """ - return self._tag == "team_folder_downgrade" + return self._tag == 'team_folder_downgrade' def is_team_folder_permanently_delete(self): """ @@ -43577,7 +42552,7 @@ def is_team_folder_permanently_delete(self): :rtype: bool """ - return self._tag == "team_folder_permanently_delete" + return self._tag == 'team_folder_permanently_delete' def is_team_folder_rename(self): """ @@ -43585,7 +42560,7 @@ def is_team_folder_rename(self): :rtype: bool """ - return self._tag == "team_folder_rename" + return self._tag == 'team_folder_rename' def is_team_folder_space_limits_change_caps_type(self): """ @@ -43593,7 +42568,7 @@ def is_team_folder_space_limits_change_caps_type(self): :rtype: bool """ - return self._tag == "team_folder_space_limits_change_caps_type" + return self._tag == 'team_folder_space_limits_change_caps_type' def is_team_folder_space_limits_change_limit(self): """ @@ -43601,7 +42576,7 @@ def is_team_folder_space_limits_change_limit(self): :rtype: bool """ - return self._tag == "team_folder_space_limits_change_limit" + return self._tag == 'team_folder_space_limits_change_limit' def is_team_folder_space_limits_change_notification_target(self): """ @@ -43609,7 +42584,7 @@ def is_team_folder_space_limits_change_notification_target(self): :rtype: bool """ - return self._tag == "team_folder_space_limits_change_notification_target" + return self._tag == 'team_folder_space_limits_change_notification_target' def is_team_selective_sync_settings_changed(self): """ @@ -43617,7 +42592,7 @@ def is_team_selective_sync_settings_changed(self): :rtype: bool """ - return self._tag == "team_selective_sync_settings_changed" + return self._tag == 'team_selective_sync_settings_changed' def is_account_capture_change_policy(self): """ @@ -43625,7 +42600,7 @@ def is_account_capture_change_policy(self): :rtype: bool """ - return self._tag == "account_capture_change_policy" + return self._tag == 'account_capture_change_policy' def is_admin_email_reminders_changed(self): """ @@ -43633,7 +42608,7 @@ def is_admin_email_reminders_changed(self): :rtype: bool """ - return self._tag == "admin_email_reminders_changed" + return self._tag == 'admin_email_reminders_changed' def is_ai_third_party_sharing_dropbox_base_policy_changed(self): """ @@ -43641,7 +42616,7 @@ def is_ai_third_party_sharing_dropbox_base_policy_changed(self): :rtype: bool """ - return self._tag == "ai_third_party_sharing_dropbox_base_policy_changed" + return self._tag == 'ai_third_party_sharing_dropbox_base_policy_changed' def is_allow_download_disabled(self): """ @@ -43649,7 +42624,7 @@ def is_allow_download_disabled(self): :rtype: bool """ - return self._tag == "allow_download_disabled" + return self._tag == 'allow_download_disabled' def is_allow_download_enabled(self): """ @@ -43657,7 +42632,7 @@ def is_allow_download_enabled(self): :rtype: bool """ - return self._tag == "allow_download_enabled" + return self._tag == 'allow_download_enabled' def is_apple_login_change_policy(self): """ @@ -43665,7 +42640,7 @@ def is_apple_login_change_policy(self): :rtype: bool """ - return self._tag == "apple_login_change_policy" + return self._tag == 'apple_login_change_policy' def is_app_permissions_changed(self): """ @@ -43673,7 +42648,7 @@ def is_app_permissions_changed(self): :rtype: bool """ - return self._tag == "app_permissions_changed" + return self._tag == 'app_permissions_changed' def is_camera_uploads_policy_changed(self): """ @@ -43681,7 +42656,7 @@ def is_camera_uploads_policy_changed(self): :rtype: bool """ - return self._tag == "camera_uploads_policy_changed" + return self._tag == 'camera_uploads_policy_changed' def is_capture_team_space_policy_changed(self): """ @@ -43689,7 +42664,7 @@ def is_capture_team_space_policy_changed(self): :rtype: bool """ - return self._tag == "capture_team_space_policy_changed" + return self._tag == 'capture_team_space_policy_changed' def is_capture_transcript_policy_changed(self): """ @@ -43697,7 +42672,7 @@ def is_capture_transcript_policy_changed(self): :rtype: bool """ - return self._tag == "capture_transcript_policy_changed" + return self._tag == 'capture_transcript_policy_changed' def is_classification_change_policy(self): """ @@ -43705,7 +42680,7 @@ def is_classification_change_policy(self): :rtype: bool """ - return self._tag == "classification_change_policy" + return self._tag == 'classification_change_policy' def is_computer_backup_policy_changed(self): """ @@ -43713,7 +42688,7 @@ def is_computer_backup_policy_changed(self): :rtype: bool """ - return self._tag == "computer_backup_policy_changed" + return self._tag == 'computer_backup_policy_changed' def is_content_administration_policy_changed(self): """ @@ -43721,7 +42696,7 @@ def is_content_administration_policy_changed(self): :rtype: bool """ - return self._tag == "content_administration_policy_changed" + return self._tag == 'content_administration_policy_changed' def is_content_deletion_protection_change_policy(self): """ @@ -43729,7 +42704,7 @@ def is_content_deletion_protection_change_policy(self): :rtype: bool """ - return self._tag == "content_deletion_protection_change_policy" + return self._tag == 'content_deletion_protection_change_policy' def is_dash_external_sharing_policy_changed(self): """ @@ -43737,7 +42712,7 @@ def is_dash_external_sharing_policy_changed(self): :rtype: bool """ - return self._tag == "dash_external_sharing_policy_changed" + return self._tag == 'dash_external_sharing_policy_changed' def is_data_placement_restriction_change_policy(self): """ @@ -43745,7 +42720,7 @@ def is_data_placement_restriction_change_policy(self): :rtype: bool """ - return self._tag == "data_placement_restriction_change_policy" + return self._tag == 'data_placement_restriction_change_policy' def is_data_placement_restriction_satisfy_policy(self): """ @@ -43753,7 +42728,7 @@ def is_data_placement_restriction_satisfy_policy(self): :rtype: bool """ - return self._tag == "data_placement_restriction_satisfy_policy" + return self._tag == 'data_placement_restriction_satisfy_policy' def is_device_approvals_add_exception(self): """ @@ -43761,7 +42736,7 @@ def is_device_approvals_add_exception(self): :rtype: bool """ - return self._tag == "device_approvals_add_exception" + return self._tag == 'device_approvals_add_exception' def is_device_approvals_change_desktop_policy(self): """ @@ -43769,7 +42744,7 @@ def is_device_approvals_change_desktop_policy(self): :rtype: bool """ - return self._tag == "device_approvals_change_desktop_policy" + return self._tag == 'device_approvals_change_desktop_policy' def is_device_approvals_change_mobile_policy(self): """ @@ -43777,7 +42752,7 @@ def is_device_approvals_change_mobile_policy(self): :rtype: bool """ - return self._tag == "device_approvals_change_mobile_policy" + return self._tag == 'device_approvals_change_mobile_policy' def is_device_approvals_change_overage_action(self): """ @@ -43785,7 +42760,7 @@ def is_device_approvals_change_overage_action(self): :rtype: bool """ - return self._tag == "device_approvals_change_overage_action" + return self._tag == 'device_approvals_change_overage_action' def is_device_approvals_change_unlink_action(self): """ @@ -43793,7 +42768,7 @@ def is_device_approvals_change_unlink_action(self): :rtype: bool """ - return self._tag == "device_approvals_change_unlink_action" + return self._tag == 'device_approvals_change_unlink_action' def is_device_approvals_remove_exception(self): """ @@ -43801,7 +42776,7 @@ def is_device_approvals_remove_exception(self): :rtype: bool """ - return self._tag == "device_approvals_remove_exception" + return self._tag == 'device_approvals_remove_exception' def is_directory_restrictions_add_members(self): """ @@ -43809,7 +42784,7 @@ def is_directory_restrictions_add_members(self): :rtype: bool """ - return self._tag == "directory_restrictions_add_members" + return self._tag == 'directory_restrictions_add_members' def is_directory_restrictions_remove_members(self): """ @@ -43817,7 +42792,7 @@ def is_directory_restrictions_remove_members(self): :rtype: bool """ - return self._tag == "directory_restrictions_remove_members" + return self._tag == 'directory_restrictions_remove_members' def is_dropbox_passwords_policy_changed(self): """ @@ -43825,7 +42800,7 @@ def is_dropbox_passwords_policy_changed(self): :rtype: bool """ - return self._tag == "dropbox_passwords_policy_changed" + return self._tag == 'dropbox_passwords_policy_changed' def is_email_ingest_policy_changed(self): """ @@ -43833,7 +42808,7 @@ def is_email_ingest_policy_changed(self): :rtype: bool """ - return self._tag == "email_ingest_policy_changed" + return self._tag == 'email_ingest_policy_changed' def is_emm_add_exception(self): """ @@ -43841,7 +42816,7 @@ def is_emm_add_exception(self): :rtype: bool """ - return self._tag == "emm_add_exception" + return self._tag == 'emm_add_exception' def is_emm_change_policy(self): """ @@ -43849,7 +42824,7 @@ def is_emm_change_policy(self): :rtype: bool """ - return self._tag == "emm_change_policy" + return self._tag == 'emm_change_policy' def is_emm_remove_exception(self): """ @@ -43857,7 +42832,7 @@ def is_emm_remove_exception(self): :rtype: bool """ - return self._tag == "emm_remove_exception" + return self._tag == 'emm_remove_exception' def is_extended_version_history_change_policy(self): """ @@ -43865,7 +42840,7 @@ def is_extended_version_history_change_policy(self): :rtype: bool """ - return self._tag == "extended_version_history_change_policy" + return self._tag == 'extended_version_history_change_policy' def is_external_drive_backup_policy_changed(self): """ @@ -43873,7 +42848,7 @@ def is_external_drive_backup_policy_changed(self): :rtype: bool """ - return self._tag == "external_drive_backup_policy_changed" + return self._tag == 'external_drive_backup_policy_changed' def is_file_comments_change_policy(self): """ @@ -43881,7 +42856,7 @@ def is_file_comments_change_policy(self): :rtype: bool """ - return self._tag == "file_comments_change_policy" + return self._tag == 'file_comments_change_policy' def is_file_locking_policy_changed(self): """ @@ -43889,7 +42864,7 @@ def is_file_locking_policy_changed(self): :rtype: bool """ - return self._tag == "file_locking_policy_changed" + return self._tag == 'file_locking_policy_changed' def is_file_provider_migration_policy_changed(self): """ @@ -43897,7 +42872,7 @@ def is_file_provider_migration_policy_changed(self): :rtype: bool """ - return self._tag == "file_provider_migration_policy_changed" + return self._tag == 'file_provider_migration_policy_changed' def is_file_requests_change_policy(self): """ @@ -43905,7 +42880,7 @@ def is_file_requests_change_policy(self): :rtype: bool """ - return self._tag == "file_requests_change_policy" + return self._tag == 'file_requests_change_policy' def is_file_requests_emails_enabled(self): """ @@ -43913,7 +42888,7 @@ def is_file_requests_emails_enabled(self): :rtype: bool """ - return self._tag == "file_requests_emails_enabled" + return self._tag == 'file_requests_emails_enabled' def is_file_requests_emails_restricted_to_team_only(self): """ @@ -43921,7 +42896,7 @@ def is_file_requests_emails_restricted_to_team_only(self): :rtype: bool """ - return self._tag == "file_requests_emails_restricted_to_team_only" + return self._tag == 'file_requests_emails_restricted_to_team_only' def is_file_transfers_policy_changed(self): """ @@ -43929,7 +42904,7 @@ def is_file_transfers_policy_changed(self): :rtype: bool """ - return self._tag == "file_transfers_policy_changed" + return self._tag == 'file_transfers_policy_changed' def is_flexible_file_names_policy_changed(self): """ @@ -43937,7 +42912,7 @@ def is_flexible_file_names_policy_changed(self): :rtype: bool """ - return self._tag == "flexible_file_names_policy_changed" + return self._tag == 'flexible_file_names_policy_changed' def is_folder_link_restriction_policy_changed(self): """ @@ -43945,7 +42920,7 @@ def is_folder_link_restriction_policy_changed(self): :rtype: bool """ - return self._tag == "folder_link_restriction_policy_changed" + return self._tag == 'folder_link_restriction_policy_changed' def is_google_sso_change_policy(self): """ @@ -43953,7 +42928,7 @@ def is_google_sso_change_policy(self): :rtype: bool """ - return self._tag == "google_sso_change_policy" + return self._tag == 'google_sso_change_policy' def is_group_user_management_change_policy(self): """ @@ -43961,7 +42936,7 @@ def is_group_user_management_change_policy(self): :rtype: bool """ - return self._tag == "group_user_management_change_policy" + return self._tag == 'group_user_management_change_policy' def is_integration_policy_changed(self): """ @@ -43969,7 +42944,7 @@ def is_integration_policy_changed(self): :rtype: bool """ - return self._tag == "integration_policy_changed" + return self._tag == 'integration_policy_changed' def is_invite_acceptance_email_policy_changed(self): """ @@ -43977,7 +42952,7 @@ def is_invite_acceptance_email_policy_changed(self): :rtype: bool """ - return self._tag == "invite_acceptance_email_policy_changed" + return self._tag == 'invite_acceptance_email_policy_changed' def is_media_hub_adding_people_policy_changed(self): """ @@ -43985,7 +42960,7 @@ def is_media_hub_adding_people_policy_changed(self): :rtype: bool """ - return self._tag == "media_hub_adding_people_policy_changed" + return self._tag == 'media_hub_adding_people_policy_changed' def is_media_hub_download_policy_changed(self): """ @@ -43993,7 +42968,7 @@ def is_media_hub_download_policy_changed(self): :rtype: bool """ - return self._tag == "media_hub_download_policy_changed" + return self._tag == 'media_hub_download_policy_changed' def is_media_hub_link_sharing_policy_changed(self): """ @@ -44001,7 +42976,7 @@ def is_media_hub_link_sharing_policy_changed(self): :rtype: bool """ - return self._tag == "media_hub_link_sharing_policy_changed" + return self._tag == 'media_hub_link_sharing_policy_changed' def is_member_requests_change_policy(self): """ @@ -44009,7 +42984,7 @@ def is_member_requests_change_policy(self): :rtype: bool """ - return self._tag == "member_requests_change_policy" + return self._tag == 'member_requests_change_policy' def is_member_send_invite_policy_changed(self): """ @@ -44017,7 +42992,7 @@ def is_member_send_invite_policy_changed(self): :rtype: bool """ - return self._tag == "member_send_invite_policy_changed" + return self._tag == 'member_send_invite_policy_changed' def is_member_space_limits_add_exception(self): """ @@ -44025,7 +43000,7 @@ def is_member_space_limits_add_exception(self): :rtype: bool """ - return self._tag == "member_space_limits_add_exception" + return self._tag == 'member_space_limits_add_exception' def is_member_space_limits_change_caps_type_policy(self): """ @@ -44033,7 +43008,7 @@ def is_member_space_limits_change_caps_type_policy(self): :rtype: bool """ - return self._tag == "member_space_limits_change_caps_type_policy" + return self._tag == 'member_space_limits_change_caps_type_policy' def is_member_space_limits_change_policy(self): """ @@ -44041,7 +43016,7 @@ def is_member_space_limits_change_policy(self): :rtype: bool """ - return self._tag == "member_space_limits_change_policy" + return self._tag == 'member_space_limits_change_policy' def is_member_space_limits_remove_exception(self): """ @@ -44049,7 +43024,7 @@ def is_member_space_limits_remove_exception(self): :rtype: bool """ - return self._tag == "member_space_limits_remove_exception" + return self._tag == 'member_space_limits_remove_exception' def is_member_suggestions_change_policy(self): """ @@ -44057,7 +43032,7 @@ def is_member_suggestions_change_policy(self): :rtype: bool """ - return self._tag == "member_suggestions_change_policy" + return self._tag == 'member_suggestions_change_policy' def is_microsoft_login_change_policy(self): """ @@ -44065,7 +43040,7 @@ def is_microsoft_login_change_policy(self): :rtype: bool """ - return self._tag == "microsoft_login_change_policy" + return self._tag == 'microsoft_login_change_policy' def is_microsoft_office_addin_change_policy(self): """ @@ -44073,7 +43048,7 @@ def is_microsoft_office_addin_change_policy(self): :rtype: bool """ - return self._tag == "microsoft_office_addin_change_policy" + return self._tag == 'microsoft_office_addin_change_policy' def is_multi_team_identity_policy_changed(self): """ @@ -44081,7 +43056,7 @@ def is_multi_team_identity_policy_changed(self): :rtype: bool """ - return self._tag == "multi_team_identity_policy_changed" + return self._tag == 'multi_team_identity_policy_changed' def is_network_control_change_policy(self): """ @@ -44089,7 +43064,7 @@ def is_network_control_change_policy(self): :rtype: bool """ - return self._tag == "network_control_change_policy" + return self._tag == 'network_control_change_policy' def is_paper_change_deployment_policy(self): """ @@ -44097,7 +43072,7 @@ def is_paper_change_deployment_policy(self): :rtype: bool """ - return self._tag == "paper_change_deployment_policy" + return self._tag == 'paper_change_deployment_policy' def is_paper_change_member_link_policy(self): """ @@ -44105,7 +43080,7 @@ def is_paper_change_member_link_policy(self): :rtype: bool """ - return self._tag == "paper_change_member_link_policy" + return self._tag == 'paper_change_member_link_policy' def is_paper_change_member_policy(self): """ @@ -44113,7 +43088,7 @@ def is_paper_change_member_policy(self): :rtype: bool """ - return self._tag == "paper_change_member_policy" + return self._tag == 'paper_change_member_policy' def is_paper_change_policy(self): """ @@ -44121,7 +43096,7 @@ def is_paper_change_policy(self): :rtype: bool """ - return self._tag == "paper_change_policy" + return self._tag == 'paper_change_policy' def is_paper_default_folder_policy_changed(self): """ @@ -44129,7 +43104,7 @@ def is_paper_default_folder_policy_changed(self): :rtype: bool """ - return self._tag == "paper_default_folder_policy_changed" + return self._tag == 'paper_default_folder_policy_changed' def is_paper_desktop_policy_changed(self): """ @@ -44137,7 +43112,7 @@ def is_paper_desktop_policy_changed(self): :rtype: bool """ - return self._tag == "paper_desktop_policy_changed" + return self._tag == 'paper_desktop_policy_changed' def is_paper_enabled_users_group_addition(self): """ @@ -44145,7 +43120,7 @@ def is_paper_enabled_users_group_addition(self): :rtype: bool """ - return self._tag == "paper_enabled_users_group_addition" + return self._tag == 'paper_enabled_users_group_addition' def is_paper_enabled_users_group_removal(self): """ @@ -44153,7 +43128,7 @@ def is_paper_enabled_users_group_removal(self): :rtype: bool """ - return self._tag == "paper_enabled_users_group_removal" + return self._tag == 'paper_enabled_users_group_removal' def is_passkey_login_policy_changed(self): """ @@ -44161,7 +43136,7 @@ def is_passkey_login_policy_changed(self): :rtype: bool """ - return self._tag == "passkey_login_policy_changed" + return self._tag == 'passkey_login_policy_changed' def is_password_strength_requirements_change_policy(self): """ @@ -44169,7 +43144,7 @@ def is_password_strength_requirements_change_policy(self): :rtype: bool """ - return self._tag == "password_strength_requirements_change_policy" + return self._tag == 'password_strength_requirements_change_policy' def is_permanent_delete_change_policy(self): """ @@ -44177,7 +43152,7 @@ def is_permanent_delete_change_policy(self): :rtype: bool """ - return self._tag == "permanent_delete_change_policy" + return self._tag == 'permanent_delete_change_policy' def is_previews_ai_policy_changed(self): """ @@ -44185,7 +43160,7 @@ def is_previews_ai_policy_changed(self): :rtype: bool """ - return self._tag == "previews_ai_policy_changed" + return self._tag == 'previews_ai_policy_changed' def is_replay_adding_people_policy_changed(self): """ @@ -44193,7 +43168,7 @@ def is_replay_adding_people_policy_changed(self): :rtype: bool """ - return self._tag == "replay_adding_people_policy_changed" + return self._tag == 'replay_adding_people_policy_changed' def is_replay_sharing_policy_changed(self): """ @@ -44201,7 +43176,7 @@ def is_replay_sharing_policy_changed(self): :rtype: bool """ - return self._tag == "replay_sharing_policy_changed" + return self._tag == 'replay_sharing_policy_changed' def is_reseller_support_change_policy(self): """ @@ -44209,7 +43184,7 @@ def is_reseller_support_change_policy(self): :rtype: bool """ - return self._tag == "reseller_support_change_policy" + return self._tag == 'reseller_support_change_policy' def is_rewind_policy_changed(self): """ @@ -44217,7 +43192,7 @@ def is_rewind_policy_changed(self): :rtype: bool """ - return self._tag == "rewind_policy_changed" + return self._tag == 'rewind_policy_changed' def is_send_and_track_policy_changed(self): """ @@ -44225,7 +43200,7 @@ def is_send_and_track_policy_changed(self): :rtype: bool """ - return self._tag == "send_and_track_policy_changed" + return self._tag == 'send_and_track_policy_changed' def is_send_external_sharing_policy_changed(self): """ @@ -44233,7 +43208,7 @@ def is_send_external_sharing_policy_changed(self): :rtype: bool """ - return self._tag == "send_external_sharing_policy_changed" + return self._tag == 'send_external_sharing_policy_changed' def is_send_for_signature_policy_changed(self): """ @@ -44241,7 +43216,7 @@ def is_send_for_signature_policy_changed(self): :rtype: bool """ - return self._tag == "send_for_signature_policy_changed" + return self._tag == 'send_for_signature_policy_changed' def is_shared_link_default_permissions_policy_changed(self): """ @@ -44249,7 +43224,7 @@ def is_shared_link_default_permissions_policy_changed(self): :rtype: bool """ - return self._tag == "shared_link_default_permissions_policy_changed" + return self._tag == 'shared_link_default_permissions_policy_changed' def is_sharing_change_folder_join_policy(self): """ @@ -44257,7 +43232,7 @@ def is_sharing_change_folder_join_policy(self): :rtype: bool """ - return self._tag == "sharing_change_folder_join_policy" + return self._tag == 'sharing_change_folder_join_policy' def is_sharing_change_link_allow_change_expiration_policy(self): """ @@ -44265,7 +43240,7 @@ def is_sharing_change_link_allow_change_expiration_policy(self): :rtype: bool """ - return self._tag == "sharing_change_link_allow_change_expiration_policy" + return self._tag == 'sharing_change_link_allow_change_expiration_policy' def is_sharing_change_link_default_expiration_policy(self): """ @@ -44273,7 +43248,7 @@ def is_sharing_change_link_default_expiration_policy(self): :rtype: bool """ - return self._tag == "sharing_change_link_default_expiration_policy" + return self._tag == 'sharing_change_link_default_expiration_policy' def is_sharing_change_link_enforce_password_policy(self): """ @@ -44281,7 +43256,7 @@ def is_sharing_change_link_enforce_password_policy(self): :rtype: bool """ - return self._tag == "sharing_change_link_enforce_password_policy" + return self._tag == 'sharing_change_link_enforce_password_policy' def is_sharing_change_link_policy(self): """ @@ -44289,7 +43264,7 @@ def is_sharing_change_link_policy(self): :rtype: bool """ - return self._tag == "sharing_change_link_policy" + return self._tag == 'sharing_change_link_policy' def is_sharing_change_member_policy(self): """ @@ -44297,7 +43272,7 @@ def is_sharing_change_member_policy(self): :rtype: bool """ - return self._tag == "sharing_change_member_policy" + return self._tag == 'sharing_change_member_policy' def is_showcase_change_download_policy(self): """ @@ -44305,7 +43280,7 @@ def is_showcase_change_download_policy(self): :rtype: bool """ - return self._tag == "showcase_change_download_policy" + return self._tag == 'showcase_change_download_policy' def is_showcase_change_enabled_policy(self): """ @@ -44313,7 +43288,7 @@ def is_showcase_change_enabled_policy(self): :rtype: bool """ - return self._tag == "showcase_change_enabled_policy" + return self._tag == 'showcase_change_enabled_policy' def is_showcase_change_external_sharing_policy(self): """ @@ -44321,7 +43296,7 @@ def is_showcase_change_external_sharing_policy(self): :rtype: bool """ - return self._tag == "showcase_change_external_sharing_policy" + return self._tag == 'showcase_change_external_sharing_policy' def is_sign_external_sharing_policy_changed(self): """ @@ -44329,7 +43304,7 @@ def is_sign_external_sharing_policy_changed(self): :rtype: bool """ - return self._tag == "sign_external_sharing_policy_changed" + return self._tag == 'sign_external_sharing_policy_changed' def is_sign_template_creation_permission_changed(self): """ @@ -44337,7 +43312,7 @@ def is_sign_template_creation_permission_changed(self): :rtype: bool """ - return self._tag == "sign_template_creation_permission_changed" + return self._tag == 'sign_template_creation_permission_changed' def is_smarter_smart_sync_policy_changed(self): """ @@ -44345,7 +43320,7 @@ def is_smarter_smart_sync_policy_changed(self): :rtype: bool """ - return self._tag == "smarter_smart_sync_policy_changed" + return self._tag == 'smarter_smart_sync_policy_changed' def is_smart_sync_change_policy(self): """ @@ -44353,7 +43328,7 @@ def is_smart_sync_change_policy(self): :rtype: bool """ - return self._tag == "smart_sync_change_policy" + return self._tag == 'smart_sync_change_policy' def is_smart_sync_not_opt_out(self): """ @@ -44361,7 +43336,7 @@ def is_smart_sync_not_opt_out(self): :rtype: bool """ - return self._tag == "smart_sync_not_opt_out" + return self._tag == 'smart_sync_not_opt_out' def is_smart_sync_opt_out(self): """ @@ -44369,7 +43344,7 @@ def is_smart_sync_opt_out(self): :rtype: bool """ - return self._tag == "smart_sync_opt_out" + return self._tag == 'smart_sync_opt_out' def is_sso_change_policy(self): """ @@ -44377,7 +43352,7 @@ def is_sso_change_policy(self): :rtype: bool """ - return self._tag == "sso_change_policy" + return self._tag == 'sso_change_policy' def is_stack_cross_team_access_policy_changed(self): """ @@ -44385,7 +43360,7 @@ def is_stack_cross_team_access_policy_changed(self): :rtype: bool """ - return self._tag == "stack_cross_team_access_policy_changed" + return self._tag == 'stack_cross_team_access_policy_changed' def is_team_branding_policy_changed(self): """ @@ -44393,7 +43368,7 @@ def is_team_branding_policy_changed(self): :rtype: bool """ - return self._tag == "team_branding_policy_changed" + return self._tag == 'team_branding_policy_changed' def is_team_extensions_policy_changed(self): """ @@ -44401,7 +43376,7 @@ def is_team_extensions_policy_changed(self): :rtype: bool """ - return self._tag == "team_extensions_policy_changed" + return self._tag == 'team_extensions_policy_changed' def is_team_member_storage_request_policy_changed(self): """ @@ -44409,7 +43384,7 @@ def is_team_member_storage_request_policy_changed(self): :rtype: bool """ - return self._tag == "team_member_storage_request_policy_changed" + return self._tag == 'team_member_storage_request_policy_changed' def is_team_selective_sync_policy_changed(self): """ @@ -44417,7 +43392,7 @@ def is_team_selective_sync_policy_changed(self): :rtype: bool """ - return self._tag == "team_selective_sync_policy_changed" + return self._tag == 'team_selective_sync_policy_changed' def is_team_sharing_whitelist_subjects_changed(self): """ @@ -44425,7 +43400,7 @@ def is_team_sharing_whitelist_subjects_changed(self): :rtype: bool """ - return self._tag == "team_sharing_whitelist_subjects_changed" + return self._tag == 'team_sharing_whitelist_subjects_changed' def is_tfa_add_exception(self): """ @@ -44433,7 +43408,7 @@ def is_tfa_add_exception(self): :rtype: bool """ - return self._tag == "tfa_add_exception" + return self._tag == 'tfa_add_exception' def is_tfa_change_policy(self): """ @@ -44441,7 +43416,7 @@ def is_tfa_change_policy(self): :rtype: bool """ - return self._tag == "tfa_change_policy" + return self._tag == 'tfa_change_policy' def is_tfa_remove_exception(self): """ @@ -44449,7 +43424,7 @@ def is_tfa_remove_exception(self): :rtype: bool """ - return self._tag == "tfa_remove_exception" + return self._tag == 'tfa_remove_exception' def is_top_level_content_policy_changed(self): """ @@ -44457,7 +43432,7 @@ def is_top_level_content_policy_changed(self): :rtype: bool """ - return self._tag == "top_level_content_policy_changed" + return self._tag == 'top_level_content_policy_changed' def is_two_account_change_policy(self): """ @@ -44465,7 +43440,7 @@ def is_two_account_change_policy(self): :rtype: bool """ - return self._tag == "two_account_change_policy" + return self._tag == 'two_account_change_policy' def is_viewer_info_policy_changed(self): """ @@ -44473,7 +43448,7 @@ def is_viewer_info_policy_changed(self): :rtype: bool """ - return self._tag == "viewer_info_policy_changed" + return self._tag == 'viewer_info_policy_changed' def is_watermarking_policy_changed(self): """ @@ -44481,7 +43456,7 @@ def is_watermarking_policy_changed(self): :rtype: bool """ - return self._tag == "watermarking_policy_changed" + return self._tag == 'watermarking_policy_changed' def is_web_sessions_change_active_session_limit(self): """ @@ -44489,7 +43464,7 @@ def is_web_sessions_change_active_session_limit(self): :rtype: bool """ - return self._tag == "web_sessions_change_active_session_limit" + return self._tag == 'web_sessions_change_active_session_limit' def is_web_sessions_change_fixed_length_policy(self): """ @@ -44497,7 +43472,7 @@ def is_web_sessions_change_fixed_length_policy(self): :rtype: bool """ - return self._tag == "web_sessions_change_fixed_length_policy" + return self._tag == 'web_sessions_change_fixed_length_policy' def is_web_sessions_change_idle_length_policy(self): """ @@ -44505,7 +43480,7 @@ def is_web_sessions_change_idle_length_policy(self): :rtype: bool """ - return self._tag == "web_sessions_change_idle_length_policy" + return self._tag == 'web_sessions_change_idle_length_policy' def is_data_residency_migration_request_successful(self): """ @@ -44513,7 +43488,7 @@ def is_data_residency_migration_request_successful(self): :rtype: bool """ - return self._tag == "data_residency_migration_request_successful" + return self._tag == 'data_residency_migration_request_successful' def is_data_residency_migration_request_unsuccessful(self): """ @@ -44521,7 +43496,7 @@ def is_data_residency_migration_request_unsuccessful(self): :rtype: bool """ - return self._tag == "data_residency_migration_request_unsuccessful" + return self._tag == 'data_residency_migration_request_unsuccessful' def is_team_merge_from(self): """ @@ -44529,7 +43504,7 @@ def is_team_merge_from(self): :rtype: bool """ - return self._tag == "team_merge_from" + return self._tag == 'team_merge_from' def is_team_merge_to(self): """ @@ -44537,7 +43512,7 @@ def is_team_merge_to(self): :rtype: bool """ - return self._tag == "team_merge_to" + return self._tag == 'team_merge_to' def is_team_profile_add_background(self): """ @@ -44545,7 +43520,7 @@ def is_team_profile_add_background(self): :rtype: bool """ - return self._tag == "team_profile_add_background" + return self._tag == 'team_profile_add_background' def is_team_profile_add_logo(self): """ @@ -44553,7 +43528,7 @@ def is_team_profile_add_logo(self): :rtype: bool """ - return self._tag == "team_profile_add_logo" + return self._tag == 'team_profile_add_logo' def is_team_profile_change_background(self): """ @@ -44561,7 +43536,7 @@ def is_team_profile_change_background(self): :rtype: bool """ - return self._tag == "team_profile_change_background" + return self._tag == 'team_profile_change_background' def is_team_profile_change_default_language(self): """ @@ -44569,7 +43544,7 @@ def is_team_profile_change_default_language(self): :rtype: bool """ - return self._tag == "team_profile_change_default_language" + return self._tag == 'team_profile_change_default_language' def is_team_profile_change_logo(self): """ @@ -44577,7 +43552,7 @@ def is_team_profile_change_logo(self): :rtype: bool """ - return self._tag == "team_profile_change_logo" + return self._tag == 'team_profile_change_logo' def is_team_profile_change_name(self): """ @@ -44585,7 +43560,7 @@ def is_team_profile_change_name(self): :rtype: bool """ - return self._tag == "team_profile_change_name" + return self._tag == 'team_profile_change_name' def is_team_profile_remove_background(self): """ @@ -44593,7 +43568,7 @@ def is_team_profile_remove_background(self): :rtype: bool """ - return self._tag == "team_profile_remove_background" + return self._tag == 'team_profile_remove_background' def is_team_profile_remove_logo(self): """ @@ -44601,7 +43576,7 @@ def is_team_profile_remove_logo(self): :rtype: bool """ - return self._tag == "team_profile_remove_logo" + return self._tag == 'team_profile_remove_logo' def is_passkey_add(self): """ @@ -44609,7 +43584,7 @@ def is_passkey_add(self): :rtype: bool """ - return self._tag == "passkey_add" + return self._tag == 'passkey_add' def is_passkey_remove(self): """ @@ -44617,7 +43592,7 @@ def is_passkey_remove(self): :rtype: bool """ - return self._tag == "passkey_remove" + return self._tag == 'passkey_remove' def is_tfa_add_backup_phone(self): """ @@ -44625,7 +43600,7 @@ def is_tfa_add_backup_phone(self): :rtype: bool """ - return self._tag == "tfa_add_backup_phone" + return self._tag == 'tfa_add_backup_phone' def is_tfa_add_security_key(self): """ @@ -44633,7 +43608,7 @@ def is_tfa_add_security_key(self): :rtype: bool """ - return self._tag == "tfa_add_security_key" + return self._tag == 'tfa_add_security_key' def is_tfa_change_backup_phone(self): """ @@ -44641,7 +43616,7 @@ def is_tfa_change_backup_phone(self): :rtype: bool """ - return self._tag == "tfa_change_backup_phone" + return self._tag == 'tfa_change_backup_phone' def is_tfa_change_status(self): """ @@ -44649,7 +43624,7 @@ def is_tfa_change_status(self): :rtype: bool """ - return self._tag == "tfa_change_status" + return self._tag == 'tfa_change_status' def is_tfa_remove_backup_phone(self): """ @@ -44657,7 +43632,7 @@ def is_tfa_remove_backup_phone(self): :rtype: bool """ - return self._tag == "tfa_remove_backup_phone" + return self._tag == 'tfa_remove_backup_phone' def is_tfa_remove_security_key(self): """ @@ -44665,7 +43640,7 @@ def is_tfa_remove_security_key(self): :rtype: bool """ - return self._tag == "tfa_remove_security_key" + return self._tag == 'tfa_remove_security_key' def is_tfa_reset(self): """ @@ -44673,7 +43648,7 @@ def is_tfa_reset(self): :rtype: bool """ - return self._tag == "tfa_reset" + return self._tag == 'tfa_reset' def is_changed_enterprise_admin_role(self): """ @@ -44681,7 +43656,7 @@ def is_changed_enterprise_admin_role(self): :rtype: bool """ - return self._tag == "changed_enterprise_admin_role" + return self._tag == 'changed_enterprise_admin_role' def is_changed_enterprise_connected_team_status(self): """ @@ -44689,7 +43664,7 @@ def is_changed_enterprise_connected_team_status(self): :rtype: bool """ - return self._tag == "changed_enterprise_connected_team_status" + return self._tag == 'changed_enterprise_connected_team_status' def is_ended_enterprise_admin_session(self): """ @@ -44697,7 +43672,7 @@ def is_ended_enterprise_admin_session(self): :rtype: bool """ - return self._tag == "ended_enterprise_admin_session" + return self._tag == 'ended_enterprise_admin_session' def is_ended_enterprise_admin_session_deprecated(self): """ @@ -44705,7 +43680,7 @@ def is_ended_enterprise_admin_session_deprecated(self): :rtype: bool """ - return self._tag == "ended_enterprise_admin_session_deprecated" + return self._tag == 'ended_enterprise_admin_session_deprecated' def is_enterprise_settings_locking(self): """ @@ -44713,7 +43688,7 @@ def is_enterprise_settings_locking(self): :rtype: bool """ - return self._tag == "enterprise_settings_locking" + return self._tag == 'enterprise_settings_locking' def is_guest_admin_change_status(self): """ @@ -44721,7 +43696,7 @@ def is_guest_admin_change_status(self): :rtype: bool """ - return self._tag == "guest_admin_change_status" + return self._tag == 'guest_admin_change_status' def is_started_enterprise_admin_session(self): """ @@ -44729,7 +43704,7 @@ def is_started_enterprise_admin_session(self): :rtype: bool """ - return self._tag == "started_enterprise_admin_session" + return self._tag == 'started_enterprise_admin_session' def is_team_merge_request_accepted(self): """ @@ -44737,7 +43712,7 @@ def is_team_merge_request_accepted(self): :rtype: bool """ - return self._tag == "team_merge_request_accepted" + return self._tag == 'team_merge_request_accepted' def is_team_merge_request_accepted_shown_to_primary_team(self): """ @@ -44745,7 +43720,7 @@ def is_team_merge_request_accepted_shown_to_primary_team(self): :rtype: bool """ - return self._tag == "team_merge_request_accepted_shown_to_primary_team" + return self._tag == 'team_merge_request_accepted_shown_to_primary_team' def is_team_merge_request_accepted_shown_to_secondary_team(self): """ @@ -44753,7 +43728,7 @@ def is_team_merge_request_accepted_shown_to_secondary_team(self): :rtype: bool """ - return self._tag == "team_merge_request_accepted_shown_to_secondary_team" + return self._tag == 'team_merge_request_accepted_shown_to_secondary_team' def is_team_merge_request_auto_canceled(self): """ @@ -44761,7 +43736,7 @@ def is_team_merge_request_auto_canceled(self): :rtype: bool """ - return self._tag == "team_merge_request_auto_canceled" + return self._tag == 'team_merge_request_auto_canceled' def is_team_merge_request_canceled(self): """ @@ -44769,7 +43744,7 @@ def is_team_merge_request_canceled(self): :rtype: bool """ - return self._tag == "team_merge_request_canceled" + return self._tag == 'team_merge_request_canceled' def is_team_merge_request_canceled_shown_to_primary_team(self): """ @@ -44777,7 +43752,7 @@ def is_team_merge_request_canceled_shown_to_primary_team(self): :rtype: bool """ - return self._tag == "team_merge_request_canceled_shown_to_primary_team" + return self._tag == 'team_merge_request_canceled_shown_to_primary_team' def is_team_merge_request_canceled_shown_to_secondary_team(self): """ @@ -44785,7 +43760,7 @@ def is_team_merge_request_canceled_shown_to_secondary_team(self): :rtype: bool """ - return self._tag == "team_merge_request_canceled_shown_to_secondary_team" + return self._tag == 'team_merge_request_canceled_shown_to_secondary_team' def is_team_merge_request_expired(self): """ @@ -44793,7 +43768,7 @@ def is_team_merge_request_expired(self): :rtype: bool """ - return self._tag == "team_merge_request_expired" + return self._tag == 'team_merge_request_expired' def is_team_merge_request_expired_shown_to_primary_team(self): """ @@ -44801,7 +43776,7 @@ def is_team_merge_request_expired_shown_to_primary_team(self): :rtype: bool """ - return self._tag == "team_merge_request_expired_shown_to_primary_team" + return self._tag == 'team_merge_request_expired_shown_to_primary_team' def is_team_merge_request_expired_shown_to_secondary_team(self): """ @@ -44809,7 +43784,7 @@ def is_team_merge_request_expired_shown_to_secondary_team(self): :rtype: bool """ - return self._tag == "team_merge_request_expired_shown_to_secondary_team" + return self._tag == 'team_merge_request_expired_shown_to_secondary_team' def is_team_merge_request_rejected_shown_to_primary_team(self): """ @@ -44817,7 +43792,7 @@ def is_team_merge_request_rejected_shown_to_primary_team(self): :rtype: bool """ - return self._tag == "team_merge_request_rejected_shown_to_primary_team" + return self._tag == 'team_merge_request_rejected_shown_to_primary_team' def is_team_merge_request_rejected_shown_to_secondary_team(self): """ @@ -44825,7 +43800,7 @@ def is_team_merge_request_rejected_shown_to_secondary_team(self): :rtype: bool """ - return self._tag == "team_merge_request_rejected_shown_to_secondary_team" + return self._tag == 'team_merge_request_rejected_shown_to_secondary_team' def is_team_merge_request_reminder(self): """ @@ -44833,7 +43808,7 @@ def is_team_merge_request_reminder(self): :rtype: bool """ - return self._tag == "team_merge_request_reminder" + return self._tag == 'team_merge_request_reminder' def is_team_merge_request_reminder_shown_to_primary_team(self): """ @@ -44841,7 +43816,7 @@ def is_team_merge_request_reminder_shown_to_primary_team(self): :rtype: bool """ - return self._tag == "team_merge_request_reminder_shown_to_primary_team" + return self._tag == 'team_merge_request_reminder_shown_to_primary_team' def is_team_merge_request_reminder_shown_to_secondary_team(self): """ @@ -44849,7 +43824,7 @@ def is_team_merge_request_reminder_shown_to_secondary_team(self): :rtype: bool """ - return self._tag == "team_merge_request_reminder_shown_to_secondary_team" + return self._tag == 'team_merge_request_reminder_shown_to_secondary_team' def is_team_merge_request_revoked(self): """ @@ -44857,7 +43832,7 @@ def is_team_merge_request_revoked(self): :rtype: bool """ - return self._tag == "team_merge_request_revoked" + return self._tag == 'team_merge_request_revoked' def is_team_merge_request_sent_shown_to_primary_team(self): """ @@ -44865,7 +43840,7 @@ def is_team_merge_request_sent_shown_to_primary_team(self): :rtype: bool """ - return self._tag == "team_merge_request_sent_shown_to_primary_team" + return self._tag == 'team_merge_request_sent_shown_to_primary_team' def is_team_merge_request_sent_shown_to_secondary_team(self): """ @@ -44873,7 +43848,7 @@ def is_team_merge_request_sent_shown_to_secondary_team(self): :rtype: bool """ - return self._tag == "team_merge_request_sent_shown_to_secondary_team" + return self._tag == 'team_merge_request_sent_shown_to_secondary_team' def is_other(self): """ @@ -44881,7 +43856,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_admin_alerting_alert_state_changed(self): """ @@ -50444,9 +49419,7 @@ def get_team_folder_space_limits_change_notification_target(self): :rtype: TeamFolderSpaceLimitsChangeNotificationTargetType """ if not self.is_team_folder_space_limits_change_notification_target(): - raise AttributeError( - "tag 'team_folder_space_limits_change_notification_target' not set" - ) + raise AttributeError("tag 'team_folder_space_limits_change_notification_target' not set") return self._value def get_team_selective_sync_settings_changed(self): @@ -52197,9 +51170,7 @@ def get_team_merge_request_accepted_shown_to_secondary_team(self): :rtype: TeamMergeRequestAcceptedShownToSecondaryTeamType """ if not self.is_team_merge_request_accepted_shown_to_secondary_team(): - raise AttributeError( - "tag 'team_merge_request_accepted_shown_to_secondary_team' not set" - ) + raise AttributeError("tag 'team_merge_request_accepted_shown_to_secondary_team' not set") return self._value def get_team_merge_request_auto_canceled(self): @@ -52249,9 +51220,7 @@ def get_team_merge_request_canceled_shown_to_secondary_team(self): :rtype: TeamMergeRequestCanceledShownToSecondaryTeamType """ if not self.is_team_merge_request_canceled_shown_to_secondary_team(): - raise AttributeError( - "tag 'team_merge_request_canceled_shown_to_secondary_team' not set" - ) + raise AttributeError("tag 'team_merge_request_canceled_shown_to_secondary_team' not set") return self._value def get_team_merge_request_expired(self): @@ -52315,9 +51284,7 @@ def get_team_merge_request_rejected_shown_to_secondary_team(self): :rtype: TeamMergeRequestRejectedShownToSecondaryTeamType """ if not self.is_team_merge_request_rejected_shown_to_secondary_team(): - raise AttributeError( - "tag 'team_merge_request_rejected_shown_to_secondary_team' not set" - ) + raise AttributeError("tag 'team_merge_request_rejected_shown_to_secondary_team' not set") return self._value def get_team_merge_request_reminder(self): @@ -52355,9 +51322,7 @@ def get_team_merge_request_reminder_shown_to_secondary_team(self): :rtype: TeamMergeRequestReminderShownToSecondaryTeamType """ if not self.is_team_merge_request_reminder_shown_to_secondary_team(): - raise AttributeError( - "tag 'team_merge_request_reminder_shown_to_secondary_team' not set" - ) + raise AttributeError("tag 'team_merge_request_reminder_shown_to_secondary_team' not set") return self._value def get_team_merge_request_revoked(self): @@ -52399,10 +51364,8 @@ def get_team_merge_request_sent_shown_to_secondary_team(self): def _process_custom_annotations(self, annotation_type, field_path, processor): super(EventType, self)._process_custom_annotations(annotation_type, field_path, processor) - EventType_validator = bv.Union(EventType) - class EventTypeArg(bb.Union): """ The type of the event. @@ -53736,7 +52699,7 @@ class EventTypeArg(bb.Union): (trusted_teams) Requested to merge your team into another Dropbox team """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition admin_alerting_alert_state_changed = None # Attribute is overwritten below the class definition @@ -54982,7 +53945,7 @@ def is_admin_alerting_alert_state_changed(self): :rtype: bool """ - return self._tag == "admin_alerting_alert_state_changed" + return self._tag == 'admin_alerting_alert_state_changed' def is_admin_alerting_changed_alert_config(self): """ @@ -54990,7 +53953,7 @@ def is_admin_alerting_changed_alert_config(self): :rtype: bool """ - return self._tag == "admin_alerting_changed_alert_config" + return self._tag == 'admin_alerting_changed_alert_config' def is_admin_alerting_triggered_alert(self): """ @@ -54998,7 +53961,7 @@ def is_admin_alerting_triggered_alert(self): :rtype: bool """ - return self._tag == "admin_alerting_triggered_alert" + return self._tag == 'admin_alerting_triggered_alert' def is_ransomware_restore_process_completed(self): """ @@ -55006,7 +53969,7 @@ def is_ransomware_restore_process_completed(self): :rtype: bool """ - return self._tag == "ransomware_restore_process_completed" + return self._tag == 'ransomware_restore_process_completed' def is_ransomware_restore_process_started(self): """ @@ -55014,7 +53977,7 @@ def is_ransomware_restore_process_started(self): :rtype: bool """ - return self._tag == "ransomware_restore_process_started" + return self._tag == 'ransomware_restore_process_started' def is_app_blocked_by_permissions(self): """ @@ -55022,7 +53985,7 @@ def is_app_blocked_by_permissions(self): :rtype: bool """ - return self._tag == "app_blocked_by_permissions" + return self._tag == 'app_blocked_by_permissions' def is_app_link_team(self): """ @@ -55030,7 +53993,7 @@ def is_app_link_team(self): :rtype: bool """ - return self._tag == "app_link_team" + return self._tag == 'app_link_team' def is_app_link_user(self): """ @@ -55038,7 +54001,7 @@ def is_app_link_user(self): :rtype: bool """ - return self._tag == "app_link_user" + return self._tag == 'app_link_user' def is_app_unlink_team(self): """ @@ -55046,7 +54009,7 @@ def is_app_unlink_team(self): :rtype: bool """ - return self._tag == "app_unlink_team" + return self._tag == 'app_unlink_team' def is_app_unlink_user(self): """ @@ -55054,7 +54017,7 @@ def is_app_unlink_user(self): :rtype: bool """ - return self._tag == "app_unlink_user" + return self._tag == 'app_unlink_user' def is_integration_connected(self): """ @@ -55062,7 +54025,7 @@ def is_integration_connected(self): :rtype: bool """ - return self._tag == "integration_connected" + return self._tag == 'integration_connected' def is_integration_disconnected(self): """ @@ -55070,7 +54033,7 @@ def is_integration_disconnected(self): :rtype: bool """ - return self._tag == "integration_disconnected" + return self._tag == 'integration_disconnected' def is_file_add_comment(self): """ @@ -55078,7 +54041,7 @@ def is_file_add_comment(self): :rtype: bool """ - return self._tag == "file_add_comment" + return self._tag == 'file_add_comment' def is_file_change_comment_subscription(self): """ @@ -55086,7 +54049,7 @@ def is_file_change_comment_subscription(self): :rtype: bool """ - return self._tag == "file_change_comment_subscription" + return self._tag == 'file_change_comment_subscription' def is_file_delete_comment(self): """ @@ -55094,7 +54057,7 @@ def is_file_delete_comment(self): :rtype: bool """ - return self._tag == "file_delete_comment" + return self._tag == 'file_delete_comment' def is_file_edit_comment(self): """ @@ -55102,7 +54065,7 @@ def is_file_edit_comment(self): :rtype: bool """ - return self._tag == "file_edit_comment" + return self._tag == 'file_edit_comment' def is_file_like_comment(self): """ @@ -55110,7 +54073,7 @@ def is_file_like_comment(self): :rtype: bool """ - return self._tag == "file_like_comment" + return self._tag == 'file_like_comment' def is_file_resolve_comment(self): """ @@ -55118,7 +54081,7 @@ def is_file_resolve_comment(self): :rtype: bool """ - return self._tag == "file_resolve_comment" + return self._tag == 'file_resolve_comment' def is_file_unlike_comment(self): """ @@ -55126,7 +54089,7 @@ def is_file_unlike_comment(self): :rtype: bool """ - return self._tag == "file_unlike_comment" + return self._tag == 'file_unlike_comment' def is_file_unresolve_comment(self): """ @@ -55134,7 +54097,7 @@ def is_file_unresolve_comment(self): :rtype: bool """ - return self._tag == "file_unresolve_comment" + return self._tag == 'file_unresolve_comment' def is_dash_added_comment_to_stack(self): """ @@ -55142,7 +54105,7 @@ def is_dash_added_comment_to_stack(self): :rtype: bool """ - return self._tag == "dash_added_comment_to_stack" + return self._tag == 'dash_added_comment_to_stack' def is_dash_added_connector(self): """ @@ -55150,7 +54113,7 @@ def is_dash_added_connector(self): :rtype: bool """ - return self._tag == "dash_added_connector" + return self._tag == 'dash_added_connector' def is_dash_added_link_to_stack(self): """ @@ -55158,7 +54121,7 @@ def is_dash_added_link_to_stack(self): :rtype: bool """ - return self._tag == "dash_added_link_to_stack" + return self._tag == 'dash_added_link_to_stack' def is_dash_added_team_email_domain_allowlist(self): """ @@ -55166,7 +54129,7 @@ def is_dash_added_team_email_domain_allowlist(self): :rtype: bool """ - return self._tag == "dash_added_team_email_domain_allowlist" + return self._tag == 'dash_added_team_email_domain_allowlist' def is_dash_admin_added_org_wide_connector(self): """ @@ -55174,7 +54137,7 @@ def is_dash_admin_added_org_wide_connector(self): :rtype: bool """ - return self._tag == "dash_admin_added_org_wide_connector" + return self._tag == 'dash_admin_added_org_wide_connector' def is_dash_admin_disabled_connector(self): """ @@ -55182,7 +54145,7 @@ def is_dash_admin_disabled_connector(self): :rtype: bool """ - return self._tag == "dash_admin_disabled_connector" + return self._tag == 'dash_admin_disabled_connector' def is_dash_admin_enabled_connector(self): """ @@ -55190,7 +54153,7 @@ def is_dash_admin_enabled_connector(self): :rtype: bool """ - return self._tag == "dash_admin_enabled_connector" + return self._tag == 'dash_admin_enabled_connector' def is_dash_admin_removed_org_wide_connector(self): """ @@ -55198,7 +54161,7 @@ def is_dash_admin_removed_org_wide_connector(self): :rtype: bool """ - return self._tag == "dash_admin_removed_org_wide_connector" + return self._tag == 'dash_admin_removed_org_wide_connector' def is_dash_archived_stack(self): """ @@ -55206,7 +54169,7 @@ def is_dash_archived_stack(self): :rtype: bool """ - return self._tag == "dash_archived_stack" + return self._tag == 'dash_archived_stack' def is_dash_changed_audience_of_shared_link_to_stack(self): """ @@ -55214,7 +54177,7 @@ def is_dash_changed_audience_of_shared_link_to_stack(self): :rtype: bool """ - return self._tag == "dash_changed_audience_of_shared_link_to_stack" + return self._tag == 'dash_changed_audience_of_shared_link_to_stack' def is_dash_cloned_stack(self): """ @@ -55222,7 +54185,7 @@ def is_dash_cloned_stack(self): :rtype: bool """ - return self._tag == "dash_cloned_stack" + return self._tag == 'dash_cloned_stack' def is_dash_connector_tools_call(self): """ @@ -55230,7 +54193,7 @@ def is_dash_connector_tools_call(self): :rtype: bool """ - return self._tag == "dash_connector_tools_call" + return self._tag == 'dash_connector_tools_call' def is_dash_created_stack(self): """ @@ -55238,7 +54201,7 @@ def is_dash_created_stack(self): :rtype: bool """ - return self._tag == "dash_created_stack" + return self._tag == 'dash_created_stack' def is_dash_deleted_comment_from_stack(self): """ @@ -55246,7 +54209,7 @@ def is_dash_deleted_comment_from_stack(self): :rtype: bool """ - return self._tag == "dash_deleted_comment_from_stack" + return self._tag == 'dash_deleted_comment_from_stack' def is_dash_deleted_stack(self): """ @@ -55254,7 +54217,7 @@ def is_dash_deleted_stack(self): :rtype: bool """ - return self._tag == "dash_deleted_stack" + return self._tag == 'dash_deleted_stack' def is_dash_edited_comment_in_stack(self): """ @@ -55262,7 +54225,7 @@ def is_dash_edited_comment_in_stack(self): :rtype: bool """ - return self._tag == "dash_edited_comment_in_stack" + return self._tag == 'dash_edited_comment_in_stack' def is_dash_external_user_opened_stack(self): """ @@ -55270,7 +54233,7 @@ def is_dash_external_user_opened_stack(self): :rtype: bool """ - return self._tag == "dash_external_user_opened_stack" + return self._tag == 'dash_external_user_opened_stack' def is_dash_first_launched_desktop(self): """ @@ -55278,7 +54241,7 @@ def is_dash_first_launched_desktop(self): :rtype: bool """ - return self._tag == "dash_first_launched_desktop" + return self._tag == 'dash_first_launched_desktop' def is_dash_first_launched_extension(self): """ @@ -55286,7 +54249,7 @@ def is_dash_first_launched_extension(self): :rtype: bool """ - return self._tag == "dash_first_launched_extension" + return self._tag == 'dash_first_launched_extension' def is_dash_first_launched_web_start_page(self): """ @@ -55294,7 +54257,7 @@ def is_dash_first_launched_web_start_page(self): :rtype: bool """ - return self._tag == "dash_first_launched_web_start_page" + return self._tag == 'dash_first_launched_web_start_page' def is_dash_opened_shared_link_to_stack(self): """ @@ -55302,7 +54265,7 @@ def is_dash_opened_shared_link_to_stack(self): :rtype: bool """ - return self._tag == "dash_opened_shared_link_to_stack" + return self._tag == 'dash_opened_shared_link_to_stack' def is_dash_opened_stack(self): """ @@ -55310,7 +54273,7 @@ def is_dash_opened_stack(self): :rtype: bool """ - return self._tag == "dash_opened_stack" + return self._tag == 'dash_opened_stack' def is_dash_preview_opt_out_status_changed(self): """ @@ -55318,7 +54281,7 @@ def is_dash_preview_opt_out_status_changed(self): :rtype: bool """ - return self._tag == "dash_preview_opt_out_status_changed" + return self._tag == 'dash_preview_opt_out_status_changed' def is_dash_removed_connector(self): """ @@ -55326,7 +54289,7 @@ def is_dash_removed_connector(self): :rtype: bool """ - return self._tag == "dash_removed_connector" + return self._tag == 'dash_removed_connector' def is_dash_removed_link_from_stack(self): """ @@ -55334,7 +54297,7 @@ def is_dash_removed_link_from_stack(self): :rtype: bool """ - return self._tag == "dash_removed_link_from_stack" + return self._tag == 'dash_removed_link_from_stack' def is_dash_removed_shared_link_to_stack(self): """ @@ -55342,7 +54305,7 @@ def is_dash_removed_shared_link_to_stack(self): :rtype: bool """ - return self._tag == "dash_removed_shared_link_to_stack" + return self._tag == 'dash_removed_shared_link_to_stack' def is_dash_removed_team_email_domain_allowlist(self): """ @@ -55350,7 +54313,7 @@ def is_dash_removed_team_email_domain_allowlist(self): :rtype: bool """ - return self._tag == "dash_removed_team_email_domain_allowlist" + return self._tag == 'dash_removed_team_email_domain_allowlist' def is_dash_renamed_stack(self): """ @@ -55358,7 +54321,7 @@ def is_dash_renamed_stack(self): :rtype: bool """ - return self._tag == "dash_renamed_stack" + return self._tag == 'dash_renamed_stack' def is_dash_shared_link_to_stack(self): """ @@ -55366,7 +54329,7 @@ def is_dash_shared_link_to_stack(self): :rtype: bool """ - return self._tag == "dash_shared_link_to_stack" + return self._tag == 'dash_shared_link_to_stack' def is_dash_unarchived_stack(self): """ @@ -55374,7 +54337,7 @@ def is_dash_unarchived_stack(self): :rtype: bool """ - return self._tag == "dash_unarchived_stack" + return self._tag == 'dash_unarchived_stack' def is_dash_viewed_company_stack(self): """ @@ -55382,7 +54345,7 @@ def is_dash_viewed_company_stack(self): :rtype: bool """ - return self._tag == "dash_viewed_company_stack" + return self._tag == 'dash_viewed_company_stack' def is_dash_viewed_external_ai_activity_report(self): """ @@ -55390,7 +54353,7 @@ def is_dash_viewed_external_ai_activity_report(self): :rtype: bool """ - return self._tag == "dash_viewed_external_ai_activity_report" + return self._tag == 'dash_viewed_external_ai_activity_report' def is_governance_policy_add_folders(self): """ @@ -55398,7 +54361,7 @@ def is_governance_policy_add_folders(self): :rtype: bool """ - return self._tag == "governance_policy_add_folders" + return self._tag == 'governance_policy_add_folders' def is_governance_policy_add_folder_failed(self): """ @@ -55406,7 +54369,7 @@ def is_governance_policy_add_folder_failed(self): :rtype: bool """ - return self._tag == "governance_policy_add_folder_failed" + return self._tag == 'governance_policy_add_folder_failed' def is_governance_policy_content_disposed(self): """ @@ -55414,7 +54377,7 @@ def is_governance_policy_content_disposed(self): :rtype: bool """ - return self._tag == "governance_policy_content_disposed" + return self._tag == 'governance_policy_content_disposed' def is_governance_policy_create(self): """ @@ -55422,7 +54385,7 @@ def is_governance_policy_create(self): :rtype: bool """ - return self._tag == "governance_policy_create" + return self._tag == 'governance_policy_create' def is_governance_policy_delete(self): """ @@ -55430,7 +54393,7 @@ def is_governance_policy_delete(self): :rtype: bool """ - return self._tag == "governance_policy_delete" + return self._tag == 'governance_policy_delete' def is_governance_policy_edit_details(self): """ @@ -55438,7 +54401,7 @@ def is_governance_policy_edit_details(self): :rtype: bool """ - return self._tag == "governance_policy_edit_details" + return self._tag == 'governance_policy_edit_details' def is_governance_policy_edit_duration(self): """ @@ -55446,7 +54409,7 @@ def is_governance_policy_edit_duration(self): :rtype: bool """ - return self._tag == "governance_policy_edit_duration" + return self._tag == 'governance_policy_edit_duration' def is_governance_policy_export_created(self): """ @@ -55454,7 +54417,7 @@ def is_governance_policy_export_created(self): :rtype: bool """ - return self._tag == "governance_policy_export_created" + return self._tag == 'governance_policy_export_created' def is_governance_policy_export_removed(self): """ @@ -55462,7 +54425,7 @@ def is_governance_policy_export_removed(self): :rtype: bool """ - return self._tag == "governance_policy_export_removed" + return self._tag == 'governance_policy_export_removed' def is_governance_policy_remove_folders(self): """ @@ -55470,7 +54433,7 @@ def is_governance_policy_remove_folders(self): :rtype: bool """ - return self._tag == "governance_policy_remove_folders" + return self._tag == 'governance_policy_remove_folders' def is_governance_policy_report_created(self): """ @@ -55478,7 +54441,7 @@ def is_governance_policy_report_created(self): :rtype: bool """ - return self._tag == "governance_policy_report_created" + return self._tag == 'governance_policy_report_created' def is_governance_policy_zip_part_downloaded(self): """ @@ -55486,7 +54449,7 @@ def is_governance_policy_zip_part_downloaded(self): :rtype: bool """ - return self._tag == "governance_policy_zip_part_downloaded" + return self._tag == 'governance_policy_zip_part_downloaded' def is_legal_holds_activate_a_hold(self): """ @@ -55494,7 +54457,7 @@ def is_legal_holds_activate_a_hold(self): :rtype: bool """ - return self._tag == "legal_holds_activate_a_hold" + return self._tag == 'legal_holds_activate_a_hold' def is_legal_holds_add_members(self): """ @@ -55502,7 +54465,7 @@ def is_legal_holds_add_members(self): :rtype: bool """ - return self._tag == "legal_holds_add_members" + return self._tag == 'legal_holds_add_members' def is_legal_holds_change_hold_details(self): """ @@ -55510,7 +54473,7 @@ def is_legal_holds_change_hold_details(self): :rtype: bool """ - return self._tag == "legal_holds_change_hold_details" + return self._tag == 'legal_holds_change_hold_details' def is_legal_holds_change_hold_name(self): """ @@ -55518,7 +54481,7 @@ def is_legal_holds_change_hold_name(self): :rtype: bool """ - return self._tag == "legal_holds_change_hold_name" + return self._tag == 'legal_holds_change_hold_name' def is_legal_holds_export_a_hold(self): """ @@ -55526,7 +54489,7 @@ def is_legal_holds_export_a_hold(self): :rtype: bool """ - return self._tag == "legal_holds_export_a_hold" + return self._tag == 'legal_holds_export_a_hold' def is_legal_holds_export_cancelled(self): """ @@ -55534,7 +54497,7 @@ def is_legal_holds_export_cancelled(self): :rtype: bool """ - return self._tag == "legal_holds_export_cancelled" + return self._tag == 'legal_holds_export_cancelled' def is_legal_holds_export_downloaded(self): """ @@ -55542,7 +54505,7 @@ def is_legal_holds_export_downloaded(self): :rtype: bool """ - return self._tag == "legal_holds_export_downloaded" + return self._tag == 'legal_holds_export_downloaded' def is_legal_holds_export_removed(self): """ @@ -55550,7 +54513,7 @@ def is_legal_holds_export_removed(self): :rtype: bool """ - return self._tag == "legal_holds_export_removed" + return self._tag == 'legal_holds_export_removed' def is_legal_holds_release_a_hold(self): """ @@ -55558,7 +54521,7 @@ def is_legal_holds_release_a_hold(self): :rtype: bool """ - return self._tag == "legal_holds_release_a_hold" + return self._tag == 'legal_holds_release_a_hold' def is_legal_holds_remove_members(self): """ @@ -55566,7 +54529,7 @@ def is_legal_holds_remove_members(self): :rtype: bool """ - return self._tag == "legal_holds_remove_members" + return self._tag == 'legal_holds_remove_members' def is_legal_holds_report_a_hold(self): """ @@ -55574,7 +54537,7 @@ def is_legal_holds_report_a_hold(self): :rtype: bool """ - return self._tag == "legal_holds_report_a_hold" + return self._tag == 'legal_holds_report_a_hold' def is_device_change_ip_desktop(self): """ @@ -55582,7 +54545,7 @@ def is_device_change_ip_desktop(self): :rtype: bool """ - return self._tag == "device_change_ip_desktop" + return self._tag == 'device_change_ip_desktop' def is_device_change_ip_mobile(self): """ @@ -55590,7 +54553,7 @@ def is_device_change_ip_mobile(self): :rtype: bool """ - return self._tag == "device_change_ip_mobile" + return self._tag == 'device_change_ip_mobile' def is_device_change_ip_web(self): """ @@ -55598,7 +54561,7 @@ def is_device_change_ip_web(self): :rtype: bool """ - return self._tag == "device_change_ip_web" + return self._tag == 'device_change_ip_web' def is_device_delete_on_unlink_fail(self): """ @@ -55606,7 +54569,7 @@ def is_device_delete_on_unlink_fail(self): :rtype: bool """ - return self._tag == "device_delete_on_unlink_fail" + return self._tag == 'device_delete_on_unlink_fail' def is_device_delete_on_unlink_success(self): """ @@ -55614,7 +54577,7 @@ def is_device_delete_on_unlink_success(self): :rtype: bool """ - return self._tag == "device_delete_on_unlink_success" + return self._tag == 'device_delete_on_unlink_success' def is_device_link_fail(self): """ @@ -55622,7 +54585,7 @@ def is_device_link_fail(self): :rtype: bool """ - return self._tag == "device_link_fail" + return self._tag == 'device_link_fail' def is_device_link_success(self): """ @@ -55630,7 +54593,7 @@ def is_device_link_success(self): :rtype: bool """ - return self._tag == "device_link_success" + return self._tag == 'device_link_success' def is_device_management_disabled(self): """ @@ -55638,7 +54601,7 @@ def is_device_management_disabled(self): :rtype: bool """ - return self._tag == "device_management_disabled" + return self._tag == 'device_management_disabled' def is_device_management_enabled(self): """ @@ -55646,7 +54609,7 @@ def is_device_management_enabled(self): :rtype: bool """ - return self._tag == "device_management_enabled" + return self._tag == 'device_management_enabled' def is_device_sync_backup_status_changed(self): """ @@ -55654,7 +54617,7 @@ def is_device_sync_backup_status_changed(self): :rtype: bool """ - return self._tag == "device_sync_backup_status_changed" + return self._tag == 'device_sync_backup_status_changed' def is_device_unlink(self): """ @@ -55662,7 +54625,7 @@ def is_device_unlink(self): :rtype: bool """ - return self._tag == "device_unlink" + return self._tag == 'device_unlink' def is_dropbox_passwords_exported(self): """ @@ -55670,7 +54633,7 @@ def is_dropbox_passwords_exported(self): :rtype: bool """ - return self._tag == "dropbox_passwords_exported" + return self._tag == 'dropbox_passwords_exported' def is_dropbox_passwords_new_device_enrolled(self): """ @@ -55678,7 +54641,7 @@ def is_dropbox_passwords_new_device_enrolled(self): :rtype: bool """ - return self._tag == "dropbox_passwords_new_device_enrolled" + return self._tag == 'dropbox_passwords_new_device_enrolled' def is_emm_refresh_auth_token(self): """ @@ -55686,7 +54649,7 @@ def is_emm_refresh_auth_token(self): :rtype: bool """ - return self._tag == "emm_refresh_auth_token" + return self._tag == 'emm_refresh_auth_token' def is_external_drive_backup_eligibility_status_checked(self): """ @@ -55694,7 +54657,7 @@ def is_external_drive_backup_eligibility_status_checked(self): :rtype: bool """ - return self._tag == "external_drive_backup_eligibility_status_checked" + return self._tag == 'external_drive_backup_eligibility_status_checked' def is_external_drive_backup_status_changed(self): """ @@ -55702,7 +54665,7 @@ def is_external_drive_backup_status_changed(self): :rtype: bool """ - return self._tag == "external_drive_backup_status_changed" + return self._tag == 'external_drive_backup_status_changed' def is_account_capture_change_availability(self): """ @@ -55710,7 +54673,7 @@ def is_account_capture_change_availability(self): :rtype: bool """ - return self._tag == "account_capture_change_availability" + return self._tag == 'account_capture_change_availability' def is_account_capture_migrate_account(self): """ @@ -55718,7 +54681,7 @@ def is_account_capture_migrate_account(self): :rtype: bool """ - return self._tag == "account_capture_migrate_account" + return self._tag == 'account_capture_migrate_account' def is_account_capture_notification_emails_sent(self): """ @@ -55726,7 +54689,7 @@ def is_account_capture_notification_emails_sent(self): :rtype: bool """ - return self._tag == "account_capture_notification_emails_sent" + return self._tag == 'account_capture_notification_emails_sent' def is_account_capture_relinquish_account(self): """ @@ -55734,7 +54697,7 @@ def is_account_capture_relinquish_account(self): :rtype: bool """ - return self._tag == "account_capture_relinquish_account" + return self._tag == 'account_capture_relinquish_account' def is_disabled_domain_invites(self): """ @@ -55742,7 +54705,7 @@ def is_disabled_domain_invites(self): :rtype: bool """ - return self._tag == "disabled_domain_invites" + return self._tag == 'disabled_domain_invites' def is_domain_invites_approve_request_to_join_team(self): """ @@ -55750,7 +54713,7 @@ def is_domain_invites_approve_request_to_join_team(self): :rtype: bool """ - return self._tag == "domain_invites_approve_request_to_join_team" + return self._tag == 'domain_invites_approve_request_to_join_team' def is_domain_invites_decline_request_to_join_team(self): """ @@ -55758,7 +54721,7 @@ def is_domain_invites_decline_request_to_join_team(self): :rtype: bool """ - return self._tag == "domain_invites_decline_request_to_join_team" + return self._tag == 'domain_invites_decline_request_to_join_team' def is_domain_invites_email_existing_users(self): """ @@ -55766,7 +54729,7 @@ def is_domain_invites_email_existing_users(self): :rtype: bool """ - return self._tag == "domain_invites_email_existing_users" + return self._tag == 'domain_invites_email_existing_users' def is_domain_invites_request_to_join_team(self): """ @@ -55774,7 +54737,7 @@ def is_domain_invites_request_to_join_team(self): :rtype: bool """ - return self._tag == "domain_invites_request_to_join_team" + return self._tag == 'domain_invites_request_to_join_team' def is_domain_invites_set_invite_new_user_pref_to_no(self): """ @@ -55782,7 +54745,7 @@ def is_domain_invites_set_invite_new_user_pref_to_no(self): :rtype: bool """ - return self._tag == "domain_invites_set_invite_new_user_pref_to_no" + return self._tag == 'domain_invites_set_invite_new_user_pref_to_no' def is_domain_invites_set_invite_new_user_pref_to_yes(self): """ @@ -55790,7 +54753,7 @@ def is_domain_invites_set_invite_new_user_pref_to_yes(self): :rtype: bool """ - return self._tag == "domain_invites_set_invite_new_user_pref_to_yes" + return self._tag == 'domain_invites_set_invite_new_user_pref_to_yes' def is_domain_verification_add_domain_fail(self): """ @@ -55798,7 +54761,7 @@ def is_domain_verification_add_domain_fail(self): :rtype: bool """ - return self._tag == "domain_verification_add_domain_fail" + return self._tag == 'domain_verification_add_domain_fail' def is_domain_verification_add_domain_success(self): """ @@ -55806,7 +54769,7 @@ def is_domain_verification_add_domain_success(self): :rtype: bool """ - return self._tag == "domain_verification_add_domain_success" + return self._tag == 'domain_verification_add_domain_success' def is_domain_verification_remove_domain(self): """ @@ -55814,7 +54777,7 @@ def is_domain_verification_remove_domain(self): :rtype: bool """ - return self._tag == "domain_verification_remove_domain" + return self._tag == 'domain_verification_remove_domain' def is_enabled_domain_invites(self): """ @@ -55822,7 +54785,7 @@ def is_enabled_domain_invites(self): :rtype: bool """ - return self._tag == "enabled_domain_invites" + return self._tag == 'enabled_domain_invites' def is_encrypted_folder_cancel_team_key_rotation(self): """ @@ -55830,7 +54793,7 @@ def is_encrypted_folder_cancel_team_key_rotation(self): :rtype: bool """ - return self._tag == "encrypted_folder_cancel_team_key_rotation" + return self._tag == 'encrypted_folder_cancel_team_key_rotation' def is_encrypted_folder_enroll_backup_key(self): """ @@ -55838,7 +54801,7 @@ def is_encrypted_folder_enroll_backup_key(self): :rtype: bool """ - return self._tag == "encrypted_folder_enroll_backup_key" + return self._tag == 'encrypted_folder_enroll_backup_key' def is_encrypted_folder_enroll_client(self): """ @@ -55846,7 +54809,7 @@ def is_encrypted_folder_enroll_client(self): :rtype: bool """ - return self._tag == "encrypted_folder_enroll_client" + return self._tag == 'encrypted_folder_enroll_client' def is_encrypted_folder_enroll_team(self): """ @@ -55854,7 +54817,7 @@ def is_encrypted_folder_enroll_team(self): :rtype: bool """ - return self._tag == "encrypted_folder_enroll_team" + return self._tag == 'encrypted_folder_enroll_team' def is_encrypted_folder_finish_team_unenrollment(self): """ @@ -55862,7 +54825,7 @@ def is_encrypted_folder_finish_team_unenrollment(self): :rtype: bool """ - return self._tag == "encrypted_folder_finish_team_unenrollment" + return self._tag == 'encrypted_folder_finish_team_unenrollment' def is_encrypted_folder_init_team_key_rotation(self): """ @@ -55870,7 +54833,7 @@ def is_encrypted_folder_init_team_key_rotation(self): :rtype: bool """ - return self._tag == "encrypted_folder_init_team_key_rotation" + return self._tag == 'encrypted_folder_init_team_key_rotation' def is_encrypted_folder_init_team_unenrollment(self): """ @@ -55878,7 +54841,7 @@ def is_encrypted_folder_init_team_unenrollment(self): :rtype: bool """ - return self._tag == "encrypted_folder_init_team_unenrollment" + return self._tag == 'encrypted_folder_init_team_unenrollment' def is_encrypted_folder_remove_backup_key(self): """ @@ -55886,7 +54849,7 @@ def is_encrypted_folder_remove_backup_key(self): :rtype: bool """ - return self._tag == "encrypted_folder_remove_backup_key" + return self._tag == 'encrypted_folder_remove_backup_key' def is_encrypted_folder_rotate_team_key(self): """ @@ -55894,7 +54857,7 @@ def is_encrypted_folder_rotate_team_key(self): :rtype: bool """ - return self._tag == "encrypted_folder_rotate_team_key" + return self._tag == 'encrypted_folder_rotate_team_key' def is_encrypted_folder_unenroll_client(self): """ @@ -55902,7 +54865,7 @@ def is_encrypted_folder_unenroll_client(self): :rtype: bool """ - return self._tag == "encrypted_folder_unenroll_client" + return self._tag == 'encrypted_folder_unenroll_client' def is_team_encryption_key_activate_key(self): """ @@ -55910,7 +54873,7 @@ def is_team_encryption_key_activate_key(self): :rtype: bool """ - return self._tag == "team_encryption_key_activate_key" + return self._tag == 'team_encryption_key_activate_key' def is_team_encryption_key_cancel_key_deletion(self): """ @@ -55918,7 +54881,7 @@ def is_team_encryption_key_cancel_key_deletion(self): :rtype: bool """ - return self._tag == "team_encryption_key_cancel_key_deletion" + return self._tag == 'team_encryption_key_cancel_key_deletion' def is_team_encryption_key_create_key(self): """ @@ -55926,7 +54889,7 @@ def is_team_encryption_key_create_key(self): :rtype: bool """ - return self._tag == "team_encryption_key_create_key" + return self._tag == 'team_encryption_key_create_key' def is_team_encryption_key_deactivate_key(self): """ @@ -55934,7 +54897,7 @@ def is_team_encryption_key_deactivate_key(self): :rtype: bool """ - return self._tag == "team_encryption_key_deactivate_key" + return self._tag == 'team_encryption_key_deactivate_key' def is_team_encryption_key_delete_key(self): """ @@ -55942,7 +54905,7 @@ def is_team_encryption_key_delete_key(self): :rtype: bool """ - return self._tag == "team_encryption_key_delete_key" + return self._tag == 'team_encryption_key_delete_key' def is_team_encryption_key_disable_key(self): """ @@ -55950,7 +54913,7 @@ def is_team_encryption_key_disable_key(self): :rtype: bool """ - return self._tag == "team_encryption_key_disable_key" + return self._tag == 'team_encryption_key_disable_key' def is_team_encryption_key_enable_key(self): """ @@ -55958,7 +54921,7 @@ def is_team_encryption_key_enable_key(self): :rtype: bool """ - return self._tag == "team_encryption_key_enable_key" + return self._tag == 'team_encryption_key_enable_key' def is_team_encryption_key_rotate_key(self): """ @@ -55966,7 +54929,7 @@ def is_team_encryption_key_rotate_key(self): :rtype: bool """ - return self._tag == "team_encryption_key_rotate_key" + return self._tag == 'team_encryption_key_rotate_key' def is_team_encryption_key_schedule_key_deletion(self): """ @@ -55974,7 +54937,7 @@ def is_team_encryption_key_schedule_key_deletion(self): :rtype: bool """ - return self._tag == "team_encryption_key_schedule_key_deletion" + return self._tag == 'team_encryption_key_schedule_key_deletion' def is_apply_naming_convention(self): """ @@ -55982,7 +54945,7 @@ def is_apply_naming_convention(self): :rtype: bool """ - return self._tag == "apply_naming_convention" + return self._tag == 'apply_naming_convention' def is_create_folder(self): """ @@ -55990,7 +54953,7 @@ def is_create_folder(self): :rtype: bool """ - return self._tag == "create_folder" + return self._tag == 'create_folder' def is_file_add(self): """ @@ -55998,7 +54961,7 @@ def is_file_add(self): :rtype: bool """ - return self._tag == "file_add" + return self._tag == 'file_add' def is_file_add_from_automation(self): """ @@ -56006,7 +54969,7 @@ def is_file_add_from_automation(self): :rtype: bool """ - return self._tag == "file_add_from_automation" + return self._tag == 'file_add_from_automation' def is_file_copy(self): """ @@ -56014,7 +54977,7 @@ def is_file_copy(self): :rtype: bool """ - return self._tag == "file_copy" + return self._tag == 'file_copy' def is_file_delete(self): """ @@ -56022,7 +54985,7 @@ def is_file_delete(self): :rtype: bool """ - return self._tag == "file_delete" + return self._tag == 'file_delete' def is_file_download(self): """ @@ -56030,7 +54993,7 @@ def is_file_download(self): :rtype: bool """ - return self._tag == "file_download" + return self._tag == 'file_download' def is_file_edit(self): """ @@ -56038,7 +55001,7 @@ def is_file_edit(self): :rtype: bool """ - return self._tag == "file_edit" + return self._tag == 'file_edit' def is_file_get_copy_reference(self): """ @@ -56046,7 +55009,7 @@ def is_file_get_copy_reference(self): :rtype: bool """ - return self._tag == "file_get_copy_reference" + return self._tag == 'file_get_copy_reference' def is_file_locking_lock_status_changed(self): """ @@ -56054,7 +55017,7 @@ def is_file_locking_lock_status_changed(self): :rtype: bool """ - return self._tag == "file_locking_lock_status_changed" + return self._tag == 'file_locking_lock_status_changed' def is_file_move(self): """ @@ -56062,7 +55025,7 @@ def is_file_move(self): :rtype: bool """ - return self._tag == "file_move" + return self._tag == 'file_move' def is_file_permanently_delete(self): """ @@ -56070,7 +55033,7 @@ def is_file_permanently_delete(self): :rtype: bool """ - return self._tag == "file_permanently_delete" + return self._tag == 'file_permanently_delete' def is_file_preview(self): """ @@ -56078,7 +55041,7 @@ def is_file_preview(self): :rtype: bool """ - return self._tag == "file_preview" + return self._tag == 'file_preview' def is_file_rename(self): """ @@ -56086,7 +55049,7 @@ def is_file_rename(self): :rtype: bool """ - return self._tag == "file_rename" + return self._tag == 'file_rename' def is_file_restore(self): """ @@ -56094,7 +55057,7 @@ def is_file_restore(self): :rtype: bool """ - return self._tag == "file_restore" + return self._tag == 'file_restore' def is_file_revert(self): """ @@ -56102,7 +55065,7 @@ def is_file_revert(self): :rtype: bool """ - return self._tag == "file_revert" + return self._tag == 'file_revert' def is_file_rollback_changes(self): """ @@ -56110,7 +55073,7 @@ def is_file_rollback_changes(self): :rtype: bool """ - return self._tag == "file_rollback_changes" + return self._tag == 'file_rollback_changes' def is_file_save_copy_reference(self): """ @@ -56118,7 +55081,7 @@ def is_file_save_copy_reference(self): :rtype: bool """ - return self._tag == "file_save_copy_reference" + return self._tag == 'file_save_copy_reference' def is_folder_overview_description_changed(self): """ @@ -56126,7 +55089,7 @@ def is_folder_overview_description_changed(self): :rtype: bool """ - return self._tag == "folder_overview_description_changed" + return self._tag == 'folder_overview_description_changed' def is_folder_overview_item_pinned(self): """ @@ -56134,7 +55097,7 @@ def is_folder_overview_item_pinned(self): :rtype: bool """ - return self._tag == "folder_overview_item_pinned" + return self._tag == 'folder_overview_item_pinned' def is_folder_overview_item_unpinned(self): """ @@ -56142,7 +55105,7 @@ def is_folder_overview_item_unpinned(self): :rtype: bool """ - return self._tag == "folder_overview_item_unpinned" + return self._tag == 'folder_overview_item_unpinned' def is_media_hub_file_downloaded(self): """ @@ -56150,7 +55113,7 @@ def is_media_hub_file_downloaded(self): :rtype: bool """ - return self._tag == "media_hub_file_downloaded" + return self._tag == 'media_hub_file_downloaded' def is_object_label_added(self): """ @@ -56158,7 +55121,7 @@ def is_object_label_added(self): :rtype: bool """ - return self._tag == "object_label_added" + return self._tag == 'object_label_added' def is_object_label_removed(self): """ @@ -56166,7 +55129,7 @@ def is_object_label_removed(self): :rtype: bool """ - return self._tag == "object_label_removed" + return self._tag == 'object_label_removed' def is_object_label_updated_value(self): """ @@ -56174,7 +55137,7 @@ def is_object_label_updated_value(self): :rtype: bool """ - return self._tag == "object_label_updated_value" + return self._tag == 'object_label_updated_value' def is_organize_folder_with_tidy(self): """ @@ -56182,7 +55145,7 @@ def is_organize_folder_with_tidy(self): :rtype: bool """ - return self._tag == "organize_folder_with_tidy" + return self._tag == 'organize_folder_with_tidy' def is_replay_file_delete(self): """ @@ -56190,7 +55153,7 @@ def is_replay_file_delete(self): :rtype: bool """ - return self._tag == "replay_file_delete" + return self._tag == 'replay_file_delete' def is_replay_file_downloaded(self): """ @@ -56198,7 +55161,7 @@ def is_replay_file_downloaded(self): :rtype: bool """ - return self._tag == "replay_file_downloaded" + return self._tag == 'replay_file_downloaded' def is_replay_team_project_created(self): """ @@ -56206,7 +55169,7 @@ def is_replay_team_project_created(self): :rtype: bool """ - return self._tag == "replay_team_project_created" + return self._tag == 'replay_team_project_created' def is_rewind_folder(self): """ @@ -56214,7 +55177,7 @@ def is_rewind_folder(self): :rtype: bool """ - return self._tag == "rewind_folder" + return self._tag == 'rewind_folder' def is_undo_naming_convention(self): """ @@ -56222,7 +55185,7 @@ def is_undo_naming_convention(self): :rtype: bool """ - return self._tag == "undo_naming_convention" + return self._tag == 'undo_naming_convention' def is_undo_organize_folder_with_tidy(self): """ @@ -56230,7 +55193,7 @@ def is_undo_organize_folder_with_tidy(self): :rtype: bool """ - return self._tag == "undo_organize_folder_with_tidy" + return self._tag == 'undo_organize_folder_with_tidy' def is_user_tags_added(self): """ @@ -56238,7 +55201,7 @@ def is_user_tags_added(self): :rtype: bool """ - return self._tag == "user_tags_added" + return self._tag == 'user_tags_added' def is_user_tags_removed(self): """ @@ -56246,7 +55209,7 @@ def is_user_tags_removed(self): :rtype: bool """ - return self._tag == "user_tags_removed" + return self._tag == 'user_tags_removed' def is_email_ingest_receive_file(self): """ @@ -56254,7 +55217,7 @@ def is_email_ingest_receive_file(self): :rtype: bool """ - return self._tag == "email_ingest_receive_file" + return self._tag == 'email_ingest_receive_file' def is_file_request_auto_close(self): """ @@ -56262,7 +55225,7 @@ def is_file_request_auto_close(self): :rtype: bool """ - return self._tag == "file_request_auto_close" + return self._tag == 'file_request_auto_close' def is_file_request_change(self): """ @@ -56270,7 +55233,7 @@ def is_file_request_change(self): :rtype: bool """ - return self._tag == "file_request_change" + return self._tag == 'file_request_change' def is_file_request_close(self): """ @@ -56278,7 +55241,7 @@ def is_file_request_close(self): :rtype: bool """ - return self._tag == "file_request_close" + return self._tag == 'file_request_close' def is_file_request_create(self): """ @@ -56286,7 +55249,7 @@ def is_file_request_create(self): :rtype: bool """ - return self._tag == "file_request_create" + return self._tag == 'file_request_create' def is_file_request_delete(self): """ @@ -56294,7 +55257,7 @@ def is_file_request_delete(self): :rtype: bool """ - return self._tag == "file_request_delete" + return self._tag == 'file_request_delete' def is_file_request_receive_file(self): """ @@ -56302,7 +55265,7 @@ def is_file_request_receive_file(self): :rtype: bool """ - return self._tag == "file_request_receive_file" + return self._tag == 'file_request_receive_file' def is_group_add_external_id(self): """ @@ -56310,7 +55273,7 @@ def is_group_add_external_id(self): :rtype: bool """ - return self._tag == "group_add_external_id" + return self._tag == 'group_add_external_id' def is_group_add_member(self): """ @@ -56318,7 +55281,7 @@ def is_group_add_member(self): :rtype: bool """ - return self._tag == "group_add_member" + return self._tag == 'group_add_member' def is_group_change_external_id(self): """ @@ -56326,7 +55289,7 @@ def is_group_change_external_id(self): :rtype: bool """ - return self._tag == "group_change_external_id" + return self._tag == 'group_change_external_id' def is_group_change_management_type(self): """ @@ -56334,7 +55297,7 @@ def is_group_change_management_type(self): :rtype: bool """ - return self._tag == "group_change_management_type" + return self._tag == 'group_change_management_type' def is_group_change_member_role(self): """ @@ -56342,7 +55305,7 @@ def is_group_change_member_role(self): :rtype: bool """ - return self._tag == "group_change_member_role" + return self._tag == 'group_change_member_role' def is_group_create(self): """ @@ -56350,7 +55313,7 @@ def is_group_create(self): :rtype: bool """ - return self._tag == "group_create" + return self._tag == 'group_create' def is_group_delete(self): """ @@ -56358,7 +55321,7 @@ def is_group_delete(self): :rtype: bool """ - return self._tag == "group_delete" + return self._tag == 'group_delete' def is_group_description_updated(self): """ @@ -56366,7 +55329,7 @@ def is_group_description_updated(self): :rtype: bool """ - return self._tag == "group_description_updated" + return self._tag == 'group_description_updated' def is_group_external_sharing_setting_override_changed(self): """ @@ -56374,7 +55337,7 @@ def is_group_external_sharing_setting_override_changed(self): :rtype: bool """ - return self._tag == "group_external_sharing_setting_override_changed" + return self._tag == 'group_external_sharing_setting_override_changed' def is_group_join_policy_updated(self): """ @@ -56382,7 +55345,7 @@ def is_group_join_policy_updated(self): :rtype: bool """ - return self._tag == "group_join_policy_updated" + return self._tag == 'group_join_policy_updated' def is_group_moved(self): """ @@ -56390,7 +55353,7 @@ def is_group_moved(self): :rtype: bool """ - return self._tag == "group_moved" + return self._tag == 'group_moved' def is_group_remove_external_id(self): """ @@ -56398,7 +55361,7 @@ def is_group_remove_external_id(self): :rtype: bool """ - return self._tag == "group_remove_external_id" + return self._tag == 'group_remove_external_id' def is_group_remove_member(self): """ @@ -56406,7 +55369,7 @@ def is_group_remove_member(self): :rtype: bool """ - return self._tag == "group_remove_member" + return self._tag == 'group_remove_member' def is_group_rename(self): """ @@ -56414,7 +55377,7 @@ def is_group_rename(self): :rtype: bool """ - return self._tag == "group_rename" + return self._tag == 'group_rename' def is_account_lock_or_unlocked(self): """ @@ -56422,7 +55385,7 @@ def is_account_lock_or_unlocked(self): :rtype: bool """ - return self._tag == "account_lock_or_unlocked" + return self._tag == 'account_lock_or_unlocked' def is_emm_error(self): """ @@ -56430,7 +55393,7 @@ def is_emm_error(self): :rtype: bool """ - return self._tag == "emm_error" + return self._tag == 'emm_error' def is_guest_admin_signed_in_via_trusted_teams(self): """ @@ -56438,7 +55401,7 @@ def is_guest_admin_signed_in_via_trusted_teams(self): :rtype: bool """ - return self._tag == "guest_admin_signed_in_via_trusted_teams" + return self._tag == 'guest_admin_signed_in_via_trusted_teams' def is_guest_admin_signed_out_via_trusted_teams(self): """ @@ -56446,7 +55409,7 @@ def is_guest_admin_signed_out_via_trusted_teams(self): :rtype: bool """ - return self._tag == "guest_admin_signed_out_via_trusted_teams" + return self._tag == 'guest_admin_signed_out_via_trusted_teams' def is_login_fail(self): """ @@ -56454,7 +55417,7 @@ def is_login_fail(self): :rtype: bool """ - return self._tag == "login_fail" + return self._tag == 'login_fail' def is_login_success(self): """ @@ -56462,7 +55425,7 @@ def is_login_success(self): :rtype: bool """ - return self._tag == "login_success" + return self._tag == 'login_success' def is_logout(self): """ @@ -56470,7 +55433,7 @@ def is_logout(self): :rtype: bool """ - return self._tag == "logout" + return self._tag == 'logout' def is_reseller_support_session_end(self): """ @@ -56478,7 +55441,7 @@ def is_reseller_support_session_end(self): :rtype: bool """ - return self._tag == "reseller_support_session_end" + return self._tag == 'reseller_support_session_end' def is_reseller_support_session_start(self): """ @@ -56486,7 +55449,7 @@ def is_reseller_support_session_start(self): :rtype: bool """ - return self._tag == "reseller_support_session_start" + return self._tag == 'reseller_support_session_start' def is_sign_in_as_session_end(self): """ @@ -56494,7 +55457,7 @@ def is_sign_in_as_session_end(self): :rtype: bool """ - return self._tag == "sign_in_as_session_end" + return self._tag == 'sign_in_as_session_end' def is_sign_in_as_session_start(self): """ @@ -56502,7 +55465,7 @@ def is_sign_in_as_session_start(self): :rtype: bool """ - return self._tag == "sign_in_as_session_start" + return self._tag == 'sign_in_as_session_start' def is_sso_error(self): """ @@ -56510,7 +55473,7 @@ def is_sso_error(self): :rtype: bool """ - return self._tag == "sso_error" + return self._tag == 'sso_error' def is_addon_assigned(self): """ @@ -56518,7 +55481,7 @@ def is_addon_assigned(self): :rtype: bool """ - return self._tag == "addon_assigned" + return self._tag == 'addon_assigned' def is_addon_removed(self): """ @@ -56526,7 +55489,7 @@ def is_addon_removed(self): :rtype: bool """ - return self._tag == "addon_removed" + return self._tag == 'addon_removed' def is_backup_admin_invitation_sent(self): """ @@ -56534,7 +55497,7 @@ def is_backup_admin_invitation_sent(self): :rtype: bool """ - return self._tag == "backup_admin_invitation_sent" + return self._tag == 'backup_admin_invitation_sent' def is_backup_invitation_opened(self): """ @@ -56542,7 +55505,7 @@ def is_backup_invitation_opened(self): :rtype: bool """ - return self._tag == "backup_invitation_opened" + return self._tag == 'backup_invitation_opened' def is_create_team_invite_link(self): """ @@ -56550,7 +55513,7 @@ def is_create_team_invite_link(self): :rtype: bool """ - return self._tag == "create_team_invite_link" + return self._tag == 'create_team_invite_link' def is_delete_team_invite_link(self): """ @@ -56558,7 +55521,7 @@ def is_delete_team_invite_link(self): :rtype: bool """ - return self._tag == "delete_team_invite_link" + return self._tag == 'delete_team_invite_link' def is_member_add_external_id(self): """ @@ -56566,7 +55529,7 @@ def is_member_add_external_id(self): :rtype: bool """ - return self._tag == "member_add_external_id" + return self._tag == 'member_add_external_id' def is_member_add_name(self): """ @@ -56574,7 +55537,7 @@ def is_member_add_name(self): :rtype: bool """ - return self._tag == "member_add_name" + return self._tag == 'member_add_name' def is_member_change_admin_role(self): """ @@ -56582,7 +55545,7 @@ def is_member_change_admin_role(self): :rtype: bool """ - return self._tag == "member_change_admin_role" + return self._tag == 'member_change_admin_role' def is_member_change_email(self): """ @@ -56590,7 +55553,7 @@ def is_member_change_email(self): :rtype: bool """ - return self._tag == "member_change_email" + return self._tag == 'member_change_email' def is_member_change_external_id(self): """ @@ -56598,7 +55561,7 @@ def is_member_change_external_id(self): :rtype: bool """ - return self._tag == "member_change_external_id" + return self._tag == 'member_change_external_id' def is_member_change_membership_type(self): """ @@ -56606,7 +55569,7 @@ def is_member_change_membership_type(self): :rtype: bool """ - return self._tag == "member_change_membership_type" + return self._tag == 'member_change_membership_type' def is_member_change_name(self): """ @@ -56614,7 +55577,7 @@ def is_member_change_name(self): :rtype: bool """ - return self._tag == "member_change_name" + return self._tag == 'member_change_name' def is_member_change_reseller_role(self): """ @@ -56622,7 +55585,7 @@ def is_member_change_reseller_role(self): :rtype: bool """ - return self._tag == "member_change_reseller_role" + return self._tag == 'member_change_reseller_role' def is_member_change_status(self): """ @@ -56630,7 +55593,7 @@ def is_member_change_status(self): :rtype: bool """ - return self._tag == "member_change_status" + return self._tag == 'member_change_status' def is_member_delete_manual_contacts(self): """ @@ -56638,7 +55601,7 @@ def is_member_delete_manual_contacts(self): :rtype: bool """ - return self._tag == "member_delete_manual_contacts" + return self._tag == 'member_delete_manual_contacts' def is_member_delete_profile_photo(self): """ @@ -56646,7 +55609,7 @@ def is_member_delete_profile_photo(self): :rtype: bool """ - return self._tag == "member_delete_profile_photo" + return self._tag == 'member_delete_profile_photo' def is_member_permanently_delete_account_contents(self): """ @@ -56654,7 +55617,7 @@ def is_member_permanently_delete_account_contents(self): :rtype: bool """ - return self._tag == "member_permanently_delete_account_contents" + return self._tag == 'member_permanently_delete_account_contents' def is_member_remove_external_id(self): """ @@ -56662,7 +55625,7 @@ def is_member_remove_external_id(self): :rtype: bool """ - return self._tag == "member_remove_external_id" + return self._tag == 'member_remove_external_id' def is_member_set_profile_photo(self): """ @@ -56670,7 +55633,7 @@ def is_member_set_profile_photo(self): :rtype: bool """ - return self._tag == "member_set_profile_photo" + return self._tag == 'member_set_profile_photo' def is_member_space_limits_add_custom_quota(self): """ @@ -56678,7 +55641,7 @@ def is_member_space_limits_add_custom_quota(self): :rtype: bool """ - return self._tag == "member_space_limits_add_custom_quota" + return self._tag == 'member_space_limits_add_custom_quota' def is_member_space_limits_change_custom_quota(self): """ @@ -56686,7 +55649,7 @@ def is_member_space_limits_change_custom_quota(self): :rtype: bool """ - return self._tag == "member_space_limits_change_custom_quota" + return self._tag == 'member_space_limits_change_custom_quota' def is_member_space_limits_change_status(self): """ @@ -56694,7 +55657,7 @@ def is_member_space_limits_change_status(self): :rtype: bool """ - return self._tag == "member_space_limits_change_status" + return self._tag == 'member_space_limits_change_status' def is_member_space_limits_remove_custom_quota(self): """ @@ -56702,7 +55665,7 @@ def is_member_space_limits_remove_custom_quota(self): :rtype: bool """ - return self._tag == "member_space_limits_remove_custom_quota" + return self._tag == 'member_space_limits_remove_custom_quota' def is_member_suggest(self): """ @@ -56710,7 +55673,7 @@ def is_member_suggest(self): :rtype: bool """ - return self._tag == "member_suggest" + return self._tag == 'member_suggest' def is_member_transfer_account_contents(self): """ @@ -56718,7 +55681,7 @@ def is_member_transfer_account_contents(self): :rtype: bool """ - return self._tag == "member_transfer_account_contents" + return self._tag == 'member_transfer_account_contents' def is_pending_secondary_email_added(self): """ @@ -56726,7 +55689,7 @@ def is_pending_secondary_email_added(self): :rtype: bool """ - return self._tag == "pending_secondary_email_added" + return self._tag == 'pending_secondary_email_added' def is_product_assigned_to_member(self): """ @@ -56734,7 +55697,7 @@ def is_product_assigned_to_member(self): :rtype: bool """ - return self._tag == "product_assigned_to_member" + return self._tag == 'product_assigned_to_member' def is_product_removed_from_member(self): """ @@ -56742,7 +55705,7 @@ def is_product_removed_from_member(self): :rtype: bool """ - return self._tag == "product_removed_from_member" + return self._tag == 'product_removed_from_member' def is_secondary_email_deleted(self): """ @@ -56750,7 +55713,7 @@ def is_secondary_email_deleted(self): :rtype: bool """ - return self._tag == "secondary_email_deleted" + return self._tag == 'secondary_email_deleted' def is_secondary_email_verified(self): """ @@ -56758,7 +55721,7 @@ def is_secondary_email_verified(self): :rtype: bool """ - return self._tag == "secondary_email_verified" + return self._tag == 'secondary_email_verified' def is_secondary_mails_policy_changed(self): """ @@ -56766,7 +55729,7 @@ def is_secondary_mails_policy_changed(self): :rtype: bool """ - return self._tag == "secondary_mails_policy_changed" + return self._tag == 'secondary_mails_policy_changed' def is_binder_add_page(self): """ @@ -56774,7 +55737,7 @@ def is_binder_add_page(self): :rtype: bool """ - return self._tag == "binder_add_page" + return self._tag == 'binder_add_page' def is_binder_add_section(self): """ @@ -56782,7 +55745,7 @@ def is_binder_add_section(self): :rtype: bool """ - return self._tag == "binder_add_section" + return self._tag == 'binder_add_section' def is_binder_remove_page(self): """ @@ -56790,7 +55753,7 @@ def is_binder_remove_page(self): :rtype: bool """ - return self._tag == "binder_remove_page" + return self._tag == 'binder_remove_page' def is_binder_remove_section(self): """ @@ -56798,7 +55761,7 @@ def is_binder_remove_section(self): :rtype: bool """ - return self._tag == "binder_remove_section" + return self._tag == 'binder_remove_section' def is_binder_rename_page(self): """ @@ -56806,7 +55769,7 @@ def is_binder_rename_page(self): :rtype: bool """ - return self._tag == "binder_rename_page" + return self._tag == 'binder_rename_page' def is_binder_rename_section(self): """ @@ -56814,7 +55777,7 @@ def is_binder_rename_section(self): :rtype: bool """ - return self._tag == "binder_rename_section" + return self._tag == 'binder_rename_section' def is_binder_reorder_page(self): """ @@ -56822,7 +55785,7 @@ def is_binder_reorder_page(self): :rtype: bool """ - return self._tag == "binder_reorder_page" + return self._tag == 'binder_reorder_page' def is_binder_reorder_section(self): """ @@ -56830,7 +55793,7 @@ def is_binder_reorder_section(self): :rtype: bool """ - return self._tag == "binder_reorder_section" + return self._tag == 'binder_reorder_section' def is_paper_content_add_member(self): """ @@ -56838,7 +55801,7 @@ def is_paper_content_add_member(self): :rtype: bool """ - return self._tag == "paper_content_add_member" + return self._tag == 'paper_content_add_member' def is_paper_content_add_to_folder(self): """ @@ -56846,7 +55809,7 @@ def is_paper_content_add_to_folder(self): :rtype: bool """ - return self._tag == "paper_content_add_to_folder" + return self._tag == 'paper_content_add_to_folder' def is_paper_content_archive(self): """ @@ -56854,7 +55817,7 @@ def is_paper_content_archive(self): :rtype: bool """ - return self._tag == "paper_content_archive" + return self._tag == 'paper_content_archive' def is_paper_content_create(self): """ @@ -56862,7 +55825,7 @@ def is_paper_content_create(self): :rtype: bool """ - return self._tag == "paper_content_create" + return self._tag == 'paper_content_create' def is_paper_content_permanently_delete(self): """ @@ -56870,7 +55833,7 @@ def is_paper_content_permanently_delete(self): :rtype: bool """ - return self._tag == "paper_content_permanently_delete" + return self._tag == 'paper_content_permanently_delete' def is_paper_content_remove_from_folder(self): """ @@ -56878,7 +55841,7 @@ def is_paper_content_remove_from_folder(self): :rtype: bool """ - return self._tag == "paper_content_remove_from_folder" + return self._tag == 'paper_content_remove_from_folder' def is_paper_content_remove_member(self): """ @@ -56886,7 +55849,7 @@ def is_paper_content_remove_member(self): :rtype: bool """ - return self._tag == "paper_content_remove_member" + return self._tag == 'paper_content_remove_member' def is_paper_content_rename(self): """ @@ -56894,7 +55857,7 @@ def is_paper_content_rename(self): :rtype: bool """ - return self._tag == "paper_content_rename" + return self._tag == 'paper_content_rename' def is_paper_content_restore(self): """ @@ -56902,7 +55865,7 @@ def is_paper_content_restore(self): :rtype: bool """ - return self._tag == "paper_content_restore" + return self._tag == 'paper_content_restore' def is_paper_doc_add_comment(self): """ @@ -56910,7 +55873,7 @@ def is_paper_doc_add_comment(self): :rtype: bool """ - return self._tag == "paper_doc_add_comment" + return self._tag == 'paper_doc_add_comment' def is_paper_doc_change_member_role(self): """ @@ -56918,7 +55881,7 @@ def is_paper_doc_change_member_role(self): :rtype: bool """ - return self._tag == "paper_doc_change_member_role" + return self._tag == 'paper_doc_change_member_role' def is_paper_doc_change_sharing_policy(self): """ @@ -56926,7 +55889,7 @@ def is_paper_doc_change_sharing_policy(self): :rtype: bool """ - return self._tag == "paper_doc_change_sharing_policy" + return self._tag == 'paper_doc_change_sharing_policy' def is_paper_doc_change_subscription(self): """ @@ -56934,7 +55897,7 @@ def is_paper_doc_change_subscription(self): :rtype: bool """ - return self._tag == "paper_doc_change_subscription" + return self._tag == 'paper_doc_change_subscription' def is_paper_doc_deleted(self): """ @@ -56942,7 +55905,7 @@ def is_paper_doc_deleted(self): :rtype: bool """ - return self._tag == "paper_doc_deleted" + return self._tag == 'paper_doc_deleted' def is_paper_doc_delete_comment(self): """ @@ -56950,7 +55913,7 @@ def is_paper_doc_delete_comment(self): :rtype: bool """ - return self._tag == "paper_doc_delete_comment" + return self._tag == 'paper_doc_delete_comment' def is_paper_doc_download(self): """ @@ -56958,7 +55921,7 @@ def is_paper_doc_download(self): :rtype: bool """ - return self._tag == "paper_doc_download" + return self._tag == 'paper_doc_download' def is_paper_doc_edit(self): """ @@ -56966,7 +55929,7 @@ def is_paper_doc_edit(self): :rtype: bool """ - return self._tag == "paper_doc_edit" + return self._tag == 'paper_doc_edit' def is_paper_doc_edit_comment(self): """ @@ -56974,7 +55937,7 @@ def is_paper_doc_edit_comment(self): :rtype: bool """ - return self._tag == "paper_doc_edit_comment" + return self._tag == 'paper_doc_edit_comment' def is_paper_doc_followed(self): """ @@ -56982,7 +55945,7 @@ def is_paper_doc_followed(self): :rtype: bool """ - return self._tag == "paper_doc_followed" + return self._tag == 'paper_doc_followed' def is_paper_doc_mention(self): """ @@ -56990,7 +55953,7 @@ def is_paper_doc_mention(self): :rtype: bool """ - return self._tag == "paper_doc_mention" + return self._tag == 'paper_doc_mention' def is_paper_doc_ownership_changed(self): """ @@ -56998,7 +55961,7 @@ def is_paper_doc_ownership_changed(self): :rtype: bool """ - return self._tag == "paper_doc_ownership_changed" + return self._tag == 'paper_doc_ownership_changed' def is_paper_doc_request_access(self): """ @@ -57006,7 +55969,7 @@ def is_paper_doc_request_access(self): :rtype: bool """ - return self._tag == "paper_doc_request_access" + return self._tag == 'paper_doc_request_access' def is_paper_doc_resolve_comment(self): """ @@ -57014,7 +55977,7 @@ def is_paper_doc_resolve_comment(self): :rtype: bool """ - return self._tag == "paper_doc_resolve_comment" + return self._tag == 'paper_doc_resolve_comment' def is_paper_doc_revert(self): """ @@ -57022,7 +55985,7 @@ def is_paper_doc_revert(self): :rtype: bool """ - return self._tag == "paper_doc_revert" + return self._tag == 'paper_doc_revert' def is_paper_doc_slack_share(self): """ @@ -57030,7 +55993,7 @@ def is_paper_doc_slack_share(self): :rtype: bool """ - return self._tag == "paper_doc_slack_share" + return self._tag == 'paper_doc_slack_share' def is_paper_doc_team_invite(self): """ @@ -57038,7 +56001,7 @@ def is_paper_doc_team_invite(self): :rtype: bool """ - return self._tag == "paper_doc_team_invite" + return self._tag == 'paper_doc_team_invite' def is_paper_doc_trashed(self): """ @@ -57046,7 +56009,7 @@ def is_paper_doc_trashed(self): :rtype: bool """ - return self._tag == "paper_doc_trashed" + return self._tag == 'paper_doc_trashed' def is_paper_doc_unresolve_comment(self): """ @@ -57054,7 +56017,7 @@ def is_paper_doc_unresolve_comment(self): :rtype: bool """ - return self._tag == "paper_doc_unresolve_comment" + return self._tag == 'paper_doc_unresolve_comment' def is_paper_doc_untrashed(self): """ @@ -57062,7 +56025,7 @@ def is_paper_doc_untrashed(self): :rtype: bool """ - return self._tag == "paper_doc_untrashed" + return self._tag == 'paper_doc_untrashed' def is_paper_doc_view(self): """ @@ -57070,7 +56033,7 @@ def is_paper_doc_view(self): :rtype: bool """ - return self._tag == "paper_doc_view" + return self._tag == 'paper_doc_view' def is_paper_external_view_allow(self): """ @@ -57078,7 +56041,7 @@ def is_paper_external_view_allow(self): :rtype: bool """ - return self._tag == "paper_external_view_allow" + return self._tag == 'paper_external_view_allow' def is_paper_external_view_default_team(self): """ @@ -57086,7 +56049,7 @@ def is_paper_external_view_default_team(self): :rtype: bool """ - return self._tag == "paper_external_view_default_team" + return self._tag == 'paper_external_view_default_team' def is_paper_external_view_forbid(self): """ @@ -57094,7 +56057,7 @@ def is_paper_external_view_forbid(self): :rtype: bool """ - return self._tag == "paper_external_view_forbid" + return self._tag == 'paper_external_view_forbid' def is_paper_folder_change_subscription(self): """ @@ -57102,7 +56065,7 @@ def is_paper_folder_change_subscription(self): :rtype: bool """ - return self._tag == "paper_folder_change_subscription" + return self._tag == 'paper_folder_change_subscription' def is_paper_folder_deleted(self): """ @@ -57110,7 +56073,7 @@ def is_paper_folder_deleted(self): :rtype: bool """ - return self._tag == "paper_folder_deleted" + return self._tag == 'paper_folder_deleted' def is_paper_folder_followed(self): """ @@ -57118,7 +56081,7 @@ def is_paper_folder_followed(self): :rtype: bool """ - return self._tag == "paper_folder_followed" + return self._tag == 'paper_folder_followed' def is_paper_folder_team_invite(self): """ @@ -57126,7 +56089,7 @@ def is_paper_folder_team_invite(self): :rtype: bool """ - return self._tag == "paper_folder_team_invite" + return self._tag == 'paper_folder_team_invite' def is_paper_published_link_change_permission(self): """ @@ -57134,7 +56097,7 @@ def is_paper_published_link_change_permission(self): :rtype: bool """ - return self._tag == "paper_published_link_change_permission" + return self._tag == 'paper_published_link_change_permission' def is_paper_published_link_create(self): """ @@ -57142,7 +56105,7 @@ def is_paper_published_link_create(self): :rtype: bool """ - return self._tag == "paper_published_link_create" + return self._tag == 'paper_published_link_create' def is_paper_published_link_disabled(self): """ @@ -57150,7 +56113,7 @@ def is_paper_published_link_disabled(self): :rtype: bool """ - return self._tag == "paper_published_link_disabled" + return self._tag == 'paper_published_link_disabled' def is_paper_published_link_view(self): """ @@ -57158,7 +56121,7 @@ def is_paper_published_link_view(self): :rtype: bool """ - return self._tag == "paper_published_link_view" + return self._tag == 'paper_published_link_view' def is_password_change(self): """ @@ -57166,7 +56129,7 @@ def is_password_change(self): :rtype: bool """ - return self._tag == "password_change" + return self._tag == 'password_change' def is_password_reset(self): """ @@ -57174,7 +56137,7 @@ def is_password_reset(self): :rtype: bool """ - return self._tag == "password_reset" + return self._tag == 'password_reset' def is_password_reset_all(self): """ @@ -57182,7 +56145,7 @@ def is_password_reset_all(self): :rtype: bool """ - return self._tag == "password_reset_all" + return self._tag == 'password_reset_all' def is_protect_internal_domains_changed(self): """ @@ -57190,7 +56153,7 @@ def is_protect_internal_domains_changed(self): :rtype: bool """ - return self._tag == "protect_internal_domains_changed" + return self._tag == 'protect_internal_domains_changed' def is_classification_create_report(self): """ @@ -57198,7 +56161,7 @@ def is_classification_create_report(self): :rtype: bool """ - return self._tag == "classification_create_report" + return self._tag == 'classification_create_report' def is_classification_create_report_fail(self): """ @@ -57206,7 +56169,7 @@ def is_classification_create_report_fail(self): :rtype: bool """ - return self._tag == "classification_create_report_fail" + return self._tag == 'classification_create_report_fail' def is_emm_create_exceptions_report(self): """ @@ -57214,7 +56177,7 @@ def is_emm_create_exceptions_report(self): :rtype: bool """ - return self._tag == "emm_create_exceptions_report" + return self._tag == 'emm_create_exceptions_report' def is_emm_create_usage_report(self): """ @@ -57222,7 +56185,7 @@ def is_emm_create_usage_report(self): :rtype: bool """ - return self._tag == "emm_create_usage_report" + return self._tag == 'emm_create_usage_report' def is_export_members_report(self): """ @@ -57230,7 +56193,7 @@ def is_export_members_report(self): :rtype: bool """ - return self._tag == "export_members_report" + return self._tag == 'export_members_report' def is_export_members_report_fail(self): """ @@ -57238,7 +56201,7 @@ def is_export_members_report_fail(self): :rtype: bool """ - return self._tag == "export_members_report_fail" + return self._tag == 'export_members_report_fail' def is_external_sharing_create_report(self): """ @@ -57246,7 +56209,7 @@ def is_external_sharing_create_report(self): :rtype: bool """ - return self._tag == "external_sharing_create_report" + return self._tag == 'external_sharing_create_report' def is_external_sharing_report_failed(self): """ @@ -57254,7 +56217,7 @@ def is_external_sharing_report_failed(self): :rtype: bool """ - return self._tag == "external_sharing_report_failed" + return self._tag == 'external_sharing_report_failed' def is_member_access_details_create_report(self): """ @@ -57262,7 +56225,7 @@ def is_member_access_details_create_report(self): :rtype: bool """ - return self._tag == "member_access_details_create_report" + return self._tag == 'member_access_details_create_report' def is_member_access_details_create_report_failed(self): """ @@ -57270,7 +56233,7 @@ def is_member_access_details_create_report_failed(self): :rtype: bool """ - return self._tag == "member_access_details_create_report_failed" + return self._tag == 'member_access_details_create_report_failed' def is_no_expiration_link_gen_create_report(self): """ @@ -57278,7 +56241,7 @@ def is_no_expiration_link_gen_create_report(self): :rtype: bool """ - return self._tag == "no_expiration_link_gen_create_report" + return self._tag == 'no_expiration_link_gen_create_report' def is_no_expiration_link_gen_report_failed(self): """ @@ -57286,7 +56249,7 @@ def is_no_expiration_link_gen_report_failed(self): :rtype: bool """ - return self._tag == "no_expiration_link_gen_report_failed" + return self._tag == 'no_expiration_link_gen_report_failed' def is_no_password_link_gen_create_report(self): """ @@ -57294,7 +56257,7 @@ def is_no_password_link_gen_create_report(self): :rtype: bool """ - return self._tag == "no_password_link_gen_create_report" + return self._tag == 'no_password_link_gen_create_report' def is_no_password_link_gen_report_failed(self): """ @@ -57302,7 +56265,7 @@ def is_no_password_link_gen_report_failed(self): :rtype: bool """ - return self._tag == "no_password_link_gen_report_failed" + return self._tag == 'no_password_link_gen_report_failed' def is_no_password_link_view_create_report(self): """ @@ -57310,7 +56273,7 @@ def is_no_password_link_view_create_report(self): :rtype: bool """ - return self._tag == "no_password_link_view_create_report" + return self._tag == 'no_password_link_view_create_report' def is_no_password_link_view_report_failed(self): """ @@ -57318,7 +56281,7 @@ def is_no_password_link_view_report_failed(self): :rtype: bool """ - return self._tag == "no_password_link_view_report_failed" + return self._tag == 'no_password_link_view_report_failed' def is_outdated_link_view_create_report(self): """ @@ -57326,7 +56289,7 @@ def is_outdated_link_view_create_report(self): :rtype: bool """ - return self._tag == "outdated_link_view_create_report" + return self._tag == 'outdated_link_view_create_report' def is_outdated_link_view_report_failed(self): """ @@ -57334,7 +56297,7 @@ def is_outdated_link_view_report_failed(self): :rtype: bool """ - return self._tag == "outdated_link_view_report_failed" + return self._tag == 'outdated_link_view_report_failed' def is_paper_admin_export_start(self): """ @@ -57342,7 +56305,7 @@ def is_paper_admin_export_start(self): :rtype: bool """ - return self._tag == "paper_admin_export_start" + return self._tag == 'paper_admin_export_start' def is_ransomware_alert_create_report(self): """ @@ -57350,7 +56313,7 @@ def is_ransomware_alert_create_report(self): :rtype: bool """ - return self._tag == "ransomware_alert_create_report" + return self._tag == 'ransomware_alert_create_report' def is_ransomware_alert_create_report_failed(self): """ @@ -57358,7 +56321,7 @@ def is_ransomware_alert_create_report_failed(self): :rtype: bool """ - return self._tag == "ransomware_alert_create_report_failed" + return self._tag == 'ransomware_alert_create_report_failed' def is_shared_folders_create_report(self): """ @@ -57366,7 +56329,7 @@ def is_shared_folders_create_report(self): :rtype: bool """ - return self._tag == "shared_folders_create_report" + return self._tag == 'shared_folders_create_report' def is_shared_folders_create_report_failed(self): """ @@ -57374,7 +56337,7 @@ def is_shared_folders_create_report_failed(self): :rtype: bool """ - return self._tag == "shared_folders_create_report_failed" + return self._tag == 'shared_folders_create_report_failed' def is_smart_sync_create_admin_privilege_report(self): """ @@ -57382,7 +56345,7 @@ def is_smart_sync_create_admin_privilege_report(self): :rtype: bool """ - return self._tag == "smart_sync_create_admin_privilege_report" + return self._tag == 'smart_sync_create_admin_privilege_report' def is_team_activity_create_report(self): """ @@ -57390,7 +56353,7 @@ def is_team_activity_create_report(self): :rtype: bool """ - return self._tag == "team_activity_create_report" + return self._tag == 'team_activity_create_report' def is_team_activity_create_report_fail(self): """ @@ -57398,7 +56361,7 @@ def is_team_activity_create_report_fail(self): :rtype: bool """ - return self._tag == "team_activity_create_report_fail" + return self._tag == 'team_activity_create_report_fail' def is_team_folders_create_report(self): """ @@ -57406,7 +56369,7 @@ def is_team_folders_create_report(self): :rtype: bool """ - return self._tag == "team_folders_create_report" + return self._tag == 'team_folders_create_report' def is_team_folders_create_report_failed(self): """ @@ -57414,7 +56377,7 @@ def is_team_folders_create_report_failed(self): :rtype: bool """ - return self._tag == "team_folders_create_report_failed" + return self._tag == 'team_folders_create_report_failed' def is_team_storage_create_report(self): """ @@ -57422,7 +56385,7 @@ def is_team_storage_create_report(self): :rtype: bool """ - return self._tag == "team_storage_create_report" + return self._tag == 'team_storage_create_report' def is_team_storage_create_report_failed(self): """ @@ -57430,7 +56393,7 @@ def is_team_storage_create_report_failed(self): :rtype: bool """ - return self._tag == "team_storage_create_report_failed" + return self._tag == 'team_storage_create_report_failed' def is_collection_share(self): """ @@ -57438,7 +56401,7 @@ def is_collection_share(self): :rtype: bool """ - return self._tag == "collection_share" + return self._tag == 'collection_share' def is_file_transfers_file_add(self): """ @@ -57446,7 +56409,7 @@ def is_file_transfers_file_add(self): :rtype: bool """ - return self._tag == "file_transfers_file_add" + return self._tag == 'file_transfers_file_add' def is_file_transfers_transfer_delete(self): """ @@ -57454,7 +56417,7 @@ def is_file_transfers_transfer_delete(self): :rtype: bool """ - return self._tag == "file_transfers_transfer_delete" + return self._tag == 'file_transfers_transfer_delete' def is_file_transfers_transfer_download(self): """ @@ -57462,7 +56425,7 @@ def is_file_transfers_transfer_download(self): :rtype: bool """ - return self._tag == "file_transfers_transfer_download" + return self._tag == 'file_transfers_transfer_download' def is_file_transfers_transfer_send(self): """ @@ -57470,7 +56433,7 @@ def is_file_transfers_transfer_send(self): :rtype: bool """ - return self._tag == "file_transfers_transfer_send" + return self._tag == 'file_transfers_transfer_send' def is_file_transfers_transfer_view(self): """ @@ -57478,7 +56441,7 @@ def is_file_transfers_transfer_view(self): :rtype: bool """ - return self._tag == "file_transfers_transfer_view" + return self._tag == 'file_transfers_transfer_view' def is_media_hub_project_team_add(self): """ @@ -57486,7 +56449,7 @@ def is_media_hub_project_team_add(self): :rtype: bool """ - return self._tag == "media_hub_project_team_add" + return self._tag == 'media_hub_project_team_add' def is_media_hub_project_team_delete(self): """ @@ -57494,7 +56457,7 @@ def is_media_hub_project_team_delete(self): :rtype: bool """ - return self._tag == "media_hub_project_team_delete" + return self._tag == 'media_hub_project_team_delete' def is_media_hub_project_team_role_changed(self): """ @@ -57502,7 +56465,7 @@ def is_media_hub_project_team_role_changed(self): :rtype: bool """ - return self._tag == "media_hub_project_team_role_changed" + return self._tag == 'media_hub_project_team_role_changed' def is_media_hub_shared_link_audience_changed(self): """ @@ -57510,7 +56473,7 @@ def is_media_hub_shared_link_audience_changed(self): :rtype: bool """ - return self._tag == "media_hub_shared_link_audience_changed" + return self._tag == 'media_hub_shared_link_audience_changed' def is_media_hub_shared_link_created(self): """ @@ -57518,7 +56481,7 @@ def is_media_hub_shared_link_created(self): :rtype: bool """ - return self._tag == "media_hub_shared_link_created" + return self._tag == 'media_hub_shared_link_created' def is_media_hub_shared_link_download_setting_changed(self): """ @@ -57526,7 +56489,7 @@ def is_media_hub_shared_link_download_setting_changed(self): :rtype: bool """ - return self._tag == "media_hub_shared_link_download_setting_changed" + return self._tag == 'media_hub_shared_link_download_setting_changed' def is_media_hub_shared_link_revoked(self): """ @@ -57534,7 +56497,7 @@ def is_media_hub_shared_link_revoked(self): :rtype: bool """ - return self._tag == "media_hub_shared_link_revoked" + return self._tag == 'media_hub_shared_link_revoked' def is_note_acl_invite_only(self): """ @@ -57542,7 +56505,7 @@ def is_note_acl_invite_only(self): :rtype: bool """ - return self._tag == "note_acl_invite_only" + return self._tag == 'note_acl_invite_only' def is_note_acl_link(self): """ @@ -57550,7 +56513,7 @@ def is_note_acl_link(self): :rtype: bool """ - return self._tag == "note_acl_link" + return self._tag == 'note_acl_link' def is_note_acl_team_link(self): """ @@ -57558,7 +56521,7 @@ def is_note_acl_team_link(self): :rtype: bool """ - return self._tag == "note_acl_team_link" + return self._tag == 'note_acl_team_link' def is_note_shared(self): """ @@ -57566,7 +56529,7 @@ def is_note_shared(self): :rtype: bool """ - return self._tag == "note_shared" + return self._tag == 'note_shared' def is_note_share_receive(self): """ @@ -57574,7 +56537,7 @@ def is_note_share_receive(self): :rtype: bool """ - return self._tag == "note_share_receive" + return self._tag == 'note_share_receive' def is_open_note_shared(self): """ @@ -57582,7 +56545,7 @@ def is_open_note_shared(self): :rtype: bool """ - return self._tag == "open_note_shared" + return self._tag == 'open_note_shared' def is_replay_file_shared_link_created(self): """ @@ -57590,7 +56553,7 @@ def is_replay_file_shared_link_created(self): :rtype: bool """ - return self._tag == "replay_file_shared_link_created" + return self._tag == 'replay_file_shared_link_created' def is_replay_file_shared_link_modified(self): """ @@ -57598,7 +56561,7 @@ def is_replay_file_shared_link_modified(self): :rtype: bool """ - return self._tag == "replay_file_shared_link_modified" + return self._tag == 'replay_file_shared_link_modified' def is_replay_project_team_add(self): """ @@ -57606,7 +56569,7 @@ def is_replay_project_team_add(self): :rtype: bool """ - return self._tag == "replay_project_team_add" + return self._tag == 'replay_project_team_add' def is_replay_project_team_delete(self): """ @@ -57614,7 +56577,7 @@ def is_replay_project_team_delete(self): :rtype: bool """ - return self._tag == "replay_project_team_delete" + return self._tag == 'replay_project_team_delete' def is_send_and_track_file_added(self): """ @@ -57622,7 +56585,7 @@ def is_send_and_track_file_added(self): :rtype: bool """ - return self._tag == "send_and_track_file_added" + return self._tag == 'send_and_track_file_added' def is_send_and_track_file_renamed(self): """ @@ -57630,7 +56593,7 @@ def is_send_and_track_file_renamed(self): :rtype: bool """ - return self._tag == "send_and_track_file_renamed" + return self._tag == 'send_and_track_file_renamed' def is_send_and_track_file_updated(self): """ @@ -57638,7 +56601,7 @@ def is_send_and_track_file_updated(self): :rtype: bool """ - return self._tag == "send_and_track_file_updated" + return self._tag == 'send_and_track_file_updated' def is_send_and_track_link_created(self): """ @@ -57646,7 +56609,7 @@ def is_send_and_track_link_created(self): :rtype: bool """ - return self._tag == "send_and_track_link_created" + return self._tag == 'send_and_track_link_created' def is_send_and_track_link_deleted(self): """ @@ -57654,7 +56617,7 @@ def is_send_and_track_link_deleted(self): :rtype: bool """ - return self._tag == "send_and_track_link_deleted" + return self._tag == 'send_and_track_link_deleted' def is_send_and_track_link_updated(self): """ @@ -57662,7 +56625,7 @@ def is_send_and_track_link_updated(self): :rtype: bool """ - return self._tag == "send_and_track_link_updated" + return self._tag == 'send_and_track_link_updated' def is_send_and_track_link_viewed(self): """ @@ -57670,7 +56633,7 @@ def is_send_and_track_link_viewed(self): :rtype: bool """ - return self._tag == "send_and_track_link_viewed" + return self._tag == 'send_and_track_link_viewed' def is_send_and_track_removed_file_and_associated_links(self): """ @@ -57678,7 +56641,7 @@ def is_send_and_track_removed_file_and_associated_links(self): :rtype: bool """ - return self._tag == "send_and_track_removed_file_and_associated_links" + return self._tag == 'send_and_track_removed_file_and_associated_links' def is_sf_add_group(self): """ @@ -57686,7 +56649,7 @@ def is_sf_add_group(self): :rtype: bool """ - return self._tag == "sf_add_group" + return self._tag == 'sf_add_group' def is_sf_allow_non_members_to_view_shared_links(self): """ @@ -57694,7 +56657,7 @@ def is_sf_allow_non_members_to_view_shared_links(self): :rtype: bool """ - return self._tag == "sf_allow_non_members_to_view_shared_links" + return self._tag == 'sf_allow_non_members_to_view_shared_links' def is_sf_external_invite_warn(self): """ @@ -57702,7 +56665,7 @@ def is_sf_external_invite_warn(self): :rtype: bool """ - return self._tag == "sf_external_invite_warn" + return self._tag == 'sf_external_invite_warn' def is_sf_fb_invite(self): """ @@ -57710,7 +56673,7 @@ def is_sf_fb_invite(self): :rtype: bool """ - return self._tag == "sf_fb_invite" + return self._tag == 'sf_fb_invite' def is_sf_fb_invite_change_role(self): """ @@ -57718,7 +56681,7 @@ def is_sf_fb_invite_change_role(self): :rtype: bool """ - return self._tag == "sf_fb_invite_change_role" + return self._tag == 'sf_fb_invite_change_role' def is_sf_fb_uninvite(self): """ @@ -57726,7 +56689,7 @@ def is_sf_fb_uninvite(self): :rtype: bool """ - return self._tag == "sf_fb_uninvite" + return self._tag == 'sf_fb_uninvite' def is_sf_invite_group(self): """ @@ -57734,7 +56697,7 @@ def is_sf_invite_group(self): :rtype: bool """ - return self._tag == "sf_invite_group" + return self._tag == 'sf_invite_group' def is_sf_team_grant_access(self): """ @@ -57742,7 +56705,7 @@ def is_sf_team_grant_access(self): :rtype: bool """ - return self._tag == "sf_team_grant_access" + return self._tag == 'sf_team_grant_access' def is_sf_team_invite(self): """ @@ -57750,7 +56713,7 @@ def is_sf_team_invite(self): :rtype: bool """ - return self._tag == "sf_team_invite" + return self._tag == 'sf_team_invite' def is_sf_team_invite_change_role(self): """ @@ -57758,7 +56721,7 @@ def is_sf_team_invite_change_role(self): :rtype: bool """ - return self._tag == "sf_team_invite_change_role" + return self._tag == 'sf_team_invite_change_role' def is_sf_team_join(self): """ @@ -57766,7 +56729,7 @@ def is_sf_team_join(self): :rtype: bool """ - return self._tag == "sf_team_join" + return self._tag == 'sf_team_join' def is_sf_team_join_from_oob_link(self): """ @@ -57774,7 +56737,7 @@ def is_sf_team_join_from_oob_link(self): :rtype: bool """ - return self._tag == "sf_team_join_from_oob_link" + return self._tag == 'sf_team_join_from_oob_link' def is_sf_team_uninvite(self): """ @@ -57782,7 +56745,7 @@ def is_sf_team_uninvite(self): :rtype: bool """ - return self._tag == "sf_team_uninvite" + return self._tag == 'sf_team_uninvite' def is_shared_content_add_invitees(self): """ @@ -57790,7 +56753,7 @@ def is_shared_content_add_invitees(self): :rtype: bool """ - return self._tag == "shared_content_add_invitees" + return self._tag == 'shared_content_add_invitees' def is_shared_content_add_link_expiry(self): """ @@ -57798,7 +56761,7 @@ def is_shared_content_add_link_expiry(self): :rtype: bool """ - return self._tag == "shared_content_add_link_expiry" + return self._tag == 'shared_content_add_link_expiry' def is_shared_content_add_link_password(self): """ @@ -57806,7 +56769,7 @@ def is_shared_content_add_link_password(self): :rtype: bool """ - return self._tag == "shared_content_add_link_password" + return self._tag == 'shared_content_add_link_password' def is_shared_content_add_member(self): """ @@ -57814,7 +56777,7 @@ def is_shared_content_add_member(self): :rtype: bool """ - return self._tag == "shared_content_add_member" + return self._tag == 'shared_content_add_member' def is_shared_content_change_downloads_policy(self): """ @@ -57822,7 +56785,7 @@ def is_shared_content_change_downloads_policy(self): :rtype: bool """ - return self._tag == "shared_content_change_downloads_policy" + return self._tag == 'shared_content_change_downloads_policy' def is_shared_content_change_invitee_role(self): """ @@ -57830,7 +56793,7 @@ def is_shared_content_change_invitee_role(self): :rtype: bool """ - return self._tag == "shared_content_change_invitee_role" + return self._tag == 'shared_content_change_invitee_role' def is_shared_content_change_link_audience(self): """ @@ -57838,7 +56801,7 @@ def is_shared_content_change_link_audience(self): :rtype: bool """ - return self._tag == "shared_content_change_link_audience" + return self._tag == 'shared_content_change_link_audience' def is_shared_content_change_link_expiry(self): """ @@ -57846,7 +56809,7 @@ def is_shared_content_change_link_expiry(self): :rtype: bool """ - return self._tag == "shared_content_change_link_expiry" + return self._tag == 'shared_content_change_link_expiry' def is_shared_content_change_link_password(self): """ @@ -57854,7 +56817,7 @@ def is_shared_content_change_link_password(self): :rtype: bool """ - return self._tag == "shared_content_change_link_password" + return self._tag == 'shared_content_change_link_password' def is_shared_content_change_member_role(self): """ @@ -57862,7 +56825,7 @@ def is_shared_content_change_member_role(self): :rtype: bool """ - return self._tag == "shared_content_change_member_role" + return self._tag == 'shared_content_change_member_role' def is_shared_content_change_viewer_info_policy(self): """ @@ -57870,7 +56833,7 @@ def is_shared_content_change_viewer_info_policy(self): :rtype: bool """ - return self._tag == "shared_content_change_viewer_info_policy" + return self._tag == 'shared_content_change_viewer_info_policy' def is_shared_content_claim_invitation(self): """ @@ -57878,7 +56841,7 @@ def is_shared_content_claim_invitation(self): :rtype: bool """ - return self._tag == "shared_content_claim_invitation" + return self._tag == 'shared_content_claim_invitation' def is_shared_content_copy(self): """ @@ -57886,7 +56849,7 @@ def is_shared_content_copy(self): :rtype: bool """ - return self._tag == "shared_content_copy" + return self._tag == 'shared_content_copy' def is_shared_content_download(self): """ @@ -57894,7 +56857,7 @@ def is_shared_content_download(self): :rtype: bool """ - return self._tag == "shared_content_download" + return self._tag == 'shared_content_download' def is_shared_content_relinquish_membership(self): """ @@ -57902,7 +56865,7 @@ def is_shared_content_relinquish_membership(self): :rtype: bool """ - return self._tag == "shared_content_relinquish_membership" + return self._tag == 'shared_content_relinquish_membership' def is_shared_content_remove_invitees(self): """ @@ -57910,7 +56873,7 @@ def is_shared_content_remove_invitees(self): :rtype: bool """ - return self._tag == "shared_content_remove_invitees" + return self._tag == 'shared_content_remove_invitees' def is_shared_content_remove_link_expiry(self): """ @@ -57918,7 +56881,7 @@ def is_shared_content_remove_link_expiry(self): :rtype: bool """ - return self._tag == "shared_content_remove_link_expiry" + return self._tag == 'shared_content_remove_link_expiry' def is_shared_content_remove_link_password(self): """ @@ -57926,7 +56889,7 @@ def is_shared_content_remove_link_password(self): :rtype: bool """ - return self._tag == "shared_content_remove_link_password" + return self._tag == 'shared_content_remove_link_password' def is_shared_content_remove_member(self): """ @@ -57934,7 +56897,7 @@ def is_shared_content_remove_member(self): :rtype: bool """ - return self._tag == "shared_content_remove_member" + return self._tag == 'shared_content_remove_member' def is_shared_content_request_access(self): """ @@ -57942,7 +56905,7 @@ def is_shared_content_request_access(self): :rtype: bool """ - return self._tag == "shared_content_request_access" + return self._tag == 'shared_content_request_access' def is_shared_content_restore_invitees(self): """ @@ -57950,7 +56913,7 @@ def is_shared_content_restore_invitees(self): :rtype: bool """ - return self._tag == "shared_content_restore_invitees" + return self._tag == 'shared_content_restore_invitees' def is_shared_content_restore_member(self): """ @@ -57958,7 +56921,7 @@ def is_shared_content_restore_member(self): :rtype: bool """ - return self._tag == "shared_content_restore_member" + return self._tag == 'shared_content_restore_member' def is_shared_content_unshare(self): """ @@ -57966,7 +56929,7 @@ def is_shared_content_unshare(self): :rtype: bool """ - return self._tag == "shared_content_unshare" + return self._tag == 'shared_content_unshare' def is_shared_content_view(self): """ @@ -57974,7 +56937,7 @@ def is_shared_content_view(self): :rtype: bool """ - return self._tag == "shared_content_view" + return self._tag == 'shared_content_view' def is_shared_folder_change_link_policy(self): """ @@ -57982,7 +56945,7 @@ def is_shared_folder_change_link_policy(self): :rtype: bool """ - return self._tag == "shared_folder_change_link_policy" + return self._tag == 'shared_folder_change_link_policy' def is_shared_folder_change_members_inheritance_policy(self): """ @@ -57990,7 +56953,7 @@ def is_shared_folder_change_members_inheritance_policy(self): :rtype: bool """ - return self._tag == "shared_folder_change_members_inheritance_policy" + return self._tag == 'shared_folder_change_members_inheritance_policy' def is_shared_folder_change_members_management_policy(self): """ @@ -57998,7 +56961,7 @@ def is_shared_folder_change_members_management_policy(self): :rtype: bool """ - return self._tag == "shared_folder_change_members_management_policy" + return self._tag == 'shared_folder_change_members_management_policy' def is_shared_folder_change_members_policy(self): """ @@ -58006,7 +56969,7 @@ def is_shared_folder_change_members_policy(self): :rtype: bool """ - return self._tag == "shared_folder_change_members_policy" + return self._tag == 'shared_folder_change_members_policy' def is_shared_folder_create(self): """ @@ -58014,7 +56977,7 @@ def is_shared_folder_create(self): :rtype: bool """ - return self._tag == "shared_folder_create" + return self._tag == 'shared_folder_create' def is_shared_folder_decline_invitation(self): """ @@ -58022,7 +56985,7 @@ def is_shared_folder_decline_invitation(self): :rtype: bool """ - return self._tag == "shared_folder_decline_invitation" + return self._tag == 'shared_folder_decline_invitation' def is_shared_folder_mount(self): """ @@ -58030,7 +56993,7 @@ def is_shared_folder_mount(self): :rtype: bool """ - return self._tag == "shared_folder_mount" + return self._tag == 'shared_folder_mount' def is_shared_folder_nest(self): """ @@ -58038,7 +57001,7 @@ def is_shared_folder_nest(self): :rtype: bool """ - return self._tag == "shared_folder_nest" + return self._tag == 'shared_folder_nest' def is_shared_folder_transfer_ownership(self): """ @@ -58046,7 +57009,7 @@ def is_shared_folder_transfer_ownership(self): :rtype: bool """ - return self._tag == "shared_folder_transfer_ownership" + return self._tag == 'shared_folder_transfer_ownership' def is_shared_folder_unmount(self): """ @@ -58054,7 +57017,7 @@ def is_shared_folder_unmount(self): :rtype: bool """ - return self._tag == "shared_folder_unmount" + return self._tag == 'shared_folder_unmount' def is_shared_link_add_expiry(self): """ @@ -58062,7 +57025,7 @@ def is_shared_link_add_expiry(self): :rtype: bool """ - return self._tag == "shared_link_add_expiry" + return self._tag == 'shared_link_add_expiry' def is_shared_link_change_expiry(self): """ @@ -58070,7 +57033,7 @@ def is_shared_link_change_expiry(self): :rtype: bool """ - return self._tag == "shared_link_change_expiry" + return self._tag == 'shared_link_change_expiry' def is_shared_link_change_visibility(self): """ @@ -58078,7 +57041,7 @@ def is_shared_link_change_visibility(self): :rtype: bool """ - return self._tag == "shared_link_change_visibility" + return self._tag == 'shared_link_change_visibility' def is_shared_link_copy(self): """ @@ -58086,7 +57049,7 @@ def is_shared_link_copy(self): :rtype: bool """ - return self._tag == "shared_link_copy" + return self._tag == 'shared_link_copy' def is_shared_link_create(self): """ @@ -58094,7 +57057,7 @@ def is_shared_link_create(self): :rtype: bool """ - return self._tag == "shared_link_create" + return self._tag == 'shared_link_create' def is_shared_link_disable(self): """ @@ -58102,7 +57065,7 @@ def is_shared_link_disable(self): :rtype: bool """ - return self._tag == "shared_link_disable" + return self._tag == 'shared_link_disable' def is_shared_link_download(self): """ @@ -58110,7 +57073,7 @@ def is_shared_link_download(self): :rtype: bool """ - return self._tag == "shared_link_download" + return self._tag == 'shared_link_download' def is_shared_link_remove_expiry(self): """ @@ -58118,7 +57081,7 @@ def is_shared_link_remove_expiry(self): :rtype: bool """ - return self._tag == "shared_link_remove_expiry" + return self._tag == 'shared_link_remove_expiry' def is_shared_link_remove_visitor(self): """ @@ -58126,7 +57089,7 @@ def is_shared_link_remove_visitor(self): :rtype: bool """ - return self._tag == "shared_link_remove_visitor" + return self._tag == 'shared_link_remove_visitor' def is_shared_link_settings_add_expiration(self): """ @@ -58134,7 +57097,7 @@ def is_shared_link_settings_add_expiration(self): :rtype: bool """ - return self._tag == "shared_link_settings_add_expiration" + return self._tag == 'shared_link_settings_add_expiration' def is_shared_link_settings_add_password(self): """ @@ -58142,7 +57105,7 @@ def is_shared_link_settings_add_password(self): :rtype: bool """ - return self._tag == "shared_link_settings_add_password" + return self._tag == 'shared_link_settings_add_password' def is_shared_link_settings_allow_download_disabled(self): """ @@ -58150,7 +57113,7 @@ def is_shared_link_settings_allow_download_disabled(self): :rtype: bool """ - return self._tag == "shared_link_settings_allow_download_disabled" + return self._tag == 'shared_link_settings_allow_download_disabled' def is_shared_link_settings_allow_download_enabled(self): """ @@ -58158,7 +57121,7 @@ def is_shared_link_settings_allow_download_enabled(self): :rtype: bool """ - return self._tag == "shared_link_settings_allow_download_enabled" + return self._tag == 'shared_link_settings_allow_download_enabled' def is_shared_link_settings_change_audience(self): """ @@ -58166,7 +57129,7 @@ def is_shared_link_settings_change_audience(self): :rtype: bool """ - return self._tag == "shared_link_settings_change_audience" + return self._tag == 'shared_link_settings_change_audience' def is_shared_link_settings_change_expiration(self): """ @@ -58174,7 +57137,7 @@ def is_shared_link_settings_change_expiration(self): :rtype: bool """ - return self._tag == "shared_link_settings_change_expiration" + return self._tag == 'shared_link_settings_change_expiration' def is_shared_link_settings_change_password(self): """ @@ -58182,7 +57145,7 @@ def is_shared_link_settings_change_password(self): :rtype: bool """ - return self._tag == "shared_link_settings_change_password" + return self._tag == 'shared_link_settings_change_password' def is_shared_link_settings_remove_expiration(self): """ @@ -58190,7 +57153,7 @@ def is_shared_link_settings_remove_expiration(self): :rtype: bool """ - return self._tag == "shared_link_settings_remove_expiration" + return self._tag == 'shared_link_settings_remove_expiration' def is_shared_link_settings_remove_password(self): """ @@ -58198,7 +57161,7 @@ def is_shared_link_settings_remove_password(self): :rtype: bool """ - return self._tag == "shared_link_settings_remove_password" + return self._tag == 'shared_link_settings_remove_password' def is_shared_link_share(self): """ @@ -58206,7 +57169,7 @@ def is_shared_link_share(self): :rtype: bool """ - return self._tag == "shared_link_share" + return self._tag == 'shared_link_share' def is_shared_link_view(self): """ @@ -58214,7 +57177,7 @@ def is_shared_link_view(self): :rtype: bool """ - return self._tag == "shared_link_view" + return self._tag == 'shared_link_view' def is_shared_note_opened(self): """ @@ -58222,7 +57185,7 @@ def is_shared_note_opened(self): :rtype: bool """ - return self._tag == "shared_note_opened" + return self._tag == 'shared_note_opened' def is_shmodel_disable_downloads(self): """ @@ -58230,7 +57193,7 @@ def is_shmodel_disable_downloads(self): :rtype: bool """ - return self._tag == "shmodel_disable_downloads" + return self._tag == 'shmodel_disable_downloads' def is_shmodel_enable_downloads(self): """ @@ -58238,7 +57201,7 @@ def is_shmodel_enable_downloads(self): :rtype: bool """ - return self._tag == "shmodel_enable_downloads" + return self._tag == 'shmodel_enable_downloads' def is_shmodel_group_share(self): """ @@ -58246,7 +57209,7 @@ def is_shmodel_group_share(self): :rtype: bool """ - return self._tag == "shmodel_group_share" + return self._tag == 'shmodel_group_share' def is_showcase_access_granted(self): """ @@ -58254,7 +57217,7 @@ def is_showcase_access_granted(self): :rtype: bool """ - return self._tag == "showcase_access_granted" + return self._tag == 'showcase_access_granted' def is_showcase_add_member(self): """ @@ -58262,7 +57225,7 @@ def is_showcase_add_member(self): :rtype: bool """ - return self._tag == "showcase_add_member" + return self._tag == 'showcase_add_member' def is_showcase_archived(self): """ @@ -58270,7 +57233,7 @@ def is_showcase_archived(self): :rtype: bool """ - return self._tag == "showcase_archived" + return self._tag == 'showcase_archived' def is_showcase_created(self): """ @@ -58278,7 +57241,7 @@ def is_showcase_created(self): :rtype: bool """ - return self._tag == "showcase_created" + return self._tag == 'showcase_created' def is_showcase_delete_comment(self): """ @@ -58286,7 +57249,7 @@ def is_showcase_delete_comment(self): :rtype: bool """ - return self._tag == "showcase_delete_comment" + return self._tag == 'showcase_delete_comment' def is_showcase_edited(self): """ @@ -58294,7 +57257,7 @@ def is_showcase_edited(self): :rtype: bool """ - return self._tag == "showcase_edited" + return self._tag == 'showcase_edited' def is_showcase_edit_comment(self): """ @@ -58302,7 +57265,7 @@ def is_showcase_edit_comment(self): :rtype: bool """ - return self._tag == "showcase_edit_comment" + return self._tag == 'showcase_edit_comment' def is_showcase_file_added(self): """ @@ -58310,7 +57273,7 @@ def is_showcase_file_added(self): :rtype: bool """ - return self._tag == "showcase_file_added" + return self._tag == 'showcase_file_added' def is_showcase_file_download(self): """ @@ -58318,7 +57281,7 @@ def is_showcase_file_download(self): :rtype: bool """ - return self._tag == "showcase_file_download" + return self._tag == 'showcase_file_download' def is_showcase_file_removed(self): """ @@ -58326,7 +57289,7 @@ def is_showcase_file_removed(self): :rtype: bool """ - return self._tag == "showcase_file_removed" + return self._tag == 'showcase_file_removed' def is_showcase_file_view(self): """ @@ -58334,7 +57297,7 @@ def is_showcase_file_view(self): :rtype: bool """ - return self._tag == "showcase_file_view" + return self._tag == 'showcase_file_view' def is_showcase_permanently_deleted(self): """ @@ -58342,7 +57305,7 @@ def is_showcase_permanently_deleted(self): :rtype: bool """ - return self._tag == "showcase_permanently_deleted" + return self._tag == 'showcase_permanently_deleted' def is_showcase_post_comment(self): """ @@ -58350,7 +57313,7 @@ def is_showcase_post_comment(self): :rtype: bool """ - return self._tag == "showcase_post_comment" + return self._tag == 'showcase_post_comment' def is_showcase_remove_member(self): """ @@ -58358,7 +57321,7 @@ def is_showcase_remove_member(self): :rtype: bool """ - return self._tag == "showcase_remove_member" + return self._tag == 'showcase_remove_member' def is_showcase_renamed(self): """ @@ -58366,7 +57329,7 @@ def is_showcase_renamed(self): :rtype: bool """ - return self._tag == "showcase_renamed" + return self._tag == 'showcase_renamed' def is_showcase_request_access(self): """ @@ -58374,7 +57337,7 @@ def is_showcase_request_access(self): :rtype: bool """ - return self._tag == "showcase_request_access" + return self._tag == 'showcase_request_access' def is_showcase_resolve_comment(self): """ @@ -58382,7 +57345,7 @@ def is_showcase_resolve_comment(self): :rtype: bool """ - return self._tag == "showcase_resolve_comment" + return self._tag == 'showcase_resolve_comment' def is_showcase_restored(self): """ @@ -58390,7 +57353,7 @@ def is_showcase_restored(self): :rtype: bool """ - return self._tag == "showcase_restored" + return self._tag == 'showcase_restored' def is_showcase_trashed(self): """ @@ -58398,7 +57361,7 @@ def is_showcase_trashed(self): :rtype: bool """ - return self._tag == "showcase_trashed" + return self._tag == 'showcase_trashed' def is_showcase_trashed_deprecated(self): """ @@ -58406,7 +57369,7 @@ def is_showcase_trashed_deprecated(self): :rtype: bool """ - return self._tag == "showcase_trashed_deprecated" + return self._tag == 'showcase_trashed_deprecated' def is_showcase_unresolve_comment(self): """ @@ -58414,7 +57377,7 @@ def is_showcase_unresolve_comment(self): :rtype: bool """ - return self._tag == "showcase_unresolve_comment" + return self._tag == 'showcase_unresolve_comment' def is_showcase_untrashed(self): """ @@ -58422,7 +57385,7 @@ def is_showcase_untrashed(self): :rtype: bool """ - return self._tag == "showcase_untrashed" + return self._tag == 'showcase_untrashed' def is_showcase_untrashed_deprecated(self): """ @@ -58430,7 +57393,7 @@ def is_showcase_untrashed_deprecated(self): :rtype: bool """ - return self._tag == "showcase_untrashed_deprecated" + return self._tag == 'showcase_untrashed_deprecated' def is_showcase_view(self): """ @@ -58438,7 +57401,7 @@ def is_showcase_view(self): :rtype: bool """ - return self._tag == "showcase_view" + return self._tag == 'showcase_view' def is_sign_signature_request_canceled(self): """ @@ -58446,7 +57409,7 @@ def is_sign_signature_request_canceled(self): :rtype: bool """ - return self._tag == "sign_signature_request_canceled" + return self._tag == 'sign_signature_request_canceled' def is_sign_signature_request_completed(self): """ @@ -58454,7 +57417,7 @@ def is_sign_signature_request_completed(self): :rtype: bool """ - return self._tag == "sign_signature_request_completed" + return self._tag == 'sign_signature_request_completed' def is_sign_signature_request_declined(self): """ @@ -58462,7 +57425,7 @@ def is_sign_signature_request_declined(self): :rtype: bool """ - return self._tag == "sign_signature_request_declined" + return self._tag == 'sign_signature_request_declined' def is_sign_signature_request_opened(self): """ @@ -58470,7 +57433,7 @@ def is_sign_signature_request_opened(self): :rtype: bool """ - return self._tag == "sign_signature_request_opened" + return self._tag == 'sign_signature_request_opened' def is_sign_signature_request_reminder_sent(self): """ @@ -58478,7 +57441,7 @@ def is_sign_signature_request_reminder_sent(self): :rtype: bool """ - return self._tag == "sign_signature_request_reminder_sent" + return self._tag == 'sign_signature_request_reminder_sent' def is_sign_signature_request_sent(self): """ @@ -58486,7 +57449,7 @@ def is_sign_signature_request_sent(self): :rtype: bool """ - return self._tag == "sign_signature_request_sent" + return self._tag == 'sign_signature_request_sent' def is_sign_template_created(self): """ @@ -58494,7 +57457,7 @@ def is_sign_template_created(self): :rtype: bool """ - return self._tag == "sign_template_created" + return self._tag == 'sign_template_created' def is_sign_template_shared(self): """ @@ -58502,7 +57465,7 @@ def is_sign_template_shared(self): :rtype: bool """ - return self._tag == "sign_template_shared" + return self._tag == 'sign_template_shared' def is_risc_security_event(self): """ @@ -58510,7 +57473,7 @@ def is_risc_security_event(self): :rtype: bool """ - return self._tag == "risc_security_event" + return self._tag == 'risc_security_event' def is_sso_add_cert(self): """ @@ -58518,7 +57481,7 @@ def is_sso_add_cert(self): :rtype: bool """ - return self._tag == "sso_add_cert" + return self._tag == 'sso_add_cert' def is_sso_add_login_url(self): """ @@ -58526,7 +57489,7 @@ def is_sso_add_login_url(self): :rtype: bool """ - return self._tag == "sso_add_login_url" + return self._tag == 'sso_add_login_url' def is_sso_add_logout_url(self): """ @@ -58534,7 +57497,7 @@ def is_sso_add_logout_url(self): :rtype: bool """ - return self._tag == "sso_add_logout_url" + return self._tag == 'sso_add_logout_url' def is_sso_change_cert(self): """ @@ -58542,7 +57505,7 @@ def is_sso_change_cert(self): :rtype: bool """ - return self._tag == "sso_change_cert" + return self._tag == 'sso_change_cert' def is_sso_change_login_url(self): """ @@ -58550,7 +57513,7 @@ def is_sso_change_login_url(self): :rtype: bool """ - return self._tag == "sso_change_login_url" + return self._tag == 'sso_change_login_url' def is_sso_change_logout_url(self): """ @@ -58558,7 +57521,7 @@ def is_sso_change_logout_url(self): :rtype: bool """ - return self._tag == "sso_change_logout_url" + return self._tag == 'sso_change_logout_url' def is_sso_change_saml_identity_mode(self): """ @@ -58566,7 +57529,7 @@ def is_sso_change_saml_identity_mode(self): :rtype: bool """ - return self._tag == "sso_change_saml_identity_mode" + return self._tag == 'sso_change_saml_identity_mode' def is_sso_remove_cert(self): """ @@ -58574,7 +57537,7 @@ def is_sso_remove_cert(self): :rtype: bool """ - return self._tag == "sso_remove_cert" + return self._tag == 'sso_remove_cert' def is_sso_remove_login_url(self): """ @@ -58582,7 +57545,7 @@ def is_sso_remove_login_url(self): :rtype: bool """ - return self._tag == "sso_remove_login_url" + return self._tag == 'sso_remove_login_url' def is_sso_remove_logout_url(self): """ @@ -58590,7 +57553,7 @@ def is_sso_remove_logout_url(self): :rtype: bool """ - return self._tag == "sso_remove_logout_url" + return self._tag == 'sso_remove_logout_url' def is_team_folder_change_status(self): """ @@ -58598,7 +57561,7 @@ def is_team_folder_change_status(self): :rtype: bool """ - return self._tag == "team_folder_change_status" + return self._tag == 'team_folder_change_status' def is_team_folder_create(self): """ @@ -58606,7 +57569,7 @@ def is_team_folder_create(self): :rtype: bool """ - return self._tag == "team_folder_create" + return self._tag == 'team_folder_create' def is_team_folder_downgrade(self): """ @@ -58614,7 +57577,7 @@ def is_team_folder_downgrade(self): :rtype: bool """ - return self._tag == "team_folder_downgrade" + return self._tag == 'team_folder_downgrade' def is_team_folder_permanently_delete(self): """ @@ -58622,7 +57585,7 @@ def is_team_folder_permanently_delete(self): :rtype: bool """ - return self._tag == "team_folder_permanently_delete" + return self._tag == 'team_folder_permanently_delete' def is_team_folder_rename(self): """ @@ -58630,7 +57593,7 @@ def is_team_folder_rename(self): :rtype: bool """ - return self._tag == "team_folder_rename" + return self._tag == 'team_folder_rename' def is_team_folder_space_limits_change_caps_type(self): """ @@ -58638,7 +57601,7 @@ def is_team_folder_space_limits_change_caps_type(self): :rtype: bool """ - return self._tag == "team_folder_space_limits_change_caps_type" + return self._tag == 'team_folder_space_limits_change_caps_type' def is_team_folder_space_limits_change_limit(self): """ @@ -58646,7 +57609,7 @@ def is_team_folder_space_limits_change_limit(self): :rtype: bool """ - return self._tag == "team_folder_space_limits_change_limit" + return self._tag == 'team_folder_space_limits_change_limit' def is_team_folder_space_limits_change_notification_target(self): """ @@ -58654,7 +57617,7 @@ def is_team_folder_space_limits_change_notification_target(self): :rtype: bool """ - return self._tag == "team_folder_space_limits_change_notification_target" + return self._tag == 'team_folder_space_limits_change_notification_target' def is_team_selective_sync_settings_changed(self): """ @@ -58662,7 +57625,7 @@ def is_team_selective_sync_settings_changed(self): :rtype: bool """ - return self._tag == "team_selective_sync_settings_changed" + return self._tag == 'team_selective_sync_settings_changed' def is_account_capture_change_policy(self): """ @@ -58670,7 +57633,7 @@ def is_account_capture_change_policy(self): :rtype: bool """ - return self._tag == "account_capture_change_policy" + return self._tag == 'account_capture_change_policy' def is_admin_email_reminders_changed(self): """ @@ -58678,7 +57641,7 @@ def is_admin_email_reminders_changed(self): :rtype: bool """ - return self._tag == "admin_email_reminders_changed" + return self._tag == 'admin_email_reminders_changed' def is_ai_third_party_sharing_dropbox_base_policy_changed(self): """ @@ -58686,7 +57649,7 @@ def is_ai_third_party_sharing_dropbox_base_policy_changed(self): :rtype: bool """ - return self._tag == "ai_third_party_sharing_dropbox_base_policy_changed" + return self._tag == 'ai_third_party_sharing_dropbox_base_policy_changed' def is_allow_download_disabled(self): """ @@ -58694,7 +57657,7 @@ def is_allow_download_disabled(self): :rtype: bool """ - return self._tag == "allow_download_disabled" + return self._tag == 'allow_download_disabled' def is_allow_download_enabled(self): """ @@ -58702,7 +57665,7 @@ def is_allow_download_enabled(self): :rtype: bool """ - return self._tag == "allow_download_enabled" + return self._tag == 'allow_download_enabled' def is_apple_login_change_policy(self): """ @@ -58710,7 +57673,7 @@ def is_apple_login_change_policy(self): :rtype: bool """ - return self._tag == "apple_login_change_policy" + return self._tag == 'apple_login_change_policy' def is_app_permissions_changed(self): """ @@ -58718,7 +57681,7 @@ def is_app_permissions_changed(self): :rtype: bool """ - return self._tag == "app_permissions_changed" + return self._tag == 'app_permissions_changed' def is_camera_uploads_policy_changed(self): """ @@ -58726,7 +57689,7 @@ def is_camera_uploads_policy_changed(self): :rtype: bool """ - return self._tag == "camera_uploads_policy_changed" + return self._tag == 'camera_uploads_policy_changed' def is_capture_team_space_policy_changed(self): """ @@ -58734,7 +57697,7 @@ def is_capture_team_space_policy_changed(self): :rtype: bool """ - return self._tag == "capture_team_space_policy_changed" + return self._tag == 'capture_team_space_policy_changed' def is_capture_transcript_policy_changed(self): """ @@ -58742,7 +57705,7 @@ def is_capture_transcript_policy_changed(self): :rtype: bool """ - return self._tag == "capture_transcript_policy_changed" + return self._tag == 'capture_transcript_policy_changed' def is_classification_change_policy(self): """ @@ -58750,7 +57713,7 @@ def is_classification_change_policy(self): :rtype: bool """ - return self._tag == "classification_change_policy" + return self._tag == 'classification_change_policy' def is_computer_backup_policy_changed(self): """ @@ -58758,7 +57721,7 @@ def is_computer_backup_policy_changed(self): :rtype: bool """ - return self._tag == "computer_backup_policy_changed" + return self._tag == 'computer_backup_policy_changed' def is_content_administration_policy_changed(self): """ @@ -58766,7 +57729,7 @@ def is_content_administration_policy_changed(self): :rtype: bool """ - return self._tag == "content_administration_policy_changed" + return self._tag == 'content_administration_policy_changed' def is_content_deletion_protection_change_policy(self): """ @@ -58774,7 +57737,7 @@ def is_content_deletion_protection_change_policy(self): :rtype: bool """ - return self._tag == "content_deletion_protection_change_policy" + return self._tag == 'content_deletion_protection_change_policy' def is_dash_external_sharing_policy_changed(self): """ @@ -58782,7 +57745,7 @@ def is_dash_external_sharing_policy_changed(self): :rtype: bool """ - return self._tag == "dash_external_sharing_policy_changed" + return self._tag == 'dash_external_sharing_policy_changed' def is_data_placement_restriction_change_policy(self): """ @@ -58790,7 +57753,7 @@ def is_data_placement_restriction_change_policy(self): :rtype: bool """ - return self._tag == "data_placement_restriction_change_policy" + return self._tag == 'data_placement_restriction_change_policy' def is_data_placement_restriction_satisfy_policy(self): """ @@ -58798,7 +57761,7 @@ def is_data_placement_restriction_satisfy_policy(self): :rtype: bool """ - return self._tag == "data_placement_restriction_satisfy_policy" + return self._tag == 'data_placement_restriction_satisfy_policy' def is_device_approvals_add_exception(self): """ @@ -58806,7 +57769,7 @@ def is_device_approvals_add_exception(self): :rtype: bool """ - return self._tag == "device_approvals_add_exception" + return self._tag == 'device_approvals_add_exception' def is_device_approvals_change_desktop_policy(self): """ @@ -58814,7 +57777,7 @@ def is_device_approvals_change_desktop_policy(self): :rtype: bool """ - return self._tag == "device_approvals_change_desktop_policy" + return self._tag == 'device_approvals_change_desktop_policy' def is_device_approvals_change_mobile_policy(self): """ @@ -58822,7 +57785,7 @@ def is_device_approvals_change_mobile_policy(self): :rtype: bool """ - return self._tag == "device_approvals_change_mobile_policy" + return self._tag == 'device_approvals_change_mobile_policy' def is_device_approvals_change_overage_action(self): """ @@ -58830,7 +57793,7 @@ def is_device_approvals_change_overage_action(self): :rtype: bool """ - return self._tag == "device_approvals_change_overage_action" + return self._tag == 'device_approvals_change_overage_action' def is_device_approvals_change_unlink_action(self): """ @@ -58838,7 +57801,7 @@ def is_device_approvals_change_unlink_action(self): :rtype: bool """ - return self._tag == "device_approvals_change_unlink_action" + return self._tag == 'device_approvals_change_unlink_action' def is_device_approvals_remove_exception(self): """ @@ -58846,7 +57809,7 @@ def is_device_approvals_remove_exception(self): :rtype: bool """ - return self._tag == "device_approvals_remove_exception" + return self._tag == 'device_approvals_remove_exception' def is_directory_restrictions_add_members(self): """ @@ -58854,7 +57817,7 @@ def is_directory_restrictions_add_members(self): :rtype: bool """ - return self._tag == "directory_restrictions_add_members" + return self._tag == 'directory_restrictions_add_members' def is_directory_restrictions_remove_members(self): """ @@ -58862,7 +57825,7 @@ def is_directory_restrictions_remove_members(self): :rtype: bool """ - return self._tag == "directory_restrictions_remove_members" + return self._tag == 'directory_restrictions_remove_members' def is_dropbox_passwords_policy_changed(self): """ @@ -58870,7 +57833,7 @@ def is_dropbox_passwords_policy_changed(self): :rtype: bool """ - return self._tag == "dropbox_passwords_policy_changed" + return self._tag == 'dropbox_passwords_policy_changed' def is_email_ingest_policy_changed(self): """ @@ -58878,7 +57841,7 @@ def is_email_ingest_policy_changed(self): :rtype: bool """ - return self._tag == "email_ingest_policy_changed" + return self._tag == 'email_ingest_policy_changed' def is_emm_add_exception(self): """ @@ -58886,7 +57849,7 @@ def is_emm_add_exception(self): :rtype: bool """ - return self._tag == "emm_add_exception" + return self._tag == 'emm_add_exception' def is_emm_change_policy(self): """ @@ -58894,7 +57857,7 @@ def is_emm_change_policy(self): :rtype: bool """ - return self._tag == "emm_change_policy" + return self._tag == 'emm_change_policy' def is_emm_remove_exception(self): """ @@ -58902,7 +57865,7 @@ def is_emm_remove_exception(self): :rtype: bool """ - return self._tag == "emm_remove_exception" + return self._tag == 'emm_remove_exception' def is_extended_version_history_change_policy(self): """ @@ -58910,7 +57873,7 @@ def is_extended_version_history_change_policy(self): :rtype: bool """ - return self._tag == "extended_version_history_change_policy" + return self._tag == 'extended_version_history_change_policy' def is_external_drive_backup_policy_changed(self): """ @@ -58918,7 +57881,7 @@ def is_external_drive_backup_policy_changed(self): :rtype: bool """ - return self._tag == "external_drive_backup_policy_changed" + return self._tag == 'external_drive_backup_policy_changed' def is_file_comments_change_policy(self): """ @@ -58926,7 +57889,7 @@ def is_file_comments_change_policy(self): :rtype: bool """ - return self._tag == "file_comments_change_policy" + return self._tag == 'file_comments_change_policy' def is_file_locking_policy_changed(self): """ @@ -58934,7 +57897,7 @@ def is_file_locking_policy_changed(self): :rtype: bool """ - return self._tag == "file_locking_policy_changed" + return self._tag == 'file_locking_policy_changed' def is_file_provider_migration_policy_changed(self): """ @@ -58942,7 +57905,7 @@ def is_file_provider_migration_policy_changed(self): :rtype: bool """ - return self._tag == "file_provider_migration_policy_changed" + return self._tag == 'file_provider_migration_policy_changed' def is_file_requests_change_policy(self): """ @@ -58950,7 +57913,7 @@ def is_file_requests_change_policy(self): :rtype: bool """ - return self._tag == "file_requests_change_policy" + return self._tag == 'file_requests_change_policy' def is_file_requests_emails_enabled(self): """ @@ -58958,7 +57921,7 @@ def is_file_requests_emails_enabled(self): :rtype: bool """ - return self._tag == "file_requests_emails_enabled" + return self._tag == 'file_requests_emails_enabled' def is_file_requests_emails_restricted_to_team_only(self): """ @@ -58966,7 +57929,7 @@ def is_file_requests_emails_restricted_to_team_only(self): :rtype: bool """ - return self._tag == "file_requests_emails_restricted_to_team_only" + return self._tag == 'file_requests_emails_restricted_to_team_only' def is_file_transfers_policy_changed(self): """ @@ -58974,7 +57937,7 @@ def is_file_transfers_policy_changed(self): :rtype: bool """ - return self._tag == "file_transfers_policy_changed" + return self._tag == 'file_transfers_policy_changed' def is_flexible_file_names_policy_changed(self): """ @@ -58982,7 +57945,7 @@ def is_flexible_file_names_policy_changed(self): :rtype: bool """ - return self._tag == "flexible_file_names_policy_changed" + return self._tag == 'flexible_file_names_policy_changed' def is_folder_link_restriction_policy_changed(self): """ @@ -58990,7 +57953,7 @@ def is_folder_link_restriction_policy_changed(self): :rtype: bool """ - return self._tag == "folder_link_restriction_policy_changed" + return self._tag == 'folder_link_restriction_policy_changed' def is_google_sso_change_policy(self): """ @@ -58998,7 +57961,7 @@ def is_google_sso_change_policy(self): :rtype: bool """ - return self._tag == "google_sso_change_policy" + return self._tag == 'google_sso_change_policy' def is_group_user_management_change_policy(self): """ @@ -59006,7 +57969,7 @@ def is_group_user_management_change_policy(self): :rtype: bool """ - return self._tag == "group_user_management_change_policy" + return self._tag == 'group_user_management_change_policy' def is_integration_policy_changed(self): """ @@ -59014,7 +57977,7 @@ def is_integration_policy_changed(self): :rtype: bool """ - return self._tag == "integration_policy_changed" + return self._tag == 'integration_policy_changed' def is_invite_acceptance_email_policy_changed(self): """ @@ -59022,7 +57985,7 @@ def is_invite_acceptance_email_policy_changed(self): :rtype: bool """ - return self._tag == "invite_acceptance_email_policy_changed" + return self._tag == 'invite_acceptance_email_policy_changed' def is_media_hub_adding_people_policy_changed(self): """ @@ -59030,7 +57993,7 @@ def is_media_hub_adding_people_policy_changed(self): :rtype: bool """ - return self._tag == "media_hub_adding_people_policy_changed" + return self._tag == 'media_hub_adding_people_policy_changed' def is_media_hub_download_policy_changed(self): """ @@ -59038,7 +58001,7 @@ def is_media_hub_download_policy_changed(self): :rtype: bool """ - return self._tag == "media_hub_download_policy_changed" + return self._tag == 'media_hub_download_policy_changed' def is_media_hub_link_sharing_policy_changed(self): """ @@ -59046,7 +58009,7 @@ def is_media_hub_link_sharing_policy_changed(self): :rtype: bool """ - return self._tag == "media_hub_link_sharing_policy_changed" + return self._tag == 'media_hub_link_sharing_policy_changed' def is_member_requests_change_policy(self): """ @@ -59054,7 +58017,7 @@ def is_member_requests_change_policy(self): :rtype: bool """ - return self._tag == "member_requests_change_policy" + return self._tag == 'member_requests_change_policy' def is_member_send_invite_policy_changed(self): """ @@ -59062,7 +58025,7 @@ def is_member_send_invite_policy_changed(self): :rtype: bool """ - return self._tag == "member_send_invite_policy_changed" + return self._tag == 'member_send_invite_policy_changed' def is_member_space_limits_add_exception(self): """ @@ -59070,7 +58033,7 @@ def is_member_space_limits_add_exception(self): :rtype: bool """ - return self._tag == "member_space_limits_add_exception" + return self._tag == 'member_space_limits_add_exception' def is_member_space_limits_change_caps_type_policy(self): """ @@ -59078,7 +58041,7 @@ def is_member_space_limits_change_caps_type_policy(self): :rtype: bool """ - return self._tag == "member_space_limits_change_caps_type_policy" + return self._tag == 'member_space_limits_change_caps_type_policy' def is_member_space_limits_change_policy(self): """ @@ -59086,7 +58049,7 @@ def is_member_space_limits_change_policy(self): :rtype: bool """ - return self._tag == "member_space_limits_change_policy" + return self._tag == 'member_space_limits_change_policy' def is_member_space_limits_remove_exception(self): """ @@ -59094,7 +58057,7 @@ def is_member_space_limits_remove_exception(self): :rtype: bool """ - return self._tag == "member_space_limits_remove_exception" + return self._tag == 'member_space_limits_remove_exception' def is_member_suggestions_change_policy(self): """ @@ -59102,7 +58065,7 @@ def is_member_suggestions_change_policy(self): :rtype: bool """ - return self._tag == "member_suggestions_change_policy" + return self._tag == 'member_suggestions_change_policy' def is_microsoft_login_change_policy(self): """ @@ -59110,7 +58073,7 @@ def is_microsoft_login_change_policy(self): :rtype: bool """ - return self._tag == "microsoft_login_change_policy" + return self._tag == 'microsoft_login_change_policy' def is_microsoft_office_addin_change_policy(self): """ @@ -59118,7 +58081,7 @@ def is_microsoft_office_addin_change_policy(self): :rtype: bool """ - return self._tag == "microsoft_office_addin_change_policy" + return self._tag == 'microsoft_office_addin_change_policy' def is_multi_team_identity_policy_changed(self): """ @@ -59126,7 +58089,7 @@ def is_multi_team_identity_policy_changed(self): :rtype: bool """ - return self._tag == "multi_team_identity_policy_changed" + return self._tag == 'multi_team_identity_policy_changed' def is_network_control_change_policy(self): """ @@ -59134,7 +58097,7 @@ def is_network_control_change_policy(self): :rtype: bool """ - return self._tag == "network_control_change_policy" + return self._tag == 'network_control_change_policy' def is_paper_change_deployment_policy(self): """ @@ -59142,7 +58105,7 @@ def is_paper_change_deployment_policy(self): :rtype: bool """ - return self._tag == "paper_change_deployment_policy" + return self._tag == 'paper_change_deployment_policy' def is_paper_change_member_link_policy(self): """ @@ -59150,7 +58113,7 @@ def is_paper_change_member_link_policy(self): :rtype: bool """ - return self._tag == "paper_change_member_link_policy" + return self._tag == 'paper_change_member_link_policy' def is_paper_change_member_policy(self): """ @@ -59158,7 +58121,7 @@ def is_paper_change_member_policy(self): :rtype: bool """ - return self._tag == "paper_change_member_policy" + return self._tag == 'paper_change_member_policy' def is_paper_change_policy(self): """ @@ -59166,7 +58129,7 @@ def is_paper_change_policy(self): :rtype: bool """ - return self._tag == "paper_change_policy" + return self._tag == 'paper_change_policy' def is_paper_default_folder_policy_changed(self): """ @@ -59174,7 +58137,7 @@ def is_paper_default_folder_policy_changed(self): :rtype: bool """ - return self._tag == "paper_default_folder_policy_changed" + return self._tag == 'paper_default_folder_policy_changed' def is_paper_desktop_policy_changed(self): """ @@ -59182,7 +58145,7 @@ def is_paper_desktop_policy_changed(self): :rtype: bool """ - return self._tag == "paper_desktop_policy_changed" + return self._tag == 'paper_desktop_policy_changed' def is_paper_enabled_users_group_addition(self): """ @@ -59190,7 +58153,7 @@ def is_paper_enabled_users_group_addition(self): :rtype: bool """ - return self._tag == "paper_enabled_users_group_addition" + return self._tag == 'paper_enabled_users_group_addition' def is_paper_enabled_users_group_removal(self): """ @@ -59198,7 +58161,7 @@ def is_paper_enabled_users_group_removal(self): :rtype: bool """ - return self._tag == "paper_enabled_users_group_removal" + return self._tag == 'paper_enabled_users_group_removal' def is_passkey_login_policy_changed(self): """ @@ -59206,7 +58169,7 @@ def is_passkey_login_policy_changed(self): :rtype: bool """ - return self._tag == "passkey_login_policy_changed" + return self._tag == 'passkey_login_policy_changed' def is_password_strength_requirements_change_policy(self): """ @@ -59214,7 +58177,7 @@ def is_password_strength_requirements_change_policy(self): :rtype: bool """ - return self._tag == "password_strength_requirements_change_policy" + return self._tag == 'password_strength_requirements_change_policy' def is_permanent_delete_change_policy(self): """ @@ -59222,7 +58185,7 @@ def is_permanent_delete_change_policy(self): :rtype: bool """ - return self._tag == "permanent_delete_change_policy" + return self._tag == 'permanent_delete_change_policy' def is_previews_ai_policy_changed(self): """ @@ -59230,7 +58193,7 @@ def is_previews_ai_policy_changed(self): :rtype: bool """ - return self._tag == "previews_ai_policy_changed" + return self._tag == 'previews_ai_policy_changed' def is_replay_adding_people_policy_changed(self): """ @@ -59238,7 +58201,7 @@ def is_replay_adding_people_policy_changed(self): :rtype: bool """ - return self._tag == "replay_adding_people_policy_changed" + return self._tag == 'replay_adding_people_policy_changed' def is_replay_sharing_policy_changed(self): """ @@ -59246,7 +58209,7 @@ def is_replay_sharing_policy_changed(self): :rtype: bool """ - return self._tag == "replay_sharing_policy_changed" + return self._tag == 'replay_sharing_policy_changed' def is_reseller_support_change_policy(self): """ @@ -59254,7 +58217,7 @@ def is_reseller_support_change_policy(self): :rtype: bool """ - return self._tag == "reseller_support_change_policy" + return self._tag == 'reseller_support_change_policy' def is_rewind_policy_changed(self): """ @@ -59262,7 +58225,7 @@ def is_rewind_policy_changed(self): :rtype: bool """ - return self._tag == "rewind_policy_changed" + return self._tag == 'rewind_policy_changed' def is_send_and_track_policy_changed(self): """ @@ -59270,7 +58233,7 @@ def is_send_and_track_policy_changed(self): :rtype: bool """ - return self._tag == "send_and_track_policy_changed" + return self._tag == 'send_and_track_policy_changed' def is_send_external_sharing_policy_changed(self): """ @@ -59278,7 +58241,7 @@ def is_send_external_sharing_policy_changed(self): :rtype: bool """ - return self._tag == "send_external_sharing_policy_changed" + return self._tag == 'send_external_sharing_policy_changed' def is_send_for_signature_policy_changed(self): """ @@ -59286,7 +58249,7 @@ def is_send_for_signature_policy_changed(self): :rtype: bool """ - return self._tag == "send_for_signature_policy_changed" + return self._tag == 'send_for_signature_policy_changed' def is_shared_link_default_permissions_policy_changed(self): """ @@ -59294,7 +58257,7 @@ def is_shared_link_default_permissions_policy_changed(self): :rtype: bool """ - return self._tag == "shared_link_default_permissions_policy_changed" + return self._tag == 'shared_link_default_permissions_policy_changed' def is_sharing_change_folder_join_policy(self): """ @@ -59302,7 +58265,7 @@ def is_sharing_change_folder_join_policy(self): :rtype: bool """ - return self._tag == "sharing_change_folder_join_policy" + return self._tag == 'sharing_change_folder_join_policy' def is_sharing_change_link_allow_change_expiration_policy(self): """ @@ -59310,7 +58273,7 @@ def is_sharing_change_link_allow_change_expiration_policy(self): :rtype: bool """ - return self._tag == "sharing_change_link_allow_change_expiration_policy" + return self._tag == 'sharing_change_link_allow_change_expiration_policy' def is_sharing_change_link_default_expiration_policy(self): """ @@ -59318,7 +58281,7 @@ def is_sharing_change_link_default_expiration_policy(self): :rtype: bool """ - return self._tag == "sharing_change_link_default_expiration_policy" + return self._tag == 'sharing_change_link_default_expiration_policy' def is_sharing_change_link_enforce_password_policy(self): """ @@ -59326,7 +58289,7 @@ def is_sharing_change_link_enforce_password_policy(self): :rtype: bool """ - return self._tag == "sharing_change_link_enforce_password_policy" + return self._tag == 'sharing_change_link_enforce_password_policy' def is_sharing_change_link_policy(self): """ @@ -59334,7 +58297,7 @@ def is_sharing_change_link_policy(self): :rtype: bool """ - return self._tag == "sharing_change_link_policy" + return self._tag == 'sharing_change_link_policy' def is_sharing_change_member_policy(self): """ @@ -59342,7 +58305,7 @@ def is_sharing_change_member_policy(self): :rtype: bool """ - return self._tag == "sharing_change_member_policy" + return self._tag == 'sharing_change_member_policy' def is_showcase_change_download_policy(self): """ @@ -59350,7 +58313,7 @@ def is_showcase_change_download_policy(self): :rtype: bool """ - return self._tag == "showcase_change_download_policy" + return self._tag == 'showcase_change_download_policy' def is_showcase_change_enabled_policy(self): """ @@ -59358,7 +58321,7 @@ def is_showcase_change_enabled_policy(self): :rtype: bool """ - return self._tag == "showcase_change_enabled_policy" + return self._tag == 'showcase_change_enabled_policy' def is_showcase_change_external_sharing_policy(self): """ @@ -59366,7 +58329,7 @@ def is_showcase_change_external_sharing_policy(self): :rtype: bool """ - return self._tag == "showcase_change_external_sharing_policy" + return self._tag == 'showcase_change_external_sharing_policy' def is_sign_external_sharing_policy_changed(self): """ @@ -59374,7 +58337,7 @@ def is_sign_external_sharing_policy_changed(self): :rtype: bool """ - return self._tag == "sign_external_sharing_policy_changed" + return self._tag == 'sign_external_sharing_policy_changed' def is_sign_template_creation_permission_changed(self): """ @@ -59382,7 +58345,7 @@ def is_sign_template_creation_permission_changed(self): :rtype: bool """ - return self._tag == "sign_template_creation_permission_changed" + return self._tag == 'sign_template_creation_permission_changed' def is_smarter_smart_sync_policy_changed(self): """ @@ -59390,7 +58353,7 @@ def is_smarter_smart_sync_policy_changed(self): :rtype: bool """ - return self._tag == "smarter_smart_sync_policy_changed" + return self._tag == 'smarter_smart_sync_policy_changed' def is_smart_sync_change_policy(self): """ @@ -59398,7 +58361,7 @@ def is_smart_sync_change_policy(self): :rtype: bool """ - return self._tag == "smart_sync_change_policy" + return self._tag == 'smart_sync_change_policy' def is_smart_sync_not_opt_out(self): """ @@ -59406,7 +58369,7 @@ def is_smart_sync_not_opt_out(self): :rtype: bool """ - return self._tag == "smart_sync_not_opt_out" + return self._tag == 'smart_sync_not_opt_out' def is_smart_sync_opt_out(self): """ @@ -59414,7 +58377,7 @@ def is_smart_sync_opt_out(self): :rtype: bool """ - return self._tag == "smart_sync_opt_out" + return self._tag == 'smart_sync_opt_out' def is_sso_change_policy(self): """ @@ -59422,7 +58385,7 @@ def is_sso_change_policy(self): :rtype: bool """ - return self._tag == "sso_change_policy" + return self._tag == 'sso_change_policy' def is_stack_cross_team_access_policy_changed(self): """ @@ -59430,7 +58393,7 @@ def is_stack_cross_team_access_policy_changed(self): :rtype: bool """ - return self._tag == "stack_cross_team_access_policy_changed" + return self._tag == 'stack_cross_team_access_policy_changed' def is_team_branding_policy_changed(self): """ @@ -59438,7 +58401,7 @@ def is_team_branding_policy_changed(self): :rtype: bool """ - return self._tag == "team_branding_policy_changed" + return self._tag == 'team_branding_policy_changed' def is_team_extensions_policy_changed(self): """ @@ -59446,7 +58409,7 @@ def is_team_extensions_policy_changed(self): :rtype: bool """ - return self._tag == "team_extensions_policy_changed" + return self._tag == 'team_extensions_policy_changed' def is_team_member_storage_request_policy_changed(self): """ @@ -59454,7 +58417,7 @@ def is_team_member_storage_request_policy_changed(self): :rtype: bool """ - return self._tag == "team_member_storage_request_policy_changed" + return self._tag == 'team_member_storage_request_policy_changed' def is_team_selective_sync_policy_changed(self): """ @@ -59462,7 +58425,7 @@ def is_team_selective_sync_policy_changed(self): :rtype: bool """ - return self._tag == "team_selective_sync_policy_changed" + return self._tag == 'team_selective_sync_policy_changed' def is_team_sharing_whitelist_subjects_changed(self): """ @@ -59470,7 +58433,7 @@ def is_team_sharing_whitelist_subjects_changed(self): :rtype: bool """ - return self._tag == "team_sharing_whitelist_subjects_changed" + return self._tag == 'team_sharing_whitelist_subjects_changed' def is_tfa_add_exception(self): """ @@ -59478,7 +58441,7 @@ def is_tfa_add_exception(self): :rtype: bool """ - return self._tag == "tfa_add_exception" + return self._tag == 'tfa_add_exception' def is_tfa_change_policy(self): """ @@ -59486,7 +58449,7 @@ def is_tfa_change_policy(self): :rtype: bool """ - return self._tag == "tfa_change_policy" + return self._tag == 'tfa_change_policy' def is_tfa_remove_exception(self): """ @@ -59494,7 +58457,7 @@ def is_tfa_remove_exception(self): :rtype: bool """ - return self._tag == "tfa_remove_exception" + return self._tag == 'tfa_remove_exception' def is_top_level_content_policy_changed(self): """ @@ -59502,7 +58465,7 @@ def is_top_level_content_policy_changed(self): :rtype: bool """ - return self._tag == "top_level_content_policy_changed" + return self._tag == 'top_level_content_policy_changed' def is_two_account_change_policy(self): """ @@ -59510,7 +58473,7 @@ def is_two_account_change_policy(self): :rtype: bool """ - return self._tag == "two_account_change_policy" + return self._tag == 'two_account_change_policy' def is_viewer_info_policy_changed(self): """ @@ -59518,7 +58481,7 @@ def is_viewer_info_policy_changed(self): :rtype: bool """ - return self._tag == "viewer_info_policy_changed" + return self._tag == 'viewer_info_policy_changed' def is_watermarking_policy_changed(self): """ @@ -59526,7 +58489,7 @@ def is_watermarking_policy_changed(self): :rtype: bool """ - return self._tag == "watermarking_policy_changed" + return self._tag == 'watermarking_policy_changed' def is_web_sessions_change_active_session_limit(self): """ @@ -59534,7 +58497,7 @@ def is_web_sessions_change_active_session_limit(self): :rtype: bool """ - return self._tag == "web_sessions_change_active_session_limit" + return self._tag == 'web_sessions_change_active_session_limit' def is_web_sessions_change_fixed_length_policy(self): """ @@ -59542,7 +58505,7 @@ def is_web_sessions_change_fixed_length_policy(self): :rtype: bool """ - return self._tag == "web_sessions_change_fixed_length_policy" + return self._tag == 'web_sessions_change_fixed_length_policy' def is_web_sessions_change_idle_length_policy(self): """ @@ -59550,7 +58513,7 @@ def is_web_sessions_change_idle_length_policy(self): :rtype: bool """ - return self._tag == "web_sessions_change_idle_length_policy" + return self._tag == 'web_sessions_change_idle_length_policy' def is_data_residency_migration_request_successful(self): """ @@ -59558,7 +58521,7 @@ def is_data_residency_migration_request_successful(self): :rtype: bool """ - return self._tag == "data_residency_migration_request_successful" + return self._tag == 'data_residency_migration_request_successful' def is_data_residency_migration_request_unsuccessful(self): """ @@ -59566,7 +58529,7 @@ def is_data_residency_migration_request_unsuccessful(self): :rtype: bool """ - return self._tag == "data_residency_migration_request_unsuccessful" + return self._tag == 'data_residency_migration_request_unsuccessful' def is_team_merge_from(self): """ @@ -59574,7 +58537,7 @@ def is_team_merge_from(self): :rtype: bool """ - return self._tag == "team_merge_from" + return self._tag == 'team_merge_from' def is_team_merge_to(self): """ @@ -59582,7 +58545,7 @@ def is_team_merge_to(self): :rtype: bool """ - return self._tag == "team_merge_to" + return self._tag == 'team_merge_to' def is_team_profile_add_background(self): """ @@ -59590,7 +58553,7 @@ def is_team_profile_add_background(self): :rtype: bool """ - return self._tag == "team_profile_add_background" + return self._tag == 'team_profile_add_background' def is_team_profile_add_logo(self): """ @@ -59598,7 +58561,7 @@ def is_team_profile_add_logo(self): :rtype: bool """ - return self._tag == "team_profile_add_logo" + return self._tag == 'team_profile_add_logo' def is_team_profile_change_background(self): """ @@ -59606,7 +58569,7 @@ def is_team_profile_change_background(self): :rtype: bool """ - return self._tag == "team_profile_change_background" + return self._tag == 'team_profile_change_background' def is_team_profile_change_default_language(self): """ @@ -59614,7 +58577,7 @@ def is_team_profile_change_default_language(self): :rtype: bool """ - return self._tag == "team_profile_change_default_language" + return self._tag == 'team_profile_change_default_language' def is_team_profile_change_logo(self): """ @@ -59622,7 +58585,7 @@ def is_team_profile_change_logo(self): :rtype: bool """ - return self._tag == "team_profile_change_logo" + return self._tag == 'team_profile_change_logo' def is_team_profile_change_name(self): """ @@ -59630,7 +58593,7 @@ def is_team_profile_change_name(self): :rtype: bool """ - return self._tag == "team_profile_change_name" + return self._tag == 'team_profile_change_name' def is_team_profile_remove_background(self): """ @@ -59638,7 +58601,7 @@ def is_team_profile_remove_background(self): :rtype: bool """ - return self._tag == "team_profile_remove_background" + return self._tag == 'team_profile_remove_background' def is_team_profile_remove_logo(self): """ @@ -59646,7 +58609,7 @@ def is_team_profile_remove_logo(self): :rtype: bool """ - return self._tag == "team_profile_remove_logo" + return self._tag == 'team_profile_remove_logo' def is_passkey_add(self): """ @@ -59654,7 +58617,7 @@ def is_passkey_add(self): :rtype: bool """ - return self._tag == "passkey_add" + return self._tag == 'passkey_add' def is_passkey_remove(self): """ @@ -59662,7 +58625,7 @@ def is_passkey_remove(self): :rtype: bool """ - return self._tag == "passkey_remove" + return self._tag == 'passkey_remove' def is_tfa_add_backup_phone(self): """ @@ -59670,7 +58633,7 @@ def is_tfa_add_backup_phone(self): :rtype: bool """ - return self._tag == "tfa_add_backup_phone" + return self._tag == 'tfa_add_backup_phone' def is_tfa_add_security_key(self): """ @@ -59678,7 +58641,7 @@ def is_tfa_add_security_key(self): :rtype: bool """ - return self._tag == "tfa_add_security_key" + return self._tag == 'tfa_add_security_key' def is_tfa_change_backup_phone(self): """ @@ -59686,7 +58649,7 @@ def is_tfa_change_backup_phone(self): :rtype: bool """ - return self._tag == "tfa_change_backup_phone" + return self._tag == 'tfa_change_backup_phone' def is_tfa_change_status(self): """ @@ -59694,7 +58657,7 @@ def is_tfa_change_status(self): :rtype: bool """ - return self._tag == "tfa_change_status" + return self._tag == 'tfa_change_status' def is_tfa_remove_backup_phone(self): """ @@ -59702,7 +58665,7 @@ def is_tfa_remove_backup_phone(self): :rtype: bool """ - return self._tag == "tfa_remove_backup_phone" + return self._tag == 'tfa_remove_backup_phone' def is_tfa_remove_security_key(self): """ @@ -59710,7 +58673,7 @@ def is_tfa_remove_security_key(self): :rtype: bool """ - return self._tag == "tfa_remove_security_key" + return self._tag == 'tfa_remove_security_key' def is_tfa_reset(self): """ @@ -59718,7 +58681,7 @@ def is_tfa_reset(self): :rtype: bool """ - return self._tag == "tfa_reset" + return self._tag == 'tfa_reset' def is_changed_enterprise_admin_role(self): """ @@ -59726,7 +58689,7 @@ def is_changed_enterprise_admin_role(self): :rtype: bool """ - return self._tag == "changed_enterprise_admin_role" + return self._tag == 'changed_enterprise_admin_role' def is_changed_enterprise_connected_team_status(self): """ @@ -59734,7 +58697,7 @@ def is_changed_enterprise_connected_team_status(self): :rtype: bool """ - return self._tag == "changed_enterprise_connected_team_status" + return self._tag == 'changed_enterprise_connected_team_status' def is_ended_enterprise_admin_session(self): """ @@ -59742,7 +58705,7 @@ def is_ended_enterprise_admin_session(self): :rtype: bool """ - return self._tag == "ended_enterprise_admin_session" + return self._tag == 'ended_enterprise_admin_session' def is_ended_enterprise_admin_session_deprecated(self): """ @@ -59750,7 +58713,7 @@ def is_ended_enterprise_admin_session_deprecated(self): :rtype: bool """ - return self._tag == "ended_enterprise_admin_session_deprecated" + return self._tag == 'ended_enterprise_admin_session_deprecated' def is_enterprise_settings_locking(self): """ @@ -59758,7 +58721,7 @@ def is_enterprise_settings_locking(self): :rtype: bool """ - return self._tag == "enterprise_settings_locking" + return self._tag == 'enterprise_settings_locking' def is_guest_admin_change_status(self): """ @@ -59766,7 +58729,7 @@ def is_guest_admin_change_status(self): :rtype: bool """ - return self._tag == "guest_admin_change_status" + return self._tag == 'guest_admin_change_status' def is_started_enterprise_admin_session(self): """ @@ -59774,7 +58737,7 @@ def is_started_enterprise_admin_session(self): :rtype: bool """ - return self._tag == "started_enterprise_admin_session" + return self._tag == 'started_enterprise_admin_session' def is_team_merge_request_accepted(self): """ @@ -59782,7 +58745,7 @@ def is_team_merge_request_accepted(self): :rtype: bool """ - return self._tag == "team_merge_request_accepted" + return self._tag == 'team_merge_request_accepted' def is_team_merge_request_accepted_shown_to_primary_team(self): """ @@ -59790,7 +58753,7 @@ def is_team_merge_request_accepted_shown_to_primary_team(self): :rtype: bool """ - return self._tag == "team_merge_request_accepted_shown_to_primary_team" + return self._tag == 'team_merge_request_accepted_shown_to_primary_team' def is_team_merge_request_accepted_shown_to_secondary_team(self): """ @@ -59798,7 +58761,7 @@ def is_team_merge_request_accepted_shown_to_secondary_team(self): :rtype: bool """ - return self._tag == "team_merge_request_accepted_shown_to_secondary_team" + return self._tag == 'team_merge_request_accepted_shown_to_secondary_team' def is_team_merge_request_auto_canceled(self): """ @@ -59806,7 +58769,7 @@ def is_team_merge_request_auto_canceled(self): :rtype: bool """ - return self._tag == "team_merge_request_auto_canceled" + return self._tag == 'team_merge_request_auto_canceled' def is_team_merge_request_canceled(self): """ @@ -59814,7 +58777,7 @@ def is_team_merge_request_canceled(self): :rtype: bool """ - return self._tag == "team_merge_request_canceled" + return self._tag == 'team_merge_request_canceled' def is_team_merge_request_canceled_shown_to_primary_team(self): """ @@ -59822,7 +58785,7 @@ def is_team_merge_request_canceled_shown_to_primary_team(self): :rtype: bool """ - return self._tag == "team_merge_request_canceled_shown_to_primary_team" + return self._tag == 'team_merge_request_canceled_shown_to_primary_team' def is_team_merge_request_canceled_shown_to_secondary_team(self): """ @@ -59830,7 +58793,7 @@ def is_team_merge_request_canceled_shown_to_secondary_team(self): :rtype: bool """ - return self._tag == "team_merge_request_canceled_shown_to_secondary_team" + return self._tag == 'team_merge_request_canceled_shown_to_secondary_team' def is_team_merge_request_expired(self): """ @@ -59838,7 +58801,7 @@ def is_team_merge_request_expired(self): :rtype: bool """ - return self._tag == "team_merge_request_expired" + return self._tag == 'team_merge_request_expired' def is_team_merge_request_expired_shown_to_primary_team(self): """ @@ -59846,7 +58809,7 @@ def is_team_merge_request_expired_shown_to_primary_team(self): :rtype: bool """ - return self._tag == "team_merge_request_expired_shown_to_primary_team" + return self._tag == 'team_merge_request_expired_shown_to_primary_team' def is_team_merge_request_expired_shown_to_secondary_team(self): """ @@ -59854,7 +58817,7 @@ def is_team_merge_request_expired_shown_to_secondary_team(self): :rtype: bool """ - return self._tag == "team_merge_request_expired_shown_to_secondary_team" + return self._tag == 'team_merge_request_expired_shown_to_secondary_team' def is_team_merge_request_rejected_shown_to_primary_team(self): """ @@ -59862,7 +58825,7 @@ def is_team_merge_request_rejected_shown_to_primary_team(self): :rtype: bool """ - return self._tag == "team_merge_request_rejected_shown_to_primary_team" + return self._tag == 'team_merge_request_rejected_shown_to_primary_team' def is_team_merge_request_rejected_shown_to_secondary_team(self): """ @@ -59870,7 +58833,7 @@ def is_team_merge_request_rejected_shown_to_secondary_team(self): :rtype: bool """ - return self._tag == "team_merge_request_rejected_shown_to_secondary_team" + return self._tag == 'team_merge_request_rejected_shown_to_secondary_team' def is_team_merge_request_reminder(self): """ @@ -59878,7 +58841,7 @@ def is_team_merge_request_reminder(self): :rtype: bool """ - return self._tag == "team_merge_request_reminder" + return self._tag == 'team_merge_request_reminder' def is_team_merge_request_reminder_shown_to_primary_team(self): """ @@ -59886,7 +58849,7 @@ def is_team_merge_request_reminder_shown_to_primary_team(self): :rtype: bool """ - return self._tag == "team_merge_request_reminder_shown_to_primary_team" + return self._tag == 'team_merge_request_reminder_shown_to_primary_team' def is_team_merge_request_reminder_shown_to_secondary_team(self): """ @@ -59894,7 +58857,7 @@ def is_team_merge_request_reminder_shown_to_secondary_team(self): :rtype: bool """ - return self._tag == "team_merge_request_reminder_shown_to_secondary_team" + return self._tag == 'team_merge_request_reminder_shown_to_secondary_team' def is_team_merge_request_revoked(self): """ @@ -59902,7 +58865,7 @@ def is_team_merge_request_revoked(self): :rtype: bool """ - return self._tag == "team_merge_request_revoked" + return self._tag == 'team_merge_request_revoked' def is_team_merge_request_sent_shown_to_primary_team(self): """ @@ -59910,7 +58873,7 @@ def is_team_merge_request_sent_shown_to_primary_team(self): :rtype: bool """ - return self._tag == "team_merge_request_sent_shown_to_primary_team" + return self._tag == 'team_merge_request_sent_shown_to_primary_team' def is_team_merge_request_sent_shown_to_secondary_team(self): """ @@ -59918,7 +58881,7 @@ def is_team_merge_request_sent_shown_to_secondary_team(self): :rtype: bool """ - return self._tag == "team_merge_request_sent_shown_to_secondary_team" + return self._tag == 'team_merge_request_sent_shown_to_secondary_team' def is_other(self): """ @@ -59926,23 +58889,20 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EventTypeArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(EventTypeArg, self)._process_custom_annotations(annotation_type, field_path, processor) EventTypeArg_validator = bv.Union(EventTypeArg) - class ExportMembersReportDetails(bb.Struct): """ Created member data report. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -59950,14 +58910,10 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ExportMembersReportDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ExportMembersReportDetails, self)._process_custom_annotations(annotation_type, field_path, processor) ExportMembersReportDetails_validator = bv.Struct(ExportMembersReportDetails) - class ExportMembersReportFailDetails(bb.Struct): """ Failed to create members data report. @@ -59967,12 +58923,13 @@ class ExportMembersReportFailDetails(bb.Struct): """ __slots__ = [ - "_failure_reason_value", + '_failure_reason_value', ] _has_required_fields = True - def __init__(self, failure_reason=None): + def __init__(self, + failure_reason=None): self._failure_reason_value = bb.NOT_SET if failure_reason is not None: self.failure_reason = failure_reason @@ -59981,22 +58938,20 @@ def __init__(self, failure_reason=None): failure_reason = bb.Attribute("failure_reason", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ExportMembersReportFailDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ExportMembersReportFailDetails, self)._process_custom_annotations(annotation_type, field_path, processor) ExportMembersReportFailDetails_validator = bv.Struct(ExportMembersReportFailDetails) - class ExportMembersReportFailType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -60005,22 +58960,20 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ExportMembersReportFailType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ExportMembersReportFailType, self)._process_custom_annotations(annotation_type, field_path, processor) ExportMembersReportFailType_validator = bv.Struct(ExportMembersReportFailType) - class ExportMembersReportType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -60029,14 +58982,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ExportMembersReportType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ExportMembersReportType, self)._process_custom_annotations(annotation_type, field_path, processor) ExportMembersReportType_validator = bv.Struct(ExportMembersReportType) - class ExtendedVersionHistoryChangePolicyDetails(bb.Struct): """ Accepted/opted out of extended version history. @@ -60049,13 +58998,15 @@ class ExtendedVersionHistoryChangePolicyDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -60070,24 +59021,20 @@ def __init__(self, new_value=None, previous_value=None): 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 - ) - - -ExtendedVersionHistoryChangePolicyDetails_validator = bv.Struct( - ExtendedVersionHistoryChangePolicyDetails -) + super(ExtendedVersionHistoryChangePolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +ExtendedVersionHistoryChangePolicyDetails_validator = bv.Struct(ExtendedVersionHistoryChangePolicyDetails) class ExtendedVersionHistoryChangePolicyType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -60096,14 +59043,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ExtendedVersionHistoryChangePolicyType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ExtendedVersionHistoryChangePolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) ExtendedVersionHistoryChangePolicyType_validator = bv.Struct(ExtendedVersionHistoryChangePolicyType) - class ExtendedVersionHistoryPolicy(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -60111,7 +59054,7 @@ class ExtendedVersionHistoryPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition explicitly_limited = None # Attribute is overwritten below the class definition @@ -60129,7 +59072,7 @@ def is_explicitly_limited(self): :rtype: bool """ - return self._tag == "explicitly_limited" + return self._tag == 'explicitly_limited' def is_explicitly_unlimited(self): """ @@ -60137,7 +59080,7 @@ def is_explicitly_unlimited(self): :rtype: bool """ - return self._tag == "explicitly_unlimited" + return self._tag == 'explicitly_unlimited' def is_implicitly_limited(self): """ @@ -60145,7 +59088,7 @@ def is_implicitly_limited(self): :rtype: bool """ - return self._tag == "implicitly_limited" + return self._tag == 'implicitly_limited' def is_implicitly_unlimited(self): """ @@ -60153,7 +59096,7 @@ def is_implicitly_unlimited(self): :rtype: bool """ - return self._tag == "implicitly_unlimited" + return self._tag == 'implicitly_unlimited' def is_other(self): """ @@ -60161,17 +59104,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ExtendedVersionHistoryPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ExtendedVersionHistoryPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) ExtendedVersionHistoryPolicy_validator = bv.Union(ExtendedVersionHistoryPolicy) - class ExternalDriveBackupEligibilityStatus(bb.Union): """ External Drive Backup eligibility status @@ -60181,7 +59120,7 @@ class ExternalDriveBackupEligibilityStatus(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition exceed_license_cap = None # Attribute is overwritten below the class definition @@ -60197,7 +59136,7 @@ def is_exceed_license_cap(self): :rtype: bool """ - return self._tag == "exceed_license_cap" + return self._tag == 'exceed_license_cap' def is_skip(self): """ @@ -60205,7 +59144,7 @@ def is_skip(self): :rtype: bool """ - return self._tag == "skip" + return self._tag == 'skip' def is_success(self): """ @@ -60213,7 +59152,7 @@ def is_success(self): :rtype: bool """ - return self._tag == "success" + return self._tag == 'success' def is_other(self): """ @@ -60221,17 +59160,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ExternalDriveBackupEligibilityStatus, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ExternalDriveBackupEligibilityStatus, self)._process_custom_annotations(annotation_type, field_path, processor) ExternalDriveBackupEligibilityStatus_validator = bv.Union(ExternalDriveBackupEligibilityStatus) - class ExternalDriveBackupEligibilityStatusCheckedDetails(bb.Struct): """ Checked external drive backup eligibility status. @@ -60245,19 +59180,17 @@ class ExternalDriveBackupEligibilityStatusCheckedDetails(bb.Struct): """ __slots__ = [ - "_desktop_device_session_info_value", - "_status_value", - "_number_of_external_drive_backup_value", + '_desktop_device_session_info_value', + '_status_value', + '_number_of_external_drive_backup_value', ] _has_required_fields = True - def __init__( - self, - desktop_device_session_info=None, - status=None, - number_of_external_drive_backup=None, - ): + def __init__(self, + desktop_device_session_info=None, + status=None, + number_of_external_drive_backup=None): self._desktop_device_session_info_value = bb.NOT_SET self._status_value = bb.NOT_SET self._number_of_external_drive_backup_value = bb.NOT_SET @@ -60278,24 +59211,20 @@ def __init__( 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 - ) - - -ExternalDriveBackupEligibilityStatusCheckedDetails_validator = bv.Struct( - ExternalDriveBackupEligibilityStatusCheckedDetails -) + super(ExternalDriveBackupEligibilityStatusCheckedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +ExternalDriveBackupEligibilityStatusCheckedDetails_validator = bv.Struct(ExternalDriveBackupEligibilityStatusCheckedDetails) class ExternalDriveBackupEligibilityStatusCheckedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -60304,15 +59233,9 @@ def __init__(self, description=None): 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 - ) - - -ExternalDriveBackupEligibilityStatusCheckedType_validator = bv.Struct( - ExternalDriveBackupEligibilityStatusCheckedType -) + super(ExternalDriveBackupEligibilityStatusCheckedType, self)._process_custom_annotations(annotation_type, field_path, processor) +ExternalDriveBackupEligibilityStatusCheckedType_validator = bv.Struct(ExternalDriveBackupEligibilityStatusCheckedType) class ExternalDriveBackupPolicy(bb.Union): """ @@ -60323,7 +59246,7 @@ class ExternalDriveBackupPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition default = None # Attribute is overwritten below the class definition @@ -60339,7 +59262,7 @@ def is_default(self): :rtype: bool """ - return self._tag == "default" + return self._tag == 'default' def is_disabled(self): """ @@ -60347,7 +59270,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == "disabled" + return self._tag == 'disabled' def is_enabled(self): """ @@ -60355,7 +59278,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == "enabled" + return self._tag == 'enabled' def is_other(self): """ @@ -60363,17 +59286,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ExternalDriveBackupPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ExternalDriveBackupPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) ExternalDriveBackupPolicy_validator = bv.Union(ExternalDriveBackupPolicy) - class ExternalDriveBackupPolicyChangedDetails(bb.Struct): """ Changed external drive backup policy for team. @@ -60385,13 +59304,15 @@ class ExternalDriveBackupPolicyChangedDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -60406,24 +59327,20 @@ def __init__(self, new_value=None, previous_value=None): 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 - ) - - -ExternalDriveBackupPolicyChangedDetails_validator = bv.Struct( - ExternalDriveBackupPolicyChangedDetails -) + super(ExternalDriveBackupPolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +ExternalDriveBackupPolicyChangedDetails_validator = bv.Struct(ExternalDriveBackupPolicyChangedDetails) class ExternalDriveBackupPolicyChangedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -60432,14 +59349,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ExternalDriveBackupPolicyChangedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ExternalDriveBackupPolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) ExternalDriveBackupPolicyChangedType_validator = bv.Struct(ExternalDriveBackupPolicyChangedType) - class ExternalDriveBackupStatus(bb.Union): """ External Drive Backup status @@ -60449,7 +59362,7 @@ class ExternalDriveBackupStatus(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition broken = None # Attribute is overwritten below the class definition @@ -60471,7 +59384,7 @@ def is_broken(self): :rtype: bool """ - return self._tag == "broken" + return self._tag == 'broken' def is_created(self): """ @@ -60479,7 +59392,7 @@ def is_created(self): :rtype: bool """ - return self._tag == "created" + return self._tag == 'created' def is_created_or_broken(self): """ @@ -60487,7 +59400,7 @@ def is_created_or_broken(self): :rtype: bool """ - return self._tag == "created_or_broken" + return self._tag == 'created_or_broken' def is_deleted(self): """ @@ -60495,7 +59408,7 @@ def is_deleted(self): :rtype: bool """ - return self._tag == "deleted" + return self._tag == 'deleted' def is_empty(self): """ @@ -60503,7 +59416,7 @@ def is_empty(self): :rtype: bool """ - return self._tag == "empty" + return self._tag == 'empty' def is_unknown(self): """ @@ -60511,7 +59424,7 @@ def is_unknown(self): :rtype: bool """ - return self._tag == "unknown" + return self._tag == 'unknown' def is_other(self): """ @@ -60519,17 +59432,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ExternalDriveBackupStatus, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ExternalDriveBackupStatus, self)._process_custom_annotations(annotation_type, field_path, processor) ExternalDriveBackupStatus_validator = bv.Union(ExternalDriveBackupStatus) - class ExternalDriveBackupStatusChangedDetails(bb.Struct): """ Modified external drive backup. @@ -60543,14 +59452,17 @@ class ExternalDriveBackupStatusChangedDetails(bb.Struct): """ __slots__ = [ - "_desktop_device_session_info_value", - "_previous_value_value", - "_new_value_value", + '_desktop_device_session_info_value', + '_previous_value_value', + '_new_value_value', ] _has_required_fields = True - def __init__(self, desktop_device_session_info=None, previous_value=None, new_value=None): + def __init__(self, + desktop_device_session_info=None, + previous_value=None, + new_value=None): self._desktop_device_session_info_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET self._new_value_value = bb.NOT_SET @@ -60571,24 +59483,20 @@ def __init__(self, desktop_device_session_info=None, previous_value=None, new_va 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 - ) - - -ExternalDriveBackupStatusChangedDetails_validator = bv.Struct( - ExternalDriveBackupStatusChangedDetails -) + super(ExternalDriveBackupStatusChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +ExternalDriveBackupStatusChangedDetails_validator = bv.Struct(ExternalDriveBackupStatusChangedDetails) class ExternalDriveBackupStatusChangedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -60597,20 +59505,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ExternalDriveBackupStatusChangedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ExternalDriveBackupStatusChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) ExternalDriveBackupStatusChangedType_validator = bv.Struct(ExternalDriveBackupStatusChangedType) - class ExternalSharingCreateReportDetails(bb.Struct): """ Created External sharing report. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -60618,22 +59523,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ExternalSharingCreateReportDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ExternalSharingCreateReportDetails, self)._process_custom_annotations(annotation_type, field_path, processor) ExternalSharingCreateReportDetails_validator = bv.Struct(ExternalSharingCreateReportDetails) - class ExternalSharingCreateReportType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -60642,14 +59545,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ExternalSharingCreateReportType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ExternalSharingCreateReportType, self)._process_custom_annotations(annotation_type, field_path, processor) ExternalSharingCreateReportType_validator = bv.Struct(ExternalSharingCreateReportType) - class ExternalSharingReportFailedDetails(bb.Struct): """ Couldn't create External sharing report. @@ -60659,12 +59558,13 @@ class ExternalSharingReportFailedDetails(bb.Struct): """ __slots__ = [ - "_failure_reason_value", + '_failure_reason_value', ] _has_required_fields = True - def __init__(self, failure_reason=None): + def __init__(self, + failure_reason=None): self._failure_reason_value = bb.NOT_SET if failure_reason is not None: self.failure_reason = failure_reason @@ -60673,22 +59573,20 @@ def __init__(self, failure_reason=None): failure_reason = bb.Attribute("failure_reason", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ExternalSharingReportFailedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ExternalSharingReportFailedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) ExternalSharingReportFailedDetails_validator = bv.Struct(ExternalSharingReportFailedDetails) - class ExternalSharingReportFailedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -60697,14 +59595,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ExternalSharingReportFailedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ExternalSharingReportFailedType, self)._process_custom_annotations(annotation_type, field_path, processor) ExternalSharingReportFailedType_validator = bv.Struct(ExternalSharingReportFailedType) - class ExternalSharingSetting(bb.Union): """ External sharing setting @@ -60714,7 +59608,7 @@ class ExternalSharingSetting(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition allow = None # Attribute is overwritten below the class definition @@ -60730,7 +59624,7 @@ def is_allow(self): :rtype: bool """ - return self._tag == "allow" + return self._tag == 'allow' def is_forbid(self): """ @@ -60738,7 +59632,7 @@ def is_forbid(self): :rtype: bool """ - return self._tag == "forbid" + return self._tag == 'forbid' def is_unset(self): """ @@ -60746,7 +59640,7 @@ def is_unset(self): :rtype: bool """ - return self._tag == "unset" + return self._tag == 'unset' def is_other(self): """ @@ -60754,17 +59648,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ExternalSharingSetting, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ExternalSharingSetting, self)._process_custom_annotations(annotation_type, field_path, processor) ExternalSharingSetting_validator = bv.Union(ExternalSharingSetting) - class ExternalUserLogInfo(bb.Struct): """ A user without a Dropbox account. @@ -60776,13 +59666,15 @@ class ExternalUserLogInfo(bb.Struct): """ __slots__ = [ - "_user_identifier_value", - "_identifier_type_value", + '_user_identifier_value', + '_identifier_type_value', ] _has_required_fields = True - def __init__(self, user_identifier=None, identifier_type=None): + def __init__(self, + user_identifier=None, + identifier_type=None): self._user_identifier_value = bb.NOT_SET self._identifier_type_value = bb.NOT_SET if user_identifier is not None: @@ -60797,14 +59689,10 @@ def __init__(self, user_identifier=None, identifier_type=None): identifier_type = bb.Attribute("identifier_type", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ExternalUserLogInfo, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ExternalUserLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) ExternalUserLogInfo_validator = bv.Struct(ExternalUserLogInfo) - class FailureDetailsLogInfo(bb.Struct): """ Provides details about a failure @@ -60816,13 +59704,15 @@ class FailureDetailsLogInfo(bb.Struct): """ __slots__ = [ - "_user_friendly_message_value", - "_technical_error_message_value", + '_user_friendly_message_value', + '_technical_error_message_value', ] _has_required_fields = False - def __init__(self, user_friendly_message=None, technical_error_message=None): + def __init__(self, + user_friendly_message=None, + technical_error_message=None): self._user_friendly_message_value = bb.NOT_SET self._technical_error_message_value = bb.NOT_SET if user_friendly_message is not None: @@ -60837,14 +59727,10 @@ def __init__(self, user_friendly_message=None, technical_error_message=None): technical_error_message = bb.Attribute("technical_error_message", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FailureDetailsLogInfo, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FailureDetailsLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) FailureDetailsLogInfo_validator = bv.Struct(FailureDetailsLogInfo) - class FedAdminRole(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -60852,7 +59738,7 @@ class FedAdminRole(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition enterprise_admin = None # Attribute is overwritten below the class definition @@ -60866,7 +59752,7 @@ def is_enterprise_admin(self): :rtype: bool """ - return self._tag == "enterprise_admin" + return self._tag == 'enterprise_admin' def is_not_enterprise_admin(self): """ @@ -60874,7 +59760,7 @@ def is_not_enterprise_admin(self): :rtype: bool """ - return self._tag == "not_enterprise_admin" + return self._tag == 'not_enterprise_admin' def is_other(self): """ @@ -60882,17 +59768,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FedAdminRole, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FedAdminRole, self)._process_custom_annotations(annotation_type, field_path, processor) FedAdminRole_validator = bv.Union(FedAdminRole) - class FedExtraDetails(bb.Union): """ More details about the organization or team. @@ -60909,7 +59791,7 @@ class FedExtraDetails(bb.Union): :vartype FedExtraDetails.team: TeamDetails """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -60922,7 +59804,7 @@ def organization(cls, val): :param OrganizationDetails val: :rtype: FedExtraDetails """ - return cls("organization", val) + return cls('organization', val) @classmethod def team(cls, val): @@ -60933,7 +59815,7 @@ def team(cls, val): :param TeamDetails val: :rtype: FedExtraDetails """ - return cls("team", val) + return cls('team', val) def is_organization(self): """ @@ -60941,7 +59823,7 @@ def is_organization(self): :rtype: bool """ - return self._tag == "organization" + return self._tag == 'organization' def is_team(self): """ @@ -60949,7 +59831,7 @@ def is_team(self): :rtype: bool """ - return self._tag == "team" + return self._tag == 'team' def is_other(self): """ @@ -60957,7 +59839,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_organization(self): """ @@ -60984,14 +59866,10 @@ def get_team(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FedExtraDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FedExtraDetails, self)._process_custom_annotations(annotation_type, field_path, processor) FedExtraDetails_validator = bv.Union(FedExtraDetails) - class FedHandshakeAction(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -60999,7 +59877,7 @@ class FedHandshakeAction(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition accepted_invite = None # Attribute is overwritten below the class definition @@ -61021,7 +59899,7 @@ def is_accepted_invite(self): :rtype: bool """ - return self._tag == "accepted_invite" + return self._tag == 'accepted_invite' def is_canceled_invite(self): """ @@ -61029,7 +59907,7 @@ def is_canceled_invite(self): :rtype: bool """ - return self._tag == "canceled_invite" + return self._tag == 'canceled_invite' def is_invite_expired(self): """ @@ -61037,7 +59915,7 @@ def is_invite_expired(self): :rtype: bool """ - return self._tag == "invite_expired" + return self._tag == 'invite_expired' def is_invited(self): """ @@ -61045,7 +59923,7 @@ def is_invited(self): :rtype: bool """ - return self._tag == "invited" + return self._tag == 'invited' def is_rejected_invite(self): """ @@ -61053,7 +59931,7 @@ def is_rejected_invite(self): :rtype: bool """ - return self._tag == "rejected_invite" + return self._tag == 'rejected_invite' def is_removed_team(self): """ @@ -61061,7 +59939,7 @@ def is_removed_team(self): :rtype: bool """ - return self._tag == "removed_team" + return self._tag == 'removed_team' def is_other(self): """ @@ -61069,17 +59947,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FedHandshakeAction, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FedHandshakeAction, self)._process_custom_annotations(annotation_type, field_path, processor) FedHandshakeAction_validator = bv.Union(FedHandshakeAction) - class FederationStatusChangeAdditionalInfo(bb.Union): """ Additional information about the organization or connected team @@ -61099,7 +59973,7 @@ class FederationStatusChangeAdditionalInfo(bb.Union): :vartype FederationStatusChangeAdditionalInfo.organization_name: OrganizationName """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -61112,7 +59986,7 @@ def connected_team_name(cls, val): :param ConnectedTeamName val: :rtype: FederationStatusChangeAdditionalInfo """ - return cls("connected_team_name", val) + return cls('connected_team_name', val) @classmethod def non_trusted_team_details(cls, val): @@ -61123,7 +59997,7 @@ def non_trusted_team_details(cls, val): :param NonTrustedTeamDetails val: :rtype: FederationStatusChangeAdditionalInfo """ - return cls("non_trusted_team_details", val) + return cls('non_trusted_team_details', val) @classmethod def organization_name(cls, val): @@ -61134,7 +60008,7 @@ def organization_name(cls, val): :param OrganizationName val: :rtype: FederationStatusChangeAdditionalInfo """ - return cls("organization_name", val) + return cls('organization_name', val) def is_connected_team_name(self): """ @@ -61142,7 +60016,7 @@ def is_connected_team_name(self): :rtype: bool """ - return self._tag == "connected_team_name" + return self._tag == 'connected_team_name' def is_non_trusted_team_details(self): """ @@ -61150,7 +60024,7 @@ def is_non_trusted_team_details(self): :rtype: bool """ - return self._tag == "non_trusted_team_details" + return self._tag == 'non_trusted_team_details' def is_organization_name(self): """ @@ -61158,7 +60032,7 @@ def is_organization_name(self): :rtype: bool """ - return self._tag == "organization_name" + return self._tag == 'organization_name' def is_other(self): """ @@ -61166,7 +60040,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_connected_team_name(self): """ @@ -61205,14 +60079,10 @@ def get_organization_name(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FederationStatusChangeAdditionalInfo, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FederationStatusChangeAdditionalInfo, self)._process_custom_annotations(annotation_type, field_path, processor) FederationStatusChangeAdditionalInfo_validator = bv.Union(FederationStatusChangeAdditionalInfo) - class FileAddCommentDetails(bb.Struct): """ Added file comment. @@ -61222,12 +60092,13 @@ class FileAddCommentDetails(bb.Struct): """ __slots__ = [ - "_comment_text_value", + '_comment_text_value', ] _has_required_fields = False - def __init__(self, comment_text=None): + def __init__(self, + comment_text=None): self._comment_text_value = bb.NOT_SET if comment_text is not None: self.comment_text = comment_text @@ -61236,22 +60107,20 @@ def __init__(self, comment_text=None): comment_text = bb.Attribute("comment_text", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileAddCommentDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileAddCommentDetails, self)._process_custom_annotations(annotation_type, field_path, processor) FileAddCommentDetails_validator = bv.Struct(FileAddCommentDetails) - class FileAddCommentType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -61260,20 +60129,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileAddCommentType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileAddCommentType, self)._process_custom_annotations(annotation_type, field_path, processor) FileAddCommentType_validator = bv.Struct(FileAddCommentType) - class FileAddDetails(bb.Struct): """ Added files and/or folders. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -61281,20 +60147,17 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileAddDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileAddDetails, self)._process_custom_annotations(annotation_type, field_path, processor) FileAddDetails_validator = bv.Struct(FileAddDetails) - class FileAddFromAutomationDetails(bb.Struct): """ Added files and/or folders from automation. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -61302,22 +60165,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileAddFromAutomationDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileAddFromAutomationDetails, self)._process_custom_annotations(annotation_type, field_path, processor) FileAddFromAutomationDetails_validator = bv.Struct(FileAddFromAutomationDetails) - class FileAddFromAutomationType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -61326,22 +60187,20 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileAddFromAutomationType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileAddFromAutomationType, self)._process_custom_annotations(annotation_type, field_path, processor) FileAddFromAutomationType_validator = bv.Struct(FileAddFromAutomationType) - class FileAddType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -61352,10 +60211,8 @@ def __init__(self, description=None): def _process_custom_annotations(self, annotation_type, field_path, processor): super(FileAddType, self)._process_custom_annotations(annotation_type, field_path, processor) - FileAddType_validator = bv.Struct(FileAddType) - class FileChangeCommentSubscriptionDetails(bb.Struct): """ Subscribed to or unsubscribed from comment notifications for file. @@ -61368,13 +60225,15 @@ class FileChangeCommentSubscriptionDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -61389,22 +60248,20 @@ def __init__(self, new_value=None, previous_value=None): previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileChangeCommentSubscriptionDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileChangeCommentSubscriptionDetails, self)._process_custom_annotations(annotation_type, field_path, processor) FileChangeCommentSubscriptionDetails_validator = bv.Struct(FileChangeCommentSubscriptionDetails) - class FileChangeCommentSubscriptionType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -61413,14 +60270,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileChangeCommentSubscriptionType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileChangeCommentSubscriptionType, self)._process_custom_annotations(annotation_type, field_path, processor) FileChangeCommentSubscriptionType_validator = bv.Struct(FileChangeCommentSubscriptionType) - class FileCommentNotificationPolicy(bb.Union): """ Enable or disable file comments notifications @@ -61430,7 +60283,7 @@ class FileCommentNotificationPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -61444,7 +60297,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == "disabled" + return self._tag == 'disabled' def is_enabled(self): """ @@ -61452,7 +60305,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == "enabled" + return self._tag == 'enabled' def is_other(self): """ @@ -61460,17 +60313,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileCommentNotificationPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileCommentNotificationPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) FileCommentNotificationPolicy_validator = bv.Union(FileCommentNotificationPolicy) - class FileCommentsChangePolicyDetails(bb.Struct): """ Enabled/disabled commenting on team files. @@ -61483,13 +60332,15 @@ class FileCommentsChangePolicyDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -61504,22 +60355,20 @@ def __init__(self, new_value=None, previous_value=None): previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileCommentsChangePolicyDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileCommentsChangePolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) FileCommentsChangePolicyDetails_validator = bv.Struct(FileCommentsChangePolicyDetails) - class FileCommentsChangePolicyType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -61528,14 +60377,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileCommentsChangePolicyType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileCommentsChangePolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) FileCommentsChangePolicyType_validator = bv.Struct(FileCommentsChangePolicyType) - class FileCommentsPolicy(bb.Union): """ File comments policy @@ -61545,7 +60390,7 @@ class FileCommentsPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -61559,7 +60404,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == "disabled" + return self._tag == 'disabled' def is_enabled(self): """ @@ -61567,7 +60412,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == "enabled" + return self._tag == 'enabled' def is_other(self): """ @@ -61575,17 +60420,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileCommentsPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileCommentsPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) FileCommentsPolicy_validator = bv.Union(FileCommentsPolicy) - class FileCopyDetails(bb.Struct): """ Copied files and/or folders. @@ -61595,12 +60436,13 @@ class FileCopyDetails(bb.Struct): """ __slots__ = [ - "_relocate_action_details_value", + '_relocate_action_details_value', ] _has_required_fields = True - def __init__(self, relocate_action_details=None): + def __init__(self, + relocate_action_details=None): self._relocate_action_details_value = bb.NOT_SET if relocate_action_details is not None: self.relocate_action_details = relocate_action_details @@ -61609,22 +60451,20 @@ def __init__(self, relocate_action_details=None): relocate_action_details = bb.Attribute("relocate_action_details") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileCopyDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileCopyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) FileCopyDetails_validator = bv.Struct(FileCopyDetails) - class FileCopyType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -61633,14 +60473,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileCopyType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileCopyType, self)._process_custom_annotations(annotation_type, field_path, processor) FileCopyType_validator = bv.Struct(FileCopyType) - class FileDeleteCommentDetails(bb.Struct): """ Deleted file comment. @@ -61650,12 +60486,13 @@ class FileDeleteCommentDetails(bb.Struct): """ __slots__ = [ - "_comment_text_value", + '_comment_text_value', ] _has_required_fields = False - def __init__(self, comment_text=None): + def __init__(self, + comment_text=None): self._comment_text_value = bb.NOT_SET if comment_text is not None: self.comment_text = comment_text @@ -61664,22 +60501,20 @@ def __init__(self, comment_text=None): comment_text = bb.Attribute("comment_text", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileDeleteCommentDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileDeleteCommentDetails, self)._process_custom_annotations(annotation_type, field_path, processor) FileDeleteCommentDetails_validator = bv.Struct(FileDeleteCommentDetails) - class FileDeleteCommentType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -61688,20 +60523,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileDeleteCommentType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileDeleteCommentType, self)._process_custom_annotations(annotation_type, field_path, processor) FileDeleteCommentType_validator = bv.Struct(FileDeleteCommentType) - class FileDeleteDetails(bb.Struct): """ Deleted files and/or folders. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -61709,22 +60541,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileDeleteDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileDeleteDetails, self)._process_custom_annotations(annotation_type, field_path, processor) FileDeleteDetails_validator = bv.Struct(FileDeleteDetails) - class FileDeleteType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -61733,20 +60563,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileDeleteType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileDeleteType, self)._process_custom_annotations(annotation_type, field_path, processor) FileDeleteType_validator = bv.Struct(FileDeleteType) - class FileDownloadDetails(bb.Struct): """ Downloaded files and/or folders. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -61754,22 +60581,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileDownloadDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileDownloadDetails, self)._process_custom_annotations(annotation_type, field_path, processor) FileDownloadDetails_validator = bv.Struct(FileDownloadDetails) - class FileDownloadType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -61778,14 +60603,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileDownloadType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileDownloadType, self)._process_custom_annotations(annotation_type, field_path, processor) FileDownloadType_validator = bv.Struct(FileDownloadType) - class FileEditCommentDetails(bb.Struct): """ Edited file comment. @@ -61797,13 +60618,15 @@ class FileEditCommentDetails(bb.Struct): """ __slots__ = [ - "_comment_text_value", - "_previous_comment_text_value", + '_comment_text_value', + '_previous_comment_text_value', ] _has_required_fields = True - def __init__(self, previous_comment_text=None, comment_text=None): + def __init__(self, + previous_comment_text=None, + comment_text=None): self._comment_text_value = bb.NOT_SET self._previous_comment_text_value = bb.NOT_SET if comment_text is not None: @@ -61818,22 +60641,20 @@ def __init__(self, previous_comment_text=None, comment_text=None): previous_comment_text = bb.Attribute("previous_comment_text") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileEditCommentDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileEditCommentDetails, self)._process_custom_annotations(annotation_type, field_path, processor) FileEditCommentDetails_validator = bv.Struct(FileEditCommentDetails) - class FileEditCommentType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -61842,20 +60663,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileEditCommentType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileEditCommentType, self)._process_custom_annotations(annotation_type, field_path, processor) FileEditCommentType_validator = bv.Struct(FileEditCommentType) - class FileEditDetails(bb.Struct): """ Edited files. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -61863,22 +60681,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileEditDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileEditDetails, self)._process_custom_annotations(annotation_type, field_path, processor) FileEditDetails_validator = bv.Struct(FileEditDetails) - class FileEditType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -61887,20 +60703,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileEditType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileEditType, self)._process_custom_annotations(annotation_type, field_path, processor) FileEditType_validator = bv.Struct(FileEditType) - class FileGetCopyReferenceDetails(bb.Struct): """ Created copy reference to file/folder. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -61908,22 +60721,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileGetCopyReferenceDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileGetCopyReferenceDetails, self)._process_custom_annotations(annotation_type, field_path, processor) FileGetCopyReferenceDetails_validator = bv.Struct(FileGetCopyReferenceDetails) - class FileGetCopyReferenceType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -61932,14 +60743,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileGetCopyReferenceType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileGetCopyReferenceType, self)._process_custom_annotations(annotation_type, field_path, processor) FileGetCopyReferenceType_validator = bv.Struct(FileGetCopyReferenceType) - class FileLikeCommentDetails(bb.Struct): """ Liked file comment. @@ -61949,12 +60756,13 @@ class FileLikeCommentDetails(bb.Struct): """ __slots__ = [ - "_comment_text_value", + '_comment_text_value', ] _has_required_fields = False - def __init__(self, comment_text=None): + def __init__(self, + comment_text=None): self._comment_text_value = bb.NOT_SET if comment_text is not None: self.comment_text = comment_text @@ -61963,22 +60771,20 @@ def __init__(self, comment_text=None): comment_text = bb.Attribute("comment_text", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileLikeCommentDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileLikeCommentDetails, self)._process_custom_annotations(annotation_type, field_path, processor) FileLikeCommentDetails_validator = bv.Struct(FileLikeCommentDetails) - class FileLikeCommentType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -61987,14 +60793,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileLikeCommentType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileLikeCommentType, self)._process_custom_annotations(annotation_type, field_path, processor) FileLikeCommentType_validator = bv.Struct(FileLikeCommentType) - class FileLockingLockStatusChangedDetails(bb.Struct): """ Locked/unlocked editing for a file. @@ -62006,13 +60808,15 @@ class FileLockingLockStatusChangedDetails(bb.Struct): """ __slots__ = [ - "_previous_value_value", - "_new_value_value", + '_previous_value_value', + '_new_value_value', ] _has_required_fields = True - def __init__(self, previous_value=None, new_value=None): + def __init__(self, + previous_value=None, + new_value=None): self._previous_value_value = bb.NOT_SET self._new_value_value = bb.NOT_SET if previous_value is not None: @@ -62027,22 +60831,20 @@ def __init__(self, previous_value=None, new_value=None): new_value = bb.Attribute("new_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileLockingLockStatusChangedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileLockingLockStatusChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) FileLockingLockStatusChangedDetails_validator = bv.Struct(FileLockingLockStatusChangedDetails) - class FileLockingLockStatusChangedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -62051,14 +60853,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileLockingLockStatusChangedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileLockingLockStatusChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) FileLockingLockStatusChangedType_validator = bv.Struct(FileLockingLockStatusChangedType) - class FileLockingPolicyChangedDetails(bb.Struct): """ Changed file locking policy for team. @@ -62070,13 +60868,15 @@ class FileLockingPolicyChangedDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -62091,22 +60891,20 @@ def __init__(self, new_value=None, previous_value=None): previous_value = bb.Attribute("previous_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileLockingPolicyChangedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileLockingPolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) FileLockingPolicyChangedDetails_validator = bv.Struct(FileLockingPolicyChangedDetails) - class FileLockingPolicyChangedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -62115,14 +60913,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileLockingPolicyChangedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileLockingPolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) FileLockingPolicyChangedType_validator = bv.Struct(FileLockingPolicyChangedType) - class FileOrFolderLogInfo(bb.Struct): """ Generic information relevant both for files and folders @@ -62138,15 +60932,19 @@ class FileOrFolderLogInfo(bb.Struct): """ __slots__ = [ - "_path_value", - "_display_name_value", - "_file_id_value", - "_file_size_value", + '_path_value', + '_display_name_value', + '_file_id_value', + '_file_size_value', ] _has_required_fields = True - def __init__(self, path=None, display_name=None, file_id=None, file_size=None): + def __init__(self, + path=None, + display_name=None, + file_id=None, + file_size=None): self._path_value = bb.NOT_SET self._display_name_value = bb.NOT_SET self._file_id_value = bb.NOT_SET @@ -62173,33 +60971,35 @@ def __init__(self, path=None, display_name=None, file_id=None, file_size=None): file_size = bb.Attribute("file_size", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileOrFolderLogInfo, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileOrFolderLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) FileOrFolderLogInfo_validator = bv.Struct(FileOrFolderLogInfo) - class FileLogInfo(FileOrFolderLogInfo): """ File's logged information. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = True - def __init__(self, path=None, display_name=None, file_id=None, file_size=None): - super(FileLogInfo, self).__init__(path, display_name, file_id, file_size) + def __init__(self, + path=None, + display_name=None, + file_id=None, + file_size=None): + super(FileLogInfo, self).__init__(path, + display_name, + file_id, + file_size) def _process_custom_annotations(self, annotation_type, field_path, processor): super(FileLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) - FileLogInfo_validator = bv.Struct(FileLogInfo) - class FileMoveDetails(bb.Struct): """ Moved files and/or folders. @@ -62209,12 +61009,13 @@ class FileMoveDetails(bb.Struct): """ __slots__ = [ - "_relocate_action_details_value", + '_relocate_action_details_value', ] _has_required_fields = True - def __init__(self, relocate_action_details=None): + def __init__(self, + relocate_action_details=None): self._relocate_action_details_value = bb.NOT_SET if relocate_action_details is not None: self.relocate_action_details = relocate_action_details @@ -62223,22 +61024,20 @@ def __init__(self, relocate_action_details=None): relocate_action_details = bb.Attribute("relocate_action_details") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileMoveDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileMoveDetails, self)._process_custom_annotations(annotation_type, field_path, processor) FileMoveDetails_validator = bv.Struct(FileMoveDetails) - class FileMoveType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -62247,20 +61046,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileMoveType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileMoveType, self)._process_custom_annotations(annotation_type, field_path, processor) FileMoveType_validator = bv.Struct(FileMoveType) - class FilePermanentlyDeleteDetails(bb.Struct): """ Permanently deleted files and/or folders. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -62268,22 +61064,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FilePermanentlyDeleteDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FilePermanentlyDeleteDetails, self)._process_custom_annotations(annotation_type, field_path, processor) FilePermanentlyDeleteDetails_validator = bv.Struct(FilePermanentlyDeleteDetails) - class FilePermanentlyDeleteType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -62292,20 +61086,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FilePermanentlyDeleteType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FilePermanentlyDeleteType, self)._process_custom_annotations(annotation_type, field_path, processor) FilePermanentlyDeleteType_validator = bv.Struct(FilePermanentlyDeleteType) - class FilePreviewDetails(bb.Struct): """ Previewed files and/or folders. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -62313,22 +61104,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FilePreviewDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FilePreviewDetails, self)._process_custom_annotations(annotation_type, field_path, processor) FilePreviewDetails_validator = bv.Struct(FilePreviewDetails) - class FilePreviewType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -62337,14 +61126,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FilePreviewType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FilePreviewType, self)._process_custom_annotations(annotation_type, field_path, processor) FilePreviewType_validator = bv.Struct(FilePreviewType) - class FileProviderMigrationPolicyChangedDetails(bb.Struct): """ Changed File Provider Migration policy for team. @@ -62356,13 +61141,15 @@ class FileProviderMigrationPolicyChangedDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -62377,24 +61164,20 @@ def __init__(self, new_value=None, previous_value=None): 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 - ) - - -FileProviderMigrationPolicyChangedDetails_validator = bv.Struct( - FileProviderMigrationPolicyChangedDetails -) + super(FileProviderMigrationPolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +FileProviderMigrationPolicyChangedDetails_validator = bv.Struct(FileProviderMigrationPolicyChangedDetails) class FileProviderMigrationPolicyChangedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -62403,14 +61186,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileProviderMigrationPolicyChangedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileProviderMigrationPolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) FileProviderMigrationPolicyChangedType_validator = bv.Struct(FileProviderMigrationPolicyChangedType) - class FileRenameDetails(bb.Struct): """ Renamed files and/or folders. @@ -62420,12 +61199,13 @@ class FileRenameDetails(bb.Struct): """ __slots__ = [ - "_relocate_action_details_value", + '_relocate_action_details_value', ] _has_required_fields = True - def __init__(self, relocate_action_details=None): + def __init__(self, + relocate_action_details=None): self._relocate_action_details_value = bb.NOT_SET if relocate_action_details is not None: self.relocate_action_details = relocate_action_details @@ -62434,22 +61214,20 @@ def __init__(self, relocate_action_details=None): relocate_action_details = bb.Attribute("relocate_action_details") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileRenameDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileRenameDetails, self)._process_custom_annotations(annotation_type, field_path, processor) FileRenameDetails_validator = bv.Struct(FileRenameDetails) - class FileRenameType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -62458,14 +61236,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileRenameType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileRenameType, self)._process_custom_annotations(annotation_type, field_path, processor) FileRenameType_validator = bv.Struct(FileRenameType) - class FileRequestAutoCloseDetails(bb.Struct): """ Auto closed file request. @@ -62480,14 +61254,17 @@ class FileRequestAutoCloseDetails(bb.Struct): """ __slots__ = [ - "_file_request_id_value", - "_reason_value", - "_previous_details_value", + '_file_request_id_value', + '_reason_value', + '_previous_details_value', ] _has_required_fields = False - def __init__(self, file_request_id=None, reason=None, previous_details=None): + def __init__(self, + file_request_id=None, + reason=None, + previous_details=None): self._file_request_id_value = bb.NOT_SET self._reason_value = bb.NOT_SET self._previous_details_value = bb.NOT_SET @@ -62508,22 +61285,20 @@ def __init__(self, file_request_id=None, reason=None, previous_details=None): previous_details = bb.Attribute("previous_details", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileRequestAutoCloseDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileRequestAutoCloseDetails, self)._process_custom_annotations(annotation_type, field_path, processor) FileRequestAutoCloseDetails_validator = bv.Struct(FileRequestAutoCloseDetails) - class FileRequestAutoCloseType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -62532,14 +61307,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileRequestAutoCloseType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileRequestAutoCloseType, self)._process_custom_annotations(annotation_type, field_path, processor) FileRequestAutoCloseType_validator = bv.Struct(FileRequestAutoCloseType) - class FileRequestChangeDetails(bb.Struct): """ Changed file request. @@ -62554,14 +61325,17 @@ class FileRequestChangeDetails(bb.Struct): """ __slots__ = [ - "_file_request_id_value", - "_previous_details_value", - "_new_details_value", + '_file_request_id_value', + '_previous_details_value', + '_new_details_value', ] _has_required_fields = True - def __init__(self, new_details=None, file_request_id=None, previous_details=None): + def __init__(self, + new_details=None, + file_request_id=None, + previous_details=None): self._file_request_id_value = bb.NOT_SET self._previous_details_value = bb.NOT_SET self._new_details_value = bb.NOT_SET @@ -62582,22 +61356,20 @@ def __init__(self, new_details=None, file_request_id=None, previous_details=None new_details = bb.Attribute("new_details", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileRequestChangeDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileRequestChangeDetails, self)._process_custom_annotations(annotation_type, field_path, processor) FileRequestChangeDetails_validator = bv.Struct(FileRequestChangeDetails) - class FileRequestChangeType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -62606,14 +61378,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileRequestChangeType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileRequestChangeType, self)._process_custom_annotations(annotation_type, field_path, processor) FileRequestChangeType_validator = bv.Struct(FileRequestChangeType) - class FileRequestCloseDetails(bb.Struct): """ Closed file request. @@ -62626,13 +61394,15 @@ class FileRequestCloseDetails(bb.Struct): """ __slots__ = [ - "_file_request_id_value", - "_previous_details_value", + '_file_request_id_value', + '_previous_details_value', ] _has_required_fields = False - def __init__(self, file_request_id=None, previous_details=None): + def __init__(self, + file_request_id=None, + previous_details=None): self._file_request_id_value = bb.NOT_SET self._previous_details_value = bb.NOT_SET if file_request_id is not None: @@ -62647,22 +61417,20 @@ def __init__(self, file_request_id=None, previous_details=None): previous_details = bb.Attribute("previous_details", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileRequestCloseDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileRequestCloseDetails, self)._process_custom_annotations(annotation_type, field_path, processor) FileRequestCloseDetails_validator = bv.Struct(FileRequestCloseDetails) - class FileRequestCloseType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -62671,14 +61439,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileRequestCloseType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileRequestCloseType, self)._process_custom_annotations(annotation_type, field_path, processor) FileRequestCloseType_validator = bv.Struct(FileRequestCloseType) - class FileRequestCreateDetails(bb.Struct): """ Created file request. @@ -62690,13 +61454,15 @@ class FileRequestCreateDetails(bb.Struct): """ __slots__ = [ - "_file_request_id_value", - "_request_details_value", + '_file_request_id_value', + '_request_details_value', ] _has_required_fields = False - def __init__(self, file_request_id=None, request_details=None): + def __init__(self, + file_request_id=None, + request_details=None): self._file_request_id_value = bb.NOT_SET self._request_details_value = bb.NOT_SET if file_request_id is not None: @@ -62711,22 +61477,20 @@ def __init__(self, file_request_id=None, request_details=None): request_details = bb.Attribute("request_details", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileRequestCreateDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileRequestCreateDetails, self)._process_custom_annotations(annotation_type, field_path, processor) FileRequestCreateDetails_validator = bv.Struct(FileRequestCreateDetails) - class FileRequestCreateType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -62735,14 +61499,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileRequestCreateType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileRequestCreateType, self)._process_custom_annotations(annotation_type, field_path, processor) FileRequestCreateType_validator = bv.Struct(FileRequestCreateType) - class FileRequestDeadline(bb.Struct): """ File request deadline @@ -62755,13 +61515,15 @@ class FileRequestDeadline(bb.Struct): """ __slots__ = [ - "_deadline_value", - "_allow_late_uploads_value", + '_deadline_value', + '_allow_late_uploads_value', ] _has_required_fields = False - def __init__(self, deadline=None, allow_late_uploads=None): + def __init__(self, + deadline=None, + allow_late_uploads=None): self._deadline_value = bb.NOT_SET self._allow_late_uploads_value = bb.NOT_SET if deadline is not None: @@ -62776,14 +61538,10 @@ def __init__(self, deadline=None, allow_late_uploads=None): allow_late_uploads = bb.Attribute("allow_late_uploads", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileRequestDeadline, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileRequestDeadline, self)._process_custom_annotations(annotation_type, field_path, processor) FileRequestDeadline_validator = bv.Struct(FileRequestDeadline) - class FileRequestDeleteDetails(bb.Struct): """ Delete file request. @@ -62796,13 +61554,15 @@ class FileRequestDeleteDetails(bb.Struct): """ __slots__ = [ - "_file_request_id_value", - "_previous_details_value", + '_file_request_id_value', + '_previous_details_value', ] _has_required_fields = False - def __init__(self, file_request_id=None, previous_details=None): + def __init__(self, + file_request_id=None, + previous_details=None): self._file_request_id_value = bb.NOT_SET self._previous_details_value = bb.NOT_SET if file_request_id is not None: @@ -62817,22 +61577,20 @@ def __init__(self, file_request_id=None, previous_details=None): previous_details = bb.Attribute("previous_details", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileRequestDeleteDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileRequestDeleteDetails, self)._process_custom_annotations(annotation_type, field_path, processor) FileRequestDeleteDetails_validator = bv.Struct(FileRequestDeleteDetails) - class FileRequestDeleteType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -62841,14 +61599,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileRequestDeleteType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileRequestDeleteType, self)._process_custom_annotations(annotation_type, field_path, processor) FileRequestDeleteType_validator = bv.Struct(FileRequestDeleteType) - class FileRequestDetails(bb.Struct): """ File request details @@ -62862,14 +61616,17 @@ class FileRequestDetails(bb.Struct): """ __slots__ = [ - "_asset_index_value", - "_deadline_value", - "_has_password_value", + '_asset_index_value', + '_deadline_value', + '_has_password_value', ] _has_required_fields = True - def __init__(self, asset_index=None, deadline=None, has_password=None): + def __init__(self, + asset_index=None, + deadline=None, + has_password=None): self._asset_index_value = bb.NOT_SET self._deadline_value = bb.NOT_SET self._has_password_value = bb.NOT_SET @@ -62890,14 +61647,10 @@ def __init__(self, asset_index=None, deadline=None, has_password=None): has_password = bb.Attribute("has_password", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileRequestDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileRequestDetails, self)._process_custom_annotations(annotation_type, field_path, processor) FileRequestDetails_validator = bv.Struct(FileRequestDetails) - class FileRequestReceiveFileDetails(bb.Struct): """ Received files for file request. @@ -62915,23 +61668,21 @@ class FileRequestReceiveFileDetails(bb.Struct): """ __slots__ = [ - "_file_request_id_value", - "_file_request_details_value", - "_submitted_file_names_value", - "_submitter_name_value", - "_submitter_email_value", + '_file_request_id_value', + '_file_request_details_value', + '_submitted_file_names_value', + '_submitter_name_value', + '_submitter_email_value', ] _has_required_fields = True - def __init__( - self, - submitted_file_names=None, - file_request_id=None, - file_request_details=None, - submitter_name=None, - submitter_email=None, - ): + def __init__(self, + submitted_file_names=None, + file_request_id=None, + file_request_details=None, + submitter_name=None, + submitter_email=None): self._file_request_id_value = bb.NOT_SET self._file_request_details_value = bb.NOT_SET self._submitted_file_names_value = bb.NOT_SET @@ -62964,22 +61715,20 @@ def __init__( submitter_email = bb.Attribute("submitter_email", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileRequestReceiveFileDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileRequestReceiveFileDetails, self)._process_custom_annotations(annotation_type, field_path, processor) FileRequestReceiveFileDetails_validator = bv.Struct(FileRequestReceiveFileDetails) - class FileRequestReceiveFileType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -62988,14 +61737,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileRequestReceiveFileType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileRequestReceiveFileType, self)._process_custom_annotations(annotation_type, field_path, processor) FileRequestReceiveFileType_validator = bv.Struct(FileRequestReceiveFileType) - class FileRequestsChangePolicyDetails(bb.Struct): """ Enabled/disabled file requests. @@ -63008,13 +61753,15 @@ class FileRequestsChangePolicyDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -63029,22 +61776,20 @@ def __init__(self, new_value=None, previous_value=None): previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileRequestsChangePolicyDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileRequestsChangePolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) FileRequestsChangePolicyDetails_validator = bv.Struct(FileRequestsChangePolicyDetails) - class FileRequestsChangePolicyType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -63053,20 +61798,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileRequestsChangePolicyType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileRequestsChangePolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) FileRequestsChangePolicyType_validator = bv.Struct(FileRequestsChangePolicyType) - class FileRequestsEmailsEnabledDetails(bb.Struct): """ Enabled file request emails for everyone. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -63074,22 +61816,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileRequestsEmailsEnabledDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileRequestsEmailsEnabledDetails, self)._process_custom_annotations(annotation_type, field_path, processor) FileRequestsEmailsEnabledDetails_validator = bv.Struct(FileRequestsEmailsEnabledDetails) - class FileRequestsEmailsEnabledType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -63098,20 +61838,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileRequestsEmailsEnabledType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileRequestsEmailsEnabledType, self)._process_custom_annotations(annotation_type, field_path, processor) FileRequestsEmailsEnabledType_validator = bv.Struct(FileRequestsEmailsEnabledType) - class FileRequestsEmailsRestrictedToTeamOnlyDetails(bb.Struct): """ Enabled file request emails for team. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -63119,24 +61856,20 @@ 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 - ) - - -FileRequestsEmailsRestrictedToTeamOnlyDetails_validator = bv.Struct( - FileRequestsEmailsRestrictedToTeamOnlyDetails -) + super(FileRequestsEmailsRestrictedToTeamOnlyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +FileRequestsEmailsRestrictedToTeamOnlyDetails_validator = bv.Struct(FileRequestsEmailsRestrictedToTeamOnlyDetails) class FileRequestsEmailsRestrictedToTeamOnlyType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -63145,15 +61878,9 @@ def __init__(self, description=None): 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 - ) - - -FileRequestsEmailsRestrictedToTeamOnlyType_validator = bv.Struct( - FileRequestsEmailsRestrictedToTeamOnlyType -) + super(FileRequestsEmailsRestrictedToTeamOnlyType, self)._process_custom_annotations(annotation_type, field_path, processor) +FileRequestsEmailsRestrictedToTeamOnlyType_validator = bv.Struct(FileRequestsEmailsRestrictedToTeamOnlyType) class FileRequestsPolicy(bb.Union): """ @@ -63164,7 +61891,7 @@ class FileRequestsPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -63178,7 +61905,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == "disabled" + return self._tag == 'disabled' def is_enabled(self): """ @@ -63186,7 +61913,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == "enabled" + return self._tag == 'enabled' def is_other(self): """ @@ -63194,17 +61921,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileRequestsPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileRequestsPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) FileRequestsPolicy_validator = bv.Union(FileRequestsPolicy) - class FileResolveCommentDetails(bb.Struct): """ Resolved file comment. @@ -63214,12 +61937,13 @@ class FileResolveCommentDetails(bb.Struct): """ __slots__ = [ - "_comment_text_value", + '_comment_text_value', ] _has_required_fields = False - def __init__(self, comment_text=None): + def __init__(self, + comment_text=None): self._comment_text_value = bb.NOT_SET if comment_text is not None: self.comment_text = comment_text @@ -63228,22 +61952,20 @@ def __init__(self, comment_text=None): comment_text = bb.Attribute("comment_text", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileResolveCommentDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileResolveCommentDetails, self)._process_custom_annotations(annotation_type, field_path, processor) FileResolveCommentDetails_validator = bv.Struct(FileResolveCommentDetails) - class FileResolveCommentType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -63252,20 +61974,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileResolveCommentType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileResolveCommentType, self)._process_custom_annotations(annotation_type, field_path, processor) FileResolveCommentType_validator = bv.Struct(FileResolveCommentType) - class FileRestoreDetails(bb.Struct): """ Restored deleted files and/or folders. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -63273,22 +61992,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileRestoreDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileRestoreDetails, self)._process_custom_annotations(annotation_type, field_path, processor) FileRestoreDetails_validator = bv.Struct(FileRestoreDetails) - class FileRestoreType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -63297,20 +62014,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileRestoreType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileRestoreType, self)._process_custom_annotations(annotation_type, field_path, processor) FileRestoreType_validator = bv.Struct(FileRestoreType) - class FileRevertDetails(bb.Struct): """ Reverted files to previous version. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -63318,22 +62032,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileRevertDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileRevertDetails, self)._process_custom_annotations(annotation_type, field_path, processor) FileRevertDetails_validator = bv.Struct(FileRevertDetails) - class FileRevertType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -63342,20 +62054,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileRevertType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileRevertType, self)._process_custom_annotations(annotation_type, field_path, processor) FileRevertType_validator = bv.Struct(FileRevertType) - class FileRollbackChangesDetails(bb.Struct): """ Rolled back file actions. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -63363,22 +62072,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileRollbackChangesDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileRollbackChangesDetails, self)._process_custom_annotations(annotation_type, field_path, processor) FileRollbackChangesDetails_validator = bv.Struct(FileRollbackChangesDetails) - class FileRollbackChangesType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -63387,14 +62094,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileRollbackChangesType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileRollbackChangesType, self)._process_custom_annotations(annotation_type, field_path, processor) FileRollbackChangesType_validator = bv.Struct(FileRollbackChangesType) - class FileSaveCopyReferenceDetails(bb.Struct): """ Saved file/folder using copy reference. @@ -63404,12 +62107,13 @@ class FileSaveCopyReferenceDetails(bb.Struct): """ __slots__ = [ - "_relocate_action_details_value", + '_relocate_action_details_value', ] _has_required_fields = True - def __init__(self, relocate_action_details=None): + def __init__(self, + relocate_action_details=None): self._relocate_action_details_value = bb.NOT_SET if relocate_action_details is not None: self.relocate_action_details = relocate_action_details @@ -63418,22 +62122,20 @@ def __init__(self, relocate_action_details=None): relocate_action_details = bb.Attribute("relocate_action_details") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileSaveCopyReferenceDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileSaveCopyReferenceDetails, self)._process_custom_annotations(annotation_type, field_path, processor) FileSaveCopyReferenceDetails_validator = bv.Struct(FileSaveCopyReferenceDetails) - class FileSaveCopyReferenceType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -63442,14 +62144,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileSaveCopyReferenceType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileSaveCopyReferenceType, self)._process_custom_annotations(annotation_type, field_path, processor) FileSaveCopyReferenceType_validator = bv.Struct(FileSaveCopyReferenceType) - class FileTransfersFileAddDetails(bb.Struct): """ Transfer files added. @@ -63459,12 +62157,13 @@ class FileTransfersFileAddDetails(bb.Struct): """ __slots__ = [ - "_file_transfer_id_value", + '_file_transfer_id_value', ] _has_required_fields = True - def __init__(self, file_transfer_id=None): + def __init__(self, + file_transfer_id=None): self._file_transfer_id_value = bb.NOT_SET if file_transfer_id is not None: self.file_transfer_id = file_transfer_id @@ -63473,22 +62172,20 @@ def __init__(self, file_transfer_id=None): file_transfer_id = bb.Attribute("file_transfer_id") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileTransfersFileAddDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileTransfersFileAddDetails, self)._process_custom_annotations(annotation_type, field_path, processor) FileTransfersFileAddDetails_validator = bv.Struct(FileTransfersFileAddDetails) - class FileTransfersFileAddType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -63497,14 +62194,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileTransfersFileAddType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileTransfersFileAddType, self)._process_custom_annotations(annotation_type, field_path, processor) FileTransfersFileAddType_validator = bv.Struct(FileTransfersFileAddType) - class FileTransfersPolicy(bb.Union): """ File transfers policy @@ -63514,7 +62207,7 @@ class FileTransfersPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -63528,7 +62221,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == "disabled" + return self._tag == 'disabled' def is_enabled(self): """ @@ -63536,7 +62229,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == "enabled" + return self._tag == 'enabled' def is_other(self): """ @@ -63544,17 +62237,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileTransfersPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileTransfersPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) FileTransfersPolicy_validator = bv.Union(FileTransfersPolicy) - class FileTransfersPolicyChangedDetails(bb.Struct): """ Changed file transfers policy for team. @@ -63566,13 +62255,15 @@ class FileTransfersPolicyChangedDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -63587,22 +62278,20 @@ def __init__(self, new_value=None, previous_value=None): previous_value = bb.Attribute("previous_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileTransfersPolicyChangedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileTransfersPolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) FileTransfersPolicyChangedDetails_validator = bv.Struct(FileTransfersPolicyChangedDetails) - class FileTransfersPolicyChangedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -63611,14 +62300,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileTransfersPolicyChangedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileTransfersPolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) FileTransfersPolicyChangedType_validator = bv.Struct(FileTransfersPolicyChangedType) - class FileTransfersTransferDeleteDetails(bb.Struct): """ Deleted transfer. @@ -63628,12 +62313,13 @@ class FileTransfersTransferDeleteDetails(bb.Struct): """ __slots__ = [ - "_file_transfer_id_value", + '_file_transfer_id_value', ] _has_required_fields = True - def __init__(self, file_transfer_id=None): + def __init__(self, + file_transfer_id=None): self._file_transfer_id_value = bb.NOT_SET if file_transfer_id is not None: self.file_transfer_id = file_transfer_id @@ -63642,22 +62328,20 @@ def __init__(self, file_transfer_id=None): file_transfer_id = bb.Attribute("file_transfer_id") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileTransfersTransferDeleteDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileTransfersTransferDeleteDetails, self)._process_custom_annotations(annotation_type, field_path, processor) FileTransfersTransferDeleteDetails_validator = bv.Struct(FileTransfersTransferDeleteDetails) - class FileTransfersTransferDeleteType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -63666,14 +62350,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileTransfersTransferDeleteType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileTransfersTransferDeleteType, self)._process_custom_annotations(annotation_type, field_path, processor) FileTransfersTransferDeleteType_validator = bv.Struct(FileTransfersTransferDeleteType) - class FileTransfersTransferDownloadDetails(bb.Struct): """ Transfer downloaded. @@ -63683,12 +62363,13 @@ class FileTransfersTransferDownloadDetails(bb.Struct): """ __slots__ = [ - "_file_transfer_id_value", + '_file_transfer_id_value', ] _has_required_fields = True - def __init__(self, file_transfer_id=None): + def __init__(self, + file_transfer_id=None): self._file_transfer_id_value = bb.NOT_SET if file_transfer_id is not None: self.file_transfer_id = file_transfer_id @@ -63697,22 +62378,20 @@ def __init__(self, file_transfer_id=None): file_transfer_id = bb.Attribute("file_transfer_id") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileTransfersTransferDownloadDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileTransfersTransferDownloadDetails, self)._process_custom_annotations(annotation_type, field_path, processor) FileTransfersTransferDownloadDetails_validator = bv.Struct(FileTransfersTransferDownloadDetails) - class FileTransfersTransferDownloadType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -63721,14 +62400,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileTransfersTransferDownloadType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileTransfersTransferDownloadType, self)._process_custom_annotations(annotation_type, field_path, processor) FileTransfersTransferDownloadType_validator = bv.Struct(FileTransfersTransferDownloadType) - class FileTransfersTransferSendDetails(bb.Struct): """ Sent transfer. @@ -63738,12 +62413,13 @@ class FileTransfersTransferSendDetails(bb.Struct): """ __slots__ = [ - "_file_transfer_id_value", + '_file_transfer_id_value', ] _has_required_fields = True - def __init__(self, file_transfer_id=None): + def __init__(self, + file_transfer_id=None): self._file_transfer_id_value = bb.NOT_SET if file_transfer_id is not None: self.file_transfer_id = file_transfer_id @@ -63752,22 +62428,20 @@ def __init__(self, file_transfer_id=None): file_transfer_id = bb.Attribute("file_transfer_id") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileTransfersTransferSendDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileTransfersTransferSendDetails, self)._process_custom_annotations(annotation_type, field_path, processor) FileTransfersTransferSendDetails_validator = bv.Struct(FileTransfersTransferSendDetails) - class FileTransfersTransferSendType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -63776,14 +62450,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileTransfersTransferSendType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileTransfersTransferSendType, self)._process_custom_annotations(annotation_type, field_path, processor) FileTransfersTransferSendType_validator = bv.Struct(FileTransfersTransferSendType) - class FileTransfersTransferViewDetails(bb.Struct): """ Viewed transfer. @@ -63793,12 +62463,13 @@ class FileTransfersTransferViewDetails(bb.Struct): """ __slots__ = [ - "_file_transfer_id_value", + '_file_transfer_id_value', ] _has_required_fields = True - def __init__(self, file_transfer_id=None): + def __init__(self, + file_transfer_id=None): self._file_transfer_id_value = bb.NOT_SET if file_transfer_id is not None: self.file_transfer_id = file_transfer_id @@ -63807,22 +62478,20 @@ def __init__(self, file_transfer_id=None): file_transfer_id = bb.Attribute("file_transfer_id") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileTransfersTransferViewDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileTransfersTransferViewDetails, self)._process_custom_annotations(annotation_type, field_path, processor) FileTransfersTransferViewDetails_validator = bv.Struct(FileTransfersTransferViewDetails) - class FileTransfersTransferViewType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -63831,14 +62500,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileTransfersTransferViewType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileTransfersTransferViewType, self)._process_custom_annotations(annotation_type, field_path, processor) FileTransfersTransferViewType_validator = bv.Struct(FileTransfersTransferViewType) - class FileUnlikeCommentDetails(bb.Struct): """ Unliked file comment. @@ -63848,12 +62513,13 @@ class FileUnlikeCommentDetails(bb.Struct): """ __slots__ = [ - "_comment_text_value", + '_comment_text_value', ] _has_required_fields = False - def __init__(self, comment_text=None): + def __init__(self, + comment_text=None): self._comment_text_value = bb.NOT_SET if comment_text is not None: self.comment_text = comment_text @@ -63862,22 +62528,20 @@ def __init__(self, comment_text=None): comment_text = bb.Attribute("comment_text", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileUnlikeCommentDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileUnlikeCommentDetails, self)._process_custom_annotations(annotation_type, field_path, processor) FileUnlikeCommentDetails_validator = bv.Struct(FileUnlikeCommentDetails) - class FileUnlikeCommentType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -63886,14 +62550,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileUnlikeCommentType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileUnlikeCommentType, self)._process_custom_annotations(annotation_type, field_path, processor) FileUnlikeCommentType_validator = bv.Struct(FileUnlikeCommentType) - class FileUnresolveCommentDetails(bb.Struct): """ Unresolved file comment. @@ -63903,12 +62563,13 @@ class FileUnresolveCommentDetails(bb.Struct): """ __slots__ = [ - "_comment_text_value", + '_comment_text_value', ] _has_required_fields = False - def __init__(self, comment_text=None): + def __init__(self, + comment_text=None): self._comment_text_value = bb.NOT_SET if comment_text is not None: self.comment_text = comment_text @@ -63917,22 +62578,20 @@ def __init__(self, comment_text=None): comment_text = bb.Attribute("comment_text", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileUnresolveCommentDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileUnresolveCommentDetails, self)._process_custom_annotations(annotation_type, field_path, processor) FileUnresolveCommentDetails_validator = bv.Struct(FileUnresolveCommentDetails) - class FileUnresolveCommentType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -63941,14 +62600,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileUnresolveCommentType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileUnresolveCommentType, self)._process_custom_annotations(annotation_type, field_path, processor) FileUnresolveCommentType_validator = bv.Struct(FileUnresolveCommentType) - class FlexibleFileNamesPolicy(bb.Union): """ Flexible file names policy @@ -63958,7 +62613,7 @@ class FlexibleFileNamesPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition off = None # Attribute is overwritten below the class definition @@ -63980,7 +62635,7 @@ def is_off(self): :rtype: bool """ - return self._tag == "off" + return self._tag == 'off' def is_off_default(self): """ @@ -63988,7 +62643,7 @@ def is_off_default(self): :rtype: bool """ - return self._tag == "off_default" + return self._tag == 'off_default' def is_optional(self): """ @@ -63996,7 +62651,7 @@ def is_optional(self): :rtype: bool """ - return self._tag == "optional" + return self._tag == 'optional' def is_optional_default(self): """ @@ -64004,7 +62659,7 @@ def is_optional_default(self): :rtype: bool """ - return self._tag == "optional_default" + return self._tag == 'optional_default' def is_required(self): """ @@ -64012,7 +62667,7 @@ def is_required(self): :rtype: bool """ - return self._tag == "required" + return self._tag == 'required' def is_required_default(self): """ @@ -64020,7 +62675,7 @@ def is_required_default(self): :rtype: bool """ - return self._tag == "required_default" + return self._tag == 'required_default' def is_other(self): """ @@ -64028,17 +62683,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FlexibleFileNamesPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FlexibleFileNamesPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) FlexibleFileNamesPolicy_validator = bv.Union(FlexibleFileNamesPolicy) - class FlexibleFileNamesPolicyChangedDetails(bb.Struct): """ Changed flexible file names policy for team. @@ -64051,13 +62702,15 @@ class FlexibleFileNamesPolicyChangedDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -64072,22 +62725,20 @@ def __init__(self, new_value=None, previous_value=None): previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FlexibleFileNamesPolicyChangedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FlexibleFileNamesPolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) FlexibleFileNamesPolicyChangedDetails_validator = bv.Struct(FlexibleFileNamesPolicyChangedDetails) - class FlexibleFileNamesPolicyChangedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -64096,14 +62747,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FlexibleFileNamesPolicyChangedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FlexibleFileNamesPolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) FlexibleFileNamesPolicyChangedType_validator = bv.Struct(FlexibleFileNamesPolicyChangedType) - class FolderLinkRestrictionPolicy(bb.Union): """ Policy for deciding whether applying link restrictions on all team owned @@ -64114,7 +62761,7 @@ class FolderLinkRestrictionPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -64128,7 +62775,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == "disabled" + return self._tag == 'disabled' def is_enabled(self): """ @@ -64136,7 +62783,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == "enabled" + return self._tag == 'enabled' def is_other(self): """ @@ -64144,17 +62791,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FolderLinkRestrictionPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FolderLinkRestrictionPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) FolderLinkRestrictionPolicy_validator = bv.Union(FolderLinkRestrictionPolicy) - class FolderLinkRestrictionPolicyChangedDetails(bb.Struct): """ Changed folder link restrictions policy for team. @@ -64166,13 +62809,15 @@ class FolderLinkRestrictionPolicyChangedDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -64187,24 +62832,20 @@ def __init__(self, new_value=None, previous_value=None): 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 - ) - - -FolderLinkRestrictionPolicyChangedDetails_validator = bv.Struct( - FolderLinkRestrictionPolicyChangedDetails -) + super(FolderLinkRestrictionPolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +FolderLinkRestrictionPolicyChangedDetails_validator = bv.Struct(FolderLinkRestrictionPolicyChangedDetails) class FolderLinkRestrictionPolicyChangedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -64213,14 +62854,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FolderLinkRestrictionPolicyChangedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FolderLinkRestrictionPolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) FolderLinkRestrictionPolicyChangedType_validator = bv.Struct(FolderLinkRestrictionPolicyChangedType) - class FolderLogInfo(FileOrFolderLogInfo): """ Folder's logged information. @@ -64230,20 +62867,21 @@ class FolderLogInfo(FileOrFolderLogInfo): """ __slots__ = [ - "_file_count_value", + '_file_count_value', ] _has_required_fields = True - def __init__( - self, - path=None, - display_name=None, - file_id=None, - file_size=None, - file_count=None, - ): - super(FolderLogInfo, self).__init__(path, display_name, file_id, file_size) + def __init__(self, + path=None, + display_name=None, + file_id=None, + file_size=None, + file_count=None): + super(FolderLogInfo, self).__init__(path, + display_name, + file_id, + file_size) self._file_count_value = bb.NOT_SET if file_count is not None: self.file_count = file_count @@ -64252,14 +62890,10 @@ def __init__( file_count = bb.Attribute("file_count", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FolderLogInfo, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FolderLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) FolderLogInfo_validator = bv.Struct(FolderLogInfo) - class FolderOverviewDescriptionChangedDetails(bb.Struct): """ Updated folder overview. @@ -64269,12 +62903,13 @@ class FolderOverviewDescriptionChangedDetails(bb.Struct): """ __slots__ = [ - "_folder_overview_location_asset_value", + '_folder_overview_location_asset_value', ] _has_required_fields = True - def __init__(self, folder_overview_location_asset=None): + def __init__(self, + folder_overview_location_asset=None): self._folder_overview_location_asset_value = bb.NOT_SET if folder_overview_location_asset is not None: self.folder_overview_location_asset = folder_overview_location_asset @@ -64283,24 +62918,20 @@ def __init__(self, folder_overview_location_asset=None): 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 - ) - - -FolderOverviewDescriptionChangedDetails_validator = bv.Struct( - FolderOverviewDescriptionChangedDetails -) + super(FolderOverviewDescriptionChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +FolderOverviewDescriptionChangedDetails_validator = bv.Struct(FolderOverviewDescriptionChangedDetails) class FolderOverviewDescriptionChangedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -64309,14 +62940,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FolderOverviewDescriptionChangedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FolderOverviewDescriptionChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) FolderOverviewDescriptionChangedType_validator = bv.Struct(FolderOverviewDescriptionChangedType) - class FolderOverviewItemPinnedDetails(bb.Struct): """ Pinned item to folder overview. @@ -64328,13 +62955,15 @@ class FolderOverviewItemPinnedDetails(bb.Struct): """ __slots__ = [ - "_folder_overview_location_asset_value", - "_pinned_items_asset_indices_value", + '_folder_overview_location_asset_value', + '_pinned_items_asset_indices_value', ] _has_required_fields = True - def __init__(self, folder_overview_location_asset=None, pinned_items_asset_indices=None): + def __init__(self, + folder_overview_location_asset=None, + pinned_items_asset_indices=None): self._folder_overview_location_asset_value = bb.NOT_SET self._pinned_items_asset_indices_value = bb.NOT_SET if folder_overview_location_asset is not None: @@ -64349,22 +62978,20 @@ def __init__(self, folder_overview_location_asset=None, pinned_items_asset_indic pinned_items_asset_indices = bb.Attribute("pinned_items_asset_indices") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FolderOverviewItemPinnedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FolderOverviewItemPinnedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) FolderOverviewItemPinnedDetails_validator = bv.Struct(FolderOverviewItemPinnedDetails) - class FolderOverviewItemPinnedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -64373,14 +63000,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FolderOverviewItemPinnedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FolderOverviewItemPinnedType, self)._process_custom_annotations(annotation_type, field_path, processor) FolderOverviewItemPinnedType_validator = bv.Struct(FolderOverviewItemPinnedType) - class FolderOverviewItemUnpinnedDetails(bb.Struct): """ Unpinned item from folder overview. @@ -64392,13 +63015,15 @@ class FolderOverviewItemUnpinnedDetails(bb.Struct): """ __slots__ = [ - "_folder_overview_location_asset_value", - "_pinned_items_asset_indices_value", + '_folder_overview_location_asset_value', + '_pinned_items_asset_indices_value', ] _has_required_fields = True - def __init__(self, folder_overview_location_asset=None, pinned_items_asset_indices=None): + def __init__(self, + folder_overview_location_asset=None, + pinned_items_asset_indices=None): self._folder_overview_location_asset_value = bb.NOT_SET self._pinned_items_asset_indices_value = bb.NOT_SET if folder_overview_location_asset is not None: @@ -64413,22 +63038,20 @@ def __init__(self, folder_overview_location_asset=None, pinned_items_asset_indic pinned_items_asset_indices = bb.Attribute("pinned_items_asset_indices") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FolderOverviewItemUnpinnedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FolderOverviewItemUnpinnedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) FolderOverviewItemUnpinnedDetails_validator = bv.Struct(FolderOverviewItemUnpinnedDetails) - class FolderOverviewItemUnpinnedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -64437,14 +63060,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FolderOverviewItemUnpinnedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FolderOverviewItemUnpinnedType, self)._process_custom_annotations(annotation_type, field_path, processor) FolderOverviewItemUnpinnedType_validator = bv.Struct(FolderOverviewItemUnpinnedType) - class GeoLocationLogInfo(bb.Struct): """ Geographic location details. @@ -64460,15 +63079,19 @@ class GeoLocationLogInfo(bb.Struct): """ __slots__ = [ - "_city_value", - "_region_value", - "_country_value", - "_ip_address_value", + '_city_value', + '_region_value', + '_country_value', + '_ip_address_value', ] _has_required_fields = True - def __init__(self, ip_address=None, city=None, region=None, country=None): + def __init__(self, + ip_address=None, + city=None, + region=None, + country=None): self._city_value = bb.NOT_SET self._region_value = bb.NOT_SET self._country_value = bb.NOT_SET @@ -64495,14 +63118,10 @@ def __init__(self, ip_address=None, city=None, region=None, country=None): ip_address = bb.Attribute("ip_address") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GeoLocationLogInfo, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GeoLocationLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) GeoLocationLogInfo_validator = bv.Struct(GeoLocationLogInfo) - class GetTeamEventsArg(bb.Struct): """ :ivar GetTeamEventsArg.limit: @@ -64525,16 +63144,21 @@ class GetTeamEventsArg(bb.Struct): """ __slots__ = [ - "_limit_value", - "_account_id_value", - "_time_value", - "_category_value", - "_event_type_value", + '_limit_value', + '_account_id_value', + '_time_value', + '_category_value', + '_event_type_value', ] _has_required_fields = False - def __init__(self, limit=None, account_id=None, time=None, category=None, event_type=None): + def __init__(self, + limit=None, + account_id=None, + time=None, + category=None, + event_type=None): self._limit_value = bb.NOT_SET self._account_id_value = bb.NOT_SET self._time_value = bb.NOT_SET @@ -64567,14 +63191,10 @@ def __init__(self, limit=None, account_id=None, time=None, category=None, event_ event_type = bb.Attribute("event_type", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetTeamEventsArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GetTeamEventsArg, self)._process_custom_annotations(annotation_type, field_path, processor) GetTeamEventsArg_validator = bv.Struct(GetTeamEventsArg) - class GetTeamEventsContinueArg(bb.Struct): """ :ivar GetTeamEventsContinueArg.cursor: @@ -64582,12 +63202,13 @@ class GetTeamEventsContinueArg(bb.Struct): """ __slots__ = [ - "_cursor_value", + '_cursor_value', ] _has_required_fields = True - def __init__(self, cursor=None): + def __init__(self, + cursor=None): self._cursor_value = bb.NOT_SET if cursor is not None: self.cursor = cursor @@ -64596,14 +63217,10 @@ def __init__(self, cursor=None): cursor = bb.Attribute("cursor") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetTeamEventsContinueArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GetTeamEventsContinueArg, self)._process_custom_annotations(annotation_type, field_path, processor) GetTeamEventsContinueArg_validator = bv.Struct(GetTeamEventsContinueArg) - class GetTeamEventsContinueError(bb.Union): """ Errors that can be raised when calling @@ -64627,7 +63244,7 @@ class GetTeamEventsContinueError(bb.Union): :vartype GetTeamEventsContinueError.reset: datetime.datetime """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition bad_cursor = None # Attribute is overwritten below the class definition @@ -64642,7 +63259,7 @@ def reset(cls, val): :param datetime.datetime val: :rtype: GetTeamEventsContinueError """ - return cls("reset", val) + return cls('reset', val) def is_bad_cursor(self): """ @@ -64650,7 +63267,7 @@ def is_bad_cursor(self): :rtype: bool """ - return self._tag == "bad_cursor" + return self._tag == 'bad_cursor' def is_reset(self): """ @@ -64658,7 +63275,7 @@ def is_reset(self): :rtype: bool """ - return self._tag == "reset" + return self._tag == 'reset' def is_other(self): """ @@ -64666,7 +63283,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_reset(self): """ @@ -64688,14 +63305,10 @@ def get_reset(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetTeamEventsContinueError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GetTeamEventsContinueError, self)._process_custom_annotations(annotation_type, field_path, processor) GetTeamEventsContinueError_validator = bv.Union(GetTeamEventsContinueError) - class GetTeamEventsError(bb.Union): """ Errors that can be raised when calling @@ -64714,7 +63327,7 @@ class GetTeamEventsError(bb.Union): for the same call. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition account_id_not_found = None # Attribute is overwritten below the class definition @@ -64730,7 +63343,7 @@ def is_account_id_not_found(self): :rtype: bool """ - return self._tag == "account_id_not_found" + return self._tag == 'account_id_not_found' def is_invalid_time_range(self): """ @@ -64738,7 +63351,7 @@ def is_invalid_time_range(self): :rtype: bool """ - return self._tag == "invalid_time_range" + return self._tag == 'invalid_time_range' def is_invalid_filters(self): """ @@ -64746,7 +63359,7 @@ def is_invalid_filters(self): :rtype: bool """ - return self._tag == "invalid_filters" + return self._tag == 'invalid_filters' def is_other(self): """ @@ -64754,17 +63367,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetTeamEventsError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GetTeamEventsError, self)._process_custom_annotations(annotation_type, field_path, processor) GetTeamEventsError_validator = bv.Union(GetTeamEventsError) - class GetTeamEventsResult(bb.Struct): """ :ivar GetTeamEventsResult.events: @@ -64790,14 +63399,17 @@ class GetTeamEventsResult(bb.Struct): """ __slots__ = [ - "_events_value", - "_cursor_value", - "_has_more_value", + '_events_value', + '_cursor_value', + '_has_more_value', ] _has_required_fields = True - def __init__(self, events=None, cursor=None, has_more=None): + def __init__(self, + events=None, + cursor=None, + has_more=None): self._events_value = bb.NOT_SET self._cursor_value = bb.NOT_SET self._has_more_value = bb.NOT_SET @@ -64818,14 +63430,10 @@ def __init__(self, events=None, cursor=None, has_more=None): has_more = bb.Attribute("has_more") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetTeamEventsResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GetTeamEventsResult, self)._process_custom_annotations(annotation_type, field_path, processor) GetTeamEventsResult_validator = bv.Struct(GetTeamEventsResult) - class GoogleSsoChangePolicyDetails(bb.Struct): """ Enabled/disabled Google single sign-on for team. @@ -64838,13 +63446,15 @@ class GoogleSsoChangePolicyDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -64859,22 +63469,20 @@ def __init__(self, new_value=None, previous_value=None): previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GoogleSsoChangePolicyDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GoogleSsoChangePolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) GoogleSsoChangePolicyDetails_validator = bv.Struct(GoogleSsoChangePolicyDetails) - class GoogleSsoChangePolicyType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -64883,14 +63491,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GoogleSsoChangePolicyType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GoogleSsoChangePolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) GoogleSsoChangePolicyType_validator = bv.Struct(GoogleSsoChangePolicyType) - class GoogleSsoPolicy(bb.Union): """ Google SSO policy @@ -64900,7 +63504,7 @@ class GoogleSsoPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -64914,7 +63518,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == "disabled" + return self._tag == 'disabled' def is_enabled(self): """ @@ -64922,7 +63526,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == "enabled" + return self._tag == 'enabled' def is_other(self): """ @@ -64930,17 +63534,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GoogleSsoPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GoogleSsoPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) GoogleSsoPolicy_validator = bv.Union(GoogleSsoPolicy) - class GovernancePolicyAddFolderFailedDetails(bb.Struct): """ Couldn't add a folder to a policy. @@ -64958,23 +63558,21 @@ class GovernancePolicyAddFolderFailedDetails(bb.Struct): """ __slots__ = [ - "_governance_policy_id_value", - "_name_value", - "_policy_type_value", - "_folder_value", - "_reason_value", + '_governance_policy_id_value', + '_name_value', + '_policy_type_value', + '_folder_value', + '_reason_value', ] _has_required_fields = True - def __init__( - self, - governance_policy_id=None, - name=None, - folder=None, - policy_type=None, - reason=None, - ): + def __init__(self, + governance_policy_id=None, + name=None, + folder=None, + policy_type=None, + reason=None): self._governance_policy_id_value = bb.NOT_SET self._name_value = bb.NOT_SET self._policy_type_value = bb.NOT_SET @@ -65007,22 +63605,20 @@ def __init__( reason = bb.Attribute("reason", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GovernancePolicyAddFolderFailedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GovernancePolicyAddFolderFailedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) GovernancePolicyAddFolderFailedDetails_validator = bv.Struct(GovernancePolicyAddFolderFailedDetails) - class GovernancePolicyAddFolderFailedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -65031,14 +63627,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GovernancePolicyAddFolderFailedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GovernancePolicyAddFolderFailedType, self)._process_custom_annotations(annotation_type, field_path, processor) GovernancePolicyAddFolderFailedType_validator = bv.Struct(GovernancePolicyAddFolderFailedType) - class GovernancePolicyAddFoldersDetails(bb.Struct): """ Added folders to policy. @@ -65054,15 +63646,19 @@ class GovernancePolicyAddFoldersDetails(bb.Struct): """ __slots__ = [ - "_governance_policy_id_value", - "_name_value", - "_policy_type_value", - "_folders_value", + '_governance_policy_id_value', + '_name_value', + '_policy_type_value', + '_folders_value', ] _has_required_fields = True - def __init__(self, governance_policy_id=None, name=None, policy_type=None, folders=None): + def __init__(self, + governance_policy_id=None, + name=None, + policy_type=None, + folders=None): self._governance_policy_id_value = bb.NOT_SET self._name_value = bb.NOT_SET self._policy_type_value = bb.NOT_SET @@ -65089,22 +63685,20 @@ def __init__(self, governance_policy_id=None, name=None, policy_type=None, folde folders = bb.Attribute("folders", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GovernancePolicyAddFoldersDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GovernancePolicyAddFoldersDetails, self)._process_custom_annotations(annotation_type, field_path, processor) GovernancePolicyAddFoldersDetails_validator = bv.Struct(GovernancePolicyAddFoldersDetails) - class GovernancePolicyAddFoldersType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -65113,14 +63707,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GovernancePolicyAddFoldersType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GovernancePolicyAddFoldersType, self)._process_custom_annotations(annotation_type, field_path, processor) GovernancePolicyAddFoldersType_validator = bv.Struct(GovernancePolicyAddFoldersType) - class GovernancePolicyContentDisposedDetails(bb.Struct): """ Content disposed. @@ -65136,21 +63726,19 @@ class GovernancePolicyContentDisposedDetails(bb.Struct): """ __slots__ = [ - "_governance_policy_id_value", - "_name_value", - "_policy_type_value", - "_disposition_type_value", + '_governance_policy_id_value', + '_name_value', + '_policy_type_value', + '_disposition_type_value', ] _has_required_fields = True - def __init__( - self, - governance_policy_id=None, - name=None, - disposition_type=None, - policy_type=None, - ): + def __init__(self, + governance_policy_id=None, + name=None, + disposition_type=None, + policy_type=None): self._governance_policy_id_value = bb.NOT_SET self._name_value = bb.NOT_SET self._policy_type_value = bb.NOT_SET @@ -65177,22 +63765,20 @@ def __init__( disposition_type = bb.Attribute("disposition_type", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GovernancePolicyContentDisposedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GovernancePolicyContentDisposedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) GovernancePolicyContentDisposedDetails_validator = bv.Struct(GovernancePolicyContentDisposedDetails) - class GovernancePolicyContentDisposedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -65201,14 +63787,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GovernancePolicyContentDisposedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GovernancePolicyContentDisposedType, self)._process_custom_annotations(annotation_type, field_path, processor) GovernancePolicyContentDisposedType_validator = bv.Struct(GovernancePolicyContentDisposedType) - class GovernancePolicyCreateDetails(bb.Struct): """ Activated a new policy. @@ -65226,23 +63808,21 @@ class GovernancePolicyCreateDetails(bb.Struct): """ __slots__ = [ - "_governance_policy_id_value", - "_name_value", - "_policy_type_value", - "_duration_value", - "_folders_value", + '_governance_policy_id_value', + '_name_value', + '_policy_type_value', + '_duration_value', + '_folders_value', ] _has_required_fields = True - def __init__( - self, - governance_policy_id=None, - name=None, - duration=None, - policy_type=None, - folders=None, - ): + def __init__(self, + governance_policy_id=None, + name=None, + duration=None, + policy_type=None, + folders=None): self._governance_policy_id_value = bb.NOT_SET self._name_value = bb.NOT_SET self._policy_type_value = bb.NOT_SET @@ -65275,22 +63855,20 @@ def __init__( folders = bb.Attribute("folders", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GovernancePolicyCreateDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GovernancePolicyCreateDetails, self)._process_custom_annotations(annotation_type, field_path, processor) GovernancePolicyCreateDetails_validator = bv.Struct(GovernancePolicyCreateDetails) - class GovernancePolicyCreateType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -65299,14 +63877,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GovernancePolicyCreateType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GovernancePolicyCreateType, self)._process_custom_annotations(annotation_type, field_path, processor) GovernancePolicyCreateType_validator = bv.Struct(GovernancePolicyCreateType) - class GovernancePolicyDeleteDetails(bb.Struct): """ Deleted a policy. @@ -65320,14 +63894,17 @@ class GovernancePolicyDeleteDetails(bb.Struct): """ __slots__ = [ - "_governance_policy_id_value", - "_name_value", - "_policy_type_value", + '_governance_policy_id_value', + '_name_value', + '_policy_type_value', ] _has_required_fields = True - def __init__(self, governance_policy_id=None, name=None, policy_type=None): + def __init__(self, + governance_policy_id=None, + name=None, + policy_type=None): self._governance_policy_id_value = bb.NOT_SET self._name_value = bb.NOT_SET self._policy_type_value = bb.NOT_SET @@ -65348,22 +63925,20 @@ def __init__(self, governance_policy_id=None, name=None, policy_type=None): policy_type = bb.Attribute("policy_type", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GovernancePolicyDeleteDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GovernancePolicyDeleteDetails, self)._process_custom_annotations(annotation_type, field_path, processor) GovernancePolicyDeleteDetails_validator = bv.Struct(GovernancePolicyDeleteDetails) - class GovernancePolicyDeleteType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -65372,14 +63947,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GovernancePolicyDeleteType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GovernancePolicyDeleteType, self)._process_custom_annotations(annotation_type, field_path, processor) GovernancePolicyDeleteType_validator = bv.Struct(GovernancePolicyDeleteType) - class GovernancePolicyEditDetailsDetails(bb.Struct): """ Edited policy. @@ -65399,25 +63970,23 @@ class GovernancePolicyEditDetailsDetails(bb.Struct): """ __slots__ = [ - "_governance_policy_id_value", - "_name_value", - "_policy_type_value", - "_attribute_value", - "_previous_value_value", - "_new_value_value", + '_governance_policy_id_value', + '_name_value', + '_policy_type_value', + '_attribute_value', + '_previous_value_value', + '_new_value_value', ] _has_required_fields = True - def __init__( - self, - governance_policy_id=None, - name=None, - attribute=None, - previous_value=None, - new_value=None, - policy_type=None, - ): + def __init__(self, + governance_policy_id=None, + name=None, + attribute=None, + previous_value=None, + new_value=None, + policy_type=None): self._governance_policy_id_value = bb.NOT_SET self._name_value = bb.NOT_SET self._policy_type_value = bb.NOT_SET @@ -65456,22 +64025,20 @@ def __init__( new_value = bb.Attribute("new_value") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GovernancePolicyEditDetailsDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GovernancePolicyEditDetailsDetails, self)._process_custom_annotations(annotation_type, field_path, processor) GovernancePolicyEditDetailsDetails_validator = bv.Struct(GovernancePolicyEditDetailsDetails) - class GovernancePolicyEditDetailsType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -65480,14 +64047,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GovernancePolicyEditDetailsType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GovernancePolicyEditDetailsType, self)._process_custom_annotations(annotation_type, field_path, processor) GovernancePolicyEditDetailsType_validator = bv.Struct(GovernancePolicyEditDetailsType) - class GovernancePolicyEditDurationDetails(bb.Struct): """ Changed policy duration. @@ -65505,23 +64068,21 @@ class GovernancePolicyEditDurationDetails(bb.Struct): """ __slots__ = [ - "_governance_policy_id_value", - "_name_value", - "_policy_type_value", - "_previous_value_value", - "_new_value_value", + '_governance_policy_id_value', + '_name_value', + '_policy_type_value', + '_previous_value_value', + '_new_value_value', ] _has_required_fields = True - def __init__( - self, - governance_policy_id=None, - name=None, - previous_value=None, - new_value=None, - policy_type=None, - ): + def __init__(self, + governance_policy_id=None, + name=None, + previous_value=None, + new_value=None, + policy_type=None): self._governance_policy_id_value = bb.NOT_SET self._name_value = bb.NOT_SET self._policy_type_value = bb.NOT_SET @@ -65554,22 +64115,20 @@ def __init__( new_value = bb.Attribute("new_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GovernancePolicyEditDurationDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GovernancePolicyEditDurationDetails, self)._process_custom_annotations(annotation_type, field_path, processor) GovernancePolicyEditDurationDetails_validator = bv.Struct(GovernancePolicyEditDurationDetails) - class GovernancePolicyEditDurationType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -65578,14 +64137,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GovernancePolicyEditDurationType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GovernancePolicyEditDurationType, self)._process_custom_annotations(annotation_type, field_path, processor) GovernancePolicyEditDurationType_validator = bv.Struct(GovernancePolicyEditDurationType) - class GovernancePolicyExportCreatedDetails(bb.Struct): """ Created a policy download. @@ -65601,15 +64156,19 @@ class GovernancePolicyExportCreatedDetails(bb.Struct): """ __slots__ = [ - "_governance_policy_id_value", - "_name_value", - "_policy_type_value", - "_export_name_value", + '_governance_policy_id_value', + '_name_value', + '_policy_type_value', + '_export_name_value', ] _has_required_fields = True - def __init__(self, governance_policy_id=None, name=None, export_name=None, policy_type=None): + def __init__(self, + governance_policy_id=None, + name=None, + export_name=None, + policy_type=None): self._governance_policy_id_value = bb.NOT_SET self._name_value = bb.NOT_SET self._policy_type_value = bb.NOT_SET @@ -65636,22 +64195,20 @@ def __init__(self, governance_policy_id=None, name=None, export_name=None, polic export_name = bb.Attribute("export_name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GovernancePolicyExportCreatedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GovernancePolicyExportCreatedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) GovernancePolicyExportCreatedDetails_validator = bv.Struct(GovernancePolicyExportCreatedDetails) - class GovernancePolicyExportCreatedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -65660,14 +64217,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GovernancePolicyExportCreatedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GovernancePolicyExportCreatedType, self)._process_custom_annotations(annotation_type, field_path, processor) GovernancePolicyExportCreatedType_validator = bv.Struct(GovernancePolicyExportCreatedType) - class GovernancePolicyExportRemovedDetails(bb.Struct): """ Removed a policy download. @@ -65683,15 +64236,19 @@ class GovernancePolicyExportRemovedDetails(bb.Struct): """ __slots__ = [ - "_governance_policy_id_value", - "_name_value", - "_policy_type_value", - "_export_name_value", + '_governance_policy_id_value', + '_name_value', + '_policy_type_value', + '_export_name_value', ] _has_required_fields = True - def __init__(self, governance_policy_id=None, name=None, export_name=None, policy_type=None): + def __init__(self, + governance_policy_id=None, + name=None, + export_name=None, + policy_type=None): self._governance_policy_id_value = bb.NOT_SET self._name_value = bb.NOT_SET self._policy_type_value = bb.NOT_SET @@ -65718,22 +64275,20 @@ def __init__(self, governance_policy_id=None, name=None, export_name=None, polic export_name = bb.Attribute("export_name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GovernancePolicyExportRemovedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GovernancePolicyExportRemovedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) GovernancePolicyExportRemovedDetails_validator = bv.Struct(GovernancePolicyExportRemovedDetails) - class GovernancePolicyExportRemovedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -65742,14 +64297,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GovernancePolicyExportRemovedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GovernancePolicyExportRemovedType, self)._process_custom_annotations(annotation_type, field_path, processor) GovernancePolicyExportRemovedType_validator = bv.Struct(GovernancePolicyExportRemovedType) - class GovernancePolicyRemoveFoldersDetails(bb.Struct): """ Removed folders from policy. @@ -65767,23 +64318,21 @@ class GovernancePolicyRemoveFoldersDetails(bb.Struct): """ __slots__ = [ - "_governance_policy_id_value", - "_name_value", - "_policy_type_value", - "_folders_value", - "_reason_value", + '_governance_policy_id_value', + '_name_value', + '_policy_type_value', + '_folders_value', + '_reason_value', ] _has_required_fields = True - def __init__( - self, - governance_policy_id=None, - name=None, - policy_type=None, - folders=None, - reason=None, - ): + def __init__(self, + governance_policy_id=None, + name=None, + policy_type=None, + folders=None, + reason=None): self._governance_policy_id_value = bb.NOT_SET self._name_value = bb.NOT_SET self._policy_type_value = bb.NOT_SET @@ -65816,22 +64365,20 @@ def __init__( reason = bb.Attribute("reason", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GovernancePolicyRemoveFoldersDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GovernancePolicyRemoveFoldersDetails, self)._process_custom_annotations(annotation_type, field_path, processor) GovernancePolicyRemoveFoldersDetails_validator = bv.Struct(GovernancePolicyRemoveFoldersDetails) - class GovernancePolicyRemoveFoldersType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -65840,14 +64387,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GovernancePolicyRemoveFoldersType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GovernancePolicyRemoveFoldersType, self)._process_custom_annotations(annotation_type, field_path, processor) GovernancePolicyRemoveFoldersType_validator = bv.Struct(GovernancePolicyRemoveFoldersType) - class GovernancePolicyReportCreatedDetails(bb.Struct): """ Created a summary report for a policy. @@ -65861,14 +64404,17 @@ class GovernancePolicyReportCreatedDetails(bb.Struct): """ __slots__ = [ - "_governance_policy_id_value", - "_name_value", - "_policy_type_value", + '_governance_policy_id_value', + '_name_value', + '_policy_type_value', ] _has_required_fields = True - def __init__(self, governance_policy_id=None, name=None, policy_type=None): + def __init__(self, + governance_policy_id=None, + name=None, + policy_type=None): self._governance_policy_id_value = bb.NOT_SET self._name_value = bb.NOT_SET self._policy_type_value = bb.NOT_SET @@ -65889,22 +64435,20 @@ def __init__(self, governance_policy_id=None, name=None, policy_type=None): policy_type = bb.Attribute("policy_type", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GovernancePolicyReportCreatedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GovernancePolicyReportCreatedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) GovernancePolicyReportCreatedDetails_validator = bv.Struct(GovernancePolicyReportCreatedDetails) - class GovernancePolicyReportCreatedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -65913,14 +64457,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GovernancePolicyReportCreatedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GovernancePolicyReportCreatedType, self)._process_custom_annotations(annotation_type, field_path, processor) GovernancePolicyReportCreatedType_validator = bv.Struct(GovernancePolicyReportCreatedType) - class GovernancePolicyZipPartDownloadedDetails(bb.Struct): """ Downloaded content from a policy. @@ -65938,23 +64478,21 @@ class GovernancePolicyZipPartDownloadedDetails(bb.Struct): """ __slots__ = [ - "_governance_policy_id_value", - "_name_value", - "_policy_type_value", - "_export_name_value", - "_part_value", + '_governance_policy_id_value', + '_name_value', + '_policy_type_value', + '_export_name_value', + '_part_value', ] _has_required_fields = True - def __init__( - self, - governance_policy_id=None, - name=None, - export_name=None, - policy_type=None, - part=None, - ): + def __init__(self, + governance_policy_id=None, + name=None, + export_name=None, + policy_type=None, + part=None): self._governance_policy_id_value = bb.NOT_SET self._name_value = bb.NOT_SET self._policy_type_value = bb.NOT_SET @@ -65987,24 +64525,20 @@ def __init__( 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 - ) - - -GovernancePolicyZipPartDownloadedDetails_validator = bv.Struct( - GovernancePolicyZipPartDownloadedDetails -) + super(GovernancePolicyZipPartDownloadedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +GovernancePolicyZipPartDownloadedDetails_validator = bv.Struct(GovernancePolicyZipPartDownloadedDetails) class GovernancePolicyZipPartDownloadedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -66013,14 +64547,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GovernancePolicyZipPartDownloadedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GovernancePolicyZipPartDownloadedType, self)._process_custom_annotations(annotation_type, field_path, processor) GovernancePolicyZipPartDownloadedType_validator = bv.Struct(GovernancePolicyZipPartDownloadedType) - class GroupAddExternalIdDetails(bb.Struct): """ Added external ID for group. @@ -66030,12 +64560,13 @@ class GroupAddExternalIdDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", + '_new_value_value', ] _has_required_fields = True - def __init__(self, new_value=None): + def __init__(self, + new_value=None): self._new_value_value = bb.NOT_SET if new_value is not None: self.new_value = new_value @@ -66044,22 +64575,20 @@ def __init__(self, new_value=None): new_value = bb.Attribute("new_value") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupAddExternalIdDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GroupAddExternalIdDetails, self)._process_custom_annotations(annotation_type, field_path, processor) GroupAddExternalIdDetails_validator = bv.Struct(GroupAddExternalIdDetails) - class GroupAddExternalIdType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -66068,14 +64597,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupAddExternalIdType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GroupAddExternalIdType, self)._process_custom_annotations(annotation_type, field_path, processor) GroupAddExternalIdType_validator = bv.Struct(GroupAddExternalIdType) - class GroupAddMemberDetails(bb.Struct): """ Added team members to group. @@ -66085,12 +64610,13 @@ class GroupAddMemberDetails(bb.Struct): """ __slots__ = [ - "_is_group_owner_value", + '_is_group_owner_value', ] _has_required_fields = True - def __init__(self, is_group_owner=None): + def __init__(self, + is_group_owner=None): self._is_group_owner_value = bb.NOT_SET if is_group_owner is not None: self.is_group_owner = is_group_owner @@ -66099,22 +64625,20 @@ def __init__(self, is_group_owner=None): is_group_owner = bb.Attribute("is_group_owner") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupAddMemberDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GroupAddMemberDetails, self)._process_custom_annotations(annotation_type, field_path, processor) GroupAddMemberDetails_validator = bv.Struct(GroupAddMemberDetails) - class GroupAddMemberType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -66123,14 +64647,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupAddMemberType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GroupAddMemberType, self)._process_custom_annotations(annotation_type, field_path, processor) GroupAddMemberType_validator = bv.Struct(GroupAddMemberType) - class GroupChangeExternalIdDetails(bb.Struct): """ Changed external ID for group. @@ -66142,13 +64662,15 @@ class GroupChangeExternalIdDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -66163,22 +64685,20 @@ def __init__(self, new_value=None, previous_value=None): previous_value = bb.Attribute("previous_value") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupChangeExternalIdDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GroupChangeExternalIdDetails, self)._process_custom_annotations(annotation_type, field_path, processor) GroupChangeExternalIdDetails_validator = bv.Struct(GroupChangeExternalIdDetails) - class GroupChangeExternalIdType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -66187,14 +64707,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupChangeExternalIdType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GroupChangeExternalIdType, self)._process_custom_annotations(annotation_type, field_path, processor) GroupChangeExternalIdType_validator = bv.Struct(GroupChangeExternalIdType) - class GroupChangeManagementTypeDetails(bb.Struct): """ Changed group management type. @@ -66207,13 +64723,15 @@ class GroupChangeManagementTypeDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -66228,22 +64746,20 @@ def __init__(self, new_value=None, previous_value=None): previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupChangeManagementTypeDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GroupChangeManagementTypeDetails, self)._process_custom_annotations(annotation_type, field_path, processor) GroupChangeManagementTypeDetails_validator = bv.Struct(GroupChangeManagementTypeDetails) - class GroupChangeManagementTypeType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -66252,14 +64768,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupChangeManagementTypeType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GroupChangeManagementTypeType, self)._process_custom_annotations(annotation_type, field_path, processor) GroupChangeManagementTypeType_validator = bv.Struct(GroupChangeManagementTypeType) - class GroupChangeMemberRoleDetails(bb.Struct): """ Changed manager permissions of group member. @@ -66269,12 +64781,13 @@ class GroupChangeMemberRoleDetails(bb.Struct): """ __slots__ = [ - "_is_group_owner_value", + '_is_group_owner_value', ] _has_required_fields = True - def __init__(self, is_group_owner=None): + def __init__(self, + is_group_owner=None): self._is_group_owner_value = bb.NOT_SET if is_group_owner is not None: self.is_group_owner = is_group_owner @@ -66283,22 +64796,20 @@ def __init__(self, is_group_owner=None): is_group_owner = bb.Attribute("is_group_owner") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupChangeMemberRoleDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GroupChangeMemberRoleDetails, self)._process_custom_annotations(annotation_type, field_path, processor) GroupChangeMemberRoleDetails_validator = bv.Struct(GroupChangeMemberRoleDetails) - class GroupChangeMemberRoleType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -66307,14 +64818,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupChangeMemberRoleType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GroupChangeMemberRoleType, self)._process_custom_annotations(annotation_type, field_path, processor) GroupChangeMemberRoleType_validator = bv.Struct(GroupChangeMemberRoleType) - class GroupCreateDetails(bb.Struct): """ Created group. @@ -66326,13 +64833,15 @@ class GroupCreateDetails(bb.Struct): """ __slots__ = [ - "_is_company_managed_value", - "_join_policy_value", + '_is_company_managed_value', + '_join_policy_value', ] _has_required_fields = False - def __init__(self, is_company_managed=None, join_policy=None): + def __init__(self, + is_company_managed=None, + join_policy=None): self._is_company_managed_value = bb.NOT_SET self._join_policy_value = bb.NOT_SET if is_company_managed is not None: @@ -66347,22 +64856,20 @@ def __init__(self, is_company_managed=None, join_policy=None): join_policy = bb.Attribute("join_policy", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupCreateDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GroupCreateDetails, self)._process_custom_annotations(annotation_type, field_path, processor) GroupCreateDetails_validator = bv.Struct(GroupCreateDetails) - class GroupCreateType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -66371,14 +64878,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupCreateType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GroupCreateType, self)._process_custom_annotations(annotation_type, field_path, processor) GroupCreateType_validator = bv.Struct(GroupCreateType) - class GroupDeleteDetails(bb.Struct): """ Deleted group. @@ -66388,12 +64891,13 @@ class GroupDeleteDetails(bb.Struct): """ __slots__ = [ - "_is_company_managed_value", + '_is_company_managed_value', ] _has_required_fields = False - def __init__(self, is_company_managed=None): + def __init__(self, + is_company_managed=None): self._is_company_managed_value = bb.NOT_SET if is_company_managed is not None: self.is_company_managed = is_company_managed @@ -66402,22 +64906,20 @@ def __init__(self, is_company_managed=None): is_company_managed = bb.Attribute("is_company_managed", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupDeleteDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GroupDeleteDetails, self)._process_custom_annotations(annotation_type, field_path, processor) GroupDeleteDetails_validator = bv.Struct(GroupDeleteDetails) - class GroupDeleteType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -66426,20 +64928,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupDeleteType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GroupDeleteType, self)._process_custom_annotations(annotation_type, field_path, processor) GroupDeleteType_validator = bv.Struct(GroupDeleteType) - class GroupDescriptionUpdatedDetails(bb.Struct): """ Updated group. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -66447,22 +64946,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupDescriptionUpdatedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GroupDescriptionUpdatedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) GroupDescriptionUpdatedDetails_validator = bv.Struct(GroupDescriptionUpdatedDetails) - class GroupDescriptionUpdatedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -66471,14 +64968,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupDescriptionUpdatedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GroupDescriptionUpdatedType, self)._process_custom_annotations(annotation_type, field_path, processor) GroupDescriptionUpdatedType_validator = bv.Struct(GroupDescriptionUpdatedType) - class GroupExternalSharingSettingOverrideChangedDetails(bb.Struct): """ Changed group's external sharing setting. @@ -66490,13 +64983,15 @@ class GroupExternalSharingSettingOverrideChangedDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -66511,24 +65006,20 @@ def __init__(self, new_value=None, previous_value=None): previous_value = bb.Attribute("previous_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupExternalSharingSettingOverrideChangedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - - -GroupExternalSharingSettingOverrideChangedDetails_validator = bv.Struct( - GroupExternalSharingSettingOverrideChangedDetails -) + super(GroupExternalSharingSettingOverrideChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +GroupExternalSharingSettingOverrideChangedDetails_validator = bv.Struct(GroupExternalSharingSettingOverrideChangedDetails) class GroupExternalSharingSettingOverrideChangedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -66537,15 +65028,9 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupExternalSharingSettingOverrideChangedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - - -GroupExternalSharingSettingOverrideChangedType_validator = bv.Struct( - GroupExternalSharingSettingOverrideChangedType -) + super(GroupExternalSharingSettingOverrideChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) +GroupExternalSharingSettingOverrideChangedType_validator = bv.Struct(GroupExternalSharingSettingOverrideChangedType) class GroupJoinPolicy(bb.Union): """ @@ -66554,7 +65039,7 @@ class GroupJoinPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition open = None # Attribute is overwritten below the class definition @@ -66568,7 +65053,7 @@ def is_open(self): :rtype: bool """ - return self._tag == "open" + return self._tag == 'open' def is_request_to_join(self): """ @@ -66576,7 +65061,7 @@ def is_request_to_join(self): :rtype: bool """ - return self._tag == "request_to_join" + return self._tag == 'request_to_join' def is_other(self): """ @@ -66584,17 +65069,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupJoinPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GroupJoinPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) GroupJoinPolicy_validator = bv.Union(GroupJoinPolicy) - class GroupJoinPolicyUpdatedDetails(bb.Struct): """ Updated group join policy. @@ -66606,13 +65087,15 @@ class GroupJoinPolicyUpdatedDetails(bb.Struct): """ __slots__ = [ - "_is_company_managed_value", - "_join_policy_value", + '_is_company_managed_value', + '_join_policy_value', ] _has_required_fields = False - def __init__(self, is_company_managed=None, join_policy=None): + def __init__(self, + is_company_managed=None, + join_policy=None): self._is_company_managed_value = bb.NOT_SET self._join_policy_value = bb.NOT_SET if is_company_managed is not None: @@ -66627,22 +65110,20 @@ def __init__(self, is_company_managed=None, join_policy=None): join_policy = bb.Attribute("join_policy", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupJoinPolicyUpdatedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GroupJoinPolicyUpdatedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) GroupJoinPolicyUpdatedDetails_validator = bv.Struct(GroupJoinPolicyUpdatedDetails) - class GroupJoinPolicyUpdatedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -66651,14 +65132,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupJoinPolicyUpdatedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GroupJoinPolicyUpdatedType, self)._process_custom_annotations(annotation_type, field_path, processor) GroupJoinPolicyUpdatedType_validator = bv.Struct(GroupJoinPolicyUpdatedType) - class GroupLogInfo(bb.Struct): """ Group's logged information. @@ -66672,14 +65149,17 @@ class GroupLogInfo(bb.Struct): """ __slots__ = [ - "_group_id_value", - "_display_name_value", - "_external_id_value", + '_group_id_value', + '_display_name_value', + '_external_id_value', ] _has_required_fields = True - def __init__(self, display_name=None, group_id=None, external_id=None): + def __init__(self, + display_name=None, + group_id=None, + external_id=None): self._group_id_value = bb.NOT_SET self._display_name_value = bb.NOT_SET self._external_id_value = bb.NOT_SET @@ -66700,20 +65180,17 @@ def __init__(self, display_name=None, group_id=None, external_id=None): external_id = bb.Attribute("external_id", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupLogInfo, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GroupLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) GroupLogInfo_validator = bv.Struct(GroupLogInfo) - class GroupMovedDetails(bb.Struct): """ Moved group. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -66721,22 +65198,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupMovedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GroupMovedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) GroupMovedDetails_validator = bv.Struct(GroupMovedDetails) - class GroupMovedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -66745,14 +65220,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupMovedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GroupMovedType, self)._process_custom_annotations(annotation_type, field_path, processor) GroupMovedType_validator = bv.Struct(GroupMovedType) - class GroupRemoveExternalIdDetails(bb.Struct): """ Removed external ID for group. @@ -66762,12 +65233,13 @@ class GroupRemoveExternalIdDetails(bb.Struct): """ __slots__ = [ - "_previous_value_value", + '_previous_value_value', ] _has_required_fields = True - def __init__(self, previous_value=None): + def __init__(self, + previous_value=None): self._previous_value_value = bb.NOT_SET if previous_value is not None: self.previous_value = previous_value @@ -66776,22 +65248,20 @@ def __init__(self, previous_value=None): previous_value = bb.Attribute("previous_value") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupRemoveExternalIdDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GroupRemoveExternalIdDetails, self)._process_custom_annotations(annotation_type, field_path, processor) GroupRemoveExternalIdDetails_validator = bv.Struct(GroupRemoveExternalIdDetails) - class GroupRemoveExternalIdType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -66800,20 +65270,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupRemoveExternalIdType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GroupRemoveExternalIdType, self)._process_custom_annotations(annotation_type, field_path, processor) GroupRemoveExternalIdType_validator = bv.Struct(GroupRemoveExternalIdType) - class GroupRemoveMemberDetails(bb.Struct): """ Removed team members from group. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -66821,22 +65288,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupRemoveMemberDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GroupRemoveMemberDetails, self)._process_custom_annotations(annotation_type, field_path, processor) GroupRemoveMemberDetails_validator = bv.Struct(GroupRemoveMemberDetails) - class GroupRemoveMemberType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -66845,14 +65310,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupRemoveMemberType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GroupRemoveMemberType, self)._process_custom_annotations(annotation_type, field_path, processor) GroupRemoveMemberType_validator = bv.Struct(GroupRemoveMemberType) - class GroupRenameDetails(bb.Struct): """ Renamed group. @@ -66864,13 +65325,15 @@ class GroupRenameDetails(bb.Struct): """ __slots__ = [ - "_previous_value_value", - "_new_value_value", + '_previous_value_value', + '_new_value_value', ] _has_required_fields = True - def __init__(self, previous_value=None, new_value=None): + def __init__(self, + previous_value=None, + new_value=None): self._previous_value_value = bb.NOT_SET self._new_value_value = bb.NOT_SET if previous_value is not None: @@ -66885,22 +65348,20 @@ def __init__(self, previous_value=None, new_value=None): new_value = bb.Attribute("new_value") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupRenameDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GroupRenameDetails, self)._process_custom_annotations(annotation_type, field_path, processor) GroupRenameDetails_validator = bv.Struct(GroupRenameDetails) - class GroupRenameType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -66909,14 +65370,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupRenameType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GroupRenameType, self)._process_custom_annotations(annotation_type, field_path, processor) GroupRenameType_validator = bv.Struct(GroupRenameType) - class GroupUserManagementChangePolicyDetails(bb.Struct): """ Changed who can create groups. @@ -66929,13 +65386,15 @@ class GroupUserManagementChangePolicyDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -66950,22 +65409,20 @@ def __init__(self, new_value=None, previous_value=None): previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupUserManagementChangePolicyDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GroupUserManagementChangePolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) GroupUserManagementChangePolicyDetails_validator = bv.Struct(GroupUserManagementChangePolicyDetails) - class GroupUserManagementChangePolicyType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -66974,14 +65431,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupUserManagementChangePolicyType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GroupUserManagementChangePolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) GroupUserManagementChangePolicyType_validator = bv.Struct(GroupUserManagementChangePolicyType) - class GuestAdminChangeStatusDetails(bb.Struct): """ Changed guest team admin status. @@ -67001,25 +65454,23 @@ class GuestAdminChangeStatusDetails(bb.Struct): """ __slots__ = [ - "_is_guest_value", - "_guest_team_name_value", - "_host_team_name_value", - "_previous_value_value", - "_new_value_value", - "_action_details_value", + '_is_guest_value', + '_guest_team_name_value', + '_host_team_name_value', + '_previous_value_value', + '_new_value_value', + '_action_details_value', ] _has_required_fields = True - def __init__( - self, - is_guest=None, - previous_value=None, - new_value=None, - action_details=None, - guest_team_name=None, - host_team_name=None, - ): + def __init__(self, + is_guest=None, + previous_value=None, + new_value=None, + action_details=None, + guest_team_name=None, + host_team_name=None): self._is_guest_value = bb.NOT_SET self._guest_team_name_value = bb.NOT_SET self._host_team_name_value = bb.NOT_SET @@ -67058,22 +65509,20 @@ def __init__( action_details = bb.Attribute("action_details", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GuestAdminChangeStatusDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GuestAdminChangeStatusDetails, self)._process_custom_annotations(annotation_type, field_path, processor) GuestAdminChangeStatusDetails_validator = bv.Struct(GuestAdminChangeStatusDetails) - class GuestAdminChangeStatusType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -67082,14 +65531,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GuestAdminChangeStatusType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GuestAdminChangeStatusType, self)._process_custom_annotations(annotation_type, field_path, processor) GuestAdminChangeStatusType_validator = bv.Struct(GuestAdminChangeStatusType) - class GuestAdminSignedInViaTrustedTeamsDetails(bb.Struct): """ Started trusted team admin session. @@ -67101,13 +65546,15 @@ class GuestAdminSignedInViaTrustedTeamsDetails(bb.Struct): """ __slots__ = [ - "_team_name_value", - "_trusted_team_name_value", + '_team_name_value', + '_trusted_team_name_value', ] _has_required_fields = False - def __init__(self, team_name=None, trusted_team_name=None): + def __init__(self, + team_name=None, + trusted_team_name=None): self._team_name_value = bb.NOT_SET self._trusted_team_name_value = bb.NOT_SET if team_name is not None: @@ -67122,24 +65569,20 @@ def __init__(self, team_name=None, trusted_team_name=None): 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 - ) - - -GuestAdminSignedInViaTrustedTeamsDetails_validator = bv.Struct( - GuestAdminSignedInViaTrustedTeamsDetails -) + super(GuestAdminSignedInViaTrustedTeamsDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +GuestAdminSignedInViaTrustedTeamsDetails_validator = bv.Struct(GuestAdminSignedInViaTrustedTeamsDetails) class GuestAdminSignedInViaTrustedTeamsType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -67148,14 +65591,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GuestAdminSignedInViaTrustedTeamsType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GuestAdminSignedInViaTrustedTeamsType, self)._process_custom_annotations(annotation_type, field_path, processor) GuestAdminSignedInViaTrustedTeamsType_validator = bv.Struct(GuestAdminSignedInViaTrustedTeamsType) - class GuestAdminSignedOutViaTrustedTeamsDetails(bb.Struct): """ Ended trusted team admin session. @@ -67167,13 +65606,15 @@ class GuestAdminSignedOutViaTrustedTeamsDetails(bb.Struct): """ __slots__ = [ - "_team_name_value", - "_trusted_team_name_value", + '_team_name_value', + '_trusted_team_name_value', ] _has_required_fields = False - def __init__(self, team_name=None, trusted_team_name=None): + def __init__(self, + team_name=None, + trusted_team_name=None): self._team_name_value = bb.NOT_SET self._trusted_team_name_value = bb.NOT_SET if team_name is not None: @@ -67188,24 +65629,20 @@ def __init__(self, team_name=None, trusted_team_name=None): 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 - ) - - -GuestAdminSignedOutViaTrustedTeamsDetails_validator = bv.Struct( - GuestAdminSignedOutViaTrustedTeamsDetails -) + super(GuestAdminSignedOutViaTrustedTeamsDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +GuestAdminSignedOutViaTrustedTeamsDetails_validator = bv.Struct(GuestAdminSignedOutViaTrustedTeamsDetails) class GuestAdminSignedOutViaTrustedTeamsType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -67214,14 +65651,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GuestAdminSignedOutViaTrustedTeamsType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GuestAdminSignedOutViaTrustedTeamsType, self)._process_custom_annotations(annotation_type, field_path, processor) GuestAdminSignedOutViaTrustedTeamsType_validator = bv.Struct(GuestAdminSignedOutViaTrustedTeamsType) - class IdentifierType(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -67229,7 +65662,7 @@ class IdentifierType(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition email = None # Attribute is overwritten below the class definition @@ -67243,7 +65676,7 @@ def is_email(self): :rtype: bool """ - return self._tag == "email" + return self._tag == 'email' def is_facebook_profile_name(self): """ @@ -67251,7 +65684,7 @@ def is_facebook_profile_name(self): :rtype: bool """ - return self._tag == "facebook_profile_name" + return self._tag == 'facebook_profile_name' def is_other(self): """ @@ -67259,17 +65692,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(IdentifierType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(IdentifierType, self)._process_custom_annotations(annotation_type, field_path, processor) IdentifierType_validator = bv.Union(IdentifierType) - class IntegrationConnectedDetails(bb.Struct): """ Connected integration for member. @@ -67279,12 +65708,13 @@ class IntegrationConnectedDetails(bb.Struct): """ __slots__ = [ - "_integration_name_value", + '_integration_name_value', ] _has_required_fields = True - def __init__(self, integration_name=None): + def __init__(self, + integration_name=None): self._integration_name_value = bb.NOT_SET if integration_name is not None: self.integration_name = integration_name @@ -67293,22 +65723,20 @@ def __init__(self, integration_name=None): integration_name = bb.Attribute("integration_name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(IntegrationConnectedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(IntegrationConnectedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) IntegrationConnectedDetails_validator = bv.Struct(IntegrationConnectedDetails) - class IntegrationConnectedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -67317,14 +65745,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(IntegrationConnectedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(IntegrationConnectedType, self)._process_custom_annotations(annotation_type, field_path, processor) IntegrationConnectedType_validator = bv.Struct(IntegrationConnectedType) - class IntegrationDisconnectedDetails(bb.Struct): """ Disconnected integration for member. @@ -67334,12 +65758,13 @@ class IntegrationDisconnectedDetails(bb.Struct): """ __slots__ = [ - "_integration_name_value", + '_integration_name_value', ] _has_required_fields = True - def __init__(self, integration_name=None): + def __init__(self, + integration_name=None): self._integration_name_value = bb.NOT_SET if integration_name is not None: self.integration_name = integration_name @@ -67348,22 +65773,20 @@ def __init__(self, integration_name=None): integration_name = bb.Attribute("integration_name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(IntegrationDisconnectedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(IntegrationDisconnectedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) IntegrationDisconnectedDetails_validator = bv.Struct(IntegrationDisconnectedDetails) - class IntegrationDisconnectedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -67372,14 +65795,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(IntegrationDisconnectedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(IntegrationDisconnectedType, self)._process_custom_annotations(annotation_type, field_path, processor) IntegrationDisconnectedType_validator = bv.Struct(IntegrationDisconnectedType) - class IntegrationPolicy(bb.Union): """ Policy for controlling whether a service integration is enabled for the @@ -67390,7 +65809,7 @@ class IntegrationPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -67404,7 +65823,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == "disabled" + return self._tag == 'disabled' def is_enabled(self): """ @@ -67412,7 +65831,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == "enabled" + return self._tag == 'enabled' def is_other(self): """ @@ -67420,17 +65839,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(IntegrationPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(IntegrationPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) IntegrationPolicy_validator = bv.Union(IntegrationPolicy) - class IntegrationPolicyChangedDetails(bb.Struct): """ Changed integration policy for team. @@ -67444,14 +65859,17 @@ class IntegrationPolicyChangedDetails(bb.Struct): """ __slots__ = [ - "_integration_name_value", - "_new_value_value", - "_previous_value_value", + '_integration_name_value', + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, integration_name=None, new_value=None, previous_value=None): + def __init__(self, + integration_name=None, + new_value=None, + previous_value=None): self._integration_name_value = bb.NOT_SET self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET @@ -67472,22 +65890,20 @@ def __init__(self, integration_name=None, new_value=None, previous_value=None): previous_value = bb.Attribute("previous_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(IntegrationPolicyChangedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(IntegrationPolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) IntegrationPolicyChangedDetails_validator = bv.Struct(IntegrationPolicyChangedDetails) - class IntegrationPolicyChangedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -67496,14 +65912,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(IntegrationPolicyChangedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(IntegrationPolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) IntegrationPolicyChangedType_validator = bv.Struct(IntegrationPolicyChangedType) - class InviteAcceptanceEmailPolicy(bb.Union): """ Policy for deciding whether team admins receive email when an invitation to @@ -67514,7 +65926,7 @@ class InviteAcceptanceEmailPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -67528,7 +65940,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == "disabled" + return self._tag == 'disabled' def is_enabled(self): """ @@ -67536,7 +65948,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == "enabled" + return self._tag == 'enabled' def is_other(self): """ @@ -67544,17 +65956,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(InviteAcceptanceEmailPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(InviteAcceptanceEmailPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) InviteAcceptanceEmailPolicy_validator = bv.Union(InviteAcceptanceEmailPolicy) - class InviteAcceptanceEmailPolicyChangedDetails(bb.Struct): """ Changed invite accept email policy for team. @@ -67566,13 +65974,15 @@ class InviteAcceptanceEmailPolicyChangedDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -67587,24 +65997,20 @@ def __init__(self, new_value=None, previous_value=None): 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 - ) - - -InviteAcceptanceEmailPolicyChangedDetails_validator = bv.Struct( - InviteAcceptanceEmailPolicyChangedDetails -) + super(InviteAcceptanceEmailPolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +InviteAcceptanceEmailPolicyChangedDetails_validator = bv.Struct(InviteAcceptanceEmailPolicyChangedDetails) class InviteAcceptanceEmailPolicyChangedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -67613,14 +66019,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(InviteAcceptanceEmailPolicyChangedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(InviteAcceptanceEmailPolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) InviteAcceptanceEmailPolicyChangedType_validator = bv.Struct(InviteAcceptanceEmailPolicyChangedType) - class InviteMethod(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -67628,7 +66030,7 @@ class InviteMethod(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition auto_approve = None # Attribute is overwritten below the class definition @@ -67646,7 +66048,7 @@ def is_auto_approve(self): :rtype: bool """ - return self._tag == "auto_approve" + return self._tag == 'auto_approve' def is_invite_link(self): """ @@ -67654,7 +66056,7 @@ def is_invite_link(self): :rtype: bool """ - return self._tag == "invite_link" + return self._tag == 'invite_link' def is_member_invite(self): """ @@ -67662,7 +66064,7 @@ def is_member_invite(self): :rtype: bool """ - return self._tag == "member_invite" + return self._tag == 'member_invite' def is_moved_from_another_team(self): """ @@ -67670,7 +66072,7 @@ def is_moved_from_another_team(self): :rtype: bool """ - return self._tag == "moved_from_another_team" + return self._tag == 'moved_from_another_team' def is_other(self): """ @@ -67678,17 +66080,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(InviteMethod, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(InviteMethod, self)._process_custom_annotations(annotation_type, field_path, processor) InviteMethod_validator = bv.Union(InviteMethod) - class JoinTeamDetails(bb.Struct): """ Additional information relevant when a new member joins the team. @@ -67720,31 +66118,29 @@ class JoinTeamDetails(bb.Struct): """ __slots__ = [ - "_linked_apps_value", - "_linked_devices_value", - "_linked_shared_folders_value", - "_was_linked_apps_truncated_value", - "_was_linked_devices_truncated_value", - "_was_linked_shared_folders_truncated_value", - "_has_linked_apps_value", - "_has_linked_devices_value", - "_has_linked_shared_folders_value", + '_linked_apps_value', + '_linked_devices_value', + '_linked_shared_folders_value', + '_was_linked_apps_truncated_value', + '_was_linked_devices_truncated_value', + '_was_linked_shared_folders_truncated_value', + '_has_linked_apps_value', + '_has_linked_devices_value', + '_has_linked_shared_folders_value', ] _has_required_fields = True - def __init__( - self, - linked_apps=None, - linked_devices=None, - linked_shared_folders=None, - was_linked_apps_truncated=None, - was_linked_devices_truncated=None, - was_linked_shared_folders_truncated=None, - has_linked_apps=None, - has_linked_devices=None, - has_linked_shared_folders=None, - ): + def __init__(self, + linked_apps=None, + linked_devices=None, + linked_shared_folders=None, + was_linked_apps_truncated=None, + was_linked_devices_truncated=None, + was_linked_shared_folders_truncated=None, + has_linked_apps=None, + has_linked_devices=None, + has_linked_shared_folders=None): self._linked_apps_value = bb.NOT_SET self._linked_devices_value = bb.NOT_SET self._linked_shared_folders_value = bb.NOT_SET @@ -67789,9 +66185,7 @@ def __init__( was_linked_devices_truncated = bb.Attribute("was_linked_devices_truncated", nullable=True) # Instance attribute type: bool (validator is set below) - was_linked_shared_folders_truncated = bb.Attribute( - "was_linked_shared_folders_truncated", nullable=True - ) + was_linked_shared_folders_truncated = bb.Attribute("was_linked_shared_folders_truncated", nullable=True) # Instance attribute type: bool (validator is set below) has_linked_apps = bb.Attribute("has_linked_apps", nullable=True) @@ -67803,14 +66197,10 @@ def __init__( has_linked_shared_folders = bb.Attribute("has_linked_shared_folders", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(JoinTeamDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(JoinTeamDetails, self)._process_custom_annotations(annotation_type, field_path, processor) JoinTeamDetails_validator = bv.Struct(JoinTeamDetails) - class LabelType(bb.Union): """ Label type @@ -67820,7 +66210,7 @@ class LabelType(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition personal_information = None # Attribute is overwritten below the class definition @@ -67836,7 +66226,7 @@ def is_personal_information(self): :rtype: bool """ - return self._tag == "personal_information" + return self._tag == 'personal_information' def is_test_only(self): """ @@ -67844,7 +66234,7 @@ def is_test_only(self): :rtype: bool """ - return self._tag == "test_only" + return self._tag == 'test_only' def is_user_defined_tag(self): """ @@ -67852,7 +66242,7 @@ def is_user_defined_tag(self): :rtype: bool """ - return self._tag == "user_defined_tag" + return self._tag == 'user_defined_tag' def is_other(self): """ @@ -67860,15 +66250,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): super(LabelType, self)._process_custom_annotations(annotation_type, field_path, processor) - LabelType_validator = bv.Union(LabelType) - class LegacyDeviceSessionLogInfo(DeviceSessionLogInfo): """ Information on sessions, in legacy format @@ -67898,35 +66286,35 @@ class LegacyDeviceSessionLogInfo(DeviceSessionLogInfo): """ __slots__ = [ - "_session_info_value", - "_display_name_value", - "_is_emm_managed_value", - "_platform_value", - "_mac_address_value", - "_os_version_value", - "_device_type_value", - "_client_version_value", - "_legacy_uniq_id_value", + '_session_info_value', + '_display_name_value', + '_is_emm_managed_value', + '_platform_value', + '_mac_address_value', + '_os_version_value', + '_device_type_value', + '_client_version_value', + '_legacy_uniq_id_value', ] _has_required_fields = False - def __init__( - self, - ip_address=None, - created=None, - updated=None, - session_info=None, - display_name=None, - is_emm_managed=None, - platform=None, - mac_address=None, - os_version=None, - device_type=None, - client_version=None, - legacy_uniq_id=None, - ): - super(LegacyDeviceSessionLogInfo, self).__init__(ip_address, created, updated) + def __init__(self, + ip_address=None, + created=None, + updated=None, + session_info=None, + display_name=None, + is_emm_managed=None, + platform=None, + mac_address=None, + os_version=None, + device_type=None, + client_version=None, + legacy_uniq_id=None): + super(LegacyDeviceSessionLogInfo, self).__init__(ip_address, + created, + updated) self._session_info_value = bb.NOT_SET self._display_name_value = bb.NOT_SET self._is_emm_managed_value = bb.NOT_SET @@ -67983,14 +66371,10 @@ def __init__( legacy_uniq_id = bb.Attribute("legacy_uniq_id", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegacyDeviceSessionLogInfo, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(LegacyDeviceSessionLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) LegacyDeviceSessionLogInfo_validator = bv.Struct(LegacyDeviceSessionLogInfo) - class LegalHoldsActivateAHoldDetails(bb.Struct): """ Activated a hold. @@ -68006,15 +66390,19 @@ class LegalHoldsActivateAHoldDetails(bb.Struct): """ __slots__ = [ - "_legal_hold_id_value", - "_name_value", - "_start_date_value", - "_end_date_value", + '_legal_hold_id_value', + '_name_value', + '_start_date_value', + '_end_date_value', ] _has_required_fields = True - def __init__(self, legal_hold_id=None, name=None, start_date=None, end_date=None): + def __init__(self, + legal_hold_id=None, + name=None, + start_date=None, + end_date=None): self._legal_hold_id_value = bb.NOT_SET self._name_value = bb.NOT_SET self._start_date_value = bb.NOT_SET @@ -68041,22 +66429,20 @@ def __init__(self, legal_hold_id=None, name=None, start_date=None, end_date=None end_date = bb.Attribute("end_date", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldsActivateAHoldDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(LegalHoldsActivateAHoldDetails, self)._process_custom_annotations(annotation_type, field_path, processor) LegalHoldsActivateAHoldDetails_validator = bv.Struct(LegalHoldsActivateAHoldDetails) - class LegalHoldsActivateAHoldType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -68065,14 +66451,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldsActivateAHoldType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(LegalHoldsActivateAHoldType, self)._process_custom_annotations(annotation_type, field_path, processor) LegalHoldsActivateAHoldType_validator = bv.Struct(LegalHoldsActivateAHoldType) - class LegalHoldsAddMembersDetails(bb.Struct): """ Added members to a hold. @@ -68084,13 +66466,15 @@ class LegalHoldsAddMembersDetails(bb.Struct): """ __slots__ = [ - "_legal_hold_id_value", - "_name_value", + '_legal_hold_id_value', + '_name_value', ] _has_required_fields = True - def __init__(self, legal_hold_id=None, name=None): + def __init__(self, + legal_hold_id=None, + name=None): self._legal_hold_id_value = bb.NOT_SET self._name_value = bb.NOT_SET if legal_hold_id is not None: @@ -68105,22 +66489,20 @@ def __init__(self, legal_hold_id=None, name=None): name = bb.Attribute("name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldsAddMembersDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(LegalHoldsAddMembersDetails, self)._process_custom_annotations(annotation_type, field_path, processor) LegalHoldsAddMembersDetails_validator = bv.Struct(LegalHoldsAddMembersDetails) - class LegalHoldsAddMembersType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -68129,14 +66511,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldsAddMembersType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(LegalHoldsAddMembersType, self)._process_custom_annotations(annotation_type, field_path, processor) LegalHoldsAddMembersType_validator = bv.Struct(LegalHoldsAddMembersType) - class LegalHoldsChangeHoldDetailsDetails(bb.Struct): """ Edited details for a hold. @@ -68152,15 +66530,19 @@ class LegalHoldsChangeHoldDetailsDetails(bb.Struct): """ __slots__ = [ - "_legal_hold_id_value", - "_name_value", - "_previous_value_value", - "_new_value_value", + '_legal_hold_id_value', + '_name_value', + '_previous_value_value', + '_new_value_value', ] _has_required_fields = True - def __init__(self, legal_hold_id=None, name=None, previous_value=None, new_value=None): + def __init__(self, + legal_hold_id=None, + name=None, + previous_value=None, + new_value=None): self._legal_hold_id_value = bb.NOT_SET self._name_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET @@ -68187,22 +66569,20 @@ def __init__(self, legal_hold_id=None, name=None, previous_value=None, new_value new_value = bb.Attribute("new_value") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldsChangeHoldDetailsDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(LegalHoldsChangeHoldDetailsDetails, self)._process_custom_annotations(annotation_type, field_path, processor) LegalHoldsChangeHoldDetailsDetails_validator = bv.Struct(LegalHoldsChangeHoldDetailsDetails) - class LegalHoldsChangeHoldDetailsType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -68211,14 +66591,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldsChangeHoldDetailsType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(LegalHoldsChangeHoldDetailsType, self)._process_custom_annotations(annotation_type, field_path, processor) LegalHoldsChangeHoldDetailsType_validator = bv.Struct(LegalHoldsChangeHoldDetailsType) - class LegalHoldsChangeHoldNameDetails(bb.Struct): """ Renamed a hold. @@ -68232,14 +66608,17 @@ class LegalHoldsChangeHoldNameDetails(bb.Struct): """ __slots__ = [ - "_legal_hold_id_value", - "_previous_value_value", - "_new_value_value", + '_legal_hold_id_value', + '_previous_value_value', + '_new_value_value', ] _has_required_fields = True - def __init__(self, legal_hold_id=None, previous_value=None, new_value=None): + def __init__(self, + legal_hold_id=None, + previous_value=None, + new_value=None): self._legal_hold_id_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET self._new_value_value = bb.NOT_SET @@ -68260,22 +66639,20 @@ def __init__(self, legal_hold_id=None, previous_value=None, new_value=None): new_value = bb.Attribute("new_value") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldsChangeHoldNameDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(LegalHoldsChangeHoldNameDetails, self)._process_custom_annotations(annotation_type, field_path, processor) LegalHoldsChangeHoldNameDetails_validator = bv.Struct(LegalHoldsChangeHoldNameDetails) - class LegalHoldsChangeHoldNameType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -68284,14 +66661,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldsChangeHoldNameType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(LegalHoldsChangeHoldNameType, self)._process_custom_annotations(annotation_type, field_path, processor) LegalHoldsChangeHoldNameType_validator = bv.Struct(LegalHoldsChangeHoldNameType) - class LegalHoldsExportAHoldDetails(bb.Struct): """ Exported hold. @@ -68305,14 +66678,17 @@ class LegalHoldsExportAHoldDetails(bb.Struct): """ __slots__ = [ - "_legal_hold_id_value", - "_name_value", - "_export_name_value", + '_legal_hold_id_value', + '_name_value', + '_export_name_value', ] _has_required_fields = True - def __init__(self, legal_hold_id=None, name=None, export_name=None): + def __init__(self, + legal_hold_id=None, + name=None, + export_name=None): self._legal_hold_id_value = bb.NOT_SET self._name_value = bb.NOT_SET self._export_name_value = bb.NOT_SET @@ -68333,22 +66709,20 @@ def __init__(self, legal_hold_id=None, name=None, export_name=None): export_name = bb.Attribute("export_name", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldsExportAHoldDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(LegalHoldsExportAHoldDetails, self)._process_custom_annotations(annotation_type, field_path, processor) LegalHoldsExportAHoldDetails_validator = bv.Struct(LegalHoldsExportAHoldDetails) - class LegalHoldsExportAHoldType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -68357,14 +66731,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldsExportAHoldType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(LegalHoldsExportAHoldType, self)._process_custom_annotations(annotation_type, field_path, processor) LegalHoldsExportAHoldType_validator = bv.Struct(LegalHoldsExportAHoldType) - class LegalHoldsExportCancelledDetails(bb.Struct): """ Canceled export for a hold. @@ -68378,14 +66748,17 @@ class LegalHoldsExportCancelledDetails(bb.Struct): """ __slots__ = [ - "_legal_hold_id_value", - "_name_value", - "_export_name_value", + '_legal_hold_id_value', + '_name_value', + '_export_name_value', ] _has_required_fields = True - def __init__(self, legal_hold_id=None, name=None, export_name=None): + def __init__(self, + legal_hold_id=None, + name=None, + export_name=None): self._legal_hold_id_value = bb.NOT_SET self._name_value = bb.NOT_SET self._export_name_value = bb.NOT_SET @@ -68406,22 +66779,20 @@ def __init__(self, legal_hold_id=None, name=None, export_name=None): export_name = bb.Attribute("export_name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldsExportCancelledDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(LegalHoldsExportCancelledDetails, self)._process_custom_annotations(annotation_type, field_path, processor) LegalHoldsExportCancelledDetails_validator = bv.Struct(LegalHoldsExportCancelledDetails) - class LegalHoldsExportCancelledType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -68430,14 +66801,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldsExportCancelledType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(LegalHoldsExportCancelledType, self)._process_custom_annotations(annotation_type, field_path, processor) LegalHoldsExportCancelledType_validator = bv.Struct(LegalHoldsExportCancelledType) - class LegalHoldsExportDownloadedDetails(bb.Struct): """ Downloaded export for a hold. @@ -68455,16 +66822,21 @@ class LegalHoldsExportDownloadedDetails(bb.Struct): """ __slots__ = [ - "_legal_hold_id_value", - "_name_value", - "_export_name_value", - "_part_value", - "_file_name_value", + '_legal_hold_id_value', + '_name_value', + '_export_name_value', + '_part_value', + '_file_name_value', ] _has_required_fields = True - def __init__(self, legal_hold_id=None, name=None, export_name=None, part=None, file_name=None): + def __init__(self, + legal_hold_id=None, + name=None, + export_name=None, + part=None, + file_name=None): self._legal_hold_id_value = bb.NOT_SET self._name_value = bb.NOT_SET self._export_name_value = bb.NOT_SET @@ -68497,22 +66869,20 @@ def __init__(self, legal_hold_id=None, name=None, export_name=None, part=None, f file_name = bb.Attribute("file_name", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldsExportDownloadedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(LegalHoldsExportDownloadedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) LegalHoldsExportDownloadedDetails_validator = bv.Struct(LegalHoldsExportDownloadedDetails) - class LegalHoldsExportDownloadedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -68521,14 +66891,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldsExportDownloadedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(LegalHoldsExportDownloadedType, self)._process_custom_annotations(annotation_type, field_path, processor) LegalHoldsExportDownloadedType_validator = bv.Struct(LegalHoldsExportDownloadedType) - class LegalHoldsExportRemovedDetails(bb.Struct): """ Removed export for a hold. @@ -68542,14 +66908,17 @@ class LegalHoldsExportRemovedDetails(bb.Struct): """ __slots__ = [ - "_legal_hold_id_value", - "_name_value", - "_export_name_value", + '_legal_hold_id_value', + '_name_value', + '_export_name_value', ] _has_required_fields = True - def __init__(self, legal_hold_id=None, name=None, export_name=None): + def __init__(self, + legal_hold_id=None, + name=None, + export_name=None): self._legal_hold_id_value = bb.NOT_SET self._name_value = bb.NOT_SET self._export_name_value = bb.NOT_SET @@ -68570,22 +66939,20 @@ def __init__(self, legal_hold_id=None, name=None, export_name=None): export_name = bb.Attribute("export_name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldsExportRemovedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(LegalHoldsExportRemovedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) LegalHoldsExportRemovedDetails_validator = bv.Struct(LegalHoldsExportRemovedDetails) - class LegalHoldsExportRemovedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -68594,14 +66961,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldsExportRemovedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(LegalHoldsExportRemovedType, self)._process_custom_annotations(annotation_type, field_path, processor) LegalHoldsExportRemovedType_validator = bv.Struct(LegalHoldsExportRemovedType) - class LegalHoldsReleaseAHoldDetails(bb.Struct): """ Released a hold. @@ -68613,13 +66976,15 @@ class LegalHoldsReleaseAHoldDetails(bb.Struct): """ __slots__ = [ - "_legal_hold_id_value", - "_name_value", + '_legal_hold_id_value', + '_name_value', ] _has_required_fields = True - def __init__(self, legal_hold_id=None, name=None): + def __init__(self, + legal_hold_id=None, + name=None): self._legal_hold_id_value = bb.NOT_SET self._name_value = bb.NOT_SET if legal_hold_id is not None: @@ -68634,22 +66999,20 @@ def __init__(self, legal_hold_id=None, name=None): name = bb.Attribute("name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldsReleaseAHoldDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(LegalHoldsReleaseAHoldDetails, self)._process_custom_annotations(annotation_type, field_path, processor) LegalHoldsReleaseAHoldDetails_validator = bv.Struct(LegalHoldsReleaseAHoldDetails) - class LegalHoldsReleaseAHoldType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -68658,14 +67021,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldsReleaseAHoldType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(LegalHoldsReleaseAHoldType, self)._process_custom_annotations(annotation_type, field_path, processor) LegalHoldsReleaseAHoldType_validator = bv.Struct(LegalHoldsReleaseAHoldType) - class LegalHoldsRemoveMembersDetails(bb.Struct): """ Removed members from a hold. @@ -68677,13 +67036,15 @@ class LegalHoldsRemoveMembersDetails(bb.Struct): """ __slots__ = [ - "_legal_hold_id_value", - "_name_value", + '_legal_hold_id_value', + '_name_value', ] _has_required_fields = True - def __init__(self, legal_hold_id=None, name=None): + def __init__(self, + legal_hold_id=None, + name=None): self._legal_hold_id_value = bb.NOT_SET self._name_value = bb.NOT_SET if legal_hold_id is not None: @@ -68698,22 +67059,20 @@ def __init__(self, legal_hold_id=None, name=None): name = bb.Attribute("name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldsRemoveMembersDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(LegalHoldsRemoveMembersDetails, self)._process_custom_annotations(annotation_type, field_path, processor) LegalHoldsRemoveMembersDetails_validator = bv.Struct(LegalHoldsRemoveMembersDetails) - class LegalHoldsRemoveMembersType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -68722,14 +67081,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldsRemoveMembersType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(LegalHoldsRemoveMembersType, self)._process_custom_annotations(annotation_type, field_path, processor) LegalHoldsRemoveMembersType_validator = bv.Struct(LegalHoldsRemoveMembersType) - class LegalHoldsReportAHoldDetails(bb.Struct): """ Created a summary report for a hold. @@ -68741,13 +67096,15 @@ class LegalHoldsReportAHoldDetails(bb.Struct): """ __slots__ = [ - "_legal_hold_id_value", - "_name_value", + '_legal_hold_id_value', + '_name_value', ] _has_required_fields = True - def __init__(self, legal_hold_id=None, name=None): + def __init__(self, + legal_hold_id=None, + name=None): self._legal_hold_id_value = bb.NOT_SET self._name_value = bb.NOT_SET if legal_hold_id is not None: @@ -68762,22 +67119,20 @@ def __init__(self, legal_hold_id=None, name=None): name = bb.Attribute("name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldsReportAHoldDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(LegalHoldsReportAHoldDetails, self)._process_custom_annotations(annotation_type, field_path, processor) LegalHoldsReportAHoldDetails_validator = bv.Struct(LegalHoldsReportAHoldDetails) - class LegalHoldsReportAHoldType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -68786,14 +67141,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldsReportAHoldType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(LegalHoldsReportAHoldType, self)._process_custom_annotations(annotation_type, field_path, processor) LegalHoldsReportAHoldType_validator = bv.Struct(LegalHoldsReportAHoldType) - class LinkSettingsLogInfo(bb.Struct): """ Link Settings @@ -68813,25 +67164,23 @@ class LinkSettingsLogInfo(bb.Struct): """ __slots__ = [ - "_name_value", - "_require_email_value", - "_downloadable_value", - "_expire_at_value", - "_password_required_value", - "_url_value", + '_name_value', + '_require_email_value', + '_downloadable_value', + '_expire_at_value', + '_password_required_value', + '_url_value', ] _has_required_fields = True - def __init__( - self, - name=None, - require_email=None, - downloadable=None, - password_required=None, - url=None, - expire_at=None, - ): + def __init__(self, + name=None, + require_email=None, + downloadable=None, + password_required=None, + url=None, + expire_at=None): self._name_value = bb.NOT_SET self._require_email_value = bb.NOT_SET self._downloadable_value = bb.NOT_SET @@ -68870,14 +67219,10 @@ def __init__( url = bb.Attribute("url") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LinkSettingsLogInfo, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(LinkSettingsLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) LinkSettingsLogInfo_validator = bv.Struct(LinkSettingsLogInfo) - class LinkedDeviceLogInfo(bb.Union): """ The device sessions that user is linked to. @@ -68900,7 +67245,7 @@ class LinkedDeviceLogInfo(bb.Union): :vartype LinkedDeviceLogInfo.web_device_session: WebDeviceSessionLogInfo """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -68913,7 +67258,7 @@ def desktop_device_session(cls, val): :param DesktopDeviceSessionLogInfo val: :rtype: LinkedDeviceLogInfo """ - return cls("desktop_device_session", val) + return cls('desktop_device_session', val) @classmethod def legacy_device_session(cls, val): @@ -68924,7 +67269,7 @@ def legacy_device_session(cls, val): :param LegacyDeviceSessionLogInfo val: :rtype: LinkedDeviceLogInfo """ - return cls("legacy_device_session", val) + return cls('legacy_device_session', val) @classmethod def mobile_device_session(cls, val): @@ -68935,7 +67280,7 @@ def mobile_device_session(cls, val): :param MobileDeviceSessionLogInfo val: :rtype: LinkedDeviceLogInfo """ - return cls("mobile_device_session", val) + return cls('mobile_device_session', val) @classmethod def web_device_session(cls, val): @@ -68946,7 +67291,7 @@ def web_device_session(cls, val): :param WebDeviceSessionLogInfo val: :rtype: LinkedDeviceLogInfo """ - return cls("web_device_session", val) + return cls('web_device_session', val) def is_desktop_device_session(self): """ @@ -68954,7 +67299,7 @@ def is_desktop_device_session(self): :rtype: bool """ - return self._tag == "desktop_device_session" + return self._tag == 'desktop_device_session' def is_legacy_device_session(self): """ @@ -68962,7 +67307,7 @@ def is_legacy_device_session(self): :rtype: bool """ - return self._tag == "legacy_device_session" + return self._tag == 'legacy_device_session' def is_mobile_device_session(self): """ @@ -68970,7 +67315,7 @@ def is_mobile_device_session(self): :rtype: bool """ - return self._tag == "mobile_device_session" + return self._tag == 'mobile_device_session' def is_web_device_session(self): """ @@ -68978,7 +67323,7 @@ def is_web_device_session(self): :rtype: bool """ - return self._tag == "web_device_session" + return self._tag == 'web_device_session' def is_other(self): """ @@ -68986,7 +67331,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_desktop_device_session(self): """ @@ -69037,14 +67382,10 @@ def get_web_device_session(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LinkedDeviceLogInfo, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(LinkedDeviceLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) LinkedDeviceLogInfo_validator = bv.Union(LinkedDeviceLogInfo) - class LockStatus(bb.Union): """ File lock status @@ -69054,7 +67395,7 @@ class LockStatus(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition locked = None # Attribute is overwritten below the class definition @@ -69068,7 +67409,7 @@ def is_locked(self): :rtype: bool """ - return self._tag == "locked" + return self._tag == 'locked' def is_unlocked(self): """ @@ -69076,7 +67417,7 @@ def is_unlocked(self): :rtype: bool """ - return self._tag == "unlocked" + return self._tag == 'unlocked' def is_other(self): """ @@ -69084,15 +67425,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): super(LockStatus, self)._process_custom_annotations(annotation_type, field_path, processor) - LockStatus_validator = bv.Union(LockStatus) - class LoginFailDetails(bb.Struct): """ Failed to sign in. @@ -69107,14 +67446,17 @@ class LoginFailDetails(bb.Struct): """ __slots__ = [ - "_is_emm_managed_value", - "_login_method_value", - "_error_details_value", + '_is_emm_managed_value', + '_login_method_value', + '_error_details_value', ] _has_required_fields = True - def __init__(self, login_method=None, error_details=None, is_emm_managed=None): + def __init__(self, + login_method=None, + error_details=None, + is_emm_managed=None): self._is_emm_managed_value = bb.NOT_SET self._login_method_value = bb.NOT_SET self._error_details_value = bb.NOT_SET @@ -69135,22 +67477,20 @@ def __init__(self, login_method=None, error_details=None, is_emm_managed=None): error_details = bb.Attribute("error_details", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LoginFailDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(LoginFailDetails, self)._process_custom_annotations(annotation_type, field_path, processor) LoginFailDetails_validator = bv.Struct(LoginFailDetails) - class LoginFailType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -69159,14 +67499,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LoginFailType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(LoginFailType, self)._process_custom_annotations(annotation_type, field_path, processor) LoginFailType_validator = bv.Struct(LoginFailType) - class LoginMethod(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -69174,7 +67510,7 @@ class LoginMethod(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition apple_oauth = None # Attribute is overwritten below the class definition @@ -69208,7 +67544,7 @@ def is_apple_oauth(self): :rtype: bool """ - return self._tag == "apple_oauth" + return self._tag == 'apple_oauth' def is_first_party_token_exchange(self): """ @@ -69216,7 +67552,7 @@ def is_first_party_token_exchange(self): :rtype: bool """ - return self._tag == "first_party_token_exchange" + return self._tag == 'first_party_token_exchange' def is_google_oauth(self): """ @@ -69224,7 +67560,7 @@ def is_google_oauth(self): :rtype: bool """ - return self._tag == "google_oauth" + return self._tag == 'google_oauth' def is_kakao_oauth(self): """ @@ -69232,7 +67568,7 @@ def is_kakao_oauth(self): :rtype: bool """ - return self._tag == "kakao_oauth" + return self._tag == 'kakao_oauth' def is_lenovo_oauth(self): """ @@ -69240,7 +67576,7 @@ def is_lenovo_oauth(self): :rtype: bool """ - return self._tag == "lenovo_oauth" + return self._tag == 'lenovo_oauth' def is_passkey(self): """ @@ -69248,7 +67584,7 @@ def is_passkey(self): :rtype: bool """ - return self._tag == "passkey" + return self._tag == 'passkey' def is_password(self): """ @@ -69256,7 +67592,7 @@ def is_password(self): :rtype: bool """ - return self._tag == "password" + return self._tag == 'password' def is_qr_code(self): """ @@ -69264,7 +67600,7 @@ def is_qr_code(self): :rtype: bool """ - return self._tag == "qr_code" + return self._tag == 'qr_code' def is_saml(self): """ @@ -69272,7 +67608,7 @@ def is_saml(self): :rtype: bool """ - return self._tag == "saml" + return self._tag == 'saml' def is_two_factor_authentication(self): """ @@ -69280,7 +67616,7 @@ def is_two_factor_authentication(self): :rtype: bool """ - return self._tag == "two_factor_authentication" + return self._tag == 'two_factor_authentication' def is_web_session(self): """ @@ -69288,7 +67624,7 @@ def is_web_session(self): :rtype: bool """ - return self._tag == "web_session" + return self._tag == 'web_session' def is_microsoft_oauth(self): """ @@ -69296,7 +67632,7 @@ def is_microsoft_oauth(self): :rtype: bool """ - return self._tag == "microsoft_oauth" + return self._tag == 'microsoft_oauth' def is_other(self): """ @@ -69304,15 +67640,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): super(LoginMethod, self)._process_custom_annotations(annotation_type, field_path, processor) - LoginMethod_validator = bv.Union(LoginMethod) - class LoginSuccessDetails(bb.Struct): """ Signed in. @@ -69325,13 +67659,15 @@ class LoginSuccessDetails(bb.Struct): """ __slots__ = [ - "_is_emm_managed_value", - "_login_method_value", + '_is_emm_managed_value', + '_login_method_value', ] _has_required_fields = True - def __init__(self, login_method=None, is_emm_managed=None): + def __init__(self, + login_method=None, + is_emm_managed=None): self._is_emm_managed_value = bb.NOT_SET self._login_method_value = bb.NOT_SET if is_emm_managed is not None: @@ -69346,22 +67682,20 @@ def __init__(self, login_method=None, is_emm_managed=None): login_method = bb.Attribute("login_method", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LoginSuccessDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(LoginSuccessDetails, self)._process_custom_annotations(annotation_type, field_path, processor) LoginSuccessDetails_validator = bv.Struct(LoginSuccessDetails) - class LoginSuccessType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -69370,14 +67704,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LoginSuccessType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(LoginSuccessType, self)._process_custom_annotations(annotation_type, field_path, processor) LoginSuccessType_validator = bv.Struct(LoginSuccessType) - class LogoutDetails(bb.Struct): """ Signed out. @@ -69387,12 +67717,13 @@ class LogoutDetails(bb.Struct): """ __slots__ = [ - "_login_id_value", + '_login_id_value', ] _has_required_fields = False - def __init__(self, login_id=None): + def __init__(self, + login_id=None): self._login_id_value = bb.NOT_SET if login_id is not None: self.login_id = login_id @@ -69401,22 +67732,20 @@ def __init__(self, login_id=None): login_id = bb.Attribute("login_id", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LogoutDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(LogoutDetails, self)._process_custom_annotations(annotation_type, field_path, processor) LogoutDetails_validator = bv.Struct(LogoutDetails) - class LogoutType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -69427,10 +67756,8 @@ def __init__(self, description=None): def _process_custom_annotations(self, annotation_type, field_path, processor): super(LogoutType, self)._process_custom_annotations(annotation_type, field_path, processor) - LogoutType_validator = bv.Struct(LogoutType) - class MalwareExclusionState(bb.Struct): """ Malware exclusion list state @@ -69445,19 +67772,17 @@ class MalwareExclusionState(bb.Struct): """ __slots__ = [ - "_excluded_file_hashes_count_value", - "_file_path_from_last_exclusion_value", - "_file_path_from_last_inclusion_value", + '_excluded_file_hashes_count_value', + '_file_path_from_last_exclusion_value', + '_file_path_from_last_inclusion_value', ] _has_required_fields = True - def __init__( - self, - excluded_file_hashes_count=None, - file_path_from_last_exclusion=None, - file_path_from_last_inclusion=None, - ): + def __init__(self, + excluded_file_hashes_count=None, + file_path_from_last_exclusion=None, + file_path_from_last_inclusion=None): self._excluded_file_hashes_count_value = bb.NOT_SET self._file_path_from_last_exclusion_value = bb.NOT_SET self._file_path_from_last_inclusion_value = bb.NOT_SET @@ -69478,14 +67803,10 @@ def __init__( file_path_from_last_inclusion = bb.Attribute("file_path_from_last_inclusion", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MalwareExclusionState, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MalwareExclusionState, self)._process_custom_annotations(annotation_type, field_path, processor) MalwareExclusionState_validator = bv.Struct(MalwareExclusionState) - class MediaHubAddingPeoplePolicy(bb.Union): """ Policy for deciding who can be added to Media Hub content @@ -69495,7 +67816,7 @@ class MediaHubAddingPeoplePolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition anyone = None # Attribute is overwritten below the class definition @@ -69509,7 +67830,7 @@ def is_anyone(self): :rtype: bool """ - return self._tag == "anyone" + return self._tag == 'anyone' def is_team_only(self): """ @@ -69517,7 +67838,7 @@ def is_team_only(self): :rtype: bool """ - return self._tag == "team_only" + return self._tag == 'team_only' def is_other(self): """ @@ -69525,17 +67846,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MediaHubAddingPeoplePolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MediaHubAddingPeoplePolicy, self)._process_custom_annotations(annotation_type, field_path, processor) MediaHubAddingPeoplePolicy_validator = bv.Union(MediaHubAddingPeoplePolicy) - class MediaHubAddingPeoplePolicyChangedDetails(bb.Struct): """ Changed the policy for adding people to Media Hub content. @@ -69547,13 +67864,15 @@ class MediaHubAddingPeoplePolicyChangedDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -69568,24 +67887,20 @@ def __init__(self, new_value=None, previous_value=None): previous_value = bb.Attribute("previous_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MediaHubAddingPeoplePolicyChangedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - - -MediaHubAddingPeoplePolicyChangedDetails_validator = bv.Struct( - MediaHubAddingPeoplePolicyChangedDetails -) + super(MediaHubAddingPeoplePolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +MediaHubAddingPeoplePolicyChangedDetails_validator = bv.Struct(MediaHubAddingPeoplePolicyChangedDetails) class MediaHubAddingPeoplePolicyChangedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -69594,14 +67909,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MediaHubAddingPeoplePolicyChangedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MediaHubAddingPeoplePolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) MediaHubAddingPeoplePolicyChangedType_validator = bv.Struct(MediaHubAddingPeoplePolicyChangedType) - class MediaHubDownloadPolicy(bb.Union): """ Policy for deciding whether Media Hub content can be downloaded @@ -69611,7 +67922,7 @@ class MediaHubDownloadPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -69625,7 +67936,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == "disabled" + return self._tag == 'disabled' def is_enabled(self): """ @@ -69633,7 +67944,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == "enabled" + return self._tag == 'enabled' def is_other(self): """ @@ -69641,17 +67952,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MediaHubDownloadPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MediaHubDownloadPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) MediaHubDownloadPolicy_validator = bv.Union(MediaHubDownloadPolicy) - class MediaHubDownloadPolicyChangedDetails(bb.Struct): """ Changed the policy for downloading Media Hub content. @@ -69663,13 +67970,15 @@ class MediaHubDownloadPolicyChangedDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -69684,22 +67993,20 @@ def __init__(self, new_value=None, previous_value=None): previous_value = bb.Attribute("previous_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MediaHubDownloadPolicyChangedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MediaHubDownloadPolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) MediaHubDownloadPolicyChangedDetails_validator = bv.Struct(MediaHubDownloadPolicyChangedDetails) - class MediaHubDownloadPolicyChangedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -69708,20 +68015,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MediaHubDownloadPolicyChangedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MediaHubDownloadPolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) MediaHubDownloadPolicyChangedType_validator = bv.Struct(MediaHubDownloadPolicyChangedType) - class MediaHubFileDownloadedDetails(bb.Struct): """ Downloaded files in Media Hub. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -69729,22 +68033,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MediaHubFileDownloadedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MediaHubFileDownloadedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) MediaHubFileDownloadedDetails_validator = bv.Struct(MediaHubFileDownloadedDetails) - class MediaHubFileDownloadedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -69753,14 +68055,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MediaHubFileDownloadedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MediaHubFileDownloadedType, self)._process_custom_annotations(annotation_type, field_path, processor) MediaHubFileDownloadedType_validator = bv.Struct(MediaHubFileDownloadedType) - class MediaHubLinkSharingPolicy(bb.Union): """ Policy for deciding who Media Hub content can be shared with through links @@ -69770,7 +68068,7 @@ class MediaHubLinkSharingPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition no_one = None # Attribute is overwritten below the class definition @@ -69786,7 +68084,7 @@ def is_no_one(self): :rtype: bool """ - return self._tag == "no_one" + return self._tag == 'no_one' def is_public(self): """ @@ -69794,7 +68092,7 @@ def is_public(self): :rtype: bool """ - return self._tag == "public" + return self._tag == 'public' def is_team_only(self): """ @@ -69802,7 +68100,7 @@ def is_team_only(self): :rtype: bool """ - return self._tag == "team_only" + return self._tag == 'team_only' def is_other(self): """ @@ -69810,17 +68108,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MediaHubLinkSharingPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MediaHubLinkSharingPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) MediaHubLinkSharingPolicy_validator = bv.Union(MediaHubLinkSharingPolicy) - class MediaHubLinkSharingPolicyChangedDetails(bb.Struct): """ Changed the policy for sharing Media Hub content. @@ -69832,13 +68126,15 @@ class MediaHubLinkSharingPolicyChangedDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -69853,24 +68149,20 @@ def __init__(self, new_value=None, previous_value=None): previous_value = bb.Attribute("previous_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MediaHubLinkSharingPolicyChangedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - - -MediaHubLinkSharingPolicyChangedDetails_validator = bv.Struct( - MediaHubLinkSharingPolicyChangedDetails -) + super(MediaHubLinkSharingPolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +MediaHubLinkSharingPolicyChangedDetails_validator = bv.Struct(MediaHubLinkSharingPolicyChangedDetails) class MediaHubLinkSharingPolicyChangedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -69879,14 +68171,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MediaHubLinkSharingPolicyChangedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MediaHubLinkSharingPolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) MediaHubLinkSharingPolicyChangedType_validator = bv.Struct(MediaHubLinkSharingPolicyChangedType) - class MediaHubProjectRole(bb.Union): """ Media Hub project role @@ -69896,7 +68184,7 @@ class MediaHubProjectRole(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition editor = None # Attribute is overwritten below the class definition @@ -69912,7 +68200,7 @@ def is_editor(self): :rtype: bool """ - return self._tag == "editor" + return self._tag == 'editor' def is_owner(self): """ @@ -69920,7 +68208,7 @@ def is_owner(self): :rtype: bool """ - return self._tag == "owner" + return self._tag == 'owner' def is_reviewer(self): """ @@ -69928,7 +68216,7 @@ def is_reviewer(self): :rtype: bool """ - return self._tag == "reviewer" + return self._tag == 'reviewer' def is_other(self): """ @@ -69936,23 +68224,20 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MediaHubProjectRole, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MediaHubProjectRole, self)._process_custom_annotations(annotation_type, field_path, processor) MediaHubProjectRole_validator = bv.Union(MediaHubProjectRole) - class MediaHubProjectTeamAddDetails(bb.Struct): """ Added member to Media Hub project. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -69960,22 +68245,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MediaHubProjectTeamAddDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MediaHubProjectTeamAddDetails, self)._process_custom_annotations(annotation_type, field_path, processor) MediaHubProjectTeamAddDetails_validator = bv.Struct(MediaHubProjectTeamAddDetails) - class MediaHubProjectTeamAddType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -69984,20 +68267,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MediaHubProjectTeamAddType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MediaHubProjectTeamAddType, self)._process_custom_annotations(annotation_type, field_path, processor) MediaHubProjectTeamAddType_validator = bv.Struct(MediaHubProjectTeamAddType) - class MediaHubProjectTeamDeleteDetails(bb.Struct): """ Removed member from Media Hub project. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -70005,22 +68285,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MediaHubProjectTeamDeleteDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MediaHubProjectTeamDeleteDetails, self)._process_custom_annotations(annotation_type, field_path, processor) MediaHubProjectTeamDeleteDetails_validator = bv.Struct(MediaHubProjectTeamDeleteDetails) - class MediaHubProjectTeamDeleteType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -70029,14 +68307,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MediaHubProjectTeamDeleteType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MediaHubProjectTeamDeleteType, self)._process_custom_annotations(annotation_type, field_path, processor) MediaHubProjectTeamDeleteType_validator = bv.Struct(MediaHubProjectTeamDeleteType) - class MediaHubProjectTeamRoleChangedDetails(bb.Struct): """ Changed member role in Media Hub project. @@ -70048,13 +68322,15 @@ class MediaHubProjectTeamRoleChangedDetails(bb.Struct): """ __slots__ = [ - "_previous_role_value", - "_new_role_value", + '_previous_role_value', + '_new_role_value', ] _has_required_fields = True - def __init__(self, previous_role=None, new_role=None): + def __init__(self, + previous_role=None, + new_role=None): self._previous_role_value = bb.NOT_SET self._new_role_value = bb.NOT_SET if previous_role is not None: @@ -70069,22 +68345,20 @@ def __init__(self, previous_role=None, new_role=None): new_role = bb.Attribute("new_role", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MediaHubProjectTeamRoleChangedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MediaHubProjectTeamRoleChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) MediaHubProjectTeamRoleChangedDetails_validator = bv.Struct(MediaHubProjectTeamRoleChangedDetails) - class MediaHubProjectTeamRoleChangedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -70093,14 +68367,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MediaHubProjectTeamRoleChangedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MediaHubProjectTeamRoleChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) MediaHubProjectTeamRoleChangedType_validator = bv.Struct(MediaHubProjectTeamRoleChangedType) - class MediaHubSharedLinkAudience(bb.Union): """ Media Hub shared link audience @@ -70110,7 +68380,7 @@ class MediaHubSharedLinkAudience(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition no_one = None # Attribute is overwritten below the class definition @@ -70126,7 +68396,7 @@ def is_no_one(self): :rtype: bool """ - return self._tag == "no_one" + return self._tag == 'no_one' def is_public(self): """ @@ -70134,7 +68404,7 @@ def is_public(self): :rtype: bool """ - return self._tag == "public" + return self._tag == 'public' def is_team_only(self): """ @@ -70142,7 +68412,7 @@ def is_team_only(self): :rtype: bool """ - return self._tag == "team_only" + return self._tag == 'team_only' def is_other(self): """ @@ -70150,17 +68420,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MediaHubSharedLinkAudience, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MediaHubSharedLinkAudience, self)._process_custom_annotations(annotation_type, field_path, processor) MediaHubSharedLinkAudience_validator = bv.Union(MediaHubSharedLinkAudience) - class MediaHubSharedLinkAudienceChangedDetails(bb.Struct): """ Changed Media Hub shared link audience. @@ -70174,14 +68440,17 @@ class MediaHubSharedLinkAudienceChangedDetails(bb.Struct): """ __slots__ = [ - "_target_type_value", - "_previous_value_value", - "_new_value_value", + '_target_type_value', + '_previous_value_value', + '_new_value_value', ] _has_required_fields = True - def __init__(self, target_type=None, previous_value=None, new_value=None): + def __init__(self, + target_type=None, + previous_value=None, + new_value=None): self._target_type_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET self._new_value_value = bb.NOT_SET @@ -70202,24 +68471,20 @@ def __init__(self, target_type=None, previous_value=None, new_value=None): new_value = bb.Attribute("new_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MediaHubSharedLinkAudienceChangedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - - -MediaHubSharedLinkAudienceChangedDetails_validator = bv.Struct( - MediaHubSharedLinkAudienceChangedDetails -) + super(MediaHubSharedLinkAudienceChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +MediaHubSharedLinkAudienceChangedDetails_validator = bv.Struct(MediaHubSharedLinkAudienceChangedDetails) class MediaHubSharedLinkAudienceChangedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -70228,14 +68493,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MediaHubSharedLinkAudienceChangedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MediaHubSharedLinkAudienceChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) MediaHubSharedLinkAudienceChangedType_validator = bv.Struct(MediaHubSharedLinkAudienceChangedType) - class MediaHubSharedLinkCreatedDetails(bb.Struct): """ Created Media Hub shared link. @@ -70247,13 +68508,15 @@ class MediaHubSharedLinkCreatedDetails(bb.Struct): """ __slots__ = [ - "_target_type_value", - "_audience_value", + '_target_type_value', + '_audience_value', ] _has_required_fields = True - def __init__(self, target_type=None, audience=None): + def __init__(self, + target_type=None, + audience=None): self._target_type_value = bb.NOT_SET self._audience_value = bb.NOT_SET if target_type is not None: @@ -70268,22 +68531,20 @@ def __init__(self, target_type=None, audience=None): audience = bb.Attribute("audience", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MediaHubSharedLinkCreatedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MediaHubSharedLinkCreatedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) MediaHubSharedLinkCreatedDetails_validator = bv.Struct(MediaHubSharedLinkCreatedDetails) - class MediaHubSharedLinkCreatedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -70292,14 +68553,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MediaHubSharedLinkCreatedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MediaHubSharedLinkCreatedType, self)._process_custom_annotations(annotation_type, field_path, processor) MediaHubSharedLinkCreatedType_validator = bv.Struct(MediaHubSharedLinkCreatedType) - class MediaHubSharedLinkDownloadSetting(bb.Union): """ Media Hub shared link download setting @@ -70309,7 +68566,7 @@ class MediaHubSharedLinkDownloadSetting(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -70323,7 +68580,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == "disabled" + return self._tag == 'disabled' def is_enabled(self): """ @@ -70331,7 +68588,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == "enabled" + return self._tag == 'enabled' def is_other(self): """ @@ -70339,17 +68596,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MediaHubSharedLinkDownloadSetting, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MediaHubSharedLinkDownloadSetting, self)._process_custom_annotations(annotation_type, field_path, processor) MediaHubSharedLinkDownloadSetting_validator = bv.Union(MediaHubSharedLinkDownloadSetting) - class MediaHubSharedLinkDownloadSettingChangedDetails(bb.Struct): """ Changed Media Hub shared link download setting. @@ -70363,14 +68616,17 @@ class MediaHubSharedLinkDownloadSettingChangedDetails(bb.Struct): """ __slots__ = [ - "_target_type_value", - "_previous_value_value", - "_new_value_value", + '_target_type_value', + '_previous_value_value', + '_new_value_value', ] _has_required_fields = True - def __init__(self, target_type=None, previous_value=None, new_value=None): + def __init__(self, + target_type=None, + previous_value=None, + new_value=None): self._target_type_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET self._new_value_value = bb.NOT_SET @@ -70391,24 +68647,20 @@ def __init__(self, target_type=None, previous_value=None, new_value=None): new_value = bb.Attribute("new_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MediaHubSharedLinkDownloadSettingChangedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - - -MediaHubSharedLinkDownloadSettingChangedDetails_validator = bv.Struct( - MediaHubSharedLinkDownloadSettingChangedDetails -) + super(MediaHubSharedLinkDownloadSettingChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +MediaHubSharedLinkDownloadSettingChangedDetails_validator = bv.Struct(MediaHubSharedLinkDownloadSettingChangedDetails) class MediaHubSharedLinkDownloadSettingChangedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -70417,15 +68669,9 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MediaHubSharedLinkDownloadSettingChangedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - - -MediaHubSharedLinkDownloadSettingChangedType_validator = bv.Struct( - MediaHubSharedLinkDownloadSettingChangedType -) + super(MediaHubSharedLinkDownloadSettingChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) +MediaHubSharedLinkDownloadSettingChangedType_validator = bv.Struct(MediaHubSharedLinkDownloadSettingChangedType) class MediaHubSharedLinkRevokedDetails(bb.Struct): """ @@ -70436,12 +68682,13 @@ class MediaHubSharedLinkRevokedDetails(bb.Struct): """ __slots__ = [ - "_target_type_value", + '_target_type_value', ] _has_required_fields = True - def __init__(self, target_type=None): + def __init__(self, + target_type=None): self._target_type_value = bb.NOT_SET if target_type is not None: self.target_type = target_type @@ -70450,22 +68697,20 @@ def __init__(self, target_type=None): target_type = bb.Attribute("target_type", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MediaHubSharedLinkRevokedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MediaHubSharedLinkRevokedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) MediaHubSharedLinkRevokedDetails_validator = bv.Struct(MediaHubSharedLinkRevokedDetails) - class MediaHubSharedLinkRevokedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -70474,14 +68719,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MediaHubSharedLinkRevokedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MediaHubSharedLinkRevokedType, self)._process_custom_annotations(annotation_type, field_path, processor) MediaHubSharedLinkRevokedType_validator = bv.Struct(MediaHubSharedLinkRevokedType) - class MediaHubSharedLinkTargetType(bb.Union): """ Media Hub shared link target type @@ -70491,7 +68732,7 @@ class MediaHubSharedLinkTargetType(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition bundle = None # Attribute is overwritten below the class definition @@ -70505,7 +68746,7 @@ def is_bundle(self): :rtype: bool """ - return self._tag == "bundle" + return self._tag == 'bundle' def is_project(self): """ @@ -70513,7 +68754,7 @@ def is_project(self): :rtype: bool """ - return self._tag == "project" + return self._tag == 'project' def is_other(self): """ @@ -70521,23 +68762,20 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MediaHubSharedLinkTargetType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MediaHubSharedLinkTargetType, self)._process_custom_annotations(annotation_type, field_path, processor) MediaHubSharedLinkTargetType_validator = bv.Union(MediaHubSharedLinkTargetType) - class MemberAccessDetailsCreateReportDetails(bb.Struct): """ Created member access report. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -70545,14 +68783,10 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberAccessDetailsCreateReportDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MemberAccessDetailsCreateReportDetails, self)._process_custom_annotations(annotation_type, field_path, processor) MemberAccessDetailsCreateReportDetails_validator = bv.Struct(MemberAccessDetailsCreateReportDetails) - class MemberAccessDetailsCreateReportFailedDetails(bb.Struct): """ Couldn't generate member access report. @@ -70562,12 +68796,13 @@ class MemberAccessDetailsCreateReportFailedDetails(bb.Struct): """ __slots__ = [ - "_failure_reason_value", + '_failure_reason_value', ] _has_required_fields = True - def __init__(self, failure_reason=None): + def __init__(self, + failure_reason=None): self._failure_reason_value = bb.NOT_SET if failure_reason is not None: self.failure_reason = failure_reason @@ -70576,24 +68811,20 @@ def __init__(self, failure_reason=None): failure_reason = bb.Attribute("failure_reason", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberAccessDetailsCreateReportFailedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - - -MemberAccessDetailsCreateReportFailedDetails_validator = bv.Struct( - MemberAccessDetailsCreateReportFailedDetails -) + super(MemberAccessDetailsCreateReportFailedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +MemberAccessDetailsCreateReportFailedDetails_validator = bv.Struct(MemberAccessDetailsCreateReportFailedDetails) class MemberAccessDetailsCreateReportFailedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -70602,24 +68833,20 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberAccessDetailsCreateReportFailedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - - -MemberAccessDetailsCreateReportFailedType_validator = bv.Struct( - MemberAccessDetailsCreateReportFailedType -) + super(MemberAccessDetailsCreateReportFailedType, self)._process_custom_annotations(annotation_type, field_path, processor) +MemberAccessDetailsCreateReportFailedType_validator = bv.Struct(MemberAccessDetailsCreateReportFailedType) class MemberAccessDetailsCreateReportType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -70628,14 +68855,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberAccessDetailsCreateReportType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MemberAccessDetailsCreateReportType, self)._process_custom_annotations(annotation_type, field_path, processor) MemberAccessDetailsCreateReportType_validator = bv.Struct(MemberAccessDetailsCreateReportType) - class MemberAddExternalIdDetails(bb.Struct): """ Added an external ID for team member. @@ -70645,12 +68868,13 @@ class MemberAddExternalIdDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", + '_new_value_value', ] _has_required_fields = True - def __init__(self, new_value=None): + def __init__(self, + new_value=None): self._new_value_value = bb.NOT_SET if new_value is not None: self.new_value = new_value @@ -70659,22 +68883,20 @@ def __init__(self, new_value=None): new_value = bb.Attribute("new_value") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberAddExternalIdDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MemberAddExternalIdDetails, self)._process_custom_annotations(annotation_type, field_path, processor) MemberAddExternalIdDetails_validator = bv.Struct(MemberAddExternalIdDetails) - class MemberAddExternalIdType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -70683,14 +68905,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberAddExternalIdType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MemberAddExternalIdType, self)._process_custom_annotations(annotation_type, field_path, processor) MemberAddExternalIdType_validator = bv.Struct(MemberAddExternalIdType) - class MemberAddNameDetails(bb.Struct): """ Added team member name. @@ -70700,12 +68918,13 @@ class MemberAddNameDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", + '_new_value_value', ] _has_required_fields = True - def __init__(self, new_value=None): + def __init__(self, + new_value=None): self._new_value_value = bb.NOT_SET if new_value is not None: self.new_value = new_value @@ -70714,22 +68933,20 @@ def __init__(self, new_value=None): new_value = bb.Attribute("new_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberAddNameDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MemberAddNameDetails, self)._process_custom_annotations(annotation_type, field_path, processor) MemberAddNameDetails_validator = bv.Struct(MemberAddNameDetails) - class MemberAddNameType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -70738,14 +68955,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberAddNameType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MemberAddNameType, self)._process_custom_annotations(annotation_type, field_path, processor) MemberAddNameType_validator = bv.Struct(MemberAddNameType) - class MemberChangeAdminRoleDetails(bb.Struct): """ Changed team member admin role. @@ -70759,13 +68972,15 @@ class MemberChangeAdminRoleDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = False - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -70780,22 +68995,20 @@ def __init__(self, new_value=None, previous_value=None): previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberChangeAdminRoleDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MemberChangeAdminRoleDetails, self)._process_custom_annotations(annotation_type, field_path, processor) MemberChangeAdminRoleDetails_validator = bv.Struct(MemberChangeAdminRoleDetails) - class MemberChangeAdminRoleType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -70804,14 +69017,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberChangeAdminRoleType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MemberChangeAdminRoleType, self)._process_custom_annotations(annotation_type, field_path, processor) MemberChangeAdminRoleType_validator = bv.Struct(MemberChangeAdminRoleType) - class MemberChangeEmailDetails(bb.Struct): """ Changed team member email. @@ -70823,13 +69032,15 @@ class MemberChangeEmailDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -70844,22 +69055,20 @@ def __init__(self, new_value=None, previous_value=None): previous_value = bb.Attribute("previous_value", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberChangeEmailDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MemberChangeEmailDetails, self)._process_custom_annotations(annotation_type, field_path, processor) MemberChangeEmailDetails_validator = bv.Struct(MemberChangeEmailDetails) - class MemberChangeEmailType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -70868,14 +69077,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberChangeEmailType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MemberChangeEmailType, self)._process_custom_annotations(annotation_type, field_path, processor) MemberChangeEmailType_validator = bv.Struct(MemberChangeEmailType) - class MemberChangeExternalIdDetails(bb.Struct): """ Changed the external ID for team member. @@ -70887,13 +69092,15 @@ class MemberChangeExternalIdDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -70908,22 +69115,20 @@ def __init__(self, new_value=None, previous_value=None): previous_value = bb.Attribute("previous_value") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberChangeExternalIdDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MemberChangeExternalIdDetails, self)._process_custom_annotations(annotation_type, field_path, processor) MemberChangeExternalIdDetails_validator = bv.Struct(MemberChangeExternalIdDetails) - class MemberChangeExternalIdType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -70932,14 +69137,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberChangeExternalIdType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MemberChangeExternalIdType, self)._process_custom_annotations(annotation_type, field_path, processor) MemberChangeExternalIdType_validator = bv.Struct(MemberChangeExternalIdType) - class MemberChangeMembershipTypeDetails(bb.Struct): """ Changed membership type (limited/full) of member. @@ -70951,13 +69152,15 @@ class MemberChangeMembershipTypeDetails(bb.Struct): """ __slots__ = [ - "_prev_value_value", - "_new_value_value", + '_prev_value_value', + '_new_value_value', ] _has_required_fields = True - def __init__(self, prev_value=None, new_value=None): + def __init__(self, + prev_value=None, + new_value=None): self._prev_value_value = bb.NOT_SET self._new_value_value = bb.NOT_SET if prev_value is not None: @@ -70972,22 +69175,20 @@ def __init__(self, prev_value=None, new_value=None): new_value = bb.Attribute("new_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberChangeMembershipTypeDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MemberChangeMembershipTypeDetails, self)._process_custom_annotations(annotation_type, field_path, processor) MemberChangeMembershipTypeDetails_validator = bv.Struct(MemberChangeMembershipTypeDetails) - class MemberChangeMembershipTypeType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -70996,14 +69197,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberChangeMembershipTypeType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MemberChangeMembershipTypeType, self)._process_custom_annotations(annotation_type, field_path, processor) MemberChangeMembershipTypeType_validator = bv.Struct(MemberChangeMembershipTypeType) - class MemberChangeNameDetails(bb.Struct): """ Changed team member name. @@ -71015,13 +69212,15 @@ class MemberChangeNameDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -71036,22 +69235,20 @@ def __init__(self, new_value=None, previous_value=None): previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberChangeNameDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MemberChangeNameDetails, self)._process_custom_annotations(annotation_type, field_path, processor) MemberChangeNameDetails_validator = bv.Struct(MemberChangeNameDetails) - class MemberChangeNameType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -71060,14 +69257,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberChangeNameType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MemberChangeNameType, self)._process_custom_annotations(annotation_type, field_path, processor) MemberChangeNameType_validator = bv.Struct(MemberChangeNameType) - class MemberChangeResellerRoleDetails(bb.Struct): """ Changed team member reseller role. @@ -71081,13 +69274,15 @@ class MemberChangeResellerRoleDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -71102,22 +69297,20 @@ def __init__(self, new_value=None, previous_value=None): previous_value = bb.Attribute("previous_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberChangeResellerRoleDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MemberChangeResellerRoleDetails, self)._process_custom_annotations(annotation_type, field_path, processor) MemberChangeResellerRoleDetails_validator = bv.Struct(MemberChangeResellerRoleDetails) - class MemberChangeResellerRoleType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -71126,14 +69319,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberChangeResellerRoleType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MemberChangeResellerRoleType, self)._process_custom_annotations(annotation_type, field_path, processor) MemberChangeResellerRoleType_validator = bv.Struct(MemberChangeResellerRoleType) - class MemberChangeStatusDetails(bb.Struct): """ Changed member status (invited, joined, suspended, etc.). @@ -71154,23 +69343,21 @@ class MemberChangeStatusDetails(bb.Struct): """ __slots__ = [ - "_previous_value_value", - "_new_value_value", - "_action_value", - "_new_team_value", - "_previous_team_value", + '_previous_value_value', + '_new_value_value', + '_action_value', + '_new_team_value', + '_previous_team_value', ] _has_required_fields = True - def __init__( - self, - new_value=None, - previous_value=None, - action=None, - new_team=None, - previous_team=None, - ): + def __init__(self, + new_value=None, + previous_value=None, + action=None, + new_team=None, + previous_team=None): self._previous_value_value = bb.NOT_SET self._new_value_value = bb.NOT_SET self._action_value = bb.NOT_SET @@ -71203,22 +69390,20 @@ def __init__( previous_team = bb.Attribute("previous_team", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberChangeStatusDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MemberChangeStatusDetails, self)._process_custom_annotations(annotation_type, field_path, processor) MemberChangeStatusDetails_validator = bv.Struct(MemberChangeStatusDetails) - class MemberChangeStatusType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -71227,20 +69412,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberChangeStatusType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MemberChangeStatusType, self)._process_custom_annotations(annotation_type, field_path, processor) MemberChangeStatusType_validator = bv.Struct(MemberChangeStatusType) - class MemberDeleteManualContactsDetails(bb.Struct): """ Cleared manually added contacts. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -71248,22 +69430,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberDeleteManualContactsDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MemberDeleteManualContactsDetails, self)._process_custom_annotations(annotation_type, field_path, processor) MemberDeleteManualContactsDetails_validator = bv.Struct(MemberDeleteManualContactsDetails) - class MemberDeleteManualContactsType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -71272,20 +69452,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberDeleteManualContactsType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MemberDeleteManualContactsType, self)._process_custom_annotations(annotation_type, field_path, processor) MemberDeleteManualContactsType_validator = bv.Struct(MemberDeleteManualContactsType) - class MemberDeleteProfilePhotoDetails(bb.Struct): """ Deleted team member profile photo. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -71293,22 +69470,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberDeleteProfilePhotoDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MemberDeleteProfilePhotoDetails, self)._process_custom_annotations(annotation_type, field_path, processor) MemberDeleteProfilePhotoDetails_validator = bv.Struct(MemberDeleteProfilePhotoDetails) - class MemberDeleteProfilePhotoType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -71317,20 +69492,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberDeleteProfilePhotoType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MemberDeleteProfilePhotoType, self)._process_custom_annotations(annotation_type, field_path, processor) MemberDeleteProfilePhotoType_validator = bv.Struct(MemberDeleteProfilePhotoType) - class MemberPermanentlyDeleteAccountContentsDetails(bb.Struct): """ Permanently deleted contents of deleted team member account. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -71338,24 +69510,20 @@ 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 - ) - - -MemberPermanentlyDeleteAccountContentsDetails_validator = bv.Struct( - MemberPermanentlyDeleteAccountContentsDetails -) + super(MemberPermanentlyDeleteAccountContentsDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +MemberPermanentlyDeleteAccountContentsDetails_validator = bv.Struct(MemberPermanentlyDeleteAccountContentsDetails) class MemberPermanentlyDeleteAccountContentsType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -71364,15 +69532,9 @@ def __init__(self, description=None): 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 - ) - - -MemberPermanentlyDeleteAccountContentsType_validator = bv.Struct( - MemberPermanentlyDeleteAccountContentsType -) + super(MemberPermanentlyDeleteAccountContentsType, self)._process_custom_annotations(annotation_type, field_path, processor) +MemberPermanentlyDeleteAccountContentsType_validator = bv.Struct(MemberPermanentlyDeleteAccountContentsType) class MemberRemoveActionType(bb.Union): """ @@ -71381,7 +69543,7 @@ class MemberRemoveActionType(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition delete = None # Attribute is overwritten below the class definition @@ -71399,7 +69561,7 @@ def is_delete(self): :rtype: bool """ - return self._tag == "delete" + return self._tag == 'delete' def is_leave(self): """ @@ -71407,7 +69569,7 @@ def is_leave(self): :rtype: bool """ - return self._tag == "leave" + return self._tag == 'leave' def is_offboard(self): """ @@ -71415,7 +69577,7 @@ def is_offboard(self): :rtype: bool """ - return self._tag == "offboard" + return self._tag == 'offboard' def is_offboard_and_retain_team_folders(self): """ @@ -71423,7 +69585,7 @@ def is_offboard_and_retain_team_folders(self): :rtype: bool """ - return self._tag == "offboard_and_retain_team_folders" + return self._tag == 'offboard_and_retain_team_folders' def is_other(self): """ @@ -71431,17 +69593,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberRemoveActionType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MemberRemoveActionType, self)._process_custom_annotations(annotation_type, field_path, processor) MemberRemoveActionType_validator = bv.Union(MemberRemoveActionType) - class MemberRemoveExternalIdDetails(bb.Struct): """ Removed the external ID for team member. @@ -71451,12 +69609,13 @@ class MemberRemoveExternalIdDetails(bb.Struct): """ __slots__ = [ - "_previous_value_value", + '_previous_value_value', ] _has_required_fields = True - def __init__(self, previous_value=None): + def __init__(self, + previous_value=None): self._previous_value_value = bb.NOT_SET if previous_value is not None: self.previous_value = previous_value @@ -71465,22 +69624,20 @@ def __init__(self, previous_value=None): previous_value = bb.Attribute("previous_value") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberRemoveExternalIdDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MemberRemoveExternalIdDetails, self)._process_custom_annotations(annotation_type, field_path, processor) MemberRemoveExternalIdDetails_validator = bv.Struct(MemberRemoveExternalIdDetails) - class MemberRemoveExternalIdType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -71489,14 +69646,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberRemoveExternalIdType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MemberRemoveExternalIdType, self)._process_custom_annotations(annotation_type, field_path, processor) MemberRemoveExternalIdType_validator = bv.Struct(MemberRemoveExternalIdType) - class MemberRequestsChangePolicyDetails(bb.Struct): """ Changed whether users can find team when not invited. @@ -71509,13 +69662,15 @@ class MemberRequestsChangePolicyDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -71530,22 +69685,20 @@ def __init__(self, new_value=None, previous_value=None): previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberRequestsChangePolicyDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MemberRequestsChangePolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) MemberRequestsChangePolicyDetails_validator = bv.Struct(MemberRequestsChangePolicyDetails) - class MemberRequestsChangePolicyType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -71554,14 +69707,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberRequestsChangePolicyType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MemberRequestsChangePolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) MemberRequestsChangePolicyType_validator = bv.Struct(MemberRequestsChangePolicyType) - class MemberRequestsPolicy(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -71569,7 +69718,7 @@ class MemberRequestsPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition auto_accept = None # Attribute is overwritten below the class definition @@ -71585,7 +69734,7 @@ def is_auto_accept(self): :rtype: bool """ - return self._tag == "auto_accept" + return self._tag == 'auto_accept' def is_disabled(self): """ @@ -71593,7 +69742,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == "disabled" + return self._tag == 'disabled' def is_require_approval(self): """ @@ -71601,7 +69750,7 @@ def is_require_approval(self): :rtype: bool """ - return self._tag == "require_approval" + return self._tag == 'require_approval' def is_other(self): """ @@ -71609,17 +69758,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberRequestsPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MemberRequestsPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) MemberRequestsPolicy_validator = bv.Union(MemberRequestsPolicy) - class MemberSendInvitePolicy(bb.Union): """ Policy for controlling whether team members can send team invites @@ -71629,7 +69774,7 @@ class MemberSendInvitePolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -71645,7 +69790,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == "disabled" + return self._tag == 'disabled' def is_everyone(self): """ @@ -71653,7 +69798,7 @@ def is_everyone(self): :rtype: bool """ - return self._tag == "everyone" + return self._tag == 'everyone' def is_specific_members(self): """ @@ -71661,7 +69806,7 @@ def is_specific_members(self): :rtype: bool """ - return self._tag == "specific_members" + return self._tag == 'specific_members' def is_other(self): """ @@ -71669,17 +69814,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberSendInvitePolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MemberSendInvitePolicy, self)._process_custom_annotations(annotation_type, field_path, processor) MemberSendInvitePolicy_validator = bv.Union(MemberSendInvitePolicy) - class MemberSendInvitePolicyChangedDetails(bb.Struct): """ Changed member send invite policy for team. @@ -71691,13 +69832,15 @@ class MemberSendInvitePolicyChangedDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -71712,22 +69855,20 @@ def __init__(self, new_value=None, previous_value=None): previous_value = bb.Attribute("previous_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberSendInvitePolicyChangedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MemberSendInvitePolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) MemberSendInvitePolicyChangedDetails_validator = bv.Struct(MemberSendInvitePolicyChangedDetails) - class MemberSendInvitePolicyChangedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -71736,20 +69877,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberSendInvitePolicyChangedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MemberSendInvitePolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) MemberSendInvitePolicyChangedType_validator = bv.Struct(MemberSendInvitePolicyChangedType) - class MemberSetProfilePhotoDetails(bb.Struct): """ Set team member profile photo. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -71757,22 +69895,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberSetProfilePhotoDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MemberSetProfilePhotoDetails, self)._process_custom_annotations(annotation_type, field_path, processor) MemberSetProfilePhotoDetails_validator = bv.Struct(MemberSetProfilePhotoDetails) - class MemberSetProfilePhotoType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -71781,14 +69917,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberSetProfilePhotoType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MemberSetProfilePhotoType, self)._process_custom_annotations(annotation_type, field_path, processor) MemberSetProfilePhotoType_validator = bv.Struct(MemberSetProfilePhotoType) - class MemberSpaceLimitsAddCustomQuotaDetails(bb.Struct): """ Set custom member space limit. @@ -71798,12 +69930,13 @@ class MemberSpaceLimitsAddCustomQuotaDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", + '_new_value_value', ] _has_required_fields = True - def __init__(self, new_value=None): + def __init__(self, + new_value=None): self._new_value_value = bb.NOT_SET if new_value is not None: self.new_value = new_value @@ -71812,22 +69945,20 @@ def __init__(self, new_value=None): new_value = bb.Attribute("new_value") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberSpaceLimitsAddCustomQuotaDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MemberSpaceLimitsAddCustomQuotaDetails, self)._process_custom_annotations(annotation_type, field_path, processor) MemberSpaceLimitsAddCustomQuotaDetails_validator = bv.Struct(MemberSpaceLimitsAddCustomQuotaDetails) - class MemberSpaceLimitsAddCustomQuotaType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -71836,20 +69967,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberSpaceLimitsAddCustomQuotaType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MemberSpaceLimitsAddCustomQuotaType, self)._process_custom_annotations(annotation_type, field_path, processor) MemberSpaceLimitsAddCustomQuotaType_validator = bv.Struct(MemberSpaceLimitsAddCustomQuotaType) - class MemberSpaceLimitsAddExceptionDetails(bb.Struct): """ Added members to member space limit exception list. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -71857,22 +69985,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberSpaceLimitsAddExceptionDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MemberSpaceLimitsAddExceptionDetails, self)._process_custom_annotations(annotation_type, field_path, processor) MemberSpaceLimitsAddExceptionDetails_validator = bv.Struct(MemberSpaceLimitsAddExceptionDetails) - class MemberSpaceLimitsAddExceptionType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -71881,14 +70007,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberSpaceLimitsAddExceptionType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MemberSpaceLimitsAddExceptionType, self)._process_custom_annotations(annotation_type, field_path, processor) MemberSpaceLimitsAddExceptionType_validator = bv.Struct(MemberSpaceLimitsAddExceptionType) - class MemberSpaceLimitsChangeCapsTypePolicyDetails(bb.Struct): """ Changed member space limit type for team. @@ -71900,13 +70022,15 @@ class MemberSpaceLimitsChangeCapsTypePolicyDetails(bb.Struct): """ __slots__ = [ - "_previous_value_value", - "_new_value_value", + '_previous_value_value', + '_new_value_value', ] _has_required_fields = True - def __init__(self, previous_value=None, new_value=None): + def __init__(self, + previous_value=None, + new_value=None): self._previous_value_value = bb.NOT_SET self._new_value_value = bb.NOT_SET if previous_value is not None: @@ -71921,24 +70045,20 @@ def __init__(self, previous_value=None, new_value=None): 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 - ) - - -MemberSpaceLimitsChangeCapsTypePolicyDetails_validator = bv.Struct( - MemberSpaceLimitsChangeCapsTypePolicyDetails -) + super(MemberSpaceLimitsChangeCapsTypePolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +MemberSpaceLimitsChangeCapsTypePolicyDetails_validator = bv.Struct(MemberSpaceLimitsChangeCapsTypePolicyDetails) class MemberSpaceLimitsChangeCapsTypePolicyType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -71947,15 +70067,9 @@ def __init__(self, description=None): 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 - ) - - -MemberSpaceLimitsChangeCapsTypePolicyType_validator = bv.Struct( - MemberSpaceLimitsChangeCapsTypePolicyType -) + super(MemberSpaceLimitsChangeCapsTypePolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) +MemberSpaceLimitsChangeCapsTypePolicyType_validator = bv.Struct(MemberSpaceLimitsChangeCapsTypePolicyType) class MemberSpaceLimitsChangeCustomQuotaDetails(bb.Struct): """ @@ -71968,13 +70082,15 @@ class MemberSpaceLimitsChangeCustomQuotaDetails(bb.Struct): """ __slots__ = [ - "_previous_value_value", - "_new_value_value", + '_previous_value_value', + '_new_value_value', ] _has_required_fields = True - def __init__(self, previous_value=None, new_value=None): + def __init__(self, + previous_value=None, + new_value=None): self._previous_value_value = bb.NOT_SET self._new_value_value = bb.NOT_SET if previous_value is not None: @@ -71989,24 +70105,20 @@ def __init__(self, previous_value=None, new_value=None): 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 - ) - - -MemberSpaceLimitsChangeCustomQuotaDetails_validator = bv.Struct( - MemberSpaceLimitsChangeCustomQuotaDetails -) + super(MemberSpaceLimitsChangeCustomQuotaDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +MemberSpaceLimitsChangeCustomQuotaDetails_validator = bv.Struct(MemberSpaceLimitsChangeCustomQuotaDetails) class MemberSpaceLimitsChangeCustomQuotaType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -72015,14 +70127,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberSpaceLimitsChangeCustomQuotaType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MemberSpaceLimitsChangeCustomQuotaType, self)._process_custom_annotations(annotation_type, field_path, processor) MemberSpaceLimitsChangeCustomQuotaType_validator = bv.Struct(MemberSpaceLimitsChangeCustomQuotaType) - class MemberSpaceLimitsChangePolicyDetails(bb.Struct): """ Changed team default member space limit. @@ -72036,13 +70144,15 @@ class MemberSpaceLimitsChangePolicyDetails(bb.Struct): """ __slots__ = [ - "_previous_value_value", - "_new_value_value", + '_previous_value_value', + '_new_value_value', ] _has_required_fields = False - def __init__(self, previous_value=None, new_value=None): + def __init__(self, + previous_value=None, + new_value=None): self._previous_value_value = bb.NOT_SET self._new_value_value = bb.NOT_SET if previous_value is not None: @@ -72057,22 +70167,20 @@ def __init__(self, previous_value=None, new_value=None): new_value = bb.Attribute("new_value", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberSpaceLimitsChangePolicyDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MemberSpaceLimitsChangePolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) MemberSpaceLimitsChangePolicyDetails_validator = bv.Struct(MemberSpaceLimitsChangePolicyDetails) - class MemberSpaceLimitsChangePolicyType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -72081,14 +70189,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberSpaceLimitsChangePolicyType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MemberSpaceLimitsChangePolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) MemberSpaceLimitsChangePolicyType_validator = bv.Struct(MemberSpaceLimitsChangePolicyType) - class MemberSpaceLimitsChangeStatusDetails(bb.Struct): """ Changed space limit status. @@ -72100,13 +70204,15 @@ class MemberSpaceLimitsChangeStatusDetails(bb.Struct): """ __slots__ = [ - "_previous_value_value", - "_new_value_value", + '_previous_value_value', + '_new_value_value', ] _has_required_fields = True - def __init__(self, previous_value=None, new_value=None): + def __init__(self, + previous_value=None, + new_value=None): self._previous_value_value = bb.NOT_SET self._new_value_value = bb.NOT_SET if previous_value is not None: @@ -72121,22 +70227,20 @@ def __init__(self, previous_value=None, new_value=None): new_value = bb.Attribute("new_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberSpaceLimitsChangeStatusDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MemberSpaceLimitsChangeStatusDetails, self)._process_custom_annotations(annotation_type, field_path, processor) MemberSpaceLimitsChangeStatusDetails_validator = bv.Struct(MemberSpaceLimitsChangeStatusDetails) - class MemberSpaceLimitsChangeStatusType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -72145,20 +70249,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberSpaceLimitsChangeStatusType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MemberSpaceLimitsChangeStatusType, self)._process_custom_annotations(annotation_type, field_path, processor) MemberSpaceLimitsChangeStatusType_validator = bv.Struct(MemberSpaceLimitsChangeStatusType) - class MemberSpaceLimitsRemoveCustomQuotaDetails(bb.Struct): """ Removed custom member space limit. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -72166,24 +70267,20 @@ 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 - ) - - -MemberSpaceLimitsRemoveCustomQuotaDetails_validator = bv.Struct( - MemberSpaceLimitsRemoveCustomQuotaDetails -) + super(MemberSpaceLimitsRemoveCustomQuotaDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +MemberSpaceLimitsRemoveCustomQuotaDetails_validator = bv.Struct(MemberSpaceLimitsRemoveCustomQuotaDetails) class MemberSpaceLimitsRemoveCustomQuotaType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -72192,20 +70289,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberSpaceLimitsRemoveCustomQuotaType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MemberSpaceLimitsRemoveCustomQuotaType, self)._process_custom_annotations(annotation_type, field_path, processor) MemberSpaceLimitsRemoveCustomQuotaType_validator = bv.Struct(MemberSpaceLimitsRemoveCustomQuotaType) - class MemberSpaceLimitsRemoveExceptionDetails(bb.Struct): """ Removed members from member space limit exception list. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -72213,24 +70307,20 @@ 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 - ) - - -MemberSpaceLimitsRemoveExceptionDetails_validator = bv.Struct( - MemberSpaceLimitsRemoveExceptionDetails -) + super(MemberSpaceLimitsRemoveExceptionDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +MemberSpaceLimitsRemoveExceptionDetails_validator = bv.Struct(MemberSpaceLimitsRemoveExceptionDetails) class MemberSpaceLimitsRemoveExceptionType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -72239,14 +70329,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberSpaceLimitsRemoveExceptionType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MemberSpaceLimitsRemoveExceptionType, self)._process_custom_annotations(annotation_type, field_path, processor) MemberSpaceLimitsRemoveExceptionType_validator = bv.Struct(MemberSpaceLimitsRemoveExceptionType) - class MemberStatus(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -72254,7 +70340,7 @@ class MemberStatus(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition active = None # Attribute is overwritten below the class definition @@ -72276,7 +70362,7 @@ def is_active(self): :rtype: bool """ - return self._tag == "active" + return self._tag == 'active' def is_invited(self): """ @@ -72284,7 +70370,7 @@ def is_invited(self): :rtype: bool """ - return self._tag == "invited" + return self._tag == 'invited' def is_moved_to_another_team(self): """ @@ -72292,7 +70378,7 @@ def is_moved_to_another_team(self): :rtype: bool """ - return self._tag == "moved_to_another_team" + return self._tag == 'moved_to_another_team' def is_not_joined(self): """ @@ -72300,7 +70386,7 @@ def is_not_joined(self): :rtype: bool """ - return self._tag == "not_joined" + return self._tag == 'not_joined' def is_removed(self): """ @@ -72308,7 +70394,7 @@ def is_removed(self): :rtype: bool """ - return self._tag == "removed" + return self._tag == 'removed' def is_suspended(self): """ @@ -72316,7 +70402,7 @@ def is_suspended(self): :rtype: bool """ - return self._tag == "suspended" + return self._tag == 'suspended' def is_other(self): """ @@ -72324,17 +70410,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberStatus, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MemberStatus, self)._process_custom_annotations(annotation_type, field_path, processor) MemberStatus_validator = bv.Union(MemberStatus) - class MemberSuggestDetails(bb.Struct): """ Suggested person to add to team. @@ -72344,12 +70426,13 @@ class MemberSuggestDetails(bb.Struct): """ __slots__ = [ - "_suggested_members_value", + '_suggested_members_value', ] _has_required_fields = True - def __init__(self, suggested_members=None): + def __init__(self, + suggested_members=None): self._suggested_members_value = bb.NOT_SET if suggested_members is not None: self.suggested_members = suggested_members @@ -72358,22 +70441,20 @@ def __init__(self, suggested_members=None): suggested_members = bb.Attribute("suggested_members") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberSuggestDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MemberSuggestDetails, self)._process_custom_annotations(annotation_type, field_path, processor) MemberSuggestDetails_validator = bv.Struct(MemberSuggestDetails) - class MemberSuggestType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -72382,14 +70463,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberSuggestType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MemberSuggestType, self)._process_custom_annotations(annotation_type, field_path, processor) MemberSuggestType_validator = bv.Struct(MemberSuggestType) - class MemberSuggestionsChangePolicyDetails(bb.Struct): """ Enabled/disabled option for team members to suggest people to add to team. @@ -72402,13 +70479,15 @@ class MemberSuggestionsChangePolicyDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -72423,22 +70502,20 @@ def __init__(self, new_value=None, previous_value=None): previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberSuggestionsChangePolicyDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MemberSuggestionsChangePolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) MemberSuggestionsChangePolicyDetails_validator = bv.Struct(MemberSuggestionsChangePolicyDetails) - class MemberSuggestionsChangePolicyType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -72447,14 +70524,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberSuggestionsChangePolicyType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MemberSuggestionsChangePolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) MemberSuggestionsChangePolicyType_validator = bv.Struct(MemberSuggestionsChangePolicyType) - class MemberSuggestionsPolicy(bb.Union): """ Member suggestions policy @@ -72464,7 +70537,7 @@ class MemberSuggestionsPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -72478,7 +70551,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == "disabled" + return self._tag == 'disabled' def is_enabled(self): """ @@ -72486,7 +70559,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == "enabled" + return self._tag == 'enabled' def is_other(self): """ @@ -72494,23 +70567,20 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberSuggestionsPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MemberSuggestionsPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) MemberSuggestionsPolicy_validator = bv.Union(MemberSuggestionsPolicy) - class MemberTransferAccountContentsDetails(bb.Struct): """ Transferred contents of deleted member account to another member. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -72518,22 +70588,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberTransferAccountContentsDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MemberTransferAccountContentsDetails, self)._process_custom_annotations(annotation_type, field_path, processor) MemberTransferAccountContentsDetails_validator = bv.Struct(MemberTransferAccountContentsDetails) - class MemberTransferAccountContentsType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -72542,14 +70610,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberTransferAccountContentsType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MemberTransferAccountContentsType, self)._process_custom_annotations(annotation_type, field_path, processor) MemberTransferAccountContentsType_validator = bv.Struct(MemberTransferAccountContentsType) - class MemberTransferredInternalFields(bb.Struct): """ Internal only - fields for target team computations @@ -72561,13 +70625,15 @@ class MemberTransferredInternalFields(bb.Struct): """ __slots__ = [ - "_source_team_id_value", - "_target_team_id_value", + '_source_team_id_value', + '_target_team_id_value', ] _has_required_fields = True - def __init__(self, source_team_id=None, target_team_id=None): + def __init__(self, + source_team_id=None, + target_team_id=None): self._source_team_id_value = bb.NOT_SET self._target_team_id_value = bb.NOT_SET if source_team_id is not None: @@ -72582,14 +70648,10 @@ def __init__(self, source_team_id=None, target_team_id=None): target_team_id = bb.Attribute("target_team_id") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberTransferredInternalFields, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MemberTransferredInternalFields, self)._process_custom_annotations(annotation_type, field_path, processor) MemberTransferredInternalFields_validator = bv.Struct(MemberTransferredInternalFields) - class MicrosoftLoginChangePolicyDetails(bb.Struct): """ Enabled/disabled Microsoft login for team. @@ -72602,13 +70664,15 @@ class MicrosoftLoginChangePolicyDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -72623,22 +70687,20 @@ def __init__(self, new_value=None, previous_value=None): previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MicrosoftLoginChangePolicyDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MicrosoftLoginChangePolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) MicrosoftLoginChangePolicyDetails_validator = bv.Struct(MicrosoftLoginChangePolicyDetails) - class MicrosoftLoginChangePolicyType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -72647,14 +70709,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MicrosoftLoginChangePolicyType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MicrosoftLoginChangePolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) MicrosoftLoginChangePolicyType_validator = bv.Struct(MicrosoftLoginChangePolicyType) - class MicrosoftLoginPolicy(bb.Union): """ Microsoft login policy @@ -72664,7 +70722,7 @@ class MicrosoftLoginPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition default = None # Attribute is overwritten below the class definition @@ -72680,7 +70738,7 @@ def is_default(self): :rtype: bool """ - return self._tag == "default" + return self._tag == 'default' def is_disabled(self): """ @@ -72688,7 +70746,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == "disabled" + return self._tag == 'disabled' def is_enabled(self): """ @@ -72696,7 +70754,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == "enabled" + return self._tag == 'enabled' def is_other(self): """ @@ -72704,17 +70762,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MicrosoftLoginPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MicrosoftLoginPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) MicrosoftLoginPolicy_validator = bv.Union(MicrosoftLoginPolicy) - class MicrosoftOfficeAddinChangePolicyDetails(bb.Struct): """ Enabled/disabled Microsoft Office add-in. @@ -72727,13 +70781,15 @@ class MicrosoftOfficeAddinChangePolicyDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -72748,24 +70804,20 @@ def __init__(self, new_value=None, previous_value=None): 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 - ) - - -MicrosoftOfficeAddinChangePolicyDetails_validator = bv.Struct( - MicrosoftOfficeAddinChangePolicyDetails -) + super(MicrosoftOfficeAddinChangePolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +MicrosoftOfficeAddinChangePolicyDetails_validator = bv.Struct(MicrosoftOfficeAddinChangePolicyDetails) class MicrosoftOfficeAddinChangePolicyType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -72774,14 +70826,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MicrosoftOfficeAddinChangePolicyType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MicrosoftOfficeAddinChangePolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) MicrosoftOfficeAddinChangePolicyType_validator = bv.Struct(MicrosoftOfficeAddinChangePolicyType) - class MicrosoftOfficeAddinPolicy(bb.Union): """ Microsoft Office addin policy @@ -72791,7 +70839,7 @@ class MicrosoftOfficeAddinPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -72805,7 +70853,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == "disabled" + return self._tag == 'disabled' def is_enabled(self): """ @@ -72813,7 +70861,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == "enabled" + return self._tag == 'enabled' def is_other(self): """ @@ -72821,17 +70869,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MicrosoftOfficeAddinPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MicrosoftOfficeAddinPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) MicrosoftOfficeAddinPolicy_validator = bv.Union(MicrosoftOfficeAddinPolicy) - class MissingDetails(bb.Struct): """ An indication that an error occurred while retrieving the event. Some @@ -72843,12 +70887,13 @@ class MissingDetails(bb.Struct): """ __slots__ = [ - "_source_event_fields_value", + '_source_event_fields_value', ] _has_required_fields = False - def __init__(self, source_event_fields=None): + def __init__(self, + source_event_fields=None): self._source_event_fields_value = bb.NOT_SET if source_event_fields is not None: self.source_event_fields = source_event_fields @@ -72857,14 +70902,10 @@ def __init__(self, source_event_fields=None): source_event_fields = bb.Attribute("source_event_fields", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MissingDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MissingDetails, self)._process_custom_annotations(annotation_type, field_path, processor) MissingDetails_validator = bv.Struct(MissingDetails) - class MobileDeviceSessionLogInfo(DeviceSessionLogInfo): """ Information about linked Dropbox mobile client sessions @@ -72884,29 +70925,29 @@ class MobileDeviceSessionLogInfo(DeviceSessionLogInfo): """ __slots__ = [ - "_session_info_value", - "_device_name_value", - "_client_type_value", - "_client_version_value", - "_os_version_value", - "_last_carrier_value", + '_session_info_value', + '_device_name_value', + '_client_type_value', + '_client_version_value', + '_os_version_value', + '_last_carrier_value', ] _has_required_fields = True - def __init__( - self, - device_name=None, - client_type=None, - ip_address=None, - created=None, - updated=None, - session_info=None, - client_version=None, - os_version=None, - last_carrier=None, - ): - super(MobileDeviceSessionLogInfo, self).__init__(ip_address, created, updated) + def __init__(self, + device_name=None, + client_type=None, + ip_address=None, + created=None, + updated=None, + session_info=None, + client_version=None, + os_version=None, + last_carrier=None): + super(MobileDeviceSessionLogInfo, self).__init__(ip_address, + created, + updated) self._session_info_value = bb.NOT_SET self._device_name_value = bb.NOT_SET self._client_type_value = bb.NOT_SET @@ -72945,35 +70986,29 @@ def __init__( last_carrier = bb.Attribute("last_carrier", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MobileDeviceSessionLogInfo, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MobileDeviceSessionLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) MobileDeviceSessionLogInfo_validator = bv.Struct(MobileDeviceSessionLogInfo) - class MobileSessionLogInfo(SessionLogInfo): """ Mobile session. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False - def __init__(self, session_id=None): + def __init__(self, + session_id=None): super(MobileSessionLogInfo, self).__init__(session_id) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MobileSessionLogInfo, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MobileSessionLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) MobileSessionLogInfo_validator = bv.Struct(MobileSessionLogInfo) - class MultiTeamIdentityPolicy(bb.Union): """ Multi-team identity policy @@ -72983,7 +71018,7 @@ class MultiTeamIdentityPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition default = None # Attribute is overwritten below the class definition @@ -72999,7 +71034,7 @@ def is_default(self): :rtype: bool """ - return self._tag == "default" + return self._tag == 'default' def is_disabled(self): """ @@ -73007,7 +71042,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == "disabled" + return self._tag == 'disabled' def is_enabled(self): """ @@ -73015,7 +71050,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == "enabled" + return self._tag == 'enabled' def is_other(self): """ @@ -73023,17 +71058,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MultiTeamIdentityPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MultiTeamIdentityPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) MultiTeamIdentityPolicy_validator = bv.Union(MultiTeamIdentityPolicy) - class MultiTeamIdentityPolicyChangedDetails(bb.Struct): """ Changed multi-team identity policy for team. @@ -73046,13 +71077,15 @@ class MultiTeamIdentityPolicyChangedDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -73067,22 +71100,20 @@ def __init__(self, new_value=None, previous_value=None): previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MultiTeamIdentityPolicyChangedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MultiTeamIdentityPolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) MultiTeamIdentityPolicyChangedDetails_validator = bv.Struct(MultiTeamIdentityPolicyChangedDetails) - class MultiTeamIdentityPolicyChangedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -73091,14 +71122,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MultiTeamIdentityPolicyChangedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(MultiTeamIdentityPolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) MultiTeamIdentityPolicyChangedType_validator = bv.Struct(MultiTeamIdentityPolicyChangedType) - class NamespaceRelativePathLogInfo(bb.Struct): """ Namespace relative path details. @@ -73112,14 +71139,17 @@ class NamespaceRelativePathLogInfo(bb.Struct): """ __slots__ = [ - "_ns_id_value", - "_relative_path_value", - "_is_shared_namespace_value", + '_ns_id_value', + '_relative_path_value', + '_is_shared_namespace_value', ] _has_required_fields = False - def __init__(self, ns_id=None, relative_path=None, is_shared_namespace=None): + def __init__(self, + ns_id=None, + relative_path=None, + is_shared_namespace=None): self._ns_id_value = bb.NOT_SET self._relative_path_value = bb.NOT_SET self._is_shared_namespace_value = bb.NOT_SET @@ -73140,14 +71170,10 @@ def __init__(self, ns_id=None, relative_path=None, is_shared_namespace=None): is_shared_namespace = bb.Attribute("is_shared_namespace", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(NamespaceRelativePathLogInfo, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(NamespaceRelativePathLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) NamespaceRelativePathLogInfo_validator = bv.Struct(NamespaceRelativePathLogInfo) - class NetworkControlChangePolicyDetails(bb.Struct): """ Enabled/disabled network control. @@ -73160,13 +71186,15 @@ class NetworkControlChangePolicyDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -73181,22 +71209,20 @@ def __init__(self, new_value=None, previous_value=None): previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(NetworkControlChangePolicyDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(NetworkControlChangePolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) NetworkControlChangePolicyDetails_validator = bv.Struct(NetworkControlChangePolicyDetails) - class NetworkControlChangePolicyType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -73205,14 +71231,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(NetworkControlChangePolicyType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(NetworkControlChangePolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) NetworkControlChangePolicyType_validator = bv.Struct(NetworkControlChangePolicyType) - class NetworkControlPolicy(bb.Union): """ Network control policy @@ -73222,7 +71244,7 @@ class NetworkControlPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -73236,7 +71258,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == "disabled" + return self._tag == 'disabled' def is_enabled(self): """ @@ -73244,7 +71266,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == "enabled" + return self._tag == 'enabled' def is_other(self): """ @@ -73252,17 +71274,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(NetworkControlPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(NetworkControlPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) NetworkControlPolicy_validator = bv.Union(NetworkControlPolicy) - class NoExpirationLinkGenCreateReportDetails(bb.Struct): """ Report created: Links created with no expiration. @@ -73274,13 +71292,15 @@ class NoExpirationLinkGenCreateReportDetails(bb.Struct): """ __slots__ = [ - "_start_date_value", - "_end_date_value", + '_start_date_value', + '_end_date_value', ] _has_required_fields = True - def __init__(self, start_date=None, end_date=None): + def __init__(self, + start_date=None, + end_date=None): self._start_date_value = bb.NOT_SET self._end_date_value = bb.NOT_SET if start_date is not None: @@ -73295,22 +71315,20 @@ def __init__(self, start_date=None, end_date=None): end_date = bb.Attribute("end_date") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(NoExpirationLinkGenCreateReportDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(NoExpirationLinkGenCreateReportDetails, self)._process_custom_annotations(annotation_type, field_path, processor) NoExpirationLinkGenCreateReportDetails_validator = bv.Struct(NoExpirationLinkGenCreateReportDetails) - class NoExpirationLinkGenCreateReportType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -73319,14 +71337,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(NoExpirationLinkGenCreateReportType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(NoExpirationLinkGenCreateReportType, self)._process_custom_annotations(annotation_type, field_path, processor) NoExpirationLinkGenCreateReportType_validator = bv.Struct(NoExpirationLinkGenCreateReportType) - class NoExpirationLinkGenReportFailedDetails(bb.Struct): """ Couldn't create report: Links created with no expiration. @@ -73336,12 +71350,13 @@ class NoExpirationLinkGenReportFailedDetails(bb.Struct): """ __slots__ = [ - "_failure_reason_value", + '_failure_reason_value', ] _has_required_fields = True - def __init__(self, failure_reason=None): + def __init__(self, + failure_reason=None): self._failure_reason_value = bb.NOT_SET if failure_reason is not None: self.failure_reason = failure_reason @@ -73350,22 +71365,20 @@ def __init__(self, failure_reason=None): failure_reason = bb.Attribute("failure_reason", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(NoExpirationLinkGenReportFailedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(NoExpirationLinkGenReportFailedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) NoExpirationLinkGenReportFailedDetails_validator = bv.Struct(NoExpirationLinkGenReportFailedDetails) - class NoExpirationLinkGenReportFailedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -73374,14 +71387,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(NoExpirationLinkGenReportFailedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(NoExpirationLinkGenReportFailedType, self)._process_custom_annotations(annotation_type, field_path, processor) NoExpirationLinkGenReportFailedType_validator = bv.Struct(NoExpirationLinkGenReportFailedType) - class NoPasswordLinkGenCreateReportDetails(bb.Struct): """ Report created: Links created without passwords. @@ -73393,13 +71402,15 @@ class NoPasswordLinkGenCreateReportDetails(bb.Struct): """ __slots__ = [ - "_start_date_value", - "_end_date_value", + '_start_date_value', + '_end_date_value', ] _has_required_fields = True - def __init__(self, start_date=None, end_date=None): + def __init__(self, + start_date=None, + end_date=None): self._start_date_value = bb.NOT_SET self._end_date_value = bb.NOT_SET if start_date is not None: @@ -73414,22 +71425,20 @@ def __init__(self, start_date=None, end_date=None): end_date = bb.Attribute("end_date") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(NoPasswordLinkGenCreateReportDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(NoPasswordLinkGenCreateReportDetails, self)._process_custom_annotations(annotation_type, field_path, processor) NoPasswordLinkGenCreateReportDetails_validator = bv.Struct(NoPasswordLinkGenCreateReportDetails) - class NoPasswordLinkGenCreateReportType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -73438,14 +71447,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(NoPasswordLinkGenCreateReportType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(NoPasswordLinkGenCreateReportType, self)._process_custom_annotations(annotation_type, field_path, processor) NoPasswordLinkGenCreateReportType_validator = bv.Struct(NoPasswordLinkGenCreateReportType) - class NoPasswordLinkGenReportFailedDetails(bb.Struct): """ Couldn't create report: Links created without passwords. @@ -73455,12 +71460,13 @@ class NoPasswordLinkGenReportFailedDetails(bb.Struct): """ __slots__ = [ - "_failure_reason_value", + '_failure_reason_value', ] _has_required_fields = True - def __init__(self, failure_reason=None): + def __init__(self, + failure_reason=None): self._failure_reason_value = bb.NOT_SET if failure_reason is not None: self.failure_reason = failure_reason @@ -73469,22 +71475,20 @@ def __init__(self, failure_reason=None): failure_reason = bb.Attribute("failure_reason", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(NoPasswordLinkGenReportFailedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(NoPasswordLinkGenReportFailedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) NoPasswordLinkGenReportFailedDetails_validator = bv.Struct(NoPasswordLinkGenReportFailedDetails) - class NoPasswordLinkGenReportFailedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -73493,14 +71497,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(NoPasswordLinkGenReportFailedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(NoPasswordLinkGenReportFailedType, self)._process_custom_annotations(annotation_type, field_path, processor) NoPasswordLinkGenReportFailedType_validator = bv.Struct(NoPasswordLinkGenReportFailedType) - class NoPasswordLinkViewCreateReportDetails(bb.Struct): """ Report created: Views of links without passwords. @@ -73512,13 +71512,15 @@ class NoPasswordLinkViewCreateReportDetails(bb.Struct): """ __slots__ = [ - "_start_date_value", - "_end_date_value", + '_start_date_value', + '_end_date_value', ] _has_required_fields = True - def __init__(self, start_date=None, end_date=None): + def __init__(self, + start_date=None, + end_date=None): self._start_date_value = bb.NOT_SET self._end_date_value = bb.NOT_SET if start_date is not None: @@ -73533,22 +71535,20 @@ def __init__(self, start_date=None, end_date=None): end_date = bb.Attribute("end_date") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(NoPasswordLinkViewCreateReportDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(NoPasswordLinkViewCreateReportDetails, self)._process_custom_annotations(annotation_type, field_path, processor) NoPasswordLinkViewCreateReportDetails_validator = bv.Struct(NoPasswordLinkViewCreateReportDetails) - class NoPasswordLinkViewCreateReportType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -73557,14 +71557,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(NoPasswordLinkViewCreateReportType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(NoPasswordLinkViewCreateReportType, self)._process_custom_annotations(annotation_type, field_path, processor) NoPasswordLinkViewCreateReportType_validator = bv.Struct(NoPasswordLinkViewCreateReportType) - class NoPasswordLinkViewReportFailedDetails(bb.Struct): """ Couldn't create report: Views of links without passwords. @@ -73574,12 +71570,13 @@ class NoPasswordLinkViewReportFailedDetails(bb.Struct): """ __slots__ = [ - "_failure_reason_value", + '_failure_reason_value', ] _has_required_fields = True - def __init__(self, failure_reason=None): + def __init__(self, + failure_reason=None): self._failure_reason_value = bb.NOT_SET if failure_reason is not None: self.failure_reason = failure_reason @@ -73588,22 +71585,20 @@ def __init__(self, failure_reason=None): failure_reason = bb.Attribute("failure_reason", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(NoPasswordLinkViewReportFailedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(NoPasswordLinkViewReportFailedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) NoPasswordLinkViewReportFailedDetails_validator = bv.Struct(NoPasswordLinkViewReportFailedDetails) - class NoPasswordLinkViewReportFailedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -73612,14 +71607,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(NoPasswordLinkViewReportFailedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(NoPasswordLinkViewReportFailedType, self)._process_custom_annotations(annotation_type, field_path, processor) NoPasswordLinkViewReportFailedType_validator = bv.Struct(NoPasswordLinkViewReportFailedType) - class UserLogInfo(bb.Struct): """ User's logged information. @@ -73633,14 +71624,17 @@ class UserLogInfo(bb.Struct): """ __slots__ = [ - "_account_id_value", - "_display_name_value", - "_email_value", + '_account_id_value', + '_display_name_value', + '_email_value', ] _has_required_fields = False - def __init__(self, account_id=None, display_name=None, email=None): + def __init__(self, + account_id=None, + display_name=None, + email=None): self._account_id_value = bb.NOT_SET self._display_name_value = bb.NOT_SET self._email_value = bb.NOT_SET @@ -73663,31 +71657,31 @@ def __init__(self, account_id=None, display_name=None, email=None): def _process_custom_annotations(self, annotation_type, field_path, processor): super(UserLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) - UserLogInfo_validator = bv.StructTree(UserLogInfo) - class NonTeamMemberLogInfo(UserLogInfo): """ Non team member's logged information. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False - def __init__(self, account_id=None, display_name=None, email=None): - super(NonTeamMemberLogInfo, self).__init__(account_id, display_name, email) + def __init__(self, + account_id=None, + display_name=None, + email=None): + super(NonTeamMemberLogInfo, self).__init__(account_id, + display_name, + email) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(NonTeamMemberLogInfo, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(NonTeamMemberLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) NonTeamMemberLogInfo_validator = bv.Struct(NonTeamMemberLogInfo) - class NonTrustedTeamDetails(bb.Struct): """ The email to which the request was sent @@ -73697,12 +71691,13 @@ class NonTrustedTeamDetails(bb.Struct): """ __slots__ = [ - "_team_value", + '_team_value', ] _has_required_fields = True - def __init__(self, team=None): + def __init__(self, + team=None): self._team_value = bb.NOT_SET if team is not None: self.team = team @@ -73711,20 +71706,17 @@ def __init__(self, team=None): team = bb.Attribute("team") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(NonTrustedTeamDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(NonTrustedTeamDetails, self)._process_custom_annotations(annotation_type, field_path, processor) NonTrustedTeamDetails_validator = bv.Struct(NonTrustedTeamDetails) - class NoteAclInviteOnlyDetails(bb.Struct): """ Changed Paper doc to invite-only. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -73732,22 +71724,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(NoteAclInviteOnlyDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(NoteAclInviteOnlyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) NoteAclInviteOnlyDetails_validator = bv.Struct(NoteAclInviteOnlyDetails) - class NoteAclInviteOnlyType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -73756,20 +71746,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(NoteAclInviteOnlyType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(NoteAclInviteOnlyType, self)._process_custom_annotations(annotation_type, field_path, processor) NoteAclInviteOnlyType_validator = bv.Struct(NoteAclInviteOnlyType) - class NoteAclLinkDetails(bb.Struct): """ Changed Paper doc to link-accessible. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -73777,22 +71764,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(NoteAclLinkDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(NoteAclLinkDetails, self)._process_custom_annotations(annotation_type, field_path, processor) NoteAclLinkDetails_validator = bv.Struct(NoteAclLinkDetails) - class NoteAclLinkType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -73801,20 +71786,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(NoteAclLinkType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(NoteAclLinkType, self)._process_custom_annotations(annotation_type, field_path, processor) NoteAclLinkType_validator = bv.Struct(NoteAclLinkType) - class NoteAclTeamLinkDetails(bb.Struct): """ Changed Paper doc to link-accessible for team. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -73822,22 +71804,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(NoteAclTeamLinkDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(NoteAclTeamLinkDetails, self)._process_custom_annotations(annotation_type, field_path, processor) NoteAclTeamLinkDetails_validator = bv.Struct(NoteAclTeamLinkDetails) - class NoteAclTeamLinkType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -73846,20 +71826,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(NoteAclTeamLinkType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(NoteAclTeamLinkType, self)._process_custom_annotations(annotation_type, field_path, processor) NoteAclTeamLinkType_validator = bv.Struct(NoteAclTeamLinkType) - class NoteShareReceiveDetails(bb.Struct): """ Shared received Paper doc. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -73867,22 +71844,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(NoteShareReceiveDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(NoteShareReceiveDetails, self)._process_custom_annotations(annotation_type, field_path, processor) NoteShareReceiveDetails_validator = bv.Struct(NoteShareReceiveDetails) - class NoteShareReceiveType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -73891,20 +71866,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(NoteShareReceiveType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(NoteShareReceiveType, self)._process_custom_annotations(annotation_type, field_path, processor) NoteShareReceiveType_validator = bv.Struct(NoteShareReceiveType) - class NoteSharedDetails(bb.Struct): """ Shared Paper doc. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -73912,22 +71884,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(NoteSharedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(NoteSharedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) NoteSharedDetails_validator = bv.Struct(NoteSharedDetails) - class NoteSharedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -73936,14 +71906,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(NoteSharedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(NoteSharedType, self)._process_custom_annotations(annotation_type, field_path, processor) NoteSharedType_validator = bv.Struct(NoteSharedType) - class ObjectLabelAddedDetails(bb.Struct): """ Added a label. @@ -73953,12 +71919,13 @@ class ObjectLabelAddedDetails(bb.Struct): """ __slots__ = [ - "_label_type_value", + '_label_type_value', ] _has_required_fields = True - def __init__(self, label_type=None): + def __init__(self, + label_type=None): self._label_type_value = bb.NOT_SET if label_type is not None: self.label_type = label_type @@ -73967,22 +71934,20 @@ def __init__(self, label_type=None): label_type = bb.Attribute("label_type", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ObjectLabelAddedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ObjectLabelAddedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) ObjectLabelAddedDetails_validator = bv.Struct(ObjectLabelAddedDetails) - class ObjectLabelAddedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -73991,14 +71956,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ObjectLabelAddedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ObjectLabelAddedType, self)._process_custom_annotations(annotation_type, field_path, processor) ObjectLabelAddedType_validator = bv.Struct(ObjectLabelAddedType) - class ObjectLabelRemovedDetails(bb.Struct): """ Removed a label. @@ -74008,12 +71969,13 @@ class ObjectLabelRemovedDetails(bb.Struct): """ __slots__ = [ - "_label_type_value", + '_label_type_value', ] _has_required_fields = True - def __init__(self, label_type=None): + def __init__(self, + label_type=None): self._label_type_value = bb.NOT_SET if label_type is not None: self.label_type = label_type @@ -74022,22 +71984,20 @@ def __init__(self, label_type=None): label_type = bb.Attribute("label_type", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ObjectLabelRemovedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ObjectLabelRemovedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) ObjectLabelRemovedDetails_validator = bv.Struct(ObjectLabelRemovedDetails) - class ObjectLabelRemovedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -74046,14 +72006,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ObjectLabelRemovedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ObjectLabelRemovedType, self)._process_custom_annotations(annotation_type, field_path, processor) ObjectLabelRemovedType_validator = bv.Struct(ObjectLabelRemovedType) - class ObjectLabelUpdatedValueDetails(bb.Struct): """ Updated a label's value. @@ -74063,12 +72019,13 @@ class ObjectLabelUpdatedValueDetails(bb.Struct): """ __slots__ = [ - "_label_type_value", + '_label_type_value', ] _has_required_fields = True - def __init__(self, label_type=None): + def __init__(self, + label_type=None): self._label_type_value = bb.NOT_SET if label_type is not None: self.label_type = label_type @@ -74077,22 +72034,20 @@ def __init__(self, label_type=None): label_type = bb.Attribute("label_type", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ObjectLabelUpdatedValueDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ObjectLabelUpdatedValueDetails, self)._process_custom_annotations(annotation_type, field_path, processor) ObjectLabelUpdatedValueDetails_validator = bv.Struct(ObjectLabelUpdatedValueDetails) - class ObjectLabelUpdatedValueType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -74101,20 +72056,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ObjectLabelUpdatedValueType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ObjectLabelUpdatedValueType, self)._process_custom_annotations(annotation_type, field_path, processor) ObjectLabelUpdatedValueType_validator = bv.Struct(ObjectLabelUpdatedValueType) - class OpenNoteSharedDetails(bb.Struct): """ Opened shared Paper doc. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -74122,22 +72074,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(OpenNoteSharedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(OpenNoteSharedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) OpenNoteSharedDetails_validator = bv.Struct(OpenNoteSharedDetails) - class OpenNoteSharedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -74146,14 +72096,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(OpenNoteSharedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(OpenNoteSharedType, self)._process_custom_annotations(annotation_type, field_path, processor) OpenNoteSharedType_validator = bv.Struct(OpenNoteSharedType) - class OrganizationDetails(bb.Struct): """ More details about the organization. @@ -74163,12 +72109,13 @@ class OrganizationDetails(bb.Struct): """ __slots__ = [ - "_organization_value", + '_organization_value', ] _has_required_fields = True - def __init__(self, organization=None): + def __init__(self, + organization=None): self._organization_value = bb.NOT_SET if organization is not None: self.organization = organization @@ -74177,14 +72124,10 @@ def __init__(self, organization=None): organization = bb.Attribute("organization") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(OrganizationDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(OrganizationDetails, self)._process_custom_annotations(annotation_type, field_path, processor) OrganizationDetails_validator = bv.Struct(OrganizationDetails) - class OrganizationName(bb.Struct): """ The name of the organization @@ -74194,12 +72137,13 @@ class OrganizationName(bb.Struct): """ __slots__ = [ - "_organization_value", + '_organization_value', ] _has_required_fields = True - def __init__(self, organization=None): + def __init__(self, + organization=None): self._organization_value = bb.NOT_SET if organization is not None: self.organization = organization @@ -74208,20 +72152,17 @@ def __init__(self, organization=None): organization = bb.Attribute("organization") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(OrganizationName, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(OrganizationName, self)._process_custom_annotations(annotation_type, field_path, processor) OrganizationName_validator = bv.Struct(OrganizationName) - class OrganizeFolderWithTidyDetails(bb.Struct): """ Organized a folder with multi-file organize. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -74229,22 +72170,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(OrganizeFolderWithTidyDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(OrganizeFolderWithTidyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) OrganizeFolderWithTidyDetails_validator = bv.Struct(OrganizeFolderWithTidyDetails) - class OrganizeFolderWithTidyType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -74253,14 +72192,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(OrganizeFolderWithTidyType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(OrganizeFolderWithTidyType, self)._process_custom_annotations(annotation_type, field_path, processor) OrganizeFolderWithTidyType_validator = bv.Struct(OrganizeFolderWithTidyType) - class OriginLogInfo(bb.Struct): """ The origin from which the actor performed the action. @@ -74272,13 +72207,15 @@ class OriginLogInfo(bb.Struct): """ __slots__ = [ - "_geo_location_value", - "_access_method_value", + '_geo_location_value', + '_access_method_value', ] _has_required_fields = True - def __init__(self, access_method=None, geo_location=None): + def __init__(self, + access_method=None, + geo_location=None): self._geo_location_value = bb.NOT_SET self._access_method_value = bb.NOT_SET if geo_location is not None: @@ -74293,14 +72230,10 @@ def __init__(self, access_method=None, geo_location=None): access_method = bb.Attribute("access_method", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(OriginLogInfo, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(OriginLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) OriginLogInfo_validator = bv.Struct(OriginLogInfo) - class OutdatedLinkViewCreateReportDetails(bb.Struct): """ Report created: Views of old links. @@ -74312,13 +72245,15 @@ class OutdatedLinkViewCreateReportDetails(bb.Struct): """ __slots__ = [ - "_start_date_value", - "_end_date_value", + '_start_date_value', + '_end_date_value', ] _has_required_fields = True - def __init__(self, start_date=None, end_date=None): + def __init__(self, + start_date=None, + end_date=None): self._start_date_value = bb.NOT_SET self._end_date_value = bb.NOT_SET if start_date is not None: @@ -74333,22 +72268,20 @@ def __init__(self, start_date=None, end_date=None): end_date = bb.Attribute("end_date") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(OutdatedLinkViewCreateReportDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(OutdatedLinkViewCreateReportDetails, self)._process_custom_annotations(annotation_type, field_path, processor) OutdatedLinkViewCreateReportDetails_validator = bv.Struct(OutdatedLinkViewCreateReportDetails) - class OutdatedLinkViewCreateReportType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -74357,14 +72290,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(OutdatedLinkViewCreateReportType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(OutdatedLinkViewCreateReportType, self)._process_custom_annotations(annotation_type, field_path, processor) OutdatedLinkViewCreateReportType_validator = bv.Struct(OutdatedLinkViewCreateReportType) - class OutdatedLinkViewReportFailedDetails(bb.Struct): """ Couldn't create report: Views of old links. @@ -74374,12 +72303,13 @@ class OutdatedLinkViewReportFailedDetails(bb.Struct): """ __slots__ = [ - "_failure_reason_value", + '_failure_reason_value', ] _has_required_fields = True - def __init__(self, failure_reason=None): + def __init__(self, + failure_reason=None): self._failure_reason_value = bb.NOT_SET if failure_reason is not None: self.failure_reason = failure_reason @@ -74388,22 +72318,20 @@ def __init__(self, failure_reason=None): failure_reason = bb.Attribute("failure_reason", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(OutdatedLinkViewReportFailedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(OutdatedLinkViewReportFailedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) OutdatedLinkViewReportFailedDetails_validator = bv.Struct(OutdatedLinkViewReportFailedDetails) - class OutdatedLinkViewReportFailedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -74412,14 +72340,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(OutdatedLinkViewReportFailedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(OutdatedLinkViewReportFailedType, self)._process_custom_annotations(annotation_type, field_path, processor) OutdatedLinkViewReportFailedType_validator = bv.Struct(OutdatedLinkViewReportFailedType) - class PaperAccessType(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -74427,7 +72351,7 @@ class PaperAccessType(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition commenter = None # Attribute is overwritten below the class definition @@ -74443,7 +72367,7 @@ def is_commenter(self): :rtype: bool """ - return self._tag == "commenter" + return self._tag == 'commenter' def is_editor(self): """ @@ -74451,7 +72375,7 @@ def is_editor(self): :rtype: bool """ - return self._tag == "editor" + return self._tag == 'editor' def is_viewer(self): """ @@ -74459,7 +72383,7 @@ def is_viewer(self): :rtype: bool """ - return self._tag == "viewer" + return self._tag == 'viewer' def is_other(self): """ @@ -74467,23 +72391,20 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperAccessType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperAccessType, self)._process_custom_annotations(annotation_type, field_path, processor) PaperAccessType_validator = bv.Union(PaperAccessType) - class PaperAdminExportStartDetails(bb.Struct): """ Exported all team Paper docs. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -74491,22 +72412,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperAdminExportStartDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperAdminExportStartDetails, self)._process_custom_annotations(annotation_type, field_path, processor) PaperAdminExportStartDetails_validator = bv.Struct(PaperAdminExportStartDetails) - class PaperAdminExportStartType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -74515,14 +72434,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperAdminExportStartType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperAdminExportStartType, self)._process_custom_annotations(annotation_type, field_path, processor) PaperAdminExportStartType_validator = bv.Struct(PaperAdminExportStartType) - class PaperChangeDeploymentPolicyDetails(bb.Struct): """ Changed whether Dropbox Paper, when enabled, is deployed to all members or @@ -74536,13 +72451,15 @@ class PaperChangeDeploymentPolicyDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -74557,22 +72474,20 @@ def __init__(self, new_value=None, previous_value=None): previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperChangeDeploymentPolicyDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperChangeDeploymentPolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) PaperChangeDeploymentPolicyDetails_validator = bv.Struct(PaperChangeDeploymentPolicyDetails) - class PaperChangeDeploymentPolicyType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -74581,14 +72496,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperChangeDeploymentPolicyType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperChangeDeploymentPolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) PaperChangeDeploymentPolicyType_validator = bv.Struct(PaperChangeDeploymentPolicyType) - class PaperChangeMemberLinkPolicyDetails(bb.Struct): """ Changed whether non-members can view Paper docs with link. @@ -74598,12 +72509,13 @@ class PaperChangeMemberLinkPolicyDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", + '_new_value_value', ] _has_required_fields = True - def __init__(self, new_value=None): + def __init__(self, + new_value=None): self._new_value_value = bb.NOT_SET if new_value is not None: self.new_value = new_value @@ -74612,22 +72524,20 @@ def __init__(self, new_value=None): new_value = bb.Attribute("new_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperChangeMemberLinkPolicyDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperChangeMemberLinkPolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) PaperChangeMemberLinkPolicyDetails_validator = bv.Struct(PaperChangeMemberLinkPolicyDetails) - class PaperChangeMemberLinkPolicyType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -74636,14 +72546,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperChangeMemberLinkPolicyType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperChangeMemberLinkPolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) PaperChangeMemberLinkPolicyType_validator = bv.Struct(PaperChangeMemberLinkPolicyType) - class PaperChangeMemberPolicyDetails(bb.Struct): """ Changed whether members can share Paper docs outside team, and if docs are @@ -74657,13 +72563,15 @@ class PaperChangeMemberPolicyDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -74678,22 +72586,20 @@ def __init__(self, new_value=None, previous_value=None): previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperChangeMemberPolicyDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperChangeMemberPolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) PaperChangeMemberPolicyDetails_validator = bv.Struct(PaperChangeMemberPolicyDetails) - class PaperChangeMemberPolicyType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -74702,14 +72608,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperChangeMemberPolicyType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperChangeMemberPolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) PaperChangeMemberPolicyType_validator = bv.Struct(PaperChangeMemberPolicyType) - class PaperChangePolicyDetails(bb.Struct): """ Enabled/disabled Dropbox Paper for team. @@ -74722,13 +72624,15 @@ class PaperChangePolicyDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -74743,22 +72647,20 @@ def __init__(self, new_value=None, previous_value=None): previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperChangePolicyDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperChangePolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) PaperChangePolicyDetails_validator = bv.Struct(PaperChangePolicyDetails) - class PaperChangePolicyType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -74767,14 +72669,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperChangePolicyType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperChangePolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) PaperChangePolicyType_validator = bv.Struct(PaperChangePolicyType) - class PaperContentAddMemberDetails(bb.Struct): """ Added users and/or groups to Paper doc/folder. @@ -74784,12 +72682,13 @@ class PaperContentAddMemberDetails(bb.Struct): """ __slots__ = [ - "_event_uuid_value", + '_event_uuid_value', ] _has_required_fields = True - def __init__(self, event_uuid=None): + def __init__(self, + event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -74798,22 +72697,20 @@ def __init__(self, event_uuid=None): event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperContentAddMemberDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperContentAddMemberDetails, self)._process_custom_annotations(annotation_type, field_path, processor) PaperContentAddMemberDetails_validator = bv.Struct(PaperContentAddMemberDetails) - class PaperContentAddMemberType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -74822,14 +72719,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperContentAddMemberType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperContentAddMemberType, self)._process_custom_annotations(annotation_type, field_path, processor) PaperContentAddMemberType_validator = bv.Struct(PaperContentAddMemberType) - class PaperContentAddToFolderDetails(bb.Struct): """ Added Paper doc/folder to folder. @@ -74843,14 +72736,17 @@ class PaperContentAddToFolderDetails(bb.Struct): """ __slots__ = [ - "_event_uuid_value", - "_target_asset_index_value", - "_parent_asset_index_value", + '_event_uuid_value', + '_target_asset_index_value', + '_parent_asset_index_value', ] _has_required_fields = True - def __init__(self, event_uuid=None, target_asset_index=None, parent_asset_index=None): + def __init__(self, + event_uuid=None, + target_asset_index=None, + parent_asset_index=None): self._event_uuid_value = bb.NOT_SET self._target_asset_index_value = bb.NOT_SET self._parent_asset_index_value = bb.NOT_SET @@ -74871,22 +72767,20 @@ def __init__(self, event_uuid=None, target_asset_index=None, parent_asset_index= parent_asset_index = bb.Attribute("parent_asset_index") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperContentAddToFolderDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperContentAddToFolderDetails, self)._process_custom_annotations(annotation_type, field_path, processor) PaperContentAddToFolderDetails_validator = bv.Struct(PaperContentAddToFolderDetails) - class PaperContentAddToFolderType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -74895,14 +72789,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperContentAddToFolderType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperContentAddToFolderType, self)._process_custom_annotations(annotation_type, field_path, processor) PaperContentAddToFolderType_validator = bv.Struct(PaperContentAddToFolderType) - class PaperContentArchiveDetails(bb.Struct): """ Archived Paper doc/folder. @@ -74912,12 +72802,13 @@ class PaperContentArchiveDetails(bb.Struct): """ __slots__ = [ - "_event_uuid_value", + '_event_uuid_value', ] _has_required_fields = True - def __init__(self, event_uuid=None): + def __init__(self, + event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -74926,22 +72817,20 @@ def __init__(self, event_uuid=None): event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperContentArchiveDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperContentArchiveDetails, self)._process_custom_annotations(annotation_type, field_path, processor) PaperContentArchiveDetails_validator = bv.Struct(PaperContentArchiveDetails) - class PaperContentArchiveType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -74950,14 +72839,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperContentArchiveType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperContentArchiveType, self)._process_custom_annotations(annotation_type, field_path, processor) PaperContentArchiveType_validator = bv.Struct(PaperContentArchiveType) - class PaperContentCreateDetails(bb.Struct): """ Created Paper doc/folder. @@ -74967,12 +72852,13 @@ class PaperContentCreateDetails(bb.Struct): """ __slots__ = [ - "_event_uuid_value", + '_event_uuid_value', ] _has_required_fields = True - def __init__(self, event_uuid=None): + def __init__(self, + event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -74981,22 +72867,20 @@ def __init__(self, event_uuid=None): event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperContentCreateDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperContentCreateDetails, self)._process_custom_annotations(annotation_type, field_path, processor) PaperContentCreateDetails_validator = bv.Struct(PaperContentCreateDetails) - class PaperContentCreateType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -75005,14 +72889,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperContentCreateType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperContentCreateType, self)._process_custom_annotations(annotation_type, field_path, processor) PaperContentCreateType_validator = bv.Struct(PaperContentCreateType) - class PaperContentPermanentlyDeleteDetails(bb.Struct): """ Permanently deleted Paper doc/folder. @@ -75022,12 +72902,13 @@ class PaperContentPermanentlyDeleteDetails(bb.Struct): """ __slots__ = [ - "_event_uuid_value", + '_event_uuid_value', ] _has_required_fields = True - def __init__(self, event_uuid=None): + def __init__(self, + event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -75036,22 +72917,20 @@ def __init__(self, event_uuid=None): event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperContentPermanentlyDeleteDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperContentPermanentlyDeleteDetails, self)._process_custom_annotations(annotation_type, field_path, processor) PaperContentPermanentlyDeleteDetails_validator = bv.Struct(PaperContentPermanentlyDeleteDetails) - class PaperContentPermanentlyDeleteType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -75060,14 +72939,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperContentPermanentlyDeleteType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperContentPermanentlyDeleteType, self)._process_custom_annotations(annotation_type, field_path, processor) PaperContentPermanentlyDeleteType_validator = bv.Struct(PaperContentPermanentlyDeleteType) - class PaperContentRemoveFromFolderDetails(bb.Struct): """ Removed Paper doc/folder from folder. @@ -75081,14 +72956,17 @@ class PaperContentRemoveFromFolderDetails(bb.Struct): """ __slots__ = [ - "_event_uuid_value", - "_target_asset_index_value", - "_parent_asset_index_value", + '_event_uuid_value', + '_target_asset_index_value', + '_parent_asset_index_value', ] _has_required_fields = True - def __init__(self, event_uuid=None, target_asset_index=None, parent_asset_index=None): + def __init__(self, + event_uuid=None, + target_asset_index=None, + parent_asset_index=None): self._event_uuid_value = bb.NOT_SET self._target_asset_index_value = bb.NOT_SET self._parent_asset_index_value = bb.NOT_SET @@ -75109,22 +72987,20 @@ def __init__(self, event_uuid=None, target_asset_index=None, parent_asset_index= parent_asset_index = bb.Attribute("parent_asset_index", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperContentRemoveFromFolderDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperContentRemoveFromFolderDetails, self)._process_custom_annotations(annotation_type, field_path, processor) PaperContentRemoveFromFolderDetails_validator = bv.Struct(PaperContentRemoveFromFolderDetails) - class PaperContentRemoveFromFolderType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -75133,14 +73009,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperContentRemoveFromFolderType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperContentRemoveFromFolderType, self)._process_custom_annotations(annotation_type, field_path, processor) PaperContentRemoveFromFolderType_validator = bv.Struct(PaperContentRemoveFromFolderType) - class PaperContentRemoveMemberDetails(bb.Struct): """ Removed users and/or groups from Paper doc/folder. @@ -75150,12 +73022,13 @@ class PaperContentRemoveMemberDetails(bb.Struct): """ __slots__ = [ - "_event_uuid_value", + '_event_uuid_value', ] _has_required_fields = True - def __init__(self, event_uuid=None): + def __init__(self, + event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -75164,22 +73037,20 @@ def __init__(self, event_uuid=None): event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperContentRemoveMemberDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperContentRemoveMemberDetails, self)._process_custom_annotations(annotation_type, field_path, processor) PaperContentRemoveMemberDetails_validator = bv.Struct(PaperContentRemoveMemberDetails) - class PaperContentRemoveMemberType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -75188,14 +73059,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperContentRemoveMemberType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperContentRemoveMemberType, self)._process_custom_annotations(annotation_type, field_path, processor) PaperContentRemoveMemberType_validator = bv.Struct(PaperContentRemoveMemberType) - class PaperContentRenameDetails(bb.Struct): """ Renamed Paper doc/folder. @@ -75205,12 +73072,13 @@ class PaperContentRenameDetails(bb.Struct): """ __slots__ = [ - "_event_uuid_value", + '_event_uuid_value', ] _has_required_fields = True - def __init__(self, event_uuid=None): + def __init__(self, + event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -75219,22 +73087,20 @@ def __init__(self, event_uuid=None): event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperContentRenameDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperContentRenameDetails, self)._process_custom_annotations(annotation_type, field_path, processor) PaperContentRenameDetails_validator = bv.Struct(PaperContentRenameDetails) - class PaperContentRenameType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -75243,14 +73109,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperContentRenameType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperContentRenameType, self)._process_custom_annotations(annotation_type, field_path, processor) PaperContentRenameType_validator = bv.Struct(PaperContentRenameType) - class PaperContentRestoreDetails(bb.Struct): """ Restored archived Paper doc/folder. @@ -75260,12 +73122,13 @@ class PaperContentRestoreDetails(bb.Struct): """ __slots__ = [ - "_event_uuid_value", + '_event_uuid_value', ] _has_required_fields = True - def __init__(self, event_uuid=None): + def __init__(self, + event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -75274,22 +73137,20 @@ def __init__(self, event_uuid=None): event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperContentRestoreDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperContentRestoreDetails, self)._process_custom_annotations(annotation_type, field_path, processor) PaperContentRestoreDetails_validator = bv.Struct(PaperContentRestoreDetails) - class PaperContentRestoreType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -75298,14 +73159,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperContentRestoreType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperContentRestoreType, self)._process_custom_annotations(annotation_type, field_path, processor) PaperContentRestoreType_validator = bv.Struct(PaperContentRestoreType) - class PaperDefaultFolderPolicy(bb.Union): """ Policy to set default access for newly created Paper folders. @@ -75315,7 +73172,7 @@ class PaperDefaultFolderPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition everyone_in_team = None # Attribute is overwritten below the class definition @@ -75329,7 +73186,7 @@ def is_everyone_in_team(self): :rtype: bool """ - return self._tag == "everyone_in_team" + return self._tag == 'everyone_in_team' def is_invite_only(self): """ @@ -75337,7 +73194,7 @@ def is_invite_only(self): :rtype: bool """ - return self._tag == "invite_only" + return self._tag == 'invite_only' def is_other(self): """ @@ -75345,17 +73202,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDefaultFolderPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperDefaultFolderPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) PaperDefaultFolderPolicy_validator = bv.Union(PaperDefaultFolderPolicy) - class PaperDefaultFolderPolicyChangedDetails(bb.Struct): """ Changed Paper Default Folder Policy setting for team. @@ -75367,13 +73220,15 @@ class PaperDefaultFolderPolicyChangedDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -75388,22 +73243,20 @@ def __init__(self, new_value=None, previous_value=None): previous_value = bb.Attribute("previous_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDefaultFolderPolicyChangedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperDefaultFolderPolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) PaperDefaultFolderPolicyChangedDetails_validator = bv.Struct(PaperDefaultFolderPolicyChangedDetails) - class PaperDefaultFolderPolicyChangedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -75412,14 +73265,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDefaultFolderPolicyChangedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperDefaultFolderPolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) PaperDefaultFolderPolicyChangedType_validator = bv.Struct(PaperDefaultFolderPolicyChangedType) - class PaperDesktopPolicy(bb.Union): """ Policy for controlling if team members can use Paper Desktop @@ -75429,7 +73278,7 @@ class PaperDesktopPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -75443,7 +73292,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == "disabled" + return self._tag == 'disabled' def is_enabled(self): """ @@ -75451,7 +73300,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == "enabled" + return self._tag == 'enabled' def is_other(self): """ @@ -75459,17 +73308,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDesktopPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperDesktopPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) PaperDesktopPolicy_validator = bv.Union(PaperDesktopPolicy) - class PaperDesktopPolicyChangedDetails(bb.Struct): """ Enabled/disabled Paper Desktop for team. @@ -75481,13 +73326,15 @@ class PaperDesktopPolicyChangedDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -75502,22 +73349,20 @@ def __init__(self, new_value=None, previous_value=None): previous_value = bb.Attribute("previous_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDesktopPolicyChangedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperDesktopPolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) PaperDesktopPolicyChangedDetails_validator = bv.Struct(PaperDesktopPolicyChangedDetails) - class PaperDesktopPolicyChangedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -75526,14 +73371,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDesktopPolicyChangedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperDesktopPolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) PaperDesktopPolicyChangedType_validator = bv.Struct(PaperDesktopPolicyChangedType) - class PaperDocAddCommentDetails(bb.Struct): """ Added Paper doc comment. @@ -75545,13 +73386,15 @@ class PaperDocAddCommentDetails(bb.Struct): """ __slots__ = [ - "_event_uuid_value", - "_comment_text_value", + '_event_uuid_value', + '_comment_text_value', ] _has_required_fields = True - def __init__(self, event_uuid=None, comment_text=None): + def __init__(self, + event_uuid=None, + comment_text=None): self._event_uuid_value = bb.NOT_SET self._comment_text_value = bb.NOT_SET if event_uuid is not None: @@ -75566,22 +73409,20 @@ def __init__(self, event_uuid=None, comment_text=None): comment_text = bb.Attribute("comment_text", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocAddCommentDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperDocAddCommentDetails, self)._process_custom_annotations(annotation_type, field_path, processor) PaperDocAddCommentDetails_validator = bv.Struct(PaperDocAddCommentDetails) - class PaperDocAddCommentType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -75590,14 +73431,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocAddCommentType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperDocAddCommentType, self)._process_custom_annotations(annotation_type, field_path, processor) PaperDocAddCommentType_validator = bv.Struct(PaperDocAddCommentType) - class PaperDocChangeMemberRoleDetails(bb.Struct): """ Changed member permissions for Paper doc. @@ -75609,13 +73446,15 @@ class PaperDocChangeMemberRoleDetails(bb.Struct): """ __slots__ = [ - "_event_uuid_value", - "_access_type_value", + '_event_uuid_value', + '_access_type_value', ] _has_required_fields = True - def __init__(self, event_uuid=None, access_type=None): + def __init__(self, + event_uuid=None, + access_type=None): self._event_uuid_value = bb.NOT_SET self._access_type_value = bb.NOT_SET if event_uuid is not None: @@ -75630,22 +73469,20 @@ def __init__(self, event_uuid=None, access_type=None): access_type = bb.Attribute("access_type", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocChangeMemberRoleDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperDocChangeMemberRoleDetails, self)._process_custom_annotations(annotation_type, field_path, processor) PaperDocChangeMemberRoleDetails_validator = bv.Struct(PaperDocChangeMemberRoleDetails) - class PaperDocChangeMemberRoleType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -75654,14 +73491,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocChangeMemberRoleType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperDocChangeMemberRoleType, self)._process_custom_annotations(annotation_type, field_path, processor) PaperDocChangeMemberRoleType_validator = bv.Struct(PaperDocChangeMemberRoleType) - class PaperDocChangeSharingPolicyDetails(bb.Struct): """ Changed sharing setting for Paper doc. @@ -75675,14 +73508,17 @@ class PaperDocChangeSharingPolicyDetails(bb.Struct): """ __slots__ = [ - "_event_uuid_value", - "_public_sharing_policy_value", - "_team_sharing_policy_value", + '_event_uuid_value', + '_public_sharing_policy_value', + '_team_sharing_policy_value', ] _has_required_fields = True - def __init__(self, event_uuid=None, public_sharing_policy=None, team_sharing_policy=None): + def __init__(self, + event_uuid=None, + public_sharing_policy=None, + team_sharing_policy=None): self._event_uuid_value = bb.NOT_SET self._public_sharing_policy_value = bb.NOT_SET self._team_sharing_policy_value = bb.NOT_SET @@ -75703,22 +73539,20 @@ def __init__(self, event_uuid=None, public_sharing_policy=None, team_sharing_pol team_sharing_policy = bb.Attribute("team_sharing_policy", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocChangeSharingPolicyDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperDocChangeSharingPolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) PaperDocChangeSharingPolicyDetails_validator = bv.Struct(PaperDocChangeSharingPolicyDetails) - class PaperDocChangeSharingPolicyType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -75727,14 +73561,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocChangeSharingPolicyType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperDocChangeSharingPolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) PaperDocChangeSharingPolicyType_validator = bv.Struct(PaperDocChangeSharingPolicyType) - class PaperDocChangeSubscriptionDetails(bb.Struct): """ Followed/unfollowed Paper doc. @@ -75749,19 +73579,17 @@ class PaperDocChangeSubscriptionDetails(bb.Struct): """ __slots__ = [ - "_event_uuid_value", - "_new_subscription_level_value", - "_previous_subscription_level_value", + '_event_uuid_value', + '_new_subscription_level_value', + '_previous_subscription_level_value', ] _has_required_fields = True - def __init__( - self, - event_uuid=None, - new_subscription_level=None, - previous_subscription_level=None, - ): + def __init__(self, + event_uuid=None, + new_subscription_level=None, + previous_subscription_level=None): self._event_uuid_value = bb.NOT_SET self._new_subscription_level_value = bb.NOT_SET self._previous_subscription_level_value = bb.NOT_SET @@ -75782,22 +73610,20 @@ def __init__( previous_subscription_level = bb.Attribute("previous_subscription_level", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocChangeSubscriptionDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperDocChangeSubscriptionDetails, self)._process_custom_annotations(annotation_type, field_path, processor) PaperDocChangeSubscriptionDetails_validator = bv.Struct(PaperDocChangeSubscriptionDetails) - class PaperDocChangeSubscriptionType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -75806,14 +73632,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocChangeSubscriptionType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperDocChangeSubscriptionType, self)._process_custom_annotations(annotation_type, field_path, processor) PaperDocChangeSubscriptionType_validator = bv.Struct(PaperDocChangeSubscriptionType) - class PaperDocDeleteCommentDetails(bb.Struct): """ Deleted Paper doc comment. @@ -75825,13 +73647,15 @@ class PaperDocDeleteCommentDetails(bb.Struct): """ __slots__ = [ - "_event_uuid_value", - "_comment_text_value", + '_event_uuid_value', + '_comment_text_value', ] _has_required_fields = True - def __init__(self, event_uuid=None, comment_text=None): + def __init__(self, + event_uuid=None, + comment_text=None): self._event_uuid_value = bb.NOT_SET self._comment_text_value = bb.NOT_SET if event_uuid is not None: @@ -75846,22 +73670,20 @@ def __init__(self, event_uuid=None, comment_text=None): comment_text = bb.Attribute("comment_text", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocDeleteCommentDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperDocDeleteCommentDetails, self)._process_custom_annotations(annotation_type, field_path, processor) PaperDocDeleteCommentDetails_validator = bv.Struct(PaperDocDeleteCommentDetails) - class PaperDocDeleteCommentType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -75870,14 +73692,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocDeleteCommentType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperDocDeleteCommentType, self)._process_custom_annotations(annotation_type, field_path, processor) PaperDocDeleteCommentType_validator = bv.Struct(PaperDocDeleteCommentType) - class PaperDocDeletedDetails(bb.Struct): """ Archived Paper doc. @@ -75887,12 +73705,13 @@ class PaperDocDeletedDetails(bb.Struct): """ __slots__ = [ - "_event_uuid_value", + '_event_uuid_value', ] _has_required_fields = True - def __init__(self, event_uuid=None): + def __init__(self, + event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -75901,22 +73720,20 @@ def __init__(self, event_uuid=None): event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocDeletedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperDocDeletedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) PaperDocDeletedDetails_validator = bv.Struct(PaperDocDeletedDetails) - class PaperDocDeletedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -75925,14 +73742,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocDeletedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperDocDeletedType, self)._process_custom_annotations(annotation_type, field_path, processor) PaperDocDeletedType_validator = bv.Struct(PaperDocDeletedType) - class PaperDocDownloadDetails(bb.Struct): """ Downloaded Paper doc in specific format. @@ -75944,13 +73757,15 @@ class PaperDocDownloadDetails(bb.Struct): """ __slots__ = [ - "_event_uuid_value", - "_export_file_format_value", + '_event_uuid_value', + '_export_file_format_value', ] _has_required_fields = True - def __init__(self, event_uuid=None, export_file_format=None): + def __init__(self, + event_uuid=None, + export_file_format=None): self._event_uuid_value = bb.NOT_SET self._export_file_format_value = bb.NOT_SET if event_uuid is not None: @@ -75965,22 +73780,20 @@ def __init__(self, event_uuid=None, export_file_format=None): export_file_format = bb.Attribute("export_file_format", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocDownloadDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperDocDownloadDetails, self)._process_custom_annotations(annotation_type, field_path, processor) PaperDocDownloadDetails_validator = bv.Struct(PaperDocDownloadDetails) - class PaperDocDownloadType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -75989,14 +73802,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocDownloadType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperDocDownloadType, self)._process_custom_annotations(annotation_type, field_path, processor) PaperDocDownloadType_validator = bv.Struct(PaperDocDownloadType) - class PaperDocEditCommentDetails(bb.Struct): """ Edited Paper doc comment. @@ -76008,13 +73817,15 @@ class PaperDocEditCommentDetails(bb.Struct): """ __slots__ = [ - "_event_uuid_value", - "_comment_text_value", + '_event_uuid_value', + '_comment_text_value', ] _has_required_fields = True - def __init__(self, event_uuid=None, comment_text=None): + def __init__(self, + event_uuid=None, + comment_text=None): self._event_uuid_value = bb.NOT_SET self._comment_text_value = bb.NOT_SET if event_uuid is not None: @@ -76029,22 +73840,20 @@ def __init__(self, event_uuid=None, comment_text=None): comment_text = bb.Attribute("comment_text", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocEditCommentDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperDocEditCommentDetails, self)._process_custom_annotations(annotation_type, field_path, processor) PaperDocEditCommentDetails_validator = bv.Struct(PaperDocEditCommentDetails) - class PaperDocEditCommentType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -76053,14 +73862,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocEditCommentType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperDocEditCommentType, self)._process_custom_annotations(annotation_type, field_path, processor) PaperDocEditCommentType_validator = bv.Struct(PaperDocEditCommentType) - class PaperDocEditDetails(bb.Struct): """ Edited Paper doc. @@ -76070,12 +73875,13 @@ class PaperDocEditDetails(bb.Struct): """ __slots__ = [ - "_event_uuid_value", + '_event_uuid_value', ] _has_required_fields = True - def __init__(self, event_uuid=None): + def __init__(self, + event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -76084,22 +73890,20 @@ def __init__(self, event_uuid=None): event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocEditDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperDocEditDetails, self)._process_custom_annotations(annotation_type, field_path, processor) PaperDocEditDetails_validator = bv.Struct(PaperDocEditDetails) - class PaperDocEditType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -76108,14 +73912,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocEditType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperDocEditType, self)._process_custom_annotations(annotation_type, field_path, processor) PaperDocEditType_validator = bv.Struct(PaperDocEditType) - class PaperDocFollowedDetails(bb.Struct): """ Followed Paper doc. @@ -76125,12 +73925,13 @@ class PaperDocFollowedDetails(bb.Struct): """ __slots__ = [ - "_event_uuid_value", + '_event_uuid_value', ] _has_required_fields = True - def __init__(self, event_uuid=None): + def __init__(self, + event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -76139,22 +73940,20 @@ def __init__(self, event_uuid=None): event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocFollowedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperDocFollowedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) PaperDocFollowedDetails_validator = bv.Struct(PaperDocFollowedDetails) - class PaperDocFollowedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -76163,14 +73962,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocFollowedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperDocFollowedType, self)._process_custom_annotations(annotation_type, field_path, processor) PaperDocFollowedType_validator = bv.Struct(PaperDocFollowedType) - class PaperDocMentionDetails(bb.Struct): """ Mentioned user in Paper doc. @@ -76180,12 +73975,13 @@ class PaperDocMentionDetails(bb.Struct): """ __slots__ = [ - "_event_uuid_value", + '_event_uuid_value', ] _has_required_fields = True - def __init__(self, event_uuid=None): + def __init__(self, + event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -76194,22 +73990,20 @@ def __init__(self, event_uuid=None): event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocMentionDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperDocMentionDetails, self)._process_custom_annotations(annotation_type, field_path, processor) PaperDocMentionDetails_validator = bv.Struct(PaperDocMentionDetails) - class PaperDocMentionType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -76218,14 +74012,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocMentionType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperDocMentionType, self)._process_custom_annotations(annotation_type, field_path, processor) PaperDocMentionType_validator = bv.Struct(PaperDocMentionType) - class PaperDocOwnershipChangedDetails(bb.Struct): """ Transferred ownership of Paper doc. @@ -76239,14 +74029,17 @@ class PaperDocOwnershipChangedDetails(bb.Struct): """ __slots__ = [ - "_event_uuid_value", - "_old_owner_user_id_value", - "_new_owner_user_id_value", + '_event_uuid_value', + '_old_owner_user_id_value', + '_new_owner_user_id_value', ] _has_required_fields = True - def __init__(self, event_uuid=None, new_owner_user_id=None, old_owner_user_id=None): + def __init__(self, + event_uuid=None, + new_owner_user_id=None, + old_owner_user_id=None): self._event_uuid_value = bb.NOT_SET self._old_owner_user_id_value = bb.NOT_SET self._new_owner_user_id_value = bb.NOT_SET @@ -76267,22 +74060,20 @@ def __init__(self, event_uuid=None, new_owner_user_id=None, old_owner_user_id=No new_owner_user_id = bb.Attribute("new_owner_user_id") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocOwnershipChangedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperDocOwnershipChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) PaperDocOwnershipChangedDetails_validator = bv.Struct(PaperDocOwnershipChangedDetails) - class PaperDocOwnershipChangedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -76291,14 +74082,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocOwnershipChangedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperDocOwnershipChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) PaperDocOwnershipChangedType_validator = bv.Struct(PaperDocOwnershipChangedType) - class PaperDocRequestAccessDetails(bb.Struct): """ Requested access to Paper doc. @@ -76308,12 +74095,13 @@ class PaperDocRequestAccessDetails(bb.Struct): """ __slots__ = [ - "_event_uuid_value", + '_event_uuid_value', ] _has_required_fields = True - def __init__(self, event_uuid=None): + def __init__(self, + event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -76322,22 +74110,20 @@ def __init__(self, event_uuid=None): event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocRequestAccessDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperDocRequestAccessDetails, self)._process_custom_annotations(annotation_type, field_path, processor) PaperDocRequestAccessDetails_validator = bv.Struct(PaperDocRequestAccessDetails) - class PaperDocRequestAccessType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -76346,14 +74132,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocRequestAccessType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperDocRequestAccessType, self)._process_custom_annotations(annotation_type, field_path, processor) PaperDocRequestAccessType_validator = bv.Struct(PaperDocRequestAccessType) - class PaperDocResolveCommentDetails(bb.Struct): """ Resolved Paper doc comment. @@ -76365,13 +74147,15 @@ class PaperDocResolveCommentDetails(bb.Struct): """ __slots__ = [ - "_event_uuid_value", - "_comment_text_value", + '_event_uuid_value', + '_comment_text_value', ] _has_required_fields = True - def __init__(self, event_uuid=None, comment_text=None): + def __init__(self, + event_uuid=None, + comment_text=None): self._event_uuid_value = bb.NOT_SET self._comment_text_value = bb.NOT_SET if event_uuid is not None: @@ -76386,22 +74170,20 @@ def __init__(self, event_uuid=None, comment_text=None): comment_text = bb.Attribute("comment_text", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocResolveCommentDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperDocResolveCommentDetails, self)._process_custom_annotations(annotation_type, field_path, processor) PaperDocResolveCommentDetails_validator = bv.Struct(PaperDocResolveCommentDetails) - class PaperDocResolveCommentType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -76410,14 +74192,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocResolveCommentType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperDocResolveCommentType, self)._process_custom_annotations(annotation_type, field_path, processor) PaperDocResolveCommentType_validator = bv.Struct(PaperDocResolveCommentType) - class PaperDocRevertDetails(bb.Struct): """ Restored Paper doc to previous version. @@ -76427,12 +74205,13 @@ class PaperDocRevertDetails(bb.Struct): """ __slots__ = [ - "_event_uuid_value", + '_event_uuid_value', ] _has_required_fields = True - def __init__(self, event_uuid=None): + def __init__(self, + event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -76441,22 +74220,20 @@ def __init__(self, event_uuid=None): event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocRevertDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperDocRevertDetails, self)._process_custom_annotations(annotation_type, field_path, processor) PaperDocRevertDetails_validator = bv.Struct(PaperDocRevertDetails) - class PaperDocRevertType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -76465,14 +74242,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocRevertType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperDocRevertType, self)._process_custom_annotations(annotation_type, field_path, processor) PaperDocRevertType_validator = bv.Struct(PaperDocRevertType) - class PaperDocSlackShareDetails(bb.Struct): """ Shared Paper doc via Slack. @@ -76482,12 +74255,13 @@ class PaperDocSlackShareDetails(bb.Struct): """ __slots__ = [ - "_event_uuid_value", + '_event_uuid_value', ] _has_required_fields = True - def __init__(self, event_uuid=None): + def __init__(self, + event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -76496,22 +74270,20 @@ def __init__(self, event_uuid=None): event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocSlackShareDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperDocSlackShareDetails, self)._process_custom_annotations(annotation_type, field_path, processor) PaperDocSlackShareDetails_validator = bv.Struct(PaperDocSlackShareDetails) - class PaperDocSlackShareType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -76520,14 +74292,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocSlackShareType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperDocSlackShareType, self)._process_custom_annotations(annotation_type, field_path, processor) PaperDocSlackShareType_validator = bv.Struct(PaperDocSlackShareType) - class PaperDocTeamInviteDetails(bb.Struct): """ Shared Paper doc with users and/or groups. @@ -76537,12 +74305,13 @@ class PaperDocTeamInviteDetails(bb.Struct): """ __slots__ = [ - "_event_uuid_value", + '_event_uuid_value', ] _has_required_fields = True - def __init__(self, event_uuid=None): + def __init__(self, + event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -76551,22 +74320,20 @@ def __init__(self, event_uuid=None): event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocTeamInviteDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperDocTeamInviteDetails, self)._process_custom_annotations(annotation_type, field_path, processor) PaperDocTeamInviteDetails_validator = bv.Struct(PaperDocTeamInviteDetails) - class PaperDocTeamInviteType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -76575,14 +74342,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocTeamInviteType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperDocTeamInviteType, self)._process_custom_annotations(annotation_type, field_path, processor) PaperDocTeamInviteType_validator = bv.Struct(PaperDocTeamInviteType) - class PaperDocTrashedDetails(bb.Struct): """ Deleted Paper doc. @@ -76592,12 +74355,13 @@ class PaperDocTrashedDetails(bb.Struct): """ __slots__ = [ - "_event_uuid_value", + '_event_uuid_value', ] _has_required_fields = True - def __init__(self, event_uuid=None): + def __init__(self, + event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -76606,22 +74370,20 @@ def __init__(self, event_uuid=None): event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocTrashedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperDocTrashedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) PaperDocTrashedDetails_validator = bv.Struct(PaperDocTrashedDetails) - class PaperDocTrashedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -76630,14 +74392,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocTrashedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperDocTrashedType, self)._process_custom_annotations(annotation_type, field_path, processor) PaperDocTrashedType_validator = bv.Struct(PaperDocTrashedType) - class PaperDocUnresolveCommentDetails(bb.Struct): """ Unresolved Paper doc comment. @@ -76649,13 +74407,15 @@ class PaperDocUnresolveCommentDetails(bb.Struct): """ __slots__ = [ - "_event_uuid_value", - "_comment_text_value", + '_event_uuid_value', + '_comment_text_value', ] _has_required_fields = True - def __init__(self, event_uuid=None, comment_text=None): + def __init__(self, + event_uuid=None, + comment_text=None): self._event_uuid_value = bb.NOT_SET self._comment_text_value = bb.NOT_SET if event_uuid is not None: @@ -76670,22 +74430,20 @@ def __init__(self, event_uuid=None, comment_text=None): comment_text = bb.Attribute("comment_text", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocUnresolveCommentDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperDocUnresolveCommentDetails, self)._process_custom_annotations(annotation_type, field_path, processor) PaperDocUnresolveCommentDetails_validator = bv.Struct(PaperDocUnresolveCommentDetails) - class PaperDocUnresolveCommentType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -76694,14 +74452,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocUnresolveCommentType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperDocUnresolveCommentType, self)._process_custom_annotations(annotation_type, field_path, processor) PaperDocUnresolveCommentType_validator = bv.Struct(PaperDocUnresolveCommentType) - class PaperDocUntrashedDetails(bb.Struct): """ Restored Paper doc. @@ -76711,12 +74465,13 @@ class PaperDocUntrashedDetails(bb.Struct): """ __slots__ = [ - "_event_uuid_value", + '_event_uuid_value', ] _has_required_fields = True - def __init__(self, event_uuid=None): + def __init__(self, + event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -76725,22 +74480,20 @@ def __init__(self, event_uuid=None): event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocUntrashedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperDocUntrashedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) PaperDocUntrashedDetails_validator = bv.Struct(PaperDocUntrashedDetails) - class PaperDocUntrashedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -76749,14 +74502,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocUntrashedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperDocUntrashedType, self)._process_custom_annotations(annotation_type, field_path, processor) PaperDocUntrashedType_validator = bv.Struct(PaperDocUntrashedType) - class PaperDocViewDetails(bb.Struct): """ Viewed Paper doc. @@ -76766,12 +74515,13 @@ class PaperDocViewDetails(bb.Struct): """ __slots__ = [ - "_event_uuid_value", + '_event_uuid_value', ] _has_required_fields = True - def __init__(self, event_uuid=None): + def __init__(self, + event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -76780,22 +74530,20 @@ def __init__(self, event_uuid=None): event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocViewDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperDocViewDetails, self)._process_custom_annotations(annotation_type, field_path, processor) PaperDocViewDetails_validator = bv.Struct(PaperDocViewDetails) - class PaperDocViewType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -76804,14 +74552,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocViewType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperDocViewType, self)._process_custom_annotations(annotation_type, field_path, processor) PaperDocViewType_validator = bv.Struct(PaperDocViewType) - class PaperDocumentLogInfo(bb.Struct): """ Paper document's logged information. @@ -76823,13 +74567,15 @@ class PaperDocumentLogInfo(bb.Struct): """ __slots__ = [ - "_doc_id_value", - "_doc_title_value", + '_doc_id_value', + '_doc_title_value', ] _has_required_fields = True - def __init__(self, doc_id=None, doc_title=None): + def __init__(self, + doc_id=None, + doc_title=None): self._doc_id_value = bb.NOT_SET self._doc_title_value = bb.NOT_SET if doc_id is not None: @@ -76844,14 +74590,10 @@ def __init__(self, doc_id=None, doc_title=None): doc_title = bb.Attribute("doc_title") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocumentLogInfo, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperDocumentLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) PaperDocumentLogInfo_validator = bv.Struct(PaperDocumentLogInfo) - class PaperDownloadFormat(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -76859,7 +74601,7 @@ class PaperDownloadFormat(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition docx = None # Attribute is overwritten below the class definition @@ -76877,7 +74619,7 @@ def is_docx(self): :rtype: bool """ - return self._tag == "docx" + return self._tag == 'docx' def is_html(self): """ @@ -76885,7 +74627,7 @@ def is_html(self): :rtype: bool """ - return self._tag == "html" + return self._tag == 'html' def is_markdown(self): """ @@ -76893,7 +74635,7 @@ def is_markdown(self): :rtype: bool """ - return self._tag == "markdown" + return self._tag == 'markdown' def is_pdf(self): """ @@ -76901,7 +74643,7 @@ def is_pdf(self): :rtype: bool """ - return self._tag == "pdf" + return self._tag == 'pdf' def is_other(self): """ @@ -76909,23 +74651,20 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDownloadFormat, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperDownloadFormat, self)._process_custom_annotations(annotation_type, field_path, processor) PaperDownloadFormat_validator = bv.Union(PaperDownloadFormat) - class PaperEnabledUsersGroupAdditionDetails(bb.Struct): """ Added users to Paper-enabled users list. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -76933,22 +74672,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperEnabledUsersGroupAdditionDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperEnabledUsersGroupAdditionDetails, self)._process_custom_annotations(annotation_type, field_path, processor) PaperEnabledUsersGroupAdditionDetails_validator = bv.Struct(PaperEnabledUsersGroupAdditionDetails) - class PaperEnabledUsersGroupAdditionType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -76957,20 +74694,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperEnabledUsersGroupAdditionType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperEnabledUsersGroupAdditionType, self)._process_custom_annotations(annotation_type, field_path, processor) PaperEnabledUsersGroupAdditionType_validator = bv.Struct(PaperEnabledUsersGroupAdditionType) - class PaperEnabledUsersGroupRemovalDetails(bb.Struct): """ Removed users from Paper-enabled users list. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -76978,22 +74712,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperEnabledUsersGroupRemovalDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperEnabledUsersGroupRemovalDetails, self)._process_custom_annotations(annotation_type, field_path, processor) PaperEnabledUsersGroupRemovalDetails_validator = bv.Struct(PaperEnabledUsersGroupRemovalDetails) - class PaperEnabledUsersGroupRemovalType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -77002,14 +74734,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperEnabledUsersGroupRemovalType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperEnabledUsersGroupRemovalType, self)._process_custom_annotations(annotation_type, field_path, processor) PaperEnabledUsersGroupRemovalType_validator = bv.Struct(PaperEnabledUsersGroupRemovalType) - class PaperExternalViewAllowDetails(bb.Struct): """ Changed Paper external sharing setting to anyone. @@ -77019,12 +74747,13 @@ class PaperExternalViewAllowDetails(bb.Struct): """ __slots__ = [ - "_event_uuid_value", + '_event_uuid_value', ] _has_required_fields = True - def __init__(self, event_uuid=None): + def __init__(self, + event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -77033,22 +74762,20 @@ def __init__(self, event_uuid=None): event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperExternalViewAllowDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperExternalViewAllowDetails, self)._process_custom_annotations(annotation_type, field_path, processor) PaperExternalViewAllowDetails_validator = bv.Struct(PaperExternalViewAllowDetails) - class PaperExternalViewAllowType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -77057,14 +74784,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperExternalViewAllowType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperExternalViewAllowType, self)._process_custom_annotations(annotation_type, field_path, processor) PaperExternalViewAllowType_validator = bv.Struct(PaperExternalViewAllowType) - class PaperExternalViewDefaultTeamDetails(bb.Struct): """ Changed Paper external sharing setting to default team. @@ -77074,12 +74797,13 @@ class PaperExternalViewDefaultTeamDetails(bb.Struct): """ __slots__ = [ - "_event_uuid_value", + '_event_uuid_value', ] _has_required_fields = True - def __init__(self, event_uuid=None): + def __init__(self, + event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -77088,22 +74812,20 @@ def __init__(self, event_uuid=None): event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperExternalViewDefaultTeamDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperExternalViewDefaultTeamDetails, self)._process_custom_annotations(annotation_type, field_path, processor) PaperExternalViewDefaultTeamDetails_validator = bv.Struct(PaperExternalViewDefaultTeamDetails) - class PaperExternalViewDefaultTeamType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -77112,14 +74834,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperExternalViewDefaultTeamType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperExternalViewDefaultTeamType, self)._process_custom_annotations(annotation_type, field_path, processor) PaperExternalViewDefaultTeamType_validator = bv.Struct(PaperExternalViewDefaultTeamType) - class PaperExternalViewForbidDetails(bb.Struct): """ Changed Paper external sharing setting to team-only. @@ -77129,12 +74847,13 @@ class PaperExternalViewForbidDetails(bb.Struct): """ __slots__ = [ - "_event_uuid_value", + '_event_uuid_value', ] _has_required_fields = True - def __init__(self, event_uuid=None): + def __init__(self, + event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -77143,22 +74862,20 @@ def __init__(self, event_uuid=None): event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperExternalViewForbidDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperExternalViewForbidDetails, self)._process_custom_annotations(annotation_type, field_path, processor) PaperExternalViewForbidDetails_validator = bv.Struct(PaperExternalViewForbidDetails) - class PaperExternalViewForbidType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -77167,14 +74884,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperExternalViewForbidType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperExternalViewForbidType, self)._process_custom_annotations(annotation_type, field_path, processor) PaperExternalViewForbidType_validator = bv.Struct(PaperExternalViewForbidType) - class PaperFolderChangeSubscriptionDetails(bb.Struct): """ Followed/unfollowed Paper folder. @@ -77189,19 +74902,17 @@ class PaperFolderChangeSubscriptionDetails(bb.Struct): """ __slots__ = [ - "_event_uuid_value", - "_new_subscription_level_value", - "_previous_subscription_level_value", + '_event_uuid_value', + '_new_subscription_level_value', + '_previous_subscription_level_value', ] _has_required_fields = True - def __init__( - self, - event_uuid=None, - new_subscription_level=None, - previous_subscription_level=None, - ): + def __init__(self, + event_uuid=None, + new_subscription_level=None, + previous_subscription_level=None): self._event_uuid_value = bb.NOT_SET self._new_subscription_level_value = bb.NOT_SET self._previous_subscription_level_value = bb.NOT_SET @@ -77222,22 +74933,20 @@ def __init__( previous_subscription_level = bb.Attribute("previous_subscription_level", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperFolderChangeSubscriptionDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperFolderChangeSubscriptionDetails, self)._process_custom_annotations(annotation_type, field_path, processor) PaperFolderChangeSubscriptionDetails_validator = bv.Struct(PaperFolderChangeSubscriptionDetails) - class PaperFolderChangeSubscriptionType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -77246,14 +74955,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperFolderChangeSubscriptionType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperFolderChangeSubscriptionType, self)._process_custom_annotations(annotation_type, field_path, processor) PaperFolderChangeSubscriptionType_validator = bv.Struct(PaperFolderChangeSubscriptionType) - class PaperFolderDeletedDetails(bb.Struct): """ Archived Paper folder. @@ -77263,12 +74968,13 @@ class PaperFolderDeletedDetails(bb.Struct): """ __slots__ = [ - "_event_uuid_value", + '_event_uuid_value', ] _has_required_fields = True - def __init__(self, event_uuid=None): + def __init__(self, + event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -77277,22 +74983,20 @@ def __init__(self, event_uuid=None): event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperFolderDeletedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperFolderDeletedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) PaperFolderDeletedDetails_validator = bv.Struct(PaperFolderDeletedDetails) - class PaperFolderDeletedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -77301,14 +75005,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperFolderDeletedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperFolderDeletedType, self)._process_custom_annotations(annotation_type, field_path, processor) PaperFolderDeletedType_validator = bv.Struct(PaperFolderDeletedType) - class PaperFolderFollowedDetails(bb.Struct): """ Followed Paper folder. @@ -77318,12 +75018,13 @@ class PaperFolderFollowedDetails(bb.Struct): """ __slots__ = [ - "_event_uuid_value", + '_event_uuid_value', ] _has_required_fields = True - def __init__(self, event_uuid=None): + def __init__(self, + event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -77332,22 +75033,20 @@ def __init__(self, event_uuid=None): event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperFolderFollowedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperFolderFollowedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) PaperFolderFollowedDetails_validator = bv.Struct(PaperFolderFollowedDetails) - class PaperFolderFollowedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -77356,14 +75055,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperFolderFollowedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperFolderFollowedType, self)._process_custom_annotations(annotation_type, field_path, processor) PaperFolderFollowedType_validator = bv.Struct(PaperFolderFollowedType) - class PaperFolderLogInfo(bb.Struct): """ Paper folder's logged information. @@ -77375,13 +75070,15 @@ class PaperFolderLogInfo(bb.Struct): """ __slots__ = [ - "_folder_id_value", - "_folder_name_value", + '_folder_id_value', + '_folder_name_value', ] _has_required_fields = True - def __init__(self, folder_id=None, folder_name=None): + def __init__(self, + folder_id=None, + folder_name=None): self._folder_id_value = bb.NOT_SET self._folder_name_value = bb.NOT_SET if folder_id is not None: @@ -77396,14 +75093,10 @@ def __init__(self, folder_id=None, folder_name=None): folder_name = bb.Attribute("folder_name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperFolderLogInfo, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperFolderLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) PaperFolderLogInfo_validator = bv.Struct(PaperFolderLogInfo) - class PaperFolderTeamInviteDetails(bb.Struct): """ Shared Paper folder with users and/or groups. @@ -77413,12 +75106,13 @@ class PaperFolderTeamInviteDetails(bb.Struct): """ __slots__ = [ - "_event_uuid_value", + '_event_uuid_value', ] _has_required_fields = True - def __init__(self, event_uuid=None): + def __init__(self, + event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -77427,22 +75121,20 @@ def __init__(self, event_uuid=None): event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperFolderTeamInviteDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperFolderTeamInviteDetails, self)._process_custom_annotations(annotation_type, field_path, processor) PaperFolderTeamInviteDetails_validator = bv.Struct(PaperFolderTeamInviteDetails) - class PaperFolderTeamInviteType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -77451,14 +75143,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperFolderTeamInviteType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperFolderTeamInviteType, self)._process_custom_annotations(annotation_type, field_path, processor) PaperFolderTeamInviteType_validator = bv.Struct(PaperFolderTeamInviteType) - class PaperMemberPolicy(bb.Union): """ Policy for controlling if team members can share Paper documents externally. @@ -77468,7 +75156,7 @@ class PaperMemberPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition anyone_with_link = None # Attribute is overwritten below the class definition @@ -77484,7 +75172,7 @@ def is_anyone_with_link(self): :rtype: bool """ - return self._tag == "anyone_with_link" + return self._tag == 'anyone_with_link' def is_only_team(self): """ @@ -77492,7 +75180,7 @@ def is_only_team(self): :rtype: bool """ - return self._tag == "only_team" + return self._tag == 'only_team' def is_team_and_explicitly_shared(self): """ @@ -77500,7 +75188,7 @@ def is_team_and_explicitly_shared(self): :rtype: bool """ - return self._tag == "team_and_explicitly_shared" + return self._tag == 'team_and_explicitly_shared' def is_other(self): """ @@ -77508,17 +75196,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperMemberPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperMemberPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) PaperMemberPolicy_validator = bv.Union(PaperMemberPolicy) - class PaperPublishedLinkChangePermissionDetails(bb.Struct): """ Changed permissions for published doc. @@ -77532,14 +75216,17 @@ class PaperPublishedLinkChangePermissionDetails(bb.Struct): """ __slots__ = [ - "_event_uuid_value", - "_new_permission_level_value", - "_previous_permission_level_value", + '_event_uuid_value', + '_new_permission_level_value', + '_previous_permission_level_value', ] _has_required_fields = True - def __init__(self, event_uuid=None, new_permission_level=None, previous_permission_level=None): + def __init__(self, + event_uuid=None, + new_permission_level=None, + previous_permission_level=None): self._event_uuid_value = bb.NOT_SET self._new_permission_level_value = bb.NOT_SET self._previous_permission_level_value = bb.NOT_SET @@ -77560,24 +75247,20 @@ def __init__(self, event_uuid=None, new_permission_level=None, previous_permissi 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 - ) - - -PaperPublishedLinkChangePermissionDetails_validator = bv.Struct( - PaperPublishedLinkChangePermissionDetails -) + super(PaperPublishedLinkChangePermissionDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +PaperPublishedLinkChangePermissionDetails_validator = bv.Struct(PaperPublishedLinkChangePermissionDetails) class PaperPublishedLinkChangePermissionType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -77586,14 +75269,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperPublishedLinkChangePermissionType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperPublishedLinkChangePermissionType, self)._process_custom_annotations(annotation_type, field_path, processor) PaperPublishedLinkChangePermissionType_validator = bv.Struct(PaperPublishedLinkChangePermissionType) - class PaperPublishedLinkCreateDetails(bb.Struct): """ Published doc. @@ -77603,12 +75282,13 @@ class PaperPublishedLinkCreateDetails(bb.Struct): """ __slots__ = [ - "_event_uuid_value", + '_event_uuid_value', ] _has_required_fields = True - def __init__(self, event_uuid=None): + def __init__(self, + event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -77617,22 +75297,20 @@ def __init__(self, event_uuid=None): event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperPublishedLinkCreateDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperPublishedLinkCreateDetails, self)._process_custom_annotations(annotation_type, field_path, processor) PaperPublishedLinkCreateDetails_validator = bv.Struct(PaperPublishedLinkCreateDetails) - class PaperPublishedLinkCreateType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -77641,14 +75319,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperPublishedLinkCreateType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperPublishedLinkCreateType, self)._process_custom_annotations(annotation_type, field_path, processor) PaperPublishedLinkCreateType_validator = bv.Struct(PaperPublishedLinkCreateType) - class PaperPublishedLinkDisabledDetails(bb.Struct): """ Unpublished doc. @@ -77658,12 +75332,13 @@ class PaperPublishedLinkDisabledDetails(bb.Struct): """ __slots__ = [ - "_event_uuid_value", + '_event_uuid_value', ] _has_required_fields = True - def __init__(self, event_uuid=None): + def __init__(self, + event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -77672,22 +75347,20 @@ def __init__(self, event_uuid=None): event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperPublishedLinkDisabledDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperPublishedLinkDisabledDetails, self)._process_custom_annotations(annotation_type, field_path, processor) PaperPublishedLinkDisabledDetails_validator = bv.Struct(PaperPublishedLinkDisabledDetails) - class PaperPublishedLinkDisabledType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -77696,14 +75369,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperPublishedLinkDisabledType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperPublishedLinkDisabledType, self)._process_custom_annotations(annotation_type, field_path, processor) PaperPublishedLinkDisabledType_validator = bv.Struct(PaperPublishedLinkDisabledType) - class PaperPublishedLinkViewDetails(bb.Struct): """ Viewed published doc. @@ -77713,12 +75382,13 @@ class PaperPublishedLinkViewDetails(bb.Struct): """ __slots__ = [ - "_event_uuid_value", + '_event_uuid_value', ] _has_required_fields = True - def __init__(self, event_uuid=None): + def __init__(self, + event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -77727,22 +75397,20 @@ def __init__(self, event_uuid=None): event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperPublishedLinkViewDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperPublishedLinkViewDetails, self)._process_custom_annotations(annotation_type, field_path, processor) PaperPublishedLinkViewDetails_validator = bv.Struct(PaperPublishedLinkViewDetails) - class PaperPublishedLinkViewType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -77751,14 +75419,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperPublishedLinkViewType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperPublishedLinkViewType, self)._process_custom_annotations(annotation_type, field_path, processor) PaperPublishedLinkViewType_validator = bv.Struct(PaperPublishedLinkViewType) - class ParticipantLogInfo(bb.Union): """ A user or group @@ -77775,7 +75439,7 @@ class ParticipantLogInfo(bb.Union): :vartype ParticipantLogInfo.user: UserLogInfo """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -77788,7 +75452,7 @@ def group(cls, val): :param GroupLogInfo val: :rtype: ParticipantLogInfo """ - return cls("group", val) + return cls('group', val) @classmethod def user(cls, val): @@ -77799,7 +75463,7 @@ def user(cls, val): :param UserLogInfo val: :rtype: ParticipantLogInfo """ - return cls("user", val) + return cls('user', val) def is_group(self): """ @@ -77807,7 +75471,7 @@ def is_group(self): :rtype: bool """ - return self._tag == "group" + return self._tag == 'group' def is_user(self): """ @@ -77815,7 +75479,7 @@ def is_user(self): :rtype: bool """ - return self._tag == "user" + return self._tag == 'user' def is_other(self): """ @@ -77823,7 +75487,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_group(self): """ @@ -77850,14 +75514,10 @@ def get_user(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ParticipantLogInfo, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ParticipantLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) ParticipantLogInfo_validator = bv.Union(ParticipantLogInfo) - class PassPolicy(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -77865,7 +75525,7 @@ class PassPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition allow = None # Attribute is overwritten below the class definition @@ -77881,7 +75541,7 @@ def is_allow(self): :rtype: bool """ - return self._tag == "allow" + return self._tag == 'allow' def is_disabled(self): """ @@ -77889,7 +75549,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == "disabled" + return self._tag == 'disabled' def is_enabled(self): """ @@ -77897,7 +75557,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == "enabled" + return self._tag == 'enabled' def is_other(self): """ @@ -77905,21 +75565,20 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): super(PassPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) - PassPolicy_validator = bv.Union(PassPolicy) - class PasskeyAddDetails(bb.Struct): """ Added passkey for login. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -77927,22 +75586,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PasskeyAddDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PasskeyAddDetails, self)._process_custom_annotations(annotation_type, field_path, processor) PasskeyAddDetails_validator = bv.Struct(PasskeyAddDetails) - class PasskeyAddType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -77951,14 +75608,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PasskeyAddType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PasskeyAddType, self)._process_custom_annotations(annotation_type, field_path, processor) PasskeyAddType_validator = bv.Struct(PasskeyAddType) - class PasskeyLoginPolicy(bb.Union): """ Passkey login policy @@ -77968,7 +75621,7 @@ class PasskeyLoginPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition default = None # Attribute is overwritten below the class definition @@ -77984,7 +75637,7 @@ def is_default(self): :rtype: bool """ - return self._tag == "default" + return self._tag == 'default' def is_disabled(self): """ @@ -77992,7 +75645,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == "disabled" + return self._tag == 'disabled' def is_enabled(self): """ @@ -78000,7 +75653,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == "enabled" + return self._tag == 'enabled' def is_other(self): """ @@ -78008,17 +75661,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PasskeyLoginPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PasskeyLoginPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) PasskeyLoginPolicy_validator = bv.Union(PasskeyLoginPolicy) - class PasskeyLoginPolicyChangedDetails(bb.Struct): """ Changed passkey login policy for team. @@ -78031,13 +75680,15 @@ class PasskeyLoginPolicyChangedDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -78052,22 +75703,20 @@ def __init__(self, new_value=None, previous_value=None): previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PasskeyLoginPolicyChangedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PasskeyLoginPolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) PasskeyLoginPolicyChangedDetails_validator = bv.Struct(PasskeyLoginPolicyChangedDetails) - class PasskeyLoginPolicyChangedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -78076,20 +75725,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PasskeyLoginPolicyChangedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PasskeyLoginPolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) PasskeyLoginPolicyChangedType_validator = bv.Struct(PasskeyLoginPolicyChangedType) - class PasskeyRemoveDetails(bb.Struct): """ Removed passkey for login. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -78097,22 +75743,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PasskeyRemoveDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PasskeyRemoveDetails, self)._process_custom_annotations(annotation_type, field_path, processor) PasskeyRemoveDetails_validator = bv.Struct(PasskeyRemoveDetails) - class PasskeyRemoveType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -78121,20 +75765,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PasskeyRemoveType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PasskeyRemoveType, self)._process_custom_annotations(annotation_type, field_path, processor) PasskeyRemoveType_validator = bv.Struct(PasskeyRemoveType) - class PasswordChangeDetails(bb.Struct): """ Changed password. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -78142,22 +75783,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PasswordChangeDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PasswordChangeDetails, self)._process_custom_annotations(annotation_type, field_path, processor) PasswordChangeDetails_validator = bv.Struct(PasswordChangeDetails) - class PasswordChangeType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -78166,20 +75805,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PasswordChangeType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PasswordChangeType, self)._process_custom_annotations(annotation_type, field_path, processor) PasswordChangeType_validator = bv.Struct(PasswordChangeType) - class PasswordResetAllDetails(bb.Struct): """ Reset all team member passwords. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -78187,22 +75823,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PasswordResetAllDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PasswordResetAllDetails, self)._process_custom_annotations(annotation_type, field_path, processor) PasswordResetAllDetails_validator = bv.Struct(PasswordResetAllDetails) - class PasswordResetAllType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -78211,20 +75845,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PasswordResetAllType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PasswordResetAllType, self)._process_custom_annotations(annotation_type, field_path, processor) PasswordResetAllType_validator = bv.Struct(PasswordResetAllType) - class PasswordResetDetails(bb.Struct): """ Reset password. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -78232,22 +75863,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PasswordResetDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PasswordResetDetails, self)._process_custom_annotations(annotation_type, field_path, processor) PasswordResetDetails_validator = bv.Struct(PasswordResetDetails) - class PasswordResetType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -78256,14 +75885,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PasswordResetType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PasswordResetType, self)._process_custom_annotations(annotation_type, field_path, processor) PasswordResetType_validator = bv.Struct(PasswordResetType) - class PasswordStrengthRequirementsChangePolicyDetails(bb.Struct): """ Changed team password strength requirements. @@ -78275,13 +75900,15 @@ class PasswordStrengthRequirementsChangePolicyDetails(bb.Struct): """ __slots__ = [ - "_previous_value_value", - "_new_value_value", + '_previous_value_value', + '_new_value_value', ] _has_required_fields = True - def __init__(self, previous_value=None, new_value=None): + def __init__(self, + previous_value=None, + new_value=None): self._previous_value_value = bb.NOT_SET self._new_value_value = bb.NOT_SET if previous_value is not None: @@ -78296,24 +75923,20 @@ def __init__(self, previous_value=None, new_value=None): 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 - ) - - -PasswordStrengthRequirementsChangePolicyDetails_validator = bv.Struct( - PasswordStrengthRequirementsChangePolicyDetails -) + super(PasswordStrengthRequirementsChangePolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +PasswordStrengthRequirementsChangePolicyDetails_validator = bv.Struct(PasswordStrengthRequirementsChangePolicyDetails) class PasswordStrengthRequirementsChangePolicyType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -78322,15 +75945,9 @@ def __init__(self, description=None): 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 - ) - - -PasswordStrengthRequirementsChangePolicyType_validator = bv.Struct( - PasswordStrengthRequirementsChangePolicyType -) + super(PasswordStrengthRequirementsChangePolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) +PasswordStrengthRequirementsChangePolicyType_validator = bv.Struct(PasswordStrengthRequirementsChangePolicyType) class PathLogInfo(bb.Struct): """ @@ -78343,13 +75960,15 @@ class PathLogInfo(bb.Struct): """ __slots__ = [ - "_contextual_value", - "_namespace_relative_value", + '_contextual_value', + '_namespace_relative_value', ] _has_required_fields = True - def __init__(self, namespace_relative=None, contextual=None): + def __init__(self, + namespace_relative=None, + contextual=None): self._contextual_value = bb.NOT_SET self._namespace_relative_value = bb.NOT_SET if contextual is not None: @@ -78366,10 +75985,8 @@ def __init__(self, namespace_relative=None, contextual=None): def _process_custom_annotations(self, annotation_type, field_path, processor): super(PathLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) - PathLogInfo_validator = bv.Struct(PathLogInfo) - class PendingSecondaryEmailAddedDetails(bb.Struct): """ Added pending secondary email. @@ -78379,12 +75996,13 @@ class PendingSecondaryEmailAddedDetails(bb.Struct): """ __slots__ = [ - "_secondary_email_value", + '_secondary_email_value', ] _has_required_fields = True - def __init__(self, secondary_email=None): + def __init__(self, + secondary_email=None): self._secondary_email_value = bb.NOT_SET if secondary_email is not None: self.secondary_email = secondary_email @@ -78393,22 +76011,20 @@ def __init__(self, secondary_email=None): secondary_email = bb.Attribute("secondary_email") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PendingSecondaryEmailAddedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PendingSecondaryEmailAddedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) PendingSecondaryEmailAddedDetails_validator = bv.Struct(PendingSecondaryEmailAddedDetails) - class PendingSecondaryEmailAddedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -78417,14 +76033,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PendingSecondaryEmailAddedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PendingSecondaryEmailAddedType, self)._process_custom_annotations(annotation_type, field_path, processor) PendingSecondaryEmailAddedType_validator = bv.Struct(PendingSecondaryEmailAddedType) - class PermanentDeleteChangePolicyDetails(bb.Struct): """ Enabled/disabled ability of team members to permanently delete content. @@ -78437,13 +76049,15 @@ class PermanentDeleteChangePolicyDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -78458,22 +76072,20 @@ def __init__(self, new_value=None, previous_value=None): previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PermanentDeleteChangePolicyDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PermanentDeleteChangePolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) PermanentDeleteChangePolicyDetails_validator = bv.Struct(PermanentDeleteChangePolicyDetails) - class PermanentDeleteChangePolicyType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -78482,14 +76094,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PermanentDeleteChangePolicyType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PermanentDeleteChangePolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) PermanentDeleteChangePolicyType_validator = bv.Struct(PermanentDeleteChangePolicyType) - class PlacementRestriction(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -78497,7 +76105,7 @@ class PlacementRestriction(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition australia_only = None # Attribute is overwritten below the class definition @@ -78521,7 +76129,7 @@ def is_australia_only(self): :rtype: bool """ - return self._tag == "australia_only" + return self._tag == 'australia_only' def is_canada_only(self): """ @@ -78529,7 +76137,7 @@ def is_canada_only(self): :rtype: bool """ - return self._tag == "canada_only" + return self._tag == 'canada_only' def is_europe_only(self): """ @@ -78537,7 +76145,7 @@ def is_europe_only(self): :rtype: bool """ - return self._tag == "europe_only" + return self._tag == 'europe_only' def is_japan_only(self): """ @@ -78545,7 +76153,7 @@ def is_japan_only(self): :rtype: bool """ - return self._tag == "japan_only" + return self._tag == 'japan_only' def is_none(self): """ @@ -78553,7 +76161,7 @@ def is_none(self): :rtype: bool """ - return self._tag == "none" + return self._tag == 'none' def is_uk_only(self): """ @@ -78561,7 +76169,7 @@ def is_uk_only(self): :rtype: bool """ - return self._tag == "uk_only" + return self._tag == 'uk_only' def is_us_s3_only(self): """ @@ -78569,7 +76177,7 @@ def is_us_s3_only(self): :rtype: bool """ - return self._tag == "us_s3_only" + return self._tag == 'us_s3_only' def is_other(self): """ @@ -78577,17 +76185,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PlacementRestriction, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PlacementRestriction, self)._process_custom_annotations(annotation_type, field_path, processor) PlacementRestriction_validator = bv.Union(PlacementRestriction) - class PolicyType(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -78595,7 +76199,7 @@ class PolicyType(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition disposition = None # Attribute is overwritten below the class definition @@ -78609,7 +76213,7 @@ def is_disposition(self): :rtype: bool """ - return self._tag == "disposition" + return self._tag == 'disposition' def is_retention(self): """ @@ -78617,7 +76221,7 @@ def is_retention(self): :rtype: bool """ - return self._tag == "retention" + return self._tag == 'retention' def is_other(self): """ @@ -78625,15 +76229,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): super(PolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) - PolicyType_validator = bv.Union(PolicyType) - class PreviewsAiPolicy(bb.Union): """ Policy for deciding whether team users can use Previews AI @@ -78643,7 +76245,7 @@ class PreviewsAiPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition default = None # Attribute is overwritten below the class definition @@ -78659,7 +76261,7 @@ def is_default(self): :rtype: bool """ - return self._tag == "default" + return self._tag == 'default' def is_disabled(self): """ @@ -78667,7 +76269,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == "disabled" + return self._tag == 'disabled' def is_enabled(self): """ @@ -78675,7 +76277,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == "enabled" + return self._tag == 'enabled' def is_other(self): """ @@ -78683,17 +76285,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PreviewsAiPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PreviewsAiPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) PreviewsAiPolicy_validator = bv.Union(PreviewsAiPolicy) - class PreviewsAiPolicyChangedDetails(bb.Struct): """ Changed Dropbox AI policy for team. @@ -78705,13 +76303,15 @@ class PreviewsAiPolicyChangedDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -78726,22 +76326,20 @@ def __init__(self, new_value=None, previous_value=None): previous_value = bb.Attribute("previous_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PreviewsAiPolicyChangedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PreviewsAiPolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) PreviewsAiPolicyChangedDetails_validator = bv.Struct(PreviewsAiPolicyChangedDetails) - class PreviewsAiPolicyChangedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -78750,14 +76348,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PreviewsAiPolicyChangedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PreviewsAiPolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) PreviewsAiPolicyChangedType_validator = bv.Struct(PreviewsAiPolicyChangedType) - class PrimaryTeamRequestAcceptedDetails(bb.Struct): """ Team merge request acceptance details shown to the primary team @@ -78769,13 +76363,15 @@ class PrimaryTeamRequestAcceptedDetails(bb.Struct): """ __slots__ = [ - "_secondary_team_value", - "_sent_by_value", + '_secondary_team_value', + '_sent_by_value', ] _has_required_fields = True - def __init__(self, secondary_team=None, sent_by=None): + def __init__(self, + secondary_team=None, + sent_by=None): self._secondary_team_value = bb.NOT_SET self._sent_by_value = bb.NOT_SET if secondary_team is not None: @@ -78790,14 +76386,10 @@ def __init__(self, secondary_team=None, sent_by=None): sent_by = bb.Attribute("sent_by") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PrimaryTeamRequestAcceptedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PrimaryTeamRequestAcceptedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) PrimaryTeamRequestAcceptedDetails_validator = bv.Struct(PrimaryTeamRequestAcceptedDetails) - class PrimaryTeamRequestCanceledDetails(bb.Struct): """ Team merge request cancellation details shown to the primary team @@ -78809,13 +76401,15 @@ class PrimaryTeamRequestCanceledDetails(bb.Struct): """ __slots__ = [ - "_secondary_team_value", - "_sent_by_value", + '_secondary_team_value', + '_sent_by_value', ] _has_required_fields = True - def __init__(self, secondary_team=None, sent_by=None): + def __init__(self, + secondary_team=None, + sent_by=None): self._secondary_team_value = bb.NOT_SET self._sent_by_value = bb.NOT_SET if secondary_team is not None: @@ -78830,14 +76424,10 @@ def __init__(self, secondary_team=None, sent_by=None): sent_by = bb.Attribute("sent_by") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PrimaryTeamRequestCanceledDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PrimaryTeamRequestCanceledDetails, self)._process_custom_annotations(annotation_type, field_path, processor) PrimaryTeamRequestCanceledDetails_validator = bv.Struct(PrimaryTeamRequestCanceledDetails) - class PrimaryTeamRequestExpiredDetails(bb.Struct): """ Team merge request expiration details shown to the primary team @@ -78849,13 +76439,15 @@ class PrimaryTeamRequestExpiredDetails(bb.Struct): """ __slots__ = [ - "_secondary_team_value", - "_sent_by_value", + '_secondary_team_value', + '_sent_by_value', ] _has_required_fields = True - def __init__(self, secondary_team=None, sent_by=None): + def __init__(self, + secondary_team=None, + sent_by=None): self._secondary_team_value = bb.NOT_SET self._sent_by_value = bb.NOT_SET if secondary_team is not None: @@ -78870,14 +76462,10 @@ def __init__(self, secondary_team=None, sent_by=None): sent_by = bb.Attribute("sent_by") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PrimaryTeamRequestExpiredDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PrimaryTeamRequestExpiredDetails, self)._process_custom_annotations(annotation_type, field_path, processor) PrimaryTeamRequestExpiredDetails_validator = bv.Struct(PrimaryTeamRequestExpiredDetails) - class PrimaryTeamRequestReminderDetails(bb.Struct): """ Team merge request reminder details shown to the primary team @@ -78889,13 +76477,15 @@ class PrimaryTeamRequestReminderDetails(bb.Struct): """ __slots__ = [ - "_secondary_team_value", - "_sent_to_value", + '_secondary_team_value', + '_sent_to_value', ] _has_required_fields = True - def __init__(self, secondary_team=None, sent_to=None): + def __init__(self, + secondary_team=None, + sent_to=None): self._secondary_team_value = bb.NOT_SET self._sent_to_value = bb.NOT_SET if secondary_team is not None: @@ -78910,14 +76500,10 @@ def __init__(self, secondary_team=None, sent_to=None): sent_to = bb.Attribute("sent_to") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PrimaryTeamRequestReminderDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PrimaryTeamRequestReminderDetails, self)._process_custom_annotations(annotation_type, field_path, processor) PrimaryTeamRequestReminderDetails_validator = bv.Struct(PrimaryTeamRequestReminderDetails) - class ProductAssignedToMemberDetails(bb.Struct): """ Product assigned to team member. @@ -78929,13 +76515,15 @@ class ProductAssignedToMemberDetails(bb.Struct): """ __slots__ = [ - "_user_name_value", - "_product_name_value", + '_user_name_value', + '_product_name_value', ] _has_required_fields = True - def __init__(self, user_name=None, product_name=None): + def __init__(self, + user_name=None, + product_name=None): self._user_name_value = bb.NOT_SET self._product_name_value = bb.NOT_SET if user_name is not None: @@ -78950,22 +76538,20 @@ def __init__(self, user_name=None, product_name=None): product_name = bb.Attribute("product_name", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ProductAssignedToMemberDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ProductAssignedToMemberDetails, self)._process_custom_annotations(annotation_type, field_path, processor) ProductAssignedToMemberDetails_validator = bv.Struct(ProductAssignedToMemberDetails) - class ProductAssignedToMemberType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -78974,14 +76560,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ProductAssignedToMemberType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ProductAssignedToMemberType, self)._process_custom_annotations(annotation_type, field_path, processor) ProductAssignedToMemberType_validator = bv.Struct(ProductAssignedToMemberType) - class ProductLogInfo(bb.Struct): """ Product logged information @@ -78991,12 +76573,13 @@ class ProductLogInfo(bb.Struct): """ __slots__ = [ - "_product_name_value", + '_product_name_value', ] _has_required_fields = True - def __init__(self, product_name=None): + def __init__(self, + product_name=None): self._product_name_value = bb.NOT_SET if product_name is not None: self.product_name = product_name @@ -79005,14 +76588,10 @@ def __init__(self, product_name=None): product_name = bb.Attribute("product_name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ProductLogInfo, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ProductLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) ProductLogInfo_validator = bv.Struct(ProductLogInfo) - class ProductRemovedFromMemberDetails(bb.Struct): """ Product removed from team member. @@ -79024,13 +76603,15 @@ class ProductRemovedFromMemberDetails(bb.Struct): """ __slots__ = [ - "_user_name_value", - "_product_name_value", + '_user_name_value', + '_product_name_value', ] _has_required_fields = True - def __init__(self, user_name=None, product_name=None): + def __init__(self, + user_name=None, + product_name=None): self._user_name_value = bb.NOT_SET self._product_name_value = bb.NOT_SET if user_name is not None: @@ -79045,22 +76626,20 @@ def __init__(self, user_name=None, product_name=None): product_name = bb.Attribute("product_name", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ProductRemovedFromMemberDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ProductRemovedFromMemberDetails, self)._process_custom_annotations(annotation_type, field_path, processor) ProductRemovedFromMemberDetails_validator = bv.Struct(ProductRemovedFromMemberDetails) - class ProductRemovedFromMemberType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -79069,14 +76648,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ProductRemovedFromMemberType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ProductRemovedFromMemberType, self)._process_custom_annotations(annotation_type, field_path, processor) ProductRemovedFromMemberType_validator = bv.Struct(ProductRemovedFromMemberType) - class ProtectInternalDomainsChangedDetails(bb.Struct): """ Modified Protect internal domains list. @@ -79088,13 +76663,15 @@ class ProtectInternalDomainsChangedDetails(bb.Struct): """ __slots__ = [ - "_domains_added_value", - "_domains_removed_value", + '_domains_added_value', + '_domains_removed_value', ] _has_required_fields = False - def __init__(self, domains_added=None, domains_removed=None): + def __init__(self, + domains_added=None, + domains_removed=None): self._domains_added_value = bb.NOT_SET self._domains_removed_value = bb.NOT_SET if domains_added is not None: @@ -79109,22 +76686,20 @@ def __init__(self, domains_added=None, domains_removed=None): domains_removed = bb.Attribute("domains_removed", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ProtectInternalDomainsChangedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ProtectInternalDomainsChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) ProtectInternalDomainsChangedDetails_validator = bv.Struct(ProtectInternalDomainsChangedDetails) - class ProtectInternalDomainsChangedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -79133,14 +76708,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ProtectInternalDomainsChangedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ProtectInternalDomainsChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) ProtectInternalDomainsChangedType_validator = bv.Struct(ProtectInternalDomainsChangedType) - class QuickActionType(bb.Union): """ Quick action type. @@ -79150,7 +76721,7 @@ class QuickActionType(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition delete_shared_link = None # Attribute is overwritten below the class definition @@ -79172,7 +76743,7 @@ def is_delete_shared_link(self): :rtype: bool """ - return self._tag == "delete_shared_link" + return self._tag == 'delete_shared_link' def is_reset_password(self): """ @@ -79180,7 +76751,7 @@ def is_reset_password(self): :rtype: bool """ - return self._tag == "reset_password" + return self._tag == 'reset_password' def is_restore_file_or_folder(self): """ @@ -79188,7 +76759,7 @@ def is_restore_file_or_folder(self): :rtype: bool """ - return self._tag == "restore_file_or_folder" + return self._tag == 'restore_file_or_folder' def is_unlink_app(self): """ @@ -79196,7 +76767,7 @@ def is_unlink_app(self): :rtype: bool """ - return self._tag == "unlink_app" + return self._tag == 'unlink_app' def is_unlink_device(self): """ @@ -79204,7 +76775,7 @@ def is_unlink_device(self): :rtype: bool """ - return self._tag == "unlink_device" + return self._tag == 'unlink_device' def is_unlink_session(self): """ @@ -79212,7 +76783,7 @@ def is_unlink_session(self): :rtype: bool """ - return self._tag == "unlink_session" + return self._tag == 'unlink_session' def is_other(self): """ @@ -79220,23 +76791,20 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(QuickActionType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(QuickActionType, self)._process_custom_annotations(annotation_type, field_path, processor) QuickActionType_validator = bv.Union(QuickActionType) - class RansomwareAlertCreateReportDetails(bb.Struct): """ Created ransomware report. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -79244,14 +76812,10 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RansomwareAlertCreateReportDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(RansomwareAlertCreateReportDetails, self)._process_custom_annotations(annotation_type, field_path, processor) RansomwareAlertCreateReportDetails_validator = bv.Struct(RansomwareAlertCreateReportDetails) - class RansomwareAlertCreateReportFailedDetails(bb.Struct): """ Couldn't generate ransomware report. @@ -79261,12 +76825,13 @@ class RansomwareAlertCreateReportFailedDetails(bb.Struct): """ __slots__ = [ - "_failure_reason_value", + '_failure_reason_value', ] _has_required_fields = True - def __init__(self, failure_reason=None): + def __init__(self, + failure_reason=None): self._failure_reason_value = bb.NOT_SET if failure_reason is not None: self.failure_reason = failure_reason @@ -79275,24 +76840,20 @@ def __init__(self, failure_reason=None): 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 - ) - - -RansomwareAlertCreateReportFailedDetails_validator = bv.Struct( - RansomwareAlertCreateReportFailedDetails -) + super(RansomwareAlertCreateReportFailedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +RansomwareAlertCreateReportFailedDetails_validator = bv.Struct(RansomwareAlertCreateReportFailedDetails) class RansomwareAlertCreateReportFailedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -79301,22 +76862,20 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RansomwareAlertCreateReportFailedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(RansomwareAlertCreateReportFailedType, self)._process_custom_annotations(annotation_type, field_path, processor) RansomwareAlertCreateReportFailedType_validator = bv.Struct(RansomwareAlertCreateReportFailedType) - class RansomwareAlertCreateReportType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -79325,14 +76884,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RansomwareAlertCreateReportType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(RansomwareAlertCreateReportType, self)._process_custom_annotations(annotation_type, field_path, processor) RansomwareAlertCreateReportType_validator = bv.Struct(RansomwareAlertCreateReportType) - class RansomwareRestoreProcessCompletedDetails(bb.Struct): """ Completed ransomware restore process. @@ -79346,14 +76901,17 @@ class RansomwareRestoreProcessCompletedDetails(bb.Struct): """ __slots__ = [ - "_status_value", - "_restored_files_count_value", - "_restored_files_failed_count_value", + '_status_value', + '_restored_files_count_value', + '_restored_files_failed_count_value', ] _has_required_fields = True - def __init__(self, status=None, restored_files_count=None, restored_files_failed_count=None): + def __init__(self, + status=None, + restored_files_count=None, + restored_files_failed_count=None): self._status_value = bb.NOT_SET self._restored_files_count_value = bb.NOT_SET self._restored_files_failed_count_value = bb.NOT_SET @@ -79374,24 +76932,20 @@ def __init__(self, status=None, restored_files_count=None, restored_files_failed 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 - ) - - -RansomwareRestoreProcessCompletedDetails_validator = bv.Struct( - RansomwareRestoreProcessCompletedDetails -) + super(RansomwareRestoreProcessCompletedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +RansomwareRestoreProcessCompletedDetails_validator = bv.Struct(RansomwareRestoreProcessCompletedDetails) class RansomwareRestoreProcessCompletedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -79400,14 +76954,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RansomwareRestoreProcessCompletedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(RansomwareRestoreProcessCompletedType, self)._process_custom_annotations(annotation_type, field_path, processor) RansomwareRestoreProcessCompletedType_validator = bv.Struct(RansomwareRestoreProcessCompletedType) - class RansomwareRestoreProcessStartedDetails(bb.Struct): """ Started ransomware restore process. @@ -79417,12 +76967,13 @@ class RansomwareRestoreProcessStartedDetails(bb.Struct): """ __slots__ = [ - "_extension_value", + '_extension_value', ] _has_required_fields = True - def __init__(self, extension=None): + def __init__(self, + extension=None): self._extension_value = bb.NOT_SET if extension is not None: self.extension = extension @@ -79431,22 +76982,20 @@ def __init__(self, extension=None): extension = bb.Attribute("extension") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RansomwareRestoreProcessStartedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(RansomwareRestoreProcessStartedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) RansomwareRestoreProcessStartedDetails_validator = bv.Struct(RansomwareRestoreProcessStartedDetails) - class RansomwareRestoreProcessStartedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -79455,14 +77004,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RansomwareRestoreProcessStartedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(RansomwareRestoreProcessStartedType, self)._process_custom_annotations(annotation_type, field_path, processor) RansomwareRestoreProcessStartedType_validator = bv.Struct(RansomwareRestoreProcessStartedType) - class RecipientsConfiguration(bb.Struct): """ Recipients Configuration @@ -79476,14 +77021,17 @@ class RecipientsConfiguration(bb.Struct): """ __slots__ = [ - "_recipient_setting_type_value", - "_emails_value", - "_groups_value", + '_recipient_setting_type_value', + '_emails_value', + '_groups_value', ] _has_required_fields = False - def __init__(self, recipient_setting_type=None, emails=None, groups=None): + def __init__(self, + recipient_setting_type=None, + emails=None, + groups=None): self._recipient_setting_type_value = bb.NOT_SET self._emails_value = bb.NOT_SET self._groups_value = bb.NOT_SET @@ -79495,9 +77043,7 @@ def __init__(self, recipient_setting_type=None, emails=None, groups=None): self.groups = groups # Instance attribute type: AlertRecipientsSettingType (validator is set below) - recipient_setting_type = bb.Attribute( - "recipient_setting_type", nullable=True, user_defined=True - ) + recipient_setting_type = bb.Attribute("recipient_setting_type", nullable=True, user_defined=True) # Instance attribute type: list of [str] (validator is set below) emails = bb.Attribute("emails", nullable=True) @@ -79506,14 +77052,10 @@ def __init__(self, recipient_setting_type=None, emails=None, groups=None): groups = bb.Attribute("groups", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RecipientsConfiguration, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(RecipientsConfiguration, self)._process_custom_annotations(annotation_type, field_path, processor) RecipientsConfiguration_validator = bv.Struct(RecipientsConfiguration) - class RelocateAssetReferencesLogInfo(bb.Struct): """ Provides the indices of the source asset and the destination asset for a @@ -79526,13 +77068,15 @@ class RelocateAssetReferencesLogInfo(bb.Struct): """ __slots__ = [ - "_src_asset_index_value", - "_dest_asset_index_value", + '_src_asset_index_value', + '_dest_asset_index_value', ] _has_required_fields = True - def __init__(self, src_asset_index=None, dest_asset_index=None): + def __init__(self, + src_asset_index=None, + dest_asset_index=None): self._src_asset_index_value = bb.NOT_SET self._dest_asset_index_value = bb.NOT_SET if src_asset_index is not None: @@ -79547,14 +77091,10 @@ def __init__(self, src_asset_index=None, dest_asset_index=None): dest_asset_index = bb.Attribute("dest_asset_index") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RelocateAssetReferencesLogInfo, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(RelocateAssetReferencesLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) RelocateAssetReferencesLogInfo_validator = bv.Struct(RelocateAssetReferencesLogInfo) - class ReplayAddingPeoplePolicy(bb.Union): """ Policy for deciding who can be added to Replay content @@ -79564,7 +77104,7 @@ class ReplayAddingPeoplePolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition anyone = None # Attribute is overwritten below the class definition @@ -79580,7 +77120,7 @@ def is_anyone(self): :rtype: bool """ - return self._tag == "anyone" + return self._tag == 'anyone' def is_team_and_allowlist(self): """ @@ -79588,7 +77128,7 @@ def is_team_and_allowlist(self): :rtype: bool """ - return self._tag == "team_and_allowlist" + return self._tag == 'team_and_allowlist' def is_team_only(self): """ @@ -79596,7 +77136,7 @@ def is_team_only(self): :rtype: bool """ - return self._tag == "team_only" + return self._tag == 'team_only' def is_other(self): """ @@ -79604,17 +77144,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ReplayAddingPeoplePolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ReplayAddingPeoplePolicy, self)._process_custom_annotations(annotation_type, field_path, processor) ReplayAddingPeoplePolicy_validator = bv.Union(ReplayAddingPeoplePolicy) - class ReplayAddingPeoplePolicyChangedDetails(bb.Struct): """ Changed the policy for adding people to Replay content. @@ -79626,13 +77162,15 @@ class ReplayAddingPeoplePolicyChangedDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -79647,22 +77185,20 @@ def __init__(self, new_value=None, previous_value=None): previous_value = bb.Attribute("previous_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ReplayAddingPeoplePolicyChangedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ReplayAddingPeoplePolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) ReplayAddingPeoplePolicyChangedDetails_validator = bv.Struct(ReplayAddingPeoplePolicyChangedDetails) - class ReplayAddingPeoplePolicyChangedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -79671,20 +77207,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ReplayAddingPeoplePolicyChangedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ReplayAddingPeoplePolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) ReplayAddingPeoplePolicyChangedType_validator = bv.Struct(ReplayAddingPeoplePolicyChangedType) - class ReplayFileDeleteDetails(bb.Struct): """ Deleted files in Replay. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -79692,22 +77225,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ReplayFileDeleteDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ReplayFileDeleteDetails, self)._process_custom_annotations(annotation_type, field_path, processor) ReplayFileDeleteDetails_validator = bv.Struct(ReplayFileDeleteDetails) - class ReplayFileDeleteType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -79716,20 +77247,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ReplayFileDeleteType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ReplayFileDeleteType, self)._process_custom_annotations(annotation_type, field_path, processor) ReplayFileDeleteType_validator = bv.Struct(ReplayFileDeleteType) - class ReplayFileDownloadedDetails(bb.Struct): """ Downloaded files in Replay. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -79737,22 +77265,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ReplayFileDownloadedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ReplayFileDownloadedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) ReplayFileDownloadedDetails_validator = bv.Struct(ReplayFileDownloadedDetails) - class ReplayFileDownloadedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -79761,14 +77287,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ReplayFileDownloadedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ReplayFileDownloadedType, self)._process_custom_annotations(annotation_type, field_path, processor) ReplayFileDownloadedType_validator = bv.Struct(ReplayFileDownloadedType) - class ReplayFileSharedLinkCreatedDetails(bb.Struct): """ Created shared link in Replay. @@ -79781,13 +77303,15 @@ class ReplayFileSharedLinkCreatedDetails(bb.Struct): """ __slots__ = [ - "_is_watermarked_value", - "_access_value", + '_is_watermarked_value', + '_access_value', ] _has_required_fields = False - def __init__(self, is_watermarked=None, access=None): + def __init__(self, + is_watermarked=None, + access=None): self._is_watermarked_value = bb.NOT_SET self._access_value = bb.NOT_SET if is_watermarked is not None: @@ -79802,22 +77326,20 @@ def __init__(self, is_watermarked=None, access=None): access = bb.Attribute("access", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ReplayFileSharedLinkCreatedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ReplayFileSharedLinkCreatedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) ReplayFileSharedLinkCreatedDetails_validator = bv.Struct(ReplayFileSharedLinkCreatedDetails) - class ReplayFileSharedLinkCreatedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -79826,14 +77348,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ReplayFileSharedLinkCreatedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ReplayFileSharedLinkCreatedType, self)._process_custom_annotations(annotation_type, field_path, processor) ReplayFileSharedLinkCreatedType_validator = bv.Struct(ReplayFileSharedLinkCreatedType) - class ReplayFileSharedLinkModifiedDetails(bb.Struct): """ Changed shared link in Replay. @@ -79846,13 +77364,15 @@ class ReplayFileSharedLinkModifiedDetails(bb.Struct): """ __slots__ = [ - "_is_watermarked_value", - "_access_value", + '_is_watermarked_value', + '_access_value', ] _has_required_fields = False - def __init__(self, is_watermarked=None, access=None): + def __init__(self, + is_watermarked=None, + access=None): self._is_watermarked_value = bb.NOT_SET self._access_value = bb.NOT_SET if is_watermarked is not None: @@ -79867,22 +77387,20 @@ def __init__(self, is_watermarked=None, access=None): access = bb.Attribute("access", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ReplayFileSharedLinkModifiedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ReplayFileSharedLinkModifiedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) ReplayFileSharedLinkModifiedDetails_validator = bv.Struct(ReplayFileSharedLinkModifiedDetails) - class ReplayFileSharedLinkModifiedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -79891,14 +77409,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ReplayFileSharedLinkModifiedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ReplayFileSharedLinkModifiedType, self)._process_custom_annotations(annotation_type, field_path, processor) ReplayFileSharedLinkModifiedType_validator = bv.Struct(ReplayFileSharedLinkModifiedType) - class ReplayLinkAccess(bb.Union): """ Who can access this Replay link @@ -79908,7 +77422,7 @@ class ReplayLinkAccess(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition anyone_logged_in = None # Attribute is overwritten below the class definition @@ -79926,7 +77440,7 @@ def is_anyone_logged_in(self): :rtype: bool """ - return self._tag == "anyone_logged_in" + return self._tag == 'anyone_logged_in' def is_no_login_required(self): """ @@ -79934,7 +77448,7 @@ def is_no_login_required(self): :rtype: bool """ - return self._tag == "no_login_required" + return self._tag == 'no_login_required' def is_team_and_approved(self): """ @@ -79942,7 +77456,7 @@ def is_team_and_approved(self): :rtype: bool """ - return self._tag == "team_and_approved" + return self._tag == 'team_and_approved' def is_team_only(self): """ @@ -79950,7 +77464,7 @@ def is_team_only(self): :rtype: bool """ - return self._tag == "team_only" + return self._tag == 'team_only' def is_other(self): """ @@ -79958,23 +77472,20 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ReplayLinkAccess, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ReplayLinkAccess, self)._process_custom_annotations(annotation_type, field_path, processor) ReplayLinkAccess_validator = bv.Union(ReplayLinkAccess) - class ReplayProjectTeamAddDetails(bb.Struct): """ Added member to Replay Project. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -79982,22 +77493,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ReplayProjectTeamAddDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ReplayProjectTeamAddDetails, self)._process_custom_annotations(annotation_type, field_path, processor) ReplayProjectTeamAddDetails_validator = bv.Struct(ReplayProjectTeamAddDetails) - class ReplayProjectTeamAddType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -80006,20 +77515,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ReplayProjectTeamAddType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ReplayProjectTeamAddType, self)._process_custom_annotations(annotation_type, field_path, processor) ReplayProjectTeamAddType_validator = bv.Struct(ReplayProjectTeamAddType) - class ReplayProjectTeamDeleteDetails(bb.Struct): """ Removed member from Replay Project. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -80027,22 +77533,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ReplayProjectTeamDeleteDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ReplayProjectTeamDeleteDetails, self)._process_custom_annotations(annotation_type, field_path, processor) ReplayProjectTeamDeleteDetails_validator = bv.Struct(ReplayProjectTeamDeleteDetails) - class ReplayProjectTeamDeleteType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -80051,14 +77555,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ReplayProjectTeamDeleteType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ReplayProjectTeamDeleteType, self)._process_custom_annotations(annotation_type, field_path, processor) ReplayProjectTeamDeleteType_validator = bv.Struct(ReplayProjectTeamDeleteType) - class ReplaySharingPolicy(bb.Union): """ Policy for deciding who Replay content can be shared with through links @@ -80068,7 +77568,7 @@ class ReplaySharingPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition anyone = None # Attribute is overwritten below the class definition @@ -80084,7 +77584,7 @@ def is_anyone(self): :rtype: bool """ - return self._tag == "anyone" + return self._tag == 'anyone' def is_team_and_allowlist(self): """ @@ -80092,7 +77592,7 @@ def is_team_and_allowlist(self): :rtype: bool """ - return self._tag == "team_and_allowlist" + return self._tag == 'team_and_allowlist' def is_team_only(self): """ @@ -80100,7 +77600,7 @@ def is_team_only(self): :rtype: bool """ - return self._tag == "team_only" + return self._tag == 'team_only' def is_other(self): """ @@ -80108,17 +77608,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ReplaySharingPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ReplaySharingPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) ReplaySharingPolicy_validator = bv.Union(ReplaySharingPolicy) - class ReplaySharingPolicyChangedDetails(bb.Struct): """ Changed the policy for sharing Replay content. @@ -80130,13 +77626,15 @@ class ReplaySharingPolicyChangedDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -80151,22 +77649,20 @@ def __init__(self, new_value=None, previous_value=None): previous_value = bb.Attribute("previous_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ReplaySharingPolicyChangedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ReplaySharingPolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) ReplaySharingPolicyChangedDetails_validator = bv.Struct(ReplaySharingPolicyChangedDetails) - class ReplaySharingPolicyChangedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -80175,14 +77671,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ReplaySharingPolicyChangedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ReplaySharingPolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) ReplaySharingPolicyChangedType_validator = bv.Struct(ReplaySharingPolicyChangedType) - class ReplayTeamProjectCreatedDetails(bb.Struct): """ Created a team project in Replay. @@ -80192,12 +77684,13 @@ class ReplayTeamProjectCreatedDetails(bb.Struct): """ __slots__ = [ - "_name_value", + '_name_value', ] _has_required_fields = True - def __init__(self, name=None): + def __init__(self, + name=None): self._name_value = bb.NOT_SET if name is not None: self.name = name @@ -80206,22 +77699,20 @@ def __init__(self, name=None): name = bb.Attribute("name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ReplayTeamProjectCreatedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ReplayTeamProjectCreatedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) ReplayTeamProjectCreatedDetails_validator = bv.Struct(ReplayTeamProjectCreatedDetails) - class ReplayTeamProjectCreatedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -80230,14 +77721,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ReplayTeamProjectCreatedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ReplayTeamProjectCreatedType, self)._process_custom_annotations(annotation_type, field_path, processor) ReplayTeamProjectCreatedType_validator = bv.Struct(ReplayTeamProjectCreatedType) - class ResellerLogInfo(bb.Struct): """ Reseller information. @@ -80249,13 +77736,15 @@ class ResellerLogInfo(bb.Struct): """ __slots__ = [ - "_reseller_name_value", - "_reseller_email_value", + '_reseller_name_value', + '_reseller_email_value', ] _has_required_fields = True - def __init__(self, reseller_name=None, reseller_email=None): + def __init__(self, + reseller_name=None, + reseller_email=None): self._reseller_name_value = bb.NOT_SET self._reseller_email_value = bb.NOT_SET if reseller_name is not None: @@ -80270,14 +77759,10 @@ def __init__(self, reseller_name=None, reseller_email=None): reseller_email = bb.Attribute("reseller_email") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ResellerLogInfo, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ResellerLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) ResellerLogInfo_validator = bv.Struct(ResellerLogInfo) - class ResellerRole(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -80285,7 +77770,7 @@ class ResellerRole(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition not_reseller = None # Attribute is overwritten below the class definition @@ -80299,7 +77784,7 @@ def is_not_reseller(self): :rtype: bool """ - return self._tag == "not_reseller" + return self._tag == 'not_reseller' def is_reseller_admin(self): """ @@ -80307,7 +77792,7 @@ def is_reseller_admin(self): :rtype: bool """ - return self._tag == "reseller_admin" + return self._tag == 'reseller_admin' def is_other(self): """ @@ -80315,17 +77800,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ResellerRole, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ResellerRole, self)._process_custom_annotations(annotation_type, field_path, processor) ResellerRole_validator = bv.Union(ResellerRole) - class ResellerSupportChangePolicyDetails(bb.Struct): """ Enabled/disabled reseller support. @@ -80337,13 +77818,15 @@ class ResellerSupportChangePolicyDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -80358,22 +77841,20 @@ def __init__(self, new_value=None, previous_value=None): previous_value = bb.Attribute("previous_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ResellerSupportChangePolicyDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ResellerSupportChangePolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) ResellerSupportChangePolicyDetails_validator = bv.Struct(ResellerSupportChangePolicyDetails) - class ResellerSupportChangePolicyType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -80382,14 +77863,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ResellerSupportChangePolicyType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ResellerSupportChangePolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) ResellerSupportChangePolicyType_validator = bv.Struct(ResellerSupportChangePolicyType) - class ResellerSupportPolicy(bb.Union): """ Policy for controlling if reseller can access the admin console as @@ -80400,7 +77877,7 @@ class ResellerSupportPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -80414,7 +77891,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == "disabled" + return self._tag == 'disabled' def is_enabled(self): """ @@ -80422,7 +77899,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == "enabled" + return self._tag == 'enabled' def is_other(self): """ @@ -80430,23 +77907,20 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ResellerSupportPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ResellerSupportPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) ResellerSupportPolicy_validator = bv.Union(ResellerSupportPolicy) - class ResellerSupportSessionEndDetails(bb.Struct): """ Ended reseller support session. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -80454,22 +77928,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ResellerSupportSessionEndDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ResellerSupportSessionEndDetails, self)._process_custom_annotations(annotation_type, field_path, processor) ResellerSupportSessionEndDetails_validator = bv.Struct(ResellerSupportSessionEndDetails) - class ResellerSupportSessionEndType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -80478,20 +77950,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ResellerSupportSessionEndType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ResellerSupportSessionEndType, self)._process_custom_annotations(annotation_type, field_path, processor) ResellerSupportSessionEndType_validator = bv.Struct(ResellerSupportSessionEndType) - class ResellerSupportSessionStartDetails(bb.Struct): """ Started reseller support session. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -80499,22 +77968,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ResellerSupportSessionStartDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ResellerSupportSessionStartDetails, self)._process_custom_annotations(annotation_type, field_path, processor) ResellerSupportSessionStartDetails_validator = bv.Struct(ResellerSupportSessionStartDetails) - class ResellerSupportSessionStartType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -80523,14 +77990,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ResellerSupportSessionStartType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ResellerSupportSessionStartType, self)._process_custom_annotations(annotation_type, field_path, processor) ResellerSupportSessionStartType_validator = bv.Struct(ResellerSupportSessionStartType) - class RewindFolderDetails(bb.Struct): """ Rewound a folder. @@ -80540,12 +78003,13 @@ class RewindFolderDetails(bb.Struct): """ __slots__ = [ - "_rewind_folder_target_ts_ms_value", + '_rewind_folder_target_ts_ms_value', ] _has_required_fields = True - def __init__(self, rewind_folder_target_ts_ms=None): + def __init__(self, + rewind_folder_target_ts_ms=None): self._rewind_folder_target_ts_ms_value = bb.NOT_SET if rewind_folder_target_ts_ms is not None: self.rewind_folder_target_ts_ms = rewind_folder_target_ts_ms @@ -80554,22 +78018,20 @@ def __init__(self, rewind_folder_target_ts_ms=None): rewind_folder_target_ts_ms = bb.Attribute("rewind_folder_target_ts_ms") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RewindFolderDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(RewindFolderDetails, self)._process_custom_annotations(annotation_type, field_path, processor) RewindFolderDetails_validator = bv.Struct(RewindFolderDetails) - class RewindFolderType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -80578,14 +78040,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RewindFolderType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(RewindFolderType, self)._process_custom_annotations(annotation_type, field_path, processor) RewindFolderType_validator = bv.Struct(RewindFolderType) - class RewindPolicy(bb.Union): """ Policy for controlling whether team members can rewind @@ -80595,7 +78053,7 @@ class RewindPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition admins_only = None # Attribute is overwritten below the class definition @@ -80609,7 +78067,7 @@ def is_admins_only(self): :rtype: bool """ - return self._tag == "admins_only" + return self._tag == 'admins_only' def is_everyone(self): """ @@ -80617,7 +78075,7 @@ def is_everyone(self): :rtype: bool """ - return self._tag == "everyone" + return self._tag == 'everyone' def is_other(self): """ @@ -80625,17 +78083,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RewindPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(RewindPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) RewindPolicy_validator = bv.Union(RewindPolicy) - class RewindPolicyChangedDetails(bb.Struct): """ Changed Rewind policy for team. @@ -80647,13 +78101,15 @@ class RewindPolicyChangedDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -80668,22 +78124,20 @@ def __init__(self, new_value=None, previous_value=None): previous_value = bb.Attribute("previous_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RewindPolicyChangedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(RewindPolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) RewindPolicyChangedDetails_validator = bv.Struct(RewindPolicyChangedDetails) - class RewindPolicyChangedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -80692,14 +78146,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RewindPolicyChangedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(RewindPolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) RewindPolicyChangedType_validator = bv.Struct(RewindPolicyChangedType) - class RiscSecurityEventDetails(bb.Struct): """ RISC security event received from external provider. @@ -80713,14 +78163,17 @@ class RiscSecurityEventDetails(bb.Struct): """ __slots__ = [ - "_event_type_value", - "_reason_value", - "_issuer_value", + '_event_type_value', + '_reason_value', + '_issuer_value', ] _has_required_fields = True - def __init__(self, event_type=None, reason=None, issuer=None): + def __init__(self, + event_type=None, + reason=None, + issuer=None): self._event_type_value = bb.NOT_SET self._reason_value = bb.NOT_SET self._issuer_value = bb.NOT_SET @@ -80741,22 +78194,20 @@ def __init__(self, event_type=None, reason=None, issuer=None): issuer = bb.Attribute("issuer") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RiscSecurityEventDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(RiscSecurityEventDetails, self)._process_custom_annotations(annotation_type, field_path, processor) RiscSecurityEventDetails_validator = bv.Struct(RiscSecurityEventDetails) - class RiscSecurityEventType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -80765,14 +78216,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RiscSecurityEventType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(RiscSecurityEventType, self)._process_custom_annotations(annotation_type, field_path, processor) RiscSecurityEventType_validator = bv.Struct(RiscSecurityEventType) - class SecondaryEmailDeletedDetails(bb.Struct): """ Deleted secondary email. @@ -80782,12 +78229,13 @@ class SecondaryEmailDeletedDetails(bb.Struct): """ __slots__ = [ - "_secondary_email_value", + '_secondary_email_value', ] _has_required_fields = True - def __init__(self, secondary_email=None): + def __init__(self, + secondary_email=None): self._secondary_email_value = bb.NOT_SET if secondary_email is not None: self.secondary_email = secondary_email @@ -80796,22 +78244,20 @@ def __init__(self, secondary_email=None): secondary_email = bb.Attribute("secondary_email") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SecondaryEmailDeletedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SecondaryEmailDeletedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SecondaryEmailDeletedDetails_validator = bv.Struct(SecondaryEmailDeletedDetails) - class SecondaryEmailDeletedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -80820,14 +78266,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SecondaryEmailDeletedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SecondaryEmailDeletedType, self)._process_custom_annotations(annotation_type, field_path, processor) SecondaryEmailDeletedType_validator = bv.Struct(SecondaryEmailDeletedType) - class SecondaryEmailVerifiedDetails(bb.Struct): """ Verified secondary email. @@ -80837,12 +78279,13 @@ class SecondaryEmailVerifiedDetails(bb.Struct): """ __slots__ = [ - "_secondary_email_value", + '_secondary_email_value', ] _has_required_fields = True - def __init__(self, secondary_email=None): + def __init__(self, + secondary_email=None): self._secondary_email_value = bb.NOT_SET if secondary_email is not None: self.secondary_email = secondary_email @@ -80851,22 +78294,20 @@ def __init__(self, secondary_email=None): secondary_email = bb.Attribute("secondary_email") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SecondaryEmailVerifiedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SecondaryEmailVerifiedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SecondaryEmailVerifiedDetails_validator = bv.Struct(SecondaryEmailVerifiedDetails) - class SecondaryEmailVerifiedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -80875,14 +78316,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SecondaryEmailVerifiedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SecondaryEmailVerifiedType, self)._process_custom_annotations(annotation_type, field_path, processor) SecondaryEmailVerifiedType_validator = bv.Struct(SecondaryEmailVerifiedType) - class SecondaryMailsPolicy(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -80890,7 +78327,7 @@ class SecondaryMailsPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -80904,7 +78341,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == "disabled" + return self._tag == 'disabled' def is_enabled(self): """ @@ -80912,7 +78349,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == "enabled" + return self._tag == 'enabled' def is_other(self): """ @@ -80920,17 +78357,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SecondaryMailsPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SecondaryMailsPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) SecondaryMailsPolicy_validator = bv.Union(SecondaryMailsPolicy) - class SecondaryMailsPolicyChangedDetails(bb.Struct): """ Secondary mails policy changed. @@ -80942,13 +78375,15 @@ class SecondaryMailsPolicyChangedDetails(bb.Struct): """ __slots__ = [ - "_previous_value_value", - "_new_value_value", + '_previous_value_value', + '_new_value_value', ] _has_required_fields = True - def __init__(self, previous_value=None, new_value=None): + def __init__(self, + previous_value=None, + new_value=None): self._previous_value_value = bb.NOT_SET self._new_value_value = bb.NOT_SET if previous_value is not None: @@ -80963,22 +78398,20 @@ def __init__(self, previous_value=None, new_value=None): new_value = bb.Attribute("new_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SecondaryMailsPolicyChangedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SecondaryMailsPolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SecondaryMailsPolicyChangedDetails_validator = bv.Struct(SecondaryMailsPolicyChangedDetails) - class SecondaryMailsPolicyChangedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -80987,14 +78420,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SecondaryMailsPolicyChangedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SecondaryMailsPolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) SecondaryMailsPolicyChangedType_validator = bv.Struct(SecondaryMailsPolicyChangedType) - class SecondaryTeamRequestAcceptedDetails(bb.Struct): """ Team merge request acceptance details shown to the secondary team @@ -81006,13 +78435,15 @@ class SecondaryTeamRequestAcceptedDetails(bb.Struct): """ __slots__ = [ - "_primary_team_value", - "_sent_by_value", + '_primary_team_value', + '_sent_by_value', ] _has_required_fields = True - def __init__(self, primary_team=None, sent_by=None): + def __init__(self, + primary_team=None, + sent_by=None): self._primary_team_value = bb.NOT_SET self._sent_by_value = bb.NOT_SET if primary_team is not None: @@ -81027,14 +78458,10 @@ def __init__(self, primary_team=None, sent_by=None): sent_by = bb.Attribute("sent_by") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SecondaryTeamRequestAcceptedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SecondaryTeamRequestAcceptedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SecondaryTeamRequestAcceptedDetails_validator = bv.Struct(SecondaryTeamRequestAcceptedDetails) - class SecondaryTeamRequestCanceledDetails(bb.Struct): """ Team merge request cancellation details shown to the secondary team @@ -81046,13 +78473,15 @@ class SecondaryTeamRequestCanceledDetails(bb.Struct): """ __slots__ = [ - "_sent_to_value", - "_sent_by_value", + '_sent_to_value', + '_sent_by_value', ] _has_required_fields = True - def __init__(self, sent_to=None, sent_by=None): + def __init__(self, + sent_to=None, + sent_by=None): self._sent_to_value = bb.NOT_SET self._sent_by_value = bb.NOT_SET if sent_to is not None: @@ -81067,14 +78496,10 @@ def __init__(self, sent_to=None, sent_by=None): sent_by = bb.Attribute("sent_by") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SecondaryTeamRequestCanceledDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SecondaryTeamRequestCanceledDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SecondaryTeamRequestCanceledDetails_validator = bv.Struct(SecondaryTeamRequestCanceledDetails) - class SecondaryTeamRequestExpiredDetails(bb.Struct): """ Team merge request expiration details shown to the secondary team @@ -81084,12 +78509,13 @@ class SecondaryTeamRequestExpiredDetails(bb.Struct): """ __slots__ = [ - "_sent_to_value", + '_sent_to_value', ] _has_required_fields = True - def __init__(self, sent_to=None): + def __init__(self, + sent_to=None): self._sent_to_value = bb.NOT_SET if sent_to is not None: self.sent_to = sent_to @@ -81098,14 +78524,10 @@ def __init__(self, sent_to=None): sent_to = bb.Attribute("sent_to") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SecondaryTeamRequestExpiredDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SecondaryTeamRequestExpiredDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SecondaryTeamRequestExpiredDetails_validator = bv.Struct(SecondaryTeamRequestExpiredDetails) - class SecondaryTeamRequestReminderDetails(bb.Struct): """ Team merge request reminder details shown to the secondary team @@ -81115,12 +78537,13 @@ class SecondaryTeamRequestReminderDetails(bb.Struct): """ __slots__ = [ - "_sent_to_value", + '_sent_to_value', ] _has_required_fields = True - def __init__(self, sent_to=None): + def __init__(self, + sent_to=None): self._sent_to_value = bb.NOT_SET if sent_to is not None: self.sent_to = sent_to @@ -81129,20 +78552,17 @@ def __init__(self, sent_to=None): sent_to = bb.Attribute("sent_to") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SecondaryTeamRequestReminderDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SecondaryTeamRequestReminderDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SecondaryTeamRequestReminderDetails_validator = bv.Struct(SecondaryTeamRequestReminderDetails) - class SendAndTrackFileAddedDetails(bb.Struct): """ File added to Send and Track. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -81150,22 +78570,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SendAndTrackFileAddedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SendAndTrackFileAddedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SendAndTrackFileAddedDetails_validator = bv.Struct(SendAndTrackFileAddedDetails) - class SendAndTrackFileAddedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -81174,14 +78592,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SendAndTrackFileAddedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SendAndTrackFileAddedType, self)._process_custom_annotations(annotation_type, field_path, processor) SendAndTrackFileAddedType_validator = bv.Struct(SendAndTrackFileAddedType) - class SendAndTrackFileRenamedDetails(bb.Struct): """ File renamed in Send and Track. @@ -81191,12 +78605,13 @@ class SendAndTrackFileRenamedDetails(bb.Struct): """ __slots__ = [ - "_previous_value_value", + '_previous_value_value', ] _has_required_fields = False - def __init__(self, previous_value=None): + def __init__(self, + previous_value=None): self._previous_value_value = bb.NOT_SET if previous_value is not None: self.previous_value = previous_value @@ -81205,22 +78620,20 @@ def __init__(self, previous_value=None): previous_value = bb.Attribute("previous_value", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SendAndTrackFileRenamedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SendAndTrackFileRenamedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SendAndTrackFileRenamedDetails_validator = bv.Struct(SendAndTrackFileRenamedDetails) - class SendAndTrackFileRenamedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -81229,20 +78642,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SendAndTrackFileRenamedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SendAndTrackFileRenamedType, self)._process_custom_annotations(annotation_type, field_path, processor) SendAndTrackFileRenamedType_validator = bv.Struct(SendAndTrackFileRenamedType) - class SendAndTrackFileUpdatedDetails(bb.Struct): """ File updated in Send and Track. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -81250,22 +78660,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SendAndTrackFileUpdatedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SendAndTrackFileUpdatedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SendAndTrackFileUpdatedDetails_validator = bv.Struct(SendAndTrackFileUpdatedDetails) - class SendAndTrackFileUpdatedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -81274,14 +78682,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SendAndTrackFileUpdatedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SendAndTrackFileUpdatedType, self)._process_custom_annotations(annotation_type, field_path, processor) SendAndTrackFileUpdatedType_validator = bv.Struct(SendAndTrackFileUpdatedType) - class SendAndTrackLinkCreatedDetails(bb.Struct): """ Link created in Send and Track. @@ -81291,12 +78695,13 @@ class SendAndTrackLinkCreatedDetails(bb.Struct): """ __slots__ = [ - "_link_settings_value", + '_link_settings_value', ] _has_required_fields = True - def __init__(self, link_settings=None): + def __init__(self, + link_settings=None): self._link_settings_value = bb.NOT_SET if link_settings is not None: self.link_settings = link_settings @@ -81305,22 +78710,20 @@ def __init__(self, link_settings=None): link_settings = bb.Attribute("link_settings", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SendAndTrackLinkCreatedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SendAndTrackLinkCreatedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SendAndTrackLinkCreatedDetails_validator = bv.Struct(SendAndTrackLinkCreatedDetails) - class SendAndTrackLinkCreatedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -81329,14 +78732,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SendAndTrackLinkCreatedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SendAndTrackLinkCreatedType, self)._process_custom_annotations(annotation_type, field_path, processor) SendAndTrackLinkCreatedType_validator = bv.Struct(SendAndTrackLinkCreatedType) - class SendAndTrackLinkDeletedDetails(bb.Struct): """ Link deleted in Send and Track. @@ -81346,12 +78745,13 @@ class SendAndTrackLinkDeletedDetails(bb.Struct): """ __slots__ = [ - "_shared_content_link_value", + '_shared_content_link_value', ] _has_required_fields = True - def __init__(self, shared_content_link=None): + def __init__(self, + shared_content_link=None): self._shared_content_link_value = bb.NOT_SET if shared_content_link is not None: self.shared_content_link = shared_content_link @@ -81360,22 +78760,20 @@ def __init__(self, shared_content_link=None): shared_content_link = bb.Attribute("shared_content_link") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SendAndTrackLinkDeletedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SendAndTrackLinkDeletedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SendAndTrackLinkDeletedDetails_validator = bv.Struct(SendAndTrackLinkDeletedDetails) - class SendAndTrackLinkDeletedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -81384,14 +78782,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SendAndTrackLinkDeletedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SendAndTrackLinkDeletedType, self)._process_custom_annotations(annotation_type, field_path, processor) SendAndTrackLinkDeletedType_validator = bv.Struct(SendAndTrackLinkDeletedType) - class SendAndTrackLinkUpdatedDetails(bb.Struct): """ Send and Track Link Updated. @@ -81403,13 +78797,15 @@ class SendAndTrackLinkUpdatedDetails(bb.Struct): """ __slots__ = [ - "_link_settings_value", - "_previous_link_name_value", + '_link_settings_value', + '_previous_link_name_value', ] _has_required_fields = True - def __init__(self, link_settings=None, previous_link_name=None): + def __init__(self, + link_settings=None, + previous_link_name=None): self._link_settings_value = bb.NOT_SET self._previous_link_name_value = bb.NOT_SET if link_settings is not None: @@ -81424,22 +78820,20 @@ def __init__(self, link_settings=None, previous_link_name=None): previous_link_name = bb.Attribute("previous_link_name", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SendAndTrackLinkUpdatedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SendAndTrackLinkUpdatedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SendAndTrackLinkUpdatedDetails_validator = bv.Struct(SendAndTrackLinkUpdatedDetails) - class SendAndTrackLinkUpdatedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -81448,14 +78842,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SendAndTrackLinkUpdatedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SendAndTrackLinkUpdatedType, self)._process_custom_annotations(annotation_type, field_path, processor) SendAndTrackLinkUpdatedType_validator = bv.Struct(SendAndTrackLinkUpdatedType) - class SendAndTrackLinkViewedDetails(bb.Struct): """ Send and Track Link Visited. @@ -81469,14 +78859,17 @@ class SendAndTrackLinkViewedDetails(bb.Struct): """ __slots__ = [ - "_link_settings_value", - "_email_address_value", - "_link_owner_value", + '_link_settings_value', + '_email_address_value', + '_link_owner_value', ] _has_required_fields = True - def __init__(self, link_settings=None, email_address=None, link_owner=None): + def __init__(self, + link_settings=None, + email_address=None, + link_owner=None): self._link_settings_value = bb.NOT_SET self._email_address_value = bb.NOT_SET self._link_owner_value = bb.NOT_SET @@ -81497,22 +78890,20 @@ def __init__(self, link_settings=None, email_address=None, link_owner=None): link_owner = bb.Attribute("link_owner", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SendAndTrackLinkViewedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SendAndTrackLinkViewedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SendAndTrackLinkViewedDetails_validator = bv.Struct(SendAndTrackLinkViewedDetails) - class SendAndTrackLinkViewedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -81521,14 +78912,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SendAndTrackLinkViewedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SendAndTrackLinkViewedType, self)._process_custom_annotations(annotation_type, field_path, processor) SendAndTrackLinkViewedType_validator = bv.Struct(SendAndTrackLinkViewedType) - class SendAndTrackPolicy(bb.Union): """ Policy for deciding whether team users can use Send and Track @@ -81538,7 +78925,7 @@ class SendAndTrackPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition default = None # Attribute is overwritten below the class definition @@ -81554,7 +78941,7 @@ def is_default(self): :rtype: bool """ - return self._tag == "default" + return self._tag == 'default' def is_disabled(self): """ @@ -81562,7 +78949,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == "disabled" + return self._tag == 'disabled' def is_enabled(self): """ @@ -81570,7 +78957,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == "enabled" + return self._tag == 'enabled' def is_other(self): """ @@ -81578,17 +78965,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SendAndTrackPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SendAndTrackPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) SendAndTrackPolicy_validator = bv.Union(SendAndTrackPolicy) - class SendAndTrackPolicyChangedDetails(bb.Struct): """ Changed “Send and track” policy for team. @@ -81600,13 +78983,15 @@ class SendAndTrackPolicyChangedDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -81621,22 +79006,20 @@ def __init__(self, new_value=None, previous_value=None): previous_value = bb.Attribute("previous_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SendAndTrackPolicyChangedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SendAndTrackPolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SendAndTrackPolicyChangedDetails_validator = bv.Struct(SendAndTrackPolicyChangedDetails) - class SendAndTrackPolicyChangedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -81645,20 +79028,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SendAndTrackPolicyChangedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SendAndTrackPolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) SendAndTrackPolicyChangedType_validator = bv.Struct(SendAndTrackPolicyChangedType) - class SendAndTrackRemovedFileAndAssociatedLinksDetails(bb.Struct): """ Send and Track file and associated links deleted. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -81666,24 +79046,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SendAndTrackRemovedFileAndAssociatedLinksDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - - -SendAndTrackRemovedFileAndAssociatedLinksDetails_validator = bv.Struct( - SendAndTrackRemovedFileAndAssociatedLinksDetails -) + super(SendAndTrackRemovedFileAndAssociatedLinksDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +SendAndTrackRemovedFileAndAssociatedLinksDetails_validator = bv.Struct(SendAndTrackRemovedFileAndAssociatedLinksDetails) class SendAndTrackRemovedFileAndAssociatedLinksType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -81692,15 +79068,9 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SendAndTrackRemovedFileAndAssociatedLinksType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - - -SendAndTrackRemovedFileAndAssociatedLinksType_validator = bv.Struct( - SendAndTrackRemovedFileAndAssociatedLinksType -) + super(SendAndTrackRemovedFileAndAssociatedLinksType, self)._process_custom_annotations(annotation_type, field_path, processor) +SendAndTrackRemovedFileAndAssociatedLinksType_validator = bv.Struct(SendAndTrackRemovedFileAndAssociatedLinksType) class SendExternalSharingPolicy(bb.Union): """ @@ -81711,7 +79081,7 @@ class SendExternalSharingPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition default = None # Attribute is overwritten below the class definition @@ -81727,7 +79097,7 @@ def is_default(self): :rtype: bool """ - return self._tag == "default" + return self._tag == 'default' def is_disabled(self): """ @@ -81735,7 +79105,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == "disabled" + return self._tag == 'disabled' def is_enabled(self): """ @@ -81743,7 +79113,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == "enabled" + return self._tag == 'enabled' def is_other(self): """ @@ -81751,17 +79121,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SendExternalSharingPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SendExternalSharingPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) SendExternalSharingPolicy_validator = bv.Union(SendExternalSharingPolicy) - class SendExternalSharingPolicyChangedDetails(bb.Struct): """ Changed “Send and track” external sharing policy for team. @@ -81773,13 +79139,15 @@ class SendExternalSharingPolicyChangedDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -81794,24 +79162,20 @@ def __init__(self, new_value=None, previous_value=None): previous_value = bb.Attribute("previous_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SendExternalSharingPolicyChangedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - - -SendExternalSharingPolicyChangedDetails_validator = bv.Struct( - SendExternalSharingPolicyChangedDetails -) + super(SendExternalSharingPolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +SendExternalSharingPolicyChangedDetails_validator = bv.Struct(SendExternalSharingPolicyChangedDetails) class SendExternalSharingPolicyChangedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -81820,14 +79184,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SendExternalSharingPolicyChangedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SendExternalSharingPolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) SendExternalSharingPolicyChangedType_validator = bv.Struct(SendExternalSharingPolicyChangedType) - class SendForSignaturePolicy(bb.Union): """ Policy for controlling team access to send for signature feature @@ -81837,7 +79197,7 @@ class SendForSignaturePolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -81851,7 +79211,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == "disabled" + return self._tag == 'disabled' def is_enabled(self): """ @@ -81859,7 +79219,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == "enabled" + return self._tag == 'enabled' def is_other(self): """ @@ -81867,17 +79227,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SendForSignaturePolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SendForSignaturePolicy, self)._process_custom_annotations(annotation_type, field_path, processor) SendForSignaturePolicy_validator = bv.Union(SendForSignaturePolicy) - class SendForSignaturePolicyChangedDetails(bb.Struct): """ Changed send for signature policy for team. @@ -81889,13 +79245,15 @@ class SendForSignaturePolicyChangedDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -81910,22 +79268,20 @@ def __init__(self, new_value=None, previous_value=None): previous_value = bb.Attribute("previous_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SendForSignaturePolicyChangedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SendForSignaturePolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SendForSignaturePolicyChangedDetails_validator = bv.Struct(SendForSignaturePolicyChangedDetails) - class SendForSignaturePolicyChangedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -81934,14 +79290,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SendForSignaturePolicyChangedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SendForSignaturePolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) SendForSignaturePolicyChangedType_validator = bv.Struct(SendForSignaturePolicyChangedType) - class SfAddGroupDetails(bb.Struct): """ Added team to shared folder. @@ -81957,21 +79309,19 @@ class SfAddGroupDetails(bb.Struct): """ __slots__ = [ - "_target_asset_index_value", - "_original_folder_name_value", - "_sharing_permission_value", - "_team_name_value", + '_target_asset_index_value', + '_original_folder_name_value', + '_sharing_permission_value', + '_team_name_value', ] _has_required_fields = True - def __init__( - self, - target_asset_index=None, - original_folder_name=None, - team_name=None, - sharing_permission=None, - ): + def __init__(self, + target_asset_index=None, + original_folder_name=None, + team_name=None, + sharing_permission=None): self._target_asset_index_value = bb.NOT_SET self._original_folder_name_value = bb.NOT_SET self._sharing_permission_value = bb.NOT_SET @@ -81998,22 +79348,20 @@ def __init__( team_name = bb.Attribute("team_name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SfAddGroupDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SfAddGroupDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SfAddGroupDetails_validator = bv.Struct(SfAddGroupDetails) - class SfAddGroupType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -82022,14 +79370,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SfAddGroupType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SfAddGroupType, self)._process_custom_annotations(annotation_type, field_path, processor) SfAddGroupType_validator = bv.Struct(SfAddGroupType) - class SfAllowNonMembersToViewSharedLinksDetails(bb.Struct): """ Allowed non-collaborators to view links to files in shared folder. @@ -82043,19 +79387,17 @@ class SfAllowNonMembersToViewSharedLinksDetails(bb.Struct): """ __slots__ = [ - "_target_asset_index_value", - "_original_folder_name_value", - "_shared_folder_type_value", + '_target_asset_index_value', + '_original_folder_name_value', + '_shared_folder_type_value', ] _has_required_fields = True - def __init__( - self, - target_asset_index=None, - original_folder_name=None, - shared_folder_type=None, - ): + def __init__(self, + target_asset_index=None, + original_folder_name=None, + shared_folder_type=None): self._target_asset_index_value = bb.NOT_SET self._original_folder_name_value = bb.NOT_SET self._shared_folder_type_value = bb.NOT_SET @@ -82076,24 +79418,20 @@ def __init__( 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 - ) - - -SfAllowNonMembersToViewSharedLinksDetails_validator = bv.Struct( - SfAllowNonMembersToViewSharedLinksDetails -) + super(SfAllowNonMembersToViewSharedLinksDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +SfAllowNonMembersToViewSharedLinksDetails_validator = bv.Struct(SfAllowNonMembersToViewSharedLinksDetails) class SfAllowNonMembersToViewSharedLinksType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -82102,14 +79440,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SfAllowNonMembersToViewSharedLinksType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SfAllowNonMembersToViewSharedLinksType, self)._process_custom_annotations(annotation_type, field_path, processor) SfAllowNonMembersToViewSharedLinksType_validator = bv.Struct(SfAllowNonMembersToViewSharedLinksType) - class SfExternalInviteWarnDetails(bb.Struct): """ Set team members to see warning before sharing folders outside team. @@ -82125,21 +79459,19 @@ class SfExternalInviteWarnDetails(bb.Struct): """ __slots__ = [ - "_target_asset_index_value", - "_original_folder_name_value", - "_new_sharing_permission_value", - "_previous_sharing_permission_value", + '_target_asset_index_value', + '_original_folder_name_value', + '_new_sharing_permission_value', + '_previous_sharing_permission_value', ] _has_required_fields = True - def __init__( - self, - target_asset_index=None, - original_folder_name=None, - new_sharing_permission=None, - previous_sharing_permission=None, - ): + def __init__(self, + target_asset_index=None, + original_folder_name=None, + new_sharing_permission=None, + previous_sharing_permission=None): self._target_asset_index_value = bb.NOT_SET self._original_folder_name_value = bb.NOT_SET self._new_sharing_permission_value = bb.NOT_SET @@ -82166,22 +79498,20 @@ def __init__( previous_sharing_permission = bb.Attribute("previous_sharing_permission", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SfExternalInviteWarnDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SfExternalInviteWarnDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SfExternalInviteWarnDetails_validator = bv.Struct(SfExternalInviteWarnDetails) - class SfExternalInviteWarnType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -82190,14 +79520,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SfExternalInviteWarnType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SfExternalInviteWarnType, self)._process_custom_annotations(annotation_type, field_path, processor) SfExternalInviteWarnType_validator = bv.Struct(SfExternalInviteWarnType) - class SfFbInviteChangeRoleDetails(bb.Struct): """ Changed Facebook user's role in shared folder. @@ -82213,21 +79539,19 @@ class SfFbInviteChangeRoleDetails(bb.Struct): """ __slots__ = [ - "_target_asset_index_value", - "_original_folder_name_value", - "_previous_sharing_permission_value", - "_new_sharing_permission_value", + '_target_asset_index_value', + '_original_folder_name_value', + '_previous_sharing_permission_value', + '_new_sharing_permission_value', ] _has_required_fields = True - def __init__( - self, - target_asset_index=None, - original_folder_name=None, - previous_sharing_permission=None, - new_sharing_permission=None, - ): + def __init__(self, + target_asset_index=None, + original_folder_name=None, + previous_sharing_permission=None, + new_sharing_permission=None): self._target_asset_index_value = bb.NOT_SET self._original_folder_name_value = bb.NOT_SET self._previous_sharing_permission_value = bb.NOT_SET @@ -82254,22 +79578,20 @@ def __init__( new_sharing_permission = bb.Attribute("new_sharing_permission", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SfFbInviteChangeRoleDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SfFbInviteChangeRoleDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SfFbInviteChangeRoleDetails_validator = bv.Struct(SfFbInviteChangeRoleDetails) - class SfFbInviteChangeRoleType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -82278,14 +79600,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SfFbInviteChangeRoleType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SfFbInviteChangeRoleType, self)._process_custom_annotations(annotation_type, field_path, processor) SfFbInviteChangeRoleType_validator = bv.Struct(SfFbInviteChangeRoleType) - class SfFbInviteDetails(bb.Struct): """ Invited Facebook users to shared folder. @@ -82299,19 +79617,17 @@ class SfFbInviteDetails(bb.Struct): """ __slots__ = [ - "_target_asset_index_value", - "_original_folder_name_value", - "_sharing_permission_value", + '_target_asset_index_value', + '_original_folder_name_value', + '_sharing_permission_value', ] _has_required_fields = True - def __init__( - self, - target_asset_index=None, - original_folder_name=None, - sharing_permission=None, - ): + def __init__(self, + target_asset_index=None, + original_folder_name=None, + sharing_permission=None): self._target_asset_index_value = bb.NOT_SET self._original_folder_name_value = bb.NOT_SET self._sharing_permission_value = bb.NOT_SET @@ -82332,22 +79648,20 @@ def __init__( sharing_permission = bb.Attribute("sharing_permission", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SfFbInviteDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SfFbInviteDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SfFbInviteDetails_validator = bv.Struct(SfFbInviteDetails) - class SfFbInviteType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -82356,14 +79670,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SfFbInviteType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SfFbInviteType, self)._process_custom_annotations(annotation_type, field_path, processor) SfFbInviteType_validator = bv.Struct(SfFbInviteType) - class SfFbUninviteDetails(bb.Struct): """ Uninvited Facebook user from shared folder. @@ -82375,13 +79685,15 @@ class SfFbUninviteDetails(bb.Struct): """ __slots__ = [ - "_target_asset_index_value", - "_original_folder_name_value", + '_target_asset_index_value', + '_original_folder_name_value', ] _has_required_fields = True - def __init__(self, target_asset_index=None, original_folder_name=None): + def __init__(self, + target_asset_index=None, + original_folder_name=None): self._target_asset_index_value = bb.NOT_SET self._original_folder_name_value = bb.NOT_SET if target_asset_index is not None: @@ -82396,22 +79708,20 @@ def __init__(self, target_asset_index=None, original_folder_name=None): original_folder_name = bb.Attribute("original_folder_name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SfFbUninviteDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SfFbUninviteDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SfFbUninviteDetails_validator = bv.Struct(SfFbUninviteDetails) - class SfFbUninviteType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -82420,14 +79730,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SfFbUninviteType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SfFbUninviteType, self)._process_custom_annotations(annotation_type, field_path, processor) SfFbUninviteType_validator = bv.Struct(SfFbUninviteType) - class SfInviteGroupDetails(bb.Struct): """ Invited group to shared folder. @@ -82437,12 +79743,13 @@ class SfInviteGroupDetails(bb.Struct): """ __slots__ = [ - "_target_asset_index_value", + '_target_asset_index_value', ] _has_required_fields = True - def __init__(self, target_asset_index=None): + def __init__(self, + target_asset_index=None): self._target_asset_index_value = bb.NOT_SET if target_asset_index is not None: self.target_asset_index = target_asset_index @@ -82451,22 +79758,20 @@ def __init__(self, target_asset_index=None): target_asset_index = bb.Attribute("target_asset_index") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SfInviteGroupDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SfInviteGroupDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SfInviteGroupDetails_validator = bv.Struct(SfInviteGroupDetails) - class SfInviteGroupType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -82475,14 +79780,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SfInviteGroupType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SfInviteGroupType, self)._process_custom_annotations(annotation_type, field_path, processor) SfInviteGroupType_validator = bv.Struct(SfInviteGroupType) - class SfTeamGrantAccessDetails(bb.Struct): """ Granted access to shared folder. @@ -82494,13 +79795,15 @@ class SfTeamGrantAccessDetails(bb.Struct): """ __slots__ = [ - "_target_asset_index_value", - "_original_folder_name_value", + '_target_asset_index_value', + '_original_folder_name_value', ] _has_required_fields = True - def __init__(self, target_asset_index=None, original_folder_name=None): + def __init__(self, + target_asset_index=None, + original_folder_name=None): self._target_asset_index_value = bb.NOT_SET self._original_folder_name_value = bb.NOT_SET if target_asset_index is not None: @@ -82515,22 +79818,20 @@ def __init__(self, target_asset_index=None, original_folder_name=None): original_folder_name = bb.Attribute("original_folder_name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SfTeamGrantAccessDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SfTeamGrantAccessDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SfTeamGrantAccessDetails_validator = bv.Struct(SfTeamGrantAccessDetails) - class SfTeamGrantAccessType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -82539,14 +79840,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SfTeamGrantAccessType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SfTeamGrantAccessType, self)._process_custom_annotations(annotation_type, field_path, processor) SfTeamGrantAccessType_validator = bv.Struct(SfTeamGrantAccessType) - class SfTeamInviteChangeRoleDetails(bb.Struct): """ Changed team member's role in shared folder. @@ -82562,21 +79859,19 @@ class SfTeamInviteChangeRoleDetails(bb.Struct): """ __slots__ = [ - "_target_asset_index_value", - "_original_folder_name_value", - "_new_sharing_permission_value", - "_previous_sharing_permission_value", + '_target_asset_index_value', + '_original_folder_name_value', + '_new_sharing_permission_value', + '_previous_sharing_permission_value', ] _has_required_fields = True - def __init__( - self, - target_asset_index=None, - original_folder_name=None, - new_sharing_permission=None, - previous_sharing_permission=None, - ): + def __init__(self, + target_asset_index=None, + original_folder_name=None, + new_sharing_permission=None, + previous_sharing_permission=None): self._target_asset_index_value = bb.NOT_SET self._original_folder_name_value = bb.NOT_SET self._new_sharing_permission_value = bb.NOT_SET @@ -82603,22 +79898,20 @@ def __init__( previous_sharing_permission = bb.Attribute("previous_sharing_permission", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SfTeamInviteChangeRoleDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SfTeamInviteChangeRoleDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SfTeamInviteChangeRoleDetails_validator = bv.Struct(SfTeamInviteChangeRoleDetails) - class SfTeamInviteChangeRoleType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -82627,14 +79920,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SfTeamInviteChangeRoleType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SfTeamInviteChangeRoleType, self)._process_custom_annotations(annotation_type, field_path, processor) SfTeamInviteChangeRoleType_validator = bv.Struct(SfTeamInviteChangeRoleType) - class SfTeamInviteDetails(bb.Struct): """ Invited team members to shared folder. @@ -82648,19 +79937,17 @@ class SfTeamInviteDetails(bb.Struct): """ __slots__ = [ - "_target_asset_index_value", - "_original_folder_name_value", - "_sharing_permission_value", + '_target_asset_index_value', + '_original_folder_name_value', + '_sharing_permission_value', ] _has_required_fields = True - def __init__( - self, - target_asset_index=None, - original_folder_name=None, - sharing_permission=None, - ): + def __init__(self, + target_asset_index=None, + original_folder_name=None, + sharing_permission=None): self._target_asset_index_value = bb.NOT_SET self._original_folder_name_value = bb.NOT_SET self._sharing_permission_value = bb.NOT_SET @@ -82681,22 +79968,20 @@ def __init__( sharing_permission = bb.Attribute("sharing_permission", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SfTeamInviteDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SfTeamInviteDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SfTeamInviteDetails_validator = bv.Struct(SfTeamInviteDetails) - class SfTeamInviteType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -82705,14 +79990,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SfTeamInviteType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SfTeamInviteType, self)._process_custom_annotations(annotation_type, field_path, processor) SfTeamInviteType_validator = bv.Struct(SfTeamInviteType) - class SfTeamJoinDetails(bb.Struct): """ Joined team member's shared folder. @@ -82724,13 +80005,15 @@ class SfTeamJoinDetails(bb.Struct): """ __slots__ = [ - "_target_asset_index_value", - "_original_folder_name_value", + '_target_asset_index_value', + '_original_folder_name_value', ] _has_required_fields = True - def __init__(self, target_asset_index=None, original_folder_name=None): + def __init__(self, + target_asset_index=None, + original_folder_name=None): self._target_asset_index_value = bb.NOT_SET self._original_folder_name_value = bb.NOT_SET if target_asset_index is not None: @@ -82745,14 +80028,10 @@ def __init__(self, target_asset_index=None, original_folder_name=None): original_folder_name = bb.Attribute("original_folder_name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SfTeamJoinDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SfTeamJoinDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SfTeamJoinDetails_validator = bv.Struct(SfTeamJoinDetails) - class SfTeamJoinFromOobLinkDetails(bb.Struct): """ Joined team member's shared folder from link. @@ -82768,21 +80047,19 @@ class SfTeamJoinFromOobLinkDetails(bb.Struct): """ __slots__ = [ - "_target_asset_index_value", - "_original_folder_name_value", - "_token_key_value", - "_sharing_permission_value", + '_target_asset_index_value', + '_original_folder_name_value', + '_token_key_value', + '_sharing_permission_value', ] _has_required_fields = True - def __init__( - self, - target_asset_index=None, - original_folder_name=None, - token_key=None, - sharing_permission=None, - ): + def __init__(self, + target_asset_index=None, + original_folder_name=None, + token_key=None, + sharing_permission=None): self._target_asset_index_value = bb.NOT_SET self._original_folder_name_value = bb.NOT_SET self._token_key_value = bb.NOT_SET @@ -82809,22 +80086,20 @@ def __init__( sharing_permission = bb.Attribute("sharing_permission", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SfTeamJoinFromOobLinkDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SfTeamJoinFromOobLinkDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SfTeamJoinFromOobLinkDetails_validator = bv.Struct(SfTeamJoinFromOobLinkDetails) - class SfTeamJoinFromOobLinkType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -82833,22 +80108,20 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SfTeamJoinFromOobLinkType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SfTeamJoinFromOobLinkType, self)._process_custom_annotations(annotation_type, field_path, processor) SfTeamJoinFromOobLinkType_validator = bv.Struct(SfTeamJoinFromOobLinkType) - class SfTeamJoinType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -82857,14 +80130,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SfTeamJoinType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SfTeamJoinType, self)._process_custom_annotations(annotation_type, field_path, processor) SfTeamJoinType_validator = bv.Struct(SfTeamJoinType) - class SfTeamUninviteDetails(bb.Struct): """ Unshared folder with team member. @@ -82876,13 +80145,15 @@ class SfTeamUninviteDetails(bb.Struct): """ __slots__ = [ - "_target_asset_index_value", - "_original_folder_name_value", + '_target_asset_index_value', + '_original_folder_name_value', ] _has_required_fields = True - def __init__(self, target_asset_index=None, original_folder_name=None): + def __init__(self, + target_asset_index=None, + original_folder_name=None): self._target_asset_index_value = bb.NOT_SET self._original_folder_name_value = bb.NOT_SET if target_asset_index is not None: @@ -82897,22 +80168,20 @@ def __init__(self, target_asset_index=None, original_folder_name=None): original_folder_name = bb.Attribute("original_folder_name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SfTeamUninviteDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SfTeamUninviteDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SfTeamUninviteDetails_validator = bv.Struct(SfTeamUninviteDetails) - class SfTeamUninviteType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -82921,14 +80190,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SfTeamUninviteType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SfTeamUninviteType, self)._process_custom_annotations(annotation_type, field_path, processor) SfTeamUninviteType_validator = bv.Struct(SfTeamUninviteType) - class SharedContentAddInviteesDetails(bb.Struct): """ Invited user to Dropbox and added them to shared file/folder. @@ -82940,13 +80205,15 @@ class SharedContentAddInviteesDetails(bb.Struct): """ __slots__ = [ - "_shared_content_access_level_value", - "_invitees_value", + '_shared_content_access_level_value', + '_invitees_value', ] _has_required_fields = True - def __init__(self, shared_content_access_level=None, invitees=None): + def __init__(self, + shared_content_access_level=None, + invitees=None): self._shared_content_access_level_value = bb.NOT_SET self._invitees_value = bb.NOT_SET if shared_content_access_level is not None: @@ -82961,22 +80228,20 @@ def __init__(self, shared_content_access_level=None, invitees=None): invitees = bb.Attribute("invitees") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentAddInviteesDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedContentAddInviteesDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SharedContentAddInviteesDetails_validator = bv.Struct(SharedContentAddInviteesDetails) - class SharedContentAddInviteesType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -82985,14 +80250,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentAddInviteesType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedContentAddInviteesType, self)._process_custom_annotations(annotation_type, field_path, processor) SharedContentAddInviteesType_validator = bv.Struct(SharedContentAddInviteesType) - class SharedContentAddLinkExpiryDetails(bb.Struct): """ Added expiration date to link for shared file/folder. @@ -83003,12 +80264,13 @@ class SharedContentAddLinkExpiryDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", + '_new_value_value', ] _has_required_fields = False - def __init__(self, new_value=None): + def __init__(self, + new_value=None): self._new_value_value = bb.NOT_SET if new_value is not None: self.new_value = new_value @@ -83017,22 +80279,20 @@ def __init__(self, new_value=None): new_value = bb.Attribute("new_value", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentAddLinkExpiryDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedContentAddLinkExpiryDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SharedContentAddLinkExpiryDetails_validator = bv.Struct(SharedContentAddLinkExpiryDetails) - class SharedContentAddLinkExpiryType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -83041,20 +80301,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentAddLinkExpiryType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedContentAddLinkExpiryType, self)._process_custom_annotations(annotation_type, field_path, processor) SharedContentAddLinkExpiryType_validator = bv.Struct(SharedContentAddLinkExpiryType) - class SharedContentAddLinkPasswordDetails(bb.Struct): """ Added password to link for shared file/folder. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -83062,22 +80319,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentAddLinkPasswordDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedContentAddLinkPasswordDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SharedContentAddLinkPasswordDetails_validator = bv.Struct(SharedContentAddLinkPasswordDetails) - class SharedContentAddLinkPasswordType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -83086,14 +80341,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentAddLinkPasswordType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedContentAddLinkPasswordType, self)._process_custom_annotations(annotation_type, field_path, processor) SharedContentAddLinkPasswordType_validator = bv.Struct(SharedContentAddLinkPasswordType) - class SharedContentAddMemberDetails(bb.Struct): """ Added users and/or groups to shared file/folder. @@ -83103,12 +80354,13 @@ class SharedContentAddMemberDetails(bb.Struct): """ __slots__ = [ - "_shared_content_access_level_value", + '_shared_content_access_level_value', ] _has_required_fields = True - def __init__(self, shared_content_access_level=None): + def __init__(self, + shared_content_access_level=None): self._shared_content_access_level_value = bb.NOT_SET if shared_content_access_level is not None: self.shared_content_access_level = shared_content_access_level @@ -83117,22 +80369,20 @@ def __init__(self, shared_content_access_level=None): shared_content_access_level = bb.Attribute("shared_content_access_level", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentAddMemberDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedContentAddMemberDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SharedContentAddMemberDetails_validator = bv.Struct(SharedContentAddMemberDetails) - class SharedContentAddMemberType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -83141,14 +80391,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentAddMemberType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedContentAddMemberType, self)._process_custom_annotations(annotation_type, field_path, processor) SharedContentAddMemberType_validator = bv.Struct(SharedContentAddMemberType) - class SharedContentChangeDownloadsPolicyDetails(bb.Struct): """ Changed whether members can download shared file/folder. @@ -83160,13 +80406,15 @@ class SharedContentChangeDownloadsPolicyDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -83181,24 +80429,20 @@ def __init__(self, new_value=None, previous_value=None): 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 - ) - - -SharedContentChangeDownloadsPolicyDetails_validator = bv.Struct( - SharedContentChangeDownloadsPolicyDetails -) + super(SharedContentChangeDownloadsPolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +SharedContentChangeDownloadsPolicyDetails_validator = bv.Struct(SharedContentChangeDownloadsPolicyDetails) class SharedContentChangeDownloadsPolicyType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -83207,14 +80451,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentChangeDownloadsPolicyType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedContentChangeDownloadsPolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) SharedContentChangeDownloadsPolicyType_validator = bv.Struct(SharedContentChangeDownloadsPolicyType) - class SharedContentChangeInviteeRoleDetails(bb.Struct): """ Changed access type of invitee to shared file/folder before invite was @@ -83229,14 +80469,17 @@ class SharedContentChangeInviteeRoleDetails(bb.Struct): """ __slots__ = [ - "_previous_access_level_value", - "_new_access_level_value", - "_invitee_value", + '_previous_access_level_value', + '_new_access_level_value', + '_invitee_value', ] _has_required_fields = True - def __init__(self, new_access_level=None, invitee=None, previous_access_level=None): + def __init__(self, + new_access_level=None, + invitee=None, + previous_access_level=None): self._previous_access_level_value = bb.NOT_SET self._new_access_level_value = bb.NOT_SET self._invitee_value = bb.NOT_SET @@ -83257,22 +80500,20 @@ def __init__(self, new_access_level=None, invitee=None, previous_access_level=No invitee = bb.Attribute("invitee") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentChangeInviteeRoleDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedContentChangeInviteeRoleDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SharedContentChangeInviteeRoleDetails_validator = bv.Struct(SharedContentChangeInviteeRoleDetails) - class SharedContentChangeInviteeRoleType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -83281,14 +80522,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentChangeInviteeRoleType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedContentChangeInviteeRoleType, self)._process_custom_annotations(annotation_type, field_path, processor) SharedContentChangeInviteeRoleType_validator = bv.Struct(SharedContentChangeInviteeRoleType) - class SharedContentChangeLinkAudienceDetails(bb.Struct): """ Changed link audience of shared file/folder. @@ -83300,13 +80537,15 @@ class SharedContentChangeLinkAudienceDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -83321,22 +80560,20 @@ def __init__(self, new_value=None, previous_value=None): previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentChangeLinkAudienceDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedContentChangeLinkAudienceDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SharedContentChangeLinkAudienceDetails_validator = bv.Struct(SharedContentChangeLinkAudienceDetails) - class SharedContentChangeLinkAudienceType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -83345,14 +80582,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentChangeLinkAudienceType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedContentChangeLinkAudienceType, self)._process_custom_annotations(annotation_type, field_path, processor) SharedContentChangeLinkAudienceType_validator = bv.Struct(SharedContentChangeLinkAudienceType) - class SharedContentChangeLinkExpiryDetails(bb.Struct): """ Changed link expiration of shared file/folder. @@ -83366,13 +80599,15 @@ class SharedContentChangeLinkExpiryDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = False - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -83387,22 +80622,20 @@ def __init__(self, new_value=None, previous_value=None): previous_value = bb.Attribute("previous_value", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentChangeLinkExpiryDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedContentChangeLinkExpiryDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SharedContentChangeLinkExpiryDetails_validator = bv.Struct(SharedContentChangeLinkExpiryDetails) - class SharedContentChangeLinkExpiryType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -83411,20 +80644,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentChangeLinkExpiryType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedContentChangeLinkExpiryType, self)._process_custom_annotations(annotation_type, field_path, processor) SharedContentChangeLinkExpiryType_validator = bv.Struct(SharedContentChangeLinkExpiryType) - class SharedContentChangeLinkPasswordDetails(bb.Struct): """ Changed link password of shared file/folder. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -83432,22 +80662,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentChangeLinkPasswordDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedContentChangeLinkPasswordDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SharedContentChangeLinkPasswordDetails_validator = bv.Struct(SharedContentChangeLinkPasswordDetails) - class SharedContentChangeLinkPasswordType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -83456,14 +80684,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentChangeLinkPasswordType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedContentChangeLinkPasswordType, self)._process_custom_annotations(annotation_type, field_path, processor) SharedContentChangeLinkPasswordType_validator = bv.Struct(SharedContentChangeLinkPasswordType) - class SharedContentChangeMemberRoleDetails(bb.Struct): """ Changed access type of shared file/folder member. @@ -83475,13 +80699,15 @@ class SharedContentChangeMemberRoleDetails(bb.Struct): """ __slots__ = [ - "_previous_access_level_value", - "_new_access_level_value", + '_previous_access_level_value', + '_new_access_level_value', ] _has_required_fields = True - def __init__(self, new_access_level=None, previous_access_level=None): + def __init__(self, + new_access_level=None, + previous_access_level=None): self._previous_access_level_value = bb.NOT_SET self._new_access_level_value = bb.NOT_SET if previous_access_level is not None: @@ -83496,22 +80722,20 @@ def __init__(self, new_access_level=None, previous_access_level=None): new_access_level = bb.Attribute("new_access_level", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentChangeMemberRoleDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedContentChangeMemberRoleDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SharedContentChangeMemberRoleDetails_validator = bv.Struct(SharedContentChangeMemberRoleDetails) - class SharedContentChangeMemberRoleType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -83520,14 +80744,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentChangeMemberRoleType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedContentChangeMemberRoleType, self)._process_custom_annotations(annotation_type, field_path, processor) SharedContentChangeMemberRoleType_validator = bv.Struct(SharedContentChangeMemberRoleType) - class SharedContentChangeViewerInfoPolicyDetails(bb.Struct): """ Changed whether members can see who viewed shared file/folder. @@ -83539,13 +80759,15 @@ class SharedContentChangeViewerInfoPolicyDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -83560,24 +80782,20 @@ def __init__(self, new_value=None, previous_value=None): 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 - ) - - -SharedContentChangeViewerInfoPolicyDetails_validator = bv.Struct( - SharedContentChangeViewerInfoPolicyDetails -) + super(SharedContentChangeViewerInfoPolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +SharedContentChangeViewerInfoPolicyDetails_validator = bv.Struct(SharedContentChangeViewerInfoPolicyDetails) class SharedContentChangeViewerInfoPolicyType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -83586,15 +80804,9 @@ def __init__(self, description=None): 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 - ) - - -SharedContentChangeViewerInfoPolicyType_validator = bv.Struct( - SharedContentChangeViewerInfoPolicyType -) + super(SharedContentChangeViewerInfoPolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) +SharedContentChangeViewerInfoPolicyType_validator = bv.Struct(SharedContentChangeViewerInfoPolicyType) class SharedContentClaimInvitationDetails(bb.Struct): """ @@ -83605,12 +80817,13 @@ class SharedContentClaimInvitationDetails(bb.Struct): """ __slots__ = [ - "_shared_content_link_value", + '_shared_content_link_value', ] _has_required_fields = False - def __init__(self, shared_content_link=None): + def __init__(self, + shared_content_link=None): self._shared_content_link_value = bb.NOT_SET if shared_content_link is not None: self.shared_content_link = shared_content_link @@ -83619,22 +80832,20 @@ def __init__(self, shared_content_link=None): shared_content_link = bb.Attribute("shared_content_link", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentClaimInvitationDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedContentClaimInvitationDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SharedContentClaimInvitationDetails_validator = bv.Struct(SharedContentClaimInvitationDetails) - class SharedContentClaimInvitationType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -83643,14 +80854,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentClaimInvitationType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedContentClaimInvitationType, self)._process_custom_annotations(annotation_type, field_path, processor) SharedContentClaimInvitationType_validator = bv.Struct(SharedContentClaimInvitationType) - class SharedContentCopyDetails(bb.Struct): """ Copied shared file/folder to own Dropbox. @@ -83666,21 +80873,19 @@ class SharedContentCopyDetails(bb.Struct): """ __slots__ = [ - "_shared_content_link_value", - "_shared_content_owner_value", - "_shared_content_access_level_value", - "_destination_path_value", + '_shared_content_link_value', + '_shared_content_owner_value', + '_shared_content_access_level_value', + '_destination_path_value', ] _has_required_fields = True - def __init__( - self, - shared_content_link=None, - shared_content_access_level=None, - destination_path=None, - shared_content_owner=None, - ): + def __init__(self, + shared_content_link=None, + shared_content_access_level=None, + destination_path=None, + shared_content_owner=None): self._shared_content_link_value = bb.NOT_SET self._shared_content_owner_value = bb.NOT_SET self._shared_content_access_level_value = bb.NOT_SET @@ -83707,22 +80912,20 @@ def __init__( destination_path = bb.Attribute("destination_path") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentCopyDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedContentCopyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SharedContentCopyDetails_validator = bv.Struct(SharedContentCopyDetails) - class SharedContentCopyType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -83731,14 +80934,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentCopyType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedContentCopyType, self)._process_custom_annotations(annotation_type, field_path, processor) SharedContentCopyType_validator = bv.Struct(SharedContentCopyType) - class SharedContentDownloadDetails(bb.Struct): """ Downloaded shared file/folder. @@ -83752,19 +80951,17 @@ class SharedContentDownloadDetails(bb.Struct): """ __slots__ = [ - "_shared_content_link_value", - "_shared_content_owner_value", - "_shared_content_access_level_value", + '_shared_content_link_value', + '_shared_content_owner_value', + '_shared_content_access_level_value', ] _has_required_fields = True - def __init__( - self, - shared_content_link=None, - shared_content_access_level=None, - shared_content_owner=None, - ): + def __init__(self, + shared_content_link=None, + shared_content_access_level=None, + shared_content_owner=None): self._shared_content_link_value = bb.NOT_SET self._shared_content_owner_value = bb.NOT_SET self._shared_content_access_level_value = bb.NOT_SET @@ -83785,22 +80982,20 @@ def __init__( shared_content_access_level = bb.Attribute("shared_content_access_level", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentDownloadDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedContentDownloadDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SharedContentDownloadDetails_validator = bv.Struct(SharedContentDownloadDetails) - class SharedContentDownloadType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -83809,20 +81004,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentDownloadType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedContentDownloadType, self)._process_custom_annotations(annotation_type, field_path, processor) SharedContentDownloadType_validator = bv.Struct(SharedContentDownloadType) - class SharedContentRelinquishMembershipDetails(bb.Struct): """ Left shared file/folder. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -83830,24 +81022,20 @@ 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 - ) - - -SharedContentRelinquishMembershipDetails_validator = bv.Struct( - SharedContentRelinquishMembershipDetails -) + super(SharedContentRelinquishMembershipDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +SharedContentRelinquishMembershipDetails_validator = bv.Struct(SharedContentRelinquishMembershipDetails) class SharedContentRelinquishMembershipType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -83856,14 +81044,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentRelinquishMembershipType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedContentRelinquishMembershipType, self)._process_custom_annotations(annotation_type, field_path, processor) SharedContentRelinquishMembershipType_validator = bv.Struct(SharedContentRelinquishMembershipType) - class SharedContentRemoveInviteesDetails(bb.Struct): """ Removed invitee from shared file/folder before invite was accepted. @@ -83873,12 +81057,13 @@ class SharedContentRemoveInviteesDetails(bb.Struct): """ __slots__ = [ - "_invitees_value", + '_invitees_value', ] _has_required_fields = True - def __init__(self, invitees=None): + def __init__(self, + invitees=None): self._invitees_value = bb.NOT_SET if invitees is not None: self.invitees = invitees @@ -83887,22 +81072,20 @@ def __init__(self, invitees=None): invitees = bb.Attribute("invitees") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentRemoveInviteesDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedContentRemoveInviteesDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SharedContentRemoveInviteesDetails_validator = bv.Struct(SharedContentRemoveInviteesDetails) - class SharedContentRemoveInviteesType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -83911,14 +81094,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentRemoveInviteesType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedContentRemoveInviteesType, self)._process_custom_annotations(annotation_type, field_path, processor) SharedContentRemoveInviteesType_validator = bv.Struct(SharedContentRemoveInviteesType) - class SharedContentRemoveLinkExpiryDetails(bb.Struct): """ Removed link expiration date of shared file/folder. @@ -83929,12 +81108,13 @@ class SharedContentRemoveLinkExpiryDetails(bb.Struct): """ __slots__ = [ - "_previous_value_value", + '_previous_value_value', ] _has_required_fields = False - def __init__(self, previous_value=None): + def __init__(self, + previous_value=None): self._previous_value_value = bb.NOT_SET if previous_value is not None: self.previous_value = previous_value @@ -83943,22 +81123,20 @@ def __init__(self, previous_value=None): previous_value = bb.Attribute("previous_value", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentRemoveLinkExpiryDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedContentRemoveLinkExpiryDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SharedContentRemoveLinkExpiryDetails_validator = bv.Struct(SharedContentRemoveLinkExpiryDetails) - class SharedContentRemoveLinkExpiryType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -83967,20 +81145,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentRemoveLinkExpiryType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedContentRemoveLinkExpiryType, self)._process_custom_annotations(annotation_type, field_path, processor) SharedContentRemoveLinkExpiryType_validator = bv.Struct(SharedContentRemoveLinkExpiryType) - class SharedContentRemoveLinkPasswordDetails(bb.Struct): """ Removed link password of shared file/folder. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -83988,22 +81163,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentRemoveLinkPasswordDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedContentRemoveLinkPasswordDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SharedContentRemoveLinkPasswordDetails_validator = bv.Struct(SharedContentRemoveLinkPasswordDetails) - class SharedContentRemoveLinkPasswordType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -84012,14 +81185,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentRemoveLinkPasswordType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedContentRemoveLinkPasswordType, self)._process_custom_annotations(annotation_type, field_path, processor) SharedContentRemoveLinkPasswordType_validator = bv.Struct(SharedContentRemoveLinkPasswordType) - class SharedContentRemoveMemberDetails(bb.Struct): """ Removed user/group from shared file/folder. @@ -84029,38 +81198,35 @@ class SharedContentRemoveMemberDetails(bb.Struct): """ __slots__ = [ - "_shared_content_access_level_value", + '_shared_content_access_level_value', ] _has_required_fields = False - def __init__(self, shared_content_access_level=None): + def __init__(self, + shared_content_access_level=None): self._shared_content_access_level_value = bb.NOT_SET if shared_content_access_level is not None: self.shared_content_access_level = shared_content_access_level # Instance attribute type: sharing.AccessLevel (validator is set below) - shared_content_access_level = bb.Attribute( - "shared_content_access_level", nullable=True, user_defined=True - ) + shared_content_access_level = bb.Attribute("shared_content_access_level", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentRemoveMemberDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedContentRemoveMemberDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SharedContentRemoveMemberDetails_validator = bv.Struct(SharedContentRemoveMemberDetails) - class SharedContentRemoveMemberType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -84069,14 +81235,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentRemoveMemberType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedContentRemoveMemberType, self)._process_custom_annotations(annotation_type, field_path, processor) SharedContentRemoveMemberType_validator = bv.Struct(SharedContentRemoveMemberType) - class SharedContentRequestAccessDetails(bb.Struct): """ Requested access to shared file/folder. @@ -84086,12 +81248,13 @@ class SharedContentRequestAccessDetails(bb.Struct): """ __slots__ = [ - "_shared_content_link_value", + '_shared_content_link_value', ] _has_required_fields = False - def __init__(self, shared_content_link=None): + def __init__(self, + shared_content_link=None): self._shared_content_link_value = bb.NOT_SET if shared_content_link is not None: self.shared_content_link = shared_content_link @@ -84100,22 +81263,20 @@ def __init__(self, shared_content_link=None): shared_content_link = bb.Attribute("shared_content_link", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentRequestAccessDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedContentRequestAccessDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SharedContentRequestAccessDetails_validator = bv.Struct(SharedContentRequestAccessDetails) - class SharedContentRequestAccessType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -84124,14 +81285,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentRequestAccessType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedContentRequestAccessType, self)._process_custom_annotations(annotation_type, field_path, processor) SharedContentRequestAccessType_validator = bv.Struct(SharedContentRequestAccessType) - class SharedContentRestoreInviteesDetails(bb.Struct): """ Restored shared file/folder invitees. @@ -84143,13 +81300,15 @@ class SharedContentRestoreInviteesDetails(bb.Struct): """ __slots__ = [ - "_shared_content_access_level_value", - "_invitees_value", + '_shared_content_access_level_value', + '_invitees_value', ] _has_required_fields = True - def __init__(self, shared_content_access_level=None, invitees=None): + def __init__(self, + shared_content_access_level=None, + invitees=None): self._shared_content_access_level_value = bb.NOT_SET self._invitees_value = bb.NOT_SET if shared_content_access_level is not None: @@ -84164,22 +81323,20 @@ def __init__(self, shared_content_access_level=None, invitees=None): invitees = bb.Attribute("invitees") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentRestoreInviteesDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedContentRestoreInviteesDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SharedContentRestoreInviteesDetails_validator = bv.Struct(SharedContentRestoreInviteesDetails) - class SharedContentRestoreInviteesType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -84188,14 +81345,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentRestoreInviteesType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedContentRestoreInviteesType, self)._process_custom_annotations(annotation_type, field_path, processor) SharedContentRestoreInviteesType_validator = bv.Struct(SharedContentRestoreInviteesType) - class SharedContentRestoreMemberDetails(bb.Struct): """ Restored users and/or groups to membership of shared file/folder. @@ -84205,12 +81358,13 @@ class SharedContentRestoreMemberDetails(bb.Struct): """ __slots__ = [ - "_shared_content_access_level_value", + '_shared_content_access_level_value', ] _has_required_fields = True - def __init__(self, shared_content_access_level=None): + def __init__(self, + shared_content_access_level=None): self._shared_content_access_level_value = bb.NOT_SET if shared_content_access_level is not None: self.shared_content_access_level = shared_content_access_level @@ -84219,22 +81373,20 @@ def __init__(self, shared_content_access_level=None): shared_content_access_level = bb.Attribute("shared_content_access_level", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentRestoreMemberDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedContentRestoreMemberDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SharedContentRestoreMemberDetails_validator = bv.Struct(SharedContentRestoreMemberDetails) - class SharedContentRestoreMemberType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -84243,20 +81395,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentRestoreMemberType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedContentRestoreMemberType, self)._process_custom_annotations(annotation_type, field_path, processor) SharedContentRestoreMemberType_validator = bv.Struct(SharedContentRestoreMemberType) - class SharedContentUnshareDetails(bb.Struct): """ Unshared file/folder by clearing membership. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -84264,22 +81413,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentUnshareDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedContentUnshareDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SharedContentUnshareDetails_validator = bv.Struct(SharedContentUnshareDetails) - class SharedContentUnshareType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -84288,14 +81435,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentUnshareType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedContentUnshareType, self)._process_custom_annotations(annotation_type, field_path, processor) SharedContentUnshareType_validator = bv.Struct(SharedContentUnshareType) - class SharedContentViewDetails(bb.Struct): """ Previewed shared file/folder. @@ -84309,19 +81452,17 @@ class SharedContentViewDetails(bb.Struct): """ __slots__ = [ - "_shared_content_link_value", - "_shared_content_owner_value", - "_shared_content_access_level_value", + '_shared_content_link_value', + '_shared_content_owner_value', + '_shared_content_access_level_value', ] _has_required_fields = True - def __init__( - self, - shared_content_link=None, - shared_content_access_level=None, - shared_content_owner=None, - ): + def __init__(self, + shared_content_link=None, + shared_content_access_level=None, + shared_content_owner=None): self._shared_content_link_value = bb.NOT_SET self._shared_content_owner_value = bb.NOT_SET self._shared_content_access_level_value = bb.NOT_SET @@ -84342,22 +81483,20 @@ def __init__( shared_content_access_level = bb.Attribute("shared_content_access_level", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentViewDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedContentViewDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SharedContentViewDetails_validator = bv.Struct(SharedContentViewDetails) - class SharedContentViewType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -84366,14 +81505,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentViewType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedContentViewType, self)._process_custom_annotations(annotation_type, field_path, processor) SharedContentViewType_validator = bv.Struct(SharedContentViewType) - class SharedFolderChangeLinkPolicyDetails(bb.Struct): """ Changed who can access shared folder via link. @@ -84386,13 +81521,15 @@ class SharedFolderChangeLinkPolicyDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -84407,22 +81544,20 @@ def __init__(self, new_value=None, previous_value=None): previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedFolderChangeLinkPolicyDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedFolderChangeLinkPolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SharedFolderChangeLinkPolicyDetails_validator = bv.Struct(SharedFolderChangeLinkPolicyDetails) - class SharedFolderChangeLinkPolicyType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -84431,14 +81566,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedFolderChangeLinkPolicyType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedFolderChangeLinkPolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) SharedFolderChangeLinkPolicyType_validator = bv.Struct(SharedFolderChangeLinkPolicyType) - class SharedFolderChangeMembersInheritancePolicyDetails(bb.Struct): """ Changed whether shared folder inherits members from parent folder. @@ -84451,13 +81582,15 @@ class SharedFolderChangeMembersInheritancePolicyDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -84472,24 +81605,20 @@ def __init__(self, new_value=None, previous_value=None): 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 - ) - - -SharedFolderChangeMembersInheritancePolicyDetails_validator = bv.Struct( - SharedFolderChangeMembersInheritancePolicyDetails -) + super(SharedFolderChangeMembersInheritancePolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +SharedFolderChangeMembersInheritancePolicyDetails_validator = bv.Struct(SharedFolderChangeMembersInheritancePolicyDetails) class SharedFolderChangeMembersInheritancePolicyType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -84498,15 +81627,9 @@ def __init__(self, description=None): 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 - ) - - -SharedFolderChangeMembersInheritancePolicyType_validator = bv.Struct( - SharedFolderChangeMembersInheritancePolicyType -) + super(SharedFolderChangeMembersInheritancePolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) +SharedFolderChangeMembersInheritancePolicyType_validator = bv.Struct(SharedFolderChangeMembersInheritancePolicyType) class SharedFolderChangeMembersManagementPolicyDetails(bb.Struct): """ @@ -84520,13 +81643,15 @@ class SharedFolderChangeMembersManagementPolicyDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -84541,24 +81666,20 @@ def __init__(self, new_value=None, previous_value=None): 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 - ) - - -SharedFolderChangeMembersManagementPolicyDetails_validator = bv.Struct( - SharedFolderChangeMembersManagementPolicyDetails -) + super(SharedFolderChangeMembersManagementPolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +SharedFolderChangeMembersManagementPolicyDetails_validator = bv.Struct(SharedFolderChangeMembersManagementPolicyDetails) class SharedFolderChangeMembersManagementPolicyType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -84567,15 +81688,9 @@ def __init__(self, description=None): 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 - ) - - -SharedFolderChangeMembersManagementPolicyType_validator = bv.Struct( - SharedFolderChangeMembersManagementPolicyType -) + super(SharedFolderChangeMembersManagementPolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) +SharedFolderChangeMembersManagementPolicyType_validator = bv.Struct(SharedFolderChangeMembersManagementPolicyType) class SharedFolderChangeMembersPolicyDetails(bb.Struct): """ @@ -84589,13 +81704,15 @@ class SharedFolderChangeMembersPolicyDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -84610,22 +81727,20 @@ def __init__(self, new_value=None, previous_value=None): previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedFolderChangeMembersPolicyDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedFolderChangeMembersPolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SharedFolderChangeMembersPolicyDetails_validator = bv.Struct(SharedFolderChangeMembersPolicyDetails) - class SharedFolderChangeMembersPolicyType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -84634,14 +81749,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedFolderChangeMembersPolicyType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedFolderChangeMembersPolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) SharedFolderChangeMembersPolicyType_validator = bv.Struct(SharedFolderChangeMembersPolicyType) - class SharedFolderCreateDetails(bb.Struct): """ Created shared folder. @@ -84651,12 +81762,13 @@ class SharedFolderCreateDetails(bb.Struct): """ __slots__ = [ - "_target_ns_id_value", + '_target_ns_id_value', ] _has_required_fields = False - def __init__(self, target_ns_id=None): + def __init__(self, + target_ns_id=None): self._target_ns_id_value = bb.NOT_SET if target_ns_id is not None: self.target_ns_id = target_ns_id @@ -84665,22 +81777,20 @@ def __init__(self, target_ns_id=None): target_ns_id = bb.Attribute("target_ns_id", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedFolderCreateDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedFolderCreateDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SharedFolderCreateDetails_validator = bv.Struct(SharedFolderCreateDetails) - class SharedFolderCreateType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -84689,20 +81799,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedFolderCreateType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedFolderCreateType, self)._process_custom_annotations(annotation_type, field_path, processor) SharedFolderCreateType_validator = bv.Struct(SharedFolderCreateType) - class SharedFolderDeclineInvitationDetails(bb.Struct): """ Declined team member's invite to shared folder. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -84710,22 +81817,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedFolderDeclineInvitationDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedFolderDeclineInvitationDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SharedFolderDeclineInvitationDetails_validator = bv.Struct(SharedFolderDeclineInvitationDetails) - class SharedFolderDeclineInvitationType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -84734,14 +81839,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedFolderDeclineInvitationType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedFolderDeclineInvitationType, self)._process_custom_annotations(annotation_type, field_path, processor) SharedFolderDeclineInvitationType_validator = bv.Struct(SharedFolderDeclineInvitationType) - class SharedFolderMembersInheritancePolicy(bb.Union): """ Specifies if a shared folder inherits its members from the parent folder. @@ -84751,7 +81852,7 @@ class SharedFolderMembersInheritancePolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition dont_inherit_members = None # Attribute is overwritten below the class definition @@ -84765,7 +81866,7 @@ def is_dont_inherit_members(self): :rtype: bool """ - return self._tag == "dont_inherit_members" + return self._tag == 'dont_inherit_members' def is_inherit_members(self): """ @@ -84773,7 +81874,7 @@ def is_inherit_members(self): :rtype: bool """ - return self._tag == "inherit_members" + return self._tag == 'inherit_members' def is_other(self): """ @@ -84781,23 +81882,20 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedFolderMembersInheritancePolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedFolderMembersInheritancePolicy, self)._process_custom_annotations(annotation_type, field_path, processor) SharedFolderMembersInheritancePolicy_validator = bv.Union(SharedFolderMembersInheritancePolicy) - class SharedFolderMountDetails(bb.Struct): """ Added shared folder to own Dropbox. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -84805,22 +81903,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedFolderMountDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedFolderMountDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SharedFolderMountDetails_validator = bv.Struct(SharedFolderMountDetails) - class SharedFolderMountType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -84829,14 +81925,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedFolderMountType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedFolderMountType, self)._process_custom_annotations(annotation_type, field_path, processor) SharedFolderMountType_validator = bv.Struct(SharedFolderMountType) - class SharedFolderNestDetails(bb.Struct): """ Changed parent of shared folder. @@ -84852,21 +81944,19 @@ class SharedFolderNestDetails(bb.Struct): """ __slots__ = [ - "_previous_parent_ns_id_value", - "_new_parent_ns_id_value", - "_previous_ns_path_value", - "_new_ns_path_value", + '_previous_parent_ns_id_value', + '_new_parent_ns_id_value', + '_previous_ns_path_value', + '_new_ns_path_value', ] _has_required_fields = False - def __init__( - self, - previous_parent_ns_id=None, - new_parent_ns_id=None, - previous_ns_path=None, - new_ns_path=None, - ): + def __init__(self, + previous_parent_ns_id=None, + new_parent_ns_id=None, + previous_ns_path=None, + new_ns_path=None): self._previous_parent_ns_id_value = bb.NOT_SET self._new_parent_ns_id_value = bb.NOT_SET self._previous_ns_path_value = bb.NOT_SET @@ -84893,22 +81983,20 @@ def __init__( new_ns_path = bb.Attribute("new_ns_path", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedFolderNestDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedFolderNestDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SharedFolderNestDetails_validator = bv.Struct(SharedFolderNestDetails) - class SharedFolderNestType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -84917,14 +82005,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedFolderNestType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedFolderNestType, self)._process_custom_annotations(annotation_type, field_path, processor) SharedFolderNestType_validator = bv.Struct(SharedFolderNestType) - class SharedFolderTransferOwnershipDetails(bb.Struct): """ Transferred ownership of shared folder to another member. @@ -84936,13 +82020,15 @@ class SharedFolderTransferOwnershipDetails(bb.Struct): """ __slots__ = [ - "_previous_owner_email_value", - "_new_owner_email_value", + '_previous_owner_email_value', + '_new_owner_email_value', ] _has_required_fields = True - def __init__(self, new_owner_email=None, previous_owner_email=None): + def __init__(self, + new_owner_email=None, + previous_owner_email=None): self._previous_owner_email_value = bb.NOT_SET self._new_owner_email_value = bb.NOT_SET if previous_owner_email is not None: @@ -84957,22 +82043,20 @@ def __init__(self, new_owner_email=None, previous_owner_email=None): new_owner_email = bb.Attribute("new_owner_email") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedFolderTransferOwnershipDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedFolderTransferOwnershipDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SharedFolderTransferOwnershipDetails_validator = bv.Struct(SharedFolderTransferOwnershipDetails) - class SharedFolderTransferOwnershipType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -84981,20 +82065,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedFolderTransferOwnershipType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedFolderTransferOwnershipType, self)._process_custom_annotations(annotation_type, field_path, processor) SharedFolderTransferOwnershipType_validator = bv.Struct(SharedFolderTransferOwnershipType) - class SharedFolderUnmountDetails(bb.Struct): """ Deleted shared folder from Dropbox. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -85002,22 +82083,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedFolderUnmountDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedFolderUnmountDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SharedFolderUnmountDetails_validator = bv.Struct(SharedFolderUnmountDetails) - class SharedFolderUnmountType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -85026,20 +82105,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedFolderUnmountType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedFolderUnmountType, self)._process_custom_annotations(annotation_type, field_path, processor) SharedFolderUnmountType_validator = bv.Struct(SharedFolderUnmountType) - class SharedFoldersCreateReportDetails(bb.Struct): """ Created shared folders report. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -85047,14 +82123,10 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedFoldersCreateReportDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedFoldersCreateReportDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SharedFoldersCreateReportDetails_validator = bv.Struct(SharedFoldersCreateReportDetails) - class SharedFoldersCreateReportFailedDetails(bb.Struct): """ Couldn't generate shared folders report. @@ -85064,12 +82136,13 @@ class SharedFoldersCreateReportFailedDetails(bb.Struct): """ __slots__ = [ - "_failure_reason_value", + '_failure_reason_value', ] _has_required_fields = True - def __init__(self, failure_reason=None): + def __init__(self, + failure_reason=None): self._failure_reason_value = bb.NOT_SET if failure_reason is not None: self.failure_reason = failure_reason @@ -85078,22 +82151,20 @@ def __init__(self, failure_reason=None): failure_reason = bb.Attribute("failure_reason", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedFoldersCreateReportFailedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedFoldersCreateReportFailedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SharedFoldersCreateReportFailedDetails_validator = bv.Struct(SharedFoldersCreateReportFailedDetails) - class SharedFoldersCreateReportFailedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -85102,22 +82173,20 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedFoldersCreateReportFailedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedFoldersCreateReportFailedType, self)._process_custom_annotations(annotation_type, field_path, processor) SharedFoldersCreateReportFailedType_validator = bv.Struct(SharedFoldersCreateReportFailedType) - class SharedFoldersCreateReportType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -85126,14 +82195,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedFoldersCreateReportType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedFoldersCreateReportType, self)._process_custom_annotations(annotation_type, field_path, processor) SharedFoldersCreateReportType_validator = bv.Struct(SharedFoldersCreateReportType) - class SharedLinkAccessLevel(bb.Union): """ Shared link access level. @@ -85143,7 +82208,7 @@ class SharedLinkAccessLevel(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition none = None # Attribute is overwritten below the class definition @@ -85159,7 +82224,7 @@ def is_none(self): :rtype: bool """ - return self._tag == "none" + return self._tag == 'none' def is_reader(self): """ @@ -85167,7 +82232,7 @@ def is_reader(self): :rtype: bool """ - return self._tag == "reader" + return self._tag == 'reader' def is_writer(self): """ @@ -85175,7 +82240,7 @@ def is_writer(self): :rtype: bool """ - return self._tag == "writer" + return self._tag == 'writer' def is_other(self): """ @@ -85183,17 +82248,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkAccessLevel, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedLinkAccessLevel, self)._process_custom_annotations(annotation_type, field_path, processor) SharedLinkAccessLevel_validator = bv.Union(SharedLinkAccessLevel) - class SharedLinkAddExpiryDetails(bb.Struct): """ Added shared link expiration date. @@ -85205,13 +82266,15 @@ class SharedLinkAddExpiryDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_is_consolidation_action_value", + '_new_value_value', + '_is_consolidation_action_value', ] _has_required_fields = True - def __init__(self, new_value=None, is_consolidation_action=None): + def __init__(self, + new_value=None, + is_consolidation_action=None): self._new_value_value = bb.NOT_SET self._is_consolidation_action_value = bb.NOT_SET if new_value is not None: @@ -85226,22 +82289,20 @@ def __init__(self, new_value=None, is_consolidation_action=None): is_consolidation_action = bb.Attribute("is_consolidation_action", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkAddExpiryDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedLinkAddExpiryDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SharedLinkAddExpiryDetails_validator = bv.Struct(SharedLinkAddExpiryDetails) - class SharedLinkAddExpiryType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -85250,14 +82311,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkAddExpiryType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedLinkAddExpiryType, self)._process_custom_annotations(annotation_type, field_path, processor) SharedLinkAddExpiryType_validator = bv.Struct(SharedLinkAddExpiryType) - class SharedLinkChangeExpiryDetails(bb.Struct): """ Changed shared link expiration date. @@ -85273,14 +82330,17 @@ class SharedLinkChangeExpiryDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", - "_is_consolidation_action_value", + '_new_value_value', + '_previous_value_value', + '_is_consolidation_action_value', ] _has_required_fields = False - def __init__(self, new_value=None, previous_value=None, is_consolidation_action=None): + def __init__(self, + new_value=None, + previous_value=None, + is_consolidation_action=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET self._is_consolidation_action_value = bb.NOT_SET @@ -85301,22 +82361,20 @@ def __init__(self, new_value=None, previous_value=None, is_consolidation_action= is_consolidation_action = bb.Attribute("is_consolidation_action", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkChangeExpiryDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedLinkChangeExpiryDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SharedLinkChangeExpiryDetails_validator = bv.Struct(SharedLinkChangeExpiryDetails) - class SharedLinkChangeExpiryType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -85325,14 +82383,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkChangeExpiryType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedLinkChangeExpiryType, self)._process_custom_annotations(annotation_type, field_path, processor) SharedLinkChangeExpiryType_validator = bv.Struct(SharedLinkChangeExpiryType) - class SharedLinkChangeVisibilityDetails(bb.Struct): """ Changed visibility of shared link. @@ -85347,14 +82401,17 @@ class SharedLinkChangeVisibilityDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", - "_is_consolidation_action_value", + '_new_value_value', + '_previous_value_value', + '_is_consolidation_action_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None, is_consolidation_action=None): + def __init__(self, + new_value=None, + previous_value=None, + is_consolidation_action=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET self._is_consolidation_action_value = bb.NOT_SET @@ -85375,22 +82432,20 @@ def __init__(self, new_value=None, previous_value=None, is_consolidation_action= is_consolidation_action = bb.Attribute("is_consolidation_action", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkChangeVisibilityDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedLinkChangeVisibilityDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SharedLinkChangeVisibilityDetails_validator = bv.Struct(SharedLinkChangeVisibilityDetails) - class SharedLinkChangeVisibilityType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -85399,14 +82454,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkChangeVisibilityType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedLinkChangeVisibilityType, self)._process_custom_annotations(annotation_type, field_path, processor) SharedLinkChangeVisibilityType_validator = bv.Struct(SharedLinkChangeVisibilityType) - class SharedLinkCopyDetails(bb.Struct): """ Added file/folder to Dropbox from shared link. @@ -85416,12 +82467,13 @@ class SharedLinkCopyDetails(bb.Struct): """ __slots__ = [ - "_shared_link_owner_value", + '_shared_link_owner_value', ] _has_required_fields = False - def __init__(self, shared_link_owner=None): + def __init__(self, + shared_link_owner=None): self._shared_link_owner_value = bb.NOT_SET if shared_link_owner is not None: self.shared_link_owner = shared_link_owner @@ -85430,22 +82482,20 @@ def __init__(self, shared_link_owner=None): shared_link_owner = bb.Attribute("shared_link_owner", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkCopyDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedLinkCopyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SharedLinkCopyDetails_validator = bv.Struct(SharedLinkCopyDetails) - class SharedLinkCopyType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -85454,14 +82504,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkCopyType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedLinkCopyType, self)._process_custom_annotations(annotation_type, field_path, processor) SharedLinkCopyType_validator = bv.Struct(SharedLinkCopyType) - class SharedLinkCreateDetails(bb.Struct): """ Created shared link. @@ -85472,38 +82518,35 @@ class SharedLinkCreateDetails(bb.Struct): """ __slots__ = [ - "_shared_link_access_level_value", + '_shared_link_access_level_value', ] _has_required_fields = False - def __init__(self, shared_link_access_level=None): + def __init__(self, + shared_link_access_level=None): self._shared_link_access_level_value = bb.NOT_SET if shared_link_access_level is not None: self.shared_link_access_level = shared_link_access_level # Instance attribute type: SharedLinkAccessLevel (validator is set below) - shared_link_access_level = bb.Attribute( - "shared_link_access_level", nullable=True, user_defined=True - ) + shared_link_access_level = bb.Attribute("shared_link_access_level", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkCreateDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedLinkCreateDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SharedLinkCreateDetails_validator = bv.Struct(SharedLinkCreateDetails) - class SharedLinkCreateType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -85512,14 +82555,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkCreateType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedLinkCreateType, self)._process_custom_annotations(annotation_type, field_path, processor) SharedLinkCreateType_validator = bv.Struct(SharedLinkCreateType) - class SharedLinkDefaultPermissionsPolicy(bb.Union): """ Policy for deciding the default permissions granted through shared links @@ -85529,7 +82568,7 @@ class SharedLinkDefaultPermissionsPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition default = None # Attribute is overwritten below the class definition @@ -85545,7 +82584,7 @@ def is_default(self): :rtype: bool """ - return self._tag == "default" + return self._tag == 'default' def is_edit(self): """ @@ -85553,7 +82592,7 @@ def is_edit(self): :rtype: bool """ - return self._tag == "edit" + return self._tag == 'edit' def is_view(self): """ @@ -85561,7 +82600,7 @@ def is_view(self): :rtype: bool """ - return self._tag == "view" + return self._tag == 'view' def is_other(self): """ @@ -85569,17 +82608,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkDefaultPermissionsPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedLinkDefaultPermissionsPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) SharedLinkDefaultPermissionsPolicy_validator = bv.Union(SharedLinkDefaultPermissionsPolicy) - class SharedLinkDefaultPermissionsPolicyChangedDetails(bb.Struct): """ Changed shared link default permissions policy for team. @@ -85591,13 +82626,15 @@ class SharedLinkDefaultPermissionsPolicyChangedDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -85612,24 +82649,20 @@ def __init__(self, new_value=None, previous_value=None): previous_value = bb.Attribute("previous_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkDefaultPermissionsPolicyChangedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - - -SharedLinkDefaultPermissionsPolicyChangedDetails_validator = bv.Struct( - SharedLinkDefaultPermissionsPolicyChangedDetails -) + super(SharedLinkDefaultPermissionsPolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +SharedLinkDefaultPermissionsPolicyChangedDetails_validator = bv.Struct(SharedLinkDefaultPermissionsPolicyChangedDetails) class SharedLinkDefaultPermissionsPolicyChangedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -85638,15 +82671,9 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkDefaultPermissionsPolicyChangedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - - -SharedLinkDefaultPermissionsPolicyChangedType_validator = bv.Struct( - SharedLinkDefaultPermissionsPolicyChangedType -) + super(SharedLinkDefaultPermissionsPolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) +SharedLinkDefaultPermissionsPolicyChangedType_validator = bv.Struct(SharedLinkDefaultPermissionsPolicyChangedType) class SharedLinkDisableDetails(bb.Struct): """ @@ -85657,12 +82684,13 @@ class SharedLinkDisableDetails(bb.Struct): """ __slots__ = [ - "_shared_link_owner_value", + '_shared_link_owner_value', ] _has_required_fields = False - def __init__(self, shared_link_owner=None): + def __init__(self, + shared_link_owner=None): self._shared_link_owner_value = bb.NOT_SET if shared_link_owner is not None: self.shared_link_owner = shared_link_owner @@ -85671,22 +82699,20 @@ def __init__(self, shared_link_owner=None): shared_link_owner = bb.Attribute("shared_link_owner", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkDisableDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedLinkDisableDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SharedLinkDisableDetails_validator = bv.Struct(SharedLinkDisableDetails) - class SharedLinkDisableType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -85695,14 +82721,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkDisableType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedLinkDisableType, self)._process_custom_annotations(annotation_type, field_path, processor) SharedLinkDisableType_validator = bv.Struct(SharedLinkDisableType) - class SharedLinkDownloadDetails(bb.Struct): """ Downloaded file/folder from shared link. @@ -85712,12 +82734,13 @@ class SharedLinkDownloadDetails(bb.Struct): """ __slots__ = [ - "_shared_link_owner_value", + '_shared_link_owner_value', ] _has_required_fields = False - def __init__(self, shared_link_owner=None): + def __init__(self, + shared_link_owner=None): self._shared_link_owner_value = bb.NOT_SET if shared_link_owner is not None: self.shared_link_owner = shared_link_owner @@ -85726,22 +82749,20 @@ def __init__(self, shared_link_owner=None): shared_link_owner = bb.Attribute("shared_link_owner", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkDownloadDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedLinkDownloadDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SharedLinkDownloadDetails_validator = bv.Struct(SharedLinkDownloadDetails) - class SharedLinkDownloadType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -85750,14 +82771,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkDownloadType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedLinkDownloadType, self)._process_custom_annotations(annotation_type, field_path, processor) SharedLinkDownloadType_validator = bv.Struct(SharedLinkDownloadType) - class SharedLinkRemoveExpiryDetails(bb.Struct): """ Removed shared link expiration date. @@ -85768,12 +82785,13 @@ class SharedLinkRemoveExpiryDetails(bb.Struct): """ __slots__ = [ - "_previous_value_value", + '_previous_value_value', ] _has_required_fields = False - def __init__(self, previous_value=None): + def __init__(self, + previous_value=None): self._previous_value_value = bb.NOT_SET if previous_value is not None: self.previous_value = previous_value @@ -85782,22 +82800,20 @@ def __init__(self, previous_value=None): previous_value = bb.Attribute("previous_value", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkRemoveExpiryDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedLinkRemoveExpiryDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SharedLinkRemoveExpiryDetails_validator = bv.Struct(SharedLinkRemoveExpiryDetails) - class SharedLinkRemoveExpiryType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -85806,20 +82822,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkRemoveExpiryType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedLinkRemoveExpiryType, self)._process_custom_annotations(annotation_type, field_path, processor) SharedLinkRemoveExpiryType_validator = bv.Struct(SharedLinkRemoveExpiryType) - class SharedLinkRemoveVisitorDetails(bb.Struct): """ Removed link visitor. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -85827,22 +82840,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkRemoveVisitorDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedLinkRemoveVisitorDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SharedLinkRemoveVisitorDetails_validator = bv.Struct(SharedLinkRemoveVisitorDetails) - class SharedLinkRemoveVisitorType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -85851,14 +82862,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkRemoveVisitorType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedLinkRemoveVisitorType, self)._process_custom_annotations(annotation_type, field_path, processor) SharedLinkRemoveVisitorType_validator = bv.Struct(SharedLinkRemoveVisitorType) - class SharedLinkSettingsAddExpirationDetails(bb.Struct): """ Added an expiration date to the shared link. @@ -85873,14 +82880,17 @@ class SharedLinkSettingsAddExpirationDetails(bb.Struct): """ __slots__ = [ - "_shared_content_access_level_value", - "_shared_content_link_value", - "_new_value_value", + '_shared_content_access_level_value', + '_shared_content_link_value', + '_new_value_value', ] _has_required_fields = True - def __init__(self, shared_content_access_level=None, shared_content_link=None, new_value=None): + def __init__(self, + shared_content_access_level=None, + shared_content_link=None, + new_value=None): self._shared_content_access_level_value = bb.NOT_SET self._shared_content_link_value = bb.NOT_SET self._new_value_value = bb.NOT_SET @@ -85901,22 +82911,20 @@ def __init__(self, shared_content_access_level=None, shared_content_link=None, n new_value = bb.Attribute("new_value", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkSettingsAddExpirationDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedLinkSettingsAddExpirationDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SharedLinkSettingsAddExpirationDetails_validator = bv.Struct(SharedLinkSettingsAddExpirationDetails) - class SharedLinkSettingsAddExpirationType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -85925,14 +82933,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkSettingsAddExpirationType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedLinkSettingsAddExpirationType, self)._process_custom_annotations(annotation_type, field_path, processor) SharedLinkSettingsAddExpirationType_validator = bv.Struct(SharedLinkSettingsAddExpirationType) - class SharedLinkSettingsAddPasswordDetails(bb.Struct): """ Added a password to the shared link. @@ -85944,13 +82948,15 @@ class SharedLinkSettingsAddPasswordDetails(bb.Struct): """ __slots__ = [ - "_shared_content_access_level_value", - "_shared_content_link_value", + '_shared_content_access_level_value', + '_shared_content_link_value', ] _has_required_fields = True - def __init__(self, shared_content_access_level=None, shared_content_link=None): + def __init__(self, + shared_content_access_level=None, + shared_content_link=None): self._shared_content_access_level_value = bb.NOT_SET self._shared_content_link_value = bb.NOT_SET if shared_content_access_level is not None: @@ -85965,22 +82971,20 @@ def __init__(self, shared_content_access_level=None, shared_content_link=None): shared_content_link = bb.Attribute("shared_content_link", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkSettingsAddPasswordDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedLinkSettingsAddPasswordDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SharedLinkSettingsAddPasswordDetails_validator = bv.Struct(SharedLinkSettingsAddPasswordDetails) - class SharedLinkSettingsAddPasswordType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -85989,14 +82993,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkSettingsAddPasswordType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedLinkSettingsAddPasswordType, self)._process_custom_annotations(annotation_type, field_path, processor) SharedLinkSettingsAddPasswordType_validator = bv.Struct(SharedLinkSettingsAddPasswordType) - class SharedLinkSettingsAllowDownloadDisabledDetails(bb.Struct): """ Disabled downloads. @@ -86008,13 +83008,15 @@ class SharedLinkSettingsAllowDownloadDisabledDetails(bb.Struct): """ __slots__ = [ - "_shared_content_access_level_value", - "_shared_content_link_value", + '_shared_content_access_level_value', + '_shared_content_link_value', ] _has_required_fields = True - def __init__(self, shared_content_access_level=None, shared_content_link=None): + def __init__(self, + shared_content_access_level=None, + shared_content_link=None): self._shared_content_access_level_value = bb.NOT_SET self._shared_content_link_value = bb.NOT_SET if shared_content_access_level is not None: @@ -86029,24 +83031,20 @@ def __init__(self, shared_content_access_level=None, shared_content_link=None): 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 - ) - - -SharedLinkSettingsAllowDownloadDisabledDetails_validator = bv.Struct( - SharedLinkSettingsAllowDownloadDisabledDetails -) + super(SharedLinkSettingsAllowDownloadDisabledDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +SharedLinkSettingsAllowDownloadDisabledDetails_validator = bv.Struct(SharedLinkSettingsAllowDownloadDisabledDetails) class SharedLinkSettingsAllowDownloadDisabledType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -86055,15 +83053,9 @@ def __init__(self, description=None): 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 - ) - - -SharedLinkSettingsAllowDownloadDisabledType_validator = bv.Struct( - SharedLinkSettingsAllowDownloadDisabledType -) + super(SharedLinkSettingsAllowDownloadDisabledType, self)._process_custom_annotations(annotation_type, field_path, processor) +SharedLinkSettingsAllowDownloadDisabledType_validator = bv.Struct(SharedLinkSettingsAllowDownloadDisabledType) class SharedLinkSettingsAllowDownloadEnabledDetails(bb.Struct): """ @@ -86076,13 +83068,15 @@ class SharedLinkSettingsAllowDownloadEnabledDetails(bb.Struct): """ __slots__ = [ - "_shared_content_access_level_value", - "_shared_content_link_value", + '_shared_content_access_level_value', + '_shared_content_link_value', ] _has_required_fields = True - def __init__(self, shared_content_access_level=None, shared_content_link=None): + def __init__(self, + shared_content_access_level=None, + shared_content_link=None): self._shared_content_access_level_value = bb.NOT_SET self._shared_content_link_value = bb.NOT_SET if shared_content_access_level is not None: @@ -86097,24 +83091,20 @@ def __init__(self, shared_content_access_level=None, shared_content_link=None): 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 - ) - - -SharedLinkSettingsAllowDownloadEnabledDetails_validator = bv.Struct( - SharedLinkSettingsAllowDownloadEnabledDetails -) + super(SharedLinkSettingsAllowDownloadEnabledDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +SharedLinkSettingsAllowDownloadEnabledDetails_validator = bv.Struct(SharedLinkSettingsAllowDownloadEnabledDetails) class SharedLinkSettingsAllowDownloadEnabledType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -86123,15 +83113,9 @@ def __init__(self, description=None): 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 - ) - - -SharedLinkSettingsAllowDownloadEnabledType_validator = bv.Struct( - SharedLinkSettingsAllowDownloadEnabledType -) + super(SharedLinkSettingsAllowDownloadEnabledType, self)._process_custom_annotations(annotation_type, field_path, processor) +SharedLinkSettingsAllowDownloadEnabledType_validator = bv.Struct(SharedLinkSettingsAllowDownloadEnabledType) class SharedLinkSettingsChangeAudienceDetails(bb.Struct): """ @@ -86148,21 +83132,19 @@ class SharedLinkSettingsChangeAudienceDetails(bb.Struct): """ __slots__ = [ - "_shared_content_access_level_value", - "_shared_content_link_value", - "_new_value_value", - "_previous_value_value", + '_shared_content_access_level_value', + '_shared_content_link_value', + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__( - self, - shared_content_access_level=None, - new_value=None, - shared_content_link=None, - previous_value=None, - ): + def __init__(self, + shared_content_access_level=None, + new_value=None, + shared_content_link=None, + previous_value=None): self._shared_content_access_level_value = bb.NOT_SET self._shared_content_link_value = bb.NOT_SET self._new_value_value = bb.NOT_SET @@ -86189,24 +83171,20 @@ def __init__( 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 - ) - - -SharedLinkSettingsChangeAudienceDetails_validator = bv.Struct( - SharedLinkSettingsChangeAudienceDetails -) + super(SharedLinkSettingsChangeAudienceDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +SharedLinkSettingsChangeAudienceDetails_validator = bv.Struct(SharedLinkSettingsChangeAudienceDetails) class SharedLinkSettingsChangeAudienceType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -86215,14 +83193,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkSettingsChangeAudienceType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedLinkSettingsChangeAudienceType, self)._process_custom_annotations(annotation_type, field_path, processor) SharedLinkSettingsChangeAudienceType_validator = bv.Struct(SharedLinkSettingsChangeAudienceType) - class SharedLinkSettingsChangeExpirationDetails(bb.Struct): """ Changed the expiration date of the shared link. @@ -86240,21 +83214,19 @@ class SharedLinkSettingsChangeExpirationDetails(bb.Struct): """ __slots__ = [ - "_shared_content_access_level_value", - "_shared_content_link_value", - "_new_value_value", - "_previous_value_value", + '_shared_content_access_level_value', + '_shared_content_link_value', + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__( - self, - shared_content_access_level=None, - shared_content_link=None, - new_value=None, - previous_value=None, - ): + def __init__(self, + shared_content_access_level=None, + shared_content_link=None, + new_value=None, + previous_value=None): self._shared_content_access_level_value = bb.NOT_SET self._shared_content_link_value = bb.NOT_SET self._new_value_value = bb.NOT_SET @@ -86281,24 +83253,20 @@ def __init__( 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 - ) - - -SharedLinkSettingsChangeExpirationDetails_validator = bv.Struct( - SharedLinkSettingsChangeExpirationDetails -) + super(SharedLinkSettingsChangeExpirationDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +SharedLinkSettingsChangeExpirationDetails_validator = bv.Struct(SharedLinkSettingsChangeExpirationDetails) class SharedLinkSettingsChangeExpirationType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -86307,14 +83275,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkSettingsChangeExpirationType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedLinkSettingsChangeExpirationType, self)._process_custom_annotations(annotation_type, field_path, processor) SharedLinkSettingsChangeExpirationType_validator = bv.Struct(SharedLinkSettingsChangeExpirationType) - class SharedLinkSettingsChangePasswordDetails(bb.Struct): """ Changed the password of the shared link. @@ -86326,13 +83290,15 @@ class SharedLinkSettingsChangePasswordDetails(bb.Struct): """ __slots__ = [ - "_shared_content_access_level_value", - "_shared_content_link_value", + '_shared_content_access_level_value', + '_shared_content_link_value', ] _has_required_fields = True - def __init__(self, shared_content_access_level=None, shared_content_link=None): + def __init__(self, + shared_content_access_level=None, + shared_content_link=None): self._shared_content_access_level_value = bb.NOT_SET self._shared_content_link_value = bb.NOT_SET if shared_content_access_level is not None: @@ -86347,24 +83313,20 @@ def __init__(self, shared_content_access_level=None, shared_content_link=None): 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 - ) - - -SharedLinkSettingsChangePasswordDetails_validator = bv.Struct( - SharedLinkSettingsChangePasswordDetails -) + super(SharedLinkSettingsChangePasswordDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +SharedLinkSettingsChangePasswordDetails_validator = bv.Struct(SharedLinkSettingsChangePasswordDetails) class SharedLinkSettingsChangePasswordType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -86373,14 +83335,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkSettingsChangePasswordType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedLinkSettingsChangePasswordType, self)._process_custom_annotations(annotation_type, field_path, processor) SharedLinkSettingsChangePasswordType_validator = bv.Struct(SharedLinkSettingsChangePasswordType) - class SharedLinkSettingsRemoveExpirationDetails(bb.Struct): """ Removed the expiration date from the shared link. @@ -86395,19 +83353,17 @@ class SharedLinkSettingsRemoveExpirationDetails(bb.Struct): """ __slots__ = [ - "_shared_content_access_level_value", - "_shared_content_link_value", - "_previous_value_value", + '_shared_content_access_level_value', + '_shared_content_link_value', + '_previous_value_value', ] _has_required_fields = True - def __init__( - self, - shared_content_access_level=None, - shared_content_link=None, - previous_value=None, - ): + def __init__(self, + shared_content_access_level=None, + shared_content_link=None, + previous_value=None): self._shared_content_access_level_value = bb.NOT_SET self._shared_content_link_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET @@ -86428,24 +83384,20 @@ def __init__( 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 - ) - - -SharedLinkSettingsRemoveExpirationDetails_validator = bv.Struct( - SharedLinkSettingsRemoveExpirationDetails -) + super(SharedLinkSettingsRemoveExpirationDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +SharedLinkSettingsRemoveExpirationDetails_validator = bv.Struct(SharedLinkSettingsRemoveExpirationDetails) class SharedLinkSettingsRemoveExpirationType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -86454,14 +83406,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkSettingsRemoveExpirationType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedLinkSettingsRemoveExpirationType, self)._process_custom_annotations(annotation_type, field_path, processor) SharedLinkSettingsRemoveExpirationType_validator = bv.Struct(SharedLinkSettingsRemoveExpirationType) - class SharedLinkSettingsRemovePasswordDetails(bb.Struct): """ Removed the password from the shared link. @@ -86473,13 +83421,15 @@ class SharedLinkSettingsRemovePasswordDetails(bb.Struct): """ __slots__ = [ - "_shared_content_access_level_value", - "_shared_content_link_value", + '_shared_content_access_level_value', + '_shared_content_link_value', ] _has_required_fields = True - def __init__(self, shared_content_access_level=None, shared_content_link=None): + def __init__(self, + shared_content_access_level=None, + shared_content_link=None): self._shared_content_access_level_value = bb.NOT_SET self._shared_content_link_value = bb.NOT_SET if shared_content_access_level is not None: @@ -86494,24 +83444,20 @@ def __init__(self, shared_content_access_level=None, shared_content_link=None): 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 - ) - - -SharedLinkSettingsRemovePasswordDetails_validator = bv.Struct( - SharedLinkSettingsRemovePasswordDetails -) + super(SharedLinkSettingsRemovePasswordDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +SharedLinkSettingsRemovePasswordDetails_validator = bv.Struct(SharedLinkSettingsRemovePasswordDetails) class SharedLinkSettingsRemovePasswordType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -86520,14 +83466,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkSettingsRemovePasswordType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedLinkSettingsRemovePasswordType, self)._process_custom_annotations(annotation_type, field_path, processor) SharedLinkSettingsRemovePasswordType_validator = bv.Struct(SharedLinkSettingsRemovePasswordType) - class SharedLinkShareDetails(bb.Struct): """ Added members as audience of shared link. @@ -86539,13 +83481,15 @@ class SharedLinkShareDetails(bb.Struct): """ __slots__ = [ - "_shared_link_owner_value", - "_external_users_value", + '_shared_link_owner_value', + '_external_users_value', ] _has_required_fields = False - def __init__(self, shared_link_owner=None, external_users=None): + def __init__(self, + shared_link_owner=None, + external_users=None): self._shared_link_owner_value = bb.NOT_SET self._external_users_value = bb.NOT_SET if shared_link_owner is not None: @@ -86560,22 +83504,20 @@ def __init__(self, shared_link_owner=None, external_users=None): external_users = bb.Attribute("external_users", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkShareDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedLinkShareDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SharedLinkShareDetails_validator = bv.Struct(SharedLinkShareDetails) - class SharedLinkShareType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -86584,14 +83526,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkShareType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedLinkShareType, self)._process_custom_annotations(annotation_type, field_path, processor) SharedLinkShareType_validator = bv.Struct(SharedLinkShareType) - class SharedLinkViewDetails(bb.Struct): """ Opened shared link. @@ -86601,12 +83539,13 @@ class SharedLinkViewDetails(bb.Struct): """ __slots__ = [ - "_shared_link_owner_value", + '_shared_link_owner_value', ] _has_required_fields = False - def __init__(self, shared_link_owner=None): + def __init__(self, + shared_link_owner=None): self._shared_link_owner_value = bb.NOT_SET if shared_link_owner is not None: self.shared_link_owner = shared_link_owner @@ -86615,22 +83554,20 @@ def __init__(self, shared_link_owner=None): shared_link_owner = bb.Attribute("shared_link_owner", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkViewDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedLinkViewDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SharedLinkViewDetails_validator = bv.Struct(SharedLinkViewDetails) - class SharedLinkViewType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -86639,14 +83576,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkViewType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedLinkViewType, self)._process_custom_annotations(annotation_type, field_path, processor) SharedLinkViewType_validator = bv.Struct(SharedLinkViewType) - class SharedLinkVisibility(bb.Union): """ Defines who has access to a shared link. @@ -86656,7 +83589,7 @@ class SharedLinkVisibility(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition no_one = None # Attribute is overwritten below the class definition @@ -86674,7 +83607,7 @@ def is_no_one(self): :rtype: bool """ - return self._tag == "no_one" + return self._tag == 'no_one' def is_password(self): """ @@ -86682,7 +83615,7 @@ def is_password(self): :rtype: bool """ - return self._tag == "password" + return self._tag == 'password' def is_public(self): """ @@ -86690,7 +83623,7 @@ def is_public(self): :rtype: bool """ - return self._tag == "public" + return self._tag == 'public' def is_team_only(self): """ @@ -86698,7 +83631,7 @@ def is_team_only(self): :rtype: bool """ - return self._tag == "team_only" + return self._tag == 'team_only' def is_other(self): """ @@ -86706,23 +83639,20 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkVisibility, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedLinkVisibility, self)._process_custom_annotations(annotation_type, field_path, processor) SharedLinkVisibility_validator = bv.Union(SharedLinkVisibility) - class SharedNoteOpenedDetails(bb.Struct): """ Opened shared Paper doc. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -86730,22 +83660,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedNoteOpenedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedNoteOpenedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SharedNoteOpenedDetails_validator = bv.Struct(SharedNoteOpenedDetails) - class SharedNoteOpenedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -86754,14 +83682,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedNoteOpenedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedNoteOpenedType, self)._process_custom_annotations(annotation_type, field_path, processor) SharedNoteOpenedType_validator = bv.Struct(SharedNoteOpenedType) - class SharingChangeFolderJoinPolicyDetails(bb.Struct): """ Changed whether team members can join shared folders owned outside team. @@ -86774,13 +83698,15 @@ class SharingChangeFolderJoinPolicyDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -86795,22 +83721,20 @@ def __init__(self, new_value=None, previous_value=None): previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharingChangeFolderJoinPolicyDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharingChangeFolderJoinPolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SharingChangeFolderJoinPolicyDetails_validator = bv.Struct(SharingChangeFolderJoinPolicyDetails) - class SharingChangeFolderJoinPolicyType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -86819,14 +83743,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharingChangeFolderJoinPolicyType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharingChangeFolderJoinPolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) SharingChangeFolderJoinPolicyType_validator = bv.Struct(SharingChangeFolderJoinPolicyType) - class SharingChangeLinkAllowChangeExpirationPolicyDetails(bb.Struct): """ Changed the allow remove or change expiration policy for the links shared @@ -86839,13 +83759,15 @@ class SharingChangeLinkAllowChangeExpirationPolicyDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -86860,24 +83782,20 @@ def __init__(self, new_value=None, previous_value=None): 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) - - -SharingChangeLinkAllowChangeExpirationPolicyDetails_validator = bv.Struct( - SharingChangeLinkAllowChangeExpirationPolicyDetails -) + super(SharingChangeLinkAllowChangeExpirationPolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +SharingChangeLinkAllowChangeExpirationPolicyDetails_validator = bv.Struct(SharingChangeLinkAllowChangeExpirationPolicyDetails) class SharingChangeLinkAllowChangeExpirationPolicyType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -86886,15 +83804,9 @@ def __init__(self, description=None): 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 - ) - - -SharingChangeLinkAllowChangeExpirationPolicyType_validator = bv.Struct( - SharingChangeLinkAllowChangeExpirationPolicyType -) + super(SharingChangeLinkAllowChangeExpirationPolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) +SharingChangeLinkAllowChangeExpirationPolicyType_validator = bv.Struct(SharingChangeLinkAllowChangeExpirationPolicyType) class SharingChangeLinkDefaultExpirationPolicyDetails(bb.Struct): """ @@ -86907,13 +83819,15 @@ class SharingChangeLinkDefaultExpirationPolicyDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -86928,24 +83842,20 @@ def __init__(self, new_value=None, previous_value=None): 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 - ) - - -SharingChangeLinkDefaultExpirationPolicyDetails_validator = bv.Struct( - SharingChangeLinkDefaultExpirationPolicyDetails -) + super(SharingChangeLinkDefaultExpirationPolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +SharingChangeLinkDefaultExpirationPolicyDetails_validator = bv.Struct(SharingChangeLinkDefaultExpirationPolicyDetails) class SharingChangeLinkDefaultExpirationPolicyType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -86954,15 +83864,9 @@ def __init__(self, description=None): 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 - ) - - -SharingChangeLinkDefaultExpirationPolicyType_validator = bv.Struct( - SharingChangeLinkDefaultExpirationPolicyType -) + super(SharingChangeLinkDefaultExpirationPolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) +SharingChangeLinkDefaultExpirationPolicyType_validator = bv.Struct(SharingChangeLinkDefaultExpirationPolicyType) class SharingChangeLinkEnforcePasswordPolicyDetails(bb.Struct): """ @@ -86975,13 +83879,15 @@ class SharingChangeLinkEnforcePasswordPolicyDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -86996,24 +83902,20 @@ def __init__(self, new_value=None, previous_value=None): 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 - ) - - -SharingChangeLinkEnforcePasswordPolicyDetails_validator = bv.Struct( - SharingChangeLinkEnforcePasswordPolicyDetails -) + super(SharingChangeLinkEnforcePasswordPolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +SharingChangeLinkEnforcePasswordPolicyDetails_validator = bv.Struct(SharingChangeLinkEnforcePasswordPolicyDetails) class SharingChangeLinkEnforcePasswordPolicyType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -87022,15 +83924,9 @@ def __init__(self, description=None): 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 - ) - - -SharingChangeLinkEnforcePasswordPolicyType_validator = bv.Struct( - SharingChangeLinkEnforcePasswordPolicyType -) + super(SharingChangeLinkEnforcePasswordPolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) +SharingChangeLinkEnforcePasswordPolicyType_validator = bv.Struct(SharingChangeLinkEnforcePasswordPolicyType) class SharingChangeLinkPolicyDetails(bb.Struct): """ @@ -87045,13 +83941,15 @@ class SharingChangeLinkPolicyDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -87066,22 +83964,20 @@ def __init__(self, new_value=None, previous_value=None): previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharingChangeLinkPolicyDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharingChangeLinkPolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SharingChangeLinkPolicyDetails_validator = bv.Struct(SharingChangeLinkPolicyDetails) - class SharingChangeLinkPolicyType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -87090,14 +83986,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharingChangeLinkPolicyType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharingChangeLinkPolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) SharingChangeLinkPolicyType_validator = bv.Struct(SharingChangeLinkPolicyType) - class SharingChangeMemberPolicyDetails(bb.Struct): """ Changed whether members can share files/folders outside team. @@ -87110,13 +84002,15 @@ class SharingChangeMemberPolicyDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -87131,22 +84025,20 @@ def __init__(self, new_value=None, previous_value=None): previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharingChangeMemberPolicyDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharingChangeMemberPolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SharingChangeMemberPolicyDetails_validator = bv.Struct(SharingChangeMemberPolicyDetails) - class SharingChangeMemberPolicyType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -87155,14 +84047,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharingChangeMemberPolicyType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharingChangeMemberPolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) SharingChangeMemberPolicyType_validator = bv.Struct(SharingChangeMemberPolicyType) - class SharingFolderJoinPolicy(bb.Union): """ Policy for controlling if team members can join shared folders owned by non @@ -87173,7 +84061,7 @@ class SharingFolderJoinPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition from_anyone = None # Attribute is overwritten below the class definition @@ -87187,7 +84075,7 @@ def is_from_anyone(self): :rtype: bool """ - return self._tag == "from_anyone" + return self._tag == 'from_anyone' def is_from_team_only(self): """ @@ -87195,7 +84083,7 @@ def is_from_team_only(self): :rtype: bool """ - return self._tag == "from_team_only" + return self._tag == 'from_team_only' def is_other(self): """ @@ -87203,17 +84091,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharingFolderJoinPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharingFolderJoinPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) SharingFolderJoinPolicy_validator = bv.Union(SharingFolderJoinPolicy) - class SharingLinkPolicy(bb.Union): """ Policy for controlling if team members can share links externally @@ -87223,7 +84107,7 @@ class SharingLinkPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition default_no_one = None # Attribute is overwritten below the class definition @@ -87241,7 +84125,7 @@ def is_default_no_one(self): :rtype: bool """ - return self._tag == "default_no_one" + return self._tag == 'default_no_one' def is_default_private(self): """ @@ -87249,7 +84133,7 @@ def is_default_private(self): :rtype: bool """ - return self._tag == "default_private" + return self._tag == 'default_private' def is_default_public(self): """ @@ -87257,7 +84141,7 @@ def is_default_public(self): :rtype: bool """ - return self._tag == "default_public" + return self._tag == 'default_public' def is_only_private(self): """ @@ -87265,7 +84149,7 @@ def is_only_private(self): :rtype: bool """ - return self._tag == "only_private" + return self._tag == 'only_private' def is_other(self): """ @@ -87273,17 +84157,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharingLinkPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharingLinkPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) SharingLinkPolicy_validator = bv.Union(SharingLinkPolicy) - class SharingMemberPolicy(bb.Union): """ External sharing policy @@ -87293,7 +84173,7 @@ class SharingMemberPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition allow = None # Attribute is overwritten below the class definition @@ -87309,7 +84189,7 @@ def is_allow(self): :rtype: bool """ - return self._tag == "allow" + return self._tag == 'allow' def is_forbid(self): """ @@ -87317,7 +84197,7 @@ def is_forbid(self): :rtype: bool """ - return self._tag == "forbid" + return self._tag == 'forbid' def is_forbid_with_exclusions(self): """ @@ -87325,7 +84205,7 @@ def is_forbid_with_exclusions(self): :rtype: bool """ - return self._tag == "forbid_with_exclusions" + return self._tag == 'forbid_with_exclusions' def is_other(self): """ @@ -87333,17 +84213,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharingMemberPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharingMemberPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) SharingMemberPolicy_validator = bv.Union(SharingMemberPolicy) - class ShmodelDisableDownloadsDetails(bb.Struct): """ Disabled downloads for link. @@ -87353,12 +84229,13 @@ class ShmodelDisableDownloadsDetails(bb.Struct): """ __slots__ = [ - "_shared_link_owner_value", + '_shared_link_owner_value', ] _has_required_fields = False - def __init__(self, shared_link_owner=None): + def __init__(self, + shared_link_owner=None): self._shared_link_owner_value = bb.NOT_SET if shared_link_owner is not None: self.shared_link_owner = shared_link_owner @@ -87367,22 +84244,20 @@ def __init__(self, shared_link_owner=None): shared_link_owner = bb.Attribute("shared_link_owner", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShmodelDisableDownloadsDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ShmodelDisableDownloadsDetails, self)._process_custom_annotations(annotation_type, field_path, processor) ShmodelDisableDownloadsDetails_validator = bv.Struct(ShmodelDisableDownloadsDetails) - class ShmodelDisableDownloadsType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -87391,14 +84266,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShmodelDisableDownloadsType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ShmodelDisableDownloadsType, self)._process_custom_annotations(annotation_type, field_path, processor) ShmodelDisableDownloadsType_validator = bv.Struct(ShmodelDisableDownloadsType) - class ShmodelEnableDownloadsDetails(bb.Struct): """ Enabled downloads for link. @@ -87408,12 +84279,13 @@ class ShmodelEnableDownloadsDetails(bb.Struct): """ __slots__ = [ - "_shared_link_owner_value", + '_shared_link_owner_value', ] _has_required_fields = False - def __init__(self, shared_link_owner=None): + def __init__(self, + shared_link_owner=None): self._shared_link_owner_value = bb.NOT_SET if shared_link_owner is not None: self.shared_link_owner = shared_link_owner @@ -87422,22 +84294,20 @@ def __init__(self, shared_link_owner=None): shared_link_owner = bb.Attribute("shared_link_owner", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShmodelEnableDownloadsDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ShmodelEnableDownloadsDetails, self)._process_custom_annotations(annotation_type, field_path, processor) ShmodelEnableDownloadsDetails_validator = bv.Struct(ShmodelEnableDownloadsDetails) - class ShmodelEnableDownloadsType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -87446,20 +84316,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShmodelEnableDownloadsType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ShmodelEnableDownloadsType, self)._process_custom_annotations(annotation_type, field_path, processor) ShmodelEnableDownloadsType_validator = bv.Struct(ShmodelEnableDownloadsType) - class ShmodelGroupShareDetails(bb.Struct): """ Shared link with group. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -87467,22 +84334,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShmodelGroupShareDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ShmodelGroupShareDetails, self)._process_custom_annotations(annotation_type, field_path, processor) ShmodelGroupShareDetails_validator = bv.Struct(ShmodelGroupShareDetails) - class ShmodelGroupShareType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -87491,14 +84356,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShmodelGroupShareType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ShmodelGroupShareType, self)._process_custom_annotations(annotation_type, field_path, processor) ShmodelGroupShareType_validator = bv.Struct(ShmodelGroupShareType) - class ShowcaseAccessGrantedDetails(bb.Struct): """ Granted access to showcase. @@ -87508,12 +84369,13 @@ class ShowcaseAccessGrantedDetails(bb.Struct): """ __slots__ = [ - "_event_uuid_value", + '_event_uuid_value', ] _has_required_fields = True - def __init__(self, event_uuid=None): + def __init__(self, + event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -87522,22 +84384,20 @@ def __init__(self, event_uuid=None): event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseAccessGrantedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ShowcaseAccessGrantedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) ShowcaseAccessGrantedDetails_validator = bv.Struct(ShowcaseAccessGrantedDetails) - class ShowcaseAccessGrantedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -87546,14 +84406,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseAccessGrantedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ShowcaseAccessGrantedType, self)._process_custom_annotations(annotation_type, field_path, processor) ShowcaseAccessGrantedType_validator = bv.Struct(ShowcaseAccessGrantedType) - class ShowcaseAddMemberDetails(bb.Struct): """ Added member to showcase. @@ -87563,12 +84419,13 @@ class ShowcaseAddMemberDetails(bb.Struct): """ __slots__ = [ - "_event_uuid_value", + '_event_uuid_value', ] _has_required_fields = True - def __init__(self, event_uuid=None): + def __init__(self, + event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -87577,22 +84434,20 @@ def __init__(self, event_uuid=None): event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseAddMemberDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ShowcaseAddMemberDetails, self)._process_custom_annotations(annotation_type, field_path, processor) ShowcaseAddMemberDetails_validator = bv.Struct(ShowcaseAddMemberDetails) - class ShowcaseAddMemberType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -87601,14 +84456,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseAddMemberType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ShowcaseAddMemberType, self)._process_custom_annotations(annotation_type, field_path, processor) ShowcaseAddMemberType_validator = bv.Struct(ShowcaseAddMemberType) - class ShowcaseArchivedDetails(bb.Struct): """ Archived showcase. @@ -87618,12 +84469,13 @@ class ShowcaseArchivedDetails(bb.Struct): """ __slots__ = [ - "_event_uuid_value", + '_event_uuid_value', ] _has_required_fields = True - def __init__(self, event_uuid=None): + def __init__(self, + event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -87632,22 +84484,20 @@ def __init__(self, event_uuid=None): event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseArchivedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ShowcaseArchivedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) ShowcaseArchivedDetails_validator = bv.Struct(ShowcaseArchivedDetails) - class ShowcaseArchivedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -87656,14 +84506,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseArchivedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ShowcaseArchivedType, self)._process_custom_annotations(annotation_type, field_path, processor) ShowcaseArchivedType_validator = bv.Struct(ShowcaseArchivedType) - class ShowcaseChangeDownloadPolicyDetails(bb.Struct): """ Enabled/disabled downloading files from Dropbox Showcase for team. @@ -87675,13 +84521,15 @@ class ShowcaseChangeDownloadPolicyDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -87696,22 +84544,20 @@ def __init__(self, new_value=None, previous_value=None): previous_value = bb.Attribute("previous_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseChangeDownloadPolicyDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ShowcaseChangeDownloadPolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) ShowcaseChangeDownloadPolicyDetails_validator = bv.Struct(ShowcaseChangeDownloadPolicyDetails) - class ShowcaseChangeDownloadPolicyType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -87720,14 +84566,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseChangeDownloadPolicyType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ShowcaseChangeDownloadPolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) ShowcaseChangeDownloadPolicyType_validator = bv.Struct(ShowcaseChangeDownloadPolicyType) - class ShowcaseChangeEnabledPolicyDetails(bb.Struct): """ Enabled/disabled Dropbox Showcase for team. @@ -87739,13 +84581,15 @@ class ShowcaseChangeEnabledPolicyDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -87760,22 +84604,20 @@ def __init__(self, new_value=None, previous_value=None): previous_value = bb.Attribute("previous_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseChangeEnabledPolicyDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ShowcaseChangeEnabledPolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) ShowcaseChangeEnabledPolicyDetails_validator = bv.Struct(ShowcaseChangeEnabledPolicyDetails) - class ShowcaseChangeEnabledPolicyType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -87784,14 +84626,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseChangeEnabledPolicyType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ShowcaseChangeEnabledPolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) ShowcaseChangeEnabledPolicyType_validator = bv.Struct(ShowcaseChangeEnabledPolicyType) - class ShowcaseChangeExternalSharingPolicyDetails(bb.Struct): """ Enabled/disabled sharing Dropbox Showcase externally for team. @@ -87803,13 +84641,15 @@ class ShowcaseChangeExternalSharingPolicyDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -87824,24 +84664,20 @@ def __init__(self, new_value=None, previous_value=None): 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 - ) - - -ShowcaseChangeExternalSharingPolicyDetails_validator = bv.Struct( - ShowcaseChangeExternalSharingPolicyDetails -) + super(ShowcaseChangeExternalSharingPolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +ShowcaseChangeExternalSharingPolicyDetails_validator = bv.Struct(ShowcaseChangeExternalSharingPolicyDetails) class ShowcaseChangeExternalSharingPolicyType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -87850,15 +84686,9 @@ def __init__(self, description=None): 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 - ) - - -ShowcaseChangeExternalSharingPolicyType_validator = bv.Struct( - ShowcaseChangeExternalSharingPolicyType -) + super(ShowcaseChangeExternalSharingPolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) +ShowcaseChangeExternalSharingPolicyType_validator = bv.Struct(ShowcaseChangeExternalSharingPolicyType) class ShowcaseCreatedDetails(bb.Struct): """ @@ -87869,12 +84699,13 @@ class ShowcaseCreatedDetails(bb.Struct): """ __slots__ = [ - "_event_uuid_value", + '_event_uuid_value', ] _has_required_fields = True - def __init__(self, event_uuid=None): + def __init__(self, + event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -87883,22 +84714,20 @@ def __init__(self, event_uuid=None): event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseCreatedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ShowcaseCreatedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) ShowcaseCreatedDetails_validator = bv.Struct(ShowcaseCreatedDetails) - class ShowcaseCreatedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -87907,14 +84736,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseCreatedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ShowcaseCreatedType, self)._process_custom_annotations(annotation_type, field_path, processor) ShowcaseCreatedType_validator = bv.Struct(ShowcaseCreatedType) - class ShowcaseDeleteCommentDetails(bb.Struct): """ Deleted showcase comment. @@ -87926,13 +84751,15 @@ class ShowcaseDeleteCommentDetails(bb.Struct): """ __slots__ = [ - "_event_uuid_value", - "_comment_text_value", + '_event_uuid_value', + '_comment_text_value', ] _has_required_fields = True - def __init__(self, event_uuid=None, comment_text=None): + def __init__(self, + event_uuid=None, + comment_text=None): self._event_uuid_value = bb.NOT_SET self._comment_text_value = bb.NOT_SET if event_uuid is not None: @@ -87947,22 +84774,20 @@ def __init__(self, event_uuid=None, comment_text=None): comment_text = bb.Attribute("comment_text", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseDeleteCommentDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ShowcaseDeleteCommentDetails, self)._process_custom_annotations(annotation_type, field_path, processor) ShowcaseDeleteCommentDetails_validator = bv.Struct(ShowcaseDeleteCommentDetails) - class ShowcaseDeleteCommentType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -87971,14 +84796,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseDeleteCommentType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ShowcaseDeleteCommentType, self)._process_custom_annotations(annotation_type, field_path, processor) ShowcaseDeleteCommentType_validator = bv.Struct(ShowcaseDeleteCommentType) - class ShowcaseDocumentLogInfo(bb.Struct): """ Showcase document's logged information. @@ -87990,13 +84811,15 @@ class ShowcaseDocumentLogInfo(bb.Struct): """ __slots__ = [ - "_showcase_id_value", - "_showcase_title_value", + '_showcase_id_value', + '_showcase_title_value', ] _has_required_fields = True - def __init__(self, showcase_id=None, showcase_title=None): + def __init__(self, + showcase_id=None, + showcase_title=None): self._showcase_id_value = bb.NOT_SET self._showcase_title_value = bb.NOT_SET if showcase_id is not None: @@ -88011,14 +84834,10 @@ def __init__(self, showcase_id=None, showcase_title=None): showcase_title = bb.Attribute("showcase_title") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseDocumentLogInfo, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ShowcaseDocumentLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) ShowcaseDocumentLogInfo_validator = bv.Struct(ShowcaseDocumentLogInfo) - class ShowcaseDownloadPolicy(bb.Union): """ Policy for controlling if files can be downloaded from Showcases by team @@ -88029,7 +84848,7 @@ class ShowcaseDownloadPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -88043,7 +84862,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == "disabled" + return self._tag == 'disabled' def is_enabled(self): """ @@ -88051,7 +84870,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == "enabled" + return self._tag == 'enabled' def is_other(self): """ @@ -88059,17 +84878,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseDownloadPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ShowcaseDownloadPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) ShowcaseDownloadPolicy_validator = bv.Union(ShowcaseDownloadPolicy) - class ShowcaseEditCommentDetails(bb.Struct): """ Edited showcase comment. @@ -88081,13 +84896,15 @@ class ShowcaseEditCommentDetails(bb.Struct): """ __slots__ = [ - "_event_uuid_value", - "_comment_text_value", + '_event_uuid_value', + '_comment_text_value', ] _has_required_fields = True - def __init__(self, event_uuid=None, comment_text=None): + def __init__(self, + event_uuid=None, + comment_text=None): self._event_uuid_value = bb.NOT_SET self._comment_text_value = bb.NOT_SET if event_uuid is not None: @@ -88102,22 +84919,20 @@ def __init__(self, event_uuid=None, comment_text=None): comment_text = bb.Attribute("comment_text", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseEditCommentDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ShowcaseEditCommentDetails, self)._process_custom_annotations(annotation_type, field_path, processor) ShowcaseEditCommentDetails_validator = bv.Struct(ShowcaseEditCommentDetails) - class ShowcaseEditCommentType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -88126,14 +84941,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseEditCommentType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ShowcaseEditCommentType, self)._process_custom_annotations(annotation_type, field_path, processor) ShowcaseEditCommentType_validator = bv.Struct(ShowcaseEditCommentType) - class ShowcaseEditedDetails(bb.Struct): """ Edited showcase. @@ -88143,12 +84954,13 @@ class ShowcaseEditedDetails(bb.Struct): """ __slots__ = [ - "_event_uuid_value", + '_event_uuid_value', ] _has_required_fields = True - def __init__(self, event_uuid=None): + def __init__(self, + event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -88157,22 +84969,20 @@ def __init__(self, event_uuid=None): event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseEditedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ShowcaseEditedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) ShowcaseEditedDetails_validator = bv.Struct(ShowcaseEditedDetails) - class ShowcaseEditedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -88181,14 +84991,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseEditedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ShowcaseEditedType, self)._process_custom_annotations(annotation_type, field_path, processor) ShowcaseEditedType_validator = bv.Struct(ShowcaseEditedType) - class ShowcaseEnabledPolicy(bb.Union): """ Policy for controlling whether Showcase is enabled. @@ -88198,7 +85004,7 @@ class ShowcaseEnabledPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -88212,7 +85018,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == "disabled" + return self._tag == 'disabled' def is_enabled(self): """ @@ -88220,7 +85026,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == "enabled" + return self._tag == 'enabled' def is_other(self): """ @@ -88228,17 +85034,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseEnabledPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ShowcaseEnabledPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) ShowcaseEnabledPolicy_validator = bv.Union(ShowcaseEnabledPolicy) - class ShowcaseExternalSharingPolicy(bb.Union): """ Policy for controlling if team members can share Showcases externally. @@ -88248,7 +85050,7 @@ class ShowcaseExternalSharingPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -88262,7 +85064,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == "disabled" + return self._tag == 'disabled' def is_enabled(self): """ @@ -88270,7 +85072,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == "enabled" + return self._tag == 'enabled' def is_other(self): """ @@ -88278,17 +85080,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseExternalSharingPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ShowcaseExternalSharingPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) ShowcaseExternalSharingPolicy_validator = bv.Union(ShowcaseExternalSharingPolicy) - class ShowcaseFileAddedDetails(bb.Struct): """ Added file to showcase. @@ -88298,12 +85096,13 @@ class ShowcaseFileAddedDetails(bb.Struct): """ __slots__ = [ - "_event_uuid_value", + '_event_uuid_value', ] _has_required_fields = True - def __init__(self, event_uuid=None): + def __init__(self, + event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -88312,22 +85111,20 @@ def __init__(self, event_uuid=None): event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseFileAddedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ShowcaseFileAddedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) ShowcaseFileAddedDetails_validator = bv.Struct(ShowcaseFileAddedDetails) - class ShowcaseFileAddedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -88336,14 +85133,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseFileAddedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ShowcaseFileAddedType, self)._process_custom_annotations(annotation_type, field_path, processor) ShowcaseFileAddedType_validator = bv.Struct(ShowcaseFileAddedType) - class ShowcaseFileDownloadDetails(bb.Struct): """ Downloaded file from showcase. @@ -88355,13 +85148,15 @@ class ShowcaseFileDownloadDetails(bb.Struct): """ __slots__ = [ - "_event_uuid_value", - "_download_type_value", + '_event_uuid_value', + '_download_type_value', ] _has_required_fields = True - def __init__(self, event_uuid=None, download_type=None): + def __init__(self, + event_uuid=None, + download_type=None): self._event_uuid_value = bb.NOT_SET self._download_type_value = bb.NOT_SET if event_uuid is not None: @@ -88376,22 +85171,20 @@ def __init__(self, event_uuid=None, download_type=None): download_type = bb.Attribute("download_type") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseFileDownloadDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ShowcaseFileDownloadDetails, self)._process_custom_annotations(annotation_type, field_path, processor) ShowcaseFileDownloadDetails_validator = bv.Struct(ShowcaseFileDownloadDetails) - class ShowcaseFileDownloadType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -88400,14 +85193,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseFileDownloadType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ShowcaseFileDownloadType, self)._process_custom_annotations(annotation_type, field_path, processor) ShowcaseFileDownloadType_validator = bv.Struct(ShowcaseFileDownloadType) - class ShowcaseFileRemovedDetails(bb.Struct): """ Removed file from showcase. @@ -88417,12 +85206,13 @@ class ShowcaseFileRemovedDetails(bb.Struct): """ __slots__ = [ - "_event_uuid_value", + '_event_uuid_value', ] _has_required_fields = True - def __init__(self, event_uuid=None): + def __init__(self, + event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -88431,22 +85221,20 @@ def __init__(self, event_uuid=None): event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseFileRemovedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ShowcaseFileRemovedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) ShowcaseFileRemovedDetails_validator = bv.Struct(ShowcaseFileRemovedDetails) - class ShowcaseFileRemovedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -88455,14 +85243,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseFileRemovedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ShowcaseFileRemovedType, self)._process_custom_annotations(annotation_type, field_path, processor) ShowcaseFileRemovedType_validator = bv.Struct(ShowcaseFileRemovedType) - class ShowcaseFileViewDetails(bb.Struct): """ Viewed file in showcase. @@ -88472,12 +85256,13 @@ class ShowcaseFileViewDetails(bb.Struct): """ __slots__ = [ - "_event_uuid_value", + '_event_uuid_value', ] _has_required_fields = True - def __init__(self, event_uuid=None): + def __init__(self, + event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -88486,22 +85271,20 @@ def __init__(self, event_uuid=None): event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseFileViewDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ShowcaseFileViewDetails, self)._process_custom_annotations(annotation_type, field_path, processor) ShowcaseFileViewDetails_validator = bv.Struct(ShowcaseFileViewDetails) - class ShowcaseFileViewType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -88510,14 +85293,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseFileViewType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ShowcaseFileViewType, self)._process_custom_annotations(annotation_type, field_path, processor) ShowcaseFileViewType_validator = bv.Struct(ShowcaseFileViewType) - class ShowcasePermanentlyDeletedDetails(bb.Struct): """ Permanently deleted showcase. @@ -88527,12 +85306,13 @@ class ShowcasePermanentlyDeletedDetails(bb.Struct): """ __slots__ = [ - "_event_uuid_value", + '_event_uuid_value', ] _has_required_fields = True - def __init__(self, event_uuid=None): + def __init__(self, + event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -88541,22 +85321,20 @@ def __init__(self, event_uuid=None): event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcasePermanentlyDeletedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ShowcasePermanentlyDeletedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) ShowcasePermanentlyDeletedDetails_validator = bv.Struct(ShowcasePermanentlyDeletedDetails) - class ShowcasePermanentlyDeletedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -88565,14 +85343,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcasePermanentlyDeletedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ShowcasePermanentlyDeletedType, self)._process_custom_annotations(annotation_type, field_path, processor) ShowcasePermanentlyDeletedType_validator = bv.Struct(ShowcasePermanentlyDeletedType) - class ShowcasePostCommentDetails(bb.Struct): """ Added showcase comment. @@ -88584,13 +85358,15 @@ class ShowcasePostCommentDetails(bb.Struct): """ __slots__ = [ - "_event_uuid_value", - "_comment_text_value", + '_event_uuid_value', + '_comment_text_value', ] _has_required_fields = True - def __init__(self, event_uuid=None, comment_text=None): + def __init__(self, + event_uuid=None, + comment_text=None): self._event_uuid_value = bb.NOT_SET self._comment_text_value = bb.NOT_SET if event_uuid is not None: @@ -88605,22 +85381,20 @@ def __init__(self, event_uuid=None, comment_text=None): comment_text = bb.Attribute("comment_text", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcasePostCommentDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ShowcasePostCommentDetails, self)._process_custom_annotations(annotation_type, field_path, processor) ShowcasePostCommentDetails_validator = bv.Struct(ShowcasePostCommentDetails) - class ShowcasePostCommentType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -88629,14 +85403,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcasePostCommentType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ShowcasePostCommentType, self)._process_custom_annotations(annotation_type, field_path, processor) ShowcasePostCommentType_validator = bv.Struct(ShowcasePostCommentType) - class ShowcaseRemoveMemberDetails(bb.Struct): """ Removed member from showcase. @@ -88646,12 +85416,13 @@ class ShowcaseRemoveMemberDetails(bb.Struct): """ __slots__ = [ - "_event_uuid_value", + '_event_uuid_value', ] _has_required_fields = True - def __init__(self, event_uuid=None): + def __init__(self, + event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -88660,22 +85431,20 @@ def __init__(self, event_uuid=None): event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseRemoveMemberDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ShowcaseRemoveMemberDetails, self)._process_custom_annotations(annotation_type, field_path, processor) ShowcaseRemoveMemberDetails_validator = bv.Struct(ShowcaseRemoveMemberDetails) - class ShowcaseRemoveMemberType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -88684,14 +85453,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseRemoveMemberType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ShowcaseRemoveMemberType, self)._process_custom_annotations(annotation_type, field_path, processor) ShowcaseRemoveMemberType_validator = bv.Struct(ShowcaseRemoveMemberType) - class ShowcaseRenamedDetails(bb.Struct): """ Renamed showcase. @@ -88701,12 +85466,13 @@ class ShowcaseRenamedDetails(bb.Struct): """ __slots__ = [ - "_event_uuid_value", + '_event_uuid_value', ] _has_required_fields = True - def __init__(self, event_uuid=None): + def __init__(self, + event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -88715,22 +85481,20 @@ def __init__(self, event_uuid=None): event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseRenamedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ShowcaseRenamedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) ShowcaseRenamedDetails_validator = bv.Struct(ShowcaseRenamedDetails) - class ShowcaseRenamedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -88739,14 +85503,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseRenamedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ShowcaseRenamedType, self)._process_custom_annotations(annotation_type, field_path, processor) ShowcaseRenamedType_validator = bv.Struct(ShowcaseRenamedType) - class ShowcaseRequestAccessDetails(bb.Struct): """ Requested access to showcase. @@ -88756,12 +85516,13 @@ class ShowcaseRequestAccessDetails(bb.Struct): """ __slots__ = [ - "_event_uuid_value", + '_event_uuid_value', ] _has_required_fields = True - def __init__(self, event_uuid=None): + def __init__(self, + event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -88770,22 +85531,20 @@ def __init__(self, event_uuid=None): event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseRequestAccessDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ShowcaseRequestAccessDetails, self)._process_custom_annotations(annotation_type, field_path, processor) ShowcaseRequestAccessDetails_validator = bv.Struct(ShowcaseRequestAccessDetails) - class ShowcaseRequestAccessType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -88794,14 +85553,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseRequestAccessType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ShowcaseRequestAccessType, self)._process_custom_annotations(annotation_type, field_path, processor) ShowcaseRequestAccessType_validator = bv.Struct(ShowcaseRequestAccessType) - class ShowcaseResolveCommentDetails(bb.Struct): """ Resolved showcase comment. @@ -88813,13 +85568,15 @@ class ShowcaseResolveCommentDetails(bb.Struct): """ __slots__ = [ - "_event_uuid_value", - "_comment_text_value", + '_event_uuid_value', + '_comment_text_value', ] _has_required_fields = True - def __init__(self, event_uuid=None, comment_text=None): + def __init__(self, + event_uuid=None, + comment_text=None): self._event_uuid_value = bb.NOT_SET self._comment_text_value = bb.NOT_SET if event_uuid is not None: @@ -88834,22 +85591,20 @@ def __init__(self, event_uuid=None, comment_text=None): comment_text = bb.Attribute("comment_text", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseResolveCommentDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ShowcaseResolveCommentDetails, self)._process_custom_annotations(annotation_type, field_path, processor) ShowcaseResolveCommentDetails_validator = bv.Struct(ShowcaseResolveCommentDetails) - class ShowcaseResolveCommentType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -88858,14 +85613,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseResolveCommentType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ShowcaseResolveCommentType, self)._process_custom_annotations(annotation_type, field_path, processor) ShowcaseResolveCommentType_validator = bv.Struct(ShowcaseResolveCommentType) - class ShowcaseRestoredDetails(bb.Struct): """ Unarchived showcase. @@ -88875,12 +85626,13 @@ class ShowcaseRestoredDetails(bb.Struct): """ __slots__ = [ - "_event_uuid_value", + '_event_uuid_value', ] _has_required_fields = True - def __init__(self, event_uuid=None): + def __init__(self, + event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -88889,22 +85641,20 @@ def __init__(self, event_uuid=None): event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseRestoredDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ShowcaseRestoredDetails, self)._process_custom_annotations(annotation_type, field_path, processor) ShowcaseRestoredDetails_validator = bv.Struct(ShowcaseRestoredDetails) - class ShowcaseRestoredType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -88913,14 +85663,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseRestoredType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ShowcaseRestoredType, self)._process_custom_annotations(annotation_type, field_path, processor) ShowcaseRestoredType_validator = bv.Struct(ShowcaseRestoredType) - class ShowcaseTrashedDeprecatedDetails(bb.Struct): """ Deleted showcase (old version). @@ -88930,12 +85676,13 @@ class ShowcaseTrashedDeprecatedDetails(bb.Struct): """ __slots__ = [ - "_event_uuid_value", + '_event_uuid_value', ] _has_required_fields = True - def __init__(self, event_uuid=None): + def __init__(self, + event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -88944,22 +85691,20 @@ def __init__(self, event_uuid=None): event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseTrashedDeprecatedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ShowcaseTrashedDeprecatedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) ShowcaseTrashedDeprecatedDetails_validator = bv.Struct(ShowcaseTrashedDeprecatedDetails) - class ShowcaseTrashedDeprecatedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -88968,14 +85713,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseTrashedDeprecatedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ShowcaseTrashedDeprecatedType, self)._process_custom_annotations(annotation_type, field_path, processor) ShowcaseTrashedDeprecatedType_validator = bv.Struct(ShowcaseTrashedDeprecatedType) - class ShowcaseTrashedDetails(bb.Struct): """ Deleted showcase. @@ -88985,12 +85726,13 @@ class ShowcaseTrashedDetails(bb.Struct): """ __slots__ = [ - "_event_uuid_value", + '_event_uuid_value', ] _has_required_fields = True - def __init__(self, event_uuid=None): + def __init__(self, + event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -88999,22 +85741,20 @@ def __init__(self, event_uuid=None): event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseTrashedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ShowcaseTrashedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) ShowcaseTrashedDetails_validator = bv.Struct(ShowcaseTrashedDetails) - class ShowcaseTrashedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -89023,14 +85763,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseTrashedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ShowcaseTrashedType, self)._process_custom_annotations(annotation_type, field_path, processor) ShowcaseTrashedType_validator = bv.Struct(ShowcaseTrashedType) - class ShowcaseUnresolveCommentDetails(bb.Struct): """ Unresolved showcase comment. @@ -89042,13 +85778,15 @@ class ShowcaseUnresolveCommentDetails(bb.Struct): """ __slots__ = [ - "_event_uuid_value", - "_comment_text_value", + '_event_uuid_value', + '_comment_text_value', ] _has_required_fields = True - def __init__(self, event_uuid=None, comment_text=None): + def __init__(self, + event_uuid=None, + comment_text=None): self._event_uuid_value = bb.NOT_SET self._comment_text_value = bb.NOT_SET if event_uuid is not None: @@ -89063,22 +85801,20 @@ def __init__(self, event_uuid=None, comment_text=None): comment_text = bb.Attribute("comment_text", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseUnresolveCommentDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ShowcaseUnresolveCommentDetails, self)._process_custom_annotations(annotation_type, field_path, processor) ShowcaseUnresolveCommentDetails_validator = bv.Struct(ShowcaseUnresolveCommentDetails) - class ShowcaseUnresolveCommentType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -89087,14 +85823,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseUnresolveCommentType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ShowcaseUnresolveCommentType, self)._process_custom_annotations(annotation_type, field_path, processor) ShowcaseUnresolveCommentType_validator = bv.Struct(ShowcaseUnresolveCommentType) - class ShowcaseUntrashedDeprecatedDetails(bb.Struct): """ Restored showcase (old version). @@ -89104,12 +85836,13 @@ class ShowcaseUntrashedDeprecatedDetails(bb.Struct): """ __slots__ = [ - "_event_uuid_value", + '_event_uuid_value', ] _has_required_fields = True - def __init__(self, event_uuid=None): + def __init__(self, + event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -89118,22 +85851,20 @@ def __init__(self, event_uuid=None): event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseUntrashedDeprecatedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ShowcaseUntrashedDeprecatedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) ShowcaseUntrashedDeprecatedDetails_validator = bv.Struct(ShowcaseUntrashedDeprecatedDetails) - class ShowcaseUntrashedDeprecatedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -89142,14 +85873,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseUntrashedDeprecatedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ShowcaseUntrashedDeprecatedType, self)._process_custom_annotations(annotation_type, field_path, processor) ShowcaseUntrashedDeprecatedType_validator = bv.Struct(ShowcaseUntrashedDeprecatedType) - class ShowcaseUntrashedDetails(bb.Struct): """ Restored showcase. @@ -89159,12 +85886,13 @@ class ShowcaseUntrashedDetails(bb.Struct): """ __slots__ = [ - "_event_uuid_value", + '_event_uuid_value', ] _has_required_fields = True - def __init__(self, event_uuid=None): + def __init__(self, + event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -89173,22 +85901,20 @@ def __init__(self, event_uuid=None): event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseUntrashedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ShowcaseUntrashedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) ShowcaseUntrashedDetails_validator = bv.Struct(ShowcaseUntrashedDetails) - class ShowcaseUntrashedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -89197,14 +85923,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseUntrashedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ShowcaseUntrashedType, self)._process_custom_annotations(annotation_type, field_path, processor) ShowcaseUntrashedType_validator = bv.Struct(ShowcaseUntrashedType) - class ShowcaseViewDetails(bb.Struct): """ Viewed showcase. @@ -89214,12 +85936,13 @@ class ShowcaseViewDetails(bb.Struct): """ __slots__ = [ - "_event_uuid_value", + '_event_uuid_value', ] _has_required_fields = True - def __init__(self, event_uuid=None): + def __init__(self, + event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -89228,22 +85951,20 @@ def __init__(self, event_uuid=None): event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseViewDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ShowcaseViewDetails, self)._process_custom_annotations(annotation_type, field_path, processor) ShowcaseViewDetails_validator = bv.Struct(ShowcaseViewDetails) - class ShowcaseViewType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -89252,14 +85973,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseViewType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ShowcaseViewType, self)._process_custom_annotations(annotation_type, field_path, processor) ShowcaseViewType_validator = bv.Struct(ShowcaseViewType) - class SignExternalSharingPolicy(bb.Union): """ Policy for deciding whether team users can share Sign content externally @@ -89269,7 +85986,7 @@ class SignExternalSharingPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition default = None # Attribute is overwritten below the class definition @@ -89285,7 +86002,7 @@ def is_default(self): :rtype: bool """ - return self._tag == "default" + return self._tag == 'default' def is_disabled(self): """ @@ -89293,7 +86010,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == "disabled" + return self._tag == 'disabled' def is_enabled(self): """ @@ -89301,7 +86018,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == "enabled" + return self._tag == 'enabled' def is_other(self): """ @@ -89309,17 +86026,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SignExternalSharingPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SignExternalSharingPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) SignExternalSharingPolicy_validator = bv.Union(SignExternalSharingPolicy) - class SignExternalSharingPolicyChangedDetails(bb.Struct): """ Changed Signatures external sharing policy for team. @@ -89331,13 +86044,15 @@ class SignExternalSharingPolicyChangedDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -89352,24 +86067,20 @@ def __init__(self, new_value=None, previous_value=None): previous_value = bb.Attribute("previous_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SignExternalSharingPolicyChangedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - - -SignExternalSharingPolicyChangedDetails_validator = bv.Struct( - SignExternalSharingPolicyChangedDetails -) + super(SignExternalSharingPolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +SignExternalSharingPolicyChangedDetails_validator = bv.Struct(SignExternalSharingPolicyChangedDetails) class SignExternalSharingPolicyChangedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -89378,20 +86089,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SignExternalSharingPolicyChangedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SignExternalSharingPolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) SignExternalSharingPolicyChangedType_validator = bv.Struct(SignExternalSharingPolicyChangedType) - class SignInAsSessionEndDetails(bb.Struct): """ Ended admin sign-in-as session. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -89399,22 +86107,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SignInAsSessionEndDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SignInAsSessionEndDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SignInAsSessionEndDetails_validator = bv.Struct(SignInAsSessionEndDetails) - class SignInAsSessionEndType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -89423,20 +86129,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SignInAsSessionEndType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SignInAsSessionEndType, self)._process_custom_annotations(annotation_type, field_path, processor) SignInAsSessionEndType_validator = bv.Struct(SignInAsSessionEndType) - class SignInAsSessionStartDetails(bb.Struct): """ Started admin sign-in-as session. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -89444,22 +86147,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SignInAsSessionStartDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SignInAsSessionStartDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SignInAsSessionStartDetails_validator = bv.Struct(SignInAsSessionStartDetails) - class SignInAsSessionStartType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -89468,14 +86169,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SignInAsSessionStartType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SignInAsSessionStartType, self)._process_custom_annotations(annotation_type, field_path, processor) SignInAsSessionStartType_validator = bv.Struct(SignInAsSessionStartType) - class SignSignatureRequestCanceledDetails(bb.Struct): """ Canceled signature request. @@ -89487,13 +86184,15 @@ class SignSignatureRequestCanceledDetails(bb.Struct): """ __slots__ = [ - "_recipient_value", - "_file_name_value", + '_recipient_value', + '_file_name_value', ] _has_required_fields = True - def __init__(self, recipient=None, file_name=None): + def __init__(self, + recipient=None, + file_name=None): self._recipient_value = bb.NOT_SET self._file_name_value = bb.NOT_SET if recipient is not None: @@ -89508,22 +86207,20 @@ def __init__(self, recipient=None, file_name=None): file_name = bb.Attribute("file_name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SignSignatureRequestCanceledDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SignSignatureRequestCanceledDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SignSignatureRequestCanceledDetails_validator = bv.Struct(SignSignatureRequestCanceledDetails) - class SignSignatureRequestCanceledType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -89532,14 +86229,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SignSignatureRequestCanceledType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SignSignatureRequestCanceledType, self)._process_custom_annotations(annotation_type, field_path, processor) SignSignatureRequestCanceledType_validator = bv.Struct(SignSignatureRequestCanceledType) - class SignSignatureRequestCompletedDetails(bb.Struct): """ Completed signature request. @@ -89551,13 +86244,15 @@ class SignSignatureRequestCompletedDetails(bb.Struct): """ __slots__ = [ - "_recipient_value", - "_file_name_value", + '_recipient_value', + '_file_name_value', ] _has_required_fields = True - def __init__(self, recipient=None, file_name=None): + def __init__(self, + recipient=None, + file_name=None): self._recipient_value = bb.NOT_SET self._file_name_value = bb.NOT_SET if recipient is not None: @@ -89572,22 +86267,20 @@ def __init__(self, recipient=None, file_name=None): file_name = bb.Attribute("file_name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SignSignatureRequestCompletedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SignSignatureRequestCompletedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SignSignatureRequestCompletedDetails_validator = bv.Struct(SignSignatureRequestCompletedDetails) - class SignSignatureRequestCompletedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -89596,14 +86289,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SignSignatureRequestCompletedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SignSignatureRequestCompletedType, self)._process_custom_annotations(annotation_type, field_path, processor) SignSignatureRequestCompletedType_validator = bv.Struct(SignSignatureRequestCompletedType) - class SignSignatureRequestDeclinedDetails(bb.Struct): """ Declined signature request. @@ -89615,13 +86304,15 @@ class SignSignatureRequestDeclinedDetails(bb.Struct): """ __slots__ = [ - "_recipient_value", - "_file_name_value", + '_recipient_value', + '_file_name_value', ] _has_required_fields = True - def __init__(self, recipient=None, file_name=None): + def __init__(self, + recipient=None, + file_name=None): self._recipient_value = bb.NOT_SET self._file_name_value = bb.NOT_SET if recipient is not None: @@ -89636,22 +86327,20 @@ def __init__(self, recipient=None, file_name=None): file_name = bb.Attribute("file_name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SignSignatureRequestDeclinedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SignSignatureRequestDeclinedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SignSignatureRequestDeclinedDetails_validator = bv.Struct(SignSignatureRequestDeclinedDetails) - class SignSignatureRequestDeclinedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -89660,14 +86349,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SignSignatureRequestDeclinedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SignSignatureRequestDeclinedType, self)._process_custom_annotations(annotation_type, field_path, processor) SignSignatureRequestDeclinedType_validator = bv.Struct(SignSignatureRequestDeclinedType) - class SignSignatureRequestOpenedDetails(bb.Struct): """ Opened signature request. @@ -89679,13 +86364,15 @@ class SignSignatureRequestOpenedDetails(bb.Struct): """ __slots__ = [ - "_recipient_value", - "_file_name_value", + '_recipient_value', + '_file_name_value', ] _has_required_fields = True - def __init__(self, recipient=None, file_name=None): + def __init__(self, + recipient=None, + file_name=None): self._recipient_value = bb.NOT_SET self._file_name_value = bb.NOT_SET if recipient is not None: @@ -89700,22 +86387,20 @@ def __init__(self, recipient=None, file_name=None): file_name = bb.Attribute("file_name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SignSignatureRequestOpenedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SignSignatureRequestOpenedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SignSignatureRequestOpenedDetails_validator = bv.Struct(SignSignatureRequestOpenedDetails) - class SignSignatureRequestOpenedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -89724,14 +86409,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SignSignatureRequestOpenedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SignSignatureRequestOpenedType, self)._process_custom_annotations(annotation_type, field_path, processor) SignSignatureRequestOpenedType_validator = bv.Struct(SignSignatureRequestOpenedType) - class SignSignatureRequestReminderSentDetails(bb.Struct): """ Sent signature request reminder. @@ -89743,13 +86424,15 @@ class SignSignatureRequestReminderSentDetails(bb.Struct): """ __slots__ = [ - "_recipient_value", - "_file_name_value", + '_recipient_value', + '_file_name_value', ] _has_required_fields = True - def __init__(self, recipient=None, file_name=None): + def __init__(self, + recipient=None, + file_name=None): self._recipient_value = bb.NOT_SET self._file_name_value = bb.NOT_SET if recipient is not None: @@ -89764,24 +86447,20 @@ def __init__(self, recipient=None, file_name=None): file_name = bb.Attribute("file_name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SignSignatureRequestReminderSentDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - - -SignSignatureRequestReminderSentDetails_validator = bv.Struct( - SignSignatureRequestReminderSentDetails -) + super(SignSignatureRequestReminderSentDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +SignSignatureRequestReminderSentDetails_validator = bv.Struct(SignSignatureRequestReminderSentDetails) class SignSignatureRequestReminderSentType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -89790,14 +86469,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SignSignatureRequestReminderSentType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SignSignatureRequestReminderSentType, self)._process_custom_annotations(annotation_type, field_path, processor) SignSignatureRequestReminderSentType_validator = bv.Struct(SignSignatureRequestReminderSentType) - class SignSignatureRequestSentDetails(bb.Struct): """ Sent signature request. @@ -89809,13 +86484,15 @@ class SignSignatureRequestSentDetails(bb.Struct): """ __slots__ = [ - "_recipient_value", - "_file_name_value", + '_recipient_value', + '_file_name_value', ] _has_required_fields = True - def __init__(self, recipient=None, file_name=None): + def __init__(self, + recipient=None, + file_name=None): self._recipient_value = bb.NOT_SET self._file_name_value = bb.NOT_SET if recipient is not None: @@ -89830,22 +86507,20 @@ def __init__(self, recipient=None, file_name=None): file_name = bb.Attribute("file_name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SignSignatureRequestSentDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SignSignatureRequestSentDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SignSignatureRequestSentDetails_validator = bv.Struct(SignSignatureRequestSentDetails) - class SignSignatureRequestSentType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -89854,14 +86529,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SignSignatureRequestSentType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SignSignatureRequestSentType, self)._process_custom_annotations(annotation_type, field_path, processor) SignSignatureRequestSentType_validator = bv.Struct(SignSignatureRequestSentType) - class SignTemplateCreatedDetails(bb.Struct): """ Created template. @@ -89873,13 +86544,15 @@ class SignTemplateCreatedDetails(bb.Struct): """ __slots__ = [ - "_access_level_value", - "_file_name_value", + '_access_level_value', + '_file_name_value', ] _has_required_fields = True - def __init__(self, access_level=None, file_name=None): + def __init__(self, + access_level=None, + file_name=None): self._access_level_value = bb.NOT_SET self._file_name_value = bb.NOT_SET if access_level is not None: @@ -89894,22 +86567,20 @@ def __init__(self, access_level=None, file_name=None): file_name = bb.Attribute("file_name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SignTemplateCreatedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SignTemplateCreatedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SignTemplateCreatedDetails_validator = bv.Struct(SignTemplateCreatedDetails) - class SignTemplateCreatedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -89918,14 +86589,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SignTemplateCreatedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SignTemplateCreatedType, self)._process_custom_annotations(annotation_type, field_path, processor) SignTemplateCreatedType_validator = bv.Struct(SignTemplateCreatedType) - class SignTemplateCreationPermissionChangedDetails(bb.Struct): """ Changed template creation permission. @@ -89937,13 +86604,15 @@ class SignTemplateCreationPermissionChangedDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -89958,24 +86627,20 @@ def __init__(self, new_value=None, previous_value=None): previous_value = bb.Attribute("previous_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SignTemplateCreationPermissionChangedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - - -SignTemplateCreationPermissionChangedDetails_validator = bv.Struct( - SignTemplateCreationPermissionChangedDetails -) + super(SignTemplateCreationPermissionChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +SignTemplateCreationPermissionChangedDetails_validator = bv.Struct(SignTemplateCreationPermissionChangedDetails) class SignTemplateCreationPermissionChangedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -89984,15 +86649,9 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SignTemplateCreationPermissionChangedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - - -SignTemplateCreationPermissionChangedType_validator = bv.Struct( - SignTemplateCreationPermissionChangedType -) + super(SignTemplateCreationPermissionChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) +SignTemplateCreationPermissionChangedType_validator = bv.Struct(SignTemplateCreationPermissionChangedType) class SignTemplateCreationPermissionPolicy(bb.Union): """ @@ -90003,7 +86662,7 @@ class SignTemplateCreationPermissionPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -90017,7 +86676,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == "disabled" + return self._tag == 'disabled' def is_enabled(self): """ @@ -90025,7 +86684,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == "enabled" + return self._tag == 'enabled' def is_other(self): """ @@ -90033,17 +86692,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SignTemplateCreationPermissionPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SignTemplateCreationPermissionPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) SignTemplateCreationPermissionPolicy_validator = bv.Union(SignTemplateCreationPermissionPolicy) - class SignTemplateSharedDetails(bb.Struct): """ Shared template. @@ -90055,13 +86710,15 @@ class SignTemplateSharedDetails(bb.Struct): """ __slots__ = [ - "_access_level_value", - "_file_name_value", + '_access_level_value', + '_file_name_value', ] _has_required_fields = True - def __init__(self, access_level=None, file_name=None): + def __init__(self, + access_level=None, + file_name=None): self._access_level_value = bb.NOT_SET self._file_name_value = bb.NOT_SET if access_level is not None: @@ -90076,22 +86733,20 @@ def __init__(self, access_level=None, file_name=None): file_name = bb.Attribute("file_name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SignTemplateSharedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SignTemplateSharedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SignTemplateSharedDetails_validator = bv.Struct(SignTemplateSharedDetails) - class SignTemplateSharedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -90100,14 +86755,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SignTemplateSharedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SignTemplateSharedType, self)._process_custom_annotations(annotation_type, field_path, processor) SignTemplateSharedType_validator = bv.Struct(SignTemplateSharedType) - class SmartSyncChangePolicyDetails(bb.Struct): """ Changed default Smart Sync setting for team members. @@ -90119,13 +86770,15 @@ class SmartSyncChangePolicyDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = False - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -90140,22 +86793,20 @@ def __init__(self, new_value=None, previous_value=None): previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SmartSyncChangePolicyDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SmartSyncChangePolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SmartSyncChangePolicyDetails_validator = bv.Struct(SmartSyncChangePolicyDetails) - class SmartSyncChangePolicyType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -90164,20 +86815,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SmartSyncChangePolicyType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SmartSyncChangePolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) SmartSyncChangePolicyType_validator = bv.Struct(SmartSyncChangePolicyType) - class SmartSyncCreateAdminPrivilegeReportDetails(bb.Struct): """ Created Smart Sync non-admin devices report. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -90185,24 +86833,20 @@ 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 - ) - - -SmartSyncCreateAdminPrivilegeReportDetails_validator = bv.Struct( - SmartSyncCreateAdminPrivilegeReportDetails -) + super(SmartSyncCreateAdminPrivilegeReportDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +SmartSyncCreateAdminPrivilegeReportDetails_validator = bv.Struct(SmartSyncCreateAdminPrivilegeReportDetails) class SmartSyncCreateAdminPrivilegeReportType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -90211,15 +86855,9 @@ def __init__(self, description=None): 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 - ) - - -SmartSyncCreateAdminPrivilegeReportType_validator = bv.Struct( - SmartSyncCreateAdminPrivilegeReportType -) + super(SmartSyncCreateAdminPrivilegeReportType, self)._process_custom_annotations(annotation_type, field_path, processor) +SmartSyncCreateAdminPrivilegeReportType_validator = bv.Struct(SmartSyncCreateAdminPrivilegeReportType) class SmartSyncNotOptOutDetails(bb.Struct): """ @@ -90232,13 +86870,15 @@ class SmartSyncNotOptOutDetails(bb.Struct): """ __slots__ = [ - "_previous_value_value", - "_new_value_value", + '_previous_value_value', + '_new_value_value', ] _has_required_fields = True - def __init__(self, previous_value=None, new_value=None): + def __init__(self, + previous_value=None, + new_value=None): self._previous_value_value = bb.NOT_SET self._new_value_value = bb.NOT_SET if previous_value is not None: @@ -90253,22 +86893,20 @@ def __init__(self, previous_value=None, new_value=None): new_value = bb.Attribute("new_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SmartSyncNotOptOutDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SmartSyncNotOptOutDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SmartSyncNotOptOutDetails_validator = bv.Struct(SmartSyncNotOptOutDetails) - class SmartSyncNotOptOutType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -90277,14 +86915,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SmartSyncNotOptOutType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SmartSyncNotOptOutType, self)._process_custom_annotations(annotation_type, field_path, processor) SmartSyncNotOptOutType_validator = bv.Struct(SmartSyncNotOptOutType) - class SmartSyncOptOutDetails(bb.Struct): """ Opted team out of Smart Sync. @@ -90296,13 +86930,15 @@ class SmartSyncOptOutDetails(bb.Struct): """ __slots__ = [ - "_previous_value_value", - "_new_value_value", + '_previous_value_value', + '_new_value_value', ] _has_required_fields = True - def __init__(self, previous_value=None, new_value=None): + def __init__(self, + previous_value=None, + new_value=None): self._previous_value_value = bb.NOT_SET self._new_value_value = bb.NOT_SET if previous_value is not None: @@ -90317,14 +86953,10 @@ def __init__(self, previous_value=None, new_value=None): new_value = bb.Attribute("new_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SmartSyncOptOutDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SmartSyncOptOutDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SmartSyncOptOutDetails_validator = bv.Struct(SmartSyncOptOutDetails) - class SmartSyncOptOutPolicy(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -90332,7 +86964,7 @@ class SmartSyncOptOutPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition default = None # Attribute is overwritten below the class definition @@ -90346,7 +86978,7 @@ def is_default(self): :rtype: bool """ - return self._tag == "default" + return self._tag == 'default' def is_opted_out(self): """ @@ -90354,7 +86986,7 @@ def is_opted_out(self): :rtype: bool """ - return self._tag == "opted_out" + return self._tag == 'opted_out' def is_other(self): """ @@ -90362,25 +86994,23 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SmartSyncOptOutPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SmartSyncOptOutPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) SmartSyncOptOutPolicy_validator = bv.Union(SmartSyncOptOutPolicy) - class SmartSyncOptOutType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -90389,14 +87019,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SmartSyncOptOutType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SmartSyncOptOutType, self)._process_custom_annotations(annotation_type, field_path, processor) SmartSyncOptOutType_validator = bv.Struct(SmartSyncOptOutType) - class SmarterSmartSyncPolicyChangedDetails(bb.Struct): """ Changed automatic Smart Sync setting for team. @@ -90408,13 +87034,15 @@ class SmarterSmartSyncPolicyChangedDetails(bb.Struct): """ __slots__ = [ - "_previous_value_value", - "_new_value_value", + '_previous_value_value', + '_new_value_value', ] _has_required_fields = True - def __init__(self, previous_value=None, new_value=None): + def __init__(self, + previous_value=None, + new_value=None): self._previous_value_value = bb.NOT_SET self._new_value_value = bb.NOT_SET if previous_value is not None: @@ -90429,22 +87057,20 @@ def __init__(self, previous_value=None, new_value=None): new_value = bb.Attribute("new_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SmarterSmartSyncPolicyChangedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SmarterSmartSyncPolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SmarterSmartSyncPolicyChangedDetails_validator = bv.Struct(SmarterSmartSyncPolicyChangedDetails) - class SmarterSmartSyncPolicyChangedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -90453,14 +87079,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SmarterSmartSyncPolicyChangedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SmarterSmartSyncPolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) SmarterSmartSyncPolicyChangedType_validator = bv.Struct(SmarterSmartSyncPolicyChangedType) - class SpaceCapsType(bb.Union): """ Space limit alert policy @@ -90470,7 +87092,7 @@ class SpaceCapsType(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition hard = None # Attribute is overwritten below the class definition @@ -90486,7 +87108,7 @@ def is_hard(self): :rtype: bool """ - return self._tag == "hard" + return self._tag == 'hard' def is_off(self): """ @@ -90494,7 +87116,7 @@ def is_off(self): :rtype: bool """ - return self._tag == "off" + return self._tag == 'off' def is_soft(self): """ @@ -90502,7 +87124,7 @@ def is_soft(self): :rtype: bool """ - return self._tag == "soft" + return self._tag == 'soft' def is_other(self): """ @@ -90510,17 +87132,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SpaceCapsType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SpaceCapsType, self)._process_custom_annotations(annotation_type, field_path, processor) SpaceCapsType_validator = bv.Union(SpaceCapsType) - class SpaceLimitsStatus(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -90528,7 +87146,7 @@ class SpaceLimitsStatus(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition near_quota = None # Attribute is overwritten below the class definition @@ -90544,7 +87162,7 @@ def is_near_quota(self): :rtype: bool """ - return self._tag == "near_quota" + return self._tag == 'near_quota' def is_over_quota(self): """ @@ -90552,7 +87170,7 @@ def is_over_quota(self): :rtype: bool """ - return self._tag == "over_quota" + return self._tag == 'over_quota' def is_within_quota(self): """ @@ -90560,7 +87178,7 @@ def is_within_quota(self): :rtype: bool """ - return self._tag == "within_quota" + return self._tag == 'within_quota' def is_other(self): """ @@ -90568,17 +87186,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SpaceLimitsStatus, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SpaceLimitsStatus, self)._process_custom_annotations(annotation_type, field_path, processor) SpaceLimitsStatus_validator = bv.Union(SpaceLimitsStatus) - class SsoAddCertDetails(bb.Struct): """ Added X.509 certificate for SSO. @@ -90588,12 +87202,13 @@ class SsoAddCertDetails(bb.Struct): """ __slots__ = [ - "_certificate_details_value", + '_certificate_details_value', ] _has_required_fields = True - def __init__(self, certificate_details=None): + def __init__(self, + certificate_details=None): self._certificate_details_value = bb.NOT_SET if certificate_details is not None: self.certificate_details = certificate_details @@ -90602,22 +87217,20 @@ def __init__(self, certificate_details=None): certificate_details = bb.Attribute("certificate_details", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SsoAddCertDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SsoAddCertDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SsoAddCertDetails_validator = bv.Struct(SsoAddCertDetails) - class SsoAddCertType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -90626,14 +87239,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SsoAddCertType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SsoAddCertType, self)._process_custom_annotations(annotation_type, field_path, processor) SsoAddCertType_validator = bv.Struct(SsoAddCertType) - class SsoAddLoginUrlDetails(bb.Struct): """ Added sign-in URL for SSO. @@ -90643,12 +87252,13 @@ class SsoAddLoginUrlDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", + '_new_value_value', ] _has_required_fields = True - def __init__(self, new_value=None): + def __init__(self, + new_value=None): self._new_value_value = bb.NOT_SET if new_value is not None: self.new_value = new_value @@ -90657,22 +87267,20 @@ def __init__(self, new_value=None): new_value = bb.Attribute("new_value") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SsoAddLoginUrlDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SsoAddLoginUrlDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SsoAddLoginUrlDetails_validator = bv.Struct(SsoAddLoginUrlDetails) - class SsoAddLoginUrlType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -90681,14 +87289,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SsoAddLoginUrlType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SsoAddLoginUrlType, self)._process_custom_annotations(annotation_type, field_path, processor) SsoAddLoginUrlType_validator = bv.Struct(SsoAddLoginUrlType) - class SsoAddLogoutUrlDetails(bb.Struct): """ Added sign-out URL for SSO. @@ -90698,12 +87302,13 @@ class SsoAddLogoutUrlDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", + '_new_value_value', ] _has_required_fields = False - def __init__(self, new_value=None): + def __init__(self, + new_value=None): self._new_value_value = bb.NOT_SET if new_value is not None: self.new_value = new_value @@ -90712,22 +87317,20 @@ def __init__(self, new_value=None): new_value = bb.Attribute("new_value", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SsoAddLogoutUrlDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SsoAddLogoutUrlDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SsoAddLogoutUrlDetails_validator = bv.Struct(SsoAddLogoutUrlDetails) - class SsoAddLogoutUrlType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -90736,14 +87339,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SsoAddLogoutUrlType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SsoAddLogoutUrlType, self)._process_custom_annotations(annotation_type, field_path, processor) SsoAddLogoutUrlType_validator = bv.Struct(SsoAddLogoutUrlType) - class SsoChangeCertDetails(bb.Struct): """ Changed X.509 certificate for SSO. @@ -90756,13 +87355,15 @@ class SsoChangeCertDetails(bb.Struct): """ __slots__ = [ - "_previous_certificate_details_value", - "_new_certificate_details_value", + '_previous_certificate_details_value', + '_new_certificate_details_value', ] _has_required_fields = True - def __init__(self, new_certificate_details=None, previous_certificate_details=None): + def __init__(self, + new_certificate_details=None, + previous_certificate_details=None): self._previous_certificate_details_value = bb.NOT_SET self._new_certificate_details_value = bb.NOT_SET if previous_certificate_details is not None: @@ -90771,30 +87372,26 @@ def __init__(self, new_certificate_details=None, previous_certificate_details=No self.new_certificate_details = new_certificate_details # Instance attribute type: Certificate (validator is set below) - previous_certificate_details = bb.Attribute( - "previous_certificate_details", nullable=True, user_defined=True - ) + previous_certificate_details = bb.Attribute("previous_certificate_details", nullable=True, user_defined=True) # Instance attribute type: Certificate (validator is set below) new_certificate_details = bb.Attribute("new_certificate_details", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SsoChangeCertDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SsoChangeCertDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SsoChangeCertDetails_validator = bv.Struct(SsoChangeCertDetails) - class SsoChangeCertType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -90803,14 +87400,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SsoChangeCertType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SsoChangeCertType, self)._process_custom_annotations(annotation_type, field_path, processor) SsoChangeCertType_validator = bv.Struct(SsoChangeCertType) - class SsoChangeLoginUrlDetails(bb.Struct): """ Changed sign-in URL for SSO. @@ -90822,13 +87415,15 @@ class SsoChangeLoginUrlDetails(bb.Struct): """ __slots__ = [ - "_previous_value_value", - "_new_value_value", + '_previous_value_value', + '_new_value_value', ] _has_required_fields = True - def __init__(self, previous_value=None, new_value=None): + def __init__(self, + previous_value=None, + new_value=None): self._previous_value_value = bb.NOT_SET self._new_value_value = bb.NOT_SET if previous_value is not None: @@ -90843,22 +87438,20 @@ def __init__(self, previous_value=None, new_value=None): new_value = bb.Attribute("new_value") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SsoChangeLoginUrlDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SsoChangeLoginUrlDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SsoChangeLoginUrlDetails_validator = bv.Struct(SsoChangeLoginUrlDetails) - class SsoChangeLoginUrlType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -90867,14 +87460,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SsoChangeLoginUrlType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SsoChangeLoginUrlType, self)._process_custom_annotations(annotation_type, field_path, processor) SsoChangeLoginUrlType_validator = bv.Struct(SsoChangeLoginUrlType) - class SsoChangeLogoutUrlDetails(bb.Struct): """ Changed sign-out URL for SSO. @@ -90887,13 +87476,15 @@ class SsoChangeLogoutUrlDetails(bb.Struct): """ __slots__ = [ - "_previous_value_value", - "_new_value_value", + '_previous_value_value', + '_new_value_value', ] _has_required_fields = False - def __init__(self, previous_value=None, new_value=None): + def __init__(self, + previous_value=None, + new_value=None): self._previous_value_value = bb.NOT_SET self._new_value_value = bb.NOT_SET if previous_value is not None: @@ -90908,22 +87499,20 @@ def __init__(self, previous_value=None, new_value=None): new_value = bb.Attribute("new_value", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SsoChangeLogoutUrlDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SsoChangeLogoutUrlDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SsoChangeLogoutUrlDetails_validator = bv.Struct(SsoChangeLogoutUrlDetails) - class SsoChangeLogoutUrlType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -90932,14 +87521,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SsoChangeLogoutUrlType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SsoChangeLogoutUrlType, self)._process_custom_annotations(annotation_type, field_path, processor) SsoChangeLogoutUrlType_validator = bv.Struct(SsoChangeLogoutUrlType) - class SsoChangePolicyDetails(bb.Struct): """ Changed single sign-on setting for team. @@ -90952,13 +87537,15 @@ class SsoChangePolicyDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -90973,22 +87560,20 @@ def __init__(self, new_value=None, previous_value=None): previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SsoChangePolicyDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SsoChangePolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SsoChangePolicyDetails_validator = bv.Struct(SsoChangePolicyDetails) - class SsoChangePolicyType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -90997,14 +87582,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SsoChangePolicyType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SsoChangePolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) SsoChangePolicyType_validator = bv.Struct(SsoChangePolicyType) - class SsoChangeSamlIdentityModeDetails(bb.Struct): """ Changed SAML identity mode for SSO. @@ -91016,13 +87597,15 @@ class SsoChangeSamlIdentityModeDetails(bb.Struct): """ __slots__ = [ - "_previous_value_value", - "_new_value_value", + '_previous_value_value', + '_new_value_value', ] _has_required_fields = True - def __init__(self, previous_value=None, new_value=None): + def __init__(self, + previous_value=None, + new_value=None): self._previous_value_value = bb.NOT_SET self._new_value_value = bb.NOT_SET if previous_value is not None: @@ -91037,22 +87620,20 @@ def __init__(self, previous_value=None, new_value=None): new_value = bb.Attribute("new_value") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SsoChangeSamlIdentityModeDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SsoChangeSamlIdentityModeDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SsoChangeSamlIdentityModeDetails_validator = bv.Struct(SsoChangeSamlIdentityModeDetails) - class SsoChangeSamlIdentityModeType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -91061,14 +87642,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SsoChangeSamlIdentityModeType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SsoChangeSamlIdentityModeType, self)._process_custom_annotations(annotation_type, field_path, processor) SsoChangeSamlIdentityModeType_validator = bv.Struct(SsoChangeSamlIdentityModeType) - class SsoErrorDetails(bb.Struct): """ Failed to sign in via SSO. @@ -91078,12 +87655,13 @@ class SsoErrorDetails(bb.Struct): """ __slots__ = [ - "_error_details_value", + '_error_details_value', ] _has_required_fields = True - def __init__(self, error_details=None): + def __init__(self, + error_details=None): self._error_details_value = bb.NOT_SET if error_details is not None: self.error_details = error_details @@ -91092,22 +87670,20 @@ def __init__(self, error_details=None): error_details = bb.Attribute("error_details", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SsoErrorDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SsoErrorDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SsoErrorDetails_validator = bv.Struct(SsoErrorDetails) - class SsoErrorType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -91116,20 +87692,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SsoErrorType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SsoErrorType, self)._process_custom_annotations(annotation_type, field_path, processor) SsoErrorType_validator = bv.Struct(SsoErrorType) - class SsoRemoveCertDetails(bb.Struct): """ Removed X.509 certificate for SSO. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -91137,22 +87710,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SsoRemoveCertDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SsoRemoveCertDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SsoRemoveCertDetails_validator = bv.Struct(SsoRemoveCertDetails) - class SsoRemoveCertType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -91161,14 +87732,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SsoRemoveCertType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SsoRemoveCertType, self)._process_custom_annotations(annotation_type, field_path, processor) SsoRemoveCertType_validator = bv.Struct(SsoRemoveCertType) - class SsoRemoveLoginUrlDetails(bb.Struct): """ Removed sign-in URL for SSO. @@ -91178,12 +87745,13 @@ class SsoRemoveLoginUrlDetails(bb.Struct): """ __slots__ = [ - "_previous_value_value", + '_previous_value_value', ] _has_required_fields = True - def __init__(self, previous_value=None): + def __init__(self, + previous_value=None): self._previous_value_value = bb.NOT_SET if previous_value is not None: self.previous_value = previous_value @@ -91192,22 +87760,20 @@ def __init__(self, previous_value=None): previous_value = bb.Attribute("previous_value") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SsoRemoveLoginUrlDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SsoRemoveLoginUrlDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SsoRemoveLoginUrlDetails_validator = bv.Struct(SsoRemoveLoginUrlDetails) - class SsoRemoveLoginUrlType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -91216,14 +87782,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SsoRemoveLoginUrlType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SsoRemoveLoginUrlType, self)._process_custom_annotations(annotation_type, field_path, processor) SsoRemoveLoginUrlType_validator = bv.Struct(SsoRemoveLoginUrlType) - class SsoRemoveLogoutUrlDetails(bb.Struct): """ Removed sign-out URL for SSO. @@ -91233,12 +87795,13 @@ class SsoRemoveLogoutUrlDetails(bb.Struct): """ __slots__ = [ - "_previous_value_value", + '_previous_value_value', ] _has_required_fields = True - def __init__(self, previous_value=None): + def __init__(self, + previous_value=None): self._previous_value_value = bb.NOT_SET if previous_value is not None: self.previous_value = previous_value @@ -91247,22 +87810,20 @@ def __init__(self, previous_value=None): previous_value = bb.Attribute("previous_value") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SsoRemoveLogoutUrlDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SsoRemoveLogoutUrlDetails, self)._process_custom_annotations(annotation_type, field_path, processor) SsoRemoveLogoutUrlDetails_validator = bv.Struct(SsoRemoveLogoutUrlDetails) - class SsoRemoveLogoutUrlType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -91271,14 +87832,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SsoRemoveLogoutUrlType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SsoRemoveLogoutUrlType, self)._process_custom_annotations(annotation_type, field_path, processor) SsoRemoveLogoutUrlType_validator = bv.Struct(SsoRemoveLogoutUrlType) - class StackCrossTeamAccessPolicy(bb.Union): """ Policy for whether a team's content can be reached via Stacks owned by other @@ -91289,7 +87846,7 @@ class StackCrossTeamAccessPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition allowed = None # Attribute is overwritten below the class definition @@ -91305,7 +87862,7 @@ def is_allowed(self): :rtype: bool """ - return self._tag == "allowed" + return self._tag == 'allowed' def is_default(self): """ @@ -91313,7 +87870,7 @@ def is_default(self): :rtype: bool """ - return self._tag == "default" + return self._tag == 'default' def is_disallowed(self): """ @@ -91321,7 +87878,7 @@ def is_disallowed(self): :rtype: bool """ - return self._tag == "disallowed" + return self._tag == 'disallowed' def is_other(self): """ @@ -91329,17 +87886,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(StackCrossTeamAccessPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(StackCrossTeamAccessPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) StackCrossTeamAccessPolicy_validator = bv.Union(StackCrossTeamAccessPolicy) - class StackCrossTeamAccessPolicyChangedDetails(bb.Struct): """ Changed cross-team Stack access policy for team. @@ -91352,13 +87905,15 @@ class StackCrossTeamAccessPolicyChangedDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -91373,24 +87928,20 @@ def __init__(self, new_value=None, previous_value=None): previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(StackCrossTeamAccessPolicyChangedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - - -StackCrossTeamAccessPolicyChangedDetails_validator = bv.Struct( - StackCrossTeamAccessPolicyChangedDetails -) + super(StackCrossTeamAccessPolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +StackCrossTeamAccessPolicyChangedDetails_validator = bv.Struct(StackCrossTeamAccessPolicyChangedDetails) class StackCrossTeamAccessPolicyChangedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -91399,14 +87950,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(StackCrossTeamAccessPolicyChangedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(StackCrossTeamAccessPolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) StackCrossTeamAccessPolicyChangedType_validator = bv.Struct(StackCrossTeamAccessPolicyChangedType) - class StartedEnterpriseAdminSessionDetails(bb.Struct): """ Started enterprise admin session. @@ -91416,12 +87963,13 @@ class StartedEnterpriseAdminSessionDetails(bb.Struct): """ __slots__ = [ - "_federation_extra_details_value", + '_federation_extra_details_value', ] _has_required_fields = True - def __init__(self, federation_extra_details=None): + def __init__(self, + federation_extra_details=None): self._federation_extra_details_value = bb.NOT_SET if federation_extra_details is not None: self.federation_extra_details = federation_extra_details @@ -91430,22 +87978,20 @@ def __init__(self, federation_extra_details=None): federation_extra_details = bb.Attribute("federation_extra_details", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(StartedEnterpriseAdminSessionDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(StartedEnterpriseAdminSessionDetails, self)._process_custom_annotations(annotation_type, field_path, processor) StartedEnterpriseAdminSessionDetails_validator = bv.Struct(StartedEnterpriseAdminSessionDetails) - class StartedEnterpriseAdminSessionType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -91454,14 +88000,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(StartedEnterpriseAdminSessionType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(StartedEnterpriseAdminSessionType, self)._process_custom_annotations(annotation_type, field_path, processor) StartedEnterpriseAdminSessionType_validator = bv.Struct(StartedEnterpriseAdminSessionType) - class TeamActivityCreateReportDetails(bb.Struct): """ Created team activity report. @@ -91473,13 +88015,15 @@ class TeamActivityCreateReportDetails(bb.Struct): """ __slots__ = [ - "_start_date_value", - "_end_date_value", + '_start_date_value', + '_end_date_value', ] _has_required_fields = True - def __init__(self, start_date=None, end_date=None): + def __init__(self, + start_date=None, + end_date=None): self._start_date_value = bb.NOT_SET self._end_date_value = bb.NOT_SET if start_date is not None: @@ -91494,14 +88038,10 @@ def __init__(self, start_date=None, end_date=None): end_date = bb.Attribute("end_date") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamActivityCreateReportDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamActivityCreateReportDetails, self)._process_custom_annotations(annotation_type, field_path, processor) TeamActivityCreateReportDetails_validator = bv.Struct(TeamActivityCreateReportDetails) - class TeamActivityCreateReportFailDetails(bb.Struct): """ Couldn't generate team activity report. @@ -91511,12 +88051,13 @@ class TeamActivityCreateReportFailDetails(bb.Struct): """ __slots__ = [ - "_failure_reason_value", + '_failure_reason_value', ] _has_required_fields = True - def __init__(self, failure_reason=None): + def __init__(self, + failure_reason=None): self._failure_reason_value = bb.NOT_SET if failure_reason is not None: self.failure_reason = failure_reason @@ -91525,22 +88066,20 @@ def __init__(self, failure_reason=None): failure_reason = bb.Attribute("failure_reason", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamActivityCreateReportFailDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamActivityCreateReportFailDetails, self)._process_custom_annotations(annotation_type, field_path, processor) TeamActivityCreateReportFailDetails_validator = bv.Struct(TeamActivityCreateReportFailDetails) - class TeamActivityCreateReportFailType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -91549,22 +88088,20 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamActivityCreateReportFailType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamActivityCreateReportFailType, self)._process_custom_annotations(annotation_type, field_path, processor) TeamActivityCreateReportFailType_validator = bv.Struct(TeamActivityCreateReportFailType) - class TeamActivityCreateReportType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -91573,14 +88110,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamActivityCreateReportType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamActivityCreateReportType, self)._process_custom_annotations(annotation_type, field_path, processor) TeamActivityCreateReportType_validator = bv.Struct(TeamActivityCreateReportType) - class TeamBrandingPolicy(bb.Union): """ Policy for controlling team access to setting up branding feature @@ -91590,7 +88123,7 @@ class TeamBrandingPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -91604,7 +88137,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == "disabled" + return self._tag == 'disabled' def is_enabled(self): """ @@ -91612,7 +88145,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == "enabled" + return self._tag == 'enabled' def is_other(self): """ @@ -91620,17 +88153,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamBrandingPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamBrandingPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) TeamBrandingPolicy_validator = bv.Union(TeamBrandingPolicy) - class TeamBrandingPolicyChangedDetails(bb.Struct): """ Changed team branding policy for team. @@ -91642,13 +88171,15 @@ class TeamBrandingPolicyChangedDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -91663,22 +88194,20 @@ def __init__(self, new_value=None, previous_value=None): previous_value = bb.Attribute("previous_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamBrandingPolicyChangedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamBrandingPolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) TeamBrandingPolicyChangedDetails_validator = bv.Struct(TeamBrandingPolicyChangedDetails) - class TeamBrandingPolicyChangedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -91687,14 +88216,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamBrandingPolicyChangedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamBrandingPolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) TeamBrandingPolicyChangedType_validator = bv.Struct(TeamBrandingPolicyChangedType) - class TeamDetails(bb.Struct): """ More details about the team. @@ -91704,12 +88229,13 @@ class TeamDetails(bb.Struct): """ __slots__ = [ - "_team_value", + '_team_value', ] _has_required_fields = True - def __init__(self, team=None): + def __init__(self, + team=None): self._team_value = bb.NOT_SET if team is not None: self.team = team @@ -91720,10 +88246,8 @@ def __init__(self, team=None): def _process_custom_annotations(self, annotation_type, field_path, processor): super(TeamDetails, self)._process_custom_annotations(annotation_type, field_path, processor) - TeamDetails_validator = bv.Struct(TeamDetails) - class TeamEncryptionKeyActivateKeyDetails(bb.Struct): """ Activated team encryption key. @@ -91733,12 +88257,13 @@ class TeamEncryptionKeyActivateKeyDetails(bb.Struct): """ __slots__ = [ - "_key_management_type_value", + '_key_management_type_value', ] _has_required_fields = True - def __init__(self, key_management_type=None): + def __init__(self, + key_management_type=None): self._key_management_type_value = bb.NOT_SET if key_management_type is not None: self.key_management_type = key_management_type @@ -91747,22 +88272,20 @@ def __init__(self, key_management_type=None): key_management_type = bb.Attribute("key_management_type") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamEncryptionKeyActivateKeyDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamEncryptionKeyActivateKeyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) TeamEncryptionKeyActivateKeyDetails_validator = bv.Struct(TeamEncryptionKeyActivateKeyDetails) - class TeamEncryptionKeyActivateKeyType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -91771,20 +88294,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamEncryptionKeyActivateKeyType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamEncryptionKeyActivateKeyType, self)._process_custom_annotations(annotation_type, field_path, processor) TeamEncryptionKeyActivateKeyType_validator = bv.Struct(TeamEncryptionKeyActivateKeyType) - class TeamEncryptionKeyCancelKeyDeletionDetails(bb.Struct): """ Canceled team encryption key deletion. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -91792,24 +88312,20 @@ 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 - ) - - -TeamEncryptionKeyCancelKeyDeletionDetails_validator = bv.Struct( - TeamEncryptionKeyCancelKeyDeletionDetails -) + super(TeamEncryptionKeyCancelKeyDeletionDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +TeamEncryptionKeyCancelKeyDeletionDetails_validator = bv.Struct(TeamEncryptionKeyCancelKeyDeletionDetails) class TeamEncryptionKeyCancelKeyDeletionType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -91818,20 +88334,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamEncryptionKeyCancelKeyDeletionType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamEncryptionKeyCancelKeyDeletionType, self)._process_custom_annotations(annotation_type, field_path, processor) TeamEncryptionKeyCancelKeyDeletionType_validator = bv.Struct(TeamEncryptionKeyCancelKeyDeletionType) - class TeamEncryptionKeyCreateKeyDetails(bb.Struct): """ Created team encryption key. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -91839,22 +88352,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamEncryptionKeyCreateKeyDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamEncryptionKeyCreateKeyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) TeamEncryptionKeyCreateKeyDetails_validator = bv.Struct(TeamEncryptionKeyCreateKeyDetails) - class TeamEncryptionKeyCreateKeyType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -91863,20 +88374,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamEncryptionKeyCreateKeyType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamEncryptionKeyCreateKeyType, self)._process_custom_annotations(annotation_type, field_path, processor) TeamEncryptionKeyCreateKeyType_validator = bv.Struct(TeamEncryptionKeyCreateKeyType) - class TeamEncryptionKeyDeactivateKeyDetails(bb.Struct): """ Deactivated team encryption key. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -91884,22 +88392,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamEncryptionKeyDeactivateKeyDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamEncryptionKeyDeactivateKeyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) TeamEncryptionKeyDeactivateKeyDetails_validator = bv.Struct(TeamEncryptionKeyDeactivateKeyDetails) - class TeamEncryptionKeyDeactivateKeyType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -91908,20 +88414,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamEncryptionKeyDeactivateKeyType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamEncryptionKeyDeactivateKeyType, self)._process_custom_annotations(annotation_type, field_path, processor) TeamEncryptionKeyDeactivateKeyType_validator = bv.Struct(TeamEncryptionKeyDeactivateKeyType) - class TeamEncryptionKeyDeleteKeyDetails(bb.Struct): """ Deleted team encryption key. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -91929,22 +88432,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamEncryptionKeyDeleteKeyDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamEncryptionKeyDeleteKeyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) TeamEncryptionKeyDeleteKeyDetails_validator = bv.Struct(TeamEncryptionKeyDeleteKeyDetails) - class TeamEncryptionKeyDeleteKeyType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -91953,20 +88454,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamEncryptionKeyDeleteKeyType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamEncryptionKeyDeleteKeyType, self)._process_custom_annotations(annotation_type, field_path, processor) TeamEncryptionKeyDeleteKeyType_validator = bv.Struct(TeamEncryptionKeyDeleteKeyType) - class TeamEncryptionKeyDisableKeyDetails(bb.Struct): """ Disabled team encryption key. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -91974,22 +88472,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamEncryptionKeyDisableKeyDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamEncryptionKeyDisableKeyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) TeamEncryptionKeyDisableKeyDetails_validator = bv.Struct(TeamEncryptionKeyDisableKeyDetails) - class TeamEncryptionKeyDisableKeyType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -91998,20 +88494,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamEncryptionKeyDisableKeyType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamEncryptionKeyDisableKeyType, self)._process_custom_annotations(annotation_type, field_path, processor) TeamEncryptionKeyDisableKeyType_validator = bv.Struct(TeamEncryptionKeyDisableKeyType) - class TeamEncryptionKeyEnableKeyDetails(bb.Struct): """ Enabled team encryption key. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -92019,22 +88512,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamEncryptionKeyEnableKeyDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamEncryptionKeyEnableKeyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) TeamEncryptionKeyEnableKeyDetails_validator = bv.Struct(TeamEncryptionKeyEnableKeyDetails) - class TeamEncryptionKeyEnableKeyType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -92043,20 +88534,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamEncryptionKeyEnableKeyType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamEncryptionKeyEnableKeyType, self)._process_custom_annotations(annotation_type, field_path, processor) TeamEncryptionKeyEnableKeyType_validator = bv.Struct(TeamEncryptionKeyEnableKeyType) - class TeamEncryptionKeyRotateKeyDetails(bb.Struct): """ Rotated team encryption key. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -92064,22 +88552,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamEncryptionKeyRotateKeyDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamEncryptionKeyRotateKeyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) TeamEncryptionKeyRotateKeyDetails_validator = bv.Struct(TeamEncryptionKeyRotateKeyDetails) - class TeamEncryptionKeyRotateKeyType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -92088,20 +88574,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamEncryptionKeyRotateKeyType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamEncryptionKeyRotateKeyType, self)._process_custom_annotations(annotation_type, field_path, processor) TeamEncryptionKeyRotateKeyType_validator = bv.Struct(TeamEncryptionKeyRotateKeyType) - class TeamEncryptionKeyScheduleKeyDeletionDetails(bb.Struct): """ Scheduled encryption key deletion. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -92109,24 +88592,20 @@ 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 - ) - - -TeamEncryptionKeyScheduleKeyDeletionDetails_validator = bv.Struct( - TeamEncryptionKeyScheduleKeyDeletionDetails -) + super(TeamEncryptionKeyScheduleKeyDeletionDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +TeamEncryptionKeyScheduleKeyDeletionDetails_validator = bv.Struct(TeamEncryptionKeyScheduleKeyDeletionDetails) class TeamEncryptionKeyScheduleKeyDeletionType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -92135,15 +88614,9 @@ def __init__(self, description=None): 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 - ) - - -TeamEncryptionKeyScheduleKeyDeletionType_validator = bv.Struct( - TeamEncryptionKeyScheduleKeyDeletionType -) + super(TeamEncryptionKeyScheduleKeyDeletionType, self)._process_custom_annotations(annotation_type, field_path, processor) +TeamEncryptionKeyScheduleKeyDeletionType_validator = bv.Struct(TeamEncryptionKeyScheduleKeyDeletionType) class TeamEvent(bb.Struct): """ @@ -92180,33 +88653,31 @@ class TeamEvent(bb.Struct): """ __slots__ = [ - "_timestamp_value", - "_event_category_value", - "_actor_value", - "_origin_value", - "_involve_non_team_member_value", - "_context_value", - "_participants_value", - "_assets_value", - "_event_type_value", - "_details_value", + '_timestamp_value', + '_event_category_value', + '_actor_value', + '_origin_value', + '_involve_non_team_member_value', + '_context_value', + '_participants_value', + '_assets_value', + '_event_type_value', + '_details_value', ] _has_required_fields = True - def __init__( - self, - timestamp=None, - event_category=None, - event_type=None, - details=None, - actor=None, - origin=None, - involve_non_team_member=None, - context=None, - participants=None, - assets=None, - ): + def __init__(self, + timestamp=None, + event_category=None, + event_type=None, + details=None, + actor=None, + origin=None, + involve_non_team_member=None, + context=None, + participants=None, + assets=None): self._timestamp_value = bb.NOT_SET self._event_category_value = bb.NOT_SET self._actor_value = bb.NOT_SET @@ -92271,10 +88742,8 @@ def __init__( def _process_custom_annotations(self, annotation_type, field_path, processor): super(TeamEvent, self)._process_custom_annotations(annotation_type, field_path, processor) - TeamEvent_validator = bv.Struct(TeamEvent) - class TeamExtensionsPolicy(bb.Union): """ Policy for controlling whether App Integrations are enabled for the team. @@ -92284,7 +88753,7 @@ class TeamExtensionsPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -92298,7 +88767,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == "disabled" + return self._tag == 'disabled' def is_enabled(self): """ @@ -92306,7 +88775,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == "enabled" + return self._tag == 'enabled' def is_other(self): """ @@ -92314,17 +88783,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamExtensionsPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamExtensionsPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) TeamExtensionsPolicy_validator = bv.Union(TeamExtensionsPolicy) - class TeamExtensionsPolicyChangedDetails(bb.Struct): """ Changed App Integrations setting for team. @@ -92336,13 +88801,15 @@ class TeamExtensionsPolicyChangedDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -92357,22 +88824,20 @@ def __init__(self, new_value=None, previous_value=None): previous_value = bb.Attribute("previous_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamExtensionsPolicyChangedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamExtensionsPolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) TeamExtensionsPolicyChangedDetails_validator = bv.Struct(TeamExtensionsPolicyChangedDetails) - class TeamExtensionsPolicyChangedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -92381,14 +88846,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamExtensionsPolicyChangedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamExtensionsPolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) TeamExtensionsPolicyChangedType_validator = bv.Struct(TeamExtensionsPolicyChangedType) - class TeamFolderChangeStatusDetails(bb.Struct): """ Changed archival status of team folder. @@ -92401,13 +88862,15 @@ class TeamFolderChangeStatusDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -92422,22 +88885,20 @@ def __init__(self, new_value=None, previous_value=None): previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderChangeStatusDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamFolderChangeStatusDetails, self)._process_custom_annotations(annotation_type, field_path, processor) TeamFolderChangeStatusDetails_validator = bv.Struct(TeamFolderChangeStatusDetails) - class TeamFolderChangeStatusType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -92446,20 +88907,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderChangeStatusType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamFolderChangeStatusType, self)._process_custom_annotations(annotation_type, field_path, processor) TeamFolderChangeStatusType_validator = bv.Struct(TeamFolderChangeStatusType) - class TeamFolderCreateDetails(bb.Struct): """ Created team folder in active status. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -92467,22 +88925,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderCreateDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamFolderCreateDetails, self)._process_custom_annotations(annotation_type, field_path, processor) TeamFolderCreateDetails_validator = bv.Struct(TeamFolderCreateDetails) - class TeamFolderCreateType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -92491,14 +88947,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderCreateType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamFolderCreateType, self)._process_custom_annotations(annotation_type, field_path, processor) TeamFolderCreateType_validator = bv.Struct(TeamFolderCreateType) - class TeamFolderDowngradeDetails(bb.Struct): """ Downgraded team folder to regular shared folder. @@ -92508,12 +88960,13 @@ class TeamFolderDowngradeDetails(bb.Struct): """ __slots__ = [ - "_target_asset_index_value", + '_target_asset_index_value', ] _has_required_fields = True - def __init__(self, target_asset_index=None): + def __init__(self, + target_asset_index=None): self._target_asset_index_value = bb.NOT_SET if target_asset_index is not None: self.target_asset_index = target_asset_index @@ -92522,22 +88975,20 @@ def __init__(self, target_asset_index=None): target_asset_index = bb.Attribute("target_asset_index") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderDowngradeDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamFolderDowngradeDetails, self)._process_custom_annotations(annotation_type, field_path, processor) TeamFolderDowngradeDetails_validator = bv.Struct(TeamFolderDowngradeDetails) - class TeamFolderDowngradeType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -92546,14 +88997,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderDowngradeType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamFolderDowngradeType, self)._process_custom_annotations(annotation_type, field_path, processor) TeamFolderDowngradeType_validator = bv.Struct(TeamFolderDowngradeType) - class TeamFolderNotificationTarget(bb.Union): """ Team folder space limit notification target @@ -92563,7 +89010,7 @@ class TeamFolderNotificationTarget(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition admins = None # Attribute is overwritten below the class definition @@ -92581,7 +89028,7 @@ def is_admins(self): :rtype: bool """ - return self._tag == "admins" + return self._tag == 'admins' def is_both(self): """ @@ -92589,7 +89036,7 @@ def is_both(self): :rtype: bool """ - return self._tag == "both" + return self._tag == 'both' def is_editors(self): """ @@ -92597,7 +89044,7 @@ def is_editors(self): :rtype: bool """ - return self._tag == "editors" + return self._tag == 'editors' def is_silent(self): """ @@ -92605,7 +89052,7 @@ def is_silent(self): :rtype: bool """ - return self._tag == "silent" + return self._tag == 'silent' def is_other(self): """ @@ -92613,23 +89060,20 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderNotificationTarget, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamFolderNotificationTarget, self)._process_custom_annotations(annotation_type, field_path, processor) TeamFolderNotificationTarget_validator = bv.Union(TeamFolderNotificationTarget) - class TeamFolderPermanentlyDeleteDetails(bb.Struct): """ Permanently deleted archived team folder. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -92637,22 +89081,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderPermanentlyDeleteDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamFolderPermanentlyDeleteDetails, self)._process_custom_annotations(annotation_type, field_path, processor) TeamFolderPermanentlyDeleteDetails_validator = bv.Struct(TeamFolderPermanentlyDeleteDetails) - class TeamFolderPermanentlyDeleteType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -92661,14 +89103,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderPermanentlyDeleteType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamFolderPermanentlyDeleteType, self)._process_custom_annotations(annotation_type, field_path, processor) TeamFolderPermanentlyDeleteType_validator = bv.Struct(TeamFolderPermanentlyDeleteType) - class TeamFolderRenameDetails(bb.Struct): """ Renamed active/archived team folder. @@ -92680,13 +89118,15 @@ class TeamFolderRenameDetails(bb.Struct): """ __slots__ = [ - "_previous_folder_name_value", - "_new_folder_name_value", + '_previous_folder_name_value', + '_new_folder_name_value', ] _has_required_fields = True - def __init__(self, previous_folder_name=None, new_folder_name=None): + def __init__(self, + previous_folder_name=None, + new_folder_name=None): self._previous_folder_name_value = bb.NOT_SET self._new_folder_name_value = bb.NOT_SET if previous_folder_name is not None: @@ -92701,22 +89141,20 @@ def __init__(self, previous_folder_name=None, new_folder_name=None): new_folder_name = bb.Attribute("new_folder_name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderRenameDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamFolderRenameDetails, self)._process_custom_annotations(annotation_type, field_path, processor) TeamFolderRenameDetails_validator = bv.Struct(TeamFolderRenameDetails) - class TeamFolderRenameType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -92725,14 +89163,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderRenameType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamFolderRenameType, self)._process_custom_annotations(annotation_type, field_path, processor) TeamFolderRenameType_validator = bv.Struct(TeamFolderRenameType) - class TeamFolderSpaceCapsType(bb.Union): """ Team folder space limit enforcement type @@ -92742,7 +89176,7 @@ class TeamFolderSpaceCapsType(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition hard = None # Attribute is overwritten below the class definition @@ -92758,7 +89192,7 @@ def is_hard(self): :rtype: bool """ - return self._tag == "hard" + return self._tag == 'hard' def is_off(self): """ @@ -92766,7 +89200,7 @@ def is_off(self): :rtype: bool """ - return self._tag == "off" + return self._tag == 'off' def is_soft(self): """ @@ -92774,7 +89208,7 @@ def is_soft(self): :rtype: bool """ - return self._tag == "soft" + return self._tag == 'soft' def is_other(self): """ @@ -92782,17 +89216,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderSpaceCapsType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamFolderSpaceCapsType, self)._process_custom_annotations(annotation_type, field_path, processor) TeamFolderSpaceCapsType_validator = bv.Union(TeamFolderSpaceCapsType) - class TeamFolderSpaceLimitsChangeCapsTypeDetails(bb.Struct): """ Changed team folder space limit enforcement type. @@ -92804,13 +89234,15 @@ class TeamFolderSpaceLimitsChangeCapsTypeDetails(bb.Struct): """ __slots__ = [ - "_previous_caps_type_value", - "_new_caps_type_value", + '_previous_caps_type_value', + '_new_caps_type_value', ] _has_required_fields = True - def __init__(self, new_caps_type=None, previous_caps_type=None): + def __init__(self, + new_caps_type=None, + previous_caps_type=None): self._previous_caps_type_value = bb.NOT_SET self._new_caps_type_value = bb.NOT_SET if previous_caps_type is not None: @@ -92825,24 +89257,20 @@ def __init__(self, new_caps_type=None, previous_caps_type=None): new_caps_type = bb.Attribute("new_caps_type", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderSpaceLimitsChangeCapsTypeDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - - -TeamFolderSpaceLimitsChangeCapsTypeDetails_validator = bv.Struct( - TeamFolderSpaceLimitsChangeCapsTypeDetails -) + super(TeamFolderSpaceLimitsChangeCapsTypeDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +TeamFolderSpaceLimitsChangeCapsTypeDetails_validator = bv.Struct(TeamFolderSpaceLimitsChangeCapsTypeDetails) class TeamFolderSpaceLimitsChangeCapsTypeType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -92851,15 +89279,9 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderSpaceLimitsChangeCapsTypeType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - - -TeamFolderSpaceLimitsChangeCapsTypeType_validator = bv.Struct( - TeamFolderSpaceLimitsChangeCapsTypeType -) + super(TeamFolderSpaceLimitsChangeCapsTypeType, self)._process_custom_annotations(annotation_type, field_path, processor) +TeamFolderSpaceLimitsChangeCapsTypeType_validator = bv.Struct(TeamFolderSpaceLimitsChangeCapsTypeType) class TeamFolderSpaceLimitsChangeLimitDetails(bb.Struct): """ @@ -92872,13 +89294,15 @@ class TeamFolderSpaceLimitsChangeLimitDetails(bb.Struct): """ __slots__ = [ - "_previous_limit_bytes_value", - "_new_limit_bytes_value", + '_previous_limit_bytes_value', + '_new_limit_bytes_value', ] _has_required_fields = True - def __init__(self, new_limit_bytes=None, previous_limit_bytes=None): + def __init__(self, + new_limit_bytes=None, + previous_limit_bytes=None): self._previous_limit_bytes_value = bb.NOT_SET self._new_limit_bytes_value = bb.NOT_SET if previous_limit_bytes is not None: @@ -92893,24 +89317,20 @@ def __init__(self, new_limit_bytes=None, previous_limit_bytes=None): new_limit_bytes = bb.Attribute("new_limit_bytes") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderSpaceLimitsChangeLimitDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - - -TeamFolderSpaceLimitsChangeLimitDetails_validator = bv.Struct( - TeamFolderSpaceLimitsChangeLimitDetails -) + super(TeamFolderSpaceLimitsChangeLimitDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +TeamFolderSpaceLimitsChangeLimitDetails_validator = bv.Struct(TeamFolderSpaceLimitsChangeLimitDetails) class TeamFolderSpaceLimitsChangeLimitType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -92919,14 +89339,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderSpaceLimitsChangeLimitType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamFolderSpaceLimitsChangeLimitType, self)._process_custom_annotations(annotation_type, field_path, processor) TeamFolderSpaceLimitsChangeLimitType_validator = bv.Struct(TeamFolderSpaceLimitsChangeLimitType) - class TeamFolderSpaceLimitsChangeNotificationTargetDetails(bb.Struct): """ Changed team folder space limit notification target. @@ -92938,13 +89354,15 @@ class TeamFolderSpaceLimitsChangeNotificationTargetDetails(bb.Struct): """ __slots__ = [ - "_previous_target_value", - "_new_target_value", + '_previous_target_value', + '_new_target_value', ] _has_required_fields = True - def __init__(self, new_target=None, previous_target=None): + def __init__(self, + new_target=None, + previous_target=None): self._previous_target_value = bb.NOT_SET self._new_target_value = bb.NOT_SET if previous_target is not None: @@ -92959,24 +89377,20 @@ def __init__(self, new_target=None, previous_target=None): new_target = bb.Attribute("new_target", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super( - TeamFolderSpaceLimitsChangeNotificationTargetDetails, self - )._process_custom_annotations(annotation_type, field_path, processor) - - -TeamFolderSpaceLimitsChangeNotificationTargetDetails_validator = bv.Struct( - TeamFolderSpaceLimitsChangeNotificationTargetDetails -) + super(TeamFolderSpaceLimitsChangeNotificationTargetDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +TeamFolderSpaceLimitsChangeNotificationTargetDetails_validator = bv.Struct(TeamFolderSpaceLimitsChangeNotificationTargetDetails) class TeamFolderSpaceLimitsChangeNotificationTargetType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -92985,22 +89399,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderSpaceLimitsChangeNotificationTargetType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - - -TeamFolderSpaceLimitsChangeNotificationTargetType_validator = bv.Struct( - TeamFolderSpaceLimitsChangeNotificationTargetType -) + super(TeamFolderSpaceLimitsChangeNotificationTargetType, self)._process_custom_annotations(annotation_type, field_path, processor) +TeamFolderSpaceLimitsChangeNotificationTargetType_validator = bv.Struct(TeamFolderSpaceLimitsChangeNotificationTargetType) class TeamFoldersCreateReportDetails(bb.Struct): """ Created team folders report. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -93008,14 +89417,10 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFoldersCreateReportDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamFoldersCreateReportDetails, self)._process_custom_annotations(annotation_type, field_path, processor) TeamFoldersCreateReportDetails_validator = bv.Struct(TeamFoldersCreateReportDetails) - class TeamFoldersCreateReportFailedDetails(bb.Struct): """ Couldn't generate team folders report. @@ -93025,12 +89430,13 @@ class TeamFoldersCreateReportFailedDetails(bb.Struct): """ __slots__ = [ - "_failure_reason_value", + '_failure_reason_value', ] _has_required_fields = True - def __init__(self, failure_reason=None): + def __init__(self, + failure_reason=None): self._failure_reason_value = bb.NOT_SET if failure_reason is not None: self.failure_reason = failure_reason @@ -93039,22 +89445,20 @@ def __init__(self, failure_reason=None): failure_reason = bb.Attribute("failure_reason", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFoldersCreateReportFailedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamFoldersCreateReportFailedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) TeamFoldersCreateReportFailedDetails_validator = bv.Struct(TeamFoldersCreateReportFailedDetails) - class TeamFoldersCreateReportFailedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -93063,22 +89467,20 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFoldersCreateReportFailedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamFoldersCreateReportFailedType, self)._process_custom_annotations(annotation_type, field_path, processor) TeamFoldersCreateReportFailedType_validator = bv.Struct(TeamFoldersCreateReportFailedType) - class TeamFoldersCreateReportType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -93087,14 +89489,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFoldersCreateReportType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamFoldersCreateReportType, self)._process_custom_annotations(annotation_type, field_path, processor) TeamFoldersCreateReportType_validator = bv.Struct(TeamFoldersCreateReportType) - class TeamInviteDetails(bb.Struct): """ Details about team invites @@ -93106,13 +89504,15 @@ class TeamInviteDetails(bb.Struct): """ __slots__ = [ - "_invite_method_value", - "_additional_license_purchase_value", + '_invite_method_value', + '_additional_license_purchase_value', ] _has_required_fields = True - def __init__(self, invite_method=None, additional_license_purchase=None): + def __init__(self, + invite_method=None, + additional_license_purchase=None): self._invite_method_value = bb.NOT_SET self._additional_license_purchase_value = bb.NOT_SET if invite_method is not None: @@ -93127,35 +89527,31 @@ def __init__(self, invite_method=None, additional_license_purchase=None): additional_license_purchase = bb.Attribute("additional_license_purchase", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamInviteDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamInviteDetails, self)._process_custom_annotations(annotation_type, field_path, processor) TeamInviteDetails_validator = bv.Struct(TeamInviteDetails) - class TeamLinkedAppLogInfo(AppLogInfo): """ Team linked app """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False - def __init__(self, app_id=None, display_name=None): - super(TeamLinkedAppLogInfo, self).__init__(app_id, display_name) + def __init__(self, + app_id=None, + display_name=None): + super(TeamLinkedAppLogInfo, self).__init__(app_id, + display_name) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamLinkedAppLogInfo, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamLinkedAppLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) TeamLinkedAppLogInfo_validator = bv.Struct(TeamLinkedAppLogInfo) - class TeamLogInfo(bb.Struct): """ Team's logged information. @@ -93165,12 +89561,13 @@ class TeamLogInfo(bb.Struct): """ __slots__ = [ - "_display_name_value", + '_display_name_value', ] _has_required_fields = True - def __init__(self, display_name=None): + def __init__(self, + display_name=None): self._display_name_value = bb.NOT_SET if display_name is not None: self.display_name = display_name @@ -93181,10 +89578,8 @@ def __init__(self, display_name=None): def _process_custom_annotations(self, annotation_type, field_path, processor): super(TeamLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) - TeamLogInfo_validator = bv.Struct(TeamLogInfo) - class TeamMemberLogInfo(UserLogInfo): """ Team member's logged information. @@ -93198,23 +89593,23 @@ class TeamMemberLogInfo(UserLogInfo): """ __slots__ = [ - "_team_member_id_value", - "_member_external_id_value", - "_team_value", + '_team_member_id_value', + '_member_external_id_value', + '_team_value', ] _has_required_fields = False - def __init__( - self, - account_id=None, - display_name=None, - email=None, - team_member_id=None, - member_external_id=None, - team=None, - ): - super(TeamMemberLogInfo, self).__init__(account_id, display_name, email) + def __init__(self, + account_id=None, + display_name=None, + email=None, + team_member_id=None, + member_external_id=None, + team=None): + super(TeamMemberLogInfo, self).__init__(account_id, + display_name, + email) self._team_member_id_value = bb.NOT_SET self._member_external_id_value = bb.NOT_SET self._team_value = bb.NOT_SET @@ -93235,14 +89630,10 @@ def __init__( team = bb.Attribute("team", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMemberLogInfo, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamMemberLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) TeamMemberLogInfo_validator = bv.Struct(TeamMemberLogInfo) - class TeamMemberStorageRequestPolicy(bb.Union): """ Policy for deciding whether team members can request increased storage @@ -93253,7 +89644,7 @@ class TeamMemberStorageRequestPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition default = None # Attribute is overwritten below the class definition @@ -93269,7 +89660,7 @@ def is_default(self): :rtype: bool """ - return self._tag == "default" + return self._tag == 'default' def is_disabled(self): """ @@ -93277,7 +89668,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == "disabled" + return self._tag == 'disabled' def is_enabled(self): """ @@ -93285,7 +89676,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == "enabled" + return self._tag == 'enabled' def is_other(self): """ @@ -93293,17 +89684,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMemberStorageRequestPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamMemberStorageRequestPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) TeamMemberStorageRequestPolicy_validator = bv.Union(TeamMemberStorageRequestPolicy) - class TeamMemberStorageRequestPolicyChangedDetails(bb.Struct): """ Changed team member storage request policy for team. @@ -93316,13 +89703,15 @@ class TeamMemberStorageRequestPolicyChangedDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -93337,24 +89726,20 @@ def __init__(self, new_value=None, previous_value=None): previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMemberStorageRequestPolicyChangedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - - -TeamMemberStorageRequestPolicyChangedDetails_validator = bv.Struct( - TeamMemberStorageRequestPolicyChangedDetails -) + super(TeamMemberStorageRequestPolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +TeamMemberStorageRequestPolicyChangedDetails_validator = bv.Struct(TeamMemberStorageRequestPolicyChangedDetails) class TeamMemberStorageRequestPolicyChangedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -93363,15 +89748,9 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMemberStorageRequestPolicyChangedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - - -TeamMemberStorageRequestPolicyChangedType_validator = bv.Struct( - TeamMemberStorageRequestPolicyChangedType -) + super(TeamMemberStorageRequestPolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) +TeamMemberStorageRequestPolicyChangedType_validator = bv.Struct(TeamMemberStorageRequestPolicyChangedType) class TeamMembershipType(bb.Union): """ @@ -93380,7 +89759,7 @@ class TeamMembershipType(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition free = None # Attribute is overwritten below the class definition @@ -93396,7 +89775,7 @@ def is_free(self): :rtype: bool """ - return self._tag == "free" + return self._tag == 'free' def is_full(self): """ @@ -93404,7 +89783,7 @@ def is_full(self): :rtype: bool """ - return self._tag == "full" + return self._tag == 'full' def is_guest(self): """ @@ -93412,7 +89791,7 @@ def is_guest(self): :rtype: bool """ - return self._tag == "guest" + return self._tag == 'guest' def is_other(self): """ @@ -93420,17 +89799,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMembershipType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamMembershipType, self)._process_custom_annotations(annotation_type, field_path, processor) TeamMembershipType_validator = bv.Union(TeamMembershipType) - class TeamMergeFromDetails(bb.Struct): """ Merged another team into this team. @@ -93440,12 +89815,13 @@ class TeamMergeFromDetails(bb.Struct): """ __slots__ = [ - "_team_name_value", + '_team_name_value', ] _has_required_fields = True - def __init__(self, team_name=None): + def __init__(self, + team_name=None): self._team_name_value = bb.NOT_SET if team_name is not None: self.team_name = team_name @@ -93454,22 +89830,20 @@ def __init__(self, team_name=None): team_name = bb.Attribute("team_name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMergeFromDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamMergeFromDetails, self)._process_custom_annotations(annotation_type, field_path, processor) TeamMergeFromDetails_validator = bv.Struct(TeamMergeFromDetails) - class TeamMergeFromType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -93478,14 +89852,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMergeFromType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamMergeFromType, self)._process_custom_annotations(annotation_type, field_path, processor) TeamMergeFromType_validator = bv.Struct(TeamMergeFromType) - class TeamMergeRequestAcceptedDetails(bb.Struct): """ Accepted a team merge request. @@ -93495,12 +89865,13 @@ class TeamMergeRequestAcceptedDetails(bb.Struct): """ __slots__ = [ - "_request_accepted_details_value", + '_request_accepted_details_value', ] _has_required_fields = True - def __init__(self, request_accepted_details=None): + def __init__(self, + request_accepted_details=None): self._request_accepted_details_value = bb.NOT_SET if request_accepted_details is not None: self.request_accepted_details = request_accepted_details @@ -93509,14 +89880,10 @@ def __init__(self, request_accepted_details=None): request_accepted_details = bb.Attribute("request_accepted_details", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMergeRequestAcceptedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamMergeRequestAcceptedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) TeamMergeRequestAcceptedDetails_validator = bv.Struct(TeamMergeRequestAcceptedDetails) - class TeamMergeRequestAcceptedExtraDetails(bb.Union): """ Team merge request acceptance details @@ -93533,7 +89900,7 @@ class TeamMergeRequestAcceptedExtraDetails(bb.Union): :vartype TeamMergeRequestAcceptedExtraDetails.secondary_team: SecondaryTeamRequestAcceptedDetails """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -93546,7 +89913,7 @@ def primary_team(cls, val): :param PrimaryTeamRequestAcceptedDetails val: :rtype: TeamMergeRequestAcceptedExtraDetails """ - return cls("primary_team", val) + return cls('primary_team', val) @classmethod def secondary_team(cls, val): @@ -93557,7 +89924,7 @@ def secondary_team(cls, val): :param SecondaryTeamRequestAcceptedDetails val: :rtype: TeamMergeRequestAcceptedExtraDetails """ - return cls("secondary_team", val) + return cls('secondary_team', val) def is_primary_team(self): """ @@ -93565,7 +89932,7 @@ def is_primary_team(self): :rtype: bool """ - return self._tag == "primary_team" + return self._tag == 'primary_team' def is_secondary_team(self): """ @@ -93573,7 +89940,7 @@ def is_secondary_team(self): :rtype: bool """ - return self._tag == "secondary_team" + return self._tag == 'secondary_team' def is_other(self): """ @@ -93581,7 +89948,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_primary_team(self): """ @@ -93608,14 +89975,10 @@ def get_secondary_team(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMergeRequestAcceptedExtraDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamMergeRequestAcceptedExtraDetails, self)._process_custom_annotations(annotation_type, field_path, processor) TeamMergeRequestAcceptedExtraDetails_validator = bv.Union(TeamMergeRequestAcceptedExtraDetails) - class TeamMergeRequestAcceptedShownToPrimaryTeamDetails(bb.Struct): """ Accepted a team merge request. @@ -93627,13 +89990,15 @@ class TeamMergeRequestAcceptedShownToPrimaryTeamDetails(bb.Struct): """ __slots__ = [ - "_secondary_team_value", - "_sent_by_value", + '_secondary_team_value', + '_sent_by_value', ] _has_required_fields = True - def __init__(self, secondary_team=None, sent_by=None): + def __init__(self, + secondary_team=None, + sent_by=None): self._secondary_team_value = bb.NOT_SET self._sent_by_value = bb.NOT_SET if secondary_team is not None: @@ -93648,24 +90013,20 @@ def __init__(self, secondary_team=None, sent_by=None): 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 - ) - - -TeamMergeRequestAcceptedShownToPrimaryTeamDetails_validator = bv.Struct( - TeamMergeRequestAcceptedShownToPrimaryTeamDetails -) + super(TeamMergeRequestAcceptedShownToPrimaryTeamDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +TeamMergeRequestAcceptedShownToPrimaryTeamDetails_validator = bv.Struct(TeamMergeRequestAcceptedShownToPrimaryTeamDetails) class TeamMergeRequestAcceptedShownToPrimaryTeamType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -93674,15 +90035,9 @@ def __init__(self, description=None): 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 - ) - - -TeamMergeRequestAcceptedShownToPrimaryTeamType_validator = bv.Struct( - TeamMergeRequestAcceptedShownToPrimaryTeamType -) + super(TeamMergeRequestAcceptedShownToPrimaryTeamType, self)._process_custom_annotations(annotation_type, field_path, processor) +TeamMergeRequestAcceptedShownToPrimaryTeamType_validator = bv.Struct(TeamMergeRequestAcceptedShownToPrimaryTeamType) class TeamMergeRequestAcceptedShownToSecondaryTeamDetails(bb.Struct): """ @@ -93695,13 +90050,15 @@ class TeamMergeRequestAcceptedShownToSecondaryTeamDetails(bb.Struct): """ __slots__ = [ - "_primary_team_value", - "_sent_by_value", + '_primary_team_value', + '_sent_by_value', ] _has_required_fields = True - def __init__(self, primary_team=None, sent_by=None): + def __init__(self, + primary_team=None, + sent_by=None): self._primary_team_value = bb.NOT_SET self._sent_by_value = bb.NOT_SET if primary_team is not None: @@ -93716,24 +90073,20 @@ def __init__(self, primary_team=None, sent_by=None): 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) - - -TeamMergeRequestAcceptedShownToSecondaryTeamDetails_validator = bv.Struct( - TeamMergeRequestAcceptedShownToSecondaryTeamDetails -) + super(TeamMergeRequestAcceptedShownToSecondaryTeamDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +TeamMergeRequestAcceptedShownToSecondaryTeamDetails_validator = bv.Struct(TeamMergeRequestAcceptedShownToSecondaryTeamDetails) class TeamMergeRequestAcceptedShownToSecondaryTeamType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -93742,24 +90095,20 @@ def __init__(self, description=None): 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 - ) - - -TeamMergeRequestAcceptedShownToSecondaryTeamType_validator = bv.Struct( - TeamMergeRequestAcceptedShownToSecondaryTeamType -) + super(TeamMergeRequestAcceptedShownToSecondaryTeamType, self)._process_custom_annotations(annotation_type, field_path, processor) +TeamMergeRequestAcceptedShownToSecondaryTeamType_validator = bv.Struct(TeamMergeRequestAcceptedShownToSecondaryTeamType) class TeamMergeRequestAcceptedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -93768,14 +90117,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMergeRequestAcceptedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamMergeRequestAcceptedType, self)._process_custom_annotations(annotation_type, field_path, processor) TeamMergeRequestAcceptedType_validator = bv.Struct(TeamMergeRequestAcceptedType) - class TeamMergeRequestAutoCanceledDetails(bb.Struct): """ Automatically canceled team merge request. @@ -93785,12 +90130,13 @@ class TeamMergeRequestAutoCanceledDetails(bb.Struct): """ __slots__ = [ - "_details_value", + '_details_value', ] _has_required_fields = False - def __init__(self, details=None): + def __init__(self, + details=None): self._details_value = bb.NOT_SET if details is not None: self.details = details @@ -93799,22 +90145,20 @@ def __init__(self, details=None): details = bb.Attribute("details", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMergeRequestAutoCanceledDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamMergeRequestAutoCanceledDetails, self)._process_custom_annotations(annotation_type, field_path, processor) TeamMergeRequestAutoCanceledDetails_validator = bv.Struct(TeamMergeRequestAutoCanceledDetails) - class TeamMergeRequestAutoCanceledType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -93823,14 +90167,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMergeRequestAutoCanceledType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamMergeRequestAutoCanceledType, self)._process_custom_annotations(annotation_type, field_path, processor) TeamMergeRequestAutoCanceledType_validator = bv.Struct(TeamMergeRequestAutoCanceledType) - class TeamMergeRequestCanceledDetails(bb.Struct): """ Canceled a team merge request. @@ -93840,12 +90180,13 @@ class TeamMergeRequestCanceledDetails(bb.Struct): """ __slots__ = [ - "_request_canceled_details_value", + '_request_canceled_details_value', ] _has_required_fields = True - def __init__(self, request_canceled_details=None): + def __init__(self, + request_canceled_details=None): self._request_canceled_details_value = bb.NOT_SET if request_canceled_details is not None: self.request_canceled_details = request_canceled_details @@ -93854,14 +90195,10 @@ def __init__(self, request_canceled_details=None): request_canceled_details = bb.Attribute("request_canceled_details", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMergeRequestCanceledDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamMergeRequestCanceledDetails, self)._process_custom_annotations(annotation_type, field_path, processor) TeamMergeRequestCanceledDetails_validator = bv.Struct(TeamMergeRequestCanceledDetails) - class TeamMergeRequestCanceledExtraDetails(bb.Union): """ Team merge request cancellation details @@ -93878,7 +90215,7 @@ class TeamMergeRequestCanceledExtraDetails(bb.Union): :vartype TeamMergeRequestCanceledExtraDetails.secondary_team: SecondaryTeamRequestCanceledDetails """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -93891,7 +90228,7 @@ def primary_team(cls, val): :param PrimaryTeamRequestCanceledDetails val: :rtype: TeamMergeRequestCanceledExtraDetails """ - return cls("primary_team", val) + return cls('primary_team', val) @classmethod def secondary_team(cls, val): @@ -93902,7 +90239,7 @@ def secondary_team(cls, val): :param SecondaryTeamRequestCanceledDetails val: :rtype: TeamMergeRequestCanceledExtraDetails """ - return cls("secondary_team", val) + return cls('secondary_team', val) def is_primary_team(self): """ @@ -93910,7 +90247,7 @@ def is_primary_team(self): :rtype: bool """ - return self._tag == "primary_team" + return self._tag == 'primary_team' def is_secondary_team(self): """ @@ -93918,7 +90255,7 @@ def is_secondary_team(self): :rtype: bool """ - return self._tag == "secondary_team" + return self._tag == 'secondary_team' def is_other(self): """ @@ -93926,7 +90263,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_primary_team(self): """ @@ -93953,14 +90290,10 @@ def get_secondary_team(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMergeRequestCanceledExtraDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamMergeRequestCanceledExtraDetails, self)._process_custom_annotations(annotation_type, field_path, processor) TeamMergeRequestCanceledExtraDetails_validator = bv.Union(TeamMergeRequestCanceledExtraDetails) - class TeamMergeRequestCanceledShownToPrimaryTeamDetails(bb.Struct): """ Canceled a team merge request. @@ -93972,13 +90305,15 @@ class TeamMergeRequestCanceledShownToPrimaryTeamDetails(bb.Struct): """ __slots__ = [ - "_secondary_team_value", - "_sent_by_value", + '_secondary_team_value', + '_sent_by_value', ] _has_required_fields = True - def __init__(self, secondary_team=None, sent_by=None): + def __init__(self, + secondary_team=None, + sent_by=None): self._secondary_team_value = bb.NOT_SET self._sent_by_value = bb.NOT_SET if secondary_team is not None: @@ -93993,24 +90328,20 @@ def __init__(self, secondary_team=None, sent_by=None): 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 - ) - - -TeamMergeRequestCanceledShownToPrimaryTeamDetails_validator = bv.Struct( - TeamMergeRequestCanceledShownToPrimaryTeamDetails -) + super(TeamMergeRequestCanceledShownToPrimaryTeamDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +TeamMergeRequestCanceledShownToPrimaryTeamDetails_validator = bv.Struct(TeamMergeRequestCanceledShownToPrimaryTeamDetails) class TeamMergeRequestCanceledShownToPrimaryTeamType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -94019,15 +90350,9 @@ def __init__(self, description=None): 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 - ) - - -TeamMergeRequestCanceledShownToPrimaryTeamType_validator = bv.Struct( - TeamMergeRequestCanceledShownToPrimaryTeamType -) + super(TeamMergeRequestCanceledShownToPrimaryTeamType, self)._process_custom_annotations(annotation_type, field_path, processor) +TeamMergeRequestCanceledShownToPrimaryTeamType_validator = bv.Struct(TeamMergeRequestCanceledShownToPrimaryTeamType) class TeamMergeRequestCanceledShownToSecondaryTeamDetails(bb.Struct): """ @@ -94040,13 +90365,15 @@ class TeamMergeRequestCanceledShownToSecondaryTeamDetails(bb.Struct): """ __slots__ = [ - "_sent_to_value", - "_sent_by_value", + '_sent_to_value', + '_sent_by_value', ] _has_required_fields = True - def __init__(self, sent_to=None, sent_by=None): + def __init__(self, + sent_to=None, + sent_by=None): self._sent_to_value = bb.NOT_SET self._sent_by_value = bb.NOT_SET if sent_to is not None: @@ -94061,24 +90388,20 @@ def __init__(self, sent_to=None, sent_by=None): 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) - - -TeamMergeRequestCanceledShownToSecondaryTeamDetails_validator = bv.Struct( - TeamMergeRequestCanceledShownToSecondaryTeamDetails -) + super(TeamMergeRequestCanceledShownToSecondaryTeamDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +TeamMergeRequestCanceledShownToSecondaryTeamDetails_validator = bv.Struct(TeamMergeRequestCanceledShownToSecondaryTeamDetails) class TeamMergeRequestCanceledShownToSecondaryTeamType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -94087,24 +90410,20 @@ def __init__(self, description=None): 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 - ) - - -TeamMergeRequestCanceledShownToSecondaryTeamType_validator = bv.Struct( - TeamMergeRequestCanceledShownToSecondaryTeamType -) + super(TeamMergeRequestCanceledShownToSecondaryTeamType, self)._process_custom_annotations(annotation_type, field_path, processor) +TeamMergeRequestCanceledShownToSecondaryTeamType_validator = bv.Struct(TeamMergeRequestCanceledShownToSecondaryTeamType) class TeamMergeRequestCanceledType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -94113,14 +90432,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMergeRequestCanceledType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamMergeRequestCanceledType, self)._process_custom_annotations(annotation_type, field_path, processor) TeamMergeRequestCanceledType_validator = bv.Struct(TeamMergeRequestCanceledType) - class TeamMergeRequestExpiredDetails(bb.Struct): """ Team merge request expired. @@ -94130,12 +90445,13 @@ class TeamMergeRequestExpiredDetails(bb.Struct): """ __slots__ = [ - "_request_expired_details_value", + '_request_expired_details_value', ] _has_required_fields = True - def __init__(self, request_expired_details=None): + def __init__(self, + request_expired_details=None): self._request_expired_details_value = bb.NOT_SET if request_expired_details is not None: self.request_expired_details = request_expired_details @@ -94144,14 +90460,10 @@ def __init__(self, request_expired_details=None): request_expired_details = bb.Attribute("request_expired_details", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMergeRequestExpiredDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamMergeRequestExpiredDetails, self)._process_custom_annotations(annotation_type, field_path, processor) TeamMergeRequestExpiredDetails_validator = bv.Struct(TeamMergeRequestExpiredDetails) - class TeamMergeRequestExpiredExtraDetails(bb.Union): """ Team merge request expiration details @@ -94168,7 +90480,7 @@ class TeamMergeRequestExpiredExtraDetails(bb.Union): :vartype TeamMergeRequestExpiredExtraDetails.secondary_team: SecondaryTeamRequestExpiredDetails """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -94181,7 +90493,7 @@ def primary_team(cls, val): :param PrimaryTeamRequestExpiredDetails val: :rtype: TeamMergeRequestExpiredExtraDetails """ - return cls("primary_team", val) + return cls('primary_team', val) @classmethod def secondary_team(cls, val): @@ -94192,7 +90504,7 @@ def secondary_team(cls, val): :param SecondaryTeamRequestExpiredDetails val: :rtype: TeamMergeRequestExpiredExtraDetails """ - return cls("secondary_team", val) + return cls('secondary_team', val) def is_primary_team(self): """ @@ -94200,7 +90512,7 @@ def is_primary_team(self): :rtype: bool """ - return self._tag == "primary_team" + return self._tag == 'primary_team' def is_secondary_team(self): """ @@ -94208,7 +90520,7 @@ def is_secondary_team(self): :rtype: bool """ - return self._tag == "secondary_team" + return self._tag == 'secondary_team' def is_other(self): """ @@ -94216,7 +90528,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_primary_team(self): """ @@ -94243,14 +90555,10 @@ def get_secondary_team(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMergeRequestExpiredExtraDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamMergeRequestExpiredExtraDetails, self)._process_custom_annotations(annotation_type, field_path, processor) TeamMergeRequestExpiredExtraDetails_validator = bv.Union(TeamMergeRequestExpiredExtraDetails) - class TeamMergeRequestExpiredShownToPrimaryTeamDetails(bb.Struct): """ Team merge request expired. @@ -94262,13 +90570,15 @@ class TeamMergeRequestExpiredShownToPrimaryTeamDetails(bb.Struct): """ __slots__ = [ - "_secondary_team_value", - "_sent_by_value", + '_secondary_team_value', + '_sent_by_value', ] _has_required_fields = True - def __init__(self, secondary_team=None, sent_by=None): + def __init__(self, + secondary_team=None, + sent_by=None): self._secondary_team_value = bb.NOT_SET self._sent_by_value = bb.NOT_SET if secondary_team is not None: @@ -94283,24 +90593,20 @@ def __init__(self, secondary_team=None, sent_by=None): 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 - ) - - -TeamMergeRequestExpiredShownToPrimaryTeamDetails_validator = bv.Struct( - TeamMergeRequestExpiredShownToPrimaryTeamDetails -) + super(TeamMergeRequestExpiredShownToPrimaryTeamDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +TeamMergeRequestExpiredShownToPrimaryTeamDetails_validator = bv.Struct(TeamMergeRequestExpiredShownToPrimaryTeamDetails) class TeamMergeRequestExpiredShownToPrimaryTeamType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -94309,15 +90615,9 @@ def __init__(self, description=None): 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 - ) - - -TeamMergeRequestExpiredShownToPrimaryTeamType_validator = bv.Struct( - TeamMergeRequestExpiredShownToPrimaryTeamType -) + super(TeamMergeRequestExpiredShownToPrimaryTeamType, self)._process_custom_annotations(annotation_type, field_path, processor) +TeamMergeRequestExpiredShownToPrimaryTeamType_validator = bv.Struct(TeamMergeRequestExpiredShownToPrimaryTeamType) class TeamMergeRequestExpiredShownToSecondaryTeamDetails(bb.Struct): """ @@ -94328,12 +90628,13 @@ class TeamMergeRequestExpiredShownToSecondaryTeamDetails(bb.Struct): """ __slots__ = [ - "_sent_to_value", + '_sent_to_value', ] _has_required_fields = True - def __init__(self, sent_to=None): + def __init__(self, + sent_to=None): self._sent_to_value = bb.NOT_SET if sent_to is not None: self.sent_to = sent_to @@ -94342,24 +90643,20 @@ def __init__(self, sent_to=None): 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 - ) - - -TeamMergeRequestExpiredShownToSecondaryTeamDetails_validator = bv.Struct( - TeamMergeRequestExpiredShownToSecondaryTeamDetails -) + super(TeamMergeRequestExpiredShownToSecondaryTeamDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +TeamMergeRequestExpiredShownToSecondaryTeamDetails_validator = bv.Struct(TeamMergeRequestExpiredShownToSecondaryTeamDetails) class TeamMergeRequestExpiredShownToSecondaryTeamType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -94368,24 +90665,20 @@ def __init__(self, description=None): 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 - ) - - -TeamMergeRequestExpiredShownToSecondaryTeamType_validator = bv.Struct( - TeamMergeRequestExpiredShownToSecondaryTeamType -) + super(TeamMergeRequestExpiredShownToSecondaryTeamType, self)._process_custom_annotations(annotation_type, field_path, processor) +TeamMergeRequestExpiredShownToSecondaryTeamType_validator = bv.Struct(TeamMergeRequestExpiredShownToSecondaryTeamType) class TeamMergeRequestExpiredType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -94394,14 +90687,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMergeRequestExpiredType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamMergeRequestExpiredType, self)._process_custom_annotations(annotation_type, field_path, processor) TeamMergeRequestExpiredType_validator = bv.Struct(TeamMergeRequestExpiredType) - class TeamMergeRequestRejectedShownToPrimaryTeamDetails(bb.Struct): """ Rejected a team merge request. @@ -94413,13 +90702,15 @@ class TeamMergeRequestRejectedShownToPrimaryTeamDetails(bb.Struct): """ __slots__ = [ - "_secondary_team_value", - "_sent_by_value", + '_secondary_team_value', + '_sent_by_value', ] _has_required_fields = True - def __init__(self, secondary_team=None, sent_by=None): + def __init__(self, + secondary_team=None, + sent_by=None): self._secondary_team_value = bb.NOT_SET self._sent_by_value = bb.NOT_SET if secondary_team is not None: @@ -94434,24 +90725,20 @@ def __init__(self, secondary_team=None, sent_by=None): 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 - ) - - -TeamMergeRequestRejectedShownToPrimaryTeamDetails_validator = bv.Struct( - TeamMergeRequestRejectedShownToPrimaryTeamDetails -) + super(TeamMergeRequestRejectedShownToPrimaryTeamDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +TeamMergeRequestRejectedShownToPrimaryTeamDetails_validator = bv.Struct(TeamMergeRequestRejectedShownToPrimaryTeamDetails) class TeamMergeRequestRejectedShownToPrimaryTeamType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -94460,15 +90747,9 @@ def __init__(self, description=None): 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 - ) - - -TeamMergeRequestRejectedShownToPrimaryTeamType_validator = bv.Struct( - TeamMergeRequestRejectedShownToPrimaryTeamType -) + super(TeamMergeRequestRejectedShownToPrimaryTeamType, self)._process_custom_annotations(annotation_type, field_path, processor) +TeamMergeRequestRejectedShownToPrimaryTeamType_validator = bv.Struct(TeamMergeRequestRejectedShownToPrimaryTeamType) class TeamMergeRequestRejectedShownToSecondaryTeamDetails(bb.Struct): """ @@ -94479,12 +90760,13 @@ class TeamMergeRequestRejectedShownToSecondaryTeamDetails(bb.Struct): """ __slots__ = [ - "_sent_by_value", + '_sent_by_value', ] _has_required_fields = True - def __init__(self, sent_by=None): + def __init__(self, + sent_by=None): self._sent_by_value = bb.NOT_SET if sent_by is not None: self.sent_by = sent_by @@ -94493,24 +90775,20 @@ def __init__(self, sent_by=None): 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) - - -TeamMergeRequestRejectedShownToSecondaryTeamDetails_validator = bv.Struct( - TeamMergeRequestRejectedShownToSecondaryTeamDetails -) + super(TeamMergeRequestRejectedShownToSecondaryTeamDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +TeamMergeRequestRejectedShownToSecondaryTeamDetails_validator = bv.Struct(TeamMergeRequestRejectedShownToSecondaryTeamDetails) class TeamMergeRequestRejectedShownToSecondaryTeamType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -94519,15 +90797,9 @@ def __init__(self, description=None): 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 - ) - - -TeamMergeRequestRejectedShownToSecondaryTeamType_validator = bv.Struct( - TeamMergeRequestRejectedShownToSecondaryTeamType -) + super(TeamMergeRequestRejectedShownToSecondaryTeamType, self)._process_custom_annotations(annotation_type, field_path, processor) +TeamMergeRequestRejectedShownToSecondaryTeamType_validator = bv.Struct(TeamMergeRequestRejectedShownToSecondaryTeamType) class TeamMergeRequestReminderDetails(bb.Struct): """ @@ -94538,12 +90810,13 @@ class TeamMergeRequestReminderDetails(bb.Struct): """ __slots__ = [ - "_request_reminder_details_value", + '_request_reminder_details_value', ] _has_required_fields = True - def __init__(self, request_reminder_details=None): + def __init__(self, + request_reminder_details=None): self._request_reminder_details_value = bb.NOT_SET if request_reminder_details is not None: self.request_reminder_details = request_reminder_details @@ -94552,14 +90825,10 @@ def __init__(self, request_reminder_details=None): request_reminder_details = bb.Attribute("request_reminder_details", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMergeRequestReminderDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamMergeRequestReminderDetails, self)._process_custom_annotations(annotation_type, field_path, processor) TeamMergeRequestReminderDetails_validator = bv.Struct(TeamMergeRequestReminderDetails) - class TeamMergeRequestReminderExtraDetails(bb.Union): """ Team merge request reminder details @@ -94576,7 +90845,7 @@ class TeamMergeRequestReminderExtraDetails(bb.Union): :vartype TeamMergeRequestReminderExtraDetails.secondary_team: SecondaryTeamRequestReminderDetails """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -94589,7 +90858,7 @@ def primary_team(cls, val): :param PrimaryTeamRequestReminderDetails val: :rtype: TeamMergeRequestReminderExtraDetails """ - return cls("primary_team", val) + return cls('primary_team', val) @classmethod def secondary_team(cls, val): @@ -94600,7 +90869,7 @@ def secondary_team(cls, val): :param SecondaryTeamRequestReminderDetails val: :rtype: TeamMergeRequestReminderExtraDetails """ - return cls("secondary_team", val) + return cls('secondary_team', val) def is_primary_team(self): """ @@ -94608,7 +90877,7 @@ def is_primary_team(self): :rtype: bool """ - return self._tag == "primary_team" + return self._tag == 'primary_team' def is_secondary_team(self): """ @@ -94616,7 +90885,7 @@ def is_secondary_team(self): :rtype: bool """ - return self._tag == "secondary_team" + return self._tag == 'secondary_team' def is_other(self): """ @@ -94624,7 +90893,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_primary_team(self): """ @@ -94651,14 +90920,10 @@ def get_secondary_team(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMergeRequestReminderExtraDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamMergeRequestReminderExtraDetails, self)._process_custom_annotations(annotation_type, field_path, processor) TeamMergeRequestReminderExtraDetails_validator = bv.Union(TeamMergeRequestReminderExtraDetails) - class TeamMergeRequestReminderShownToPrimaryTeamDetails(bb.Struct): """ Sent a team merge request reminder. @@ -94670,13 +90935,15 @@ class TeamMergeRequestReminderShownToPrimaryTeamDetails(bb.Struct): """ __slots__ = [ - "_secondary_team_value", - "_sent_to_value", + '_secondary_team_value', + '_sent_to_value', ] _has_required_fields = True - def __init__(self, secondary_team=None, sent_to=None): + def __init__(self, + secondary_team=None, + sent_to=None): self._secondary_team_value = bb.NOT_SET self._sent_to_value = bb.NOT_SET if secondary_team is not None: @@ -94691,24 +90958,20 @@ def __init__(self, secondary_team=None, sent_to=None): 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 - ) - - -TeamMergeRequestReminderShownToPrimaryTeamDetails_validator = bv.Struct( - TeamMergeRequestReminderShownToPrimaryTeamDetails -) + super(TeamMergeRequestReminderShownToPrimaryTeamDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +TeamMergeRequestReminderShownToPrimaryTeamDetails_validator = bv.Struct(TeamMergeRequestReminderShownToPrimaryTeamDetails) class TeamMergeRequestReminderShownToPrimaryTeamType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -94717,15 +90980,9 @@ def __init__(self, description=None): 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 - ) - - -TeamMergeRequestReminderShownToPrimaryTeamType_validator = bv.Struct( - TeamMergeRequestReminderShownToPrimaryTeamType -) + super(TeamMergeRequestReminderShownToPrimaryTeamType, self)._process_custom_annotations(annotation_type, field_path, processor) +TeamMergeRequestReminderShownToPrimaryTeamType_validator = bv.Struct(TeamMergeRequestReminderShownToPrimaryTeamType) class TeamMergeRequestReminderShownToSecondaryTeamDetails(bb.Struct): """ @@ -94736,12 +90993,13 @@ class TeamMergeRequestReminderShownToSecondaryTeamDetails(bb.Struct): """ __slots__ = [ - "_sent_to_value", + '_sent_to_value', ] _has_required_fields = True - def __init__(self, sent_to=None): + def __init__(self, + sent_to=None): self._sent_to_value = bb.NOT_SET if sent_to is not None: self.sent_to = sent_to @@ -94750,24 +91008,20 @@ def __init__(self, sent_to=None): 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) - - -TeamMergeRequestReminderShownToSecondaryTeamDetails_validator = bv.Struct( - TeamMergeRequestReminderShownToSecondaryTeamDetails -) + super(TeamMergeRequestReminderShownToSecondaryTeamDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +TeamMergeRequestReminderShownToSecondaryTeamDetails_validator = bv.Struct(TeamMergeRequestReminderShownToSecondaryTeamDetails) class TeamMergeRequestReminderShownToSecondaryTeamType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -94776,24 +91030,20 @@ def __init__(self, description=None): 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 - ) - - -TeamMergeRequestReminderShownToSecondaryTeamType_validator = bv.Struct( - TeamMergeRequestReminderShownToSecondaryTeamType -) + super(TeamMergeRequestReminderShownToSecondaryTeamType, self)._process_custom_annotations(annotation_type, field_path, processor) +TeamMergeRequestReminderShownToSecondaryTeamType_validator = bv.Struct(TeamMergeRequestReminderShownToSecondaryTeamType) class TeamMergeRequestReminderType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -94802,14 +91052,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMergeRequestReminderType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamMergeRequestReminderType, self)._process_custom_annotations(annotation_type, field_path, processor) TeamMergeRequestReminderType_validator = bv.Struct(TeamMergeRequestReminderType) - class TeamMergeRequestRevokedDetails(bb.Struct): """ Canceled the team merge. @@ -94819,12 +91065,13 @@ class TeamMergeRequestRevokedDetails(bb.Struct): """ __slots__ = [ - "_team_value", + '_team_value', ] _has_required_fields = True - def __init__(self, team=None): + def __init__(self, + team=None): self._team_value = bb.NOT_SET if team is not None: self.team = team @@ -94833,22 +91080,20 @@ def __init__(self, team=None): team = bb.Attribute("team") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMergeRequestRevokedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamMergeRequestRevokedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) TeamMergeRequestRevokedDetails_validator = bv.Struct(TeamMergeRequestRevokedDetails) - class TeamMergeRequestRevokedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -94857,14 +91102,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMergeRequestRevokedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamMergeRequestRevokedType, self)._process_custom_annotations(annotation_type, field_path, processor) TeamMergeRequestRevokedType_validator = bv.Struct(TeamMergeRequestRevokedType) - class TeamMergeRequestSentShownToPrimaryTeamDetails(bb.Struct): """ Requested to merge their Dropbox team into yours. @@ -94876,13 +91117,15 @@ class TeamMergeRequestSentShownToPrimaryTeamDetails(bb.Struct): """ __slots__ = [ - "_secondary_team_value", - "_sent_to_value", + '_secondary_team_value', + '_sent_to_value', ] _has_required_fields = True - def __init__(self, secondary_team=None, sent_to=None): + def __init__(self, + secondary_team=None, + sent_to=None): self._secondary_team_value = bb.NOT_SET self._sent_to_value = bb.NOT_SET if secondary_team is not None: @@ -94897,24 +91140,20 @@ def __init__(self, secondary_team=None, sent_to=None): 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 - ) - - -TeamMergeRequestSentShownToPrimaryTeamDetails_validator = bv.Struct( - TeamMergeRequestSentShownToPrimaryTeamDetails -) + super(TeamMergeRequestSentShownToPrimaryTeamDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +TeamMergeRequestSentShownToPrimaryTeamDetails_validator = bv.Struct(TeamMergeRequestSentShownToPrimaryTeamDetails) class TeamMergeRequestSentShownToPrimaryTeamType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -94923,15 +91162,9 @@ def __init__(self, description=None): 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 - ) - - -TeamMergeRequestSentShownToPrimaryTeamType_validator = bv.Struct( - TeamMergeRequestSentShownToPrimaryTeamType -) + super(TeamMergeRequestSentShownToPrimaryTeamType, self)._process_custom_annotations(annotation_type, field_path, processor) +TeamMergeRequestSentShownToPrimaryTeamType_validator = bv.Struct(TeamMergeRequestSentShownToPrimaryTeamType) class TeamMergeRequestSentShownToSecondaryTeamDetails(bb.Struct): """ @@ -94942,12 +91175,13 @@ class TeamMergeRequestSentShownToSecondaryTeamDetails(bb.Struct): """ __slots__ = [ - "_sent_to_value", + '_sent_to_value', ] _has_required_fields = True - def __init__(self, sent_to=None): + def __init__(self, + sent_to=None): self._sent_to_value = bb.NOT_SET if sent_to is not None: self.sent_to = sent_to @@ -94956,24 +91190,20 @@ def __init__(self, sent_to=None): 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 - ) - - -TeamMergeRequestSentShownToSecondaryTeamDetails_validator = bv.Struct( - TeamMergeRequestSentShownToSecondaryTeamDetails -) + super(TeamMergeRequestSentShownToSecondaryTeamDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +TeamMergeRequestSentShownToSecondaryTeamDetails_validator = bv.Struct(TeamMergeRequestSentShownToSecondaryTeamDetails) class TeamMergeRequestSentShownToSecondaryTeamType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -94982,15 +91212,9 @@ def __init__(self, description=None): 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 - ) - - -TeamMergeRequestSentShownToSecondaryTeamType_validator = bv.Struct( - TeamMergeRequestSentShownToSecondaryTeamType -) + super(TeamMergeRequestSentShownToSecondaryTeamType, self)._process_custom_annotations(annotation_type, field_path, processor) +TeamMergeRequestSentShownToSecondaryTeamType_validator = bv.Struct(TeamMergeRequestSentShownToSecondaryTeamType) class TeamMergeToDetails(bb.Struct): """ @@ -95001,12 +91225,13 @@ class TeamMergeToDetails(bb.Struct): """ __slots__ = [ - "_team_name_value", + '_team_name_value', ] _has_required_fields = True - def __init__(self, team_name=None): + def __init__(self, + team_name=None): self._team_name_value = bb.NOT_SET if team_name is not None: self.team_name = team_name @@ -95015,22 +91240,20 @@ def __init__(self, team_name=None): team_name = bb.Attribute("team_name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMergeToDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamMergeToDetails, self)._process_custom_annotations(annotation_type, field_path, processor) TeamMergeToDetails_validator = bv.Struct(TeamMergeToDetails) - class TeamMergeToType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -95039,14 +91262,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMergeToType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamMergeToType, self)._process_custom_annotations(annotation_type, field_path, processor) TeamMergeToType_validator = bv.Struct(TeamMergeToType) - class TeamName(bb.Struct): """ Team name details @@ -95058,13 +91277,15 @@ class TeamName(bb.Struct): """ __slots__ = [ - "_team_display_name_value", - "_team_legal_name_value", + '_team_display_name_value', + '_team_legal_name_value', ] _has_required_fields = True - def __init__(self, team_display_name=None, team_legal_name=None): + def __init__(self, + team_display_name=None, + team_legal_name=None): self._team_display_name_value = bb.NOT_SET self._team_legal_name_value = bb.NOT_SET if team_display_name is not None: @@ -95081,16 +91302,15 @@ def __init__(self, team_display_name=None, team_legal_name=None): def _process_custom_annotations(self, annotation_type, field_path, processor): super(TeamName, self)._process_custom_annotations(annotation_type, field_path, processor) - TeamName_validator = bv.Struct(TeamName) - class TeamProfileAddBackgroundDetails(bb.Struct): """ Added team background to display on shared link headers. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -95098,22 +91318,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamProfileAddBackgroundDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamProfileAddBackgroundDetails, self)._process_custom_annotations(annotation_type, field_path, processor) TeamProfileAddBackgroundDetails_validator = bv.Struct(TeamProfileAddBackgroundDetails) - class TeamProfileAddBackgroundType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -95122,20 +91340,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamProfileAddBackgroundType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamProfileAddBackgroundType, self)._process_custom_annotations(annotation_type, field_path, processor) TeamProfileAddBackgroundType_validator = bv.Struct(TeamProfileAddBackgroundType) - class TeamProfileAddLogoDetails(bb.Struct): """ Added team logo to display on shared link headers. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -95143,22 +91358,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamProfileAddLogoDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamProfileAddLogoDetails, self)._process_custom_annotations(annotation_type, field_path, processor) TeamProfileAddLogoDetails_validator = bv.Struct(TeamProfileAddLogoDetails) - class TeamProfileAddLogoType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -95167,20 +91380,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamProfileAddLogoType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamProfileAddLogoType, self)._process_custom_annotations(annotation_type, field_path, processor) TeamProfileAddLogoType_validator = bv.Struct(TeamProfileAddLogoType) - class TeamProfileChangeBackgroundDetails(bb.Struct): """ Changed team background displayed on shared link headers. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -95188,22 +91398,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamProfileChangeBackgroundDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamProfileChangeBackgroundDetails, self)._process_custom_annotations(annotation_type, field_path, processor) TeamProfileChangeBackgroundDetails_validator = bv.Struct(TeamProfileChangeBackgroundDetails) - class TeamProfileChangeBackgroundType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -95212,14 +91420,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamProfileChangeBackgroundType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamProfileChangeBackgroundType, self)._process_custom_annotations(annotation_type, field_path, processor) TeamProfileChangeBackgroundType_validator = bv.Struct(TeamProfileChangeBackgroundType) - class TeamProfileChangeDefaultLanguageDetails(bb.Struct): """ Changed default language for team. @@ -95231,13 +91435,15 @@ class TeamProfileChangeDefaultLanguageDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -95252,24 +91458,20 @@ def __init__(self, new_value=None, previous_value=None): 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 - ) - - -TeamProfileChangeDefaultLanguageDetails_validator = bv.Struct( - TeamProfileChangeDefaultLanguageDetails -) + super(TeamProfileChangeDefaultLanguageDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +TeamProfileChangeDefaultLanguageDetails_validator = bv.Struct(TeamProfileChangeDefaultLanguageDetails) class TeamProfileChangeDefaultLanguageType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -95278,20 +91480,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamProfileChangeDefaultLanguageType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamProfileChangeDefaultLanguageType, self)._process_custom_annotations(annotation_type, field_path, processor) TeamProfileChangeDefaultLanguageType_validator = bv.Struct(TeamProfileChangeDefaultLanguageType) - class TeamProfileChangeLogoDetails(bb.Struct): """ Changed team logo displayed on shared link headers. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -95299,22 +91498,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamProfileChangeLogoDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamProfileChangeLogoDetails, self)._process_custom_annotations(annotation_type, field_path, processor) TeamProfileChangeLogoDetails_validator = bv.Struct(TeamProfileChangeLogoDetails) - class TeamProfileChangeLogoType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -95323,14 +91520,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamProfileChangeLogoType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamProfileChangeLogoType, self)._process_custom_annotations(annotation_type, field_path, processor) TeamProfileChangeLogoType_validator = bv.Struct(TeamProfileChangeLogoType) - class TeamProfileChangeNameDetails(bb.Struct): """ Changed team name. @@ -95342,13 +91535,15 @@ class TeamProfileChangeNameDetails(bb.Struct): """ __slots__ = [ - "_previous_value_value", - "_new_value_value", + '_previous_value_value', + '_new_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._previous_value_value = bb.NOT_SET self._new_value_value = bb.NOT_SET if previous_value is not None: @@ -95363,22 +91558,20 @@ def __init__(self, new_value=None, previous_value=None): new_value = bb.Attribute("new_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamProfileChangeNameDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamProfileChangeNameDetails, self)._process_custom_annotations(annotation_type, field_path, processor) TeamProfileChangeNameDetails_validator = bv.Struct(TeamProfileChangeNameDetails) - class TeamProfileChangeNameType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -95387,20 +91580,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamProfileChangeNameType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamProfileChangeNameType, self)._process_custom_annotations(annotation_type, field_path, processor) TeamProfileChangeNameType_validator = bv.Struct(TeamProfileChangeNameType) - class TeamProfileRemoveBackgroundDetails(bb.Struct): """ Removed team background displayed on shared link headers. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -95408,22 +91598,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamProfileRemoveBackgroundDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamProfileRemoveBackgroundDetails, self)._process_custom_annotations(annotation_type, field_path, processor) TeamProfileRemoveBackgroundDetails_validator = bv.Struct(TeamProfileRemoveBackgroundDetails) - class TeamProfileRemoveBackgroundType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -95432,20 +91620,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamProfileRemoveBackgroundType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamProfileRemoveBackgroundType, self)._process_custom_annotations(annotation_type, field_path, processor) TeamProfileRemoveBackgroundType_validator = bv.Struct(TeamProfileRemoveBackgroundType) - class TeamProfileRemoveLogoDetails(bb.Struct): """ Removed team logo displayed on shared link headers. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -95453,22 +91638,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamProfileRemoveLogoDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamProfileRemoveLogoDetails, self)._process_custom_annotations(annotation_type, field_path, processor) TeamProfileRemoveLogoDetails_validator = bv.Struct(TeamProfileRemoveLogoDetails) - class TeamProfileRemoveLogoType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -95477,14 +91660,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamProfileRemoveLogoType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamProfileRemoveLogoType, self)._process_custom_annotations(annotation_type, field_path, processor) TeamProfileRemoveLogoType_validator = bv.Struct(TeamProfileRemoveLogoType) - class TeamSelectiveSyncPolicy(bb.Union): """ Policy for controlling whether team selective sync is enabled for team. @@ -95494,7 +91673,7 @@ class TeamSelectiveSyncPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -95508,7 +91687,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == "disabled" + return self._tag == 'disabled' def is_enabled(self): """ @@ -95516,7 +91695,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == "enabled" + return self._tag == 'enabled' def is_other(self): """ @@ -95524,17 +91703,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamSelectiveSyncPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamSelectiveSyncPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) TeamSelectiveSyncPolicy_validator = bv.Union(TeamSelectiveSyncPolicy) - class TeamSelectiveSyncPolicyChangedDetails(bb.Struct): """ Enabled/disabled Team Selective Sync for team. @@ -95546,13 +91721,15 @@ class TeamSelectiveSyncPolicyChangedDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -95567,22 +91744,20 @@ def __init__(self, new_value=None, previous_value=None): previous_value = bb.Attribute("previous_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamSelectiveSyncPolicyChangedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamSelectiveSyncPolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) TeamSelectiveSyncPolicyChangedDetails_validator = bv.Struct(TeamSelectiveSyncPolicyChangedDetails) - class TeamSelectiveSyncPolicyChangedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -95591,14 +91766,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamSelectiveSyncPolicyChangedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamSelectiveSyncPolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) TeamSelectiveSyncPolicyChangedType_validator = bv.Struct(TeamSelectiveSyncPolicyChangedType) - class TeamSelectiveSyncSettingsChangedDetails(bb.Struct): """ Changed sync default. @@ -95610,13 +91781,15 @@ class TeamSelectiveSyncSettingsChangedDetails(bb.Struct): """ __slots__ = [ - "_previous_value_value", - "_new_value_value", + '_previous_value_value', + '_new_value_value', ] _has_required_fields = True - def __init__(self, previous_value=None, new_value=None): + def __init__(self, + previous_value=None, + new_value=None): self._previous_value_value = bb.NOT_SET self._new_value_value = bb.NOT_SET if previous_value is not None: @@ -95631,24 +91804,20 @@ def __init__(self, previous_value=None, new_value=None): 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 - ) - - -TeamSelectiveSyncSettingsChangedDetails_validator = bv.Struct( - TeamSelectiveSyncSettingsChangedDetails -) + super(TeamSelectiveSyncSettingsChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +TeamSelectiveSyncSettingsChangedDetails_validator = bv.Struct(TeamSelectiveSyncSettingsChangedDetails) class TeamSelectiveSyncSettingsChangedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -95657,14 +91826,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamSelectiveSyncSettingsChangedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamSelectiveSyncSettingsChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) TeamSelectiveSyncSettingsChangedType_validator = bv.Struct(TeamSelectiveSyncSettingsChangedType) - class TeamSharingWhitelistSubjectsChangedDetails(bb.Struct): """ Edited the approved list for sharing externally. @@ -95676,13 +91841,15 @@ class TeamSharingWhitelistSubjectsChangedDetails(bb.Struct): """ __slots__ = [ - "_added_whitelist_subjects_value", - "_removed_whitelist_subjects_value", + '_added_whitelist_subjects_value', + '_removed_whitelist_subjects_value', ] _has_required_fields = True - def __init__(self, added_whitelist_subjects=None, removed_whitelist_subjects=None): + def __init__(self, + added_whitelist_subjects=None, + removed_whitelist_subjects=None): self._added_whitelist_subjects_value = bb.NOT_SET self._removed_whitelist_subjects_value = bb.NOT_SET if added_whitelist_subjects is not None: @@ -95697,24 +91864,20 @@ def __init__(self, added_whitelist_subjects=None, removed_whitelist_subjects=Non 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 - ) - - -TeamSharingWhitelistSubjectsChangedDetails_validator = bv.Struct( - TeamSharingWhitelistSubjectsChangedDetails -) + super(TeamSharingWhitelistSubjectsChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +TeamSharingWhitelistSubjectsChangedDetails_validator = bv.Struct(TeamSharingWhitelistSubjectsChangedDetails) class TeamSharingWhitelistSubjectsChangedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -95723,22 +91886,17 @@ def __init__(self, description=None): 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 - ) - - -TeamSharingWhitelistSubjectsChangedType_validator = bv.Struct( - TeamSharingWhitelistSubjectsChangedType -) + super(TeamSharingWhitelistSubjectsChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) +TeamSharingWhitelistSubjectsChangedType_validator = bv.Struct(TeamSharingWhitelistSubjectsChangedType) class TeamStorageCreateReportDetails(bb.Struct): """ Created team storage report. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -95746,14 +91904,10 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamStorageCreateReportDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamStorageCreateReportDetails, self)._process_custom_annotations(annotation_type, field_path, processor) TeamStorageCreateReportDetails_validator = bv.Struct(TeamStorageCreateReportDetails) - class TeamStorageCreateReportFailedDetails(bb.Struct): """ Couldn't generate team storage report. @@ -95763,12 +91917,13 @@ class TeamStorageCreateReportFailedDetails(bb.Struct): """ __slots__ = [ - "_failure_reason_value", + '_failure_reason_value', ] _has_required_fields = True - def __init__(self, failure_reason=None): + def __init__(self, + failure_reason=None): self._failure_reason_value = bb.NOT_SET if failure_reason is not None: self.failure_reason = failure_reason @@ -95777,22 +91932,20 @@ def __init__(self, failure_reason=None): failure_reason = bb.Attribute("failure_reason", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamStorageCreateReportFailedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamStorageCreateReportFailedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) TeamStorageCreateReportFailedDetails_validator = bv.Struct(TeamStorageCreateReportFailedDetails) - class TeamStorageCreateReportFailedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -95801,22 +91954,20 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamStorageCreateReportFailedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamStorageCreateReportFailedType, self)._process_custom_annotations(annotation_type, field_path, processor) TeamStorageCreateReportFailedType_validator = bv.Struct(TeamStorageCreateReportFailedType) - class TeamStorageCreateReportType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -95825,20 +91976,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamStorageCreateReportType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamStorageCreateReportType, self)._process_custom_annotations(annotation_type, field_path, processor) TeamStorageCreateReportType_validator = bv.Struct(TeamStorageCreateReportType) - class TfaAddBackupPhoneDetails(bb.Struct): """ Added backup phone for two-factor authentication. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -95846,22 +91994,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TfaAddBackupPhoneDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TfaAddBackupPhoneDetails, self)._process_custom_annotations(annotation_type, field_path, processor) TfaAddBackupPhoneDetails_validator = bv.Struct(TfaAddBackupPhoneDetails) - class TfaAddBackupPhoneType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -95870,20 +92016,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TfaAddBackupPhoneType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TfaAddBackupPhoneType, self)._process_custom_annotations(annotation_type, field_path, processor) TfaAddBackupPhoneType_validator = bv.Struct(TfaAddBackupPhoneType) - class TfaAddExceptionDetails(bb.Struct): """ Added members to two factor authentication exception list. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -95891,22 +92034,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TfaAddExceptionDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TfaAddExceptionDetails, self)._process_custom_annotations(annotation_type, field_path, processor) TfaAddExceptionDetails_validator = bv.Struct(TfaAddExceptionDetails) - class TfaAddExceptionType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -95915,20 +92056,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TfaAddExceptionType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TfaAddExceptionType, self)._process_custom_annotations(annotation_type, field_path, processor) TfaAddExceptionType_validator = bv.Struct(TfaAddExceptionType) - class TfaAddSecurityKeyDetails(bb.Struct): """ Added security key for two-factor authentication. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -95936,22 +92074,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TfaAddSecurityKeyDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TfaAddSecurityKeyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) TfaAddSecurityKeyDetails_validator = bv.Struct(TfaAddSecurityKeyDetails) - class TfaAddSecurityKeyType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -95960,20 +92096,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TfaAddSecurityKeyType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TfaAddSecurityKeyType, self)._process_custom_annotations(annotation_type, field_path, processor) TfaAddSecurityKeyType_validator = bv.Struct(TfaAddSecurityKeyType) - class TfaChangeBackupPhoneDetails(bb.Struct): """ Changed backup phone for two-factor authentication. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -95981,22 +92114,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TfaChangeBackupPhoneDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TfaChangeBackupPhoneDetails, self)._process_custom_annotations(annotation_type, field_path, processor) TfaChangeBackupPhoneDetails_validator = bv.Struct(TfaChangeBackupPhoneDetails) - class TfaChangeBackupPhoneType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -96005,14 +92136,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TfaChangeBackupPhoneType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TfaChangeBackupPhoneType, self)._process_custom_annotations(annotation_type, field_path, processor) TfaChangeBackupPhoneType_validator = bv.Struct(TfaChangeBackupPhoneType) - class TfaChangePolicyDetails(bb.Struct): """ Changed two-factor authentication setting for team. @@ -96024,13 +92151,15 @@ class TfaChangePolicyDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -96045,22 +92174,20 @@ def __init__(self, new_value=None, previous_value=None): previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TfaChangePolicyDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TfaChangePolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) TfaChangePolicyDetails_validator = bv.Struct(TfaChangePolicyDetails) - class TfaChangePolicyType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -96069,14 +92196,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TfaChangePolicyType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TfaChangePolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) TfaChangePolicyType_validator = bv.Struct(TfaChangePolicyType) - class TfaChangeStatusDetails(bb.Struct): """ Enabled/disabled/changed two-factor authentication setting. @@ -96092,14 +92215,17 @@ class TfaChangeStatusDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", - "_used_rescue_code_value", + '_new_value_value', + '_previous_value_value', + '_used_rescue_code_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None, used_rescue_code=None): + def __init__(self, + new_value=None, + previous_value=None, + used_rescue_code=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET self._used_rescue_code_value = bb.NOT_SET @@ -96120,22 +92246,20 @@ def __init__(self, new_value=None, previous_value=None, used_rescue_code=None): used_rescue_code = bb.Attribute("used_rescue_code", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TfaChangeStatusDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TfaChangeStatusDetails, self)._process_custom_annotations(annotation_type, field_path, processor) TfaChangeStatusDetails_validator = bv.Struct(TfaChangeStatusDetails) - class TfaChangeStatusType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -96144,14 +92268,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TfaChangeStatusType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TfaChangeStatusType, self)._process_custom_annotations(annotation_type, field_path, processor) TfaChangeStatusType_validator = bv.Struct(TfaChangeStatusType) - class TfaConfiguration(bb.Union): """ Two factor authentication configuration. Note: the enabled option is @@ -96162,7 +92282,7 @@ class TfaConfiguration(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition authenticator = None # Attribute is overwritten below the class definition @@ -96180,7 +92300,7 @@ def is_authenticator(self): :rtype: bool """ - return self._tag == "authenticator" + return self._tag == 'authenticator' def is_disabled(self): """ @@ -96188,7 +92308,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == "disabled" + return self._tag == 'disabled' def is_enabled(self): """ @@ -96196,7 +92316,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == "enabled" + return self._tag == 'enabled' def is_sms(self): """ @@ -96204,7 +92324,7 @@ def is_sms(self): :rtype: bool """ - return self._tag == "sms" + return self._tag == 'sms' def is_other(self): """ @@ -96212,23 +92332,20 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TfaConfiguration, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TfaConfiguration, self)._process_custom_annotations(annotation_type, field_path, processor) TfaConfiguration_validator = bv.Union(TfaConfiguration) - class TfaRemoveBackupPhoneDetails(bb.Struct): """ Removed backup phone for two-factor authentication. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -96236,22 +92353,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TfaRemoveBackupPhoneDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TfaRemoveBackupPhoneDetails, self)._process_custom_annotations(annotation_type, field_path, processor) TfaRemoveBackupPhoneDetails_validator = bv.Struct(TfaRemoveBackupPhoneDetails) - class TfaRemoveBackupPhoneType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -96260,20 +92375,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TfaRemoveBackupPhoneType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TfaRemoveBackupPhoneType, self)._process_custom_annotations(annotation_type, field_path, processor) TfaRemoveBackupPhoneType_validator = bv.Struct(TfaRemoveBackupPhoneType) - class TfaRemoveExceptionDetails(bb.Struct): """ Removed members from two factor authentication exception list. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -96281,22 +92393,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TfaRemoveExceptionDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TfaRemoveExceptionDetails, self)._process_custom_annotations(annotation_type, field_path, processor) TfaRemoveExceptionDetails_validator = bv.Struct(TfaRemoveExceptionDetails) - class TfaRemoveExceptionType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -96305,20 +92415,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TfaRemoveExceptionType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TfaRemoveExceptionType, self)._process_custom_annotations(annotation_type, field_path, processor) TfaRemoveExceptionType_validator = bv.Struct(TfaRemoveExceptionType) - class TfaRemoveSecurityKeyDetails(bb.Struct): """ Removed security key for two-factor authentication. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -96326,22 +92433,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TfaRemoveSecurityKeyDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TfaRemoveSecurityKeyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) TfaRemoveSecurityKeyDetails_validator = bv.Struct(TfaRemoveSecurityKeyDetails) - class TfaRemoveSecurityKeyType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -96350,20 +92455,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TfaRemoveSecurityKeyType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TfaRemoveSecurityKeyType, self)._process_custom_annotations(annotation_type, field_path, processor) TfaRemoveSecurityKeyType_validator = bv.Struct(TfaRemoveSecurityKeyType) - class TfaResetDetails(bb.Struct): """ Reset two-factor authentication for team member. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -96371,22 +92473,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TfaResetDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TfaResetDetails, self)._process_custom_annotations(annotation_type, field_path, processor) TfaResetDetails_validator = bv.Struct(TfaResetDetails) - class TfaResetType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -96395,14 +92495,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TfaResetType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TfaResetType, self)._process_custom_annotations(annotation_type, field_path, processor) TfaResetType_validator = bv.Struct(TfaResetType) - class TimeUnit(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -96410,7 +92506,7 @@ class TimeUnit(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition days = None # Attribute is overwritten below the class definition @@ -96436,7 +92532,7 @@ def is_days(self): :rtype: bool """ - return self._tag == "days" + return self._tag == 'days' def is_hours(self): """ @@ -96444,7 +92540,7 @@ def is_hours(self): :rtype: bool """ - return self._tag == "hours" + return self._tag == 'hours' def is_milliseconds(self): """ @@ -96452,7 +92548,7 @@ def is_milliseconds(self): :rtype: bool """ - return self._tag == "milliseconds" + return self._tag == 'milliseconds' def is_minutes(self): """ @@ -96460,7 +92556,7 @@ def is_minutes(self): :rtype: bool """ - return self._tag == "minutes" + return self._tag == 'minutes' def is_months(self): """ @@ -96468,7 +92564,7 @@ def is_months(self): :rtype: bool """ - return self._tag == "months" + return self._tag == 'months' def is_seconds(self): """ @@ -96476,7 +92572,7 @@ def is_seconds(self): :rtype: bool """ - return self._tag == "seconds" + return self._tag == 'seconds' def is_weeks(self): """ @@ -96484,7 +92580,7 @@ def is_weeks(self): :rtype: bool """ - return self._tag == "weeks" + return self._tag == 'weeks' def is_years(self): """ @@ -96492,7 +92588,7 @@ def is_years(self): :rtype: bool """ - return self._tag == "years" + return self._tag == 'years' def is_other(self): """ @@ -96500,15 +92596,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): super(TimeUnit, self)._process_custom_annotations(annotation_type, field_path, processor) - TimeUnit_validator = bv.Union(TimeUnit) - class TopLevelContentPolicy(bb.Union): """ Policy for deciding whether members can edit team folders at the top level @@ -96519,7 +92613,7 @@ class TopLevelContentPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition admins_only = None # Attribute is overwritten below the class definition @@ -96533,7 +92627,7 @@ def is_admins_only(self): :rtype: bool """ - return self._tag == "admins_only" + return self._tag == 'admins_only' def is_everyone(self): """ @@ -96541,7 +92635,7 @@ def is_everyone(self): :rtype: bool """ - return self._tag == "everyone" + return self._tag == 'everyone' def is_other(self): """ @@ -96549,17 +92643,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TopLevelContentPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TopLevelContentPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) TopLevelContentPolicy_validator = bv.Union(TopLevelContentPolicy) - class TopLevelContentPolicyChangedDetails(bb.Struct): """ Changed top level content setting for team. @@ -96571,13 +92661,15 @@ class TopLevelContentPolicyChangedDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -96592,22 +92684,20 @@ def __init__(self, new_value=None, previous_value=None): previous_value = bb.Attribute("previous_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TopLevelContentPolicyChangedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TopLevelContentPolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) TopLevelContentPolicyChangedDetails_validator = bv.Struct(TopLevelContentPolicyChangedDetails) - class TopLevelContentPolicyChangedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -96616,14 +92706,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TopLevelContentPolicyChangedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TopLevelContentPolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) TopLevelContentPolicyChangedType_validator = bv.Struct(TopLevelContentPolicyChangedType) - class TrustedNonTeamMemberLogInfo(UserLogInfo): """ User that is not a member of the team but considered trusted. @@ -96635,21 +92721,21 @@ class TrustedNonTeamMemberLogInfo(UserLogInfo): """ __slots__ = [ - "_trusted_non_team_member_type_value", - "_team_value", + '_trusted_non_team_member_type_value', + '_team_value', ] _has_required_fields = True - def __init__( - self, - trusted_non_team_member_type=None, - account_id=None, - display_name=None, - email=None, - team=None, - ): - super(TrustedNonTeamMemberLogInfo, self).__init__(account_id, display_name, email) + def __init__(self, + trusted_non_team_member_type=None, + account_id=None, + display_name=None, + email=None, + team=None): + super(TrustedNonTeamMemberLogInfo, self).__init__(account_id, + display_name, + email) self._trusted_non_team_member_type_value = bb.NOT_SET self._team_value = bb.NOT_SET if trusted_non_team_member_type is not None: @@ -96664,14 +92750,10 @@ def __init__( team = bb.Attribute("team", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TrustedNonTeamMemberLogInfo, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TrustedNonTeamMemberLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) TrustedNonTeamMemberLogInfo_validator = bv.Struct(TrustedNonTeamMemberLogInfo) - class TrustedNonTeamMemberType(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -96679,7 +92761,7 @@ class TrustedNonTeamMemberType(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition enterprise_admin = None # Attribute is overwritten below the class definition @@ -96693,7 +92775,7 @@ def is_enterprise_admin(self): :rtype: bool """ - return self._tag == "enterprise_admin" + return self._tag == 'enterprise_admin' def is_multi_instance_admin(self): """ @@ -96701,7 +92783,7 @@ def is_multi_instance_admin(self): :rtype: bool """ - return self._tag == "multi_instance_admin" + return self._tag == 'multi_instance_admin' def is_other(self): """ @@ -96709,17 +92791,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TrustedNonTeamMemberType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TrustedNonTeamMemberType, self)._process_custom_annotations(annotation_type, field_path, processor) TrustedNonTeamMemberType_validator = bv.Union(TrustedNonTeamMemberType) - class TrustedTeamsRequestAction(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -96727,7 +92805,7 @@ class TrustedTeamsRequestAction(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition accepted = None # Attribute is overwritten below the class definition @@ -96747,7 +92825,7 @@ def is_accepted(self): :rtype: bool """ - return self._tag == "accepted" + return self._tag == 'accepted' def is_declined(self): """ @@ -96755,7 +92833,7 @@ def is_declined(self): :rtype: bool """ - return self._tag == "declined" + return self._tag == 'declined' def is_expired(self): """ @@ -96763,7 +92841,7 @@ def is_expired(self): :rtype: bool """ - return self._tag == "expired" + return self._tag == 'expired' def is_invited(self): """ @@ -96771,7 +92849,7 @@ def is_invited(self): :rtype: bool """ - return self._tag == "invited" + return self._tag == 'invited' def is_revoked(self): """ @@ -96779,7 +92857,7 @@ def is_revoked(self): :rtype: bool """ - return self._tag == "revoked" + return self._tag == 'revoked' def is_other(self): """ @@ -96787,17 +92865,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TrustedTeamsRequestAction, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TrustedTeamsRequestAction, self)._process_custom_annotations(annotation_type, field_path, processor) TrustedTeamsRequestAction_validator = bv.Union(TrustedTeamsRequestAction) - class TrustedTeamsRequestState(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -96805,7 +92879,7 @@ class TrustedTeamsRequestState(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition invited = None # Attribute is overwritten below the class definition @@ -96821,7 +92895,7 @@ def is_invited(self): :rtype: bool """ - return self._tag == "invited" + return self._tag == 'invited' def is_linked(self): """ @@ -96829,7 +92903,7 @@ def is_linked(self): :rtype: bool """ - return self._tag == "linked" + return self._tag == 'linked' def is_unlinked(self): """ @@ -96837,7 +92911,7 @@ def is_unlinked(self): :rtype: bool """ - return self._tag == "unlinked" + return self._tag == 'unlinked' def is_other(self): """ @@ -96845,17 +92919,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TrustedTeamsRequestState, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TrustedTeamsRequestState, self)._process_custom_annotations(annotation_type, field_path, processor) TrustedTeamsRequestState_validator = bv.Union(TrustedTeamsRequestState) - class TwoAccountChangePolicyDetails(bb.Struct): """ Enabled/disabled option for members to link personal Dropbox account and @@ -96869,13 +92939,15 @@ class TwoAccountChangePolicyDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -96890,22 +92962,20 @@ def __init__(self, new_value=None, previous_value=None): previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TwoAccountChangePolicyDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TwoAccountChangePolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) TwoAccountChangePolicyDetails_validator = bv.Struct(TwoAccountChangePolicyDetails) - class TwoAccountChangePolicyType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -96914,14 +92984,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TwoAccountChangePolicyType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TwoAccountChangePolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) TwoAccountChangePolicyType_validator = bv.Struct(TwoAccountChangePolicyType) - class TwoAccountPolicy(bb.Union): """ Policy for pairing personal account to work account @@ -96931,7 +92997,7 @@ class TwoAccountPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -96945,7 +93011,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == "disabled" + return self._tag == 'disabled' def is_enabled(self): """ @@ -96953,7 +93019,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == "enabled" + return self._tag == 'enabled' def is_other(self): """ @@ -96961,23 +93027,20 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TwoAccountPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TwoAccountPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) TwoAccountPolicy_validator = bv.Union(TwoAccountPolicy) - class UndoNamingConventionDetails(bb.Struct): """ Reverted naming convention. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -96985,22 +93048,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UndoNamingConventionDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UndoNamingConventionDetails, self)._process_custom_annotations(annotation_type, field_path, processor) UndoNamingConventionDetails_validator = bv.Struct(UndoNamingConventionDetails) - class UndoNamingConventionType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -97009,20 +93070,17 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UndoNamingConventionType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UndoNamingConventionType, self)._process_custom_annotations(annotation_type, field_path, processor) UndoNamingConventionType_validator = bv.Struct(UndoNamingConventionType) - class UndoOrganizeFolderWithTidyDetails(bb.Struct): """ Removed multi-file organize. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False @@ -97030,22 +93088,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UndoOrganizeFolderWithTidyDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UndoOrganizeFolderWithTidyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) UndoOrganizeFolderWithTidyDetails_validator = bv.Struct(UndoOrganizeFolderWithTidyDetails) - class UndoOrganizeFolderWithTidyType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -97054,35 +93110,31 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UndoOrganizeFolderWithTidyType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UndoOrganizeFolderWithTidyType, self)._process_custom_annotations(annotation_type, field_path, processor) UndoOrganizeFolderWithTidyType_validator = bv.Struct(UndoOrganizeFolderWithTidyType) - class UserLinkedAppLogInfo(AppLogInfo): """ User linked app """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False - def __init__(self, app_id=None, display_name=None): - super(UserLinkedAppLogInfo, self).__init__(app_id, display_name) + def __init__(self, + app_id=None, + display_name=None): + super(UserLinkedAppLogInfo, self).__init__(app_id, + display_name) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UserLinkedAppLogInfo, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UserLinkedAppLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) UserLinkedAppLogInfo_validator = bv.Struct(UserLinkedAppLogInfo) - class UserNameLogInfo(bb.Struct): """ User's name logged information @@ -97096,14 +93148,17 @@ class UserNameLogInfo(bb.Struct): """ __slots__ = [ - "_given_name_value", - "_surname_value", - "_locale_value", + '_given_name_value', + '_surname_value', + '_locale_value', ] _has_required_fields = True - def __init__(self, given_name=None, surname=None, locale=None): + def __init__(self, + given_name=None, + surname=None, + locale=None): self._given_name_value = bb.NOT_SET self._surname_value = bb.NOT_SET self._locale_value = bb.NOT_SET @@ -97124,36 +93179,32 @@ def __init__(self, given_name=None, surname=None, locale=None): locale = bb.Attribute("locale", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UserNameLogInfo, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UserNameLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) UserNameLogInfo_validator = bv.Struct(UserNameLogInfo) - class UserOrTeamLinkedAppLogInfo(AppLogInfo): """ User or team linked app. Used when linked type is missing due to historical data gap. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False - def __init__(self, app_id=None, display_name=None): - super(UserOrTeamLinkedAppLogInfo, self).__init__(app_id, display_name) + def __init__(self, + app_id=None, + display_name=None): + super(UserOrTeamLinkedAppLogInfo, self).__init__(app_id, + display_name) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UserOrTeamLinkedAppLogInfo, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UserOrTeamLinkedAppLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) UserOrTeamLinkedAppLogInfo_validator = bv.Struct(UserOrTeamLinkedAppLogInfo) - class UserTagsAddedDetails(bb.Struct): """ Tagged a file. @@ -97163,12 +93214,13 @@ class UserTagsAddedDetails(bb.Struct): """ __slots__ = [ - "_values_value", + '_values_value', ] _has_required_fields = True - def __init__(self, values=None): + def __init__(self, + values=None): self._values_value = bb.NOT_SET if values is not None: self.values = values @@ -97177,22 +93229,20 @@ def __init__(self, values=None): values = bb.Attribute("values") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UserTagsAddedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UserTagsAddedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) UserTagsAddedDetails_validator = bv.Struct(UserTagsAddedDetails) - class UserTagsAddedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -97201,14 +93251,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UserTagsAddedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UserTagsAddedType, self)._process_custom_annotations(annotation_type, field_path, processor) UserTagsAddedType_validator = bv.Struct(UserTagsAddedType) - class UserTagsRemovedDetails(bb.Struct): """ Removed tags. @@ -97218,12 +93264,13 @@ class UserTagsRemovedDetails(bb.Struct): """ __slots__ = [ - "_values_value", + '_values_value', ] _has_required_fields = True - def __init__(self, values=None): + def __init__(self, + values=None): self._values_value = bb.NOT_SET if values is not None: self.values = values @@ -97232,22 +93279,20 @@ def __init__(self, values=None): values = bb.Attribute("values") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UserTagsRemovedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UserTagsRemovedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) UserTagsRemovedDetails_validator = bv.Struct(UserTagsRemovedDetails) - class UserTagsRemovedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -97256,14 +93301,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UserTagsRemovedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UserTagsRemovedType, self)._process_custom_annotations(annotation_type, field_path, processor) UserTagsRemovedType_validator = bv.Struct(UserTagsRemovedType) - class ViewerInfoPolicyChangedDetails(bb.Struct): """ Changed team policy for viewer info. @@ -97275,13 +93316,15 @@ class ViewerInfoPolicyChangedDetails(bb.Struct): """ __slots__ = [ - "_previous_value_value", - "_new_value_value", + '_previous_value_value', + '_new_value_value', ] _has_required_fields = True - def __init__(self, previous_value=None, new_value=None): + def __init__(self, + previous_value=None, + new_value=None): self._previous_value_value = bb.NOT_SET self._new_value_value = bb.NOT_SET if previous_value is not None: @@ -97296,22 +93339,20 @@ def __init__(self, previous_value=None, new_value=None): new_value = bb.Attribute("new_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ViewerInfoPolicyChangedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ViewerInfoPolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) ViewerInfoPolicyChangedDetails_validator = bv.Struct(ViewerInfoPolicyChangedDetails) - class ViewerInfoPolicyChangedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -97320,14 +93361,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ViewerInfoPolicyChangedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ViewerInfoPolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) ViewerInfoPolicyChangedType_validator = bv.Struct(ViewerInfoPolicyChangedType) - class WatermarkingPolicy(bb.Union): """ Policy for controlling team access to watermarking feature @@ -97337,7 +93374,7 @@ class WatermarkingPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -97351,7 +93388,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == "disabled" + return self._tag == 'disabled' def is_enabled(self): """ @@ -97359,7 +93396,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == "enabled" + return self._tag == 'enabled' def is_other(self): """ @@ -97367,17 +93404,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(WatermarkingPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(WatermarkingPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) WatermarkingPolicy_validator = bv.Union(WatermarkingPolicy) - class WatermarkingPolicyChangedDetails(bb.Struct): """ Changed watermarking policy for team. @@ -97389,13 +93422,15 @@ class WatermarkingPolicyChangedDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = True - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -97410,22 +93445,20 @@ def __init__(self, new_value=None, previous_value=None): previous_value = bb.Attribute("previous_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(WatermarkingPolicyChangedDetails, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(WatermarkingPolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) WatermarkingPolicyChangedDetails_validator = bv.Struct(WatermarkingPolicyChangedDetails) - class WatermarkingPolicyChangedType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -97434,14 +93467,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(WatermarkingPolicyChangedType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(WatermarkingPolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) WatermarkingPolicyChangedType_validator = bv.Struct(WatermarkingPolicyChangedType) - class WebDeviceSessionLogInfo(DeviceSessionLogInfo): """ Information on active web sessions @@ -97457,25 +93486,25 @@ class WebDeviceSessionLogInfo(DeviceSessionLogInfo): """ __slots__ = [ - "_session_info_value", - "_user_agent_value", - "_os_value", - "_browser_value", + '_session_info_value', + '_user_agent_value', + '_os_value', + '_browser_value', ] _has_required_fields = True - def __init__( - self, - user_agent=None, - os=None, - browser=None, - ip_address=None, - created=None, - updated=None, - session_info=None, - ): - super(WebDeviceSessionLogInfo, self).__init__(ip_address, created, updated) + def __init__(self, + user_agent=None, + os=None, + browser=None, + ip_address=None, + created=None, + updated=None, + session_info=None): + super(WebDeviceSessionLogInfo, self).__init__(ip_address, + created, + updated) self._session_info_value = bb.NOT_SET self._user_agent_value = bb.NOT_SET self._os_value = bb.NOT_SET @@ -97502,35 +93531,29 @@ def __init__( browser = bb.Attribute("browser") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(WebDeviceSessionLogInfo, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(WebDeviceSessionLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) WebDeviceSessionLogInfo_validator = bv.Struct(WebDeviceSessionLogInfo) - class WebSessionLogInfo(SessionLogInfo): """ Web session. """ - __slots__ = [] + __slots__ = [ + ] _has_required_fields = False - def __init__(self, session_id=None): + def __init__(self, + session_id=None): super(WebSessionLogInfo, self).__init__(session_id) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(WebSessionLogInfo, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(WebSessionLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) WebSessionLogInfo_validator = bv.Struct(WebSessionLogInfo) - class WebSessionsChangeActiveSessionLimitDetails(bb.Struct): """ Changed limit on active sessions per member. @@ -97542,13 +93565,15 @@ class WebSessionsChangeActiveSessionLimitDetails(bb.Struct): """ __slots__ = [ - "_previous_value_value", - "_new_value_value", + '_previous_value_value', + '_new_value_value', ] _has_required_fields = True - def __init__(self, previous_value=None, new_value=None): + def __init__(self, + previous_value=None, + new_value=None): self._previous_value_value = bb.NOT_SET self._new_value_value = bb.NOT_SET if previous_value is not None: @@ -97563,24 +93588,20 @@ def __init__(self, previous_value=None, new_value=None): 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 - ) - - -WebSessionsChangeActiveSessionLimitDetails_validator = bv.Struct( - WebSessionsChangeActiveSessionLimitDetails -) + super(WebSessionsChangeActiveSessionLimitDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +WebSessionsChangeActiveSessionLimitDetails_validator = bv.Struct(WebSessionsChangeActiveSessionLimitDetails) class WebSessionsChangeActiveSessionLimitType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -97589,15 +93610,9 @@ def __init__(self, description=None): 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 - ) - - -WebSessionsChangeActiveSessionLimitType_validator = bv.Struct( - WebSessionsChangeActiveSessionLimitType -) + super(WebSessionsChangeActiveSessionLimitType, self)._process_custom_annotations(annotation_type, field_path, processor) +WebSessionsChangeActiveSessionLimitType_validator = bv.Struct(WebSessionsChangeActiveSessionLimitType) class WebSessionsChangeFixedLengthPolicyDetails(bb.Struct): """ @@ -97611,13 +93626,15 @@ class WebSessionsChangeFixedLengthPolicyDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = False - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -97632,24 +93649,20 @@ def __init__(self, new_value=None, previous_value=None): 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 - ) - - -WebSessionsChangeFixedLengthPolicyDetails_validator = bv.Struct( - WebSessionsChangeFixedLengthPolicyDetails -) + super(WebSessionsChangeFixedLengthPolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +WebSessionsChangeFixedLengthPolicyDetails_validator = bv.Struct(WebSessionsChangeFixedLengthPolicyDetails) class WebSessionsChangeFixedLengthPolicyType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -97658,14 +93671,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(WebSessionsChangeFixedLengthPolicyType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(WebSessionsChangeFixedLengthPolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) WebSessionsChangeFixedLengthPolicyType_validator = bv.Struct(WebSessionsChangeFixedLengthPolicyType) - class WebSessionsChangeIdleLengthPolicyDetails(bb.Struct): """ Changed how long team members can be idle while signed in to Dropbox.com. @@ -97678,13 +93687,15 @@ class WebSessionsChangeIdleLengthPolicyDetails(bb.Struct): """ __slots__ = [ - "_new_value_value", - "_previous_value_value", + '_new_value_value', + '_previous_value_value', ] _has_required_fields = False - def __init__(self, new_value=None, previous_value=None): + def __init__(self, + new_value=None, + previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -97699,24 +93710,20 @@ def __init__(self, new_value=None, previous_value=None): 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 - ) - - -WebSessionsChangeIdleLengthPolicyDetails_validator = bv.Struct( - WebSessionsChangeIdleLengthPolicyDetails -) + super(WebSessionsChangeIdleLengthPolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) +WebSessionsChangeIdleLengthPolicyDetails_validator = bv.Struct(WebSessionsChangeIdleLengthPolicyDetails) class WebSessionsChangeIdleLengthPolicyType(bb.Struct): + __slots__ = [ - "_description_value", + '_description_value', ] _has_required_fields = True - def __init__(self, description=None): + def __init__(self, + description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -97725,14 +93732,10 @@ def __init__(self, description=None): description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(WebSessionsChangeIdleLengthPolicyType, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(WebSessionsChangeIdleLengthPolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) WebSessionsChangeIdleLengthPolicyType_validator = bv.Struct(WebSessionsChangeIdleLengthPolicyType) - class WebSessionsFixedLengthPolicy(bb.Union): """ Web sessions fixed length policy. @@ -97748,7 +93751,7 @@ class WebSessionsFixedLengthPolicy(bb.Union): Undefined fixed session length. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition undefined = None # Attribute is overwritten below the class definition @@ -97763,7 +93766,7 @@ def defined(cls, val): :param DurationLogInfo val: :rtype: WebSessionsFixedLengthPolicy """ - return cls("defined", val) + return cls('defined', val) def is_defined(self): """ @@ -97771,7 +93774,7 @@ def is_defined(self): :rtype: bool """ - return self._tag == "defined" + return self._tag == 'defined' def is_undefined(self): """ @@ -97779,7 +93782,7 @@ def is_undefined(self): :rtype: bool """ - return self._tag == "undefined" + return self._tag == 'undefined' def is_other(self): """ @@ -97787,7 +93790,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_defined(self): """ @@ -97802,14 +93805,10 @@ def get_defined(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(WebSessionsFixedLengthPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(WebSessionsFixedLengthPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) WebSessionsFixedLengthPolicy_validator = bv.Union(WebSessionsFixedLengthPolicy) - class WebSessionsIdleLengthPolicy(bb.Union): """ Web sessions idle length policy. @@ -97825,7 +93824,7 @@ class WebSessionsIdleLengthPolicy(bb.Union): Undefined idle session length. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition undefined = None # Attribute is overwritten below the class definition @@ -97840,7 +93839,7 @@ def defined(cls, val): :param DurationLogInfo val: :rtype: WebSessionsIdleLengthPolicy """ - return cls("defined", val) + return cls('defined', val) def is_defined(self): """ @@ -97848,7 +93847,7 @@ def is_defined(self): :rtype: bool """ - return self._tag == "defined" + return self._tag == 'defined' def is_undefined(self): """ @@ -97856,7 +93855,7 @@ def is_undefined(self): :rtype: bool """ - return self._tag == "undefined" + return self._tag == 'undefined' def is_other(self): """ @@ -97864,7 +93863,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_defined(self): """ @@ -97879,10 +93878,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(WebSessionsIdleLengthPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) WebSessionsIdleLengthPolicy_validator = bv.Union(WebSessionsIdleLengthPolicy) @@ -97901,200 +93897,160 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): AccessMethodLogInfo._sign_in_as_validator = WebSessionLogInfo_validator AccessMethodLogInfo._other_validator = bv.Void() AccessMethodLogInfo._tagmap = { - "admin_console": AccessMethodLogInfo._admin_console_validator, - "api": AccessMethodLogInfo._api_validator, - "content_manager": AccessMethodLogInfo._content_manager_validator, - "end_user": AccessMethodLogInfo._end_user_validator, - "enterprise_console": AccessMethodLogInfo._enterprise_console_validator, - "sign_in_as": AccessMethodLogInfo._sign_in_as_validator, - "other": AccessMethodLogInfo._other_validator, + 'admin_console': AccessMethodLogInfo._admin_console_validator, + 'api': AccessMethodLogInfo._api_validator, + 'content_manager': AccessMethodLogInfo._content_manager_validator, + 'end_user': AccessMethodLogInfo._end_user_validator, + 'enterprise_console': AccessMethodLogInfo._enterprise_console_validator, + 'sign_in_as': AccessMethodLogInfo._sign_in_as_validator, + 'other': AccessMethodLogInfo._other_validator, } -AccessMethodLogInfo.other = AccessMethodLogInfo("other") +AccessMethodLogInfo.other = AccessMethodLogInfo('other') AccountCaptureAvailability._available_validator = bv.Void() AccountCaptureAvailability._unavailable_validator = bv.Void() AccountCaptureAvailability._other_validator = bv.Void() AccountCaptureAvailability._tagmap = { - "available": AccountCaptureAvailability._available_validator, - "unavailable": AccountCaptureAvailability._unavailable_validator, - "other": AccountCaptureAvailability._other_validator, + 'available': AccountCaptureAvailability._available_validator, + 'unavailable': AccountCaptureAvailability._unavailable_validator, + 'other': AccountCaptureAvailability._other_validator, } -AccountCaptureAvailability.available = AccountCaptureAvailability("available") -AccountCaptureAvailability.unavailable = AccountCaptureAvailability("unavailable") -AccountCaptureAvailability.other = AccountCaptureAvailability("other") +AccountCaptureAvailability.available = AccountCaptureAvailability('available') +AccountCaptureAvailability.unavailable = AccountCaptureAvailability('unavailable') +AccountCaptureAvailability.other = AccountCaptureAvailability('other') AccountCaptureChangeAvailabilityDetails.new_value.validator = AccountCaptureAvailability_validator -AccountCaptureChangeAvailabilityDetails.previous_value.validator = bv.Nullable( - AccountCaptureAvailability_validator -) -AccountCaptureChangeAvailabilityDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +AccountCaptureChangeAvailabilityDetails.previous_value.validator = bv.Nullable(AccountCaptureAvailability_validator) +AccountCaptureChangeAvailabilityDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) AccountCaptureChangeAvailabilityDetails._all_fields_ = [ - ("new_value", AccountCaptureChangeAvailabilityDetails.new_value.validator), - ( - "previous_value", - AccountCaptureChangeAvailabilityDetails.previous_value.validator, - ), + ('new_value', AccountCaptureChangeAvailabilityDetails.new_value.validator), + ('previous_value', AccountCaptureChangeAvailabilityDetails.previous_value.validator), ] AccountCaptureChangeAvailabilityType.description.validator = bv.String() -AccountCaptureChangeAvailabilityType._all_field_names_ = set(["description"]) -AccountCaptureChangeAvailabilityType._all_fields_ = [ - ("description", AccountCaptureChangeAvailabilityType.description.validator) -] +AccountCaptureChangeAvailabilityType._all_field_names_ = set(['description']) +AccountCaptureChangeAvailabilityType._all_fields_ = [('description', AccountCaptureChangeAvailabilityType.description.validator)] AccountCaptureChangePolicyDetails.new_value.validator = AccountCapturePolicy_validator -AccountCaptureChangePolicyDetails.previous_value.validator = bv.Nullable( - AccountCapturePolicy_validator -) -AccountCaptureChangePolicyDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +AccountCaptureChangePolicyDetails.previous_value.validator = bv.Nullable(AccountCapturePolicy_validator) +AccountCaptureChangePolicyDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) AccountCaptureChangePolicyDetails._all_fields_ = [ - ("new_value", AccountCaptureChangePolicyDetails.new_value.validator), - ("previous_value", AccountCaptureChangePolicyDetails.previous_value.validator), + ('new_value', AccountCaptureChangePolicyDetails.new_value.validator), + ('previous_value', AccountCaptureChangePolicyDetails.previous_value.validator), ] AccountCaptureChangePolicyType.description.validator = bv.String() -AccountCaptureChangePolicyType._all_field_names_ = set(["description"]) -AccountCaptureChangePolicyType._all_fields_ = [ - ("description", AccountCaptureChangePolicyType.description.validator) -] +AccountCaptureChangePolicyType._all_field_names_ = set(['description']) +AccountCaptureChangePolicyType._all_fields_ = [('description', AccountCaptureChangePolicyType.description.validator)] AccountCaptureMigrateAccountDetails.domain_name.validator = bv.String() -AccountCaptureMigrateAccountDetails._all_field_names_ = set(["domain_name"]) -AccountCaptureMigrateAccountDetails._all_fields_ = [ - ("domain_name", AccountCaptureMigrateAccountDetails.domain_name.validator) -] +AccountCaptureMigrateAccountDetails._all_field_names_ = set(['domain_name']) +AccountCaptureMigrateAccountDetails._all_fields_ = [('domain_name', AccountCaptureMigrateAccountDetails.domain_name.validator)] AccountCaptureMigrateAccountType.description.validator = bv.String() -AccountCaptureMigrateAccountType._all_field_names_ = set(["description"]) -AccountCaptureMigrateAccountType._all_fields_ = [ - ("description", AccountCaptureMigrateAccountType.description.validator) -] +AccountCaptureMigrateAccountType._all_field_names_ = set(['description']) +AccountCaptureMigrateAccountType._all_fields_ = [('description', AccountCaptureMigrateAccountType.description.validator)] AccountCaptureNotificationEmailsSentDetails.domain_name.validator = bv.String() -AccountCaptureNotificationEmailsSentDetails.notification_type.validator = bv.Nullable( - AccountCaptureNotificationType_validator -) -AccountCaptureNotificationEmailsSentDetails._all_field_names_ = set( - [ - "domain_name", - "notification_type", - ] -) +AccountCaptureNotificationEmailsSentDetails.notification_type.validator = bv.Nullable(AccountCaptureNotificationType_validator) +AccountCaptureNotificationEmailsSentDetails._all_field_names_ = set([ + 'domain_name', + 'notification_type', +]) AccountCaptureNotificationEmailsSentDetails._all_fields_ = [ - ("domain_name", AccountCaptureNotificationEmailsSentDetails.domain_name.validator), - ( - "notification_type", - AccountCaptureNotificationEmailsSentDetails.notification_type.validator, - ), + ('domain_name', AccountCaptureNotificationEmailsSentDetails.domain_name.validator), + ('notification_type', AccountCaptureNotificationEmailsSentDetails.notification_type.validator), ] AccountCaptureNotificationEmailsSentType.description.validator = bv.String() -AccountCaptureNotificationEmailsSentType._all_field_names_ = set(["description"]) -AccountCaptureNotificationEmailsSentType._all_fields_ = [ - ("description", AccountCaptureNotificationEmailsSentType.description.validator) -] +AccountCaptureNotificationEmailsSentType._all_field_names_ = set(['description']) +AccountCaptureNotificationEmailsSentType._all_fields_ = [('description', AccountCaptureNotificationEmailsSentType.description.validator)] AccountCaptureNotificationType._actionable_notification_validator = bv.Void() AccountCaptureNotificationType._proactive_warning_notification_validator = bv.Void() AccountCaptureNotificationType._other_validator = bv.Void() AccountCaptureNotificationType._tagmap = { - "actionable_notification": AccountCaptureNotificationType._actionable_notification_validator, - "proactive_warning_notification": AccountCaptureNotificationType._proactive_warning_notification_validator, - "other": AccountCaptureNotificationType._other_validator, + 'actionable_notification': AccountCaptureNotificationType._actionable_notification_validator, + 'proactive_warning_notification': AccountCaptureNotificationType._proactive_warning_notification_validator, + 'other': AccountCaptureNotificationType._other_validator, } -AccountCaptureNotificationType.actionable_notification = AccountCaptureNotificationType( - "actionable_notification" -) -AccountCaptureNotificationType.proactive_warning_notification = AccountCaptureNotificationType( - "proactive_warning_notification" -) -AccountCaptureNotificationType.other = AccountCaptureNotificationType("other") +AccountCaptureNotificationType.actionable_notification = AccountCaptureNotificationType('actionable_notification') +AccountCaptureNotificationType.proactive_warning_notification = AccountCaptureNotificationType('proactive_warning_notification') +AccountCaptureNotificationType.other = AccountCaptureNotificationType('other') AccountCapturePolicy._all_users_validator = bv.Void() AccountCapturePolicy._disabled_validator = bv.Void() AccountCapturePolicy._invited_users_validator = bv.Void() AccountCapturePolicy._other_validator = bv.Void() AccountCapturePolicy._tagmap = { - "all_users": AccountCapturePolicy._all_users_validator, - "disabled": AccountCapturePolicy._disabled_validator, - "invited_users": AccountCapturePolicy._invited_users_validator, - "other": AccountCapturePolicy._other_validator, + 'all_users': AccountCapturePolicy._all_users_validator, + 'disabled': AccountCapturePolicy._disabled_validator, + 'invited_users': AccountCapturePolicy._invited_users_validator, + 'other': AccountCapturePolicy._other_validator, } -AccountCapturePolicy.all_users = AccountCapturePolicy("all_users") -AccountCapturePolicy.disabled = AccountCapturePolicy("disabled") -AccountCapturePolicy.invited_users = AccountCapturePolicy("invited_users") -AccountCapturePolicy.other = AccountCapturePolicy("other") +AccountCapturePolicy.all_users = AccountCapturePolicy('all_users') +AccountCapturePolicy.disabled = AccountCapturePolicy('disabled') +AccountCapturePolicy.invited_users = AccountCapturePolicy('invited_users') +AccountCapturePolicy.other = AccountCapturePolicy('other') AccountCaptureRelinquishAccountDetails.domain_name.validator = bv.String() -AccountCaptureRelinquishAccountDetails._all_field_names_ = set(["domain_name"]) -AccountCaptureRelinquishAccountDetails._all_fields_ = [ - ("domain_name", AccountCaptureRelinquishAccountDetails.domain_name.validator) -] +AccountCaptureRelinquishAccountDetails._all_field_names_ = set(['domain_name']) +AccountCaptureRelinquishAccountDetails._all_fields_ = [('domain_name', AccountCaptureRelinquishAccountDetails.domain_name.validator)] AccountCaptureRelinquishAccountType.description.validator = bv.String() -AccountCaptureRelinquishAccountType._all_field_names_ = set(["description"]) -AccountCaptureRelinquishAccountType._all_fields_ = [ - ("description", AccountCaptureRelinquishAccountType.description.validator) -] +AccountCaptureRelinquishAccountType._all_field_names_ = set(['description']) +AccountCaptureRelinquishAccountType._all_fields_ = [('description', AccountCaptureRelinquishAccountType.description.validator)] AccountLockOrUnlockedDetails.previous_value.validator = AccountState_validator AccountLockOrUnlockedDetails.new_value.validator = AccountState_validator -AccountLockOrUnlockedDetails._all_field_names_ = set( - [ - "previous_value", - "new_value", - ] -) +AccountLockOrUnlockedDetails._all_field_names_ = set([ + 'previous_value', + 'new_value', +]) AccountLockOrUnlockedDetails._all_fields_ = [ - ("previous_value", AccountLockOrUnlockedDetails.previous_value.validator), - ("new_value", AccountLockOrUnlockedDetails.new_value.validator), + ('previous_value', AccountLockOrUnlockedDetails.previous_value.validator), + ('new_value', AccountLockOrUnlockedDetails.new_value.validator), ] AccountLockOrUnlockedType.description.validator = bv.String() -AccountLockOrUnlockedType._all_field_names_ = set(["description"]) -AccountLockOrUnlockedType._all_fields_ = [ - ("description", AccountLockOrUnlockedType.description.validator) -] +AccountLockOrUnlockedType._all_field_names_ = set(['description']) +AccountLockOrUnlockedType._all_fields_ = [('description', AccountLockOrUnlockedType.description.validator)] AccountState._locked_validator = bv.Void() AccountState._unlocked_validator = bv.Void() AccountState._other_validator = bv.Void() AccountState._tagmap = { - "locked": AccountState._locked_validator, - "unlocked": AccountState._unlocked_validator, - "other": AccountState._other_validator, + 'locked': AccountState._locked_validator, + 'unlocked': AccountState._unlocked_validator, + 'other': AccountState._other_validator, } -AccountState.locked = AccountState("locked") -AccountState.unlocked = AccountState("unlocked") -AccountState.other = AccountState("other") +AccountState.locked = AccountState('locked') +AccountState.unlocked = AccountState('unlocked') +AccountState.other = AccountState('other') ActionDetails._remove_action_validator = MemberRemoveActionType_validator ActionDetails._team_invite_details_validator = TeamInviteDetails_validator ActionDetails._team_join_details_validator = JoinTeamDetails_validator ActionDetails._other_validator = bv.Void() ActionDetails._tagmap = { - "remove_action": ActionDetails._remove_action_validator, - "team_invite_details": ActionDetails._team_invite_details_validator, - "team_join_details": ActionDetails._team_join_details_validator, - "other": ActionDetails._other_validator, + 'remove_action': ActionDetails._remove_action_validator, + 'team_invite_details': ActionDetails._team_invite_details_validator, + 'team_join_details': ActionDetails._team_join_details_validator, + 'other': ActionDetails._other_validator, } -ActionDetails.other = ActionDetails("other") +ActionDetails.other = ActionDetails('other') ActorLogInfo._admin_validator = UserLogInfo_validator ActorLogInfo._anonymous_validator = bv.Void() @@ -98104,56 +94060,52 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ActorLogInfo._user_validator = UserLogInfo_validator ActorLogInfo._other_validator = bv.Void() ActorLogInfo._tagmap = { - "admin": ActorLogInfo._admin_validator, - "anonymous": ActorLogInfo._anonymous_validator, - "app": ActorLogInfo._app_validator, - "dropbox": ActorLogInfo._dropbox_validator, - "reseller": ActorLogInfo._reseller_validator, - "user": ActorLogInfo._user_validator, - "other": ActorLogInfo._other_validator, + 'admin': ActorLogInfo._admin_validator, + 'anonymous': ActorLogInfo._anonymous_validator, + 'app': ActorLogInfo._app_validator, + 'dropbox': ActorLogInfo._dropbox_validator, + 'reseller': ActorLogInfo._reseller_validator, + 'user': ActorLogInfo._user_validator, + 'other': ActorLogInfo._other_validator, } -ActorLogInfo.anonymous = ActorLogInfo("anonymous") -ActorLogInfo.dropbox = ActorLogInfo("dropbox") -ActorLogInfo.other = ActorLogInfo("other") +ActorLogInfo.anonymous = ActorLogInfo('anonymous') +ActorLogInfo.dropbox = ActorLogInfo('dropbox') +ActorLogInfo.other = ActorLogInfo('other') AddonAssignedDetails.user_name.validator = UserNameLogInfo_validator AddonAssignedDetails.addon_name.validator = AddonLogInfo_validator -AddonAssignedDetails._all_field_names_ = set( - [ - "user_name", - "addon_name", - ] -) +AddonAssignedDetails._all_field_names_ = set([ + 'user_name', + 'addon_name', +]) AddonAssignedDetails._all_fields_ = [ - ("user_name", AddonAssignedDetails.user_name.validator), - ("addon_name", AddonAssignedDetails.addon_name.validator), + ('user_name', AddonAssignedDetails.user_name.validator), + ('addon_name', AddonAssignedDetails.addon_name.validator), ] AddonAssignedType.description.validator = bv.String() -AddonAssignedType._all_field_names_ = set(["description"]) -AddonAssignedType._all_fields_ = [("description", AddonAssignedType.description.validator)] +AddonAssignedType._all_field_names_ = set(['description']) +AddonAssignedType._all_fields_ = [('description', AddonAssignedType.description.validator)] AddonLogInfo.addon_name.validator = bv.String() -AddonLogInfo._all_field_names_ = set(["addon_name"]) -AddonLogInfo._all_fields_ = [("addon_name", AddonLogInfo.addon_name.validator)] +AddonLogInfo._all_field_names_ = set(['addon_name']) +AddonLogInfo._all_fields_ = [('addon_name', AddonLogInfo.addon_name.validator)] AddonRemovedDetails.user_name.validator = UserNameLogInfo_validator AddonRemovedDetails.addon_name.validator = AddonLogInfo_validator -AddonRemovedDetails._all_field_names_ = set( - [ - "user_name", - "addon_name", - ] -) +AddonRemovedDetails._all_field_names_ = set([ + 'user_name', + 'addon_name', +]) AddonRemovedDetails._all_fields_ = [ - ("user_name", AddonRemovedDetails.user_name.validator), - ("addon_name", AddonRemovedDetails.addon_name.validator), + ('user_name', AddonRemovedDetails.user_name.validator), + ('addon_name', AddonRemovedDetails.addon_name.validator), ] AddonRemovedType.description.validator = bv.String() -AddonRemovedType._all_field_names_ = set(["description"]) -AddonRemovedType._all_fields_ = [("description", AddonRemovedType.description.validator)] +AddonRemovedType._all_field_names_ = set(['description']) +AddonRemovedType._all_fields_ = [('description', AddonRemovedType.description.validator)] AdminAlertCategoryEnum._account_takeover_validator = bv.Void() AdminAlertCategoryEnum._data_loss_protection_validator = bv.Void() @@ -98164,24 +94116,24 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): AdminAlertCategoryEnum._threat_management_validator = bv.Void() AdminAlertCategoryEnum._other_validator = bv.Void() AdminAlertCategoryEnum._tagmap = { - "account_takeover": AdminAlertCategoryEnum._account_takeover_validator, - "data_loss_protection": AdminAlertCategoryEnum._data_loss_protection_validator, - "information_governance": AdminAlertCategoryEnum._information_governance_validator, - "malware_sharing": AdminAlertCategoryEnum._malware_sharing_validator, - "massive_file_operation": AdminAlertCategoryEnum._massive_file_operation_validator, - "na": AdminAlertCategoryEnum._na_validator, - "threat_management": AdminAlertCategoryEnum._threat_management_validator, - "other": AdminAlertCategoryEnum._other_validator, + 'account_takeover': AdminAlertCategoryEnum._account_takeover_validator, + 'data_loss_protection': AdminAlertCategoryEnum._data_loss_protection_validator, + 'information_governance': AdminAlertCategoryEnum._information_governance_validator, + 'malware_sharing': AdminAlertCategoryEnum._malware_sharing_validator, + 'massive_file_operation': AdminAlertCategoryEnum._massive_file_operation_validator, + 'na': AdminAlertCategoryEnum._na_validator, + 'threat_management': AdminAlertCategoryEnum._threat_management_validator, + 'other': AdminAlertCategoryEnum._other_validator, } -AdminAlertCategoryEnum.account_takeover = AdminAlertCategoryEnum("account_takeover") -AdminAlertCategoryEnum.data_loss_protection = AdminAlertCategoryEnum("data_loss_protection") -AdminAlertCategoryEnum.information_governance = AdminAlertCategoryEnum("information_governance") -AdminAlertCategoryEnum.malware_sharing = AdminAlertCategoryEnum("malware_sharing") -AdminAlertCategoryEnum.massive_file_operation = AdminAlertCategoryEnum("massive_file_operation") -AdminAlertCategoryEnum.na = AdminAlertCategoryEnum("na") -AdminAlertCategoryEnum.threat_management = AdminAlertCategoryEnum("threat_management") -AdminAlertCategoryEnum.other = AdminAlertCategoryEnum("other") +AdminAlertCategoryEnum.account_takeover = AdminAlertCategoryEnum('account_takeover') +AdminAlertCategoryEnum.data_loss_protection = AdminAlertCategoryEnum('data_loss_protection') +AdminAlertCategoryEnum.information_governance = AdminAlertCategoryEnum('information_governance') +AdminAlertCategoryEnum.malware_sharing = AdminAlertCategoryEnum('malware_sharing') +AdminAlertCategoryEnum.massive_file_operation = AdminAlertCategoryEnum('massive_file_operation') +AdminAlertCategoryEnum.na = AdminAlertCategoryEnum('na') +AdminAlertCategoryEnum.threat_management = AdminAlertCategoryEnum('threat_management') +AdminAlertCategoryEnum.other = AdminAlertCategoryEnum('other') AdminAlertGeneralStateEnum._active_validator = bv.Void() AdminAlertGeneralStateEnum._dismissed_validator = bv.Void() @@ -98190,20 +94142,20 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): AdminAlertGeneralStateEnum._resolved_validator = bv.Void() AdminAlertGeneralStateEnum._other_validator = bv.Void() AdminAlertGeneralStateEnum._tagmap = { - "active": AdminAlertGeneralStateEnum._active_validator, - "dismissed": AdminAlertGeneralStateEnum._dismissed_validator, - "in_progress": AdminAlertGeneralStateEnum._in_progress_validator, - "na": AdminAlertGeneralStateEnum._na_validator, - "resolved": AdminAlertGeneralStateEnum._resolved_validator, - "other": AdminAlertGeneralStateEnum._other_validator, + 'active': AdminAlertGeneralStateEnum._active_validator, + 'dismissed': AdminAlertGeneralStateEnum._dismissed_validator, + 'in_progress': AdminAlertGeneralStateEnum._in_progress_validator, + 'na': AdminAlertGeneralStateEnum._na_validator, + 'resolved': AdminAlertGeneralStateEnum._resolved_validator, + 'other': AdminAlertGeneralStateEnum._other_validator, } -AdminAlertGeneralStateEnum.active = AdminAlertGeneralStateEnum("active") -AdminAlertGeneralStateEnum.dismissed = AdminAlertGeneralStateEnum("dismissed") -AdminAlertGeneralStateEnum.in_progress = AdminAlertGeneralStateEnum("in_progress") -AdminAlertGeneralStateEnum.na = AdminAlertGeneralStateEnum("na") -AdminAlertGeneralStateEnum.resolved = AdminAlertGeneralStateEnum("resolved") -AdminAlertGeneralStateEnum.other = AdminAlertGeneralStateEnum("other") +AdminAlertGeneralStateEnum.active = AdminAlertGeneralStateEnum('active') +AdminAlertGeneralStateEnum.dismissed = AdminAlertGeneralStateEnum('dismissed') +AdminAlertGeneralStateEnum.in_progress = AdminAlertGeneralStateEnum('in_progress') +AdminAlertGeneralStateEnum.na = AdminAlertGeneralStateEnum('na') +AdminAlertGeneralStateEnum.resolved = AdminAlertGeneralStateEnum('resolved') +AdminAlertGeneralStateEnum.other = AdminAlertGeneralStateEnum('other') AdminAlertSeverityEnum._high_validator = bv.Void() AdminAlertSeverityEnum._info_validator = bv.Void() @@ -98212,61 +94164,42 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): AdminAlertSeverityEnum._na_validator = bv.Void() AdminAlertSeverityEnum._other_validator = bv.Void() AdminAlertSeverityEnum._tagmap = { - "high": AdminAlertSeverityEnum._high_validator, - "info": AdminAlertSeverityEnum._info_validator, - "low": AdminAlertSeverityEnum._low_validator, - "medium": AdminAlertSeverityEnum._medium_validator, - "na": AdminAlertSeverityEnum._na_validator, - "other": AdminAlertSeverityEnum._other_validator, + 'high': AdminAlertSeverityEnum._high_validator, + 'info': AdminAlertSeverityEnum._info_validator, + 'low': AdminAlertSeverityEnum._low_validator, + 'medium': AdminAlertSeverityEnum._medium_validator, + 'na': AdminAlertSeverityEnum._na_validator, + 'other': AdminAlertSeverityEnum._other_validator, } -AdminAlertSeverityEnum.high = AdminAlertSeverityEnum("high") -AdminAlertSeverityEnum.info = AdminAlertSeverityEnum("info") -AdminAlertSeverityEnum.low = AdminAlertSeverityEnum("low") -AdminAlertSeverityEnum.medium = AdminAlertSeverityEnum("medium") -AdminAlertSeverityEnum.na = AdminAlertSeverityEnum("na") -AdminAlertSeverityEnum.other = AdminAlertSeverityEnum("other") +AdminAlertSeverityEnum.high = AdminAlertSeverityEnum('high') +AdminAlertSeverityEnum.info = AdminAlertSeverityEnum('info') +AdminAlertSeverityEnum.low = AdminAlertSeverityEnum('low') +AdminAlertSeverityEnum.medium = AdminAlertSeverityEnum('medium') +AdminAlertSeverityEnum.na = AdminAlertSeverityEnum('na') +AdminAlertSeverityEnum.other = AdminAlertSeverityEnum('other') -AdminAlertingAlertConfiguration.alert_state.validator = bv.Nullable( - AdminAlertingAlertStatePolicy_validator -) -AdminAlertingAlertConfiguration.sensitivity_level.validator = bv.Nullable( - AdminAlertingAlertSensitivity_validator -) -AdminAlertingAlertConfiguration.recipients_settings.validator = bv.Nullable( - RecipientsConfiguration_validator -) +AdminAlertingAlertConfiguration.alert_state.validator = bv.Nullable(AdminAlertingAlertStatePolicy_validator) +AdminAlertingAlertConfiguration.sensitivity_level.validator = bv.Nullable(AdminAlertingAlertSensitivity_validator) +AdminAlertingAlertConfiguration.recipients_settings.validator = bv.Nullable(RecipientsConfiguration_validator) AdminAlertingAlertConfiguration.text.validator = bv.Nullable(bv.String()) AdminAlertingAlertConfiguration.excluded_file_extensions.validator = bv.Nullable(bv.String()) -AdminAlertingAlertConfiguration.malware_exclusion_state.validator = bv.Nullable( - MalwareExclusionState_validator -) -AdminAlertingAlertConfiguration._all_field_names_ = set( - [ - "alert_state", - "sensitivity_level", - "recipients_settings", - "text", - "excluded_file_extensions", - "malware_exclusion_state", - ] -) +AdminAlertingAlertConfiguration.malware_exclusion_state.validator = bv.Nullable(MalwareExclusionState_validator) +AdminAlertingAlertConfiguration._all_field_names_ = set([ + 'alert_state', + 'sensitivity_level', + 'recipients_settings', + 'text', + 'excluded_file_extensions', + 'malware_exclusion_state', +]) AdminAlertingAlertConfiguration._all_fields_ = [ - ("alert_state", AdminAlertingAlertConfiguration.alert_state.validator), - ("sensitivity_level", AdminAlertingAlertConfiguration.sensitivity_level.validator), - ( - "recipients_settings", - AdminAlertingAlertConfiguration.recipients_settings.validator, - ), - ("text", AdminAlertingAlertConfiguration.text.validator), - ( - "excluded_file_extensions", - AdminAlertingAlertConfiguration.excluded_file_extensions.validator, - ), - ( - "malware_exclusion_state", - AdminAlertingAlertConfiguration.malware_exclusion_state.validator, - ), + ('alert_state', AdminAlertingAlertConfiguration.alert_state.validator), + ('sensitivity_level', AdminAlertingAlertConfiguration.sensitivity_level.validator), + ('recipients_settings', AdminAlertingAlertConfiguration.recipients_settings.validator), + ('text', AdminAlertingAlertConfiguration.text.validator), + ('excluded_file_extensions', AdminAlertingAlertConfiguration.excluded_file_extensions.validator), + ('malware_exclusion_state', AdminAlertingAlertConfiguration.malware_exclusion_state.validator), ] AdminAlertingAlertSensitivity._high_validator = bv.Void() @@ -98277,199 +94210,161 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): AdminAlertingAlertSensitivity._medium_validator = bv.Void() AdminAlertingAlertSensitivity._other_validator = bv.Void() AdminAlertingAlertSensitivity._tagmap = { - "high": AdminAlertingAlertSensitivity._high_validator, - "highest": AdminAlertingAlertSensitivity._highest_validator, - "invalid": AdminAlertingAlertSensitivity._invalid_validator, - "low": AdminAlertingAlertSensitivity._low_validator, - "lowest": AdminAlertingAlertSensitivity._lowest_validator, - "medium": AdminAlertingAlertSensitivity._medium_validator, - "other": AdminAlertingAlertSensitivity._other_validator, + 'high': AdminAlertingAlertSensitivity._high_validator, + 'highest': AdminAlertingAlertSensitivity._highest_validator, + 'invalid': AdminAlertingAlertSensitivity._invalid_validator, + 'low': AdminAlertingAlertSensitivity._low_validator, + 'lowest': AdminAlertingAlertSensitivity._lowest_validator, + 'medium': AdminAlertingAlertSensitivity._medium_validator, + 'other': AdminAlertingAlertSensitivity._other_validator, } -AdminAlertingAlertSensitivity.high = AdminAlertingAlertSensitivity("high") -AdminAlertingAlertSensitivity.highest = AdminAlertingAlertSensitivity("highest") -AdminAlertingAlertSensitivity.invalid = AdminAlertingAlertSensitivity("invalid") -AdminAlertingAlertSensitivity.low = AdminAlertingAlertSensitivity("low") -AdminAlertingAlertSensitivity.lowest = AdminAlertingAlertSensitivity("lowest") -AdminAlertingAlertSensitivity.medium = AdminAlertingAlertSensitivity("medium") -AdminAlertingAlertSensitivity.other = AdminAlertingAlertSensitivity("other") +AdminAlertingAlertSensitivity.high = AdminAlertingAlertSensitivity('high') +AdminAlertingAlertSensitivity.highest = AdminAlertingAlertSensitivity('highest') +AdminAlertingAlertSensitivity.invalid = AdminAlertingAlertSensitivity('invalid') +AdminAlertingAlertSensitivity.low = AdminAlertingAlertSensitivity('low') +AdminAlertingAlertSensitivity.lowest = AdminAlertingAlertSensitivity('lowest') +AdminAlertingAlertSensitivity.medium = AdminAlertingAlertSensitivity('medium') +AdminAlertingAlertSensitivity.other = AdminAlertingAlertSensitivity('other') AdminAlertingAlertStateChangedDetails.alert_name.validator = bv.String() AdminAlertingAlertStateChangedDetails.alert_severity.validator = AdminAlertSeverityEnum_validator AdminAlertingAlertStateChangedDetails.alert_category.validator = AdminAlertCategoryEnum_validator AdminAlertingAlertStateChangedDetails.alert_instance_id.validator = bv.String() -AdminAlertingAlertStateChangedDetails.previous_value.validator = ( - AdminAlertGeneralStateEnum_validator -) +AdminAlertingAlertStateChangedDetails.previous_value.validator = AdminAlertGeneralStateEnum_validator AdminAlertingAlertStateChangedDetails.new_value.validator = AdminAlertGeneralStateEnum_validator -AdminAlertingAlertStateChangedDetails._all_field_names_ = set( - [ - "alert_name", - "alert_severity", - "alert_category", - "alert_instance_id", - "previous_value", - "new_value", - ] -) +AdminAlertingAlertStateChangedDetails._all_field_names_ = set([ + 'alert_name', + 'alert_severity', + 'alert_category', + 'alert_instance_id', + 'previous_value', + 'new_value', +]) AdminAlertingAlertStateChangedDetails._all_fields_ = [ - ("alert_name", AdminAlertingAlertStateChangedDetails.alert_name.validator), - ("alert_severity", AdminAlertingAlertStateChangedDetails.alert_severity.validator), - ("alert_category", AdminAlertingAlertStateChangedDetails.alert_category.validator), - ( - "alert_instance_id", - AdminAlertingAlertStateChangedDetails.alert_instance_id.validator, - ), - ("previous_value", AdminAlertingAlertStateChangedDetails.previous_value.validator), - ("new_value", AdminAlertingAlertStateChangedDetails.new_value.validator), + ('alert_name', AdminAlertingAlertStateChangedDetails.alert_name.validator), + ('alert_severity', AdminAlertingAlertStateChangedDetails.alert_severity.validator), + ('alert_category', AdminAlertingAlertStateChangedDetails.alert_category.validator), + ('alert_instance_id', AdminAlertingAlertStateChangedDetails.alert_instance_id.validator), + ('previous_value', AdminAlertingAlertStateChangedDetails.previous_value.validator), + ('new_value', AdminAlertingAlertStateChangedDetails.new_value.validator), ] AdminAlertingAlertStateChangedType.description.validator = bv.String() -AdminAlertingAlertStateChangedType._all_field_names_ = set(["description"]) -AdminAlertingAlertStateChangedType._all_fields_ = [ - ("description", AdminAlertingAlertStateChangedType.description.validator) -] +AdminAlertingAlertStateChangedType._all_field_names_ = set(['description']) +AdminAlertingAlertStateChangedType._all_fields_ = [('description', AdminAlertingAlertStateChangedType.description.validator)] AdminAlertingAlertStatePolicy._off_validator = bv.Void() AdminAlertingAlertStatePolicy._on_validator = bv.Void() AdminAlertingAlertStatePolicy._other_validator = bv.Void() AdminAlertingAlertStatePolicy._tagmap = { - "off": AdminAlertingAlertStatePolicy._off_validator, - "on": AdminAlertingAlertStatePolicy._on_validator, - "other": AdminAlertingAlertStatePolicy._other_validator, + 'off': AdminAlertingAlertStatePolicy._off_validator, + 'on': AdminAlertingAlertStatePolicy._on_validator, + 'other': AdminAlertingAlertStatePolicy._other_validator, } -AdminAlertingAlertStatePolicy.off = AdminAlertingAlertStatePolicy("off") -AdminAlertingAlertStatePolicy.on = AdminAlertingAlertStatePolicy("on") -AdminAlertingAlertStatePolicy.other = AdminAlertingAlertStatePolicy("other") +AdminAlertingAlertStatePolicy.off = AdminAlertingAlertStatePolicy('off') +AdminAlertingAlertStatePolicy.on = AdminAlertingAlertStatePolicy('on') +AdminAlertingAlertStatePolicy.other = AdminAlertingAlertStatePolicy('other') AdminAlertingChangedAlertConfigDetails.alert_name.validator = bv.String() -AdminAlertingChangedAlertConfigDetails.previous_alert_config.validator = ( - AdminAlertingAlertConfiguration_validator -) -AdminAlertingChangedAlertConfigDetails.new_alert_config.validator = ( - AdminAlertingAlertConfiguration_validator -) -AdminAlertingChangedAlertConfigDetails._all_field_names_ = set( - [ - "alert_name", - "previous_alert_config", - "new_alert_config", - ] -) +AdminAlertingChangedAlertConfigDetails.previous_alert_config.validator = AdminAlertingAlertConfiguration_validator +AdminAlertingChangedAlertConfigDetails.new_alert_config.validator = AdminAlertingAlertConfiguration_validator +AdminAlertingChangedAlertConfigDetails._all_field_names_ = set([ + 'alert_name', + 'previous_alert_config', + 'new_alert_config', +]) AdminAlertingChangedAlertConfigDetails._all_fields_ = [ - ("alert_name", AdminAlertingChangedAlertConfigDetails.alert_name.validator), - ( - "previous_alert_config", - AdminAlertingChangedAlertConfigDetails.previous_alert_config.validator, - ), - ( - "new_alert_config", - AdminAlertingChangedAlertConfigDetails.new_alert_config.validator, - ), + ('alert_name', AdminAlertingChangedAlertConfigDetails.alert_name.validator), + ('previous_alert_config', AdminAlertingChangedAlertConfigDetails.previous_alert_config.validator), + ('new_alert_config', AdminAlertingChangedAlertConfigDetails.new_alert_config.validator), ] AdminAlertingChangedAlertConfigType.description.validator = bv.String() -AdminAlertingChangedAlertConfigType._all_field_names_ = set(["description"]) -AdminAlertingChangedAlertConfigType._all_fields_ = [ - ("description", AdminAlertingChangedAlertConfigType.description.validator) -] +AdminAlertingChangedAlertConfigType._all_field_names_ = set(['description']) +AdminAlertingChangedAlertConfigType._all_fields_ = [('description', AdminAlertingChangedAlertConfigType.description.validator)] AdminAlertingTriggeredAlertDetails.alert_name.validator = bv.String() AdminAlertingTriggeredAlertDetails.alert_severity.validator = AdminAlertSeverityEnum_validator AdminAlertingTriggeredAlertDetails.alert_category.validator = AdminAlertCategoryEnum_validator AdminAlertingTriggeredAlertDetails.alert_instance_id.validator = bv.String() -AdminAlertingTriggeredAlertDetails._all_field_names_ = set( - [ - "alert_name", - "alert_severity", - "alert_category", - "alert_instance_id", - ] -) +AdminAlertingTriggeredAlertDetails._all_field_names_ = set([ + 'alert_name', + 'alert_severity', + 'alert_category', + 'alert_instance_id', +]) AdminAlertingTriggeredAlertDetails._all_fields_ = [ - ("alert_name", AdminAlertingTriggeredAlertDetails.alert_name.validator), - ("alert_severity", AdminAlertingTriggeredAlertDetails.alert_severity.validator), - ("alert_category", AdminAlertingTriggeredAlertDetails.alert_category.validator), - ( - "alert_instance_id", - AdminAlertingTriggeredAlertDetails.alert_instance_id.validator, - ), + ('alert_name', AdminAlertingTriggeredAlertDetails.alert_name.validator), + ('alert_severity', AdminAlertingTriggeredAlertDetails.alert_severity.validator), + ('alert_category', AdminAlertingTriggeredAlertDetails.alert_category.validator), + ('alert_instance_id', AdminAlertingTriggeredAlertDetails.alert_instance_id.validator), ] AdminAlertingTriggeredAlertType.description.validator = bv.String() -AdminAlertingTriggeredAlertType._all_field_names_ = set(["description"]) -AdminAlertingTriggeredAlertType._all_fields_ = [ - ("description", AdminAlertingTriggeredAlertType.description.validator) -] +AdminAlertingTriggeredAlertType._all_field_names_ = set(['description']) +AdminAlertingTriggeredAlertType._all_fields_ = [('description', AdminAlertingTriggeredAlertType.description.validator)] AdminConsoleAppPermission._default_for_listed_apps_validator = bv.Void() AdminConsoleAppPermission._default_for_unlisted_apps_validator = bv.Void() AdminConsoleAppPermission._other_validator = bv.Void() AdminConsoleAppPermission._tagmap = { - "default_for_listed_apps": AdminConsoleAppPermission._default_for_listed_apps_validator, - "default_for_unlisted_apps": AdminConsoleAppPermission._default_for_unlisted_apps_validator, - "other": AdminConsoleAppPermission._other_validator, + 'default_for_listed_apps': AdminConsoleAppPermission._default_for_listed_apps_validator, + 'default_for_unlisted_apps': AdminConsoleAppPermission._default_for_unlisted_apps_validator, + 'other': AdminConsoleAppPermission._other_validator, } -AdminConsoleAppPermission.default_for_listed_apps = AdminConsoleAppPermission( - "default_for_listed_apps" -) -AdminConsoleAppPermission.default_for_unlisted_apps = AdminConsoleAppPermission( - "default_for_unlisted_apps" -) -AdminConsoleAppPermission.other = AdminConsoleAppPermission("other") +AdminConsoleAppPermission.default_for_listed_apps = AdminConsoleAppPermission('default_for_listed_apps') +AdminConsoleAppPermission.default_for_unlisted_apps = AdminConsoleAppPermission('default_for_unlisted_apps') +AdminConsoleAppPermission.other = AdminConsoleAppPermission('other') AdminConsoleAppPolicy._allow_validator = bv.Void() AdminConsoleAppPolicy._block_validator = bv.Void() AdminConsoleAppPolicy._default_validator = bv.Void() AdminConsoleAppPolicy._other_validator = bv.Void() AdminConsoleAppPolicy._tagmap = { - "allow": AdminConsoleAppPolicy._allow_validator, - "block": AdminConsoleAppPolicy._block_validator, - "default": AdminConsoleAppPolicy._default_validator, - "other": AdminConsoleAppPolicy._other_validator, + 'allow': AdminConsoleAppPolicy._allow_validator, + 'block': AdminConsoleAppPolicy._block_validator, + 'default': AdminConsoleAppPolicy._default_validator, + 'other': AdminConsoleAppPolicy._other_validator, } -AdminConsoleAppPolicy.allow = AdminConsoleAppPolicy("allow") -AdminConsoleAppPolicy.block = AdminConsoleAppPolicy("block") -AdminConsoleAppPolicy.default = AdminConsoleAppPolicy("default") -AdminConsoleAppPolicy.other = AdminConsoleAppPolicy("other") +AdminConsoleAppPolicy.allow = AdminConsoleAppPolicy('allow') +AdminConsoleAppPolicy.block = AdminConsoleAppPolicy('block') +AdminConsoleAppPolicy.default = AdminConsoleAppPolicy('default') +AdminConsoleAppPolicy.other = AdminConsoleAppPolicy('other') AdminEmailRemindersChangedDetails.new_value.validator = AdminEmailRemindersPolicy_validator AdminEmailRemindersChangedDetails.previous_value.validator = AdminEmailRemindersPolicy_validator -AdminEmailRemindersChangedDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +AdminEmailRemindersChangedDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) AdminEmailRemindersChangedDetails._all_fields_ = [ - ("new_value", AdminEmailRemindersChangedDetails.new_value.validator), - ("previous_value", AdminEmailRemindersChangedDetails.previous_value.validator), + ('new_value', AdminEmailRemindersChangedDetails.new_value.validator), + ('previous_value', AdminEmailRemindersChangedDetails.previous_value.validator), ] AdminEmailRemindersChangedType.description.validator = bv.String() -AdminEmailRemindersChangedType._all_field_names_ = set(["description"]) -AdminEmailRemindersChangedType._all_fields_ = [ - ("description", AdminEmailRemindersChangedType.description.validator) -] +AdminEmailRemindersChangedType._all_field_names_ = set(['description']) +AdminEmailRemindersChangedType._all_fields_ = [('description', AdminEmailRemindersChangedType.description.validator)] AdminEmailRemindersPolicy._default_validator = bv.Void() AdminEmailRemindersPolicy._disabled_validator = bv.Void() AdminEmailRemindersPolicy._enabled_validator = bv.Void() AdminEmailRemindersPolicy._other_validator = bv.Void() AdminEmailRemindersPolicy._tagmap = { - "default": AdminEmailRemindersPolicy._default_validator, - "disabled": AdminEmailRemindersPolicy._disabled_validator, - "enabled": AdminEmailRemindersPolicy._enabled_validator, - "other": AdminEmailRemindersPolicy._other_validator, + 'default': AdminEmailRemindersPolicy._default_validator, + 'disabled': AdminEmailRemindersPolicy._disabled_validator, + 'enabled': AdminEmailRemindersPolicy._enabled_validator, + 'other': AdminEmailRemindersPolicy._other_validator, } -AdminEmailRemindersPolicy.default = AdminEmailRemindersPolicy("default") -AdminEmailRemindersPolicy.disabled = AdminEmailRemindersPolicy("disabled") -AdminEmailRemindersPolicy.enabled = AdminEmailRemindersPolicy("enabled") -AdminEmailRemindersPolicy.other = AdminEmailRemindersPolicy("other") +AdminEmailRemindersPolicy.default = AdminEmailRemindersPolicy('default') +AdminEmailRemindersPolicy.disabled = AdminEmailRemindersPolicy('disabled') +AdminEmailRemindersPolicy.enabled = AdminEmailRemindersPolicy('enabled') +AdminEmailRemindersPolicy.other = AdminEmailRemindersPolicy('other') AdminRole._billing_admin_validator = bv.Void() AdminRole._compliance_admin_validator = bv.Void() @@ -98485,34 +94380,34 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): AdminRole._user_management_admin_validator = bv.Void() AdminRole._other_validator = bv.Void() AdminRole._tagmap = { - "billing_admin": AdminRole._billing_admin_validator, - "compliance_admin": AdminRole._compliance_admin_validator, - "content_admin": AdminRole._content_admin_validator, - "deprecated_freemium_team_member": AdminRole._deprecated_freemium_team_member_validator, - "freemium_team_creator": AdminRole._freemium_team_creator_validator, - "limited_admin": AdminRole._limited_admin_validator, - "member_only": AdminRole._member_only_validator, - "reporting_admin": AdminRole._reporting_admin_validator, - "security_admin": AdminRole._security_admin_validator, - "support_admin": AdminRole._support_admin_validator, - "team_admin": AdminRole._team_admin_validator, - "user_management_admin": AdminRole._user_management_admin_validator, - "other": AdminRole._other_validator, + 'billing_admin': AdminRole._billing_admin_validator, + 'compliance_admin': AdminRole._compliance_admin_validator, + 'content_admin': AdminRole._content_admin_validator, + 'deprecated_freemium_team_member': AdminRole._deprecated_freemium_team_member_validator, + 'freemium_team_creator': AdminRole._freemium_team_creator_validator, + 'limited_admin': AdminRole._limited_admin_validator, + 'member_only': AdminRole._member_only_validator, + 'reporting_admin': AdminRole._reporting_admin_validator, + 'security_admin': AdminRole._security_admin_validator, + 'support_admin': AdminRole._support_admin_validator, + 'team_admin': AdminRole._team_admin_validator, + 'user_management_admin': AdminRole._user_management_admin_validator, + 'other': AdminRole._other_validator, } -AdminRole.billing_admin = AdminRole("billing_admin") -AdminRole.compliance_admin = AdminRole("compliance_admin") -AdminRole.content_admin = AdminRole("content_admin") -AdminRole.deprecated_freemium_team_member = AdminRole("deprecated_freemium_team_member") -AdminRole.freemium_team_creator = AdminRole("freemium_team_creator") -AdminRole.limited_admin = AdminRole("limited_admin") -AdminRole.member_only = AdminRole("member_only") -AdminRole.reporting_admin = AdminRole("reporting_admin") -AdminRole.security_admin = AdminRole("security_admin") -AdminRole.support_admin = AdminRole("support_admin") -AdminRole.team_admin = AdminRole("team_admin") -AdminRole.user_management_admin = AdminRole("user_management_admin") -AdminRole.other = AdminRole("other") +AdminRole.billing_admin = AdminRole('billing_admin') +AdminRole.compliance_admin = AdminRole('compliance_admin') +AdminRole.content_admin = AdminRole('content_admin') +AdminRole.deprecated_freemium_team_member = AdminRole('deprecated_freemium_team_member') +AdminRole.freemium_team_creator = AdminRole('freemium_team_creator') +AdminRole.limited_admin = AdminRole('limited_admin') +AdminRole.member_only = AdminRole('member_only') +AdminRole.reporting_admin = AdminRole('reporting_admin') +AdminRole.security_admin = AdminRole('security_admin') +AdminRole.support_admin = AdminRole('support_admin') +AdminRole.team_admin = AdminRole('team_admin') +AdminRole.user_management_admin = AdminRole('user_management_admin') +AdminRole.other = AdminRole('other') AiThirdPartySharingDropboxBasePolicy._admins_only_validator = bv.Void() AiThirdPartySharingDropboxBasePolicy._default_validator = bv.Void() @@ -98520,52 +94415,33 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): AiThirdPartySharingDropboxBasePolicy._enabled_validator = bv.Void() AiThirdPartySharingDropboxBasePolicy._other_validator = bv.Void() AiThirdPartySharingDropboxBasePolicy._tagmap = { - "admins_only": AiThirdPartySharingDropboxBasePolicy._admins_only_validator, - "default": AiThirdPartySharingDropboxBasePolicy._default_validator, - "disabled": AiThirdPartySharingDropboxBasePolicy._disabled_validator, - "enabled": AiThirdPartySharingDropboxBasePolicy._enabled_validator, - "other": AiThirdPartySharingDropboxBasePolicy._other_validator, + 'admins_only': AiThirdPartySharingDropboxBasePolicy._admins_only_validator, + 'default': AiThirdPartySharingDropboxBasePolicy._default_validator, + 'disabled': AiThirdPartySharingDropboxBasePolicy._disabled_validator, + 'enabled': AiThirdPartySharingDropboxBasePolicy._enabled_validator, + 'other': AiThirdPartySharingDropboxBasePolicy._other_validator, } -AiThirdPartySharingDropboxBasePolicy.admins_only = AiThirdPartySharingDropboxBasePolicy( - "admins_only" -) -AiThirdPartySharingDropboxBasePolicy.default = AiThirdPartySharingDropboxBasePolicy("default") -AiThirdPartySharingDropboxBasePolicy.disabled = AiThirdPartySharingDropboxBasePolicy("disabled") -AiThirdPartySharingDropboxBasePolicy.enabled = AiThirdPartySharingDropboxBasePolicy("enabled") -AiThirdPartySharingDropboxBasePolicy.other = AiThirdPartySharingDropboxBasePolicy("other") - -AiThirdPartySharingDropboxBasePolicyChangedDetails.new_value.validator = ( - AiThirdPartySharingDropboxBasePolicy_validator -) -AiThirdPartySharingDropboxBasePolicyChangedDetails.previous_value.validator = ( - AiThirdPartySharingDropboxBasePolicy_validator -) -AiThirdPartySharingDropboxBasePolicyChangedDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +AiThirdPartySharingDropboxBasePolicy.admins_only = AiThirdPartySharingDropboxBasePolicy('admins_only') +AiThirdPartySharingDropboxBasePolicy.default = AiThirdPartySharingDropboxBasePolicy('default') +AiThirdPartySharingDropboxBasePolicy.disabled = AiThirdPartySharingDropboxBasePolicy('disabled') +AiThirdPartySharingDropboxBasePolicy.enabled = AiThirdPartySharingDropboxBasePolicy('enabled') +AiThirdPartySharingDropboxBasePolicy.other = AiThirdPartySharingDropboxBasePolicy('other') + +AiThirdPartySharingDropboxBasePolicyChangedDetails.new_value.validator = AiThirdPartySharingDropboxBasePolicy_validator +AiThirdPartySharingDropboxBasePolicyChangedDetails.previous_value.validator = AiThirdPartySharingDropboxBasePolicy_validator +AiThirdPartySharingDropboxBasePolicyChangedDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) AiThirdPartySharingDropboxBasePolicyChangedDetails._all_fields_ = [ - ( - "new_value", - AiThirdPartySharingDropboxBasePolicyChangedDetails.new_value.validator, - ), - ( - "previous_value", - AiThirdPartySharingDropboxBasePolicyChangedDetails.previous_value.validator, - ), + ('new_value', AiThirdPartySharingDropboxBasePolicyChangedDetails.new_value.validator), + ('previous_value', AiThirdPartySharingDropboxBasePolicyChangedDetails.previous_value.validator), ] AiThirdPartySharingDropboxBasePolicyChangedType.description.validator = bv.String() -AiThirdPartySharingDropboxBasePolicyChangedType._all_field_names_ = set(["description"]) -AiThirdPartySharingDropboxBasePolicyChangedType._all_fields_ = [ - ( - "description", - AiThirdPartySharingDropboxBasePolicyChangedType.description.validator, - ) -] +AiThirdPartySharingDropboxBasePolicyChangedType._all_field_names_ = set(['description']) +AiThirdPartySharingDropboxBasePolicyChangedType._all_fields_ = [('description', AiThirdPartySharingDropboxBasePolicyChangedType.description.validator)] AlertRecipientsSettingType._custom_list_validator = bv.Void() AlertRecipientsSettingType._invalid_validator = bv.Void() @@ -98573,96 +94449,83 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): AlertRecipientsSettingType._team_admins_validator = bv.Void() AlertRecipientsSettingType._other_validator = bv.Void() AlertRecipientsSettingType._tagmap = { - "custom_list": AlertRecipientsSettingType._custom_list_validator, - "invalid": AlertRecipientsSettingType._invalid_validator, - "none": AlertRecipientsSettingType._none_validator, - "team_admins": AlertRecipientsSettingType._team_admins_validator, - "other": AlertRecipientsSettingType._other_validator, + 'custom_list': AlertRecipientsSettingType._custom_list_validator, + 'invalid': AlertRecipientsSettingType._invalid_validator, + 'none': AlertRecipientsSettingType._none_validator, + 'team_admins': AlertRecipientsSettingType._team_admins_validator, + 'other': AlertRecipientsSettingType._other_validator, } -AlertRecipientsSettingType.custom_list = AlertRecipientsSettingType("custom_list") -AlertRecipientsSettingType.invalid = AlertRecipientsSettingType("invalid") -AlertRecipientsSettingType.none = AlertRecipientsSettingType("none") -AlertRecipientsSettingType.team_admins = AlertRecipientsSettingType("team_admins") -AlertRecipientsSettingType.other = AlertRecipientsSettingType("other") +AlertRecipientsSettingType.custom_list = AlertRecipientsSettingType('custom_list') +AlertRecipientsSettingType.invalid = AlertRecipientsSettingType('invalid') +AlertRecipientsSettingType.none = AlertRecipientsSettingType('none') +AlertRecipientsSettingType.team_admins = AlertRecipientsSettingType('team_admins') +AlertRecipientsSettingType.other = AlertRecipientsSettingType('other') AllowDownloadDisabledDetails._all_field_names_ = set([]) AllowDownloadDisabledDetails._all_fields_ = [] AllowDownloadDisabledType.description.validator = bv.String() -AllowDownloadDisabledType._all_field_names_ = set(["description"]) -AllowDownloadDisabledType._all_fields_ = [ - ("description", AllowDownloadDisabledType.description.validator) -] +AllowDownloadDisabledType._all_field_names_ = set(['description']) +AllowDownloadDisabledType._all_fields_ = [('description', AllowDownloadDisabledType.description.validator)] AllowDownloadEnabledDetails._all_field_names_ = set([]) AllowDownloadEnabledDetails._all_fields_ = [] AllowDownloadEnabledType.description.validator = bv.String() -AllowDownloadEnabledType._all_field_names_ = set(["description"]) -AllowDownloadEnabledType._all_fields_ = [ - ("description", AllowDownloadEnabledType.description.validator) -] +AllowDownloadEnabledType._all_field_names_ = set(['description']) +AllowDownloadEnabledType._all_fields_ = [('description', AllowDownloadEnabledType.description.validator)] ApiSessionLogInfo.request_id.validator = RequestId_validator -ApiSessionLogInfo._all_field_names_ = set(["request_id"]) -ApiSessionLogInfo._all_fields_ = [("request_id", ApiSessionLogInfo.request_id.validator)] +ApiSessionLogInfo._all_field_names_ = set(['request_id']) +ApiSessionLogInfo._all_fields_ = [('request_id', ApiSessionLogInfo.request_id.validator)] AppBlockedByPermissionsDetails.app_info.validator = AppLogInfo_validator -AppBlockedByPermissionsDetails._all_field_names_ = set(["app_info"]) -AppBlockedByPermissionsDetails._all_fields_ = [ - ("app_info", AppBlockedByPermissionsDetails.app_info.validator) -] +AppBlockedByPermissionsDetails._all_field_names_ = set(['app_info']) +AppBlockedByPermissionsDetails._all_fields_ = [('app_info', AppBlockedByPermissionsDetails.app_info.validator)] AppBlockedByPermissionsType.description.validator = bv.String() -AppBlockedByPermissionsType._all_field_names_ = set(["description"]) -AppBlockedByPermissionsType._all_fields_ = [ - ("description", AppBlockedByPermissionsType.description.validator) -] +AppBlockedByPermissionsType._all_field_names_ = set(['description']) +AppBlockedByPermissionsType._all_fields_ = [('description', AppBlockedByPermissionsType.description.validator)] AppLinkTeamDetails.app_info.validator = AppLogInfo_validator -AppLinkTeamDetails._all_field_names_ = set(["app_info"]) -AppLinkTeamDetails._all_fields_ = [("app_info", AppLinkTeamDetails.app_info.validator)] +AppLinkTeamDetails._all_field_names_ = set(['app_info']) +AppLinkTeamDetails._all_fields_ = [('app_info', AppLinkTeamDetails.app_info.validator)] AppLinkTeamType.description.validator = bv.String() -AppLinkTeamType._all_field_names_ = set(["description"]) -AppLinkTeamType._all_fields_ = [("description", AppLinkTeamType.description.validator)] +AppLinkTeamType._all_field_names_ = set(['description']) +AppLinkTeamType._all_fields_ = [('description', AppLinkTeamType.description.validator)] AppLinkUserDetails.app_info.validator = AppLogInfo_validator -AppLinkUserDetails._all_field_names_ = set(["app_info"]) -AppLinkUserDetails._all_fields_ = [("app_info", AppLinkUserDetails.app_info.validator)] +AppLinkUserDetails._all_field_names_ = set(['app_info']) +AppLinkUserDetails._all_fields_ = [('app_info', AppLinkUserDetails.app_info.validator)] AppLinkUserType.description.validator = bv.String() -AppLinkUserType._all_field_names_ = set(["description"]) -AppLinkUserType._all_fields_ = [("description", AppLinkUserType.description.validator)] +AppLinkUserType._all_field_names_ = set(['description']) +AppLinkUserType._all_fields_ = [('description', AppLinkUserType.description.validator)] AppLogInfo.app_id.validator = bv.Nullable(AppId_validator) AppLogInfo.display_name.validator = bv.Nullable(bv.String()) -AppLogInfo._field_names_ = set( - [ - "app_id", - "display_name", - ] -) +AppLogInfo._field_names_ = set([ + 'app_id', + 'display_name', +]) AppLogInfo._all_field_names_ = AppLogInfo._field_names_ AppLogInfo._fields_ = [ - ("app_id", AppLogInfo.app_id.validator), - ("display_name", AppLogInfo.display_name.validator), + ('app_id', AppLogInfo.app_id.validator), + ('display_name', AppLogInfo.display_name.validator), ] AppLogInfo._all_fields_ = AppLogInfo._fields_ AppLogInfo._tag_to_subtype_ = { - ("team_linked_app",): TeamLinkedAppLogInfo_validator, - ("user_linked_app",): UserLinkedAppLogInfo_validator, - ("user_or_team_linked_app",): UserOrTeamLinkedAppLogInfo_validator, + ('team_linked_app',): TeamLinkedAppLogInfo_validator, + ('user_linked_app',): UserLinkedAppLogInfo_validator, + ('user_or_team_linked_app',): UserOrTeamLinkedAppLogInfo_validator, } AppLogInfo._pytype_to_tag_and_subtype_ = { - TeamLinkedAppLogInfo: (("team_linked_app",), TeamLinkedAppLogInfo_validator), - UserLinkedAppLogInfo: (("user_linked_app",), UserLinkedAppLogInfo_validator), - UserOrTeamLinkedAppLogInfo: ( - ("user_or_team_linked_app",), - UserOrTeamLinkedAppLogInfo_validator, - ), + TeamLinkedAppLogInfo: (('team_linked_app',), TeamLinkedAppLogInfo_validator), + UserLinkedAppLogInfo: (('user_linked_app',), UserLinkedAppLogInfo_validator), + UserOrTeamLinkedAppLogInfo: (('user_or_team_linked_app',), UserOrTeamLinkedAppLogInfo_validator), } AppLogInfo._is_catch_all_ = True @@ -98670,86 +94533,76 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): AppPermissionsChangedDetails.permission.validator = bv.Nullable(AdminConsoleAppPermission_validator) AppPermissionsChangedDetails.previous_value.validator = AdminConsoleAppPolicy_validator AppPermissionsChangedDetails.new_value.validator = AdminConsoleAppPolicy_validator -AppPermissionsChangedDetails._all_field_names_ = set( - [ - "app_name", - "permission", - "previous_value", - "new_value", - ] -) +AppPermissionsChangedDetails._all_field_names_ = set([ + 'app_name', + 'permission', + 'previous_value', + 'new_value', +]) AppPermissionsChangedDetails._all_fields_ = [ - ("app_name", AppPermissionsChangedDetails.app_name.validator), - ("permission", AppPermissionsChangedDetails.permission.validator), - ("previous_value", AppPermissionsChangedDetails.previous_value.validator), - ("new_value", AppPermissionsChangedDetails.new_value.validator), + ('app_name', AppPermissionsChangedDetails.app_name.validator), + ('permission', AppPermissionsChangedDetails.permission.validator), + ('previous_value', AppPermissionsChangedDetails.previous_value.validator), + ('new_value', AppPermissionsChangedDetails.new_value.validator), ] AppPermissionsChangedType.description.validator = bv.String() -AppPermissionsChangedType._all_field_names_ = set(["description"]) -AppPermissionsChangedType._all_fields_ = [ - ("description", AppPermissionsChangedType.description.validator) -] +AppPermissionsChangedType._all_field_names_ = set(['description']) +AppPermissionsChangedType._all_fields_ = [('description', AppPermissionsChangedType.description.validator)] AppUnlinkTeamDetails.app_info.validator = AppLogInfo_validator -AppUnlinkTeamDetails._all_field_names_ = set(["app_info"]) -AppUnlinkTeamDetails._all_fields_ = [("app_info", AppUnlinkTeamDetails.app_info.validator)] +AppUnlinkTeamDetails._all_field_names_ = set(['app_info']) +AppUnlinkTeamDetails._all_fields_ = [('app_info', AppUnlinkTeamDetails.app_info.validator)] AppUnlinkTeamType.description.validator = bv.String() -AppUnlinkTeamType._all_field_names_ = set(["description"]) -AppUnlinkTeamType._all_fields_ = [("description", AppUnlinkTeamType.description.validator)] +AppUnlinkTeamType._all_field_names_ = set(['description']) +AppUnlinkTeamType._all_fields_ = [('description', AppUnlinkTeamType.description.validator)] AppUnlinkUserDetails.app_info.validator = AppLogInfo_validator -AppUnlinkUserDetails._all_field_names_ = set(["app_info"]) -AppUnlinkUserDetails._all_fields_ = [("app_info", AppUnlinkUserDetails.app_info.validator)] +AppUnlinkUserDetails._all_field_names_ = set(['app_info']) +AppUnlinkUserDetails._all_fields_ = [('app_info', AppUnlinkUserDetails.app_info.validator)] AppUnlinkUserType.description.validator = bv.String() -AppUnlinkUserType._all_field_names_ = set(["description"]) -AppUnlinkUserType._all_fields_ = [("description", AppUnlinkUserType.description.validator)] +AppUnlinkUserType._all_field_names_ = set(['description']) +AppUnlinkUserType._all_fields_ = [('description', AppUnlinkUserType.description.validator)] AppleLoginChangePolicyDetails.new_value.validator = AppleLoginPolicy_validator AppleLoginChangePolicyDetails.previous_value.validator = bv.Nullable(AppleLoginPolicy_validator) -AppleLoginChangePolicyDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +AppleLoginChangePolicyDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) AppleLoginChangePolicyDetails._all_fields_ = [ - ("new_value", AppleLoginChangePolicyDetails.new_value.validator), - ("previous_value", AppleLoginChangePolicyDetails.previous_value.validator), + ('new_value', AppleLoginChangePolicyDetails.new_value.validator), + ('previous_value', AppleLoginChangePolicyDetails.previous_value.validator), ] AppleLoginChangePolicyType.description.validator = bv.String() -AppleLoginChangePolicyType._all_field_names_ = set(["description"]) -AppleLoginChangePolicyType._all_fields_ = [ - ("description", AppleLoginChangePolicyType.description.validator) -] +AppleLoginChangePolicyType._all_field_names_ = set(['description']) +AppleLoginChangePolicyType._all_fields_ = [('description', AppleLoginChangePolicyType.description.validator)] AppleLoginPolicy._default_validator = bv.Void() AppleLoginPolicy._disabled_validator = bv.Void() AppleLoginPolicy._enabled_validator = bv.Void() AppleLoginPolicy._other_validator = bv.Void() AppleLoginPolicy._tagmap = { - "default": AppleLoginPolicy._default_validator, - "disabled": AppleLoginPolicy._disabled_validator, - "enabled": AppleLoginPolicy._enabled_validator, - "other": AppleLoginPolicy._other_validator, + 'default': AppleLoginPolicy._default_validator, + 'disabled': AppleLoginPolicy._disabled_validator, + 'enabled': AppleLoginPolicy._enabled_validator, + 'other': AppleLoginPolicy._other_validator, } -AppleLoginPolicy.default = AppleLoginPolicy("default") -AppleLoginPolicy.disabled = AppleLoginPolicy("disabled") -AppleLoginPolicy.enabled = AppleLoginPolicy("enabled") -AppleLoginPolicy.other = AppleLoginPolicy("other") +AppleLoginPolicy.default = AppleLoginPolicy('default') +AppleLoginPolicy.disabled = AppleLoginPolicy('disabled') +AppleLoginPolicy.enabled = AppleLoginPolicy('enabled') +AppleLoginPolicy.other = AppleLoginPolicy('other') ApplyNamingConventionDetails._all_field_names_ = set([]) ApplyNamingConventionDetails._all_fields_ = [] ApplyNamingConventionType.description.validator = bv.String() -ApplyNamingConventionType._all_field_names_ = set(["description"]) -ApplyNamingConventionType._all_fields_ = [ - ("description", ApplyNamingConventionType.description.validator) -] +ApplyNamingConventionType._all_field_names_ = set(['description']) +ApplyNamingConventionType._all_fields_ = [('description', ApplyNamingConventionType.description.validator)] AssetLogInfo._file_validator = FileLogInfo_validator AssetLogInfo._folder_validator = FolderLogInfo_validator @@ -98758,323 +94611,279 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): AssetLogInfo._showcase_document_validator = ShowcaseDocumentLogInfo_validator AssetLogInfo._other_validator = bv.Void() AssetLogInfo._tagmap = { - "file": AssetLogInfo._file_validator, - "folder": AssetLogInfo._folder_validator, - "paper_document": AssetLogInfo._paper_document_validator, - "paper_folder": AssetLogInfo._paper_folder_validator, - "showcase_document": AssetLogInfo._showcase_document_validator, - "other": AssetLogInfo._other_validator, + 'file': AssetLogInfo._file_validator, + 'folder': AssetLogInfo._folder_validator, + 'paper_document': AssetLogInfo._paper_document_validator, + 'paper_folder': AssetLogInfo._paper_folder_validator, + 'showcase_document': AssetLogInfo._showcase_document_validator, + 'other': AssetLogInfo._other_validator, } -AssetLogInfo.other = AssetLogInfo("other") +AssetLogInfo.other = AssetLogInfo('other') BackupAdminInvitationSentDetails._all_field_names_ = set([]) BackupAdminInvitationSentDetails._all_fields_ = [] BackupAdminInvitationSentType.description.validator = bv.String() -BackupAdminInvitationSentType._all_field_names_ = set(["description"]) -BackupAdminInvitationSentType._all_fields_ = [ - ("description", BackupAdminInvitationSentType.description.validator) -] +BackupAdminInvitationSentType._all_field_names_ = set(['description']) +BackupAdminInvitationSentType._all_fields_ = [('description', BackupAdminInvitationSentType.description.validator)] BackupInvitationOpenedDetails._all_field_names_ = set([]) BackupInvitationOpenedDetails._all_fields_ = [] BackupInvitationOpenedType.description.validator = bv.String() -BackupInvitationOpenedType._all_field_names_ = set(["description"]) -BackupInvitationOpenedType._all_fields_ = [ - ("description", BackupInvitationOpenedType.description.validator) -] +BackupInvitationOpenedType._all_field_names_ = set(['description']) +BackupInvitationOpenedType._all_fields_ = [('description', BackupInvitationOpenedType.description.validator)] BackupStatus._disabled_validator = bv.Void() BackupStatus._enabled_validator = bv.Void() BackupStatus._other_validator = bv.Void() BackupStatus._tagmap = { - "disabled": BackupStatus._disabled_validator, - "enabled": BackupStatus._enabled_validator, - "other": BackupStatus._other_validator, + 'disabled': BackupStatus._disabled_validator, + 'enabled': BackupStatus._enabled_validator, + 'other': BackupStatus._other_validator, } -BackupStatus.disabled = BackupStatus("disabled") -BackupStatus.enabled = BackupStatus("enabled") -BackupStatus.other = BackupStatus("other") +BackupStatus.disabled = BackupStatus('disabled') +BackupStatus.enabled = BackupStatus('enabled') +BackupStatus.other = BackupStatus('other') BinderAddPageDetails.event_uuid.validator = bv.String() BinderAddPageDetails.doc_title.validator = bv.String() BinderAddPageDetails.binder_item_name.validator = bv.String() -BinderAddPageDetails._all_field_names_ = set( - [ - "event_uuid", - "doc_title", - "binder_item_name", - ] -) +BinderAddPageDetails._all_field_names_ = set([ + 'event_uuid', + 'doc_title', + 'binder_item_name', +]) BinderAddPageDetails._all_fields_ = [ - ("event_uuid", BinderAddPageDetails.event_uuid.validator), - ("doc_title", BinderAddPageDetails.doc_title.validator), - ("binder_item_name", BinderAddPageDetails.binder_item_name.validator), + ('event_uuid', BinderAddPageDetails.event_uuid.validator), + ('doc_title', BinderAddPageDetails.doc_title.validator), + ('binder_item_name', BinderAddPageDetails.binder_item_name.validator), ] BinderAddPageType.description.validator = bv.String() -BinderAddPageType._all_field_names_ = set(["description"]) -BinderAddPageType._all_fields_ = [("description", BinderAddPageType.description.validator)] +BinderAddPageType._all_field_names_ = set(['description']) +BinderAddPageType._all_fields_ = [('description', BinderAddPageType.description.validator)] BinderAddSectionDetails.event_uuid.validator = bv.String() BinderAddSectionDetails.doc_title.validator = bv.String() BinderAddSectionDetails.binder_item_name.validator = bv.String() -BinderAddSectionDetails._all_field_names_ = set( - [ - "event_uuid", - "doc_title", - "binder_item_name", - ] -) +BinderAddSectionDetails._all_field_names_ = set([ + 'event_uuid', + 'doc_title', + 'binder_item_name', +]) BinderAddSectionDetails._all_fields_ = [ - ("event_uuid", BinderAddSectionDetails.event_uuid.validator), - ("doc_title", BinderAddSectionDetails.doc_title.validator), - ("binder_item_name", BinderAddSectionDetails.binder_item_name.validator), + ('event_uuid', BinderAddSectionDetails.event_uuid.validator), + ('doc_title', BinderAddSectionDetails.doc_title.validator), + ('binder_item_name', BinderAddSectionDetails.binder_item_name.validator), ] BinderAddSectionType.description.validator = bv.String() -BinderAddSectionType._all_field_names_ = set(["description"]) -BinderAddSectionType._all_fields_ = [("description", BinderAddSectionType.description.validator)] +BinderAddSectionType._all_field_names_ = set(['description']) +BinderAddSectionType._all_fields_ = [('description', BinderAddSectionType.description.validator)] BinderRemovePageDetails.event_uuid.validator = bv.String() BinderRemovePageDetails.doc_title.validator = bv.String() BinderRemovePageDetails.binder_item_name.validator = bv.String() -BinderRemovePageDetails._all_field_names_ = set( - [ - "event_uuid", - "doc_title", - "binder_item_name", - ] -) +BinderRemovePageDetails._all_field_names_ = set([ + 'event_uuid', + 'doc_title', + 'binder_item_name', +]) BinderRemovePageDetails._all_fields_ = [ - ("event_uuid", BinderRemovePageDetails.event_uuid.validator), - ("doc_title", BinderRemovePageDetails.doc_title.validator), - ("binder_item_name", BinderRemovePageDetails.binder_item_name.validator), + ('event_uuid', BinderRemovePageDetails.event_uuid.validator), + ('doc_title', BinderRemovePageDetails.doc_title.validator), + ('binder_item_name', BinderRemovePageDetails.binder_item_name.validator), ] BinderRemovePageType.description.validator = bv.String() -BinderRemovePageType._all_field_names_ = set(["description"]) -BinderRemovePageType._all_fields_ = [("description", BinderRemovePageType.description.validator)] +BinderRemovePageType._all_field_names_ = set(['description']) +BinderRemovePageType._all_fields_ = [('description', BinderRemovePageType.description.validator)] BinderRemoveSectionDetails.event_uuid.validator = bv.String() BinderRemoveSectionDetails.doc_title.validator = bv.String() BinderRemoveSectionDetails.binder_item_name.validator = bv.String() -BinderRemoveSectionDetails._all_field_names_ = set( - [ - "event_uuid", - "doc_title", - "binder_item_name", - ] -) +BinderRemoveSectionDetails._all_field_names_ = set([ + 'event_uuid', + 'doc_title', + 'binder_item_name', +]) BinderRemoveSectionDetails._all_fields_ = [ - ("event_uuid", BinderRemoveSectionDetails.event_uuid.validator), - ("doc_title", BinderRemoveSectionDetails.doc_title.validator), - ("binder_item_name", BinderRemoveSectionDetails.binder_item_name.validator), + ('event_uuid', BinderRemoveSectionDetails.event_uuid.validator), + ('doc_title', BinderRemoveSectionDetails.doc_title.validator), + ('binder_item_name', BinderRemoveSectionDetails.binder_item_name.validator), ] BinderRemoveSectionType.description.validator = bv.String() -BinderRemoveSectionType._all_field_names_ = set(["description"]) -BinderRemoveSectionType._all_fields_ = [ - ("description", BinderRemoveSectionType.description.validator) -] +BinderRemoveSectionType._all_field_names_ = set(['description']) +BinderRemoveSectionType._all_fields_ = [('description', BinderRemoveSectionType.description.validator)] BinderRenamePageDetails.event_uuid.validator = bv.String() BinderRenamePageDetails.doc_title.validator = bv.String() BinderRenamePageDetails.binder_item_name.validator = bv.String() BinderRenamePageDetails.previous_binder_item_name.validator = bv.Nullable(bv.String()) -BinderRenamePageDetails._all_field_names_ = set( - [ - "event_uuid", - "doc_title", - "binder_item_name", - "previous_binder_item_name", - ] -) +BinderRenamePageDetails._all_field_names_ = set([ + 'event_uuid', + 'doc_title', + 'binder_item_name', + 'previous_binder_item_name', +]) BinderRenamePageDetails._all_fields_ = [ - ("event_uuid", BinderRenamePageDetails.event_uuid.validator), - ("doc_title", BinderRenamePageDetails.doc_title.validator), - ("binder_item_name", BinderRenamePageDetails.binder_item_name.validator), - ( - "previous_binder_item_name", - BinderRenamePageDetails.previous_binder_item_name.validator, - ), + ('event_uuid', BinderRenamePageDetails.event_uuid.validator), + ('doc_title', BinderRenamePageDetails.doc_title.validator), + ('binder_item_name', BinderRenamePageDetails.binder_item_name.validator), + ('previous_binder_item_name', BinderRenamePageDetails.previous_binder_item_name.validator), ] BinderRenamePageType.description.validator = bv.String() -BinderRenamePageType._all_field_names_ = set(["description"]) -BinderRenamePageType._all_fields_ = [("description", BinderRenamePageType.description.validator)] +BinderRenamePageType._all_field_names_ = set(['description']) +BinderRenamePageType._all_fields_ = [('description', BinderRenamePageType.description.validator)] BinderRenameSectionDetails.event_uuid.validator = bv.String() BinderRenameSectionDetails.doc_title.validator = bv.String() BinderRenameSectionDetails.binder_item_name.validator = bv.String() BinderRenameSectionDetails.previous_binder_item_name.validator = bv.Nullable(bv.String()) -BinderRenameSectionDetails._all_field_names_ = set( - [ - "event_uuid", - "doc_title", - "binder_item_name", - "previous_binder_item_name", - ] -) +BinderRenameSectionDetails._all_field_names_ = set([ + 'event_uuid', + 'doc_title', + 'binder_item_name', + 'previous_binder_item_name', +]) BinderRenameSectionDetails._all_fields_ = [ - ("event_uuid", BinderRenameSectionDetails.event_uuid.validator), - ("doc_title", BinderRenameSectionDetails.doc_title.validator), - ("binder_item_name", BinderRenameSectionDetails.binder_item_name.validator), - ( - "previous_binder_item_name", - BinderRenameSectionDetails.previous_binder_item_name.validator, - ), + ('event_uuid', BinderRenameSectionDetails.event_uuid.validator), + ('doc_title', BinderRenameSectionDetails.doc_title.validator), + ('binder_item_name', BinderRenameSectionDetails.binder_item_name.validator), + ('previous_binder_item_name', BinderRenameSectionDetails.previous_binder_item_name.validator), ] BinderRenameSectionType.description.validator = bv.String() -BinderRenameSectionType._all_field_names_ = set(["description"]) -BinderRenameSectionType._all_fields_ = [ - ("description", BinderRenameSectionType.description.validator) -] +BinderRenameSectionType._all_field_names_ = set(['description']) +BinderRenameSectionType._all_fields_ = [('description', BinderRenameSectionType.description.validator)] BinderReorderPageDetails.event_uuid.validator = bv.String() BinderReorderPageDetails.doc_title.validator = bv.String() BinderReorderPageDetails.binder_item_name.validator = bv.String() -BinderReorderPageDetails._all_field_names_ = set( - [ - "event_uuid", - "doc_title", - "binder_item_name", - ] -) +BinderReorderPageDetails._all_field_names_ = set([ + 'event_uuid', + 'doc_title', + 'binder_item_name', +]) BinderReorderPageDetails._all_fields_ = [ - ("event_uuid", BinderReorderPageDetails.event_uuid.validator), - ("doc_title", BinderReorderPageDetails.doc_title.validator), - ("binder_item_name", BinderReorderPageDetails.binder_item_name.validator), + ('event_uuid', BinderReorderPageDetails.event_uuid.validator), + ('doc_title', BinderReorderPageDetails.doc_title.validator), + ('binder_item_name', BinderReorderPageDetails.binder_item_name.validator), ] BinderReorderPageType.description.validator = bv.String() -BinderReorderPageType._all_field_names_ = set(["description"]) -BinderReorderPageType._all_fields_ = [("description", BinderReorderPageType.description.validator)] +BinderReorderPageType._all_field_names_ = set(['description']) +BinderReorderPageType._all_fields_ = [('description', BinderReorderPageType.description.validator)] BinderReorderSectionDetails.event_uuid.validator = bv.String() BinderReorderSectionDetails.doc_title.validator = bv.String() BinderReorderSectionDetails.binder_item_name.validator = bv.String() -BinderReorderSectionDetails._all_field_names_ = set( - [ - "event_uuid", - "doc_title", - "binder_item_name", - ] -) +BinderReorderSectionDetails._all_field_names_ = set([ + 'event_uuid', + 'doc_title', + 'binder_item_name', +]) BinderReorderSectionDetails._all_fields_ = [ - ("event_uuid", BinderReorderSectionDetails.event_uuid.validator), - ("doc_title", BinderReorderSectionDetails.doc_title.validator), - ("binder_item_name", BinderReorderSectionDetails.binder_item_name.validator), + ('event_uuid', BinderReorderSectionDetails.event_uuid.validator), + ('doc_title', BinderReorderSectionDetails.doc_title.validator), + ('binder_item_name', BinderReorderSectionDetails.binder_item_name.validator), ] BinderReorderSectionType.description.validator = bv.String() -BinderReorderSectionType._all_field_names_ = set(["description"]) -BinderReorderSectionType._all_fields_ = [ - ("description", BinderReorderSectionType.description.validator) -] +BinderReorderSectionType._all_field_names_ = set(['description']) +BinderReorderSectionType._all_fields_ = [('description', BinderReorderSectionType.description.validator)] CameraUploadsPolicy._disabled_validator = bv.Void() CameraUploadsPolicy._enabled_validator = bv.Void() CameraUploadsPolicy._other_validator = bv.Void() CameraUploadsPolicy._tagmap = { - "disabled": CameraUploadsPolicy._disabled_validator, - "enabled": CameraUploadsPolicy._enabled_validator, - "other": CameraUploadsPolicy._other_validator, + 'disabled': CameraUploadsPolicy._disabled_validator, + 'enabled': CameraUploadsPolicy._enabled_validator, + 'other': CameraUploadsPolicy._other_validator, } -CameraUploadsPolicy.disabled = CameraUploadsPolicy("disabled") -CameraUploadsPolicy.enabled = CameraUploadsPolicy("enabled") -CameraUploadsPolicy.other = CameraUploadsPolicy("other") +CameraUploadsPolicy.disabled = CameraUploadsPolicy('disabled') +CameraUploadsPolicy.enabled = CameraUploadsPolicy('enabled') +CameraUploadsPolicy.other = CameraUploadsPolicy('other') CameraUploadsPolicyChangedDetails.new_value.validator = CameraUploadsPolicy_validator CameraUploadsPolicyChangedDetails.previous_value.validator = CameraUploadsPolicy_validator -CameraUploadsPolicyChangedDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +CameraUploadsPolicyChangedDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) CameraUploadsPolicyChangedDetails._all_fields_ = [ - ("new_value", CameraUploadsPolicyChangedDetails.new_value.validator), - ("previous_value", CameraUploadsPolicyChangedDetails.previous_value.validator), + ('new_value', CameraUploadsPolicyChangedDetails.new_value.validator), + ('previous_value', CameraUploadsPolicyChangedDetails.previous_value.validator), ] CameraUploadsPolicyChangedType.description.validator = bv.String() -CameraUploadsPolicyChangedType._all_field_names_ = set(["description"]) -CameraUploadsPolicyChangedType._all_fields_ = [ - ("description", CameraUploadsPolicyChangedType.description.validator) -] +CameraUploadsPolicyChangedType._all_field_names_ = set(['description']) +CameraUploadsPolicyChangedType._all_fields_ = [('description', CameraUploadsPolicyChangedType.description.validator)] CaptureTeamSpacePolicy._disabled_validator = bv.Void() CaptureTeamSpacePolicy._enabled_validator = bv.Void() CaptureTeamSpacePolicy._other_validator = bv.Void() CaptureTeamSpacePolicy._tagmap = { - "disabled": CaptureTeamSpacePolicy._disabled_validator, - "enabled": CaptureTeamSpacePolicy._enabled_validator, - "other": CaptureTeamSpacePolicy._other_validator, + 'disabled': CaptureTeamSpacePolicy._disabled_validator, + 'enabled': CaptureTeamSpacePolicy._enabled_validator, + 'other': CaptureTeamSpacePolicy._other_validator, } -CaptureTeamSpacePolicy.disabled = CaptureTeamSpacePolicy("disabled") -CaptureTeamSpacePolicy.enabled = CaptureTeamSpacePolicy("enabled") -CaptureTeamSpacePolicy.other = CaptureTeamSpacePolicy("other") +CaptureTeamSpacePolicy.disabled = CaptureTeamSpacePolicy('disabled') +CaptureTeamSpacePolicy.enabled = CaptureTeamSpacePolicy('enabled') +CaptureTeamSpacePolicy.other = CaptureTeamSpacePolicy('other') CaptureTeamSpacePolicyChangedDetails.new_value.validator = CaptureTeamSpacePolicy_validator CaptureTeamSpacePolicyChangedDetails.previous_value.validator = CaptureTeamSpacePolicy_validator -CaptureTeamSpacePolicyChangedDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +CaptureTeamSpacePolicyChangedDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) CaptureTeamSpacePolicyChangedDetails._all_fields_ = [ - ("new_value", CaptureTeamSpacePolicyChangedDetails.new_value.validator), - ("previous_value", CaptureTeamSpacePolicyChangedDetails.previous_value.validator), + ('new_value', CaptureTeamSpacePolicyChangedDetails.new_value.validator), + ('previous_value', CaptureTeamSpacePolicyChangedDetails.previous_value.validator), ] CaptureTeamSpacePolicyChangedType.description.validator = bv.String() -CaptureTeamSpacePolicyChangedType._all_field_names_ = set(["description"]) -CaptureTeamSpacePolicyChangedType._all_fields_ = [ - ("description", CaptureTeamSpacePolicyChangedType.description.validator) -] +CaptureTeamSpacePolicyChangedType._all_field_names_ = set(['description']) +CaptureTeamSpacePolicyChangedType._all_fields_ = [('description', CaptureTeamSpacePolicyChangedType.description.validator)] CaptureTranscriptPolicy._default_validator = bv.Void() CaptureTranscriptPolicy._disabled_validator = bv.Void() CaptureTranscriptPolicy._enabled_validator = bv.Void() CaptureTranscriptPolicy._other_validator = bv.Void() CaptureTranscriptPolicy._tagmap = { - "default": CaptureTranscriptPolicy._default_validator, - "disabled": CaptureTranscriptPolicy._disabled_validator, - "enabled": CaptureTranscriptPolicy._enabled_validator, - "other": CaptureTranscriptPolicy._other_validator, + 'default': CaptureTranscriptPolicy._default_validator, + 'disabled': CaptureTranscriptPolicy._disabled_validator, + 'enabled': CaptureTranscriptPolicy._enabled_validator, + 'other': CaptureTranscriptPolicy._other_validator, } -CaptureTranscriptPolicy.default = CaptureTranscriptPolicy("default") -CaptureTranscriptPolicy.disabled = CaptureTranscriptPolicy("disabled") -CaptureTranscriptPolicy.enabled = CaptureTranscriptPolicy("enabled") -CaptureTranscriptPolicy.other = CaptureTranscriptPolicy("other") +CaptureTranscriptPolicy.default = CaptureTranscriptPolicy('default') +CaptureTranscriptPolicy.disabled = CaptureTranscriptPolicy('disabled') +CaptureTranscriptPolicy.enabled = CaptureTranscriptPolicy('enabled') +CaptureTranscriptPolicy.other = CaptureTranscriptPolicy('other') CaptureTranscriptPolicyChangedDetails.new_value.validator = CaptureTranscriptPolicy_validator CaptureTranscriptPolicyChangedDetails.previous_value.validator = CaptureTranscriptPolicy_validator -CaptureTranscriptPolicyChangedDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +CaptureTranscriptPolicyChangedDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) CaptureTranscriptPolicyChangedDetails._all_fields_ = [ - ("new_value", CaptureTranscriptPolicyChangedDetails.new_value.validator), - ("previous_value", CaptureTranscriptPolicyChangedDetails.previous_value.validator), + ('new_value', CaptureTranscriptPolicyChangedDetails.new_value.validator), + ('previous_value', CaptureTranscriptPolicyChangedDetails.previous_value.validator), ] CaptureTranscriptPolicyChangedType.description.validator = bv.String() -CaptureTranscriptPolicyChangedType._all_field_names_ = set(["description"]) -CaptureTranscriptPolicyChangedType._all_fields_ = [ - ("description", CaptureTranscriptPolicyChangedType.description.validator) -] +CaptureTranscriptPolicyChangedType._all_field_names_ = set(['description']) +CaptureTranscriptPolicyChangedType._all_fields_ = [('description', CaptureTranscriptPolicyChangedType.description.validator)] Certificate.subject.validator = bv.String() Certificate.issuer.validator = bv.String() @@ -99083,146 +94892,109 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): Certificate.serial_number.validator = bv.String() Certificate.sha1_fingerprint.validator = bv.String() Certificate.common_name.validator = bv.Nullable(bv.String()) -Certificate._all_field_names_ = set( - [ - "subject", - "issuer", - "issue_date", - "expiration_date", - "serial_number", - "sha1_fingerprint", - "common_name", - ] -) +Certificate._all_field_names_ = set([ + 'subject', + 'issuer', + 'issue_date', + 'expiration_date', + 'serial_number', + 'sha1_fingerprint', + 'common_name', +]) Certificate._all_fields_ = [ - ("subject", Certificate.subject.validator), - ("issuer", Certificate.issuer.validator), - ("issue_date", Certificate.issue_date.validator), - ("expiration_date", Certificate.expiration_date.validator), - ("serial_number", Certificate.serial_number.validator), - ("sha1_fingerprint", Certificate.sha1_fingerprint.validator), - ("common_name", Certificate.common_name.validator), + ('subject', Certificate.subject.validator), + ('issuer', Certificate.issuer.validator), + ('issue_date', Certificate.issue_date.validator), + ('expiration_date', Certificate.expiration_date.validator), + ('serial_number', Certificate.serial_number.validator), + ('sha1_fingerprint', Certificate.sha1_fingerprint.validator), + ('common_name', Certificate.common_name.validator), ] ChangeLinkExpirationPolicy._allowed_validator = bv.Void() ChangeLinkExpirationPolicy._not_allowed_validator = bv.Void() ChangeLinkExpirationPolicy._other_validator = bv.Void() ChangeLinkExpirationPolicy._tagmap = { - "allowed": ChangeLinkExpirationPolicy._allowed_validator, - "not_allowed": ChangeLinkExpirationPolicy._not_allowed_validator, - "other": ChangeLinkExpirationPolicy._other_validator, + 'allowed': ChangeLinkExpirationPolicy._allowed_validator, + 'not_allowed': ChangeLinkExpirationPolicy._not_allowed_validator, + 'other': ChangeLinkExpirationPolicy._other_validator, } -ChangeLinkExpirationPolicy.allowed = ChangeLinkExpirationPolicy("allowed") -ChangeLinkExpirationPolicy.not_allowed = ChangeLinkExpirationPolicy("not_allowed") -ChangeLinkExpirationPolicy.other = ChangeLinkExpirationPolicy("other") +ChangeLinkExpirationPolicy.allowed = ChangeLinkExpirationPolicy('allowed') +ChangeLinkExpirationPolicy.not_allowed = ChangeLinkExpirationPolicy('not_allowed') +ChangeLinkExpirationPolicy.other = ChangeLinkExpirationPolicy('other') ChangedEnterpriseAdminRoleDetails.previous_value.validator = FedAdminRole_validator ChangedEnterpriseAdminRoleDetails.new_value.validator = FedAdminRole_validator ChangedEnterpriseAdminRoleDetails.team_name.validator = bv.String() -ChangedEnterpriseAdminRoleDetails._all_field_names_ = set( - [ - "previous_value", - "new_value", - "team_name", - ] -) +ChangedEnterpriseAdminRoleDetails._all_field_names_ = set([ + 'previous_value', + 'new_value', + 'team_name', +]) ChangedEnterpriseAdminRoleDetails._all_fields_ = [ - ("previous_value", ChangedEnterpriseAdminRoleDetails.previous_value.validator), - ("new_value", ChangedEnterpriseAdminRoleDetails.new_value.validator), - ("team_name", ChangedEnterpriseAdminRoleDetails.team_name.validator), + ('previous_value', ChangedEnterpriseAdminRoleDetails.previous_value.validator), + ('new_value', ChangedEnterpriseAdminRoleDetails.new_value.validator), + ('team_name', ChangedEnterpriseAdminRoleDetails.team_name.validator), ] ChangedEnterpriseAdminRoleType.description.validator = bv.String() -ChangedEnterpriseAdminRoleType._all_field_names_ = set(["description"]) -ChangedEnterpriseAdminRoleType._all_fields_ = [ - ("description", ChangedEnterpriseAdminRoleType.description.validator) -] +ChangedEnterpriseAdminRoleType._all_field_names_ = set(['description']) +ChangedEnterpriseAdminRoleType._all_fields_ = [('description', ChangedEnterpriseAdminRoleType.description.validator)] ChangedEnterpriseConnectedTeamStatusDetails.action.validator = FedHandshakeAction_validator -ChangedEnterpriseConnectedTeamStatusDetails.additional_info.validator = ( - FederationStatusChangeAdditionalInfo_validator -) -ChangedEnterpriseConnectedTeamStatusDetails.previous_value.validator = ( - TrustedTeamsRequestState_validator -) +ChangedEnterpriseConnectedTeamStatusDetails.additional_info.validator = FederationStatusChangeAdditionalInfo_validator +ChangedEnterpriseConnectedTeamStatusDetails.previous_value.validator = TrustedTeamsRequestState_validator ChangedEnterpriseConnectedTeamStatusDetails.new_value.validator = TrustedTeamsRequestState_validator -ChangedEnterpriseConnectedTeamStatusDetails._all_field_names_ = set( - [ - "action", - "additional_info", - "previous_value", - "new_value", - ] -) +ChangedEnterpriseConnectedTeamStatusDetails._all_field_names_ = set([ + 'action', + 'additional_info', + 'previous_value', + 'new_value', +]) ChangedEnterpriseConnectedTeamStatusDetails._all_fields_ = [ - ("action", ChangedEnterpriseConnectedTeamStatusDetails.action.validator), - ( - "additional_info", - ChangedEnterpriseConnectedTeamStatusDetails.additional_info.validator, - ), - ( - "previous_value", - ChangedEnterpriseConnectedTeamStatusDetails.previous_value.validator, - ), - ("new_value", ChangedEnterpriseConnectedTeamStatusDetails.new_value.validator), + ('action', ChangedEnterpriseConnectedTeamStatusDetails.action.validator), + ('additional_info', ChangedEnterpriseConnectedTeamStatusDetails.additional_info.validator), + ('previous_value', ChangedEnterpriseConnectedTeamStatusDetails.previous_value.validator), + ('new_value', ChangedEnterpriseConnectedTeamStatusDetails.new_value.validator), ] ChangedEnterpriseConnectedTeamStatusType.description.validator = bv.String() -ChangedEnterpriseConnectedTeamStatusType._all_field_names_ = set(["description"]) -ChangedEnterpriseConnectedTeamStatusType._all_fields_ = [ - ("description", ChangedEnterpriseConnectedTeamStatusType.description.validator) -] +ChangedEnterpriseConnectedTeamStatusType._all_field_names_ = set(['description']) +ChangedEnterpriseConnectedTeamStatusType._all_fields_ = [('description', ChangedEnterpriseConnectedTeamStatusType.description.validator)] -ClassificationChangePolicyDetails.previous_value.validator = ( - ClassificationPolicyEnumWrapper_validator -) +ClassificationChangePolicyDetails.previous_value.validator = ClassificationPolicyEnumWrapper_validator ClassificationChangePolicyDetails.new_value.validator = ClassificationPolicyEnumWrapper_validator ClassificationChangePolicyDetails.classification_type.validator = ClassificationType_validator -ClassificationChangePolicyDetails._all_field_names_ = set( - [ - "previous_value", - "new_value", - "classification_type", - ] -) +ClassificationChangePolicyDetails._all_field_names_ = set([ + 'previous_value', + 'new_value', + 'classification_type', +]) ClassificationChangePolicyDetails._all_fields_ = [ - ("previous_value", ClassificationChangePolicyDetails.previous_value.validator), - ("new_value", ClassificationChangePolicyDetails.new_value.validator), - ( - "classification_type", - ClassificationChangePolicyDetails.classification_type.validator, - ), + ('previous_value', ClassificationChangePolicyDetails.previous_value.validator), + ('new_value', ClassificationChangePolicyDetails.new_value.validator), + ('classification_type', ClassificationChangePolicyDetails.classification_type.validator), ] ClassificationChangePolicyType.description.validator = bv.String() -ClassificationChangePolicyType._all_field_names_ = set(["description"]) -ClassificationChangePolicyType._all_fields_ = [ - ("description", ClassificationChangePolicyType.description.validator) -] +ClassificationChangePolicyType._all_field_names_ = set(['description']) +ClassificationChangePolicyType._all_fields_ = [('description', ClassificationChangePolicyType.description.validator)] ClassificationCreateReportDetails._all_field_names_ = set([]) ClassificationCreateReportDetails._all_fields_ = [] -ClassificationCreateReportFailDetails.failure_reason.validator = ( - team.TeamReportFailureReason_validator -) -ClassificationCreateReportFailDetails._all_field_names_ = set(["failure_reason"]) -ClassificationCreateReportFailDetails._all_fields_ = [ - ("failure_reason", ClassificationCreateReportFailDetails.failure_reason.validator) -] +ClassificationCreateReportFailDetails.failure_reason.validator = team.TeamReportFailureReason_validator +ClassificationCreateReportFailDetails._all_field_names_ = set(['failure_reason']) +ClassificationCreateReportFailDetails._all_fields_ = [('failure_reason', ClassificationCreateReportFailDetails.failure_reason.validator)] ClassificationCreateReportFailType.description.validator = bv.String() -ClassificationCreateReportFailType._all_field_names_ = set(["description"]) -ClassificationCreateReportFailType._all_fields_ = [ - ("description", ClassificationCreateReportFailType.description.validator) -] +ClassificationCreateReportFailType._all_field_names_ = set(['description']) +ClassificationCreateReportFailType._all_fields_ = [('description', ClassificationCreateReportFailType.description.validator)] ClassificationCreateReportType.description.validator = bv.String() -ClassificationCreateReportType._all_field_names_ = set(["description"]) -ClassificationCreateReportType._all_fields_ = [ - ("description", ClassificationCreateReportType.description.validator) -] +ClassificationCreateReportType._all_field_names_ = set(['description']) +ClassificationCreateReportType._all_fields_ = [('description', ClassificationCreateReportType.description.validator)] ClassificationPolicyEnumWrapper._disabled_validator = bv.Void() ClassificationPolicyEnumWrapper._enabled_validator = bv.Void() @@ -99230,175 +95002,139 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ClassificationPolicyEnumWrapper._team_folders_validator = bv.Void() ClassificationPolicyEnumWrapper._other_validator = bv.Void() ClassificationPolicyEnumWrapper._tagmap = { - "disabled": ClassificationPolicyEnumWrapper._disabled_validator, - "enabled": ClassificationPolicyEnumWrapper._enabled_validator, - "member_and_team_folders": ClassificationPolicyEnumWrapper._member_and_team_folders_validator, - "team_folders": ClassificationPolicyEnumWrapper._team_folders_validator, - "other": ClassificationPolicyEnumWrapper._other_validator, + 'disabled': ClassificationPolicyEnumWrapper._disabled_validator, + 'enabled': ClassificationPolicyEnumWrapper._enabled_validator, + 'member_and_team_folders': ClassificationPolicyEnumWrapper._member_and_team_folders_validator, + 'team_folders': ClassificationPolicyEnumWrapper._team_folders_validator, + 'other': ClassificationPolicyEnumWrapper._other_validator, } -ClassificationPolicyEnumWrapper.disabled = ClassificationPolicyEnumWrapper("disabled") -ClassificationPolicyEnumWrapper.enabled = ClassificationPolicyEnumWrapper("enabled") -ClassificationPolicyEnumWrapper.member_and_team_folders = ClassificationPolicyEnumWrapper( - "member_and_team_folders" -) -ClassificationPolicyEnumWrapper.team_folders = ClassificationPolicyEnumWrapper("team_folders") -ClassificationPolicyEnumWrapper.other = ClassificationPolicyEnumWrapper("other") +ClassificationPolicyEnumWrapper.disabled = ClassificationPolicyEnumWrapper('disabled') +ClassificationPolicyEnumWrapper.enabled = ClassificationPolicyEnumWrapper('enabled') +ClassificationPolicyEnumWrapper.member_and_team_folders = ClassificationPolicyEnumWrapper('member_and_team_folders') +ClassificationPolicyEnumWrapper.team_folders = ClassificationPolicyEnumWrapper('team_folders') +ClassificationPolicyEnumWrapper.other = ClassificationPolicyEnumWrapper('other') ClassificationType._personal_information_validator = bv.Void() ClassificationType._pii_validator = bv.Void() ClassificationType._other_validator = bv.Void() ClassificationType._tagmap = { - "personal_information": ClassificationType._personal_information_validator, - "pii": ClassificationType._pii_validator, - "other": ClassificationType._other_validator, + 'personal_information': ClassificationType._personal_information_validator, + 'pii': ClassificationType._pii_validator, + 'other': ClassificationType._other_validator, } -ClassificationType.personal_information = ClassificationType("personal_information") -ClassificationType.pii = ClassificationType("pii") -ClassificationType.other = ClassificationType("other") +ClassificationType.personal_information = ClassificationType('personal_information') +ClassificationType.pii = ClassificationType('pii') +ClassificationType.other = ClassificationType('other') CollectionShareDetails.album_name.validator = bv.String() -CollectionShareDetails._all_field_names_ = set(["album_name"]) -CollectionShareDetails._all_fields_ = [("album_name", CollectionShareDetails.album_name.validator)] +CollectionShareDetails._all_field_names_ = set(['album_name']) +CollectionShareDetails._all_fields_ = [('album_name', CollectionShareDetails.album_name.validator)] CollectionShareType.description.validator = bv.String() -CollectionShareType._all_field_names_ = set(["description"]) -CollectionShareType._all_fields_ = [("description", CollectionShareType.description.validator)] +CollectionShareType._all_field_names_ = set(['description']) +CollectionShareType._all_fields_ = [('description', CollectionShareType.description.validator)] ComputerBackupPolicy._default_validator = bv.Void() ComputerBackupPolicy._disabled_validator = bv.Void() ComputerBackupPolicy._enabled_validator = bv.Void() ComputerBackupPolicy._other_validator = bv.Void() ComputerBackupPolicy._tagmap = { - "default": ComputerBackupPolicy._default_validator, - "disabled": ComputerBackupPolicy._disabled_validator, - "enabled": ComputerBackupPolicy._enabled_validator, - "other": ComputerBackupPolicy._other_validator, + 'default': ComputerBackupPolicy._default_validator, + 'disabled': ComputerBackupPolicy._disabled_validator, + 'enabled': ComputerBackupPolicy._enabled_validator, + 'other': ComputerBackupPolicy._other_validator, } -ComputerBackupPolicy.default = ComputerBackupPolicy("default") -ComputerBackupPolicy.disabled = ComputerBackupPolicy("disabled") -ComputerBackupPolicy.enabled = ComputerBackupPolicy("enabled") -ComputerBackupPolicy.other = ComputerBackupPolicy("other") +ComputerBackupPolicy.default = ComputerBackupPolicy('default') +ComputerBackupPolicy.disabled = ComputerBackupPolicy('disabled') +ComputerBackupPolicy.enabled = ComputerBackupPolicy('enabled') +ComputerBackupPolicy.other = ComputerBackupPolicy('other') ComputerBackupPolicyChangedDetails.new_value.validator = ComputerBackupPolicy_validator ComputerBackupPolicyChangedDetails.previous_value.validator = ComputerBackupPolicy_validator -ComputerBackupPolicyChangedDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +ComputerBackupPolicyChangedDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) ComputerBackupPolicyChangedDetails._all_fields_ = [ - ("new_value", ComputerBackupPolicyChangedDetails.new_value.validator), - ("previous_value", ComputerBackupPolicyChangedDetails.previous_value.validator), + ('new_value', ComputerBackupPolicyChangedDetails.new_value.validator), + ('previous_value', ComputerBackupPolicyChangedDetails.previous_value.validator), ] ComputerBackupPolicyChangedType.description.validator = bv.String() -ComputerBackupPolicyChangedType._all_field_names_ = set(["description"]) -ComputerBackupPolicyChangedType._all_fields_ = [ - ("description", ComputerBackupPolicyChangedType.description.validator) -] +ComputerBackupPolicyChangedType._all_field_names_ = set(['description']) +ComputerBackupPolicyChangedType._all_fields_ = [('description', ComputerBackupPolicyChangedType.description.validator)] ConnectedTeamName.team.validator = bv.String() -ConnectedTeamName._all_field_names_ = set(["team"]) -ConnectedTeamName._all_fields_ = [("team", ConnectedTeamName.team.validator)] +ConnectedTeamName._all_field_names_ = set(['team']) +ConnectedTeamName._all_fields_ = [('team', ConnectedTeamName.team.validator)] ContentAdministrationPolicyChangedDetails.new_value.validator = bv.String() ContentAdministrationPolicyChangedDetails.previous_value.validator = bv.String() -ContentAdministrationPolicyChangedDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +ContentAdministrationPolicyChangedDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) ContentAdministrationPolicyChangedDetails._all_fields_ = [ - ("new_value", ContentAdministrationPolicyChangedDetails.new_value.validator), - ( - "previous_value", - ContentAdministrationPolicyChangedDetails.previous_value.validator, - ), + ('new_value', ContentAdministrationPolicyChangedDetails.new_value.validator), + ('previous_value', ContentAdministrationPolicyChangedDetails.previous_value.validator), ] ContentAdministrationPolicyChangedType.description.validator = bv.String() -ContentAdministrationPolicyChangedType._all_field_names_ = set(["description"]) -ContentAdministrationPolicyChangedType._all_fields_ = [ - ("description", ContentAdministrationPolicyChangedType.description.validator) -] - -ContentDeletionProtectionChangePolicyDetails.new_value.validator = ( - ContentDeletionProtectionPolicy_validator -) -ContentDeletionProtectionChangePolicyDetails.new_threshold_bytes.validator = bv.Nullable( - bv.UInt64() -) -ContentDeletionProtectionChangePolicyDetails.previous_value.validator = bv.Nullable( - ContentDeletionProtectionPolicy_validator -) -ContentDeletionProtectionChangePolicyDetails.previous_threshold_bytes.validator = bv.Nullable( - bv.UInt64() -) -ContentDeletionProtectionChangePolicyDetails._all_field_names_ = set( - [ - "new_value", - "new_threshold_bytes", - "previous_value", - "previous_threshold_bytes", - ] -) +ContentAdministrationPolicyChangedType._all_field_names_ = set(['description']) +ContentAdministrationPolicyChangedType._all_fields_ = [('description', ContentAdministrationPolicyChangedType.description.validator)] + +ContentDeletionProtectionChangePolicyDetails.new_value.validator = ContentDeletionProtectionPolicy_validator +ContentDeletionProtectionChangePolicyDetails.new_threshold_bytes.validator = bv.Nullable(bv.UInt64()) +ContentDeletionProtectionChangePolicyDetails.previous_value.validator = bv.Nullable(ContentDeletionProtectionPolicy_validator) +ContentDeletionProtectionChangePolicyDetails.previous_threshold_bytes.validator = bv.Nullable(bv.UInt64()) +ContentDeletionProtectionChangePolicyDetails._all_field_names_ = set([ + 'new_value', + 'new_threshold_bytes', + 'previous_value', + 'previous_threshold_bytes', +]) ContentDeletionProtectionChangePolicyDetails._all_fields_ = [ - ("new_value", ContentDeletionProtectionChangePolicyDetails.new_value.validator), - ( - "new_threshold_bytes", - ContentDeletionProtectionChangePolicyDetails.new_threshold_bytes.validator, - ), - ( - "previous_value", - ContentDeletionProtectionChangePolicyDetails.previous_value.validator, - ), - ( - "previous_threshold_bytes", - ContentDeletionProtectionChangePolicyDetails.previous_threshold_bytes.validator, - ), + ('new_value', ContentDeletionProtectionChangePolicyDetails.new_value.validator), + ('new_threshold_bytes', ContentDeletionProtectionChangePolicyDetails.new_threshold_bytes.validator), + ('previous_value', ContentDeletionProtectionChangePolicyDetails.previous_value.validator), + ('previous_threshold_bytes', ContentDeletionProtectionChangePolicyDetails.previous_threshold_bytes.validator), ] ContentDeletionProtectionChangePolicyType.description.validator = bv.String() -ContentDeletionProtectionChangePolicyType._all_field_names_ = set(["description"]) -ContentDeletionProtectionChangePolicyType._all_fields_ = [ - ("description", ContentDeletionProtectionChangePolicyType.description.validator) -] +ContentDeletionProtectionChangePolicyType._all_field_names_ = set(['description']) +ContentDeletionProtectionChangePolicyType._all_fields_ = [('description', ContentDeletionProtectionChangePolicyType.description.validator)] ContentDeletionProtectionPolicy._off_validator = bv.Void() ContentDeletionProtectionPolicy._on_above_threshold_validator = bv.Void() ContentDeletionProtectionPolicy._on_all_files_validator = bv.Void() ContentDeletionProtectionPolicy._other_validator = bv.Void() ContentDeletionProtectionPolicy._tagmap = { - "off": ContentDeletionProtectionPolicy._off_validator, - "on_above_threshold": ContentDeletionProtectionPolicy._on_above_threshold_validator, - "on_all_files": ContentDeletionProtectionPolicy._on_all_files_validator, - "other": ContentDeletionProtectionPolicy._other_validator, + 'off': ContentDeletionProtectionPolicy._off_validator, + 'on_above_threshold': ContentDeletionProtectionPolicy._on_above_threshold_validator, + 'on_all_files': ContentDeletionProtectionPolicy._on_all_files_validator, + 'other': ContentDeletionProtectionPolicy._other_validator, } -ContentDeletionProtectionPolicy.off = ContentDeletionProtectionPolicy("off") -ContentDeletionProtectionPolicy.on_above_threshold = ContentDeletionProtectionPolicy( - "on_above_threshold" -) -ContentDeletionProtectionPolicy.on_all_files = ContentDeletionProtectionPolicy("on_all_files") -ContentDeletionProtectionPolicy.other = ContentDeletionProtectionPolicy("other") +ContentDeletionProtectionPolicy.off = ContentDeletionProtectionPolicy('off') +ContentDeletionProtectionPolicy.on_above_threshold = ContentDeletionProtectionPolicy('on_above_threshold') +ContentDeletionProtectionPolicy.on_all_files = ContentDeletionProtectionPolicy('on_all_files') +ContentDeletionProtectionPolicy.other = ContentDeletionProtectionPolicy('other') ContentPermanentDeletePolicy._disabled_validator = bv.Void() ContentPermanentDeletePolicy._enabled_validator = bv.Void() ContentPermanentDeletePolicy._other_validator = bv.Void() ContentPermanentDeletePolicy._tagmap = { - "disabled": ContentPermanentDeletePolicy._disabled_validator, - "enabled": ContentPermanentDeletePolicy._enabled_validator, - "other": ContentPermanentDeletePolicy._other_validator, + 'disabled': ContentPermanentDeletePolicy._disabled_validator, + 'enabled': ContentPermanentDeletePolicy._enabled_validator, + 'other': ContentPermanentDeletePolicy._other_validator, } -ContentPermanentDeletePolicy.disabled = ContentPermanentDeletePolicy("disabled") -ContentPermanentDeletePolicy.enabled = ContentPermanentDeletePolicy("enabled") -ContentPermanentDeletePolicy.other = ContentPermanentDeletePolicy("other") +ContentPermanentDeletePolicy.disabled = ContentPermanentDeletePolicy('disabled') +ContentPermanentDeletePolicy.enabled = ContentPermanentDeletePolicy('enabled') +ContentPermanentDeletePolicy.other = ContentPermanentDeletePolicy('other') ContextLogInfo._anonymous_validator = bv.Void() ContextLogInfo._non_team_member_validator = NonTeamMemberLogInfo_validator @@ -99408,428 +95144,344 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ContextLogInfo._trusted_non_team_member_validator = TrustedNonTeamMemberLogInfo_validator ContextLogInfo._other_validator = bv.Void() ContextLogInfo._tagmap = { - "anonymous": ContextLogInfo._anonymous_validator, - "non_team_member": ContextLogInfo._non_team_member_validator, - "organization_team": ContextLogInfo._organization_team_validator, - "team": ContextLogInfo._team_validator, - "team_member": ContextLogInfo._team_member_validator, - "trusted_non_team_member": ContextLogInfo._trusted_non_team_member_validator, - "other": ContextLogInfo._other_validator, + 'anonymous': ContextLogInfo._anonymous_validator, + 'non_team_member': ContextLogInfo._non_team_member_validator, + 'organization_team': ContextLogInfo._organization_team_validator, + 'team': ContextLogInfo._team_validator, + 'team_member': ContextLogInfo._team_member_validator, + 'trusted_non_team_member': ContextLogInfo._trusted_non_team_member_validator, + 'other': ContextLogInfo._other_validator, } -ContextLogInfo.anonymous = ContextLogInfo("anonymous") -ContextLogInfo.team = ContextLogInfo("team") -ContextLogInfo.other = ContextLogInfo("other") +ContextLogInfo.anonymous = ContextLogInfo('anonymous') +ContextLogInfo.team = ContextLogInfo('team') +ContextLogInfo.other = ContextLogInfo('other') CreateFolderDetails._all_field_names_ = set([]) CreateFolderDetails._all_fields_ = [] CreateFolderType.description.validator = bv.String() -CreateFolderType._all_field_names_ = set(["description"]) -CreateFolderType._all_fields_ = [("description", CreateFolderType.description.validator)] +CreateFolderType._all_field_names_ = set(['description']) +CreateFolderType._all_fields_ = [('description', CreateFolderType.description.validator)] CreateTeamInviteLinkDetails.link_url.validator = bv.String() CreateTeamInviteLinkDetails.expiry_date.validator = bv.String() -CreateTeamInviteLinkDetails._all_field_names_ = set( - [ - "link_url", - "expiry_date", - ] -) +CreateTeamInviteLinkDetails._all_field_names_ = set([ + 'link_url', + 'expiry_date', +]) CreateTeamInviteLinkDetails._all_fields_ = [ - ("link_url", CreateTeamInviteLinkDetails.link_url.validator), - ("expiry_date", CreateTeamInviteLinkDetails.expiry_date.validator), + ('link_url', CreateTeamInviteLinkDetails.link_url.validator), + ('expiry_date', CreateTeamInviteLinkDetails.expiry_date.validator), ] CreateTeamInviteLinkType.description.validator = bv.String() -CreateTeamInviteLinkType._all_field_names_ = set(["description"]) -CreateTeamInviteLinkType._all_fields_ = [ - ("description", CreateTeamInviteLinkType.description.validator) -] +CreateTeamInviteLinkType._all_field_names_ = set(['description']) +CreateTeamInviteLinkType._all_fields_ = [('description', CreateTeamInviteLinkType.description.validator)] DashAddedCommentToStackDetails.stack_name.validator = bv.String() DashAddedCommentToStackDetails.stack_item_name.validator = bv.String() DashAddedCommentToStackDetails.comment_text.validator = bv.String() DashAddedCommentToStackDetails.stack_type.validator = bv.Nullable(DashStackType_validator) -DashAddedCommentToStackDetails._all_field_names_ = set( - [ - "stack_name", - "stack_item_name", - "comment_text", - "stack_type", - ] -) +DashAddedCommentToStackDetails._all_field_names_ = set([ + 'stack_name', + 'stack_item_name', + 'comment_text', + 'stack_type', +]) DashAddedCommentToStackDetails._all_fields_ = [ - ("stack_name", DashAddedCommentToStackDetails.stack_name.validator), - ("stack_item_name", DashAddedCommentToStackDetails.stack_item_name.validator), - ("comment_text", DashAddedCommentToStackDetails.comment_text.validator), - ("stack_type", DashAddedCommentToStackDetails.stack_type.validator), + ('stack_name', DashAddedCommentToStackDetails.stack_name.validator), + ('stack_item_name', DashAddedCommentToStackDetails.stack_item_name.validator), + ('comment_text', DashAddedCommentToStackDetails.comment_text.validator), + ('stack_type', DashAddedCommentToStackDetails.stack_type.validator), ] DashAddedCommentToStackType.description.validator = bv.String() -DashAddedCommentToStackType._all_field_names_ = set(["description"]) -DashAddedCommentToStackType._all_fields_ = [ - ("description", DashAddedCommentToStackType.description.validator) -] +DashAddedCommentToStackType._all_field_names_ = set(['description']) +DashAddedCommentToStackType._all_fields_ = [('description', DashAddedCommentToStackType.description.validator)] DashAddedConnectorDetails.connector_name.validator = bv.String() DashAddedConnectorDetails.connector_status.validator = DashConnectorStatus_validator -DashAddedConnectorDetails._all_field_names_ = set( - [ - "connector_name", - "connector_status", - ] -) +DashAddedConnectorDetails._all_field_names_ = set([ + 'connector_name', + 'connector_status', +]) DashAddedConnectorDetails._all_fields_ = [ - ("connector_name", DashAddedConnectorDetails.connector_name.validator), - ("connector_status", DashAddedConnectorDetails.connector_status.validator), + ('connector_name', DashAddedConnectorDetails.connector_name.validator), + ('connector_status', DashAddedConnectorDetails.connector_status.validator), ] DashAddedConnectorType.description.validator = bv.String() -DashAddedConnectorType._all_field_names_ = set(["description"]) -DashAddedConnectorType._all_fields_ = [ - ("description", DashAddedConnectorType.description.validator) -] +DashAddedConnectorType._all_field_names_ = set(['description']) +DashAddedConnectorType._all_fields_ = [('description', DashAddedConnectorType.description.validator)] DashAddedLinkToStackDetails.stack_name.validator = bv.String() DashAddedLinkToStackDetails.stack_item_link.validator = bv.String() DashAddedLinkToStackDetails.stack_type.validator = bv.Nullable(DashStackType_validator) -DashAddedLinkToStackDetails._all_field_names_ = set( - [ - "stack_name", - "stack_item_link", - "stack_type", - ] -) +DashAddedLinkToStackDetails._all_field_names_ = set([ + 'stack_name', + 'stack_item_link', + 'stack_type', +]) DashAddedLinkToStackDetails._all_fields_ = [ - ("stack_name", DashAddedLinkToStackDetails.stack_name.validator), - ("stack_item_link", DashAddedLinkToStackDetails.stack_item_link.validator), - ("stack_type", DashAddedLinkToStackDetails.stack_type.validator), + ('stack_name', DashAddedLinkToStackDetails.stack_name.validator), + ('stack_item_link', DashAddedLinkToStackDetails.stack_item_link.validator), + ('stack_type', DashAddedLinkToStackDetails.stack_type.validator), ] DashAddedLinkToStackType.description.validator = bv.String() -DashAddedLinkToStackType._all_field_names_ = set(["description"]) -DashAddedLinkToStackType._all_fields_ = [ - ("description", DashAddedLinkToStackType.description.validator) -] +DashAddedLinkToStackType._all_field_names_ = set(['description']) +DashAddedLinkToStackType._all_fields_ = [('description', DashAddedLinkToStackType.description.validator)] DashAddedTeamEmailDomainAllowlistDetails.email_domain.validator = bv.String() -DashAddedTeamEmailDomainAllowlistDetails._all_field_names_ = set(["email_domain"]) -DashAddedTeamEmailDomainAllowlistDetails._all_fields_ = [ - ("email_domain", DashAddedTeamEmailDomainAllowlistDetails.email_domain.validator) -] +DashAddedTeamEmailDomainAllowlistDetails._all_field_names_ = set(['email_domain']) +DashAddedTeamEmailDomainAllowlistDetails._all_fields_ = [('email_domain', DashAddedTeamEmailDomainAllowlistDetails.email_domain.validator)] DashAddedTeamEmailDomainAllowlistType.description.validator = bv.String() -DashAddedTeamEmailDomainAllowlistType._all_field_names_ = set(["description"]) -DashAddedTeamEmailDomainAllowlistType._all_fields_ = [ - ("description", DashAddedTeamEmailDomainAllowlistType.description.validator) -] +DashAddedTeamEmailDomainAllowlistType._all_field_names_ = set(['description']) +DashAddedTeamEmailDomainAllowlistType._all_fields_ = [('description', DashAddedTeamEmailDomainAllowlistType.description.validator)] DashAdminAddedOrgWideConnectorDetails.connector_name.validator = bv.String() DashAdminAddedOrgWideConnectorDetails.connector_status.validator = DashConnectorStatus_validator -DashAdminAddedOrgWideConnectorDetails._all_field_names_ = set( - [ - "connector_name", - "connector_status", - ] -) +DashAdminAddedOrgWideConnectorDetails._all_field_names_ = set([ + 'connector_name', + 'connector_status', +]) DashAdminAddedOrgWideConnectorDetails._all_fields_ = [ - ("connector_name", DashAdminAddedOrgWideConnectorDetails.connector_name.validator), - ( - "connector_status", - DashAdminAddedOrgWideConnectorDetails.connector_status.validator, - ), + ('connector_name', DashAdminAddedOrgWideConnectorDetails.connector_name.validator), + ('connector_status', DashAdminAddedOrgWideConnectorDetails.connector_status.validator), ] DashAdminAddedOrgWideConnectorType.description.validator = bv.String() -DashAdminAddedOrgWideConnectorType._all_field_names_ = set(["description"]) -DashAdminAddedOrgWideConnectorType._all_fields_ = [ - ("description", DashAdminAddedOrgWideConnectorType.description.validator) -] +DashAdminAddedOrgWideConnectorType._all_field_names_ = set(['description']) +DashAdminAddedOrgWideConnectorType._all_fields_ = [('description', DashAdminAddedOrgWideConnectorType.description.validator)] DashAdminDisabledConnectorDetails.connector_name.validator = bv.String() -DashAdminDisabledConnectorDetails.connector_status.validator = bv.Nullable( - DashConnectorStatus_validator -) -DashAdminDisabledConnectorDetails._all_field_names_ = set( - [ - "connector_name", - "connector_status", - ] -) +DashAdminDisabledConnectorDetails.connector_status.validator = bv.Nullable(DashConnectorStatus_validator) +DashAdminDisabledConnectorDetails._all_field_names_ = set([ + 'connector_name', + 'connector_status', +]) DashAdminDisabledConnectorDetails._all_fields_ = [ - ("connector_name", DashAdminDisabledConnectorDetails.connector_name.validator), - ("connector_status", DashAdminDisabledConnectorDetails.connector_status.validator), + ('connector_name', DashAdminDisabledConnectorDetails.connector_name.validator), + ('connector_status', DashAdminDisabledConnectorDetails.connector_status.validator), ] DashAdminDisabledConnectorType.description.validator = bv.String() -DashAdminDisabledConnectorType._all_field_names_ = set(["description"]) -DashAdminDisabledConnectorType._all_fields_ = [ - ("description", DashAdminDisabledConnectorType.description.validator) -] +DashAdminDisabledConnectorType._all_field_names_ = set(['description']) +DashAdminDisabledConnectorType._all_fields_ = [('description', DashAdminDisabledConnectorType.description.validator)] DashAdminEnabledConnectorDetails.connector_name.validator = bv.String() -DashAdminEnabledConnectorDetails.connector_status.validator = bv.Nullable( - DashConnectorStatus_validator -) -DashAdminEnabledConnectorDetails._all_field_names_ = set( - [ - "connector_name", - "connector_status", - ] -) +DashAdminEnabledConnectorDetails.connector_status.validator = bv.Nullable(DashConnectorStatus_validator) +DashAdminEnabledConnectorDetails._all_field_names_ = set([ + 'connector_name', + 'connector_status', +]) DashAdminEnabledConnectorDetails._all_fields_ = [ - ("connector_name", DashAdminEnabledConnectorDetails.connector_name.validator), - ("connector_status", DashAdminEnabledConnectorDetails.connector_status.validator), + ('connector_name', DashAdminEnabledConnectorDetails.connector_name.validator), + ('connector_status', DashAdminEnabledConnectorDetails.connector_status.validator), ] DashAdminEnabledConnectorType.description.validator = bv.String() -DashAdminEnabledConnectorType._all_field_names_ = set(["description"]) -DashAdminEnabledConnectorType._all_fields_ = [ - ("description", DashAdminEnabledConnectorType.description.validator) -] +DashAdminEnabledConnectorType._all_field_names_ = set(['description']) +DashAdminEnabledConnectorType._all_fields_ = [('description', DashAdminEnabledConnectorType.description.validator)] DashAdminRemovedOrgWideConnectorDetails.connector_name.validator = bv.String() DashAdminRemovedOrgWideConnectorDetails.connector_status.validator = DashConnectorStatus_validator -DashAdminRemovedOrgWideConnectorDetails._all_field_names_ = set( - [ - "connector_name", - "connector_status", - ] -) +DashAdminRemovedOrgWideConnectorDetails._all_field_names_ = set([ + 'connector_name', + 'connector_status', +]) DashAdminRemovedOrgWideConnectorDetails._all_fields_ = [ - ( - "connector_name", - DashAdminRemovedOrgWideConnectorDetails.connector_name.validator, - ), - ( - "connector_status", - DashAdminRemovedOrgWideConnectorDetails.connector_status.validator, - ), + ('connector_name', DashAdminRemovedOrgWideConnectorDetails.connector_name.validator), + ('connector_status', DashAdminRemovedOrgWideConnectorDetails.connector_status.validator), ] DashAdminRemovedOrgWideConnectorType.description.validator = bv.String() -DashAdminRemovedOrgWideConnectorType._all_field_names_ = set(["description"]) -DashAdminRemovedOrgWideConnectorType._all_fields_ = [ - ("description", DashAdminRemovedOrgWideConnectorType.description.validator) -] +DashAdminRemovedOrgWideConnectorType._all_field_names_ = set(['description']) +DashAdminRemovedOrgWideConnectorType._all_fields_ = [('description', DashAdminRemovedOrgWideConnectorType.description.validator)] DashArchivedStackDetails.stack_name.validator = bv.String() DashArchivedStackDetails.stack_type.validator = bv.Nullable(DashStackType_validator) -DashArchivedStackDetails._all_field_names_ = set( - [ - "stack_name", - "stack_type", - ] -) +DashArchivedStackDetails._all_field_names_ = set([ + 'stack_name', + 'stack_type', +]) DashArchivedStackDetails._all_fields_ = [ - ("stack_name", DashArchivedStackDetails.stack_name.validator), - ("stack_type", DashArchivedStackDetails.stack_type.validator), + ('stack_name', DashArchivedStackDetails.stack_name.validator), + ('stack_type', DashArchivedStackDetails.stack_type.validator), ] DashArchivedStackType.description.validator = bv.String() -DashArchivedStackType._all_field_names_ = set(["description"]) -DashArchivedStackType._all_fields_ = [("description", DashArchivedStackType.description.validator)] +DashArchivedStackType._all_field_names_ = set(['description']) +DashArchivedStackType._all_fields_ = [('description', DashArchivedStackType.description.validator)] DashChangedAudienceOfSharedLinkToStackDetails.stack_name.validator = bv.String() -DashChangedAudienceOfSharedLinkToStackDetails.stack_type.validator = bv.Nullable( - DashStackType_validator -) -DashChangedAudienceOfSharedLinkToStackDetails._all_field_names_ = set( - [ - "stack_name", - "stack_type", - ] -) +DashChangedAudienceOfSharedLinkToStackDetails.stack_type.validator = bv.Nullable(DashStackType_validator) +DashChangedAudienceOfSharedLinkToStackDetails._all_field_names_ = set([ + 'stack_name', + 'stack_type', +]) DashChangedAudienceOfSharedLinkToStackDetails._all_fields_ = [ - ("stack_name", DashChangedAudienceOfSharedLinkToStackDetails.stack_name.validator), - ("stack_type", DashChangedAudienceOfSharedLinkToStackDetails.stack_type.validator), + ('stack_name', DashChangedAudienceOfSharedLinkToStackDetails.stack_name.validator), + ('stack_type', DashChangedAudienceOfSharedLinkToStackDetails.stack_type.validator), ] DashChangedAudienceOfSharedLinkToStackType.description.validator = bv.String() -DashChangedAudienceOfSharedLinkToStackType._all_field_names_ = set(["description"]) -DashChangedAudienceOfSharedLinkToStackType._all_fields_ = [ - ("description", DashChangedAudienceOfSharedLinkToStackType.description.validator) -] +DashChangedAudienceOfSharedLinkToStackType._all_field_names_ = set(['description']) +DashChangedAudienceOfSharedLinkToStackType._all_fields_ = [('description', DashChangedAudienceOfSharedLinkToStackType.description.validator)] DashClonedStackDetails.stack_name.validator = bv.String() DashClonedStackDetails.actor_email.validator = bv.String() DashClonedStackDetails.new_cloned_stack_name.validator = bv.String() DashClonedStackDetails.stack_type.validator = bv.Nullable(DashStackType_validator) -DashClonedStackDetails._all_field_names_ = set( - [ - "stack_name", - "actor_email", - "new_cloned_stack_name", - "stack_type", - ] -) +DashClonedStackDetails._all_field_names_ = set([ + 'stack_name', + 'actor_email', + 'new_cloned_stack_name', + 'stack_type', +]) DashClonedStackDetails._all_fields_ = [ - ("stack_name", DashClonedStackDetails.stack_name.validator), - ("actor_email", DashClonedStackDetails.actor_email.validator), - ("new_cloned_stack_name", DashClonedStackDetails.new_cloned_stack_name.validator), - ("stack_type", DashClonedStackDetails.stack_type.validator), + ('stack_name', DashClonedStackDetails.stack_name.validator), + ('actor_email', DashClonedStackDetails.actor_email.validator), + ('new_cloned_stack_name', DashClonedStackDetails.new_cloned_stack_name.validator), + ('stack_type', DashClonedStackDetails.stack_type.validator), ] DashClonedStackType.description.validator = bv.String() -DashClonedStackType._all_field_names_ = set(["description"]) -DashClonedStackType._all_fields_ = [("description", DashClonedStackType.description.validator)] +DashClonedStackType._all_field_names_ = set(['description']) +DashClonedStackType._all_fields_ = [('description', DashClonedStackType.description.validator)] DashConnectorStatus._fail_validator = bv.Void() DashConnectorStatus._success_validator = bv.Void() DashConnectorStatus._other_validator = bv.Void() DashConnectorStatus._tagmap = { - "fail": DashConnectorStatus._fail_validator, - "success": DashConnectorStatus._success_validator, - "other": DashConnectorStatus._other_validator, + 'fail': DashConnectorStatus._fail_validator, + 'success': DashConnectorStatus._success_validator, + 'other': DashConnectorStatus._other_validator, } -DashConnectorStatus.fail = DashConnectorStatus("fail") -DashConnectorStatus.success = DashConnectorStatus("success") -DashConnectorStatus.other = DashConnectorStatus("other") +DashConnectorStatus.fail = DashConnectorStatus('fail') +DashConnectorStatus.success = DashConnectorStatus('success') +DashConnectorStatus.other = DashConnectorStatus('other') DashConnectorToolsCallDetails.connector_name.validator = bv.String() DashConnectorToolsCallDetails.tool_name.validator = bv.String() DashConnectorToolsCallDetails.surface.validator = bv.Nullable(bv.String()) -DashConnectorToolsCallDetails._all_field_names_ = set( - [ - "connector_name", - "tool_name", - "surface", - ] -) +DashConnectorToolsCallDetails._all_field_names_ = set([ + 'connector_name', + 'tool_name', + 'surface', +]) DashConnectorToolsCallDetails._all_fields_ = [ - ("connector_name", DashConnectorToolsCallDetails.connector_name.validator), - ("tool_name", DashConnectorToolsCallDetails.tool_name.validator), - ("surface", DashConnectorToolsCallDetails.surface.validator), + ('connector_name', DashConnectorToolsCallDetails.connector_name.validator), + ('tool_name', DashConnectorToolsCallDetails.tool_name.validator), + ('surface', DashConnectorToolsCallDetails.surface.validator), ] DashConnectorToolsCallType.description.validator = bv.String() -DashConnectorToolsCallType._all_field_names_ = set(["description"]) -DashConnectorToolsCallType._all_fields_ = [ - ("description", DashConnectorToolsCallType.description.validator) -] +DashConnectorToolsCallType._all_field_names_ = set(['description']) +DashConnectorToolsCallType._all_fields_ = [('description', DashConnectorToolsCallType.description.validator)] DashCreatedStackDetails.stack_name.validator = bv.String() DashCreatedStackDetails.stack_type.validator = bv.Nullable(DashStackType_validator) -DashCreatedStackDetails._all_field_names_ = set( - [ - "stack_name", - "stack_type", - ] -) +DashCreatedStackDetails._all_field_names_ = set([ + 'stack_name', + 'stack_type', +]) DashCreatedStackDetails._all_fields_ = [ - ("stack_name", DashCreatedStackDetails.stack_name.validator), - ("stack_type", DashCreatedStackDetails.stack_type.validator), + ('stack_name', DashCreatedStackDetails.stack_name.validator), + ('stack_type', DashCreatedStackDetails.stack_type.validator), ] DashCreatedStackType.description.validator = bv.String() -DashCreatedStackType._all_field_names_ = set(["description"]) -DashCreatedStackType._all_fields_ = [("description", DashCreatedStackType.description.validator)] +DashCreatedStackType._all_field_names_ = set(['description']) +DashCreatedStackType._all_fields_ = [('description', DashCreatedStackType.description.validator)] DashDeletedCommentFromStackDetails.stack_name.validator = bv.String() DashDeletedCommentFromStackDetails.stack_item_name.validator = bv.String() DashDeletedCommentFromStackDetails.stack_type.validator = bv.Nullable(DashStackType_validator) -DashDeletedCommentFromStackDetails._all_field_names_ = set( - [ - "stack_name", - "stack_item_name", - "stack_type", - ] -) +DashDeletedCommentFromStackDetails._all_field_names_ = set([ + 'stack_name', + 'stack_item_name', + 'stack_type', +]) DashDeletedCommentFromStackDetails._all_fields_ = [ - ("stack_name", DashDeletedCommentFromStackDetails.stack_name.validator), - ("stack_item_name", DashDeletedCommentFromStackDetails.stack_item_name.validator), - ("stack_type", DashDeletedCommentFromStackDetails.stack_type.validator), + ('stack_name', DashDeletedCommentFromStackDetails.stack_name.validator), + ('stack_item_name', DashDeletedCommentFromStackDetails.stack_item_name.validator), + ('stack_type', DashDeletedCommentFromStackDetails.stack_type.validator), ] DashDeletedCommentFromStackType.description.validator = bv.String() -DashDeletedCommentFromStackType._all_field_names_ = set(["description"]) -DashDeletedCommentFromStackType._all_fields_ = [ - ("description", DashDeletedCommentFromStackType.description.validator) -] +DashDeletedCommentFromStackType._all_field_names_ = set(['description']) +DashDeletedCommentFromStackType._all_fields_ = [('description', DashDeletedCommentFromStackType.description.validator)] DashDeletedStackDetails.stack_name.validator = bv.String() DashDeletedStackDetails.stack_type.validator = bv.Nullable(DashStackType_validator) -DashDeletedStackDetails._all_field_names_ = set( - [ - "stack_name", - "stack_type", - ] -) +DashDeletedStackDetails._all_field_names_ = set([ + 'stack_name', + 'stack_type', +]) DashDeletedStackDetails._all_fields_ = [ - ("stack_name", DashDeletedStackDetails.stack_name.validator), - ("stack_type", DashDeletedStackDetails.stack_type.validator), + ('stack_name', DashDeletedStackDetails.stack_name.validator), + ('stack_type', DashDeletedStackDetails.stack_type.validator), ] DashDeletedStackType.description.validator = bv.String() -DashDeletedStackType._all_field_names_ = set(["description"]) -DashDeletedStackType._all_fields_ = [("description", DashDeletedStackType.description.validator)] +DashDeletedStackType._all_field_names_ = set(['description']) +DashDeletedStackType._all_fields_ = [('description', DashDeletedStackType.description.validator)] DashEditedCommentInStackDetails.stack_name.validator = bv.String() DashEditedCommentInStackDetails.stack_item_name.validator = bv.String() DashEditedCommentInStackDetails.comment_text.validator = bv.String() DashEditedCommentInStackDetails.stack_type.validator = bv.Nullable(DashStackType_validator) -DashEditedCommentInStackDetails._all_field_names_ = set( - [ - "stack_name", - "stack_item_name", - "comment_text", - "stack_type", - ] -) +DashEditedCommentInStackDetails._all_field_names_ = set([ + 'stack_name', + 'stack_item_name', + 'comment_text', + 'stack_type', +]) DashEditedCommentInStackDetails._all_fields_ = [ - ("stack_name", DashEditedCommentInStackDetails.stack_name.validator), - ("stack_item_name", DashEditedCommentInStackDetails.stack_item_name.validator), - ("comment_text", DashEditedCommentInStackDetails.comment_text.validator), - ("stack_type", DashEditedCommentInStackDetails.stack_type.validator), + ('stack_name', DashEditedCommentInStackDetails.stack_name.validator), + ('stack_item_name', DashEditedCommentInStackDetails.stack_item_name.validator), + ('comment_text', DashEditedCommentInStackDetails.comment_text.validator), + ('stack_type', DashEditedCommentInStackDetails.stack_type.validator), ] DashEditedCommentInStackType.description.validator = bv.String() -DashEditedCommentInStackType._all_field_names_ = set(["description"]) -DashEditedCommentInStackType._all_fields_ = [ - ("description", DashEditedCommentInStackType.description.validator) -] +DashEditedCommentInStackType._all_field_names_ = set(['description']) +DashEditedCommentInStackType._all_fields_ = [('description', DashEditedCommentInStackType.description.validator)] DashExternalSharingPolicy._default_validator = bv.Void() DashExternalSharingPolicy._disabled_validator = bv.Void() DashExternalSharingPolicy._enabled_validator = bv.Void() DashExternalSharingPolicy._other_validator = bv.Void() DashExternalSharingPolicy._tagmap = { - "default": DashExternalSharingPolicy._default_validator, - "disabled": DashExternalSharingPolicy._disabled_validator, - "enabled": DashExternalSharingPolicy._enabled_validator, - "other": DashExternalSharingPolicy._other_validator, + 'default': DashExternalSharingPolicy._default_validator, + 'disabled': DashExternalSharingPolicy._disabled_validator, + 'enabled': DashExternalSharingPolicy._enabled_validator, + 'other': DashExternalSharingPolicy._other_validator, } -DashExternalSharingPolicy.default = DashExternalSharingPolicy("default") -DashExternalSharingPolicy.disabled = DashExternalSharingPolicy("disabled") -DashExternalSharingPolicy.enabled = DashExternalSharingPolicy("enabled") -DashExternalSharingPolicy.other = DashExternalSharingPolicy("other") +DashExternalSharingPolicy.default = DashExternalSharingPolicy('default') +DashExternalSharingPolicy.disabled = DashExternalSharingPolicy('disabled') +DashExternalSharingPolicy.enabled = DashExternalSharingPolicy('enabled') +DashExternalSharingPolicy.other = DashExternalSharingPolicy('other') DashExternalSharingPolicyChangedDetails.new_value.validator = DashExternalSharingPolicy_validator -DashExternalSharingPolicyChangedDetails.previous_value.validator = ( - DashExternalSharingPolicy_validator -) -DashExternalSharingPolicyChangedDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +DashExternalSharingPolicyChangedDetails.previous_value.validator = DashExternalSharingPolicy_validator +DashExternalSharingPolicyChangedDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) DashExternalSharingPolicyChangedDetails._all_fields_ = [ - ("new_value", DashExternalSharingPolicyChangedDetails.new_value.validator), - ( - "previous_value", - DashExternalSharingPolicyChangedDetails.previous_value.validator, - ), + ('new_value', DashExternalSharingPolicyChangedDetails.new_value.validator), + ('previous_value', DashExternalSharingPolicyChangedDetails.previous_value.validator), ] DashExternalSharingPolicyChangedType.description.validator = bv.String() -DashExternalSharingPolicyChangedType._all_field_names_ = set(["description"]) -DashExternalSharingPolicyChangedType._all_fields_ = [ - ("description", DashExternalSharingPolicyChangedType.description.validator) -] +DashExternalSharingPolicyChangedType._all_field_names_ = set(['description']) +DashExternalSharingPolicyChangedType._all_fields_ = [('description', DashExternalSharingPolicyChangedType.description.validator)] DashExternalUserOpenedStackDetails.stack_name.validator = bv.String() DashExternalUserOpenedStackDetails.stack_sharing_scope.validator = DashStackSharingScope_validator @@ -99837,244 +95489,190 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): DashExternalUserOpenedStackDetails.is_verified.validator = bv.Boolean() DashExternalUserOpenedStackDetails.stack_owner_team_id.validator = bv.Nullable(bv.Int64()) DashExternalUserOpenedStackDetails.stack_type.validator = bv.Nullable(DashStackType_validator) -DashExternalUserOpenedStackDetails._all_field_names_ = set( - [ - "stack_name", - "stack_sharing_scope", - "is_invited", - "is_verified", - "stack_owner_team_id", - "stack_type", - ] -) +DashExternalUserOpenedStackDetails._all_field_names_ = set([ + 'stack_name', + 'stack_sharing_scope', + 'is_invited', + 'is_verified', + 'stack_owner_team_id', + 'stack_type', +]) DashExternalUserOpenedStackDetails._all_fields_ = [ - ("stack_name", DashExternalUserOpenedStackDetails.stack_name.validator), - ( - "stack_sharing_scope", - DashExternalUserOpenedStackDetails.stack_sharing_scope.validator, - ), - ("is_invited", DashExternalUserOpenedStackDetails.is_invited.validator), - ("is_verified", DashExternalUserOpenedStackDetails.is_verified.validator), - ( - "stack_owner_team_id", - DashExternalUserOpenedStackDetails.stack_owner_team_id.validator, - ), - ("stack_type", DashExternalUserOpenedStackDetails.stack_type.validator), + ('stack_name', DashExternalUserOpenedStackDetails.stack_name.validator), + ('stack_sharing_scope', DashExternalUserOpenedStackDetails.stack_sharing_scope.validator), + ('is_invited', DashExternalUserOpenedStackDetails.is_invited.validator), + ('is_verified', DashExternalUserOpenedStackDetails.is_verified.validator), + ('stack_owner_team_id', DashExternalUserOpenedStackDetails.stack_owner_team_id.validator), + ('stack_type', DashExternalUserOpenedStackDetails.stack_type.validator), ] DashExternalUserOpenedStackType.description.validator = bv.String() -DashExternalUserOpenedStackType._all_field_names_ = set(["description"]) -DashExternalUserOpenedStackType._all_fields_ = [ - ("description", DashExternalUserOpenedStackType.description.validator) -] +DashExternalUserOpenedStackType._all_field_names_ = set(['description']) +DashExternalUserOpenedStackType._all_fields_ = [('description', DashExternalUserOpenedStackType.description.validator)] DashFirstLaunchedDesktopDetails.os_name.validator = bv.String() -DashFirstLaunchedDesktopDetails._all_field_names_ = set(["os_name"]) -DashFirstLaunchedDesktopDetails._all_fields_ = [ - ("os_name", DashFirstLaunchedDesktopDetails.os_name.validator) -] +DashFirstLaunchedDesktopDetails._all_field_names_ = set(['os_name']) +DashFirstLaunchedDesktopDetails._all_fields_ = [('os_name', DashFirstLaunchedDesktopDetails.os_name.validator)] DashFirstLaunchedDesktopType.description.validator = bv.String() -DashFirstLaunchedDesktopType._all_field_names_ = set(["description"]) -DashFirstLaunchedDesktopType._all_fields_ = [ - ("description", DashFirstLaunchedDesktopType.description.validator) -] +DashFirstLaunchedDesktopType._all_field_names_ = set(['description']) +DashFirstLaunchedDesktopType._all_fields_ = [('description', DashFirstLaunchedDesktopType.description.validator)] DashFirstLaunchedExtensionDetails.browser_name.validator = bv.String() -DashFirstLaunchedExtensionDetails._all_field_names_ = set(["browser_name"]) -DashFirstLaunchedExtensionDetails._all_fields_ = [ - ("browser_name", DashFirstLaunchedExtensionDetails.browser_name.validator) -] +DashFirstLaunchedExtensionDetails._all_field_names_ = set(['browser_name']) +DashFirstLaunchedExtensionDetails._all_fields_ = [('browser_name', DashFirstLaunchedExtensionDetails.browser_name.validator)] DashFirstLaunchedExtensionType.description.validator = bv.String() -DashFirstLaunchedExtensionType._all_field_names_ = set(["description"]) -DashFirstLaunchedExtensionType._all_fields_ = [ - ("description", DashFirstLaunchedExtensionType.description.validator) -] +DashFirstLaunchedExtensionType._all_field_names_ = set(['description']) +DashFirstLaunchedExtensionType._all_fields_ = [('description', DashFirstLaunchedExtensionType.description.validator)] DashFirstLaunchedWebStartPageDetails.browser_name.validator = bv.String() -DashFirstLaunchedWebStartPageDetails._all_field_names_ = set(["browser_name"]) -DashFirstLaunchedWebStartPageDetails._all_fields_ = [ - ("browser_name", DashFirstLaunchedWebStartPageDetails.browser_name.validator) -] +DashFirstLaunchedWebStartPageDetails._all_field_names_ = set(['browser_name']) +DashFirstLaunchedWebStartPageDetails._all_fields_ = [('browser_name', DashFirstLaunchedWebStartPageDetails.browser_name.validator)] DashFirstLaunchedWebStartPageType.description.validator = bv.String() -DashFirstLaunchedWebStartPageType._all_field_names_ = set(["description"]) -DashFirstLaunchedWebStartPageType._all_fields_ = [ - ("description", DashFirstLaunchedWebStartPageType.description.validator) -] +DashFirstLaunchedWebStartPageType._all_field_names_ = set(['description']) +DashFirstLaunchedWebStartPageType._all_fields_ = [('description', DashFirstLaunchedWebStartPageType.description.validator)] DashOpenedSharedLinkToStackDetails.stack_name.validator = bv.String() DashOpenedSharedLinkToStackDetails.stack_type.validator = bv.Nullable(DashStackType_validator) -DashOpenedSharedLinkToStackDetails._all_field_names_ = set( - [ - "stack_name", - "stack_type", - ] -) +DashOpenedSharedLinkToStackDetails._all_field_names_ = set([ + 'stack_name', + 'stack_type', +]) DashOpenedSharedLinkToStackDetails._all_fields_ = [ - ("stack_name", DashOpenedSharedLinkToStackDetails.stack_name.validator), - ("stack_type", DashOpenedSharedLinkToStackDetails.stack_type.validator), + ('stack_name', DashOpenedSharedLinkToStackDetails.stack_name.validator), + ('stack_type', DashOpenedSharedLinkToStackDetails.stack_type.validator), ] DashOpenedSharedLinkToStackType.description.validator = bv.String() -DashOpenedSharedLinkToStackType._all_field_names_ = set(["description"]) -DashOpenedSharedLinkToStackType._all_fields_ = [ - ("description", DashOpenedSharedLinkToStackType.description.validator) -] +DashOpenedSharedLinkToStackType._all_field_names_ = set(['description']) +DashOpenedSharedLinkToStackType._all_fields_ = [('description', DashOpenedSharedLinkToStackType.description.validator)] DashOpenedStackDetails.stack_name.validator = bv.String() DashOpenedStackDetails.stack_type.validator = bv.Nullable(DashStackType_validator) -DashOpenedStackDetails._all_field_names_ = set( - [ - "stack_name", - "stack_type", - ] -) +DashOpenedStackDetails._all_field_names_ = set([ + 'stack_name', + 'stack_type', +]) DashOpenedStackDetails._all_fields_ = [ - ("stack_name", DashOpenedStackDetails.stack_name.validator), - ("stack_type", DashOpenedStackDetails.stack_type.validator), + ('stack_name', DashOpenedStackDetails.stack_name.validator), + ('stack_type', DashOpenedStackDetails.stack_type.validator), ] DashOpenedStackType.description.validator = bv.String() -DashOpenedStackType._all_field_names_ = set(["description"]) -DashOpenedStackType._all_fields_ = [("description", DashOpenedStackType.description.validator)] +DashOpenedStackType._all_field_names_ = set(['description']) +DashOpenedStackType._all_fields_ = [('description', DashOpenedStackType.description.validator)] DashPreviewOptOutStatus._opted_in_validator = bv.Void() DashPreviewOptOutStatus._opted_out_validator = bv.Void() DashPreviewOptOutStatus._other_validator = bv.Void() DashPreviewOptOutStatus._tagmap = { - "opted_in": DashPreviewOptOutStatus._opted_in_validator, - "opted_out": DashPreviewOptOutStatus._opted_out_validator, - "other": DashPreviewOptOutStatus._other_validator, + 'opted_in': DashPreviewOptOutStatus._opted_in_validator, + 'opted_out': DashPreviewOptOutStatus._opted_out_validator, + 'other': DashPreviewOptOutStatus._other_validator, } -DashPreviewOptOutStatus.opted_in = DashPreviewOptOutStatus("opted_in") -DashPreviewOptOutStatus.opted_out = DashPreviewOptOutStatus("opted_out") -DashPreviewOptOutStatus.other = DashPreviewOptOutStatus("other") +DashPreviewOptOutStatus.opted_in = DashPreviewOptOutStatus('opted_in') +DashPreviewOptOutStatus.opted_out = DashPreviewOptOutStatus('opted_out') +DashPreviewOptOutStatus.other = DashPreviewOptOutStatus('other') DashPreviewOptOutStatusChangedDetails.opt_out_status.validator = DashPreviewOptOutStatus_validator -DashPreviewOptOutStatusChangedDetails._all_field_names_ = set(["opt_out_status"]) -DashPreviewOptOutStatusChangedDetails._all_fields_ = [ - ("opt_out_status", DashPreviewOptOutStatusChangedDetails.opt_out_status.validator) -] +DashPreviewOptOutStatusChangedDetails._all_field_names_ = set(['opt_out_status']) +DashPreviewOptOutStatusChangedDetails._all_fields_ = [('opt_out_status', DashPreviewOptOutStatusChangedDetails.opt_out_status.validator)] DashPreviewOptOutStatusChangedType.description.validator = bv.String() -DashPreviewOptOutStatusChangedType._all_field_names_ = set(["description"]) -DashPreviewOptOutStatusChangedType._all_fields_ = [ - ("description", DashPreviewOptOutStatusChangedType.description.validator) -] +DashPreviewOptOutStatusChangedType._all_field_names_ = set(['description']) +DashPreviewOptOutStatusChangedType._all_fields_ = [('description', DashPreviewOptOutStatusChangedType.description.validator)] DashRemovedConnectorDetails.connector_name.validator = bv.String() DashRemovedConnectorDetails.connector_status.validator = DashConnectorStatus_validator -DashRemovedConnectorDetails._all_field_names_ = set( - [ - "connector_name", - "connector_status", - ] -) +DashRemovedConnectorDetails._all_field_names_ = set([ + 'connector_name', + 'connector_status', +]) DashRemovedConnectorDetails._all_fields_ = [ - ("connector_name", DashRemovedConnectorDetails.connector_name.validator), - ("connector_status", DashRemovedConnectorDetails.connector_status.validator), + ('connector_name', DashRemovedConnectorDetails.connector_name.validator), + ('connector_status', DashRemovedConnectorDetails.connector_status.validator), ] DashRemovedConnectorType.description.validator = bv.String() -DashRemovedConnectorType._all_field_names_ = set(["description"]) -DashRemovedConnectorType._all_fields_ = [ - ("description", DashRemovedConnectorType.description.validator) -] +DashRemovedConnectorType._all_field_names_ = set(['description']) +DashRemovedConnectorType._all_fields_ = [('description', DashRemovedConnectorType.description.validator)] DashRemovedLinkFromStackDetails.stack_name.validator = bv.String() DashRemovedLinkFromStackDetails.stack_item_link.validator = bv.String() DashRemovedLinkFromStackDetails.stack_type.validator = bv.Nullable(DashStackType_validator) -DashRemovedLinkFromStackDetails._all_field_names_ = set( - [ - "stack_name", - "stack_item_link", - "stack_type", - ] -) +DashRemovedLinkFromStackDetails._all_field_names_ = set([ + 'stack_name', + 'stack_item_link', + 'stack_type', +]) DashRemovedLinkFromStackDetails._all_fields_ = [ - ("stack_name", DashRemovedLinkFromStackDetails.stack_name.validator), - ("stack_item_link", DashRemovedLinkFromStackDetails.stack_item_link.validator), - ("stack_type", DashRemovedLinkFromStackDetails.stack_type.validator), + ('stack_name', DashRemovedLinkFromStackDetails.stack_name.validator), + ('stack_item_link', DashRemovedLinkFromStackDetails.stack_item_link.validator), + ('stack_type', DashRemovedLinkFromStackDetails.stack_type.validator), ] DashRemovedLinkFromStackType.description.validator = bv.String() -DashRemovedLinkFromStackType._all_field_names_ = set(["description"]) -DashRemovedLinkFromStackType._all_fields_ = [ - ("description", DashRemovedLinkFromStackType.description.validator) -] +DashRemovedLinkFromStackType._all_field_names_ = set(['description']) +DashRemovedLinkFromStackType._all_fields_ = [('description', DashRemovedLinkFromStackType.description.validator)] DashRemovedSharedLinkToStackDetails.stack_name.validator = bv.String() DashRemovedSharedLinkToStackDetails.stack_type.validator = bv.Nullable(DashStackType_validator) -DashRemovedSharedLinkToStackDetails._all_field_names_ = set( - [ - "stack_name", - "stack_type", - ] -) +DashRemovedSharedLinkToStackDetails._all_field_names_ = set([ + 'stack_name', + 'stack_type', +]) DashRemovedSharedLinkToStackDetails._all_fields_ = [ - ("stack_name", DashRemovedSharedLinkToStackDetails.stack_name.validator), - ("stack_type", DashRemovedSharedLinkToStackDetails.stack_type.validator), + ('stack_name', DashRemovedSharedLinkToStackDetails.stack_name.validator), + ('stack_type', DashRemovedSharedLinkToStackDetails.stack_type.validator), ] DashRemovedSharedLinkToStackType.description.validator = bv.String() -DashRemovedSharedLinkToStackType._all_field_names_ = set(["description"]) -DashRemovedSharedLinkToStackType._all_fields_ = [ - ("description", DashRemovedSharedLinkToStackType.description.validator) -] +DashRemovedSharedLinkToStackType._all_field_names_ = set(['description']) +DashRemovedSharedLinkToStackType._all_fields_ = [('description', DashRemovedSharedLinkToStackType.description.validator)] DashRemovedTeamEmailDomainAllowlistDetails.email_domain.validator = bv.String() -DashRemovedTeamEmailDomainAllowlistDetails._all_field_names_ = set(["email_domain"]) -DashRemovedTeamEmailDomainAllowlistDetails._all_fields_ = [ - ("email_domain", DashRemovedTeamEmailDomainAllowlistDetails.email_domain.validator) -] +DashRemovedTeamEmailDomainAllowlistDetails._all_field_names_ = set(['email_domain']) +DashRemovedTeamEmailDomainAllowlistDetails._all_fields_ = [('email_domain', DashRemovedTeamEmailDomainAllowlistDetails.email_domain.validator)] DashRemovedTeamEmailDomainAllowlistType.description.validator = bv.String() -DashRemovedTeamEmailDomainAllowlistType._all_field_names_ = set(["description"]) -DashRemovedTeamEmailDomainAllowlistType._all_fields_ = [ - ("description", DashRemovedTeamEmailDomainAllowlistType.description.validator) -] +DashRemovedTeamEmailDomainAllowlistType._all_field_names_ = set(['description']) +DashRemovedTeamEmailDomainAllowlistType._all_fields_ = [('description', DashRemovedTeamEmailDomainAllowlistType.description.validator)] DashRenamedStackDetails.old_name.validator = bv.String() DashRenamedStackDetails.new_name.validator = bv.String() DashRenamedStackDetails.stack_type.validator = bv.Nullable(DashStackType_validator) -DashRenamedStackDetails._all_field_names_ = set( - [ - "old_name", - "new_name", - "stack_type", - ] -) +DashRenamedStackDetails._all_field_names_ = set([ + 'old_name', + 'new_name', + 'stack_type', +]) DashRenamedStackDetails._all_fields_ = [ - ("old_name", DashRenamedStackDetails.old_name.validator), - ("new_name", DashRenamedStackDetails.new_name.validator), - ("stack_type", DashRenamedStackDetails.stack_type.validator), + ('old_name', DashRenamedStackDetails.old_name.validator), + ('new_name', DashRenamedStackDetails.new_name.validator), + ('stack_type', DashRenamedStackDetails.stack_type.validator), ] DashRenamedStackType.description.validator = bv.String() -DashRenamedStackType._all_field_names_ = set(["description"]) -DashRenamedStackType._all_fields_ = [("description", DashRenamedStackType.description.validator)] +DashRenamedStackType._all_field_names_ = set(['description']) +DashRenamedStackType._all_fields_ = [('description', DashRenamedStackType.description.validator)] DashSharedLinkToStackDetails.stack_name.validator = bv.String() DashSharedLinkToStackDetails.stack_type.validator = bv.Nullable(DashStackType_validator) -DashSharedLinkToStackDetails._all_field_names_ = set( - [ - "stack_name", - "stack_type", - ] -) +DashSharedLinkToStackDetails._all_field_names_ = set([ + 'stack_name', + 'stack_type', +]) DashSharedLinkToStackDetails._all_fields_ = [ - ("stack_name", DashSharedLinkToStackDetails.stack_name.validator), - ("stack_type", DashSharedLinkToStackDetails.stack_type.validator), + ('stack_name', DashSharedLinkToStackDetails.stack_name.validator), + ('stack_type', DashSharedLinkToStackDetails.stack_type.validator), ] DashSharedLinkToStackType.description.validator = bv.String() -DashSharedLinkToStackType._all_field_names_ = set(["description"]) -DashSharedLinkToStackType._all_fields_ = [ - ("description", DashSharedLinkToStackType.description.validator) -] +DashSharedLinkToStackType._all_field_names_ = set(['description']) +DashSharedLinkToStackType._all_fields_ = [('description', DashSharedLinkToStackType.description.validator)] DashStackSharingScope._invited_validator = bv.Void() DashStackSharingScope._public_validator = bv.Void() @@ -100082,140 +95680,108 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): DashStackSharingScope._unknown_validator = bv.Void() DashStackSharingScope._other_validator = bv.Void() DashStackSharingScope._tagmap = { - "invited": DashStackSharingScope._invited_validator, - "public": DashStackSharingScope._public_validator, - "team": DashStackSharingScope._team_validator, - "unknown": DashStackSharingScope._unknown_validator, - "other": DashStackSharingScope._other_validator, + 'invited': DashStackSharingScope._invited_validator, + 'public': DashStackSharingScope._public_validator, + 'team': DashStackSharingScope._team_validator, + 'unknown': DashStackSharingScope._unknown_validator, + 'other': DashStackSharingScope._other_validator, } -DashStackSharingScope.invited = DashStackSharingScope("invited") -DashStackSharingScope.public = DashStackSharingScope("public") -DashStackSharingScope.team = DashStackSharingScope("team") -DashStackSharingScope.unknown = DashStackSharingScope("unknown") -DashStackSharingScope.other = DashStackSharingScope("other") +DashStackSharingScope.invited = DashStackSharingScope('invited') +DashStackSharingScope.public = DashStackSharingScope('public') +DashStackSharingScope.team = DashStackSharingScope('team') +DashStackSharingScope.unknown = DashStackSharingScope('unknown') +DashStackSharingScope.other = DashStackSharingScope('other') DashStackType._cypress_validator = bv.Void() DashStackType._reference_container_validator = bv.Void() DashStackType._unknown_validator = bv.Void() DashStackType._other_validator = bv.Void() DashStackType._tagmap = { - "cypress": DashStackType._cypress_validator, - "reference_container": DashStackType._reference_container_validator, - "unknown": DashStackType._unknown_validator, - "other": DashStackType._other_validator, + 'cypress': DashStackType._cypress_validator, + 'reference_container': DashStackType._reference_container_validator, + 'unknown': DashStackType._unknown_validator, + 'other': DashStackType._other_validator, } -DashStackType.cypress = DashStackType("cypress") -DashStackType.reference_container = DashStackType("reference_container") -DashStackType.unknown = DashStackType("unknown") -DashStackType.other = DashStackType("other") +DashStackType.cypress = DashStackType('cypress') +DashStackType.reference_container = DashStackType('reference_container') +DashStackType.unknown = DashStackType('unknown') +DashStackType.other = DashStackType('other') DashUnarchivedStackDetails.stack_name.validator = bv.String() DashUnarchivedStackDetails.stack_type.validator = bv.Nullable(DashStackType_validator) -DashUnarchivedStackDetails._all_field_names_ = set( - [ - "stack_name", - "stack_type", - ] -) +DashUnarchivedStackDetails._all_field_names_ = set([ + 'stack_name', + 'stack_type', +]) DashUnarchivedStackDetails._all_fields_ = [ - ("stack_name", DashUnarchivedStackDetails.stack_name.validator), - ("stack_type", DashUnarchivedStackDetails.stack_type.validator), + ('stack_name', DashUnarchivedStackDetails.stack_name.validator), + ('stack_type', DashUnarchivedStackDetails.stack_type.validator), ] DashUnarchivedStackType.description.validator = bv.String() -DashUnarchivedStackType._all_field_names_ = set(["description"]) -DashUnarchivedStackType._all_fields_ = [ - ("description", DashUnarchivedStackType.description.validator) -] +DashUnarchivedStackType._all_field_names_ = set(['description']) +DashUnarchivedStackType._all_fields_ = [('description', DashUnarchivedStackType.description.validator)] DashViewedCompanyStackDetails.stack_name.validator = bv.String() DashViewedCompanyStackDetails.stack_type.validator = bv.Nullable(DashStackType_validator) -DashViewedCompanyStackDetails._all_field_names_ = set( - [ - "stack_name", - "stack_type", - ] -) +DashViewedCompanyStackDetails._all_field_names_ = set([ + 'stack_name', + 'stack_type', +]) DashViewedCompanyStackDetails._all_fields_ = [ - ("stack_name", DashViewedCompanyStackDetails.stack_name.validator), - ("stack_type", DashViewedCompanyStackDetails.stack_type.validator), + ('stack_name', DashViewedCompanyStackDetails.stack_name.validator), + ('stack_type', DashViewedCompanyStackDetails.stack_type.validator), ] DashViewedCompanyStackType.description.validator = bv.String() -DashViewedCompanyStackType._all_field_names_ = set(["description"]) -DashViewedCompanyStackType._all_fields_ = [ - ("description", DashViewedCompanyStackType.description.validator) -] +DashViewedCompanyStackType._all_field_names_ = set(['description']) +DashViewedCompanyStackType._all_fields_ = [('description', DashViewedCompanyStackType.description.validator)] DashViewedExternalAiActivityReportDetails._all_field_names_ = set([]) DashViewedExternalAiActivityReportDetails._all_fields_ = [] DashViewedExternalAiActivityReportType.description.validator = bv.String() -DashViewedExternalAiActivityReportType._all_field_names_ = set(["description"]) -DashViewedExternalAiActivityReportType._all_fields_ = [ - ("description", DashViewedExternalAiActivityReportType.description.validator) -] +DashViewedExternalAiActivityReportType._all_field_names_ = set(['description']) +DashViewedExternalAiActivityReportType._all_fields_ = [('description', DashViewedExternalAiActivityReportType.description.validator)] -DataPlacementRestrictionChangePolicyDetails.previous_value.validator = ( - PlacementRestriction_validator -) +DataPlacementRestrictionChangePolicyDetails.previous_value.validator = PlacementRestriction_validator DataPlacementRestrictionChangePolicyDetails.new_value.validator = PlacementRestriction_validator -DataPlacementRestrictionChangePolicyDetails._all_field_names_ = set( - [ - "previous_value", - "new_value", - ] -) +DataPlacementRestrictionChangePolicyDetails._all_field_names_ = set([ + 'previous_value', + 'new_value', +]) DataPlacementRestrictionChangePolicyDetails._all_fields_ = [ - ( - "previous_value", - DataPlacementRestrictionChangePolicyDetails.previous_value.validator, - ), - ("new_value", DataPlacementRestrictionChangePolicyDetails.new_value.validator), + ('previous_value', DataPlacementRestrictionChangePolicyDetails.previous_value.validator), + ('new_value', DataPlacementRestrictionChangePolicyDetails.new_value.validator), ] DataPlacementRestrictionChangePolicyType.description.validator = bv.String() -DataPlacementRestrictionChangePolicyType._all_field_names_ = set(["description"]) -DataPlacementRestrictionChangePolicyType._all_fields_ = [ - ("description", DataPlacementRestrictionChangePolicyType.description.validator) -] +DataPlacementRestrictionChangePolicyType._all_field_names_ = set(['description']) +DataPlacementRestrictionChangePolicyType._all_fields_ = [('description', DataPlacementRestrictionChangePolicyType.description.validator)] -DataPlacementRestrictionSatisfyPolicyDetails.placement_restriction.validator = ( - PlacementRestriction_validator -) -DataPlacementRestrictionSatisfyPolicyDetails._all_field_names_ = set(["placement_restriction"]) -DataPlacementRestrictionSatisfyPolicyDetails._all_fields_ = [ - ( - "placement_restriction", - DataPlacementRestrictionSatisfyPolicyDetails.placement_restriction.validator, - ) -] +DataPlacementRestrictionSatisfyPolicyDetails.placement_restriction.validator = PlacementRestriction_validator +DataPlacementRestrictionSatisfyPolicyDetails._all_field_names_ = set(['placement_restriction']) +DataPlacementRestrictionSatisfyPolicyDetails._all_fields_ = [('placement_restriction', DataPlacementRestrictionSatisfyPolicyDetails.placement_restriction.validator)] DataPlacementRestrictionSatisfyPolicyType.description.validator = bv.String() -DataPlacementRestrictionSatisfyPolicyType._all_field_names_ = set(["description"]) -DataPlacementRestrictionSatisfyPolicyType._all_fields_ = [ - ("description", DataPlacementRestrictionSatisfyPolicyType.description.validator) -] +DataPlacementRestrictionSatisfyPolicyType._all_field_names_ = set(['description']) +DataPlacementRestrictionSatisfyPolicyType._all_fields_ = [('description', DataPlacementRestrictionSatisfyPolicyType.description.validator)] DataResidencyMigrationRequestSuccessfulDetails._all_field_names_ = set([]) DataResidencyMigrationRequestSuccessfulDetails._all_fields_ = [] DataResidencyMigrationRequestSuccessfulType.description.validator = bv.String() -DataResidencyMigrationRequestSuccessfulType._all_field_names_ = set(["description"]) -DataResidencyMigrationRequestSuccessfulType._all_fields_ = [ - ("description", DataResidencyMigrationRequestSuccessfulType.description.validator) -] +DataResidencyMigrationRequestSuccessfulType._all_field_names_ = set(['description']) +DataResidencyMigrationRequestSuccessfulType._all_fields_ = [('description', DataResidencyMigrationRequestSuccessfulType.description.validator)] DataResidencyMigrationRequestUnsuccessfulDetails._all_field_names_ = set([]) DataResidencyMigrationRequestUnsuccessfulDetails._all_fields_ = [] DataResidencyMigrationRequestUnsuccessfulType.description.validator = bv.String() -DataResidencyMigrationRequestUnsuccessfulType._all_field_names_ = set(["description"]) -DataResidencyMigrationRequestUnsuccessfulType._all_fields_ = [ - ("description", DataResidencyMigrationRequestUnsuccessfulType.description.validator) -] +DataResidencyMigrationRequestUnsuccessfulType._all_field_names_ = set(['description']) +DataResidencyMigrationRequestUnsuccessfulType._all_fields_ = [('description', DataResidencyMigrationRequestUnsuccessfulType.description.validator)] DefaultLinkExpirationDaysPolicy._day_1_validator = bv.Void() DefaultLinkExpirationDaysPolicy._day_180_validator = bv.Void() @@ -100227,80 +95793,62 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): DefaultLinkExpirationDaysPolicy._year_1_validator = bv.Void() DefaultLinkExpirationDaysPolicy._other_validator = bv.Void() DefaultLinkExpirationDaysPolicy._tagmap = { - "day_1": DefaultLinkExpirationDaysPolicy._day_1_validator, - "day_180": DefaultLinkExpirationDaysPolicy._day_180_validator, - "day_3": DefaultLinkExpirationDaysPolicy._day_3_validator, - "day_30": DefaultLinkExpirationDaysPolicy._day_30_validator, - "day_7": DefaultLinkExpirationDaysPolicy._day_7_validator, - "day_90": DefaultLinkExpirationDaysPolicy._day_90_validator, - "none": DefaultLinkExpirationDaysPolicy._none_validator, - "year_1": DefaultLinkExpirationDaysPolicy._year_1_validator, - "other": DefaultLinkExpirationDaysPolicy._other_validator, + 'day_1': DefaultLinkExpirationDaysPolicy._day_1_validator, + 'day_180': DefaultLinkExpirationDaysPolicy._day_180_validator, + 'day_3': DefaultLinkExpirationDaysPolicy._day_3_validator, + 'day_30': DefaultLinkExpirationDaysPolicy._day_30_validator, + 'day_7': DefaultLinkExpirationDaysPolicy._day_7_validator, + 'day_90': DefaultLinkExpirationDaysPolicy._day_90_validator, + 'none': DefaultLinkExpirationDaysPolicy._none_validator, + 'year_1': DefaultLinkExpirationDaysPolicy._year_1_validator, + 'other': DefaultLinkExpirationDaysPolicy._other_validator, } -DefaultLinkExpirationDaysPolicy.day_1 = DefaultLinkExpirationDaysPolicy("day_1") -DefaultLinkExpirationDaysPolicy.day_180 = DefaultLinkExpirationDaysPolicy("day_180") -DefaultLinkExpirationDaysPolicy.day_3 = DefaultLinkExpirationDaysPolicy("day_3") -DefaultLinkExpirationDaysPolicy.day_30 = DefaultLinkExpirationDaysPolicy("day_30") -DefaultLinkExpirationDaysPolicy.day_7 = DefaultLinkExpirationDaysPolicy("day_7") -DefaultLinkExpirationDaysPolicy.day_90 = DefaultLinkExpirationDaysPolicy("day_90") -DefaultLinkExpirationDaysPolicy.none = DefaultLinkExpirationDaysPolicy("none") -DefaultLinkExpirationDaysPolicy.year_1 = DefaultLinkExpirationDaysPolicy("year_1") -DefaultLinkExpirationDaysPolicy.other = DefaultLinkExpirationDaysPolicy("other") +DefaultLinkExpirationDaysPolicy.day_1 = DefaultLinkExpirationDaysPolicy('day_1') +DefaultLinkExpirationDaysPolicy.day_180 = DefaultLinkExpirationDaysPolicy('day_180') +DefaultLinkExpirationDaysPolicy.day_3 = DefaultLinkExpirationDaysPolicy('day_3') +DefaultLinkExpirationDaysPolicy.day_30 = DefaultLinkExpirationDaysPolicy('day_30') +DefaultLinkExpirationDaysPolicy.day_7 = DefaultLinkExpirationDaysPolicy('day_7') +DefaultLinkExpirationDaysPolicy.day_90 = DefaultLinkExpirationDaysPolicy('day_90') +DefaultLinkExpirationDaysPolicy.none = DefaultLinkExpirationDaysPolicy('none') +DefaultLinkExpirationDaysPolicy.year_1 = DefaultLinkExpirationDaysPolicy('year_1') +DefaultLinkExpirationDaysPolicy.other = DefaultLinkExpirationDaysPolicy('other') DeleteTeamInviteLinkDetails.link_url.validator = bv.String() -DeleteTeamInviteLinkDetails._all_field_names_ = set(["link_url"]) -DeleteTeamInviteLinkDetails._all_fields_ = [ - ("link_url", DeleteTeamInviteLinkDetails.link_url.validator) -] +DeleteTeamInviteLinkDetails._all_field_names_ = set(['link_url']) +DeleteTeamInviteLinkDetails._all_fields_ = [('link_url', DeleteTeamInviteLinkDetails.link_url.validator)] DeleteTeamInviteLinkType.description.validator = bv.String() -DeleteTeamInviteLinkType._all_field_names_ = set(["description"]) -DeleteTeamInviteLinkType._all_fields_ = [ - ("description", DeleteTeamInviteLinkType.description.validator) -] +DeleteTeamInviteLinkType._all_field_names_ = set(['description']) +DeleteTeamInviteLinkType._all_fields_ = [('description', DeleteTeamInviteLinkType.description.validator)] DeviceSessionLogInfo.ip_address.validator = bv.Nullable(IpAddress_validator) DeviceSessionLogInfo.created.validator = bv.Nullable(common.DropboxTimestamp_validator) DeviceSessionLogInfo.updated.validator = bv.Nullable(common.DropboxTimestamp_validator) -DeviceSessionLogInfo._field_names_ = set( - [ - "ip_address", - "created", - "updated", - ] -) +DeviceSessionLogInfo._field_names_ = set([ + 'ip_address', + 'created', + 'updated', +]) DeviceSessionLogInfo._all_field_names_ = DeviceSessionLogInfo._field_names_ DeviceSessionLogInfo._fields_ = [ - ("ip_address", DeviceSessionLogInfo.ip_address.validator), - ("created", DeviceSessionLogInfo.created.validator), - ("updated", DeviceSessionLogInfo.updated.validator), + ('ip_address', DeviceSessionLogInfo.ip_address.validator), + ('created', DeviceSessionLogInfo.created.validator), + ('updated', DeviceSessionLogInfo.updated.validator), ] DeviceSessionLogInfo._all_fields_ = DeviceSessionLogInfo._fields_ DeviceSessionLogInfo._tag_to_subtype_ = { - ("desktop_device_session",): DesktopDeviceSessionLogInfo_validator, - ("legacy_device_session",): LegacyDeviceSessionLogInfo_validator, - ("mobile_device_session",): MobileDeviceSessionLogInfo_validator, - ("web_device_session",): WebDeviceSessionLogInfo_validator, + ('desktop_device_session',): DesktopDeviceSessionLogInfo_validator, + ('legacy_device_session',): LegacyDeviceSessionLogInfo_validator, + ('mobile_device_session',): MobileDeviceSessionLogInfo_validator, + ('web_device_session',): WebDeviceSessionLogInfo_validator, } DeviceSessionLogInfo._pytype_to_tag_and_subtype_ = { - DesktopDeviceSessionLogInfo: ( - ("desktop_device_session",), - DesktopDeviceSessionLogInfo_validator, - ), - LegacyDeviceSessionLogInfo: ( - ("legacy_device_session",), - LegacyDeviceSessionLogInfo_validator, - ), - MobileDeviceSessionLogInfo: ( - ("mobile_device_session",), - MobileDeviceSessionLogInfo_validator, - ), - WebDeviceSessionLogInfo: ( - ("web_device_session",), - WebDeviceSessionLogInfo_validator, - ), + DesktopDeviceSessionLogInfo: (('desktop_device_session',), DesktopDeviceSessionLogInfo_validator), + LegacyDeviceSessionLogInfo: (('legacy_device_session',), LegacyDeviceSessionLogInfo_validator), + MobileDeviceSessionLogInfo: (('mobile_device_session',), MobileDeviceSessionLogInfo_validator), + WebDeviceSessionLogInfo: (('web_device_session',), WebDeviceSessionLogInfo_validator), } DeviceSessionLogInfo._is_catch_all_ = True @@ -100310,56 +95858,45 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): DesktopDeviceSessionLogInfo.client_version.validator = bv.Nullable(bv.String()) DesktopDeviceSessionLogInfo.platform.validator = bv.String() DesktopDeviceSessionLogInfo.is_delete_on_unlink_supported.validator = bv.Boolean() -DesktopDeviceSessionLogInfo._field_names_ = set( - [ - "session_info", - "host_name", - "client_type", - "client_version", - "platform", - "is_delete_on_unlink_supported", - ] -) -DesktopDeviceSessionLogInfo._all_field_names_ = DeviceSessionLogInfo._all_field_names_.union( - DesktopDeviceSessionLogInfo._field_names_ -) +DesktopDeviceSessionLogInfo._field_names_ = set([ + 'session_info', + 'host_name', + 'client_type', + 'client_version', + 'platform', + 'is_delete_on_unlink_supported', +]) +DesktopDeviceSessionLogInfo._all_field_names_ = DeviceSessionLogInfo._all_field_names_.union(DesktopDeviceSessionLogInfo._field_names_) DesktopDeviceSessionLogInfo._fields_ = [ - ("session_info", DesktopDeviceSessionLogInfo.session_info.validator), - ("host_name", DesktopDeviceSessionLogInfo.host_name.validator), - ("client_type", DesktopDeviceSessionLogInfo.client_type.validator), - ("client_version", DesktopDeviceSessionLogInfo.client_version.validator), - ("platform", DesktopDeviceSessionLogInfo.platform.validator), - ( - "is_delete_on_unlink_supported", - DesktopDeviceSessionLogInfo.is_delete_on_unlink_supported.validator, - ), + ('session_info', DesktopDeviceSessionLogInfo.session_info.validator), + ('host_name', DesktopDeviceSessionLogInfo.host_name.validator), + ('client_type', DesktopDeviceSessionLogInfo.client_type.validator), + ('client_version', DesktopDeviceSessionLogInfo.client_version.validator), + ('platform', DesktopDeviceSessionLogInfo.platform.validator), + ('is_delete_on_unlink_supported', DesktopDeviceSessionLogInfo.is_delete_on_unlink_supported.validator), ] -DesktopDeviceSessionLogInfo._all_fields_ = ( - DeviceSessionLogInfo._all_fields_ + DesktopDeviceSessionLogInfo._fields_ -) +DesktopDeviceSessionLogInfo._all_fields_ = DeviceSessionLogInfo._all_fields_ + DesktopDeviceSessionLogInfo._fields_ SessionLogInfo.session_id.validator = bv.Nullable(common.SessionId_validator) -SessionLogInfo._field_names_ = set(["session_id"]) +SessionLogInfo._field_names_ = set(['session_id']) SessionLogInfo._all_field_names_ = SessionLogInfo._field_names_ -SessionLogInfo._fields_ = [("session_id", SessionLogInfo.session_id.validator)] +SessionLogInfo._fields_ = [('session_id', SessionLogInfo.session_id.validator)] SessionLogInfo._all_fields_ = SessionLogInfo._fields_ SessionLogInfo._tag_to_subtype_ = { - ("desktop",): DesktopSessionLogInfo_validator, - ("mobile",): MobileSessionLogInfo_validator, - ("web",): WebSessionLogInfo_validator, + ('desktop',): DesktopSessionLogInfo_validator, + ('mobile',): MobileSessionLogInfo_validator, + ('web',): WebSessionLogInfo_validator, } SessionLogInfo._pytype_to_tag_and_subtype_ = { - DesktopSessionLogInfo: (("desktop",), DesktopSessionLogInfo_validator), - MobileSessionLogInfo: (("mobile",), MobileSessionLogInfo_validator), - WebSessionLogInfo: (("web",), WebSessionLogInfo_validator), + DesktopSessionLogInfo: (('desktop',), DesktopSessionLogInfo_validator), + MobileSessionLogInfo: (('mobile',), MobileSessionLogInfo_validator), + WebSessionLogInfo: (('web',), WebSessionLogInfo_validator), } SessionLogInfo._is_catch_all_ = True DesktopSessionLogInfo._field_names_ = set([]) -DesktopSessionLogInfo._all_field_names_ = SessionLogInfo._all_field_names_.union( - DesktopSessionLogInfo._field_names_ -) +DesktopSessionLogInfo._all_field_names_ = SessionLogInfo._all_field_names_.union(DesktopSessionLogInfo._field_names_) DesktopSessionLogInfo._fields_ = [] DesktopSessionLogInfo._all_fields_ = SessionLogInfo._all_fields_ + DesktopSessionLogInfo._fields_ @@ -100367,909 +95904,687 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): DeviceApprovalsAddExceptionDetails._all_fields_ = [] DeviceApprovalsAddExceptionType.description.validator = bv.String() -DeviceApprovalsAddExceptionType._all_field_names_ = set(["description"]) -DeviceApprovalsAddExceptionType._all_fields_ = [ - ("description", DeviceApprovalsAddExceptionType.description.validator) -] - -DeviceApprovalsChangeDesktopPolicyDetails.new_value.validator = bv.Nullable( - DeviceApprovalsPolicy_validator -) -DeviceApprovalsChangeDesktopPolicyDetails.previous_value.validator = bv.Nullable( - DeviceApprovalsPolicy_validator -) -DeviceApprovalsChangeDesktopPolicyDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +DeviceApprovalsAddExceptionType._all_field_names_ = set(['description']) +DeviceApprovalsAddExceptionType._all_fields_ = [('description', DeviceApprovalsAddExceptionType.description.validator)] + +DeviceApprovalsChangeDesktopPolicyDetails.new_value.validator = bv.Nullable(DeviceApprovalsPolicy_validator) +DeviceApprovalsChangeDesktopPolicyDetails.previous_value.validator = bv.Nullable(DeviceApprovalsPolicy_validator) +DeviceApprovalsChangeDesktopPolicyDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) DeviceApprovalsChangeDesktopPolicyDetails._all_fields_ = [ - ("new_value", DeviceApprovalsChangeDesktopPolicyDetails.new_value.validator), - ( - "previous_value", - DeviceApprovalsChangeDesktopPolicyDetails.previous_value.validator, - ), + ('new_value', DeviceApprovalsChangeDesktopPolicyDetails.new_value.validator), + ('previous_value', DeviceApprovalsChangeDesktopPolicyDetails.previous_value.validator), ] DeviceApprovalsChangeDesktopPolicyType.description.validator = bv.String() -DeviceApprovalsChangeDesktopPolicyType._all_field_names_ = set(["description"]) -DeviceApprovalsChangeDesktopPolicyType._all_fields_ = [ - ("description", DeviceApprovalsChangeDesktopPolicyType.description.validator) -] - -DeviceApprovalsChangeMobilePolicyDetails.new_value.validator = bv.Nullable( - DeviceApprovalsPolicy_validator -) -DeviceApprovalsChangeMobilePolicyDetails.previous_value.validator = bv.Nullable( - DeviceApprovalsPolicy_validator -) -DeviceApprovalsChangeMobilePolicyDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +DeviceApprovalsChangeDesktopPolicyType._all_field_names_ = set(['description']) +DeviceApprovalsChangeDesktopPolicyType._all_fields_ = [('description', DeviceApprovalsChangeDesktopPolicyType.description.validator)] + +DeviceApprovalsChangeMobilePolicyDetails.new_value.validator = bv.Nullable(DeviceApprovalsPolicy_validator) +DeviceApprovalsChangeMobilePolicyDetails.previous_value.validator = bv.Nullable(DeviceApprovalsPolicy_validator) +DeviceApprovalsChangeMobilePolicyDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) DeviceApprovalsChangeMobilePolicyDetails._all_fields_ = [ - ("new_value", DeviceApprovalsChangeMobilePolicyDetails.new_value.validator), - ( - "previous_value", - DeviceApprovalsChangeMobilePolicyDetails.previous_value.validator, - ), + ('new_value', DeviceApprovalsChangeMobilePolicyDetails.new_value.validator), + ('previous_value', DeviceApprovalsChangeMobilePolicyDetails.previous_value.validator), ] DeviceApprovalsChangeMobilePolicyType.description.validator = bv.String() -DeviceApprovalsChangeMobilePolicyType._all_field_names_ = set(["description"]) -DeviceApprovalsChangeMobilePolicyType._all_fields_ = [ - ("description", DeviceApprovalsChangeMobilePolicyType.description.validator) -] - -DeviceApprovalsChangeOverageActionDetails.new_value.validator = bv.Nullable( - team_policies.RolloutMethod_validator -) -DeviceApprovalsChangeOverageActionDetails.previous_value.validator = bv.Nullable( - team_policies.RolloutMethod_validator -) -DeviceApprovalsChangeOverageActionDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +DeviceApprovalsChangeMobilePolicyType._all_field_names_ = set(['description']) +DeviceApprovalsChangeMobilePolicyType._all_fields_ = [('description', DeviceApprovalsChangeMobilePolicyType.description.validator)] + +DeviceApprovalsChangeOverageActionDetails.new_value.validator = bv.Nullable(team_policies.RolloutMethod_validator) +DeviceApprovalsChangeOverageActionDetails.previous_value.validator = bv.Nullable(team_policies.RolloutMethod_validator) +DeviceApprovalsChangeOverageActionDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) DeviceApprovalsChangeOverageActionDetails._all_fields_ = [ - ("new_value", DeviceApprovalsChangeOverageActionDetails.new_value.validator), - ( - "previous_value", - DeviceApprovalsChangeOverageActionDetails.previous_value.validator, - ), + ('new_value', DeviceApprovalsChangeOverageActionDetails.new_value.validator), + ('previous_value', DeviceApprovalsChangeOverageActionDetails.previous_value.validator), ] DeviceApprovalsChangeOverageActionType.description.validator = bv.String() -DeviceApprovalsChangeOverageActionType._all_field_names_ = set(["description"]) -DeviceApprovalsChangeOverageActionType._all_fields_ = [ - ("description", DeviceApprovalsChangeOverageActionType.description.validator) -] - -DeviceApprovalsChangeUnlinkActionDetails.new_value.validator = bv.Nullable( - DeviceUnlinkPolicy_validator -) -DeviceApprovalsChangeUnlinkActionDetails.previous_value.validator = bv.Nullable( - DeviceUnlinkPolicy_validator -) -DeviceApprovalsChangeUnlinkActionDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +DeviceApprovalsChangeOverageActionType._all_field_names_ = set(['description']) +DeviceApprovalsChangeOverageActionType._all_fields_ = [('description', DeviceApprovalsChangeOverageActionType.description.validator)] + +DeviceApprovalsChangeUnlinkActionDetails.new_value.validator = bv.Nullable(DeviceUnlinkPolicy_validator) +DeviceApprovalsChangeUnlinkActionDetails.previous_value.validator = bv.Nullable(DeviceUnlinkPolicy_validator) +DeviceApprovalsChangeUnlinkActionDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) DeviceApprovalsChangeUnlinkActionDetails._all_fields_ = [ - ("new_value", DeviceApprovalsChangeUnlinkActionDetails.new_value.validator), - ( - "previous_value", - DeviceApprovalsChangeUnlinkActionDetails.previous_value.validator, - ), + ('new_value', DeviceApprovalsChangeUnlinkActionDetails.new_value.validator), + ('previous_value', DeviceApprovalsChangeUnlinkActionDetails.previous_value.validator), ] DeviceApprovalsChangeUnlinkActionType.description.validator = bv.String() -DeviceApprovalsChangeUnlinkActionType._all_field_names_ = set(["description"]) -DeviceApprovalsChangeUnlinkActionType._all_fields_ = [ - ("description", DeviceApprovalsChangeUnlinkActionType.description.validator) -] +DeviceApprovalsChangeUnlinkActionType._all_field_names_ = set(['description']) +DeviceApprovalsChangeUnlinkActionType._all_fields_ = [('description', DeviceApprovalsChangeUnlinkActionType.description.validator)] DeviceApprovalsPolicy._limited_validator = bv.Void() DeviceApprovalsPolicy._unlimited_validator = bv.Void() DeviceApprovalsPolicy._other_validator = bv.Void() DeviceApprovalsPolicy._tagmap = { - "limited": DeviceApprovalsPolicy._limited_validator, - "unlimited": DeviceApprovalsPolicy._unlimited_validator, - "other": DeviceApprovalsPolicy._other_validator, + 'limited': DeviceApprovalsPolicy._limited_validator, + 'unlimited': DeviceApprovalsPolicy._unlimited_validator, + 'other': DeviceApprovalsPolicy._other_validator, } -DeviceApprovalsPolicy.limited = DeviceApprovalsPolicy("limited") -DeviceApprovalsPolicy.unlimited = DeviceApprovalsPolicy("unlimited") -DeviceApprovalsPolicy.other = DeviceApprovalsPolicy("other") +DeviceApprovalsPolicy.limited = DeviceApprovalsPolicy('limited') +DeviceApprovalsPolicy.unlimited = DeviceApprovalsPolicy('unlimited') +DeviceApprovalsPolicy.other = DeviceApprovalsPolicy('other') DeviceApprovalsRemoveExceptionDetails._all_field_names_ = set([]) DeviceApprovalsRemoveExceptionDetails._all_fields_ = [] DeviceApprovalsRemoveExceptionType.description.validator = bv.String() -DeviceApprovalsRemoveExceptionType._all_field_names_ = set(["description"]) -DeviceApprovalsRemoveExceptionType._all_fields_ = [ - ("description", DeviceApprovalsRemoveExceptionType.description.validator) -] +DeviceApprovalsRemoveExceptionType._all_field_names_ = set(['description']) +DeviceApprovalsRemoveExceptionType._all_fields_ = [('description', DeviceApprovalsRemoveExceptionType.description.validator)] DeviceChangeIpDesktopDetails.device_session_info.validator = DeviceSessionLogInfo_validator -DeviceChangeIpDesktopDetails._all_field_names_ = set(["device_session_info"]) -DeviceChangeIpDesktopDetails._all_fields_ = [ - ("device_session_info", DeviceChangeIpDesktopDetails.device_session_info.validator) -] +DeviceChangeIpDesktopDetails._all_field_names_ = set(['device_session_info']) +DeviceChangeIpDesktopDetails._all_fields_ = [('device_session_info', DeviceChangeIpDesktopDetails.device_session_info.validator)] DeviceChangeIpDesktopType.description.validator = bv.String() -DeviceChangeIpDesktopType._all_field_names_ = set(["description"]) -DeviceChangeIpDesktopType._all_fields_ = [ - ("description", DeviceChangeIpDesktopType.description.validator) -] +DeviceChangeIpDesktopType._all_field_names_ = set(['description']) +DeviceChangeIpDesktopType._all_fields_ = [('description', DeviceChangeIpDesktopType.description.validator)] -DeviceChangeIpMobileDetails.device_session_info.validator = bv.Nullable( - DeviceSessionLogInfo_validator -) -DeviceChangeIpMobileDetails._all_field_names_ = set(["device_session_info"]) -DeviceChangeIpMobileDetails._all_fields_ = [ - ("device_session_info", DeviceChangeIpMobileDetails.device_session_info.validator) -] +DeviceChangeIpMobileDetails.device_session_info.validator = bv.Nullable(DeviceSessionLogInfo_validator) +DeviceChangeIpMobileDetails._all_field_names_ = set(['device_session_info']) +DeviceChangeIpMobileDetails._all_fields_ = [('device_session_info', DeviceChangeIpMobileDetails.device_session_info.validator)] DeviceChangeIpMobileType.description.validator = bv.String() -DeviceChangeIpMobileType._all_field_names_ = set(["description"]) -DeviceChangeIpMobileType._all_fields_ = [ - ("description", DeviceChangeIpMobileType.description.validator) -] +DeviceChangeIpMobileType._all_field_names_ = set(['description']) +DeviceChangeIpMobileType._all_fields_ = [('description', DeviceChangeIpMobileType.description.validator)] DeviceChangeIpWebDetails.user_agent.validator = bv.String() -DeviceChangeIpWebDetails._all_field_names_ = set(["user_agent"]) -DeviceChangeIpWebDetails._all_fields_ = [ - ("user_agent", DeviceChangeIpWebDetails.user_agent.validator) -] +DeviceChangeIpWebDetails._all_field_names_ = set(['user_agent']) +DeviceChangeIpWebDetails._all_fields_ = [('user_agent', DeviceChangeIpWebDetails.user_agent.validator)] DeviceChangeIpWebType.description.validator = bv.String() -DeviceChangeIpWebType._all_field_names_ = set(["description"]) -DeviceChangeIpWebType._all_fields_ = [("description", DeviceChangeIpWebType.description.validator)] +DeviceChangeIpWebType._all_field_names_ = set(['description']) +DeviceChangeIpWebType._all_fields_ = [('description', DeviceChangeIpWebType.description.validator)] DeviceDeleteOnUnlinkFailDetails.session_info.validator = bv.Nullable(SessionLogInfo_validator) DeviceDeleteOnUnlinkFailDetails.display_name.validator = bv.Nullable(bv.String()) DeviceDeleteOnUnlinkFailDetails.num_failures.validator = bv.Int64() -DeviceDeleteOnUnlinkFailDetails._all_field_names_ = set( - [ - "session_info", - "display_name", - "num_failures", - ] -) +DeviceDeleteOnUnlinkFailDetails._all_field_names_ = set([ + 'session_info', + 'display_name', + 'num_failures', +]) DeviceDeleteOnUnlinkFailDetails._all_fields_ = [ - ("session_info", DeviceDeleteOnUnlinkFailDetails.session_info.validator), - ("display_name", DeviceDeleteOnUnlinkFailDetails.display_name.validator), - ("num_failures", DeviceDeleteOnUnlinkFailDetails.num_failures.validator), + ('session_info', DeviceDeleteOnUnlinkFailDetails.session_info.validator), + ('display_name', DeviceDeleteOnUnlinkFailDetails.display_name.validator), + ('num_failures', DeviceDeleteOnUnlinkFailDetails.num_failures.validator), ] DeviceDeleteOnUnlinkFailType.description.validator = bv.String() -DeviceDeleteOnUnlinkFailType._all_field_names_ = set(["description"]) -DeviceDeleteOnUnlinkFailType._all_fields_ = [ - ("description", DeviceDeleteOnUnlinkFailType.description.validator) -] +DeviceDeleteOnUnlinkFailType._all_field_names_ = set(['description']) +DeviceDeleteOnUnlinkFailType._all_fields_ = [('description', DeviceDeleteOnUnlinkFailType.description.validator)] DeviceDeleteOnUnlinkSuccessDetails.session_info.validator = bv.Nullable(SessionLogInfo_validator) DeviceDeleteOnUnlinkSuccessDetails.display_name.validator = bv.Nullable(bv.String()) -DeviceDeleteOnUnlinkSuccessDetails._all_field_names_ = set( - [ - "session_info", - "display_name", - ] -) +DeviceDeleteOnUnlinkSuccessDetails._all_field_names_ = set([ + 'session_info', + 'display_name', +]) DeviceDeleteOnUnlinkSuccessDetails._all_fields_ = [ - ("session_info", DeviceDeleteOnUnlinkSuccessDetails.session_info.validator), - ("display_name", DeviceDeleteOnUnlinkSuccessDetails.display_name.validator), + ('session_info', DeviceDeleteOnUnlinkSuccessDetails.session_info.validator), + ('display_name', DeviceDeleteOnUnlinkSuccessDetails.display_name.validator), ] DeviceDeleteOnUnlinkSuccessType.description.validator = bv.String() -DeviceDeleteOnUnlinkSuccessType._all_field_names_ = set(["description"]) -DeviceDeleteOnUnlinkSuccessType._all_fields_ = [ - ("description", DeviceDeleteOnUnlinkSuccessType.description.validator) -] +DeviceDeleteOnUnlinkSuccessType._all_field_names_ = set(['description']) +DeviceDeleteOnUnlinkSuccessType._all_fields_ = [('description', DeviceDeleteOnUnlinkSuccessType.description.validator)] DeviceLinkFailDetails.ip_address.validator = bv.Nullable(IpAddress_validator) DeviceLinkFailDetails.device_type.validator = DeviceType_validator -DeviceLinkFailDetails._all_field_names_ = set( - [ - "ip_address", - "device_type", - ] -) +DeviceLinkFailDetails._all_field_names_ = set([ + 'ip_address', + 'device_type', +]) DeviceLinkFailDetails._all_fields_ = [ - ("ip_address", DeviceLinkFailDetails.ip_address.validator), - ("device_type", DeviceLinkFailDetails.device_type.validator), + ('ip_address', DeviceLinkFailDetails.ip_address.validator), + ('device_type', DeviceLinkFailDetails.device_type.validator), ] DeviceLinkFailType.description.validator = bv.String() -DeviceLinkFailType._all_field_names_ = set(["description"]) -DeviceLinkFailType._all_fields_ = [("description", DeviceLinkFailType.description.validator)] +DeviceLinkFailType._all_field_names_ = set(['description']) +DeviceLinkFailType._all_fields_ = [('description', DeviceLinkFailType.description.validator)] DeviceLinkSuccessDetails.device_session_info.validator = bv.Nullable(DeviceSessionLogInfo_validator) -DeviceLinkSuccessDetails._all_field_names_ = set(["device_session_info"]) -DeviceLinkSuccessDetails._all_fields_ = [ - ("device_session_info", DeviceLinkSuccessDetails.device_session_info.validator) -] +DeviceLinkSuccessDetails._all_field_names_ = set(['device_session_info']) +DeviceLinkSuccessDetails._all_fields_ = [('device_session_info', DeviceLinkSuccessDetails.device_session_info.validator)] DeviceLinkSuccessType.description.validator = bv.String() -DeviceLinkSuccessType._all_field_names_ = set(["description"]) -DeviceLinkSuccessType._all_fields_ = [("description", DeviceLinkSuccessType.description.validator)] +DeviceLinkSuccessType._all_field_names_ = set(['description']) +DeviceLinkSuccessType._all_fields_ = [('description', DeviceLinkSuccessType.description.validator)] DeviceManagementDisabledDetails._all_field_names_ = set([]) DeviceManagementDisabledDetails._all_fields_ = [] DeviceManagementDisabledType.description.validator = bv.String() -DeviceManagementDisabledType._all_field_names_ = set(["description"]) -DeviceManagementDisabledType._all_fields_ = [ - ("description", DeviceManagementDisabledType.description.validator) -] +DeviceManagementDisabledType._all_field_names_ = set(['description']) +DeviceManagementDisabledType._all_fields_ = [('description', DeviceManagementDisabledType.description.validator)] DeviceManagementEnabledDetails._all_field_names_ = set([]) DeviceManagementEnabledDetails._all_fields_ = [] DeviceManagementEnabledType.description.validator = bv.String() -DeviceManagementEnabledType._all_field_names_ = set(["description"]) -DeviceManagementEnabledType._all_fields_ = [ - ("description", DeviceManagementEnabledType.description.validator) -] +DeviceManagementEnabledType._all_field_names_ = set(['description']) +DeviceManagementEnabledType._all_fields_ = [('description', DeviceManagementEnabledType.description.validator)] -DeviceSyncBackupStatusChangedDetails.desktop_device_session_info.validator = ( - DesktopDeviceSessionLogInfo_validator -) +DeviceSyncBackupStatusChangedDetails.desktop_device_session_info.validator = DesktopDeviceSessionLogInfo_validator DeviceSyncBackupStatusChangedDetails.previous_value.validator = BackupStatus_validator DeviceSyncBackupStatusChangedDetails.new_value.validator = BackupStatus_validator -DeviceSyncBackupStatusChangedDetails._all_field_names_ = set( - [ - "desktop_device_session_info", - "previous_value", - "new_value", - ] -) +DeviceSyncBackupStatusChangedDetails._all_field_names_ = set([ + 'desktop_device_session_info', + 'previous_value', + 'new_value', +]) DeviceSyncBackupStatusChangedDetails._all_fields_ = [ - ( - "desktop_device_session_info", - DeviceSyncBackupStatusChangedDetails.desktop_device_session_info.validator, - ), - ("previous_value", DeviceSyncBackupStatusChangedDetails.previous_value.validator), - ("new_value", DeviceSyncBackupStatusChangedDetails.new_value.validator), + ('desktop_device_session_info', DeviceSyncBackupStatusChangedDetails.desktop_device_session_info.validator), + ('previous_value', DeviceSyncBackupStatusChangedDetails.previous_value.validator), + ('new_value', DeviceSyncBackupStatusChangedDetails.new_value.validator), ] DeviceSyncBackupStatusChangedType.description.validator = bv.String() -DeviceSyncBackupStatusChangedType._all_field_names_ = set(["description"]) -DeviceSyncBackupStatusChangedType._all_fields_ = [ - ("description", DeviceSyncBackupStatusChangedType.description.validator) -] +DeviceSyncBackupStatusChangedType._all_field_names_ = set(['description']) +DeviceSyncBackupStatusChangedType._all_fields_ = [('description', DeviceSyncBackupStatusChangedType.description.validator)] DeviceType._desktop_validator = bv.Void() DeviceType._mobile_validator = bv.Void() DeviceType._other_validator = bv.Void() DeviceType._tagmap = { - "desktop": DeviceType._desktop_validator, - "mobile": DeviceType._mobile_validator, - "other": DeviceType._other_validator, + 'desktop': DeviceType._desktop_validator, + 'mobile': DeviceType._mobile_validator, + 'other': DeviceType._other_validator, } -DeviceType.desktop = DeviceType("desktop") -DeviceType.mobile = DeviceType("mobile") -DeviceType.other = DeviceType("other") +DeviceType.desktop = DeviceType('desktop') +DeviceType.mobile = DeviceType('mobile') +DeviceType.other = DeviceType('other') DeviceUnlinkDetails.session_info.validator = bv.Nullable(SessionLogInfo_validator) DeviceUnlinkDetails.display_name.validator = bv.Nullable(bv.String()) DeviceUnlinkDetails.delete_data.validator = bv.Boolean() -DeviceUnlinkDetails._all_field_names_ = set( - [ - "session_info", - "display_name", - "delete_data", - ] -) +DeviceUnlinkDetails._all_field_names_ = set([ + 'session_info', + 'display_name', + 'delete_data', +]) DeviceUnlinkDetails._all_fields_ = [ - ("session_info", DeviceUnlinkDetails.session_info.validator), - ("display_name", DeviceUnlinkDetails.display_name.validator), - ("delete_data", DeviceUnlinkDetails.delete_data.validator), + ('session_info', DeviceUnlinkDetails.session_info.validator), + ('display_name', DeviceUnlinkDetails.display_name.validator), + ('delete_data', DeviceUnlinkDetails.delete_data.validator), ] DeviceUnlinkPolicy._keep_validator = bv.Void() DeviceUnlinkPolicy._remove_validator = bv.Void() DeviceUnlinkPolicy._other_validator = bv.Void() DeviceUnlinkPolicy._tagmap = { - "keep": DeviceUnlinkPolicy._keep_validator, - "remove": DeviceUnlinkPolicy._remove_validator, - "other": DeviceUnlinkPolicy._other_validator, + 'keep': DeviceUnlinkPolicy._keep_validator, + 'remove': DeviceUnlinkPolicy._remove_validator, + 'other': DeviceUnlinkPolicy._other_validator, } -DeviceUnlinkPolicy.keep = DeviceUnlinkPolicy("keep") -DeviceUnlinkPolicy.remove = DeviceUnlinkPolicy("remove") -DeviceUnlinkPolicy.other = DeviceUnlinkPolicy("other") +DeviceUnlinkPolicy.keep = DeviceUnlinkPolicy('keep') +DeviceUnlinkPolicy.remove = DeviceUnlinkPolicy('remove') +DeviceUnlinkPolicy.other = DeviceUnlinkPolicy('other') DeviceUnlinkType.description.validator = bv.String() -DeviceUnlinkType._all_field_names_ = set(["description"]) -DeviceUnlinkType._all_fields_ = [("description", DeviceUnlinkType.description.validator)] +DeviceUnlinkType._all_field_names_ = set(['description']) +DeviceUnlinkType._all_fields_ = [('description', DeviceUnlinkType.description.validator)] DirectoryRestrictionsAddMembersDetails._all_field_names_ = set([]) DirectoryRestrictionsAddMembersDetails._all_fields_ = [] DirectoryRestrictionsAddMembersType.description.validator = bv.String() -DirectoryRestrictionsAddMembersType._all_field_names_ = set(["description"]) -DirectoryRestrictionsAddMembersType._all_fields_ = [ - ("description", DirectoryRestrictionsAddMembersType.description.validator) -] +DirectoryRestrictionsAddMembersType._all_field_names_ = set(['description']) +DirectoryRestrictionsAddMembersType._all_fields_ = [('description', DirectoryRestrictionsAddMembersType.description.validator)] DirectoryRestrictionsRemoveMembersDetails._all_field_names_ = set([]) DirectoryRestrictionsRemoveMembersDetails._all_fields_ = [] DirectoryRestrictionsRemoveMembersType.description.validator = bv.String() -DirectoryRestrictionsRemoveMembersType._all_field_names_ = set(["description"]) -DirectoryRestrictionsRemoveMembersType._all_fields_ = [ - ("description", DirectoryRestrictionsRemoveMembersType.description.validator) -] +DirectoryRestrictionsRemoveMembersType._all_field_names_ = set(['description']) +DirectoryRestrictionsRemoveMembersType._all_fields_ = [('description', DirectoryRestrictionsRemoveMembersType.description.validator)] DisabledDomainInvitesDetails._all_field_names_ = set([]) DisabledDomainInvitesDetails._all_fields_ = [] DisabledDomainInvitesType.description.validator = bv.String() -DisabledDomainInvitesType._all_field_names_ = set(["description"]) -DisabledDomainInvitesType._all_fields_ = [ - ("description", DisabledDomainInvitesType.description.validator) -] +DisabledDomainInvitesType._all_field_names_ = set(['description']) +DisabledDomainInvitesType._all_fields_ = [('description', DisabledDomainInvitesType.description.validator)] DispositionActionType._automatic_delete_validator = bv.Void() DispositionActionType._automatic_permanently_delete_validator = bv.Void() DispositionActionType._other_validator = bv.Void() DispositionActionType._tagmap = { - "automatic_delete": DispositionActionType._automatic_delete_validator, - "automatic_permanently_delete": DispositionActionType._automatic_permanently_delete_validator, - "other": DispositionActionType._other_validator, + 'automatic_delete': DispositionActionType._automatic_delete_validator, + 'automatic_permanently_delete': DispositionActionType._automatic_permanently_delete_validator, + 'other': DispositionActionType._other_validator, } -DispositionActionType.automatic_delete = DispositionActionType("automatic_delete") -DispositionActionType.automatic_permanently_delete = DispositionActionType( - "automatic_permanently_delete" -) -DispositionActionType.other = DispositionActionType("other") +DispositionActionType.automatic_delete = DispositionActionType('automatic_delete') +DispositionActionType.automatic_permanently_delete = DispositionActionType('automatic_permanently_delete') +DispositionActionType.other = DispositionActionType('other') DomainInvitesApproveRequestToJoinTeamDetails._all_field_names_ = set([]) DomainInvitesApproveRequestToJoinTeamDetails._all_fields_ = [] DomainInvitesApproveRequestToJoinTeamType.description.validator = bv.String() -DomainInvitesApproveRequestToJoinTeamType._all_field_names_ = set(["description"]) -DomainInvitesApproveRequestToJoinTeamType._all_fields_ = [ - ("description", DomainInvitesApproveRequestToJoinTeamType.description.validator) -] +DomainInvitesApproveRequestToJoinTeamType._all_field_names_ = set(['description']) +DomainInvitesApproveRequestToJoinTeamType._all_fields_ = [('description', DomainInvitesApproveRequestToJoinTeamType.description.validator)] DomainInvitesDeclineRequestToJoinTeamDetails._all_field_names_ = set([]) DomainInvitesDeclineRequestToJoinTeamDetails._all_fields_ = [] DomainInvitesDeclineRequestToJoinTeamType.description.validator = bv.String() -DomainInvitesDeclineRequestToJoinTeamType._all_field_names_ = set(["description"]) -DomainInvitesDeclineRequestToJoinTeamType._all_fields_ = [ - ("description", DomainInvitesDeclineRequestToJoinTeamType.description.validator) -] +DomainInvitesDeclineRequestToJoinTeamType._all_field_names_ = set(['description']) +DomainInvitesDeclineRequestToJoinTeamType._all_fields_ = [('description', DomainInvitesDeclineRequestToJoinTeamType.description.validator)] DomainInvitesEmailExistingUsersDetails.domain_name.validator = bv.String() DomainInvitesEmailExistingUsersDetails.num_recipients.validator = bv.UInt64() -DomainInvitesEmailExistingUsersDetails._all_field_names_ = set( - [ - "domain_name", - "num_recipients", - ] -) +DomainInvitesEmailExistingUsersDetails._all_field_names_ = set([ + 'domain_name', + 'num_recipients', +]) DomainInvitesEmailExistingUsersDetails._all_fields_ = [ - ("domain_name", DomainInvitesEmailExistingUsersDetails.domain_name.validator), - ("num_recipients", DomainInvitesEmailExistingUsersDetails.num_recipients.validator), + ('domain_name', DomainInvitesEmailExistingUsersDetails.domain_name.validator), + ('num_recipients', DomainInvitesEmailExistingUsersDetails.num_recipients.validator), ] DomainInvitesEmailExistingUsersType.description.validator = bv.String() -DomainInvitesEmailExistingUsersType._all_field_names_ = set(["description"]) -DomainInvitesEmailExistingUsersType._all_fields_ = [ - ("description", DomainInvitesEmailExistingUsersType.description.validator) -] +DomainInvitesEmailExistingUsersType._all_field_names_ = set(['description']) +DomainInvitesEmailExistingUsersType._all_fields_ = [('description', DomainInvitesEmailExistingUsersType.description.validator)] DomainInvitesRequestToJoinTeamDetails._all_field_names_ = set([]) DomainInvitesRequestToJoinTeamDetails._all_fields_ = [] DomainInvitesRequestToJoinTeamType.description.validator = bv.String() -DomainInvitesRequestToJoinTeamType._all_field_names_ = set(["description"]) -DomainInvitesRequestToJoinTeamType._all_fields_ = [ - ("description", DomainInvitesRequestToJoinTeamType.description.validator) -] +DomainInvitesRequestToJoinTeamType._all_field_names_ = set(['description']) +DomainInvitesRequestToJoinTeamType._all_fields_ = [('description', DomainInvitesRequestToJoinTeamType.description.validator)] DomainInvitesSetInviteNewUserPrefToNoDetails._all_field_names_ = set([]) DomainInvitesSetInviteNewUserPrefToNoDetails._all_fields_ = [] DomainInvitesSetInviteNewUserPrefToNoType.description.validator = bv.String() -DomainInvitesSetInviteNewUserPrefToNoType._all_field_names_ = set(["description"]) -DomainInvitesSetInviteNewUserPrefToNoType._all_fields_ = [ - ("description", DomainInvitesSetInviteNewUserPrefToNoType.description.validator) -] +DomainInvitesSetInviteNewUserPrefToNoType._all_field_names_ = set(['description']) +DomainInvitesSetInviteNewUserPrefToNoType._all_fields_ = [('description', DomainInvitesSetInviteNewUserPrefToNoType.description.validator)] DomainInvitesSetInviteNewUserPrefToYesDetails._all_field_names_ = set([]) DomainInvitesSetInviteNewUserPrefToYesDetails._all_fields_ = [] DomainInvitesSetInviteNewUserPrefToYesType.description.validator = bv.String() -DomainInvitesSetInviteNewUserPrefToYesType._all_field_names_ = set(["description"]) -DomainInvitesSetInviteNewUserPrefToYesType._all_fields_ = [ - ("description", DomainInvitesSetInviteNewUserPrefToYesType.description.validator) -] +DomainInvitesSetInviteNewUserPrefToYesType._all_field_names_ = set(['description']) +DomainInvitesSetInviteNewUserPrefToYesType._all_fields_ = [('description', DomainInvitesSetInviteNewUserPrefToYesType.description.validator)] DomainVerificationAddDomainFailDetails.domain_name.validator = bv.String() DomainVerificationAddDomainFailDetails.verification_method.validator = bv.Nullable(bv.String()) -DomainVerificationAddDomainFailDetails._all_field_names_ = set( - [ - "domain_name", - "verification_method", - ] -) +DomainVerificationAddDomainFailDetails._all_field_names_ = set([ + 'domain_name', + 'verification_method', +]) DomainVerificationAddDomainFailDetails._all_fields_ = [ - ("domain_name", DomainVerificationAddDomainFailDetails.domain_name.validator), - ( - "verification_method", - DomainVerificationAddDomainFailDetails.verification_method.validator, - ), + ('domain_name', DomainVerificationAddDomainFailDetails.domain_name.validator), + ('verification_method', DomainVerificationAddDomainFailDetails.verification_method.validator), ] DomainVerificationAddDomainFailType.description.validator = bv.String() -DomainVerificationAddDomainFailType._all_field_names_ = set(["description"]) -DomainVerificationAddDomainFailType._all_fields_ = [ - ("description", DomainVerificationAddDomainFailType.description.validator) -] +DomainVerificationAddDomainFailType._all_field_names_ = set(['description']) +DomainVerificationAddDomainFailType._all_fields_ = [('description', DomainVerificationAddDomainFailType.description.validator)] DomainVerificationAddDomainSuccessDetails.domain_names.validator = bv.List(bv.String()) DomainVerificationAddDomainSuccessDetails.verification_method.validator = bv.Nullable(bv.String()) -DomainVerificationAddDomainSuccessDetails._all_field_names_ = set( - [ - "domain_names", - "verification_method", - ] -) +DomainVerificationAddDomainSuccessDetails._all_field_names_ = set([ + 'domain_names', + 'verification_method', +]) DomainVerificationAddDomainSuccessDetails._all_fields_ = [ - ("domain_names", DomainVerificationAddDomainSuccessDetails.domain_names.validator), - ( - "verification_method", - DomainVerificationAddDomainSuccessDetails.verification_method.validator, - ), + ('domain_names', DomainVerificationAddDomainSuccessDetails.domain_names.validator), + ('verification_method', DomainVerificationAddDomainSuccessDetails.verification_method.validator), ] DomainVerificationAddDomainSuccessType.description.validator = bv.String() -DomainVerificationAddDomainSuccessType._all_field_names_ = set(["description"]) -DomainVerificationAddDomainSuccessType._all_fields_ = [ - ("description", DomainVerificationAddDomainSuccessType.description.validator) -] +DomainVerificationAddDomainSuccessType._all_field_names_ = set(['description']) +DomainVerificationAddDomainSuccessType._all_fields_ = [('description', DomainVerificationAddDomainSuccessType.description.validator)] DomainVerificationRemoveDomainDetails.domain_names.validator = bv.List(bv.String()) -DomainVerificationRemoveDomainDetails._all_field_names_ = set(["domain_names"]) -DomainVerificationRemoveDomainDetails._all_fields_ = [ - ("domain_names", DomainVerificationRemoveDomainDetails.domain_names.validator) -] +DomainVerificationRemoveDomainDetails._all_field_names_ = set(['domain_names']) +DomainVerificationRemoveDomainDetails._all_fields_ = [('domain_names', DomainVerificationRemoveDomainDetails.domain_names.validator)] DomainVerificationRemoveDomainType.description.validator = bv.String() -DomainVerificationRemoveDomainType._all_field_names_ = set(["description"]) -DomainVerificationRemoveDomainType._all_fields_ = [ - ("description", DomainVerificationRemoveDomainType.description.validator) -] +DomainVerificationRemoveDomainType._all_field_names_ = set(['description']) +DomainVerificationRemoveDomainType._all_fields_ = [('description', DomainVerificationRemoveDomainType.description.validator)] DownloadPolicyType._allow_validator = bv.Void() DownloadPolicyType._disallow_validator = bv.Void() DownloadPolicyType._other_validator = bv.Void() DownloadPolicyType._tagmap = { - "allow": DownloadPolicyType._allow_validator, - "disallow": DownloadPolicyType._disallow_validator, - "other": DownloadPolicyType._other_validator, + 'allow': DownloadPolicyType._allow_validator, + 'disallow': DownloadPolicyType._disallow_validator, + 'other': DownloadPolicyType._other_validator, } -DownloadPolicyType.allow = DownloadPolicyType("allow") -DownloadPolicyType.disallow = DownloadPolicyType("disallow") -DownloadPolicyType.other = DownloadPolicyType("other") +DownloadPolicyType.allow = DownloadPolicyType('allow') +DownloadPolicyType.disallow = DownloadPolicyType('disallow') +DownloadPolicyType.other = DownloadPolicyType('other') DropboxPasswordsExportedDetails.platform.validator = bv.String() -DropboxPasswordsExportedDetails._all_field_names_ = set(["platform"]) -DropboxPasswordsExportedDetails._all_fields_ = [ - ("platform", DropboxPasswordsExportedDetails.platform.validator) -] +DropboxPasswordsExportedDetails._all_field_names_ = set(['platform']) +DropboxPasswordsExportedDetails._all_fields_ = [('platform', DropboxPasswordsExportedDetails.platform.validator)] DropboxPasswordsExportedType.description.validator = bv.String() -DropboxPasswordsExportedType._all_field_names_ = set(["description"]) -DropboxPasswordsExportedType._all_fields_ = [ - ("description", DropboxPasswordsExportedType.description.validator) -] +DropboxPasswordsExportedType._all_field_names_ = set(['description']) +DropboxPasswordsExportedType._all_fields_ = [('description', DropboxPasswordsExportedType.description.validator)] DropboxPasswordsNewDeviceEnrolledDetails.is_first_device.validator = bv.Boolean() DropboxPasswordsNewDeviceEnrolledDetails.platform.validator = bv.String() -DropboxPasswordsNewDeviceEnrolledDetails._all_field_names_ = set( - [ - "is_first_device", - "platform", - ] -) +DropboxPasswordsNewDeviceEnrolledDetails._all_field_names_ = set([ + 'is_first_device', + 'platform', +]) DropboxPasswordsNewDeviceEnrolledDetails._all_fields_ = [ - ( - "is_first_device", - DropboxPasswordsNewDeviceEnrolledDetails.is_first_device.validator, - ), - ("platform", DropboxPasswordsNewDeviceEnrolledDetails.platform.validator), + ('is_first_device', DropboxPasswordsNewDeviceEnrolledDetails.is_first_device.validator), + ('platform', DropboxPasswordsNewDeviceEnrolledDetails.platform.validator), ] DropboxPasswordsNewDeviceEnrolledType.description.validator = bv.String() -DropboxPasswordsNewDeviceEnrolledType._all_field_names_ = set(["description"]) -DropboxPasswordsNewDeviceEnrolledType._all_fields_ = [ - ("description", DropboxPasswordsNewDeviceEnrolledType.description.validator) -] +DropboxPasswordsNewDeviceEnrolledType._all_field_names_ = set(['description']) +DropboxPasswordsNewDeviceEnrolledType._all_fields_ = [('description', DropboxPasswordsNewDeviceEnrolledType.description.validator)] DropboxPasswordsPolicy._default_validator = bv.Void() DropboxPasswordsPolicy._disabled_validator = bv.Void() DropboxPasswordsPolicy._enabled_validator = bv.Void() DropboxPasswordsPolicy._other_validator = bv.Void() DropboxPasswordsPolicy._tagmap = { - "default": DropboxPasswordsPolicy._default_validator, - "disabled": DropboxPasswordsPolicy._disabled_validator, - "enabled": DropboxPasswordsPolicy._enabled_validator, - "other": DropboxPasswordsPolicy._other_validator, + 'default': DropboxPasswordsPolicy._default_validator, + 'disabled': DropboxPasswordsPolicy._disabled_validator, + 'enabled': DropboxPasswordsPolicy._enabled_validator, + 'other': DropboxPasswordsPolicy._other_validator, } -DropboxPasswordsPolicy.default = DropboxPasswordsPolicy("default") -DropboxPasswordsPolicy.disabled = DropboxPasswordsPolicy("disabled") -DropboxPasswordsPolicy.enabled = DropboxPasswordsPolicy("enabled") -DropboxPasswordsPolicy.other = DropboxPasswordsPolicy("other") +DropboxPasswordsPolicy.default = DropboxPasswordsPolicy('default') +DropboxPasswordsPolicy.disabled = DropboxPasswordsPolicy('disabled') +DropboxPasswordsPolicy.enabled = DropboxPasswordsPolicy('enabled') +DropboxPasswordsPolicy.other = DropboxPasswordsPolicy('other') DropboxPasswordsPolicyChangedDetails.new_value.validator = DropboxPasswordsPolicy_validator DropboxPasswordsPolicyChangedDetails.previous_value.validator = DropboxPasswordsPolicy_validator -DropboxPasswordsPolicyChangedDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +DropboxPasswordsPolicyChangedDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) DropboxPasswordsPolicyChangedDetails._all_fields_ = [ - ("new_value", DropboxPasswordsPolicyChangedDetails.new_value.validator), - ("previous_value", DropboxPasswordsPolicyChangedDetails.previous_value.validator), + ('new_value', DropboxPasswordsPolicyChangedDetails.new_value.validator), + ('previous_value', DropboxPasswordsPolicyChangedDetails.previous_value.validator), ] DropboxPasswordsPolicyChangedType.description.validator = bv.String() -DropboxPasswordsPolicyChangedType._all_field_names_ = set(["description"]) -DropboxPasswordsPolicyChangedType._all_fields_ = [ - ("description", DropboxPasswordsPolicyChangedType.description.validator) -] +DropboxPasswordsPolicyChangedType._all_field_names_ = set(['description']) +DropboxPasswordsPolicyChangedType._all_fields_ = [('description', DropboxPasswordsPolicyChangedType.description.validator)] DurationLogInfo.unit.validator = TimeUnit_validator DurationLogInfo.amount.validator = bv.UInt64() -DurationLogInfo._all_field_names_ = set( - [ - "unit", - "amount", - ] -) +DurationLogInfo._all_field_names_ = set([ + 'unit', + 'amount', +]) DurationLogInfo._all_fields_ = [ - ("unit", DurationLogInfo.unit.validator), - ("amount", DurationLogInfo.amount.validator), + ('unit', DurationLogInfo.unit.validator), + ('amount', DurationLogInfo.amount.validator), ] EmailIngestPolicy._disabled_validator = bv.Void() EmailIngestPolicy._enabled_validator = bv.Void() EmailIngestPolicy._other_validator = bv.Void() EmailIngestPolicy._tagmap = { - "disabled": EmailIngestPolicy._disabled_validator, - "enabled": EmailIngestPolicy._enabled_validator, - "other": EmailIngestPolicy._other_validator, + 'disabled': EmailIngestPolicy._disabled_validator, + 'enabled': EmailIngestPolicy._enabled_validator, + 'other': EmailIngestPolicy._other_validator, } -EmailIngestPolicy.disabled = EmailIngestPolicy("disabled") -EmailIngestPolicy.enabled = EmailIngestPolicy("enabled") -EmailIngestPolicy.other = EmailIngestPolicy("other") +EmailIngestPolicy.disabled = EmailIngestPolicy('disabled') +EmailIngestPolicy.enabled = EmailIngestPolicy('enabled') +EmailIngestPolicy.other = EmailIngestPolicy('other') EmailIngestPolicyChangedDetails.new_value.validator = EmailIngestPolicy_validator EmailIngestPolicyChangedDetails.previous_value.validator = EmailIngestPolicy_validator -EmailIngestPolicyChangedDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +EmailIngestPolicyChangedDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) EmailIngestPolicyChangedDetails._all_fields_ = [ - ("new_value", EmailIngestPolicyChangedDetails.new_value.validator), - ("previous_value", EmailIngestPolicyChangedDetails.previous_value.validator), + ('new_value', EmailIngestPolicyChangedDetails.new_value.validator), + ('previous_value', EmailIngestPolicyChangedDetails.previous_value.validator), ] EmailIngestPolicyChangedType.description.validator = bv.String() -EmailIngestPolicyChangedType._all_field_names_ = set(["description"]) -EmailIngestPolicyChangedType._all_fields_ = [ - ("description", EmailIngestPolicyChangedType.description.validator) -] +EmailIngestPolicyChangedType._all_field_names_ = set(['description']) +EmailIngestPolicyChangedType._all_fields_ = [('description', EmailIngestPolicyChangedType.description.validator)] EmailIngestReceiveFileDetails.inbox_name.validator = bv.String() EmailIngestReceiveFileDetails.attachment_names.validator = bv.List(bv.String()) EmailIngestReceiveFileDetails.subject.validator = bv.Nullable(bv.String()) EmailIngestReceiveFileDetails.from_name.validator = bv.Nullable(common.DisplayNameLegacy_validator) EmailIngestReceiveFileDetails.from_email.validator = bv.Nullable(EmailAddress_validator) -EmailIngestReceiveFileDetails._all_field_names_ = set( - [ - "inbox_name", - "attachment_names", - "subject", - "from_name", - "from_email", - ] -) +EmailIngestReceiveFileDetails._all_field_names_ = set([ + 'inbox_name', + 'attachment_names', + 'subject', + 'from_name', + 'from_email', +]) EmailIngestReceiveFileDetails._all_fields_ = [ - ("inbox_name", EmailIngestReceiveFileDetails.inbox_name.validator), - ("attachment_names", EmailIngestReceiveFileDetails.attachment_names.validator), - ("subject", EmailIngestReceiveFileDetails.subject.validator), - ("from_name", EmailIngestReceiveFileDetails.from_name.validator), - ("from_email", EmailIngestReceiveFileDetails.from_email.validator), + ('inbox_name', EmailIngestReceiveFileDetails.inbox_name.validator), + ('attachment_names', EmailIngestReceiveFileDetails.attachment_names.validator), + ('subject', EmailIngestReceiveFileDetails.subject.validator), + ('from_name', EmailIngestReceiveFileDetails.from_name.validator), + ('from_email', EmailIngestReceiveFileDetails.from_email.validator), ] EmailIngestReceiveFileType.description.validator = bv.String() -EmailIngestReceiveFileType._all_field_names_ = set(["description"]) -EmailIngestReceiveFileType._all_fields_ = [ - ("description", EmailIngestReceiveFileType.description.validator) -] +EmailIngestReceiveFileType._all_field_names_ = set(['description']) +EmailIngestReceiveFileType._all_fields_ = [('description', EmailIngestReceiveFileType.description.validator)] EmmAddExceptionDetails._all_field_names_ = set([]) EmmAddExceptionDetails._all_fields_ = [] EmmAddExceptionType.description.validator = bv.String() -EmmAddExceptionType._all_field_names_ = set(["description"]) -EmmAddExceptionType._all_fields_ = [("description", EmmAddExceptionType.description.validator)] +EmmAddExceptionType._all_field_names_ = set(['description']) +EmmAddExceptionType._all_fields_ = [('description', EmmAddExceptionType.description.validator)] EmmChangePolicyDetails.new_value.validator = team_policies.EmmState_validator EmmChangePolicyDetails.previous_value.validator = bv.Nullable(team_policies.EmmState_validator) -EmmChangePolicyDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +EmmChangePolicyDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) EmmChangePolicyDetails._all_fields_ = [ - ("new_value", EmmChangePolicyDetails.new_value.validator), - ("previous_value", EmmChangePolicyDetails.previous_value.validator), + ('new_value', EmmChangePolicyDetails.new_value.validator), + ('previous_value', EmmChangePolicyDetails.previous_value.validator), ] EmmChangePolicyType.description.validator = bv.String() -EmmChangePolicyType._all_field_names_ = set(["description"]) -EmmChangePolicyType._all_fields_ = [("description", EmmChangePolicyType.description.validator)] +EmmChangePolicyType._all_field_names_ = set(['description']) +EmmChangePolicyType._all_fields_ = [('description', EmmChangePolicyType.description.validator)] EmmCreateExceptionsReportDetails._all_field_names_ = set([]) EmmCreateExceptionsReportDetails._all_fields_ = [] EmmCreateExceptionsReportType.description.validator = bv.String() -EmmCreateExceptionsReportType._all_field_names_ = set(["description"]) -EmmCreateExceptionsReportType._all_fields_ = [ - ("description", EmmCreateExceptionsReportType.description.validator) -] +EmmCreateExceptionsReportType._all_field_names_ = set(['description']) +EmmCreateExceptionsReportType._all_fields_ = [('description', EmmCreateExceptionsReportType.description.validator)] EmmCreateUsageReportDetails._all_field_names_ = set([]) EmmCreateUsageReportDetails._all_fields_ = [] EmmCreateUsageReportType.description.validator = bv.String() -EmmCreateUsageReportType._all_field_names_ = set(["description"]) -EmmCreateUsageReportType._all_fields_ = [ - ("description", EmmCreateUsageReportType.description.validator) -] +EmmCreateUsageReportType._all_field_names_ = set(['description']) +EmmCreateUsageReportType._all_fields_ = [('description', EmmCreateUsageReportType.description.validator)] EmmErrorDetails.error_details.validator = FailureDetailsLogInfo_validator -EmmErrorDetails._all_field_names_ = set(["error_details"]) -EmmErrorDetails._all_fields_ = [("error_details", EmmErrorDetails.error_details.validator)] +EmmErrorDetails._all_field_names_ = set(['error_details']) +EmmErrorDetails._all_fields_ = [('error_details', EmmErrorDetails.error_details.validator)] EmmErrorType.description.validator = bv.String() -EmmErrorType._all_field_names_ = set(["description"]) -EmmErrorType._all_fields_ = [("description", EmmErrorType.description.validator)] +EmmErrorType._all_field_names_ = set(['description']) +EmmErrorType._all_fields_ = [('description', EmmErrorType.description.validator)] EmmRefreshAuthTokenDetails._all_field_names_ = set([]) EmmRefreshAuthTokenDetails._all_fields_ = [] EmmRefreshAuthTokenType.description.validator = bv.String() -EmmRefreshAuthTokenType._all_field_names_ = set(["description"]) -EmmRefreshAuthTokenType._all_fields_ = [ - ("description", EmmRefreshAuthTokenType.description.validator) -] +EmmRefreshAuthTokenType._all_field_names_ = set(['description']) +EmmRefreshAuthTokenType._all_fields_ = [('description', EmmRefreshAuthTokenType.description.validator)] EmmRemoveExceptionDetails._all_field_names_ = set([]) EmmRemoveExceptionDetails._all_fields_ = [] EmmRemoveExceptionType.description.validator = bv.String() -EmmRemoveExceptionType._all_field_names_ = set(["description"]) -EmmRemoveExceptionType._all_fields_ = [ - ("description", EmmRemoveExceptionType.description.validator) -] +EmmRemoveExceptionType._all_field_names_ = set(['description']) +EmmRemoveExceptionType._all_fields_ = [('description', EmmRemoveExceptionType.description.validator)] EnabledDomainInvitesDetails._all_field_names_ = set([]) EnabledDomainInvitesDetails._all_fields_ = [] EnabledDomainInvitesType.description.validator = bv.String() -EnabledDomainInvitesType._all_field_names_ = set(["description"]) -EnabledDomainInvitesType._all_fields_ = [ - ("description", EnabledDomainInvitesType.description.validator) -] +EnabledDomainInvitesType._all_field_names_ = set(['description']) +EnabledDomainInvitesType._all_fields_ = [('description', EnabledDomainInvitesType.description.validator)] EncryptedFolderCancelTeamKeyRotationDetails.team_key_id.validator = bv.String() -EncryptedFolderCancelTeamKeyRotationDetails._all_field_names_ = set(["team_key_id"]) -EncryptedFolderCancelTeamKeyRotationDetails._all_fields_ = [ - ("team_key_id", EncryptedFolderCancelTeamKeyRotationDetails.team_key_id.validator) -] +EncryptedFolderCancelTeamKeyRotationDetails._all_field_names_ = set(['team_key_id']) +EncryptedFolderCancelTeamKeyRotationDetails._all_fields_ = [('team_key_id', EncryptedFolderCancelTeamKeyRotationDetails.team_key_id.validator)] EncryptedFolderCancelTeamKeyRotationType.description.validator = bv.String() -EncryptedFolderCancelTeamKeyRotationType._all_field_names_ = set(["description"]) -EncryptedFolderCancelTeamKeyRotationType._all_fields_ = [ - ("description", EncryptedFolderCancelTeamKeyRotationType.description.validator) -] +EncryptedFolderCancelTeamKeyRotationType._all_field_names_ = set(['description']) +EncryptedFolderCancelTeamKeyRotationType._all_fields_ = [('description', EncryptedFolderCancelTeamKeyRotationType.description.validator)] EncryptedFolderEnrollBackupKeyDetails.backup_key_id.validator = bv.String() -EncryptedFolderEnrollBackupKeyDetails._all_field_names_ = set(["backup_key_id"]) -EncryptedFolderEnrollBackupKeyDetails._all_fields_ = [ - ("backup_key_id", EncryptedFolderEnrollBackupKeyDetails.backup_key_id.validator) -] +EncryptedFolderEnrollBackupKeyDetails._all_field_names_ = set(['backup_key_id']) +EncryptedFolderEnrollBackupKeyDetails._all_fields_ = [('backup_key_id', EncryptedFolderEnrollBackupKeyDetails.backup_key_id.validator)] EncryptedFolderEnrollBackupKeyType.description.validator = bv.String() -EncryptedFolderEnrollBackupKeyType._all_field_names_ = set(["description"]) -EncryptedFolderEnrollBackupKeyType._all_fields_ = [ - ("description", EncryptedFolderEnrollBackupKeyType.description.validator) -] +EncryptedFolderEnrollBackupKeyType._all_field_names_ = set(['description']) +EncryptedFolderEnrollBackupKeyType._all_fields_ = [('description', EncryptedFolderEnrollBackupKeyType.description.validator)] EncryptedFolderEnrollClientDetails.client_key_id.validator = bv.String() -EncryptedFolderEnrollClientDetails._all_field_names_ = set(["client_key_id"]) -EncryptedFolderEnrollClientDetails._all_fields_ = [ - ("client_key_id", EncryptedFolderEnrollClientDetails.client_key_id.validator) -] +EncryptedFolderEnrollClientDetails._all_field_names_ = set(['client_key_id']) +EncryptedFolderEnrollClientDetails._all_fields_ = [('client_key_id', EncryptedFolderEnrollClientDetails.client_key_id.validator)] EncryptedFolderEnrollClientType.description.validator = bv.String() -EncryptedFolderEnrollClientType._all_field_names_ = set(["description"]) -EncryptedFolderEnrollClientType._all_fields_ = [ - ("description", EncryptedFolderEnrollClientType.description.validator) -] +EncryptedFolderEnrollClientType._all_field_names_ = set(['description']) +EncryptedFolderEnrollClientType._all_fields_ = [('description', EncryptedFolderEnrollClientType.description.validator)] EncryptedFolderEnrollTeamDetails._all_field_names_ = set([]) EncryptedFolderEnrollTeamDetails._all_fields_ = [] EncryptedFolderEnrollTeamType.description.validator = bv.String() -EncryptedFolderEnrollTeamType._all_field_names_ = set(["description"]) -EncryptedFolderEnrollTeamType._all_fields_ = [ - ("description", EncryptedFolderEnrollTeamType.description.validator) -] +EncryptedFolderEnrollTeamType._all_field_names_ = set(['description']) +EncryptedFolderEnrollTeamType._all_fields_ = [('description', EncryptedFolderEnrollTeamType.description.validator)] EncryptedFolderFinishTeamUnenrollmentDetails._all_field_names_ = set([]) EncryptedFolderFinishTeamUnenrollmentDetails._all_fields_ = [] EncryptedFolderFinishTeamUnenrollmentType.description.validator = bv.String() -EncryptedFolderFinishTeamUnenrollmentType._all_field_names_ = set(["description"]) -EncryptedFolderFinishTeamUnenrollmentType._all_fields_ = [ - ("description", EncryptedFolderFinishTeamUnenrollmentType.description.validator) -] +EncryptedFolderFinishTeamUnenrollmentType._all_field_names_ = set(['description']) +EncryptedFolderFinishTeamUnenrollmentType._all_fields_ = [('description', EncryptedFolderFinishTeamUnenrollmentType.description.validator)] EncryptedFolderInitTeamKeyRotationDetails.team_key_id.validator = bv.String() -EncryptedFolderInitTeamKeyRotationDetails._all_field_names_ = set(["team_key_id"]) -EncryptedFolderInitTeamKeyRotationDetails._all_fields_ = [ - ("team_key_id", EncryptedFolderInitTeamKeyRotationDetails.team_key_id.validator) -] +EncryptedFolderInitTeamKeyRotationDetails._all_field_names_ = set(['team_key_id']) +EncryptedFolderInitTeamKeyRotationDetails._all_fields_ = [('team_key_id', EncryptedFolderInitTeamKeyRotationDetails.team_key_id.validator)] EncryptedFolderInitTeamKeyRotationType.description.validator = bv.String() -EncryptedFolderInitTeamKeyRotationType._all_field_names_ = set(["description"]) -EncryptedFolderInitTeamKeyRotationType._all_fields_ = [ - ("description", EncryptedFolderInitTeamKeyRotationType.description.validator) -] +EncryptedFolderInitTeamKeyRotationType._all_field_names_ = set(['description']) +EncryptedFolderInitTeamKeyRotationType._all_fields_ = [('description', EncryptedFolderInitTeamKeyRotationType.description.validator)] EncryptedFolderInitTeamUnenrollmentDetails._all_field_names_ = set([]) EncryptedFolderInitTeamUnenrollmentDetails._all_fields_ = [] EncryptedFolderInitTeamUnenrollmentType.description.validator = bv.String() -EncryptedFolderInitTeamUnenrollmentType._all_field_names_ = set(["description"]) -EncryptedFolderInitTeamUnenrollmentType._all_fields_ = [ - ("description", EncryptedFolderInitTeamUnenrollmentType.description.validator) -] +EncryptedFolderInitTeamUnenrollmentType._all_field_names_ = set(['description']) +EncryptedFolderInitTeamUnenrollmentType._all_fields_ = [('description', EncryptedFolderInitTeamUnenrollmentType.description.validator)] EncryptedFolderRemoveBackupKeyDetails.backup_key_id.validator = bv.String() -EncryptedFolderRemoveBackupKeyDetails._all_field_names_ = set(["backup_key_id"]) -EncryptedFolderRemoveBackupKeyDetails._all_fields_ = [ - ("backup_key_id", EncryptedFolderRemoveBackupKeyDetails.backup_key_id.validator) -] +EncryptedFolderRemoveBackupKeyDetails._all_field_names_ = set(['backup_key_id']) +EncryptedFolderRemoveBackupKeyDetails._all_fields_ = [('backup_key_id', EncryptedFolderRemoveBackupKeyDetails.backup_key_id.validator)] EncryptedFolderRemoveBackupKeyType.description.validator = bv.String() -EncryptedFolderRemoveBackupKeyType._all_field_names_ = set(["description"]) -EncryptedFolderRemoveBackupKeyType._all_fields_ = [ - ("description", EncryptedFolderRemoveBackupKeyType.description.validator) -] +EncryptedFolderRemoveBackupKeyType._all_field_names_ = set(['description']) +EncryptedFolderRemoveBackupKeyType._all_fields_ = [('description', EncryptedFolderRemoveBackupKeyType.description.validator)] EncryptedFolderRotateTeamKeyDetails.team_key_id.validator = bv.String() -EncryptedFolderRotateTeamKeyDetails._all_field_names_ = set(["team_key_id"]) -EncryptedFolderRotateTeamKeyDetails._all_fields_ = [ - ("team_key_id", EncryptedFolderRotateTeamKeyDetails.team_key_id.validator) -] +EncryptedFolderRotateTeamKeyDetails._all_field_names_ = set(['team_key_id']) +EncryptedFolderRotateTeamKeyDetails._all_fields_ = [('team_key_id', EncryptedFolderRotateTeamKeyDetails.team_key_id.validator)] EncryptedFolderRotateTeamKeyType.description.validator = bv.String() -EncryptedFolderRotateTeamKeyType._all_field_names_ = set(["description"]) -EncryptedFolderRotateTeamKeyType._all_fields_ = [ - ("description", EncryptedFolderRotateTeamKeyType.description.validator) -] +EncryptedFolderRotateTeamKeyType._all_field_names_ = set(['description']) +EncryptedFolderRotateTeamKeyType._all_fields_ = [('description', EncryptedFolderRotateTeamKeyType.description.validator)] EncryptedFolderUnenrollClientDetails.client_key_id.validator = bv.String() -EncryptedFolderUnenrollClientDetails._all_field_names_ = set(["client_key_id"]) -EncryptedFolderUnenrollClientDetails._all_fields_ = [ - ("client_key_id", EncryptedFolderUnenrollClientDetails.client_key_id.validator) -] +EncryptedFolderUnenrollClientDetails._all_field_names_ = set(['client_key_id']) +EncryptedFolderUnenrollClientDetails._all_fields_ = [('client_key_id', EncryptedFolderUnenrollClientDetails.client_key_id.validator)] EncryptedFolderUnenrollClientType.description.validator = bv.String() -EncryptedFolderUnenrollClientType._all_field_names_ = set(["description"]) -EncryptedFolderUnenrollClientType._all_fields_ = [ - ("description", EncryptedFolderUnenrollClientType.description.validator) -] +EncryptedFolderUnenrollClientType._all_field_names_ = set(['description']) +EncryptedFolderUnenrollClientType._all_fields_ = [('description', EncryptedFolderUnenrollClientType.description.validator)] -EndedEnterpriseAdminSessionDeprecatedDetails.federation_extra_details.validator = ( - FedExtraDetails_validator -) -EndedEnterpriseAdminSessionDeprecatedDetails._all_field_names_ = set(["federation_extra_details"]) -EndedEnterpriseAdminSessionDeprecatedDetails._all_fields_ = [ - ( - "federation_extra_details", - EndedEnterpriseAdminSessionDeprecatedDetails.federation_extra_details.validator, - ) -] +EndedEnterpriseAdminSessionDeprecatedDetails.federation_extra_details.validator = FedExtraDetails_validator +EndedEnterpriseAdminSessionDeprecatedDetails._all_field_names_ = set(['federation_extra_details']) +EndedEnterpriseAdminSessionDeprecatedDetails._all_fields_ = [('federation_extra_details', EndedEnterpriseAdminSessionDeprecatedDetails.federation_extra_details.validator)] EndedEnterpriseAdminSessionDeprecatedType.description.validator = bv.String() -EndedEnterpriseAdminSessionDeprecatedType._all_field_names_ = set(["description"]) -EndedEnterpriseAdminSessionDeprecatedType._all_fields_ = [ - ("description", EndedEnterpriseAdminSessionDeprecatedType.description.validator) -] +EndedEnterpriseAdminSessionDeprecatedType._all_field_names_ = set(['description']) +EndedEnterpriseAdminSessionDeprecatedType._all_fields_ = [('description', EndedEnterpriseAdminSessionDeprecatedType.description.validator)] EndedEnterpriseAdminSessionDetails._all_field_names_ = set([]) EndedEnterpriseAdminSessionDetails._all_fields_ = [] EndedEnterpriseAdminSessionType.description.validator = bv.String() -EndedEnterpriseAdminSessionType._all_field_names_ = set(["description"]) -EndedEnterpriseAdminSessionType._all_fields_ = [ - ("description", EndedEnterpriseAdminSessionType.description.validator) -] +EndedEnterpriseAdminSessionType._all_field_names_ = set(['description']) +EndedEnterpriseAdminSessionType._all_fields_ = [('description', EndedEnterpriseAdminSessionType.description.validator)] EnforceLinkPasswordPolicy._optional_validator = bv.Void() EnforceLinkPasswordPolicy._required_validator = bv.Void() EnforceLinkPasswordPolicy._other_validator = bv.Void() EnforceLinkPasswordPolicy._tagmap = { - "optional": EnforceLinkPasswordPolicy._optional_validator, - "required": EnforceLinkPasswordPolicy._required_validator, - "other": EnforceLinkPasswordPolicy._other_validator, + 'optional': EnforceLinkPasswordPolicy._optional_validator, + 'required': EnforceLinkPasswordPolicy._required_validator, + 'other': EnforceLinkPasswordPolicy._other_validator, } -EnforceLinkPasswordPolicy.optional = EnforceLinkPasswordPolicy("optional") -EnforceLinkPasswordPolicy.required = EnforceLinkPasswordPolicy("required") -EnforceLinkPasswordPolicy.other = EnforceLinkPasswordPolicy("other") +EnforceLinkPasswordPolicy.optional = EnforceLinkPasswordPolicy('optional') +EnforceLinkPasswordPolicy.required = EnforceLinkPasswordPolicy('required') +EnforceLinkPasswordPolicy.other = EnforceLinkPasswordPolicy('other') EnterpriseSettingsLockingDetails.team_name.validator = bv.String() EnterpriseSettingsLockingDetails.settings_page_name.validator = bv.String() EnterpriseSettingsLockingDetails.previous_settings_page_locking_state.validator = bv.String() EnterpriseSettingsLockingDetails.new_settings_page_locking_state.validator = bv.String() -EnterpriseSettingsLockingDetails._all_field_names_ = set( - [ - "team_name", - "settings_page_name", - "previous_settings_page_locking_state", - "new_settings_page_locking_state", - ] -) +EnterpriseSettingsLockingDetails._all_field_names_ = set([ + 'team_name', + 'settings_page_name', + 'previous_settings_page_locking_state', + 'new_settings_page_locking_state', +]) EnterpriseSettingsLockingDetails._all_fields_ = [ - ("team_name", EnterpriseSettingsLockingDetails.team_name.validator), - ( - "settings_page_name", - EnterpriseSettingsLockingDetails.settings_page_name.validator, - ), - ( - "previous_settings_page_locking_state", - EnterpriseSettingsLockingDetails.previous_settings_page_locking_state.validator, - ), - ( - "new_settings_page_locking_state", - EnterpriseSettingsLockingDetails.new_settings_page_locking_state.validator, - ), + ('team_name', EnterpriseSettingsLockingDetails.team_name.validator), + ('settings_page_name', EnterpriseSettingsLockingDetails.settings_page_name.validator), + ('previous_settings_page_locking_state', EnterpriseSettingsLockingDetails.previous_settings_page_locking_state.validator), + ('new_settings_page_locking_state', EnterpriseSettingsLockingDetails.new_settings_page_locking_state.validator), ] EnterpriseSettingsLockingType.description.validator = bv.String() -EnterpriseSettingsLockingType._all_field_names_ = set(["description"]) -EnterpriseSettingsLockingType._all_fields_ = [ - ("description", EnterpriseSettingsLockingType.description.validator) -] +EnterpriseSettingsLockingType._all_field_names_ = set(['description']) +EnterpriseSettingsLockingType._all_fields_ = [('description', EnterpriseSettingsLockingType.description.validator)] EventCategory._admin_alerting_validator = bv.Void() EventCategory._apps_validator = bv.Void() @@ -101299,81 +96614,69 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): EventCategory._trusted_teams_validator = bv.Void() EventCategory._other_validator = bv.Void() EventCategory._tagmap = { - "admin_alerting": EventCategory._admin_alerting_validator, - "apps": EventCategory._apps_validator, - "comments": EventCategory._comments_validator, - "dash": EventCategory._dash_validator, - "data_governance": EventCategory._data_governance_validator, - "devices": EventCategory._devices_validator, - "domains": EventCategory._domains_validator, - "encryption": EventCategory._encryption_validator, - "file_operations": EventCategory._file_operations_validator, - "file_requests": EventCategory._file_requests_validator, - "groups": EventCategory._groups_validator, - "logins": EventCategory._logins_validator, - "members": EventCategory._members_validator, - "paper": EventCategory._paper_validator, - "passwords": EventCategory._passwords_validator, - "protect": EventCategory._protect_validator, - "reports": EventCategory._reports_validator, - "sharing": EventCategory._sharing_validator, - "showcase": EventCategory._showcase_validator, - "signatures": EventCategory._signatures_validator, - "sso": EventCategory._sso_validator, - "team_folders": EventCategory._team_folders_validator, - "team_policies": EventCategory._team_policies_validator, - "team_profile": EventCategory._team_profile_validator, - "tfa": EventCategory._tfa_validator, - "trusted_teams": EventCategory._trusted_teams_validator, - "other": EventCategory._other_validator, + 'admin_alerting': EventCategory._admin_alerting_validator, + 'apps': EventCategory._apps_validator, + 'comments': EventCategory._comments_validator, + 'dash': EventCategory._dash_validator, + 'data_governance': EventCategory._data_governance_validator, + 'devices': EventCategory._devices_validator, + 'domains': EventCategory._domains_validator, + 'encryption': EventCategory._encryption_validator, + 'file_operations': EventCategory._file_operations_validator, + 'file_requests': EventCategory._file_requests_validator, + 'groups': EventCategory._groups_validator, + 'logins': EventCategory._logins_validator, + 'members': EventCategory._members_validator, + 'paper': EventCategory._paper_validator, + 'passwords': EventCategory._passwords_validator, + 'protect': EventCategory._protect_validator, + 'reports': EventCategory._reports_validator, + 'sharing': EventCategory._sharing_validator, + 'showcase': EventCategory._showcase_validator, + 'signatures': EventCategory._signatures_validator, + 'sso': EventCategory._sso_validator, + 'team_folders': EventCategory._team_folders_validator, + 'team_policies': EventCategory._team_policies_validator, + 'team_profile': EventCategory._team_profile_validator, + 'tfa': EventCategory._tfa_validator, + 'trusted_teams': EventCategory._trusted_teams_validator, + 'other': EventCategory._other_validator, } -EventCategory.admin_alerting = EventCategory("admin_alerting") -EventCategory.apps = EventCategory("apps") -EventCategory.comments = EventCategory("comments") -EventCategory.dash = EventCategory("dash") -EventCategory.data_governance = EventCategory("data_governance") -EventCategory.devices = EventCategory("devices") -EventCategory.domains = EventCategory("domains") -EventCategory.encryption = EventCategory("encryption") -EventCategory.file_operations = EventCategory("file_operations") -EventCategory.file_requests = EventCategory("file_requests") -EventCategory.groups = EventCategory("groups") -EventCategory.logins = EventCategory("logins") -EventCategory.members = EventCategory("members") -EventCategory.paper = EventCategory("paper") -EventCategory.passwords = EventCategory("passwords") -EventCategory.protect = EventCategory("protect") -EventCategory.reports = EventCategory("reports") -EventCategory.sharing = EventCategory("sharing") -EventCategory.showcase = EventCategory("showcase") -EventCategory.signatures = EventCategory("signatures") -EventCategory.sso = EventCategory("sso") -EventCategory.team_folders = EventCategory("team_folders") -EventCategory.team_policies = EventCategory("team_policies") -EventCategory.team_profile = EventCategory("team_profile") -EventCategory.tfa = EventCategory("tfa") -EventCategory.trusted_teams = EventCategory("trusted_teams") -EventCategory.other = EventCategory("other") - -EventDetails._admin_alerting_alert_state_changed_details_validator = ( - AdminAlertingAlertStateChangedDetails_validator -) -EventDetails._admin_alerting_changed_alert_config_details_validator = ( - AdminAlertingChangedAlertConfigDetails_validator -) -EventDetails._admin_alerting_triggered_alert_details_validator = ( - AdminAlertingTriggeredAlertDetails_validator -) -EventDetails._ransomware_restore_process_completed_details_validator = ( - RansomwareRestoreProcessCompletedDetails_validator -) -EventDetails._ransomware_restore_process_started_details_validator = ( - RansomwareRestoreProcessStartedDetails_validator -) -EventDetails._app_blocked_by_permissions_details_validator = ( - AppBlockedByPermissionsDetails_validator -) +EventCategory.admin_alerting = EventCategory('admin_alerting') +EventCategory.apps = EventCategory('apps') +EventCategory.comments = EventCategory('comments') +EventCategory.dash = EventCategory('dash') +EventCategory.data_governance = EventCategory('data_governance') +EventCategory.devices = EventCategory('devices') +EventCategory.domains = EventCategory('domains') +EventCategory.encryption = EventCategory('encryption') +EventCategory.file_operations = EventCategory('file_operations') +EventCategory.file_requests = EventCategory('file_requests') +EventCategory.groups = EventCategory('groups') +EventCategory.logins = EventCategory('logins') +EventCategory.members = EventCategory('members') +EventCategory.paper = EventCategory('paper') +EventCategory.passwords = EventCategory('passwords') +EventCategory.protect = EventCategory('protect') +EventCategory.reports = EventCategory('reports') +EventCategory.sharing = EventCategory('sharing') +EventCategory.showcase = EventCategory('showcase') +EventCategory.signatures = EventCategory('signatures') +EventCategory.sso = EventCategory('sso') +EventCategory.team_folders = EventCategory('team_folders') +EventCategory.team_policies = EventCategory('team_policies') +EventCategory.team_profile = EventCategory('team_profile') +EventCategory.tfa = EventCategory('tfa') +EventCategory.trusted_teams = EventCategory('trusted_teams') +EventCategory.other = EventCategory('other') + +EventDetails._admin_alerting_alert_state_changed_details_validator = AdminAlertingAlertStateChangedDetails_validator +EventDetails._admin_alerting_changed_alert_config_details_validator = AdminAlertingChangedAlertConfigDetails_validator +EventDetails._admin_alerting_triggered_alert_details_validator = AdminAlertingTriggeredAlertDetails_validator +EventDetails._ransomware_restore_process_completed_details_validator = RansomwareRestoreProcessCompletedDetails_validator +EventDetails._ransomware_restore_process_started_details_validator = RansomwareRestoreProcessStartedDetails_validator +EventDetails._app_blocked_by_permissions_details_validator = AppBlockedByPermissionsDetails_validator EventDetails._app_link_team_details_validator = AppLinkTeamDetails_validator EventDetails._app_link_user_details_validator = AppLinkUserDetails_validator EventDetails._app_unlink_team_details_validator = AppUnlinkTeamDetails_validator @@ -101381,272 +96684,118 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): EventDetails._integration_connected_details_validator = IntegrationConnectedDetails_validator EventDetails._integration_disconnected_details_validator = IntegrationDisconnectedDetails_validator EventDetails._file_add_comment_details_validator = FileAddCommentDetails_validator -EventDetails._file_change_comment_subscription_details_validator = ( - FileChangeCommentSubscriptionDetails_validator -) +EventDetails._file_change_comment_subscription_details_validator = FileChangeCommentSubscriptionDetails_validator EventDetails._file_delete_comment_details_validator = FileDeleteCommentDetails_validator EventDetails._file_edit_comment_details_validator = FileEditCommentDetails_validator EventDetails._file_like_comment_details_validator = FileLikeCommentDetails_validator EventDetails._file_resolve_comment_details_validator = FileResolveCommentDetails_validator EventDetails._file_unlike_comment_details_validator = FileUnlikeCommentDetails_validator EventDetails._file_unresolve_comment_details_validator = FileUnresolveCommentDetails_validator -EventDetails._dash_added_comment_to_stack_details_validator = ( - DashAddedCommentToStackDetails_validator -) +EventDetails._dash_added_comment_to_stack_details_validator = DashAddedCommentToStackDetails_validator EventDetails._dash_added_connector_details_validator = DashAddedConnectorDetails_validator EventDetails._dash_added_link_to_stack_details_validator = DashAddedLinkToStackDetails_validator -EventDetails._dash_added_team_email_domain_allowlist_details_validator = ( - DashAddedTeamEmailDomainAllowlistDetails_validator -) -EventDetails._dash_admin_added_org_wide_connector_details_validator = ( - DashAdminAddedOrgWideConnectorDetails_validator -) -EventDetails._dash_admin_disabled_connector_details_validator = ( - DashAdminDisabledConnectorDetails_validator -) -EventDetails._dash_admin_enabled_connector_details_validator = ( - DashAdminEnabledConnectorDetails_validator -) -EventDetails._dash_admin_removed_org_wide_connector_details_validator = ( - DashAdminRemovedOrgWideConnectorDetails_validator -) +EventDetails._dash_added_team_email_domain_allowlist_details_validator = DashAddedTeamEmailDomainAllowlistDetails_validator +EventDetails._dash_admin_added_org_wide_connector_details_validator = DashAdminAddedOrgWideConnectorDetails_validator +EventDetails._dash_admin_disabled_connector_details_validator = DashAdminDisabledConnectorDetails_validator +EventDetails._dash_admin_enabled_connector_details_validator = DashAdminEnabledConnectorDetails_validator +EventDetails._dash_admin_removed_org_wide_connector_details_validator = DashAdminRemovedOrgWideConnectorDetails_validator EventDetails._dash_archived_stack_details_validator = DashArchivedStackDetails_validator -EventDetails._dash_changed_audience_of_shared_link_to_stack_details_validator = ( - DashChangedAudienceOfSharedLinkToStackDetails_validator -) +EventDetails._dash_changed_audience_of_shared_link_to_stack_details_validator = DashChangedAudienceOfSharedLinkToStackDetails_validator EventDetails._dash_cloned_stack_details_validator = DashClonedStackDetails_validator EventDetails._dash_connector_tools_call_details_validator = DashConnectorToolsCallDetails_validator EventDetails._dash_created_stack_details_validator = DashCreatedStackDetails_validator -EventDetails._dash_deleted_comment_from_stack_details_validator = ( - DashDeletedCommentFromStackDetails_validator -) +EventDetails._dash_deleted_comment_from_stack_details_validator = DashDeletedCommentFromStackDetails_validator EventDetails._dash_deleted_stack_details_validator = DashDeletedStackDetails_validator -EventDetails._dash_edited_comment_in_stack_details_validator = ( - DashEditedCommentInStackDetails_validator -) -EventDetails._dash_external_user_opened_stack_details_validator = ( - DashExternalUserOpenedStackDetails_validator -) -EventDetails._dash_first_launched_desktop_details_validator = ( - DashFirstLaunchedDesktopDetails_validator -) -EventDetails._dash_first_launched_extension_details_validator = ( - DashFirstLaunchedExtensionDetails_validator -) -EventDetails._dash_first_launched_web_start_page_details_validator = ( - DashFirstLaunchedWebStartPageDetails_validator -) -EventDetails._dash_opened_shared_link_to_stack_details_validator = ( - DashOpenedSharedLinkToStackDetails_validator -) +EventDetails._dash_edited_comment_in_stack_details_validator = DashEditedCommentInStackDetails_validator +EventDetails._dash_external_user_opened_stack_details_validator = DashExternalUserOpenedStackDetails_validator +EventDetails._dash_first_launched_desktop_details_validator = DashFirstLaunchedDesktopDetails_validator +EventDetails._dash_first_launched_extension_details_validator = DashFirstLaunchedExtensionDetails_validator +EventDetails._dash_first_launched_web_start_page_details_validator = DashFirstLaunchedWebStartPageDetails_validator +EventDetails._dash_opened_shared_link_to_stack_details_validator = DashOpenedSharedLinkToStackDetails_validator EventDetails._dash_opened_stack_details_validator = DashOpenedStackDetails_validator -EventDetails._dash_preview_opt_out_status_changed_details_validator = ( - DashPreviewOptOutStatusChangedDetails_validator -) +EventDetails._dash_preview_opt_out_status_changed_details_validator = DashPreviewOptOutStatusChangedDetails_validator EventDetails._dash_removed_connector_details_validator = DashRemovedConnectorDetails_validator -EventDetails._dash_removed_link_from_stack_details_validator = ( - DashRemovedLinkFromStackDetails_validator -) -EventDetails._dash_removed_shared_link_to_stack_details_validator = ( - DashRemovedSharedLinkToStackDetails_validator -) -EventDetails._dash_removed_team_email_domain_allowlist_details_validator = ( - DashRemovedTeamEmailDomainAllowlistDetails_validator -) +EventDetails._dash_removed_link_from_stack_details_validator = DashRemovedLinkFromStackDetails_validator +EventDetails._dash_removed_shared_link_to_stack_details_validator = DashRemovedSharedLinkToStackDetails_validator +EventDetails._dash_removed_team_email_domain_allowlist_details_validator = DashRemovedTeamEmailDomainAllowlistDetails_validator EventDetails._dash_renamed_stack_details_validator = DashRenamedStackDetails_validator EventDetails._dash_shared_link_to_stack_details_validator = DashSharedLinkToStackDetails_validator EventDetails._dash_unarchived_stack_details_validator = DashUnarchivedStackDetails_validator EventDetails._dash_viewed_company_stack_details_validator = DashViewedCompanyStackDetails_validator -EventDetails._dash_viewed_external_ai_activity_report_details_validator = ( - DashViewedExternalAiActivityReportDetails_validator -) -EventDetails._governance_policy_add_folders_details_validator = ( - GovernancePolicyAddFoldersDetails_validator -) -EventDetails._governance_policy_add_folder_failed_details_validator = ( - GovernancePolicyAddFolderFailedDetails_validator -) -EventDetails._governance_policy_content_disposed_details_validator = ( - GovernancePolicyContentDisposedDetails_validator -) +EventDetails._dash_viewed_external_ai_activity_report_details_validator = DashViewedExternalAiActivityReportDetails_validator +EventDetails._governance_policy_add_folders_details_validator = GovernancePolicyAddFoldersDetails_validator +EventDetails._governance_policy_add_folder_failed_details_validator = GovernancePolicyAddFolderFailedDetails_validator +EventDetails._governance_policy_content_disposed_details_validator = GovernancePolicyContentDisposedDetails_validator EventDetails._governance_policy_create_details_validator = GovernancePolicyCreateDetails_validator EventDetails._governance_policy_delete_details_validator = GovernancePolicyDeleteDetails_validator -EventDetails._governance_policy_edit_details_details_validator = ( - GovernancePolicyEditDetailsDetails_validator -) -EventDetails._governance_policy_edit_duration_details_validator = ( - GovernancePolicyEditDurationDetails_validator -) -EventDetails._governance_policy_export_created_details_validator = ( - GovernancePolicyExportCreatedDetails_validator -) -EventDetails._governance_policy_export_removed_details_validator = ( - GovernancePolicyExportRemovedDetails_validator -) -EventDetails._governance_policy_remove_folders_details_validator = ( - GovernancePolicyRemoveFoldersDetails_validator -) -EventDetails._governance_policy_report_created_details_validator = ( - GovernancePolicyReportCreatedDetails_validator -) -EventDetails._governance_policy_zip_part_downloaded_details_validator = ( - GovernancePolicyZipPartDownloadedDetails_validator -) -EventDetails._legal_holds_activate_a_hold_details_validator = ( - LegalHoldsActivateAHoldDetails_validator -) +EventDetails._governance_policy_edit_details_details_validator = GovernancePolicyEditDetailsDetails_validator +EventDetails._governance_policy_edit_duration_details_validator = GovernancePolicyEditDurationDetails_validator +EventDetails._governance_policy_export_created_details_validator = GovernancePolicyExportCreatedDetails_validator +EventDetails._governance_policy_export_removed_details_validator = GovernancePolicyExportRemovedDetails_validator +EventDetails._governance_policy_remove_folders_details_validator = GovernancePolicyRemoveFoldersDetails_validator +EventDetails._governance_policy_report_created_details_validator = GovernancePolicyReportCreatedDetails_validator +EventDetails._governance_policy_zip_part_downloaded_details_validator = GovernancePolicyZipPartDownloadedDetails_validator +EventDetails._legal_holds_activate_a_hold_details_validator = LegalHoldsActivateAHoldDetails_validator EventDetails._legal_holds_add_members_details_validator = LegalHoldsAddMembersDetails_validator -EventDetails._legal_holds_change_hold_details_details_validator = ( - LegalHoldsChangeHoldDetailsDetails_validator -) -EventDetails._legal_holds_change_hold_name_details_validator = ( - LegalHoldsChangeHoldNameDetails_validator -) +EventDetails._legal_holds_change_hold_details_details_validator = LegalHoldsChangeHoldDetailsDetails_validator +EventDetails._legal_holds_change_hold_name_details_validator = LegalHoldsChangeHoldNameDetails_validator EventDetails._legal_holds_export_a_hold_details_validator = LegalHoldsExportAHoldDetails_validator -EventDetails._legal_holds_export_cancelled_details_validator = ( - LegalHoldsExportCancelledDetails_validator -) -EventDetails._legal_holds_export_downloaded_details_validator = ( - LegalHoldsExportDownloadedDetails_validator -) -EventDetails._legal_holds_export_removed_details_validator = ( - LegalHoldsExportRemovedDetails_validator -) +EventDetails._legal_holds_export_cancelled_details_validator = LegalHoldsExportCancelledDetails_validator +EventDetails._legal_holds_export_downloaded_details_validator = LegalHoldsExportDownloadedDetails_validator +EventDetails._legal_holds_export_removed_details_validator = LegalHoldsExportRemovedDetails_validator EventDetails._legal_holds_release_a_hold_details_validator = LegalHoldsReleaseAHoldDetails_validator -EventDetails._legal_holds_remove_members_details_validator = ( - LegalHoldsRemoveMembersDetails_validator -) +EventDetails._legal_holds_remove_members_details_validator = LegalHoldsRemoveMembersDetails_validator EventDetails._legal_holds_report_a_hold_details_validator = LegalHoldsReportAHoldDetails_validator EventDetails._device_change_ip_desktop_details_validator = DeviceChangeIpDesktopDetails_validator EventDetails._device_change_ip_mobile_details_validator = DeviceChangeIpMobileDetails_validator EventDetails._device_change_ip_web_details_validator = DeviceChangeIpWebDetails_validator -EventDetails._device_delete_on_unlink_fail_details_validator = ( - DeviceDeleteOnUnlinkFailDetails_validator -) -EventDetails._device_delete_on_unlink_success_details_validator = ( - DeviceDeleteOnUnlinkSuccessDetails_validator -) +EventDetails._device_delete_on_unlink_fail_details_validator = DeviceDeleteOnUnlinkFailDetails_validator +EventDetails._device_delete_on_unlink_success_details_validator = DeviceDeleteOnUnlinkSuccessDetails_validator EventDetails._device_link_fail_details_validator = DeviceLinkFailDetails_validator EventDetails._device_link_success_details_validator = DeviceLinkSuccessDetails_validator -EventDetails._device_management_disabled_details_validator = ( - DeviceManagementDisabledDetails_validator -) +EventDetails._device_management_disabled_details_validator = DeviceManagementDisabledDetails_validator EventDetails._device_management_enabled_details_validator = DeviceManagementEnabledDetails_validator -EventDetails._device_sync_backup_status_changed_details_validator = ( - DeviceSyncBackupStatusChangedDetails_validator -) +EventDetails._device_sync_backup_status_changed_details_validator = DeviceSyncBackupStatusChangedDetails_validator EventDetails._device_unlink_details_validator = DeviceUnlinkDetails_validator -EventDetails._dropbox_passwords_exported_details_validator = ( - DropboxPasswordsExportedDetails_validator -) -EventDetails._dropbox_passwords_new_device_enrolled_details_validator = ( - DropboxPasswordsNewDeviceEnrolledDetails_validator -) +EventDetails._dropbox_passwords_exported_details_validator = DropboxPasswordsExportedDetails_validator +EventDetails._dropbox_passwords_new_device_enrolled_details_validator = DropboxPasswordsNewDeviceEnrolledDetails_validator EventDetails._emm_refresh_auth_token_details_validator = EmmRefreshAuthTokenDetails_validator -EventDetails._external_drive_backup_eligibility_status_checked_details_validator = ( - ExternalDriveBackupEligibilityStatusCheckedDetails_validator -) -EventDetails._external_drive_backup_status_changed_details_validator = ( - ExternalDriveBackupStatusChangedDetails_validator -) -EventDetails._account_capture_change_availability_details_validator = ( - AccountCaptureChangeAvailabilityDetails_validator -) -EventDetails._account_capture_migrate_account_details_validator = ( - AccountCaptureMigrateAccountDetails_validator -) -EventDetails._account_capture_notification_emails_sent_details_validator = ( - AccountCaptureNotificationEmailsSentDetails_validator -) -EventDetails._account_capture_relinquish_account_details_validator = ( - AccountCaptureRelinquishAccountDetails_validator -) +EventDetails._external_drive_backup_eligibility_status_checked_details_validator = ExternalDriveBackupEligibilityStatusCheckedDetails_validator +EventDetails._external_drive_backup_status_changed_details_validator = ExternalDriveBackupStatusChangedDetails_validator +EventDetails._account_capture_change_availability_details_validator = AccountCaptureChangeAvailabilityDetails_validator +EventDetails._account_capture_migrate_account_details_validator = AccountCaptureMigrateAccountDetails_validator +EventDetails._account_capture_notification_emails_sent_details_validator = AccountCaptureNotificationEmailsSentDetails_validator +EventDetails._account_capture_relinquish_account_details_validator = AccountCaptureRelinquishAccountDetails_validator EventDetails._disabled_domain_invites_details_validator = DisabledDomainInvitesDetails_validator -EventDetails._domain_invites_approve_request_to_join_team_details_validator = ( - DomainInvitesApproveRequestToJoinTeamDetails_validator -) -EventDetails._domain_invites_decline_request_to_join_team_details_validator = ( - DomainInvitesDeclineRequestToJoinTeamDetails_validator -) -EventDetails._domain_invites_email_existing_users_details_validator = ( - DomainInvitesEmailExistingUsersDetails_validator -) -EventDetails._domain_invites_request_to_join_team_details_validator = ( - DomainInvitesRequestToJoinTeamDetails_validator -) -EventDetails._domain_invites_set_invite_new_user_pref_to_no_details_validator = ( - DomainInvitesSetInviteNewUserPrefToNoDetails_validator -) -EventDetails._domain_invites_set_invite_new_user_pref_to_yes_details_validator = ( - DomainInvitesSetInviteNewUserPrefToYesDetails_validator -) -EventDetails._domain_verification_add_domain_fail_details_validator = ( - DomainVerificationAddDomainFailDetails_validator -) -EventDetails._domain_verification_add_domain_success_details_validator = ( - DomainVerificationAddDomainSuccessDetails_validator -) -EventDetails._domain_verification_remove_domain_details_validator = ( - DomainVerificationRemoveDomainDetails_validator -) +EventDetails._domain_invites_approve_request_to_join_team_details_validator = DomainInvitesApproveRequestToJoinTeamDetails_validator +EventDetails._domain_invites_decline_request_to_join_team_details_validator = DomainInvitesDeclineRequestToJoinTeamDetails_validator +EventDetails._domain_invites_email_existing_users_details_validator = DomainInvitesEmailExistingUsersDetails_validator +EventDetails._domain_invites_request_to_join_team_details_validator = DomainInvitesRequestToJoinTeamDetails_validator +EventDetails._domain_invites_set_invite_new_user_pref_to_no_details_validator = DomainInvitesSetInviteNewUserPrefToNoDetails_validator +EventDetails._domain_invites_set_invite_new_user_pref_to_yes_details_validator = DomainInvitesSetInviteNewUserPrefToYesDetails_validator +EventDetails._domain_verification_add_domain_fail_details_validator = DomainVerificationAddDomainFailDetails_validator +EventDetails._domain_verification_add_domain_success_details_validator = DomainVerificationAddDomainSuccessDetails_validator +EventDetails._domain_verification_remove_domain_details_validator = DomainVerificationRemoveDomainDetails_validator EventDetails._enabled_domain_invites_details_validator = EnabledDomainInvitesDetails_validator -EventDetails._encrypted_folder_cancel_team_key_rotation_details_validator = ( - EncryptedFolderCancelTeamKeyRotationDetails_validator -) -EventDetails._encrypted_folder_enroll_backup_key_details_validator = ( - EncryptedFolderEnrollBackupKeyDetails_validator -) -EventDetails._encrypted_folder_enroll_client_details_validator = ( - EncryptedFolderEnrollClientDetails_validator -) -EventDetails._encrypted_folder_enroll_team_details_validator = ( - EncryptedFolderEnrollTeamDetails_validator -) -EventDetails._encrypted_folder_finish_team_unenrollment_details_validator = ( - EncryptedFolderFinishTeamUnenrollmentDetails_validator -) -EventDetails._encrypted_folder_init_team_key_rotation_details_validator = ( - EncryptedFolderInitTeamKeyRotationDetails_validator -) -EventDetails._encrypted_folder_init_team_unenrollment_details_validator = ( - EncryptedFolderInitTeamUnenrollmentDetails_validator -) -EventDetails._encrypted_folder_remove_backup_key_details_validator = ( - EncryptedFolderRemoveBackupKeyDetails_validator -) -EventDetails._encrypted_folder_rotate_team_key_details_validator = ( - EncryptedFolderRotateTeamKeyDetails_validator -) -EventDetails._encrypted_folder_unenroll_client_details_validator = ( - EncryptedFolderUnenrollClientDetails_validator -) -EventDetails._team_encryption_key_activate_key_details_validator = ( - TeamEncryptionKeyActivateKeyDetails_validator -) -EventDetails._team_encryption_key_cancel_key_deletion_details_validator = ( - TeamEncryptionKeyCancelKeyDeletionDetails_validator -) -EventDetails._team_encryption_key_create_key_details_validator = ( - TeamEncryptionKeyCreateKeyDetails_validator -) -EventDetails._team_encryption_key_deactivate_key_details_validator = ( - TeamEncryptionKeyDeactivateKeyDetails_validator -) -EventDetails._team_encryption_key_delete_key_details_validator = ( - TeamEncryptionKeyDeleteKeyDetails_validator -) -EventDetails._team_encryption_key_disable_key_details_validator = ( - TeamEncryptionKeyDisableKeyDetails_validator -) -EventDetails._team_encryption_key_enable_key_details_validator = ( - TeamEncryptionKeyEnableKeyDetails_validator -) -EventDetails._team_encryption_key_rotate_key_details_validator = ( - TeamEncryptionKeyRotateKeyDetails_validator -) -EventDetails._team_encryption_key_schedule_key_deletion_details_validator = ( - TeamEncryptionKeyScheduleKeyDeletionDetails_validator -) +EventDetails._encrypted_folder_cancel_team_key_rotation_details_validator = EncryptedFolderCancelTeamKeyRotationDetails_validator +EventDetails._encrypted_folder_enroll_backup_key_details_validator = EncryptedFolderEnrollBackupKeyDetails_validator +EventDetails._encrypted_folder_enroll_client_details_validator = EncryptedFolderEnrollClientDetails_validator +EventDetails._encrypted_folder_enroll_team_details_validator = EncryptedFolderEnrollTeamDetails_validator +EventDetails._encrypted_folder_finish_team_unenrollment_details_validator = EncryptedFolderFinishTeamUnenrollmentDetails_validator +EventDetails._encrypted_folder_init_team_key_rotation_details_validator = EncryptedFolderInitTeamKeyRotationDetails_validator +EventDetails._encrypted_folder_init_team_unenrollment_details_validator = EncryptedFolderInitTeamUnenrollmentDetails_validator +EventDetails._encrypted_folder_remove_backup_key_details_validator = EncryptedFolderRemoveBackupKeyDetails_validator +EventDetails._encrypted_folder_rotate_team_key_details_validator = EncryptedFolderRotateTeamKeyDetails_validator +EventDetails._encrypted_folder_unenroll_client_details_validator = EncryptedFolderUnenrollClientDetails_validator +EventDetails._team_encryption_key_activate_key_details_validator = TeamEncryptionKeyActivateKeyDetails_validator +EventDetails._team_encryption_key_cancel_key_deletion_details_validator = TeamEncryptionKeyCancelKeyDeletionDetails_validator +EventDetails._team_encryption_key_create_key_details_validator = TeamEncryptionKeyCreateKeyDetails_validator +EventDetails._team_encryption_key_deactivate_key_details_validator = TeamEncryptionKeyDeactivateKeyDetails_validator +EventDetails._team_encryption_key_delete_key_details_validator = TeamEncryptionKeyDeleteKeyDetails_validator +EventDetails._team_encryption_key_disable_key_details_validator = TeamEncryptionKeyDisableKeyDetails_validator +EventDetails._team_encryption_key_enable_key_details_validator = TeamEncryptionKeyEnableKeyDetails_validator +EventDetails._team_encryption_key_rotate_key_details_validator = TeamEncryptionKeyRotateKeyDetails_validator +EventDetails._team_encryption_key_schedule_key_deletion_details_validator = TeamEncryptionKeyScheduleKeyDeletionDetails_validator EventDetails._apply_naming_convention_details_validator = ApplyNamingConventionDetails_validator EventDetails._create_folder_details_validator = CreateFolderDetails_validator EventDetails._file_add_details_validator = FileAddDetails_validator @@ -101656,9 +96805,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): EventDetails._file_download_details_validator = FileDownloadDetails_validator EventDetails._file_edit_details_validator = FileEditDetails_validator EventDetails._file_get_copy_reference_details_validator = FileGetCopyReferenceDetails_validator -EventDetails._file_locking_lock_status_changed_details_validator = ( - FileLockingLockStatusChangedDetails_validator -) +EventDetails._file_locking_lock_status_changed_details_validator = FileLockingLockStatusChangedDetails_validator EventDetails._file_move_details_validator = FileMoveDetails_validator EventDetails._file_permanently_delete_details_validator = FilePermanentlyDeleteDetails_validator EventDetails._file_preview_details_validator = FilePreviewDetails_validator @@ -101667,32 +96814,20 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): EventDetails._file_revert_details_validator = FileRevertDetails_validator EventDetails._file_rollback_changes_details_validator = FileRollbackChangesDetails_validator EventDetails._file_save_copy_reference_details_validator = FileSaveCopyReferenceDetails_validator -EventDetails._folder_overview_description_changed_details_validator = ( - FolderOverviewDescriptionChangedDetails_validator -) -EventDetails._folder_overview_item_pinned_details_validator = ( - FolderOverviewItemPinnedDetails_validator -) -EventDetails._folder_overview_item_unpinned_details_validator = ( - FolderOverviewItemUnpinnedDetails_validator -) +EventDetails._folder_overview_description_changed_details_validator = FolderOverviewDescriptionChangedDetails_validator +EventDetails._folder_overview_item_pinned_details_validator = FolderOverviewItemPinnedDetails_validator +EventDetails._folder_overview_item_unpinned_details_validator = FolderOverviewItemUnpinnedDetails_validator EventDetails._media_hub_file_downloaded_details_validator = MediaHubFileDownloadedDetails_validator EventDetails._object_label_added_details_validator = ObjectLabelAddedDetails_validator EventDetails._object_label_removed_details_validator = ObjectLabelRemovedDetails_validator -EventDetails._object_label_updated_value_details_validator = ( - ObjectLabelUpdatedValueDetails_validator -) +EventDetails._object_label_updated_value_details_validator = ObjectLabelUpdatedValueDetails_validator EventDetails._organize_folder_with_tidy_details_validator = OrganizeFolderWithTidyDetails_validator EventDetails._replay_file_delete_details_validator = ReplayFileDeleteDetails_validator EventDetails._replay_file_downloaded_details_validator = ReplayFileDownloadedDetails_validator -EventDetails._replay_team_project_created_details_validator = ( - ReplayTeamProjectCreatedDetails_validator -) +EventDetails._replay_team_project_created_details_validator = ReplayTeamProjectCreatedDetails_validator EventDetails._rewind_folder_details_validator = RewindFolderDetails_validator EventDetails._undo_naming_convention_details_validator = UndoNamingConventionDetails_validator -EventDetails._undo_organize_folder_with_tidy_details_validator = ( - UndoOrganizeFolderWithTidyDetails_validator -) +EventDetails._undo_organize_folder_with_tidy_details_validator = UndoOrganizeFolderWithTidyDetails_validator EventDetails._user_tags_added_details_validator = UserTagsAddedDetails_validator EventDetails._user_tags_removed_details_validator = UserTagsRemovedDetails_validator EventDetails._email_ingest_receive_file_details_validator = EmailIngestReceiveFileDetails_validator @@ -101705,16 +96840,12 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): EventDetails._group_add_external_id_details_validator = GroupAddExternalIdDetails_validator EventDetails._group_add_member_details_validator = GroupAddMemberDetails_validator EventDetails._group_change_external_id_details_validator = GroupChangeExternalIdDetails_validator -EventDetails._group_change_management_type_details_validator = ( - GroupChangeManagementTypeDetails_validator -) +EventDetails._group_change_management_type_details_validator = GroupChangeManagementTypeDetails_validator EventDetails._group_change_member_role_details_validator = GroupChangeMemberRoleDetails_validator EventDetails._group_create_details_validator = GroupCreateDetails_validator EventDetails._group_delete_details_validator = GroupDeleteDetails_validator EventDetails._group_description_updated_details_validator = GroupDescriptionUpdatedDetails_validator -EventDetails._group_external_sharing_setting_override_changed_details_validator = ( - GroupExternalSharingSettingOverrideChangedDetails_validator -) +EventDetails._group_external_sharing_setting_override_changed_details_validator = GroupExternalSharingSettingOverrideChangedDetails_validator EventDetails._group_join_policy_updated_details_validator = GroupJoinPolicyUpdatedDetails_validator EventDetails._group_moved_details_validator = GroupMovedDetails_validator EventDetails._group_remove_external_id_details_validator = GroupRemoveExternalIdDetails_validator @@ -101722,29 +96853,19 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): EventDetails._group_rename_details_validator = GroupRenameDetails_validator EventDetails._account_lock_or_unlocked_details_validator = AccountLockOrUnlockedDetails_validator EventDetails._emm_error_details_validator = EmmErrorDetails_validator -EventDetails._guest_admin_signed_in_via_trusted_teams_details_validator = ( - GuestAdminSignedInViaTrustedTeamsDetails_validator -) -EventDetails._guest_admin_signed_out_via_trusted_teams_details_validator = ( - GuestAdminSignedOutViaTrustedTeamsDetails_validator -) +EventDetails._guest_admin_signed_in_via_trusted_teams_details_validator = GuestAdminSignedInViaTrustedTeamsDetails_validator +EventDetails._guest_admin_signed_out_via_trusted_teams_details_validator = GuestAdminSignedOutViaTrustedTeamsDetails_validator EventDetails._login_fail_details_validator = LoginFailDetails_validator EventDetails._login_success_details_validator = LoginSuccessDetails_validator EventDetails._logout_details_validator = LogoutDetails_validator -EventDetails._reseller_support_session_end_details_validator = ( - ResellerSupportSessionEndDetails_validator -) -EventDetails._reseller_support_session_start_details_validator = ( - ResellerSupportSessionStartDetails_validator -) +EventDetails._reseller_support_session_end_details_validator = ResellerSupportSessionEndDetails_validator +EventDetails._reseller_support_session_start_details_validator = ResellerSupportSessionStartDetails_validator EventDetails._sign_in_as_session_end_details_validator = SignInAsSessionEndDetails_validator EventDetails._sign_in_as_session_start_details_validator = SignInAsSessionStartDetails_validator EventDetails._sso_error_details_validator = SsoErrorDetails_validator EventDetails._addon_assigned_details_validator = AddonAssignedDetails_validator EventDetails._addon_removed_details_validator = AddonRemovedDetails_validator -EventDetails._backup_admin_invitation_sent_details_validator = ( - BackupAdminInvitationSentDetails_validator -) +EventDetails._backup_admin_invitation_sent_details_validator = BackupAdminInvitationSentDetails_validator EventDetails._backup_invitation_opened_details_validator = BackupInvitationOpenedDetails_validator EventDetails._create_team_invite_link_details_validator = CreateTeamInviteLinkDetails_validator EventDetails._delete_team_invite_link_details_validator = DeleteTeamInviteLinkDetails_validator @@ -101753,55 +96874,27 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): EventDetails._member_change_admin_role_details_validator = MemberChangeAdminRoleDetails_validator EventDetails._member_change_email_details_validator = MemberChangeEmailDetails_validator EventDetails._member_change_external_id_details_validator = MemberChangeExternalIdDetails_validator -EventDetails._member_change_membership_type_details_validator = ( - MemberChangeMembershipTypeDetails_validator -) +EventDetails._member_change_membership_type_details_validator = MemberChangeMembershipTypeDetails_validator EventDetails._member_change_name_details_validator = MemberChangeNameDetails_validator -EventDetails._member_change_reseller_role_details_validator = ( - MemberChangeResellerRoleDetails_validator -) +EventDetails._member_change_reseller_role_details_validator = MemberChangeResellerRoleDetails_validator EventDetails._member_change_status_details_validator = MemberChangeStatusDetails_validator -EventDetails._member_delete_manual_contacts_details_validator = ( - MemberDeleteManualContactsDetails_validator -) -EventDetails._member_delete_profile_photo_details_validator = ( - MemberDeleteProfilePhotoDetails_validator -) -EventDetails._member_permanently_delete_account_contents_details_validator = ( - MemberPermanentlyDeleteAccountContentsDetails_validator -) +EventDetails._member_delete_manual_contacts_details_validator = MemberDeleteManualContactsDetails_validator +EventDetails._member_delete_profile_photo_details_validator = MemberDeleteProfilePhotoDetails_validator +EventDetails._member_permanently_delete_account_contents_details_validator = MemberPermanentlyDeleteAccountContentsDetails_validator EventDetails._member_remove_external_id_details_validator = MemberRemoveExternalIdDetails_validator EventDetails._member_set_profile_photo_details_validator = MemberSetProfilePhotoDetails_validator -EventDetails._member_space_limits_add_custom_quota_details_validator = ( - MemberSpaceLimitsAddCustomQuotaDetails_validator -) -EventDetails._member_space_limits_change_custom_quota_details_validator = ( - MemberSpaceLimitsChangeCustomQuotaDetails_validator -) -EventDetails._member_space_limits_change_status_details_validator = ( - MemberSpaceLimitsChangeStatusDetails_validator -) -EventDetails._member_space_limits_remove_custom_quota_details_validator = ( - MemberSpaceLimitsRemoveCustomQuotaDetails_validator -) +EventDetails._member_space_limits_add_custom_quota_details_validator = MemberSpaceLimitsAddCustomQuotaDetails_validator +EventDetails._member_space_limits_change_custom_quota_details_validator = MemberSpaceLimitsChangeCustomQuotaDetails_validator +EventDetails._member_space_limits_change_status_details_validator = MemberSpaceLimitsChangeStatusDetails_validator +EventDetails._member_space_limits_remove_custom_quota_details_validator = MemberSpaceLimitsRemoveCustomQuotaDetails_validator EventDetails._member_suggest_details_validator = MemberSuggestDetails_validator -EventDetails._member_transfer_account_contents_details_validator = ( - MemberTransferAccountContentsDetails_validator -) -EventDetails._pending_secondary_email_added_details_validator = ( - PendingSecondaryEmailAddedDetails_validator -) -EventDetails._product_assigned_to_member_details_validator = ( - ProductAssignedToMemberDetails_validator -) -EventDetails._product_removed_from_member_details_validator = ( - ProductRemovedFromMemberDetails_validator -) +EventDetails._member_transfer_account_contents_details_validator = MemberTransferAccountContentsDetails_validator +EventDetails._pending_secondary_email_added_details_validator = PendingSecondaryEmailAddedDetails_validator +EventDetails._product_assigned_to_member_details_validator = ProductAssignedToMemberDetails_validator +EventDetails._product_removed_from_member_details_validator = ProductRemovedFromMemberDetails_validator EventDetails._secondary_email_deleted_details_validator = SecondaryEmailDeletedDetails_validator EventDetails._secondary_email_verified_details_validator = SecondaryEmailVerifiedDetails_validator -EventDetails._secondary_mails_policy_changed_details_validator = ( - SecondaryMailsPolicyChangedDetails_validator -) +EventDetails._secondary_mails_policy_changed_details_validator = SecondaryMailsPolicyChangedDetails_validator EventDetails._binder_add_page_details_validator = BinderAddPageDetails_validator EventDetails._binder_add_section_details_validator = BinderAddSectionDetails_validator EventDetails._binder_remove_page_details_validator = BinderRemovePageDetails_validator @@ -101811,32 +96904,18 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): EventDetails._binder_reorder_page_details_validator = BinderReorderPageDetails_validator EventDetails._binder_reorder_section_details_validator = BinderReorderSectionDetails_validator EventDetails._paper_content_add_member_details_validator = PaperContentAddMemberDetails_validator -EventDetails._paper_content_add_to_folder_details_validator = ( - PaperContentAddToFolderDetails_validator -) +EventDetails._paper_content_add_to_folder_details_validator = PaperContentAddToFolderDetails_validator EventDetails._paper_content_archive_details_validator = PaperContentArchiveDetails_validator EventDetails._paper_content_create_details_validator = PaperContentCreateDetails_validator -EventDetails._paper_content_permanently_delete_details_validator = ( - PaperContentPermanentlyDeleteDetails_validator -) -EventDetails._paper_content_remove_from_folder_details_validator = ( - PaperContentRemoveFromFolderDetails_validator -) -EventDetails._paper_content_remove_member_details_validator = ( - PaperContentRemoveMemberDetails_validator -) +EventDetails._paper_content_permanently_delete_details_validator = PaperContentPermanentlyDeleteDetails_validator +EventDetails._paper_content_remove_from_folder_details_validator = PaperContentRemoveFromFolderDetails_validator +EventDetails._paper_content_remove_member_details_validator = PaperContentRemoveMemberDetails_validator EventDetails._paper_content_rename_details_validator = PaperContentRenameDetails_validator EventDetails._paper_content_restore_details_validator = PaperContentRestoreDetails_validator EventDetails._paper_doc_add_comment_details_validator = PaperDocAddCommentDetails_validator -EventDetails._paper_doc_change_member_role_details_validator = ( - PaperDocChangeMemberRoleDetails_validator -) -EventDetails._paper_doc_change_sharing_policy_details_validator = ( - PaperDocChangeSharingPolicyDetails_validator -) -EventDetails._paper_doc_change_subscription_details_validator = ( - PaperDocChangeSubscriptionDetails_validator -) +EventDetails._paper_doc_change_member_role_details_validator = PaperDocChangeMemberRoleDetails_validator +EventDetails._paper_doc_change_sharing_policy_details_validator = PaperDocChangeSharingPolicyDetails_validator +EventDetails._paper_doc_change_subscription_details_validator = PaperDocChangeSubscriptionDetails_validator EventDetails._paper_doc_deleted_details_validator = PaperDocDeletedDetails_validator EventDetails._paper_doc_delete_comment_details_validator = PaperDocDeleteCommentDetails_validator EventDetails._paper_doc_download_details_validator = PaperDocDownloadDetails_validator @@ -101844,206 +96923,94 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): EventDetails._paper_doc_edit_comment_details_validator = PaperDocEditCommentDetails_validator EventDetails._paper_doc_followed_details_validator = PaperDocFollowedDetails_validator EventDetails._paper_doc_mention_details_validator = PaperDocMentionDetails_validator -EventDetails._paper_doc_ownership_changed_details_validator = ( - PaperDocOwnershipChangedDetails_validator -) +EventDetails._paper_doc_ownership_changed_details_validator = PaperDocOwnershipChangedDetails_validator EventDetails._paper_doc_request_access_details_validator = PaperDocRequestAccessDetails_validator EventDetails._paper_doc_resolve_comment_details_validator = PaperDocResolveCommentDetails_validator EventDetails._paper_doc_revert_details_validator = PaperDocRevertDetails_validator EventDetails._paper_doc_slack_share_details_validator = PaperDocSlackShareDetails_validator EventDetails._paper_doc_team_invite_details_validator = PaperDocTeamInviteDetails_validator EventDetails._paper_doc_trashed_details_validator = PaperDocTrashedDetails_validator -EventDetails._paper_doc_unresolve_comment_details_validator = ( - PaperDocUnresolveCommentDetails_validator -) +EventDetails._paper_doc_unresolve_comment_details_validator = PaperDocUnresolveCommentDetails_validator EventDetails._paper_doc_untrashed_details_validator = PaperDocUntrashedDetails_validator EventDetails._paper_doc_view_details_validator = PaperDocViewDetails_validator EventDetails._paper_external_view_allow_details_validator = PaperExternalViewAllowDetails_validator -EventDetails._paper_external_view_default_team_details_validator = ( - PaperExternalViewDefaultTeamDetails_validator -) -EventDetails._paper_external_view_forbid_details_validator = ( - PaperExternalViewForbidDetails_validator -) -EventDetails._paper_folder_change_subscription_details_validator = ( - PaperFolderChangeSubscriptionDetails_validator -) +EventDetails._paper_external_view_default_team_details_validator = PaperExternalViewDefaultTeamDetails_validator +EventDetails._paper_external_view_forbid_details_validator = PaperExternalViewForbidDetails_validator +EventDetails._paper_folder_change_subscription_details_validator = PaperFolderChangeSubscriptionDetails_validator EventDetails._paper_folder_deleted_details_validator = PaperFolderDeletedDetails_validator EventDetails._paper_folder_followed_details_validator = PaperFolderFollowedDetails_validator EventDetails._paper_folder_team_invite_details_validator = PaperFolderTeamInviteDetails_validator -EventDetails._paper_published_link_change_permission_details_validator = ( - PaperPublishedLinkChangePermissionDetails_validator -) -EventDetails._paper_published_link_create_details_validator = ( - PaperPublishedLinkCreateDetails_validator -) -EventDetails._paper_published_link_disabled_details_validator = ( - PaperPublishedLinkDisabledDetails_validator -) +EventDetails._paper_published_link_change_permission_details_validator = PaperPublishedLinkChangePermissionDetails_validator +EventDetails._paper_published_link_create_details_validator = PaperPublishedLinkCreateDetails_validator +EventDetails._paper_published_link_disabled_details_validator = PaperPublishedLinkDisabledDetails_validator EventDetails._paper_published_link_view_details_validator = PaperPublishedLinkViewDetails_validator EventDetails._password_change_details_validator = PasswordChangeDetails_validator EventDetails._password_reset_details_validator = PasswordResetDetails_validator EventDetails._password_reset_all_details_validator = PasswordResetAllDetails_validator -EventDetails._protect_internal_domains_changed_details_validator = ( - ProtectInternalDomainsChangedDetails_validator -) -EventDetails._classification_create_report_details_validator = ( - ClassificationCreateReportDetails_validator -) -EventDetails._classification_create_report_fail_details_validator = ( - ClassificationCreateReportFailDetails_validator -) -EventDetails._emm_create_exceptions_report_details_validator = ( - EmmCreateExceptionsReportDetails_validator -) +EventDetails._protect_internal_domains_changed_details_validator = ProtectInternalDomainsChangedDetails_validator +EventDetails._classification_create_report_details_validator = ClassificationCreateReportDetails_validator +EventDetails._classification_create_report_fail_details_validator = ClassificationCreateReportFailDetails_validator +EventDetails._emm_create_exceptions_report_details_validator = EmmCreateExceptionsReportDetails_validator EventDetails._emm_create_usage_report_details_validator = EmmCreateUsageReportDetails_validator EventDetails._export_members_report_details_validator = ExportMembersReportDetails_validator -EventDetails._export_members_report_fail_details_validator = ( - ExportMembersReportFailDetails_validator -) -EventDetails._external_sharing_create_report_details_validator = ( - ExternalSharingCreateReportDetails_validator -) -EventDetails._external_sharing_report_failed_details_validator = ( - ExternalSharingReportFailedDetails_validator -) -EventDetails._member_access_details_create_report_details_validator = ( - MemberAccessDetailsCreateReportDetails_validator -) -EventDetails._member_access_details_create_report_failed_details_validator = ( - MemberAccessDetailsCreateReportFailedDetails_validator -) -EventDetails._no_expiration_link_gen_create_report_details_validator = ( - NoExpirationLinkGenCreateReportDetails_validator -) -EventDetails._no_expiration_link_gen_report_failed_details_validator = ( - NoExpirationLinkGenReportFailedDetails_validator -) -EventDetails._no_password_link_gen_create_report_details_validator = ( - NoPasswordLinkGenCreateReportDetails_validator -) -EventDetails._no_password_link_gen_report_failed_details_validator = ( - NoPasswordLinkGenReportFailedDetails_validator -) -EventDetails._no_password_link_view_create_report_details_validator = ( - NoPasswordLinkViewCreateReportDetails_validator -) -EventDetails._no_password_link_view_report_failed_details_validator = ( - NoPasswordLinkViewReportFailedDetails_validator -) -EventDetails._outdated_link_view_create_report_details_validator = ( - OutdatedLinkViewCreateReportDetails_validator -) -EventDetails._outdated_link_view_report_failed_details_validator = ( - OutdatedLinkViewReportFailedDetails_validator -) +EventDetails._export_members_report_fail_details_validator = ExportMembersReportFailDetails_validator +EventDetails._external_sharing_create_report_details_validator = ExternalSharingCreateReportDetails_validator +EventDetails._external_sharing_report_failed_details_validator = ExternalSharingReportFailedDetails_validator +EventDetails._member_access_details_create_report_details_validator = MemberAccessDetailsCreateReportDetails_validator +EventDetails._member_access_details_create_report_failed_details_validator = MemberAccessDetailsCreateReportFailedDetails_validator +EventDetails._no_expiration_link_gen_create_report_details_validator = NoExpirationLinkGenCreateReportDetails_validator +EventDetails._no_expiration_link_gen_report_failed_details_validator = NoExpirationLinkGenReportFailedDetails_validator +EventDetails._no_password_link_gen_create_report_details_validator = NoPasswordLinkGenCreateReportDetails_validator +EventDetails._no_password_link_gen_report_failed_details_validator = NoPasswordLinkGenReportFailedDetails_validator +EventDetails._no_password_link_view_create_report_details_validator = NoPasswordLinkViewCreateReportDetails_validator +EventDetails._no_password_link_view_report_failed_details_validator = NoPasswordLinkViewReportFailedDetails_validator +EventDetails._outdated_link_view_create_report_details_validator = OutdatedLinkViewCreateReportDetails_validator +EventDetails._outdated_link_view_report_failed_details_validator = OutdatedLinkViewReportFailedDetails_validator EventDetails._paper_admin_export_start_details_validator = PaperAdminExportStartDetails_validator -EventDetails._ransomware_alert_create_report_details_validator = ( - RansomwareAlertCreateReportDetails_validator -) -EventDetails._ransomware_alert_create_report_failed_details_validator = ( - RansomwareAlertCreateReportFailedDetails_validator -) -EventDetails._shared_folders_create_report_details_validator = ( - SharedFoldersCreateReportDetails_validator -) -EventDetails._shared_folders_create_report_failed_details_validator = ( - SharedFoldersCreateReportFailedDetails_validator -) -EventDetails._smart_sync_create_admin_privilege_report_details_validator = ( - SmartSyncCreateAdminPrivilegeReportDetails_validator -) -EventDetails._team_activity_create_report_details_validator = ( - TeamActivityCreateReportDetails_validator -) -EventDetails._team_activity_create_report_fail_details_validator = ( - TeamActivityCreateReportFailDetails_validator -) -EventDetails._team_folders_create_report_details_validator = ( - TeamFoldersCreateReportDetails_validator -) -EventDetails._team_folders_create_report_failed_details_validator = ( - TeamFoldersCreateReportFailedDetails_validator -) -EventDetails._team_storage_create_report_details_validator = ( - TeamStorageCreateReportDetails_validator -) -EventDetails._team_storage_create_report_failed_details_validator = ( - TeamStorageCreateReportFailedDetails_validator -) +EventDetails._ransomware_alert_create_report_details_validator = RansomwareAlertCreateReportDetails_validator +EventDetails._ransomware_alert_create_report_failed_details_validator = RansomwareAlertCreateReportFailedDetails_validator +EventDetails._shared_folders_create_report_details_validator = SharedFoldersCreateReportDetails_validator +EventDetails._shared_folders_create_report_failed_details_validator = SharedFoldersCreateReportFailedDetails_validator +EventDetails._smart_sync_create_admin_privilege_report_details_validator = SmartSyncCreateAdminPrivilegeReportDetails_validator +EventDetails._team_activity_create_report_details_validator = TeamActivityCreateReportDetails_validator +EventDetails._team_activity_create_report_fail_details_validator = TeamActivityCreateReportFailDetails_validator +EventDetails._team_folders_create_report_details_validator = TeamFoldersCreateReportDetails_validator +EventDetails._team_folders_create_report_failed_details_validator = TeamFoldersCreateReportFailedDetails_validator +EventDetails._team_storage_create_report_details_validator = TeamStorageCreateReportDetails_validator +EventDetails._team_storage_create_report_failed_details_validator = TeamStorageCreateReportFailedDetails_validator EventDetails._collection_share_details_validator = CollectionShareDetails_validator EventDetails._file_transfers_file_add_details_validator = FileTransfersFileAddDetails_validator -EventDetails._file_transfers_transfer_delete_details_validator = ( - FileTransfersTransferDeleteDetails_validator -) -EventDetails._file_transfers_transfer_download_details_validator = ( - FileTransfersTransferDownloadDetails_validator -) -EventDetails._file_transfers_transfer_send_details_validator = ( - FileTransfersTransferSendDetails_validator -) -EventDetails._file_transfers_transfer_view_details_validator = ( - FileTransfersTransferViewDetails_validator -) +EventDetails._file_transfers_transfer_delete_details_validator = FileTransfersTransferDeleteDetails_validator +EventDetails._file_transfers_transfer_download_details_validator = FileTransfersTransferDownloadDetails_validator +EventDetails._file_transfers_transfer_send_details_validator = FileTransfersTransferSendDetails_validator +EventDetails._file_transfers_transfer_view_details_validator = FileTransfersTransferViewDetails_validator EventDetails._media_hub_project_team_add_details_validator = MediaHubProjectTeamAddDetails_validator -EventDetails._media_hub_project_team_delete_details_validator = ( - MediaHubProjectTeamDeleteDetails_validator -) -EventDetails._media_hub_project_team_role_changed_details_validator = ( - MediaHubProjectTeamRoleChangedDetails_validator -) -EventDetails._media_hub_shared_link_audience_changed_details_validator = ( - MediaHubSharedLinkAudienceChangedDetails_validator -) -EventDetails._media_hub_shared_link_created_details_validator = ( - MediaHubSharedLinkCreatedDetails_validator -) -EventDetails._media_hub_shared_link_download_setting_changed_details_validator = ( - MediaHubSharedLinkDownloadSettingChangedDetails_validator -) -EventDetails._media_hub_shared_link_revoked_details_validator = ( - MediaHubSharedLinkRevokedDetails_validator -) +EventDetails._media_hub_project_team_delete_details_validator = MediaHubProjectTeamDeleteDetails_validator +EventDetails._media_hub_project_team_role_changed_details_validator = MediaHubProjectTeamRoleChangedDetails_validator +EventDetails._media_hub_shared_link_audience_changed_details_validator = MediaHubSharedLinkAudienceChangedDetails_validator +EventDetails._media_hub_shared_link_created_details_validator = MediaHubSharedLinkCreatedDetails_validator +EventDetails._media_hub_shared_link_download_setting_changed_details_validator = MediaHubSharedLinkDownloadSettingChangedDetails_validator +EventDetails._media_hub_shared_link_revoked_details_validator = MediaHubSharedLinkRevokedDetails_validator EventDetails._note_acl_invite_only_details_validator = NoteAclInviteOnlyDetails_validator EventDetails._note_acl_link_details_validator = NoteAclLinkDetails_validator EventDetails._note_acl_team_link_details_validator = NoteAclTeamLinkDetails_validator EventDetails._note_shared_details_validator = NoteSharedDetails_validator EventDetails._note_share_receive_details_validator = NoteShareReceiveDetails_validator EventDetails._open_note_shared_details_validator = OpenNoteSharedDetails_validator -EventDetails._replay_file_shared_link_created_details_validator = ( - ReplayFileSharedLinkCreatedDetails_validator -) -EventDetails._replay_file_shared_link_modified_details_validator = ( - ReplayFileSharedLinkModifiedDetails_validator -) +EventDetails._replay_file_shared_link_created_details_validator = ReplayFileSharedLinkCreatedDetails_validator +EventDetails._replay_file_shared_link_modified_details_validator = ReplayFileSharedLinkModifiedDetails_validator EventDetails._replay_project_team_add_details_validator = ReplayProjectTeamAddDetails_validator -EventDetails._replay_project_team_delete_details_validator = ( - ReplayProjectTeamDeleteDetails_validator -) +EventDetails._replay_project_team_delete_details_validator = ReplayProjectTeamDeleteDetails_validator EventDetails._send_and_track_file_added_details_validator = SendAndTrackFileAddedDetails_validator -EventDetails._send_and_track_file_renamed_details_validator = ( - SendAndTrackFileRenamedDetails_validator -) -EventDetails._send_and_track_file_updated_details_validator = ( - SendAndTrackFileUpdatedDetails_validator -) -EventDetails._send_and_track_link_created_details_validator = ( - SendAndTrackLinkCreatedDetails_validator -) -EventDetails._send_and_track_link_deleted_details_validator = ( - SendAndTrackLinkDeletedDetails_validator -) -EventDetails._send_and_track_link_updated_details_validator = ( - SendAndTrackLinkUpdatedDetails_validator -) +EventDetails._send_and_track_file_renamed_details_validator = SendAndTrackFileRenamedDetails_validator +EventDetails._send_and_track_file_updated_details_validator = SendAndTrackFileUpdatedDetails_validator +EventDetails._send_and_track_link_created_details_validator = SendAndTrackLinkCreatedDetails_validator +EventDetails._send_and_track_link_deleted_details_validator = SendAndTrackLinkDeletedDetails_validator +EventDetails._send_and_track_link_updated_details_validator = SendAndTrackLinkUpdatedDetails_validator EventDetails._send_and_track_link_viewed_details_validator = SendAndTrackLinkViewedDetails_validator -EventDetails._send_and_track_removed_file_and_associated_links_details_validator = ( - SendAndTrackRemovedFileAndAssociatedLinksDetails_validator -) +EventDetails._send_and_track_removed_file_and_associated_links_details_validator = SendAndTrackRemovedFileAndAssociatedLinksDetails_validator EventDetails._sf_add_group_details_validator = SfAddGroupDetails_validator -EventDetails._sf_allow_non_members_to_view_shared_links_details_validator = ( - SfAllowNonMembersToViewSharedLinksDetails_validator -) +EventDetails._sf_allow_non_members_to_view_shared_links_details_validator = SfAllowNonMembersToViewSharedLinksDetails_validator EventDetails._sf_external_invite_warn_details_validator = SfExternalInviteWarnDetails_validator EventDetails._sf_fb_invite_details_validator = SfFbInviteDetails_validator EventDetails._sf_fb_invite_change_role_details_validator = SfFbInviteChangeRoleDetails_validator @@ -102055,130 +97022,58 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): EventDetails._sf_team_join_details_validator = SfTeamJoinDetails_validator EventDetails._sf_team_join_from_oob_link_details_validator = SfTeamJoinFromOobLinkDetails_validator EventDetails._sf_team_uninvite_details_validator = SfTeamUninviteDetails_validator -EventDetails._shared_content_add_invitees_details_validator = ( - SharedContentAddInviteesDetails_validator -) -EventDetails._shared_content_add_link_expiry_details_validator = ( - SharedContentAddLinkExpiryDetails_validator -) -EventDetails._shared_content_add_link_password_details_validator = ( - SharedContentAddLinkPasswordDetails_validator -) +EventDetails._shared_content_add_invitees_details_validator = SharedContentAddInviteesDetails_validator +EventDetails._shared_content_add_link_expiry_details_validator = SharedContentAddLinkExpiryDetails_validator +EventDetails._shared_content_add_link_password_details_validator = SharedContentAddLinkPasswordDetails_validator EventDetails._shared_content_add_member_details_validator = SharedContentAddMemberDetails_validator -EventDetails._shared_content_change_downloads_policy_details_validator = ( - SharedContentChangeDownloadsPolicyDetails_validator -) -EventDetails._shared_content_change_invitee_role_details_validator = ( - SharedContentChangeInviteeRoleDetails_validator -) -EventDetails._shared_content_change_link_audience_details_validator = ( - SharedContentChangeLinkAudienceDetails_validator -) -EventDetails._shared_content_change_link_expiry_details_validator = ( - SharedContentChangeLinkExpiryDetails_validator -) -EventDetails._shared_content_change_link_password_details_validator = ( - SharedContentChangeLinkPasswordDetails_validator -) -EventDetails._shared_content_change_member_role_details_validator = ( - SharedContentChangeMemberRoleDetails_validator -) -EventDetails._shared_content_change_viewer_info_policy_details_validator = ( - SharedContentChangeViewerInfoPolicyDetails_validator -) -EventDetails._shared_content_claim_invitation_details_validator = ( - SharedContentClaimInvitationDetails_validator -) +EventDetails._shared_content_change_downloads_policy_details_validator = SharedContentChangeDownloadsPolicyDetails_validator +EventDetails._shared_content_change_invitee_role_details_validator = SharedContentChangeInviteeRoleDetails_validator +EventDetails._shared_content_change_link_audience_details_validator = SharedContentChangeLinkAudienceDetails_validator +EventDetails._shared_content_change_link_expiry_details_validator = SharedContentChangeLinkExpiryDetails_validator +EventDetails._shared_content_change_link_password_details_validator = SharedContentChangeLinkPasswordDetails_validator +EventDetails._shared_content_change_member_role_details_validator = SharedContentChangeMemberRoleDetails_validator +EventDetails._shared_content_change_viewer_info_policy_details_validator = SharedContentChangeViewerInfoPolicyDetails_validator +EventDetails._shared_content_claim_invitation_details_validator = SharedContentClaimInvitationDetails_validator EventDetails._shared_content_copy_details_validator = SharedContentCopyDetails_validator EventDetails._shared_content_download_details_validator = SharedContentDownloadDetails_validator -EventDetails._shared_content_relinquish_membership_details_validator = ( - SharedContentRelinquishMembershipDetails_validator -) -EventDetails._shared_content_remove_invitees_details_validator = ( - SharedContentRemoveInviteesDetails_validator -) -EventDetails._shared_content_remove_link_expiry_details_validator = ( - SharedContentRemoveLinkExpiryDetails_validator -) -EventDetails._shared_content_remove_link_password_details_validator = ( - SharedContentRemoveLinkPasswordDetails_validator -) -EventDetails._shared_content_remove_member_details_validator = ( - SharedContentRemoveMemberDetails_validator -) -EventDetails._shared_content_request_access_details_validator = ( - SharedContentRequestAccessDetails_validator -) -EventDetails._shared_content_restore_invitees_details_validator = ( - SharedContentRestoreInviteesDetails_validator -) -EventDetails._shared_content_restore_member_details_validator = ( - SharedContentRestoreMemberDetails_validator -) +EventDetails._shared_content_relinquish_membership_details_validator = SharedContentRelinquishMembershipDetails_validator +EventDetails._shared_content_remove_invitees_details_validator = SharedContentRemoveInviteesDetails_validator +EventDetails._shared_content_remove_link_expiry_details_validator = SharedContentRemoveLinkExpiryDetails_validator +EventDetails._shared_content_remove_link_password_details_validator = SharedContentRemoveLinkPasswordDetails_validator +EventDetails._shared_content_remove_member_details_validator = SharedContentRemoveMemberDetails_validator +EventDetails._shared_content_request_access_details_validator = SharedContentRequestAccessDetails_validator +EventDetails._shared_content_restore_invitees_details_validator = SharedContentRestoreInviteesDetails_validator +EventDetails._shared_content_restore_member_details_validator = SharedContentRestoreMemberDetails_validator EventDetails._shared_content_unshare_details_validator = SharedContentUnshareDetails_validator EventDetails._shared_content_view_details_validator = SharedContentViewDetails_validator -EventDetails._shared_folder_change_link_policy_details_validator = ( - SharedFolderChangeLinkPolicyDetails_validator -) -EventDetails._shared_folder_change_members_inheritance_policy_details_validator = ( - SharedFolderChangeMembersInheritancePolicyDetails_validator -) -EventDetails._shared_folder_change_members_management_policy_details_validator = ( - SharedFolderChangeMembersManagementPolicyDetails_validator -) -EventDetails._shared_folder_change_members_policy_details_validator = ( - SharedFolderChangeMembersPolicyDetails_validator -) +EventDetails._shared_folder_change_link_policy_details_validator = SharedFolderChangeLinkPolicyDetails_validator +EventDetails._shared_folder_change_members_inheritance_policy_details_validator = SharedFolderChangeMembersInheritancePolicyDetails_validator +EventDetails._shared_folder_change_members_management_policy_details_validator = SharedFolderChangeMembersManagementPolicyDetails_validator +EventDetails._shared_folder_change_members_policy_details_validator = SharedFolderChangeMembersPolicyDetails_validator EventDetails._shared_folder_create_details_validator = SharedFolderCreateDetails_validator -EventDetails._shared_folder_decline_invitation_details_validator = ( - SharedFolderDeclineInvitationDetails_validator -) +EventDetails._shared_folder_decline_invitation_details_validator = SharedFolderDeclineInvitationDetails_validator EventDetails._shared_folder_mount_details_validator = SharedFolderMountDetails_validator EventDetails._shared_folder_nest_details_validator = SharedFolderNestDetails_validator -EventDetails._shared_folder_transfer_ownership_details_validator = ( - SharedFolderTransferOwnershipDetails_validator -) +EventDetails._shared_folder_transfer_ownership_details_validator = SharedFolderTransferOwnershipDetails_validator EventDetails._shared_folder_unmount_details_validator = SharedFolderUnmountDetails_validator EventDetails._shared_link_add_expiry_details_validator = SharedLinkAddExpiryDetails_validator EventDetails._shared_link_change_expiry_details_validator = SharedLinkChangeExpiryDetails_validator -EventDetails._shared_link_change_visibility_details_validator = ( - SharedLinkChangeVisibilityDetails_validator -) +EventDetails._shared_link_change_visibility_details_validator = SharedLinkChangeVisibilityDetails_validator EventDetails._shared_link_copy_details_validator = SharedLinkCopyDetails_validator EventDetails._shared_link_create_details_validator = SharedLinkCreateDetails_validator EventDetails._shared_link_disable_details_validator = SharedLinkDisableDetails_validator EventDetails._shared_link_download_details_validator = SharedLinkDownloadDetails_validator EventDetails._shared_link_remove_expiry_details_validator = SharedLinkRemoveExpiryDetails_validator -EventDetails._shared_link_remove_visitor_details_validator = ( - SharedLinkRemoveVisitorDetails_validator -) -EventDetails._shared_link_settings_add_expiration_details_validator = ( - SharedLinkSettingsAddExpirationDetails_validator -) -EventDetails._shared_link_settings_add_password_details_validator = ( - SharedLinkSettingsAddPasswordDetails_validator -) -EventDetails._shared_link_settings_allow_download_disabled_details_validator = ( - SharedLinkSettingsAllowDownloadDisabledDetails_validator -) -EventDetails._shared_link_settings_allow_download_enabled_details_validator = ( - SharedLinkSettingsAllowDownloadEnabledDetails_validator -) -EventDetails._shared_link_settings_change_audience_details_validator = ( - SharedLinkSettingsChangeAudienceDetails_validator -) -EventDetails._shared_link_settings_change_expiration_details_validator = ( - SharedLinkSettingsChangeExpirationDetails_validator -) -EventDetails._shared_link_settings_change_password_details_validator = ( - SharedLinkSettingsChangePasswordDetails_validator -) -EventDetails._shared_link_settings_remove_expiration_details_validator = ( - SharedLinkSettingsRemoveExpirationDetails_validator -) -EventDetails._shared_link_settings_remove_password_details_validator = ( - SharedLinkSettingsRemovePasswordDetails_validator -) +EventDetails._shared_link_remove_visitor_details_validator = SharedLinkRemoveVisitorDetails_validator +EventDetails._shared_link_settings_add_expiration_details_validator = SharedLinkSettingsAddExpirationDetails_validator +EventDetails._shared_link_settings_add_password_details_validator = SharedLinkSettingsAddPasswordDetails_validator +EventDetails._shared_link_settings_allow_download_disabled_details_validator = SharedLinkSettingsAllowDownloadDisabledDetails_validator +EventDetails._shared_link_settings_allow_download_enabled_details_validator = SharedLinkSettingsAllowDownloadEnabledDetails_validator +EventDetails._shared_link_settings_change_audience_details_validator = SharedLinkSettingsChangeAudienceDetails_validator +EventDetails._shared_link_settings_change_expiration_details_validator = SharedLinkSettingsChangeExpirationDetails_validator +EventDetails._shared_link_settings_change_password_details_validator = SharedLinkSettingsChangePasswordDetails_validator +EventDetails._shared_link_settings_remove_expiration_details_validator = SharedLinkSettingsRemoveExpirationDetails_validator +EventDetails._shared_link_settings_remove_password_details_validator = SharedLinkSettingsRemovePasswordDetails_validator EventDetails._shared_link_share_details_validator = SharedLinkShareDetails_validator EventDetails._shared_link_view_details_validator = SharedLinkViewDetails_validator EventDetails._shared_note_opened_details_validator = SharedNoteOpenedDetails_validator @@ -102196,9 +97091,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): EventDetails._showcase_file_download_details_validator = ShowcaseFileDownloadDetails_validator EventDetails._showcase_file_removed_details_validator = ShowcaseFileRemovedDetails_validator EventDetails._showcase_file_view_details_validator = ShowcaseFileViewDetails_validator -EventDetails._showcase_permanently_deleted_details_validator = ( - ShowcasePermanentlyDeletedDetails_validator -) +EventDetails._showcase_permanently_deleted_details_validator = ShowcasePermanentlyDeletedDetails_validator EventDetails._showcase_post_comment_details_validator = ShowcasePostCommentDetails_validator EventDetails._showcase_remove_member_details_validator = ShowcaseRemoveMemberDetails_validator EventDetails._showcase_renamed_details_validator = ShowcaseRenamedDetails_validator @@ -102206,35 +97099,17 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): EventDetails._showcase_resolve_comment_details_validator = ShowcaseResolveCommentDetails_validator EventDetails._showcase_restored_details_validator = ShowcaseRestoredDetails_validator EventDetails._showcase_trashed_details_validator = ShowcaseTrashedDetails_validator -EventDetails._showcase_trashed_deprecated_details_validator = ( - ShowcaseTrashedDeprecatedDetails_validator -) -EventDetails._showcase_unresolve_comment_details_validator = ( - ShowcaseUnresolveCommentDetails_validator -) +EventDetails._showcase_trashed_deprecated_details_validator = ShowcaseTrashedDeprecatedDetails_validator +EventDetails._showcase_unresolve_comment_details_validator = ShowcaseUnresolveCommentDetails_validator EventDetails._showcase_untrashed_details_validator = ShowcaseUntrashedDetails_validator -EventDetails._showcase_untrashed_deprecated_details_validator = ( - ShowcaseUntrashedDeprecatedDetails_validator -) +EventDetails._showcase_untrashed_deprecated_details_validator = ShowcaseUntrashedDeprecatedDetails_validator EventDetails._showcase_view_details_validator = ShowcaseViewDetails_validator -EventDetails._sign_signature_request_canceled_details_validator = ( - SignSignatureRequestCanceledDetails_validator -) -EventDetails._sign_signature_request_completed_details_validator = ( - SignSignatureRequestCompletedDetails_validator -) -EventDetails._sign_signature_request_declined_details_validator = ( - SignSignatureRequestDeclinedDetails_validator -) -EventDetails._sign_signature_request_opened_details_validator = ( - SignSignatureRequestOpenedDetails_validator -) -EventDetails._sign_signature_request_reminder_sent_details_validator = ( - SignSignatureRequestReminderSentDetails_validator -) -EventDetails._sign_signature_request_sent_details_validator = ( - SignSignatureRequestSentDetails_validator -) +EventDetails._sign_signature_request_canceled_details_validator = SignSignatureRequestCanceledDetails_validator +EventDetails._sign_signature_request_completed_details_validator = SignSignatureRequestCompletedDetails_validator +EventDetails._sign_signature_request_declined_details_validator = SignSignatureRequestDeclinedDetails_validator +EventDetails._sign_signature_request_opened_details_validator = SignSignatureRequestOpenedDetails_validator +EventDetails._sign_signature_request_reminder_sent_details_validator = SignSignatureRequestReminderSentDetails_validator +EventDetails._sign_signature_request_sent_details_validator = SignSignatureRequestSentDetails_validator EventDetails._sign_template_created_details_validator = SignTemplateCreatedDetails_validator EventDetails._sign_template_shared_details_validator = SignTemplateSharedDetails_validator EventDetails._risc_security_event_details_validator = RiscSecurityEventDetails_validator @@ -102244,351 +97119,141 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): EventDetails._sso_change_cert_details_validator = SsoChangeCertDetails_validator EventDetails._sso_change_login_url_details_validator = SsoChangeLoginUrlDetails_validator EventDetails._sso_change_logout_url_details_validator = SsoChangeLogoutUrlDetails_validator -EventDetails._sso_change_saml_identity_mode_details_validator = ( - SsoChangeSamlIdentityModeDetails_validator -) +EventDetails._sso_change_saml_identity_mode_details_validator = SsoChangeSamlIdentityModeDetails_validator EventDetails._sso_remove_cert_details_validator = SsoRemoveCertDetails_validator EventDetails._sso_remove_login_url_details_validator = SsoRemoveLoginUrlDetails_validator EventDetails._sso_remove_logout_url_details_validator = SsoRemoveLogoutUrlDetails_validator EventDetails._team_folder_change_status_details_validator = TeamFolderChangeStatusDetails_validator EventDetails._team_folder_create_details_validator = TeamFolderCreateDetails_validator EventDetails._team_folder_downgrade_details_validator = TeamFolderDowngradeDetails_validator -EventDetails._team_folder_permanently_delete_details_validator = ( - TeamFolderPermanentlyDeleteDetails_validator -) +EventDetails._team_folder_permanently_delete_details_validator = TeamFolderPermanentlyDeleteDetails_validator EventDetails._team_folder_rename_details_validator = TeamFolderRenameDetails_validator -EventDetails._team_folder_space_limits_change_caps_type_details_validator = ( - TeamFolderSpaceLimitsChangeCapsTypeDetails_validator -) -EventDetails._team_folder_space_limits_change_limit_details_validator = ( - TeamFolderSpaceLimitsChangeLimitDetails_validator -) -EventDetails._team_folder_space_limits_change_notification_target_details_validator = ( - TeamFolderSpaceLimitsChangeNotificationTargetDetails_validator -) -EventDetails._team_selective_sync_settings_changed_details_validator = ( - TeamSelectiveSyncSettingsChangedDetails_validator -) -EventDetails._account_capture_change_policy_details_validator = ( - AccountCaptureChangePolicyDetails_validator -) -EventDetails._admin_email_reminders_changed_details_validator = ( - AdminEmailRemindersChangedDetails_validator -) -EventDetails._ai_third_party_sharing_dropbox_base_policy_changed_details_validator = ( - AiThirdPartySharingDropboxBasePolicyChangedDetails_validator -) +EventDetails._team_folder_space_limits_change_caps_type_details_validator = TeamFolderSpaceLimitsChangeCapsTypeDetails_validator +EventDetails._team_folder_space_limits_change_limit_details_validator = TeamFolderSpaceLimitsChangeLimitDetails_validator +EventDetails._team_folder_space_limits_change_notification_target_details_validator = TeamFolderSpaceLimitsChangeNotificationTargetDetails_validator +EventDetails._team_selective_sync_settings_changed_details_validator = TeamSelectiveSyncSettingsChangedDetails_validator +EventDetails._account_capture_change_policy_details_validator = AccountCaptureChangePolicyDetails_validator +EventDetails._admin_email_reminders_changed_details_validator = AdminEmailRemindersChangedDetails_validator +EventDetails._ai_third_party_sharing_dropbox_base_policy_changed_details_validator = AiThirdPartySharingDropboxBasePolicyChangedDetails_validator EventDetails._allow_download_disabled_details_validator = AllowDownloadDisabledDetails_validator EventDetails._allow_download_enabled_details_validator = AllowDownloadEnabledDetails_validator EventDetails._apple_login_change_policy_details_validator = AppleLoginChangePolicyDetails_validator EventDetails._app_permissions_changed_details_validator = AppPermissionsChangedDetails_validator -EventDetails._camera_uploads_policy_changed_details_validator = ( - CameraUploadsPolicyChangedDetails_validator -) -EventDetails._capture_team_space_policy_changed_details_validator = ( - CaptureTeamSpacePolicyChangedDetails_validator -) -EventDetails._capture_transcript_policy_changed_details_validator = ( - CaptureTranscriptPolicyChangedDetails_validator -) -EventDetails._classification_change_policy_details_validator = ( - ClassificationChangePolicyDetails_validator -) -EventDetails._computer_backup_policy_changed_details_validator = ( - ComputerBackupPolicyChangedDetails_validator -) -EventDetails._content_administration_policy_changed_details_validator = ( - ContentAdministrationPolicyChangedDetails_validator -) -EventDetails._content_deletion_protection_change_policy_details_validator = ( - ContentDeletionProtectionChangePolicyDetails_validator -) -EventDetails._dash_external_sharing_policy_changed_details_validator = ( - DashExternalSharingPolicyChangedDetails_validator -) -EventDetails._data_placement_restriction_change_policy_details_validator = ( - DataPlacementRestrictionChangePolicyDetails_validator -) -EventDetails._data_placement_restriction_satisfy_policy_details_validator = ( - DataPlacementRestrictionSatisfyPolicyDetails_validator -) -EventDetails._device_approvals_add_exception_details_validator = ( - DeviceApprovalsAddExceptionDetails_validator -) -EventDetails._device_approvals_change_desktop_policy_details_validator = ( - DeviceApprovalsChangeDesktopPolicyDetails_validator -) -EventDetails._device_approvals_change_mobile_policy_details_validator = ( - DeviceApprovalsChangeMobilePolicyDetails_validator -) -EventDetails._device_approvals_change_overage_action_details_validator = ( - DeviceApprovalsChangeOverageActionDetails_validator -) -EventDetails._device_approvals_change_unlink_action_details_validator = ( - DeviceApprovalsChangeUnlinkActionDetails_validator -) -EventDetails._device_approvals_remove_exception_details_validator = ( - DeviceApprovalsRemoveExceptionDetails_validator -) -EventDetails._directory_restrictions_add_members_details_validator = ( - DirectoryRestrictionsAddMembersDetails_validator -) -EventDetails._directory_restrictions_remove_members_details_validator = ( - DirectoryRestrictionsRemoveMembersDetails_validator -) -EventDetails._dropbox_passwords_policy_changed_details_validator = ( - DropboxPasswordsPolicyChangedDetails_validator -) -EventDetails._email_ingest_policy_changed_details_validator = ( - EmailIngestPolicyChangedDetails_validator -) +EventDetails._camera_uploads_policy_changed_details_validator = CameraUploadsPolicyChangedDetails_validator +EventDetails._capture_team_space_policy_changed_details_validator = CaptureTeamSpacePolicyChangedDetails_validator +EventDetails._capture_transcript_policy_changed_details_validator = CaptureTranscriptPolicyChangedDetails_validator +EventDetails._classification_change_policy_details_validator = ClassificationChangePolicyDetails_validator +EventDetails._computer_backup_policy_changed_details_validator = ComputerBackupPolicyChangedDetails_validator +EventDetails._content_administration_policy_changed_details_validator = ContentAdministrationPolicyChangedDetails_validator +EventDetails._content_deletion_protection_change_policy_details_validator = ContentDeletionProtectionChangePolicyDetails_validator +EventDetails._dash_external_sharing_policy_changed_details_validator = DashExternalSharingPolicyChangedDetails_validator +EventDetails._data_placement_restriction_change_policy_details_validator = DataPlacementRestrictionChangePolicyDetails_validator +EventDetails._data_placement_restriction_satisfy_policy_details_validator = DataPlacementRestrictionSatisfyPolicyDetails_validator +EventDetails._device_approvals_add_exception_details_validator = DeviceApprovalsAddExceptionDetails_validator +EventDetails._device_approvals_change_desktop_policy_details_validator = DeviceApprovalsChangeDesktopPolicyDetails_validator +EventDetails._device_approvals_change_mobile_policy_details_validator = DeviceApprovalsChangeMobilePolicyDetails_validator +EventDetails._device_approvals_change_overage_action_details_validator = DeviceApprovalsChangeOverageActionDetails_validator +EventDetails._device_approvals_change_unlink_action_details_validator = DeviceApprovalsChangeUnlinkActionDetails_validator +EventDetails._device_approvals_remove_exception_details_validator = DeviceApprovalsRemoveExceptionDetails_validator +EventDetails._directory_restrictions_add_members_details_validator = DirectoryRestrictionsAddMembersDetails_validator +EventDetails._directory_restrictions_remove_members_details_validator = DirectoryRestrictionsRemoveMembersDetails_validator +EventDetails._dropbox_passwords_policy_changed_details_validator = DropboxPasswordsPolicyChangedDetails_validator +EventDetails._email_ingest_policy_changed_details_validator = EmailIngestPolicyChangedDetails_validator EventDetails._emm_add_exception_details_validator = EmmAddExceptionDetails_validator EventDetails._emm_change_policy_details_validator = EmmChangePolicyDetails_validator EventDetails._emm_remove_exception_details_validator = EmmRemoveExceptionDetails_validator -EventDetails._extended_version_history_change_policy_details_validator = ( - ExtendedVersionHistoryChangePolicyDetails_validator -) -EventDetails._external_drive_backup_policy_changed_details_validator = ( - ExternalDriveBackupPolicyChangedDetails_validator -) -EventDetails._file_comments_change_policy_details_validator = ( - FileCommentsChangePolicyDetails_validator -) -EventDetails._file_locking_policy_changed_details_validator = ( - FileLockingPolicyChangedDetails_validator -) -EventDetails._file_provider_migration_policy_changed_details_validator = ( - FileProviderMigrationPolicyChangedDetails_validator -) -EventDetails._file_requests_change_policy_details_validator = ( - FileRequestsChangePolicyDetails_validator -) -EventDetails._file_requests_emails_enabled_details_validator = ( - FileRequestsEmailsEnabledDetails_validator -) -EventDetails._file_requests_emails_restricted_to_team_only_details_validator = ( - FileRequestsEmailsRestrictedToTeamOnlyDetails_validator -) -EventDetails._file_transfers_policy_changed_details_validator = ( - FileTransfersPolicyChangedDetails_validator -) -EventDetails._flexible_file_names_policy_changed_details_validator = ( - FlexibleFileNamesPolicyChangedDetails_validator -) -EventDetails._folder_link_restriction_policy_changed_details_validator = ( - FolderLinkRestrictionPolicyChangedDetails_validator -) +EventDetails._extended_version_history_change_policy_details_validator = ExtendedVersionHistoryChangePolicyDetails_validator +EventDetails._external_drive_backup_policy_changed_details_validator = ExternalDriveBackupPolicyChangedDetails_validator +EventDetails._file_comments_change_policy_details_validator = FileCommentsChangePolicyDetails_validator +EventDetails._file_locking_policy_changed_details_validator = FileLockingPolicyChangedDetails_validator +EventDetails._file_provider_migration_policy_changed_details_validator = FileProviderMigrationPolicyChangedDetails_validator +EventDetails._file_requests_change_policy_details_validator = FileRequestsChangePolicyDetails_validator +EventDetails._file_requests_emails_enabled_details_validator = FileRequestsEmailsEnabledDetails_validator +EventDetails._file_requests_emails_restricted_to_team_only_details_validator = FileRequestsEmailsRestrictedToTeamOnlyDetails_validator +EventDetails._file_transfers_policy_changed_details_validator = FileTransfersPolicyChangedDetails_validator +EventDetails._flexible_file_names_policy_changed_details_validator = FlexibleFileNamesPolicyChangedDetails_validator +EventDetails._folder_link_restriction_policy_changed_details_validator = FolderLinkRestrictionPolicyChangedDetails_validator EventDetails._google_sso_change_policy_details_validator = GoogleSsoChangePolicyDetails_validator -EventDetails._group_user_management_change_policy_details_validator = ( - GroupUserManagementChangePolicyDetails_validator -) -EventDetails._integration_policy_changed_details_validator = ( - IntegrationPolicyChangedDetails_validator -) -EventDetails._invite_acceptance_email_policy_changed_details_validator = ( - InviteAcceptanceEmailPolicyChangedDetails_validator -) -EventDetails._media_hub_adding_people_policy_changed_details_validator = ( - MediaHubAddingPeoplePolicyChangedDetails_validator -) -EventDetails._media_hub_download_policy_changed_details_validator = ( - MediaHubDownloadPolicyChangedDetails_validator -) -EventDetails._media_hub_link_sharing_policy_changed_details_validator = ( - MediaHubLinkSharingPolicyChangedDetails_validator -) -EventDetails._member_requests_change_policy_details_validator = ( - MemberRequestsChangePolicyDetails_validator -) -EventDetails._member_send_invite_policy_changed_details_validator = ( - MemberSendInvitePolicyChangedDetails_validator -) -EventDetails._member_space_limits_add_exception_details_validator = ( - MemberSpaceLimitsAddExceptionDetails_validator -) -EventDetails._member_space_limits_change_caps_type_policy_details_validator = ( - MemberSpaceLimitsChangeCapsTypePolicyDetails_validator -) -EventDetails._member_space_limits_change_policy_details_validator = ( - MemberSpaceLimitsChangePolicyDetails_validator -) -EventDetails._member_space_limits_remove_exception_details_validator = ( - MemberSpaceLimitsRemoveExceptionDetails_validator -) -EventDetails._member_suggestions_change_policy_details_validator = ( - MemberSuggestionsChangePolicyDetails_validator -) -EventDetails._microsoft_login_change_policy_details_validator = ( - MicrosoftLoginChangePolicyDetails_validator -) -EventDetails._microsoft_office_addin_change_policy_details_validator = ( - MicrosoftOfficeAddinChangePolicyDetails_validator -) -EventDetails._multi_team_identity_policy_changed_details_validator = ( - MultiTeamIdentityPolicyChangedDetails_validator -) -EventDetails._network_control_change_policy_details_validator = ( - NetworkControlChangePolicyDetails_validator -) -EventDetails._paper_change_deployment_policy_details_validator = ( - PaperChangeDeploymentPolicyDetails_validator -) -EventDetails._paper_change_member_link_policy_details_validator = ( - PaperChangeMemberLinkPolicyDetails_validator -) -EventDetails._paper_change_member_policy_details_validator = ( - PaperChangeMemberPolicyDetails_validator -) +EventDetails._group_user_management_change_policy_details_validator = GroupUserManagementChangePolicyDetails_validator +EventDetails._integration_policy_changed_details_validator = IntegrationPolicyChangedDetails_validator +EventDetails._invite_acceptance_email_policy_changed_details_validator = InviteAcceptanceEmailPolicyChangedDetails_validator +EventDetails._media_hub_adding_people_policy_changed_details_validator = MediaHubAddingPeoplePolicyChangedDetails_validator +EventDetails._media_hub_download_policy_changed_details_validator = MediaHubDownloadPolicyChangedDetails_validator +EventDetails._media_hub_link_sharing_policy_changed_details_validator = MediaHubLinkSharingPolicyChangedDetails_validator +EventDetails._member_requests_change_policy_details_validator = MemberRequestsChangePolicyDetails_validator +EventDetails._member_send_invite_policy_changed_details_validator = MemberSendInvitePolicyChangedDetails_validator +EventDetails._member_space_limits_add_exception_details_validator = MemberSpaceLimitsAddExceptionDetails_validator +EventDetails._member_space_limits_change_caps_type_policy_details_validator = MemberSpaceLimitsChangeCapsTypePolicyDetails_validator +EventDetails._member_space_limits_change_policy_details_validator = MemberSpaceLimitsChangePolicyDetails_validator +EventDetails._member_space_limits_remove_exception_details_validator = MemberSpaceLimitsRemoveExceptionDetails_validator +EventDetails._member_suggestions_change_policy_details_validator = MemberSuggestionsChangePolicyDetails_validator +EventDetails._microsoft_login_change_policy_details_validator = MicrosoftLoginChangePolicyDetails_validator +EventDetails._microsoft_office_addin_change_policy_details_validator = MicrosoftOfficeAddinChangePolicyDetails_validator +EventDetails._multi_team_identity_policy_changed_details_validator = MultiTeamIdentityPolicyChangedDetails_validator +EventDetails._network_control_change_policy_details_validator = NetworkControlChangePolicyDetails_validator +EventDetails._paper_change_deployment_policy_details_validator = PaperChangeDeploymentPolicyDetails_validator +EventDetails._paper_change_member_link_policy_details_validator = PaperChangeMemberLinkPolicyDetails_validator +EventDetails._paper_change_member_policy_details_validator = PaperChangeMemberPolicyDetails_validator EventDetails._paper_change_policy_details_validator = PaperChangePolicyDetails_validator -EventDetails._paper_default_folder_policy_changed_details_validator = ( - PaperDefaultFolderPolicyChangedDetails_validator -) -EventDetails._paper_desktop_policy_changed_details_validator = ( - PaperDesktopPolicyChangedDetails_validator -) -EventDetails._paper_enabled_users_group_addition_details_validator = ( - PaperEnabledUsersGroupAdditionDetails_validator -) -EventDetails._paper_enabled_users_group_removal_details_validator = ( - PaperEnabledUsersGroupRemovalDetails_validator -) -EventDetails._passkey_login_policy_changed_details_validator = ( - PasskeyLoginPolicyChangedDetails_validator -) -EventDetails._password_strength_requirements_change_policy_details_validator = ( - PasswordStrengthRequirementsChangePolicyDetails_validator -) -EventDetails._permanent_delete_change_policy_details_validator = ( - PermanentDeleteChangePolicyDetails_validator -) -EventDetails._previews_ai_policy_changed_details_validator = ( - PreviewsAiPolicyChangedDetails_validator -) -EventDetails._replay_adding_people_policy_changed_details_validator = ( - ReplayAddingPeoplePolicyChangedDetails_validator -) -EventDetails._replay_sharing_policy_changed_details_validator = ( - ReplaySharingPolicyChangedDetails_validator -) -EventDetails._reseller_support_change_policy_details_validator = ( - ResellerSupportChangePolicyDetails_validator -) +EventDetails._paper_default_folder_policy_changed_details_validator = PaperDefaultFolderPolicyChangedDetails_validator +EventDetails._paper_desktop_policy_changed_details_validator = PaperDesktopPolicyChangedDetails_validator +EventDetails._paper_enabled_users_group_addition_details_validator = PaperEnabledUsersGroupAdditionDetails_validator +EventDetails._paper_enabled_users_group_removal_details_validator = PaperEnabledUsersGroupRemovalDetails_validator +EventDetails._passkey_login_policy_changed_details_validator = PasskeyLoginPolicyChangedDetails_validator +EventDetails._password_strength_requirements_change_policy_details_validator = PasswordStrengthRequirementsChangePolicyDetails_validator +EventDetails._permanent_delete_change_policy_details_validator = PermanentDeleteChangePolicyDetails_validator +EventDetails._previews_ai_policy_changed_details_validator = PreviewsAiPolicyChangedDetails_validator +EventDetails._replay_adding_people_policy_changed_details_validator = ReplayAddingPeoplePolicyChangedDetails_validator +EventDetails._replay_sharing_policy_changed_details_validator = ReplaySharingPolicyChangedDetails_validator +EventDetails._reseller_support_change_policy_details_validator = ResellerSupportChangePolicyDetails_validator EventDetails._rewind_policy_changed_details_validator = RewindPolicyChangedDetails_validator -EventDetails._send_and_track_policy_changed_details_validator = ( - SendAndTrackPolicyChangedDetails_validator -) -EventDetails._send_external_sharing_policy_changed_details_validator = ( - SendExternalSharingPolicyChangedDetails_validator -) -EventDetails._send_for_signature_policy_changed_details_validator = ( - SendForSignaturePolicyChangedDetails_validator -) -EventDetails._shared_link_default_permissions_policy_changed_details_validator = ( - SharedLinkDefaultPermissionsPolicyChangedDetails_validator -) -EventDetails._sharing_change_folder_join_policy_details_validator = ( - SharingChangeFolderJoinPolicyDetails_validator -) -EventDetails._sharing_change_link_allow_change_expiration_policy_details_validator = ( - SharingChangeLinkAllowChangeExpirationPolicyDetails_validator -) -EventDetails._sharing_change_link_default_expiration_policy_details_validator = ( - SharingChangeLinkDefaultExpirationPolicyDetails_validator -) -EventDetails._sharing_change_link_enforce_password_policy_details_validator = ( - SharingChangeLinkEnforcePasswordPolicyDetails_validator -) -EventDetails._sharing_change_link_policy_details_validator = ( - SharingChangeLinkPolicyDetails_validator -) -EventDetails._sharing_change_member_policy_details_validator = ( - SharingChangeMemberPolicyDetails_validator -) -EventDetails._showcase_change_download_policy_details_validator = ( - ShowcaseChangeDownloadPolicyDetails_validator -) -EventDetails._showcase_change_enabled_policy_details_validator = ( - ShowcaseChangeEnabledPolicyDetails_validator -) -EventDetails._showcase_change_external_sharing_policy_details_validator = ( - ShowcaseChangeExternalSharingPolicyDetails_validator -) -EventDetails._sign_external_sharing_policy_changed_details_validator = ( - SignExternalSharingPolicyChangedDetails_validator -) -EventDetails._sign_template_creation_permission_changed_details_validator = ( - SignTemplateCreationPermissionChangedDetails_validator -) -EventDetails._smarter_smart_sync_policy_changed_details_validator = ( - SmarterSmartSyncPolicyChangedDetails_validator -) +EventDetails._send_and_track_policy_changed_details_validator = SendAndTrackPolicyChangedDetails_validator +EventDetails._send_external_sharing_policy_changed_details_validator = SendExternalSharingPolicyChangedDetails_validator +EventDetails._send_for_signature_policy_changed_details_validator = SendForSignaturePolicyChangedDetails_validator +EventDetails._shared_link_default_permissions_policy_changed_details_validator = SharedLinkDefaultPermissionsPolicyChangedDetails_validator +EventDetails._sharing_change_folder_join_policy_details_validator = SharingChangeFolderJoinPolicyDetails_validator +EventDetails._sharing_change_link_allow_change_expiration_policy_details_validator = SharingChangeLinkAllowChangeExpirationPolicyDetails_validator +EventDetails._sharing_change_link_default_expiration_policy_details_validator = SharingChangeLinkDefaultExpirationPolicyDetails_validator +EventDetails._sharing_change_link_enforce_password_policy_details_validator = SharingChangeLinkEnforcePasswordPolicyDetails_validator +EventDetails._sharing_change_link_policy_details_validator = SharingChangeLinkPolicyDetails_validator +EventDetails._sharing_change_member_policy_details_validator = SharingChangeMemberPolicyDetails_validator +EventDetails._showcase_change_download_policy_details_validator = ShowcaseChangeDownloadPolicyDetails_validator +EventDetails._showcase_change_enabled_policy_details_validator = ShowcaseChangeEnabledPolicyDetails_validator +EventDetails._showcase_change_external_sharing_policy_details_validator = ShowcaseChangeExternalSharingPolicyDetails_validator +EventDetails._sign_external_sharing_policy_changed_details_validator = SignExternalSharingPolicyChangedDetails_validator +EventDetails._sign_template_creation_permission_changed_details_validator = SignTemplateCreationPermissionChangedDetails_validator +EventDetails._smarter_smart_sync_policy_changed_details_validator = SmarterSmartSyncPolicyChangedDetails_validator EventDetails._smart_sync_change_policy_details_validator = SmartSyncChangePolicyDetails_validator EventDetails._smart_sync_not_opt_out_details_validator = SmartSyncNotOptOutDetails_validator EventDetails._smart_sync_opt_out_details_validator = SmartSyncOptOutDetails_validator EventDetails._sso_change_policy_details_validator = SsoChangePolicyDetails_validator -EventDetails._stack_cross_team_access_policy_changed_details_validator = ( - StackCrossTeamAccessPolicyChangedDetails_validator -) -EventDetails._team_branding_policy_changed_details_validator = ( - TeamBrandingPolicyChangedDetails_validator -) -EventDetails._team_extensions_policy_changed_details_validator = ( - TeamExtensionsPolicyChangedDetails_validator -) -EventDetails._team_member_storage_request_policy_changed_details_validator = ( - TeamMemberStorageRequestPolicyChangedDetails_validator -) -EventDetails._team_selective_sync_policy_changed_details_validator = ( - TeamSelectiveSyncPolicyChangedDetails_validator -) -EventDetails._team_sharing_whitelist_subjects_changed_details_validator = ( - TeamSharingWhitelistSubjectsChangedDetails_validator -) +EventDetails._stack_cross_team_access_policy_changed_details_validator = StackCrossTeamAccessPolicyChangedDetails_validator +EventDetails._team_branding_policy_changed_details_validator = TeamBrandingPolicyChangedDetails_validator +EventDetails._team_extensions_policy_changed_details_validator = TeamExtensionsPolicyChangedDetails_validator +EventDetails._team_member_storage_request_policy_changed_details_validator = TeamMemberStorageRequestPolicyChangedDetails_validator +EventDetails._team_selective_sync_policy_changed_details_validator = TeamSelectiveSyncPolicyChangedDetails_validator +EventDetails._team_sharing_whitelist_subjects_changed_details_validator = TeamSharingWhitelistSubjectsChangedDetails_validator EventDetails._tfa_add_exception_details_validator = TfaAddExceptionDetails_validator EventDetails._tfa_change_policy_details_validator = TfaChangePolicyDetails_validator EventDetails._tfa_remove_exception_details_validator = TfaRemoveExceptionDetails_validator -EventDetails._top_level_content_policy_changed_details_validator = ( - TopLevelContentPolicyChangedDetails_validator -) +EventDetails._top_level_content_policy_changed_details_validator = TopLevelContentPolicyChangedDetails_validator EventDetails._two_account_change_policy_details_validator = TwoAccountChangePolicyDetails_validator -EventDetails._viewer_info_policy_changed_details_validator = ( - ViewerInfoPolicyChangedDetails_validator -) -EventDetails._watermarking_policy_changed_details_validator = ( - WatermarkingPolicyChangedDetails_validator -) -EventDetails._web_sessions_change_active_session_limit_details_validator = ( - WebSessionsChangeActiveSessionLimitDetails_validator -) -EventDetails._web_sessions_change_fixed_length_policy_details_validator = ( - WebSessionsChangeFixedLengthPolicyDetails_validator -) -EventDetails._web_sessions_change_idle_length_policy_details_validator = ( - WebSessionsChangeIdleLengthPolicyDetails_validator -) -EventDetails._data_residency_migration_request_successful_details_validator = ( - DataResidencyMigrationRequestSuccessfulDetails_validator -) -EventDetails._data_residency_migration_request_unsuccessful_details_validator = ( - DataResidencyMigrationRequestUnsuccessfulDetails_validator -) +EventDetails._viewer_info_policy_changed_details_validator = ViewerInfoPolicyChangedDetails_validator +EventDetails._watermarking_policy_changed_details_validator = WatermarkingPolicyChangedDetails_validator +EventDetails._web_sessions_change_active_session_limit_details_validator = WebSessionsChangeActiveSessionLimitDetails_validator +EventDetails._web_sessions_change_fixed_length_policy_details_validator = WebSessionsChangeFixedLengthPolicyDetails_validator +EventDetails._web_sessions_change_idle_length_policy_details_validator = WebSessionsChangeIdleLengthPolicyDetails_validator +EventDetails._data_residency_migration_request_successful_details_validator = DataResidencyMigrationRequestSuccessfulDetails_validator +EventDetails._data_residency_migration_request_unsuccessful_details_validator = DataResidencyMigrationRequestUnsuccessfulDetails_validator EventDetails._team_merge_from_details_validator = TeamMergeFromDetails_validator EventDetails._team_merge_to_details_validator = TeamMergeToDetails_validator -EventDetails._team_profile_add_background_details_validator = ( - TeamProfileAddBackgroundDetails_validator -) +EventDetails._team_profile_add_background_details_validator = TeamProfileAddBackgroundDetails_validator EventDetails._team_profile_add_logo_details_validator = TeamProfileAddLogoDetails_validator -EventDetails._team_profile_change_background_details_validator = ( - TeamProfileChangeBackgroundDetails_validator -) -EventDetails._team_profile_change_default_language_details_validator = ( - TeamProfileChangeDefaultLanguageDetails_validator -) +EventDetails._team_profile_change_background_details_validator = TeamProfileChangeBackgroundDetails_validator +EventDetails._team_profile_change_default_language_details_validator = TeamProfileChangeDefaultLanguageDetails_validator EventDetails._team_profile_change_logo_details_validator = TeamProfileChangeLogoDetails_validator EventDetails._team_profile_change_name_details_validator = TeamProfileChangeNameDetails_validator -EventDetails._team_profile_remove_background_details_validator = ( - TeamProfileRemoveBackgroundDetails_validator -) +EventDetails._team_profile_remove_background_details_validator = TeamProfileRemoveBackgroundDetails_validator EventDetails._team_profile_remove_logo_details_validator = TeamProfileRemoveLogoDetails_validator EventDetails._passkey_add_details_validator = PasskeyAddDetails_validator EventDetails._passkey_remove_details_validator = PasskeyRemoveDetails_validator @@ -102599,719 +97264,663 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): EventDetails._tfa_remove_backup_phone_details_validator = TfaRemoveBackupPhoneDetails_validator EventDetails._tfa_remove_security_key_details_validator = TfaRemoveSecurityKeyDetails_validator EventDetails._tfa_reset_details_validator = TfaResetDetails_validator -EventDetails._changed_enterprise_admin_role_details_validator = ( - ChangedEnterpriseAdminRoleDetails_validator -) -EventDetails._changed_enterprise_connected_team_status_details_validator = ( - ChangedEnterpriseConnectedTeamStatusDetails_validator -) -EventDetails._ended_enterprise_admin_session_details_validator = ( - EndedEnterpriseAdminSessionDetails_validator -) -EventDetails._ended_enterprise_admin_session_deprecated_details_validator = ( - EndedEnterpriseAdminSessionDeprecatedDetails_validator -) -EventDetails._enterprise_settings_locking_details_validator = ( - EnterpriseSettingsLockingDetails_validator -) +EventDetails._changed_enterprise_admin_role_details_validator = ChangedEnterpriseAdminRoleDetails_validator +EventDetails._changed_enterprise_connected_team_status_details_validator = ChangedEnterpriseConnectedTeamStatusDetails_validator +EventDetails._ended_enterprise_admin_session_details_validator = EndedEnterpriseAdminSessionDetails_validator +EventDetails._ended_enterprise_admin_session_deprecated_details_validator = EndedEnterpriseAdminSessionDeprecatedDetails_validator +EventDetails._enterprise_settings_locking_details_validator = EnterpriseSettingsLockingDetails_validator EventDetails._guest_admin_change_status_details_validator = GuestAdminChangeStatusDetails_validator -EventDetails._started_enterprise_admin_session_details_validator = ( - StartedEnterpriseAdminSessionDetails_validator -) -EventDetails._team_merge_request_accepted_details_validator = ( - TeamMergeRequestAcceptedDetails_validator -) -EventDetails._team_merge_request_accepted_shown_to_primary_team_details_validator = ( - TeamMergeRequestAcceptedShownToPrimaryTeamDetails_validator -) -EventDetails._team_merge_request_accepted_shown_to_secondary_team_details_validator = ( - TeamMergeRequestAcceptedShownToSecondaryTeamDetails_validator -) -EventDetails._team_merge_request_auto_canceled_details_validator = ( - TeamMergeRequestAutoCanceledDetails_validator -) -EventDetails._team_merge_request_canceled_details_validator = ( - TeamMergeRequestCanceledDetails_validator -) -EventDetails._team_merge_request_canceled_shown_to_primary_team_details_validator = ( - TeamMergeRequestCanceledShownToPrimaryTeamDetails_validator -) -EventDetails._team_merge_request_canceled_shown_to_secondary_team_details_validator = ( - TeamMergeRequestCanceledShownToSecondaryTeamDetails_validator -) -EventDetails._team_merge_request_expired_details_validator = ( - TeamMergeRequestExpiredDetails_validator -) -EventDetails._team_merge_request_expired_shown_to_primary_team_details_validator = ( - TeamMergeRequestExpiredShownToPrimaryTeamDetails_validator -) -EventDetails._team_merge_request_expired_shown_to_secondary_team_details_validator = ( - TeamMergeRequestExpiredShownToSecondaryTeamDetails_validator -) -EventDetails._team_merge_request_rejected_shown_to_primary_team_details_validator = ( - TeamMergeRequestRejectedShownToPrimaryTeamDetails_validator -) -EventDetails._team_merge_request_rejected_shown_to_secondary_team_details_validator = ( - TeamMergeRequestRejectedShownToSecondaryTeamDetails_validator -) -EventDetails._team_merge_request_reminder_details_validator = ( - TeamMergeRequestReminderDetails_validator -) -EventDetails._team_merge_request_reminder_shown_to_primary_team_details_validator = ( - TeamMergeRequestReminderShownToPrimaryTeamDetails_validator -) -EventDetails._team_merge_request_reminder_shown_to_secondary_team_details_validator = ( - TeamMergeRequestReminderShownToSecondaryTeamDetails_validator -) -EventDetails._team_merge_request_revoked_details_validator = ( - TeamMergeRequestRevokedDetails_validator -) -EventDetails._team_merge_request_sent_shown_to_primary_team_details_validator = ( - TeamMergeRequestSentShownToPrimaryTeamDetails_validator -) -EventDetails._team_merge_request_sent_shown_to_secondary_team_details_validator = ( - TeamMergeRequestSentShownToSecondaryTeamDetails_validator -) +EventDetails._started_enterprise_admin_session_details_validator = StartedEnterpriseAdminSessionDetails_validator +EventDetails._team_merge_request_accepted_details_validator = TeamMergeRequestAcceptedDetails_validator +EventDetails._team_merge_request_accepted_shown_to_primary_team_details_validator = TeamMergeRequestAcceptedShownToPrimaryTeamDetails_validator +EventDetails._team_merge_request_accepted_shown_to_secondary_team_details_validator = TeamMergeRequestAcceptedShownToSecondaryTeamDetails_validator +EventDetails._team_merge_request_auto_canceled_details_validator = TeamMergeRequestAutoCanceledDetails_validator +EventDetails._team_merge_request_canceled_details_validator = TeamMergeRequestCanceledDetails_validator +EventDetails._team_merge_request_canceled_shown_to_primary_team_details_validator = TeamMergeRequestCanceledShownToPrimaryTeamDetails_validator +EventDetails._team_merge_request_canceled_shown_to_secondary_team_details_validator = TeamMergeRequestCanceledShownToSecondaryTeamDetails_validator +EventDetails._team_merge_request_expired_details_validator = TeamMergeRequestExpiredDetails_validator +EventDetails._team_merge_request_expired_shown_to_primary_team_details_validator = TeamMergeRequestExpiredShownToPrimaryTeamDetails_validator +EventDetails._team_merge_request_expired_shown_to_secondary_team_details_validator = TeamMergeRequestExpiredShownToSecondaryTeamDetails_validator +EventDetails._team_merge_request_rejected_shown_to_primary_team_details_validator = TeamMergeRequestRejectedShownToPrimaryTeamDetails_validator +EventDetails._team_merge_request_rejected_shown_to_secondary_team_details_validator = TeamMergeRequestRejectedShownToSecondaryTeamDetails_validator +EventDetails._team_merge_request_reminder_details_validator = TeamMergeRequestReminderDetails_validator +EventDetails._team_merge_request_reminder_shown_to_primary_team_details_validator = TeamMergeRequestReminderShownToPrimaryTeamDetails_validator +EventDetails._team_merge_request_reminder_shown_to_secondary_team_details_validator = TeamMergeRequestReminderShownToSecondaryTeamDetails_validator +EventDetails._team_merge_request_revoked_details_validator = TeamMergeRequestRevokedDetails_validator +EventDetails._team_merge_request_sent_shown_to_primary_team_details_validator = TeamMergeRequestSentShownToPrimaryTeamDetails_validator +EventDetails._team_merge_request_sent_shown_to_secondary_team_details_validator = TeamMergeRequestSentShownToSecondaryTeamDetails_validator EventDetails._missing_details_validator = MissingDetails_validator EventDetails._other_validator = bv.Void() EventDetails._tagmap = { - "admin_alerting_alert_state_changed_details": EventDetails._admin_alerting_alert_state_changed_details_validator, - "admin_alerting_changed_alert_config_details": EventDetails._admin_alerting_changed_alert_config_details_validator, - "admin_alerting_triggered_alert_details": EventDetails._admin_alerting_triggered_alert_details_validator, - "ransomware_restore_process_completed_details": EventDetails._ransomware_restore_process_completed_details_validator, - "ransomware_restore_process_started_details": EventDetails._ransomware_restore_process_started_details_validator, - "app_blocked_by_permissions_details": EventDetails._app_blocked_by_permissions_details_validator, - "app_link_team_details": EventDetails._app_link_team_details_validator, - "app_link_user_details": EventDetails._app_link_user_details_validator, - "app_unlink_team_details": EventDetails._app_unlink_team_details_validator, - "app_unlink_user_details": EventDetails._app_unlink_user_details_validator, - "integration_connected_details": EventDetails._integration_connected_details_validator, - "integration_disconnected_details": EventDetails._integration_disconnected_details_validator, - "file_add_comment_details": EventDetails._file_add_comment_details_validator, - "file_change_comment_subscription_details": EventDetails._file_change_comment_subscription_details_validator, - "file_delete_comment_details": EventDetails._file_delete_comment_details_validator, - "file_edit_comment_details": EventDetails._file_edit_comment_details_validator, - "file_like_comment_details": EventDetails._file_like_comment_details_validator, - "file_resolve_comment_details": EventDetails._file_resolve_comment_details_validator, - "file_unlike_comment_details": EventDetails._file_unlike_comment_details_validator, - "file_unresolve_comment_details": EventDetails._file_unresolve_comment_details_validator, - "dash_added_comment_to_stack_details": EventDetails._dash_added_comment_to_stack_details_validator, - "dash_added_connector_details": EventDetails._dash_added_connector_details_validator, - "dash_added_link_to_stack_details": EventDetails._dash_added_link_to_stack_details_validator, - "dash_added_team_email_domain_allowlist_details": EventDetails._dash_added_team_email_domain_allowlist_details_validator, - "dash_admin_added_org_wide_connector_details": EventDetails._dash_admin_added_org_wide_connector_details_validator, - "dash_admin_disabled_connector_details": EventDetails._dash_admin_disabled_connector_details_validator, - "dash_admin_enabled_connector_details": EventDetails._dash_admin_enabled_connector_details_validator, - "dash_admin_removed_org_wide_connector_details": EventDetails._dash_admin_removed_org_wide_connector_details_validator, - "dash_archived_stack_details": EventDetails._dash_archived_stack_details_validator, - "dash_changed_audience_of_shared_link_to_stack_details": EventDetails._dash_changed_audience_of_shared_link_to_stack_details_validator, - "dash_cloned_stack_details": EventDetails._dash_cloned_stack_details_validator, - "dash_connector_tools_call_details": EventDetails._dash_connector_tools_call_details_validator, - "dash_created_stack_details": EventDetails._dash_created_stack_details_validator, - "dash_deleted_comment_from_stack_details": EventDetails._dash_deleted_comment_from_stack_details_validator, - "dash_deleted_stack_details": EventDetails._dash_deleted_stack_details_validator, - "dash_edited_comment_in_stack_details": EventDetails._dash_edited_comment_in_stack_details_validator, - "dash_external_user_opened_stack_details": EventDetails._dash_external_user_opened_stack_details_validator, - "dash_first_launched_desktop_details": EventDetails._dash_first_launched_desktop_details_validator, - "dash_first_launched_extension_details": EventDetails._dash_first_launched_extension_details_validator, - "dash_first_launched_web_start_page_details": EventDetails._dash_first_launched_web_start_page_details_validator, - "dash_opened_shared_link_to_stack_details": EventDetails._dash_opened_shared_link_to_stack_details_validator, - "dash_opened_stack_details": EventDetails._dash_opened_stack_details_validator, - "dash_preview_opt_out_status_changed_details": EventDetails._dash_preview_opt_out_status_changed_details_validator, - "dash_removed_connector_details": EventDetails._dash_removed_connector_details_validator, - "dash_removed_link_from_stack_details": EventDetails._dash_removed_link_from_stack_details_validator, - "dash_removed_shared_link_to_stack_details": EventDetails._dash_removed_shared_link_to_stack_details_validator, - "dash_removed_team_email_domain_allowlist_details": EventDetails._dash_removed_team_email_domain_allowlist_details_validator, - "dash_renamed_stack_details": EventDetails._dash_renamed_stack_details_validator, - "dash_shared_link_to_stack_details": EventDetails._dash_shared_link_to_stack_details_validator, - "dash_unarchived_stack_details": EventDetails._dash_unarchived_stack_details_validator, - "dash_viewed_company_stack_details": EventDetails._dash_viewed_company_stack_details_validator, - "dash_viewed_external_ai_activity_report_details": EventDetails._dash_viewed_external_ai_activity_report_details_validator, - "governance_policy_add_folders_details": EventDetails._governance_policy_add_folders_details_validator, - "governance_policy_add_folder_failed_details": EventDetails._governance_policy_add_folder_failed_details_validator, - "governance_policy_content_disposed_details": EventDetails._governance_policy_content_disposed_details_validator, - "governance_policy_create_details": EventDetails._governance_policy_create_details_validator, - "governance_policy_delete_details": EventDetails._governance_policy_delete_details_validator, - "governance_policy_edit_details_details": EventDetails._governance_policy_edit_details_details_validator, - "governance_policy_edit_duration_details": EventDetails._governance_policy_edit_duration_details_validator, - "governance_policy_export_created_details": EventDetails._governance_policy_export_created_details_validator, - "governance_policy_export_removed_details": EventDetails._governance_policy_export_removed_details_validator, - "governance_policy_remove_folders_details": EventDetails._governance_policy_remove_folders_details_validator, - "governance_policy_report_created_details": EventDetails._governance_policy_report_created_details_validator, - "governance_policy_zip_part_downloaded_details": EventDetails._governance_policy_zip_part_downloaded_details_validator, - "legal_holds_activate_a_hold_details": EventDetails._legal_holds_activate_a_hold_details_validator, - "legal_holds_add_members_details": EventDetails._legal_holds_add_members_details_validator, - "legal_holds_change_hold_details_details": EventDetails._legal_holds_change_hold_details_details_validator, - "legal_holds_change_hold_name_details": EventDetails._legal_holds_change_hold_name_details_validator, - "legal_holds_export_a_hold_details": EventDetails._legal_holds_export_a_hold_details_validator, - "legal_holds_export_cancelled_details": EventDetails._legal_holds_export_cancelled_details_validator, - "legal_holds_export_downloaded_details": EventDetails._legal_holds_export_downloaded_details_validator, - "legal_holds_export_removed_details": EventDetails._legal_holds_export_removed_details_validator, - "legal_holds_release_a_hold_details": EventDetails._legal_holds_release_a_hold_details_validator, - "legal_holds_remove_members_details": EventDetails._legal_holds_remove_members_details_validator, - "legal_holds_report_a_hold_details": EventDetails._legal_holds_report_a_hold_details_validator, - "device_change_ip_desktop_details": EventDetails._device_change_ip_desktop_details_validator, - "device_change_ip_mobile_details": EventDetails._device_change_ip_mobile_details_validator, - "device_change_ip_web_details": EventDetails._device_change_ip_web_details_validator, - "device_delete_on_unlink_fail_details": EventDetails._device_delete_on_unlink_fail_details_validator, - "device_delete_on_unlink_success_details": EventDetails._device_delete_on_unlink_success_details_validator, - "device_link_fail_details": EventDetails._device_link_fail_details_validator, - "device_link_success_details": EventDetails._device_link_success_details_validator, - "device_management_disabled_details": EventDetails._device_management_disabled_details_validator, - "device_management_enabled_details": EventDetails._device_management_enabled_details_validator, - "device_sync_backup_status_changed_details": EventDetails._device_sync_backup_status_changed_details_validator, - "device_unlink_details": EventDetails._device_unlink_details_validator, - "dropbox_passwords_exported_details": EventDetails._dropbox_passwords_exported_details_validator, - "dropbox_passwords_new_device_enrolled_details": EventDetails._dropbox_passwords_new_device_enrolled_details_validator, - "emm_refresh_auth_token_details": EventDetails._emm_refresh_auth_token_details_validator, - "external_drive_backup_eligibility_status_checked_details": EventDetails._external_drive_backup_eligibility_status_checked_details_validator, - "external_drive_backup_status_changed_details": EventDetails._external_drive_backup_status_changed_details_validator, - "account_capture_change_availability_details": EventDetails._account_capture_change_availability_details_validator, - "account_capture_migrate_account_details": EventDetails._account_capture_migrate_account_details_validator, - "account_capture_notification_emails_sent_details": EventDetails._account_capture_notification_emails_sent_details_validator, - "account_capture_relinquish_account_details": EventDetails._account_capture_relinquish_account_details_validator, - "disabled_domain_invites_details": EventDetails._disabled_domain_invites_details_validator, - "domain_invites_approve_request_to_join_team_details": EventDetails._domain_invites_approve_request_to_join_team_details_validator, - "domain_invites_decline_request_to_join_team_details": EventDetails._domain_invites_decline_request_to_join_team_details_validator, - "domain_invites_email_existing_users_details": EventDetails._domain_invites_email_existing_users_details_validator, - "domain_invites_request_to_join_team_details": EventDetails._domain_invites_request_to_join_team_details_validator, - "domain_invites_set_invite_new_user_pref_to_no_details": EventDetails._domain_invites_set_invite_new_user_pref_to_no_details_validator, - "domain_invites_set_invite_new_user_pref_to_yes_details": EventDetails._domain_invites_set_invite_new_user_pref_to_yes_details_validator, - "domain_verification_add_domain_fail_details": EventDetails._domain_verification_add_domain_fail_details_validator, - "domain_verification_add_domain_success_details": EventDetails._domain_verification_add_domain_success_details_validator, - "domain_verification_remove_domain_details": EventDetails._domain_verification_remove_domain_details_validator, - "enabled_domain_invites_details": EventDetails._enabled_domain_invites_details_validator, - "encrypted_folder_cancel_team_key_rotation_details": EventDetails._encrypted_folder_cancel_team_key_rotation_details_validator, - "encrypted_folder_enroll_backup_key_details": EventDetails._encrypted_folder_enroll_backup_key_details_validator, - "encrypted_folder_enroll_client_details": EventDetails._encrypted_folder_enroll_client_details_validator, - "encrypted_folder_enroll_team_details": EventDetails._encrypted_folder_enroll_team_details_validator, - "encrypted_folder_finish_team_unenrollment_details": EventDetails._encrypted_folder_finish_team_unenrollment_details_validator, - "encrypted_folder_init_team_key_rotation_details": EventDetails._encrypted_folder_init_team_key_rotation_details_validator, - "encrypted_folder_init_team_unenrollment_details": EventDetails._encrypted_folder_init_team_unenrollment_details_validator, - "encrypted_folder_remove_backup_key_details": EventDetails._encrypted_folder_remove_backup_key_details_validator, - "encrypted_folder_rotate_team_key_details": EventDetails._encrypted_folder_rotate_team_key_details_validator, - "encrypted_folder_unenroll_client_details": EventDetails._encrypted_folder_unenroll_client_details_validator, - "team_encryption_key_activate_key_details": EventDetails._team_encryption_key_activate_key_details_validator, - "team_encryption_key_cancel_key_deletion_details": EventDetails._team_encryption_key_cancel_key_deletion_details_validator, - "team_encryption_key_create_key_details": EventDetails._team_encryption_key_create_key_details_validator, - "team_encryption_key_deactivate_key_details": EventDetails._team_encryption_key_deactivate_key_details_validator, - "team_encryption_key_delete_key_details": EventDetails._team_encryption_key_delete_key_details_validator, - "team_encryption_key_disable_key_details": EventDetails._team_encryption_key_disable_key_details_validator, - "team_encryption_key_enable_key_details": EventDetails._team_encryption_key_enable_key_details_validator, - "team_encryption_key_rotate_key_details": EventDetails._team_encryption_key_rotate_key_details_validator, - "team_encryption_key_schedule_key_deletion_details": EventDetails._team_encryption_key_schedule_key_deletion_details_validator, - "apply_naming_convention_details": EventDetails._apply_naming_convention_details_validator, - "create_folder_details": EventDetails._create_folder_details_validator, - "file_add_details": EventDetails._file_add_details_validator, - "file_add_from_automation_details": EventDetails._file_add_from_automation_details_validator, - "file_copy_details": EventDetails._file_copy_details_validator, - "file_delete_details": EventDetails._file_delete_details_validator, - "file_download_details": EventDetails._file_download_details_validator, - "file_edit_details": EventDetails._file_edit_details_validator, - "file_get_copy_reference_details": EventDetails._file_get_copy_reference_details_validator, - "file_locking_lock_status_changed_details": EventDetails._file_locking_lock_status_changed_details_validator, - "file_move_details": EventDetails._file_move_details_validator, - "file_permanently_delete_details": EventDetails._file_permanently_delete_details_validator, - "file_preview_details": EventDetails._file_preview_details_validator, - "file_rename_details": EventDetails._file_rename_details_validator, - "file_restore_details": EventDetails._file_restore_details_validator, - "file_revert_details": EventDetails._file_revert_details_validator, - "file_rollback_changes_details": EventDetails._file_rollback_changes_details_validator, - "file_save_copy_reference_details": EventDetails._file_save_copy_reference_details_validator, - "folder_overview_description_changed_details": EventDetails._folder_overview_description_changed_details_validator, - "folder_overview_item_pinned_details": EventDetails._folder_overview_item_pinned_details_validator, - "folder_overview_item_unpinned_details": EventDetails._folder_overview_item_unpinned_details_validator, - "media_hub_file_downloaded_details": EventDetails._media_hub_file_downloaded_details_validator, - "object_label_added_details": EventDetails._object_label_added_details_validator, - "object_label_removed_details": EventDetails._object_label_removed_details_validator, - "object_label_updated_value_details": EventDetails._object_label_updated_value_details_validator, - "organize_folder_with_tidy_details": EventDetails._organize_folder_with_tidy_details_validator, - "replay_file_delete_details": EventDetails._replay_file_delete_details_validator, - "replay_file_downloaded_details": EventDetails._replay_file_downloaded_details_validator, - "replay_team_project_created_details": EventDetails._replay_team_project_created_details_validator, - "rewind_folder_details": EventDetails._rewind_folder_details_validator, - "undo_naming_convention_details": EventDetails._undo_naming_convention_details_validator, - "undo_organize_folder_with_tidy_details": EventDetails._undo_organize_folder_with_tidy_details_validator, - "user_tags_added_details": EventDetails._user_tags_added_details_validator, - "user_tags_removed_details": EventDetails._user_tags_removed_details_validator, - "email_ingest_receive_file_details": EventDetails._email_ingest_receive_file_details_validator, - "file_request_auto_close_details": EventDetails._file_request_auto_close_details_validator, - "file_request_change_details": EventDetails._file_request_change_details_validator, - "file_request_close_details": EventDetails._file_request_close_details_validator, - "file_request_create_details": EventDetails._file_request_create_details_validator, - "file_request_delete_details": EventDetails._file_request_delete_details_validator, - "file_request_receive_file_details": EventDetails._file_request_receive_file_details_validator, - "group_add_external_id_details": EventDetails._group_add_external_id_details_validator, - "group_add_member_details": EventDetails._group_add_member_details_validator, - "group_change_external_id_details": EventDetails._group_change_external_id_details_validator, - "group_change_management_type_details": EventDetails._group_change_management_type_details_validator, - "group_change_member_role_details": EventDetails._group_change_member_role_details_validator, - "group_create_details": EventDetails._group_create_details_validator, - "group_delete_details": EventDetails._group_delete_details_validator, - "group_description_updated_details": EventDetails._group_description_updated_details_validator, - "group_external_sharing_setting_override_changed_details": EventDetails._group_external_sharing_setting_override_changed_details_validator, - "group_join_policy_updated_details": EventDetails._group_join_policy_updated_details_validator, - "group_moved_details": EventDetails._group_moved_details_validator, - "group_remove_external_id_details": EventDetails._group_remove_external_id_details_validator, - "group_remove_member_details": EventDetails._group_remove_member_details_validator, - "group_rename_details": EventDetails._group_rename_details_validator, - "account_lock_or_unlocked_details": EventDetails._account_lock_or_unlocked_details_validator, - "emm_error_details": EventDetails._emm_error_details_validator, - "guest_admin_signed_in_via_trusted_teams_details": EventDetails._guest_admin_signed_in_via_trusted_teams_details_validator, - "guest_admin_signed_out_via_trusted_teams_details": EventDetails._guest_admin_signed_out_via_trusted_teams_details_validator, - "login_fail_details": EventDetails._login_fail_details_validator, - "login_success_details": EventDetails._login_success_details_validator, - "logout_details": EventDetails._logout_details_validator, - "reseller_support_session_end_details": EventDetails._reseller_support_session_end_details_validator, - "reseller_support_session_start_details": EventDetails._reseller_support_session_start_details_validator, - "sign_in_as_session_end_details": EventDetails._sign_in_as_session_end_details_validator, - "sign_in_as_session_start_details": EventDetails._sign_in_as_session_start_details_validator, - "sso_error_details": EventDetails._sso_error_details_validator, - "addon_assigned_details": EventDetails._addon_assigned_details_validator, - "addon_removed_details": EventDetails._addon_removed_details_validator, - "backup_admin_invitation_sent_details": EventDetails._backup_admin_invitation_sent_details_validator, - "backup_invitation_opened_details": EventDetails._backup_invitation_opened_details_validator, - "create_team_invite_link_details": EventDetails._create_team_invite_link_details_validator, - "delete_team_invite_link_details": EventDetails._delete_team_invite_link_details_validator, - "member_add_external_id_details": EventDetails._member_add_external_id_details_validator, - "member_add_name_details": EventDetails._member_add_name_details_validator, - "member_change_admin_role_details": EventDetails._member_change_admin_role_details_validator, - "member_change_email_details": EventDetails._member_change_email_details_validator, - "member_change_external_id_details": EventDetails._member_change_external_id_details_validator, - "member_change_membership_type_details": EventDetails._member_change_membership_type_details_validator, - "member_change_name_details": EventDetails._member_change_name_details_validator, - "member_change_reseller_role_details": EventDetails._member_change_reseller_role_details_validator, - "member_change_status_details": EventDetails._member_change_status_details_validator, - "member_delete_manual_contacts_details": EventDetails._member_delete_manual_contacts_details_validator, - "member_delete_profile_photo_details": EventDetails._member_delete_profile_photo_details_validator, - "member_permanently_delete_account_contents_details": EventDetails._member_permanently_delete_account_contents_details_validator, - "member_remove_external_id_details": EventDetails._member_remove_external_id_details_validator, - "member_set_profile_photo_details": EventDetails._member_set_profile_photo_details_validator, - "member_space_limits_add_custom_quota_details": EventDetails._member_space_limits_add_custom_quota_details_validator, - "member_space_limits_change_custom_quota_details": EventDetails._member_space_limits_change_custom_quota_details_validator, - "member_space_limits_change_status_details": EventDetails._member_space_limits_change_status_details_validator, - "member_space_limits_remove_custom_quota_details": EventDetails._member_space_limits_remove_custom_quota_details_validator, - "member_suggest_details": EventDetails._member_suggest_details_validator, - "member_transfer_account_contents_details": EventDetails._member_transfer_account_contents_details_validator, - "pending_secondary_email_added_details": EventDetails._pending_secondary_email_added_details_validator, - "product_assigned_to_member_details": EventDetails._product_assigned_to_member_details_validator, - "product_removed_from_member_details": EventDetails._product_removed_from_member_details_validator, - "secondary_email_deleted_details": EventDetails._secondary_email_deleted_details_validator, - "secondary_email_verified_details": EventDetails._secondary_email_verified_details_validator, - "secondary_mails_policy_changed_details": EventDetails._secondary_mails_policy_changed_details_validator, - "binder_add_page_details": EventDetails._binder_add_page_details_validator, - "binder_add_section_details": EventDetails._binder_add_section_details_validator, - "binder_remove_page_details": EventDetails._binder_remove_page_details_validator, - "binder_remove_section_details": EventDetails._binder_remove_section_details_validator, - "binder_rename_page_details": EventDetails._binder_rename_page_details_validator, - "binder_rename_section_details": EventDetails._binder_rename_section_details_validator, - "binder_reorder_page_details": EventDetails._binder_reorder_page_details_validator, - "binder_reorder_section_details": EventDetails._binder_reorder_section_details_validator, - "paper_content_add_member_details": EventDetails._paper_content_add_member_details_validator, - "paper_content_add_to_folder_details": EventDetails._paper_content_add_to_folder_details_validator, - "paper_content_archive_details": EventDetails._paper_content_archive_details_validator, - "paper_content_create_details": EventDetails._paper_content_create_details_validator, - "paper_content_permanently_delete_details": EventDetails._paper_content_permanently_delete_details_validator, - "paper_content_remove_from_folder_details": EventDetails._paper_content_remove_from_folder_details_validator, - "paper_content_remove_member_details": EventDetails._paper_content_remove_member_details_validator, - "paper_content_rename_details": EventDetails._paper_content_rename_details_validator, - "paper_content_restore_details": EventDetails._paper_content_restore_details_validator, - "paper_doc_add_comment_details": EventDetails._paper_doc_add_comment_details_validator, - "paper_doc_change_member_role_details": EventDetails._paper_doc_change_member_role_details_validator, - "paper_doc_change_sharing_policy_details": EventDetails._paper_doc_change_sharing_policy_details_validator, - "paper_doc_change_subscription_details": EventDetails._paper_doc_change_subscription_details_validator, - "paper_doc_deleted_details": EventDetails._paper_doc_deleted_details_validator, - "paper_doc_delete_comment_details": EventDetails._paper_doc_delete_comment_details_validator, - "paper_doc_download_details": EventDetails._paper_doc_download_details_validator, - "paper_doc_edit_details": EventDetails._paper_doc_edit_details_validator, - "paper_doc_edit_comment_details": EventDetails._paper_doc_edit_comment_details_validator, - "paper_doc_followed_details": EventDetails._paper_doc_followed_details_validator, - "paper_doc_mention_details": EventDetails._paper_doc_mention_details_validator, - "paper_doc_ownership_changed_details": EventDetails._paper_doc_ownership_changed_details_validator, - "paper_doc_request_access_details": EventDetails._paper_doc_request_access_details_validator, - "paper_doc_resolve_comment_details": EventDetails._paper_doc_resolve_comment_details_validator, - "paper_doc_revert_details": EventDetails._paper_doc_revert_details_validator, - "paper_doc_slack_share_details": EventDetails._paper_doc_slack_share_details_validator, - "paper_doc_team_invite_details": EventDetails._paper_doc_team_invite_details_validator, - "paper_doc_trashed_details": EventDetails._paper_doc_trashed_details_validator, - "paper_doc_unresolve_comment_details": EventDetails._paper_doc_unresolve_comment_details_validator, - "paper_doc_untrashed_details": EventDetails._paper_doc_untrashed_details_validator, - "paper_doc_view_details": EventDetails._paper_doc_view_details_validator, - "paper_external_view_allow_details": EventDetails._paper_external_view_allow_details_validator, - "paper_external_view_default_team_details": EventDetails._paper_external_view_default_team_details_validator, - "paper_external_view_forbid_details": EventDetails._paper_external_view_forbid_details_validator, - "paper_folder_change_subscription_details": EventDetails._paper_folder_change_subscription_details_validator, - "paper_folder_deleted_details": EventDetails._paper_folder_deleted_details_validator, - "paper_folder_followed_details": EventDetails._paper_folder_followed_details_validator, - "paper_folder_team_invite_details": EventDetails._paper_folder_team_invite_details_validator, - "paper_published_link_change_permission_details": EventDetails._paper_published_link_change_permission_details_validator, - "paper_published_link_create_details": EventDetails._paper_published_link_create_details_validator, - "paper_published_link_disabled_details": EventDetails._paper_published_link_disabled_details_validator, - "paper_published_link_view_details": EventDetails._paper_published_link_view_details_validator, - "password_change_details": EventDetails._password_change_details_validator, - "password_reset_details": EventDetails._password_reset_details_validator, - "password_reset_all_details": EventDetails._password_reset_all_details_validator, - "protect_internal_domains_changed_details": EventDetails._protect_internal_domains_changed_details_validator, - "classification_create_report_details": EventDetails._classification_create_report_details_validator, - "classification_create_report_fail_details": EventDetails._classification_create_report_fail_details_validator, - "emm_create_exceptions_report_details": EventDetails._emm_create_exceptions_report_details_validator, - "emm_create_usage_report_details": EventDetails._emm_create_usage_report_details_validator, - "export_members_report_details": EventDetails._export_members_report_details_validator, - "export_members_report_fail_details": EventDetails._export_members_report_fail_details_validator, - "external_sharing_create_report_details": EventDetails._external_sharing_create_report_details_validator, - "external_sharing_report_failed_details": EventDetails._external_sharing_report_failed_details_validator, - "member_access_details_create_report_details": EventDetails._member_access_details_create_report_details_validator, - "member_access_details_create_report_failed_details": EventDetails._member_access_details_create_report_failed_details_validator, - "no_expiration_link_gen_create_report_details": EventDetails._no_expiration_link_gen_create_report_details_validator, - "no_expiration_link_gen_report_failed_details": EventDetails._no_expiration_link_gen_report_failed_details_validator, - "no_password_link_gen_create_report_details": EventDetails._no_password_link_gen_create_report_details_validator, - "no_password_link_gen_report_failed_details": EventDetails._no_password_link_gen_report_failed_details_validator, - "no_password_link_view_create_report_details": EventDetails._no_password_link_view_create_report_details_validator, - "no_password_link_view_report_failed_details": EventDetails._no_password_link_view_report_failed_details_validator, - "outdated_link_view_create_report_details": EventDetails._outdated_link_view_create_report_details_validator, - "outdated_link_view_report_failed_details": EventDetails._outdated_link_view_report_failed_details_validator, - "paper_admin_export_start_details": EventDetails._paper_admin_export_start_details_validator, - "ransomware_alert_create_report_details": EventDetails._ransomware_alert_create_report_details_validator, - "ransomware_alert_create_report_failed_details": EventDetails._ransomware_alert_create_report_failed_details_validator, - "shared_folders_create_report_details": EventDetails._shared_folders_create_report_details_validator, - "shared_folders_create_report_failed_details": EventDetails._shared_folders_create_report_failed_details_validator, - "smart_sync_create_admin_privilege_report_details": EventDetails._smart_sync_create_admin_privilege_report_details_validator, - "team_activity_create_report_details": EventDetails._team_activity_create_report_details_validator, - "team_activity_create_report_fail_details": EventDetails._team_activity_create_report_fail_details_validator, - "team_folders_create_report_details": EventDetails._team_folders_create_report_details_validator, - "team_folders_create_report_failed_details": EventDetails._team_folders_create_report_failed_details_validator, - "team_storage_create_report_details": EventDetails._team_storage_create_report_details_validator, - "team_storage_create_report_failed_details": EventDetails._team_storage_create_report_failed_details_validator, - "collection_share_details": EventDetails._collection_share_details_validator, - "file_transfers_file_add_details": EventDetails._file_transfers_file_add_details_validator, - "file_transfers_transfer_delete_details": EventDetails._file_transfers_transfer_delete_details_validator, - "file_transfers_transfer_download_details": EventDetails._file_transfers_transfer_download_details_validator, - "file_transfers_transfer_send_details": EventDetails._file_transfers_transfer_send_details_validator, - "file_transfers_transfer_view_details": EventDetails._file_transfers_transfer_view_details_validator, - "media_hub_project_team_add_details": EventDetails._media_hub_project_team_add_details_validator, - "media_hub_project_team_delete_details": EventDetails._media_hub_project_team_delete_details_validator, - "media_hub_project_team_role_changed_details": EventDetails._media_hub_project_team_role_changed_details_validator, - "media_hub_shared_link_audience_changed_details": EventDetails._media_hub_shared_link_audience_changed_details_validator, - "media_hub_shared_link_created_details": EventDetails._media_hub_shared_link_created_details_validator, - "media_hub_shared_link_download_setting_changed_details": EventDetails._media_hub_shared_link_download_setting_changed_details_validator, - "media_hub_shared_link_revoked_details": EventDetails._media_hub_shared_link_revoked_details_validator, - "note_acl_invite_only_details": EventDetails._note_acl_invite_only_details_validator, - "note_acl_link_details": EventDetails._note_acl_link_details_validator, - "note_acl_team_link_details": EventDetails._note_acl_team_link_details_validator, - "note_shared_details": EventDetails._note_shared_details_validator, - "note_share_receive_details": EventDetails._note_share_receive_details_validator, - "open_note_shared_details": EventDetails._open_note_shared_details_validator, - "replay_file_shared_link_created_details": EventDetails._replay_file_shared_link_created_details_validator, - "replay_file_shared_link_modified_details": EventDetails._replay_file_shared_link_modified_details_validator, - "replay_project_team_add_details": EventDetails._replay_project_team_add_details_validator, - "replay_project_team_delete_details": EventDetails._replay_project_team_delete_details_validator, - "send_and_track_file_added_details": EventDetails._send_and_track_file_added_details_validator, - "send_and_track_file_renamed_details": EventDetails._send_and_track_file_renamed_details_validator, - "send_and_track_file_updated_details": EventDetails._send_and_track_file_updated_details_validator, - "send_and_track_link_created_details": EventDetails._send_and_track_link_created_details_validator, - "send_and_track_link_deleted_details": EventDetails._send_and_track_link_deleted_details_validator, - "send_and_track_link_updated_details": EventDetails._send_and_track_link_updated_details_validator, - "send_and_track_link_viewed_details": EventDetails._send_and_track_link_viewed_details_validator, - "send_and_track_removed_file_and_associated_links_details": EventDetails._send_and_track_removed_file_and_associated_links_details_validator, - "sf_add_group_details": EventDetails._sf_add_group_details_validator, - "sf_allow_non_members_to_view_shared_links_details": EventDetails._sf_allow_non_members_to_view_shared_links_details_validator, - "sf_external_invite_warn_details": EventDetails._sf_external_invite_warn_details_validator, - "sf_fb_invite_details": EventDetails._sf_fb_invite_details_validator, - "sf_fb_invite_change_role_details": EventDetails._sf_fb_invite_change_role_details_validator, - "sf_fb_uninvite_details": EventDetails._sf_fb_uninvite_details_validator, - "sf_invite_group_details": EventDetails._sf_invite_group_details_validator, - "sf_team_grant_access_details": EventDetails._sf_team_grant_access_details_validator, - "sf_team_invite_details": EventDetails._sf_team_invite_details_validator, - "sf_team_invite_change_role_details": EventDetails._sf_team_invite_change_role_details_validator, - "sf_team_join_details": EventDetails._sf_team_join_details_validator, - "sf_team_join_from_oob_link_details": EventDetails._sf_team_join_from_oob_link_details_validator, - "sf_team_uninvite_details": EventDetails._sf_team_uninvite_details_validator, - "shared_content_add_invitees_details": EventDetails._shared_content_add_invitees_details_validator, - "shared_content_add_link_expiry_details": EventDetails._shared_content_add_link_expiry_details_validator, - "shared_content_add_link_password_details": EventDetails._shared_content_add_link_password_details_validator, - "shared_content_add_member_details": EventDetails._shared_content_add_member_details_validator, - "shared_content_change_downloads_policy_details": EventDetails._shared_content_change_downloads_policy_details_validator, - "shared_content_change_invitee_role_details": EventDetails._shared_content_change_invitee_role_details_validator, - "shared_content_change_link_audience_details": EventDetails._shared_content_change_link_audience_details_validator, - "shared_content_change_link_expiry_details": EventDetails._shared_content_change_link_expiry_details_validator, - "shared_content_change_link_password_details": EventDetails._shared_content_change_link_password_details_validator, - "shared_content_change_member_role_details": EventDetails._shared_content_change_member_role_details_validator, - "shared_content_change_viewer_info_policy_details": EventDetails._shared_content_change_viewer_info_policy_details_validator, - "shared_content_claim_invitation_details": EventDetails._shared_content_claim_invitation_details_validator, - "shared_content_copy_details": EventDetails._shared_content_copy_details_validator, - "shared_content_download_details": EventDetails._shared_content_download_details_validator, - "shared_content_relinquish_membership_details": EventDetails._shared_content_relinquish_membership_details_validator, - "shared_content_remove_invitees_details": EventDetails._shared_content_remove_invitees_details_validator, - "shared_content_remove_link_expiry_details": EventDetails._shared_content_remove_link_expiry_details_validator, - "shared_content_remove_link_password_details": EventDetails._shared_content_remove_link_password_details_validator, - "shared_content_remove_member_details": EventDetails._shared_content_remove_member_details_validator, - "shared_content_request_access_details": EventDetails._shared_content_request_access_details_validator, - "shared_content_restore_invitees_details": EventDetails._shared_content_restore_invitees_details_validator, - "shared_content_restore_member_details": EventDetails._shared_content_restore_member_details_validator, - "shared_content_unshare_details": EventDetails._shared_content_unshare_details_validator, - "shared_content_view_details": EventDetails._shared_content_view_details_validator, - "shared_folder_change_link_policy_details": EventDetails._shared_folder_change_link_policy_details_validator, - "shared_folder_change_members_inheritance_policy_details": EventDetails._shared_folder_change_members_inheritance_policy_details_validator, - "shared_folder_change_members_management_policy_details": EventDetails._shared_folder_change_members_management_policy_details_validator, - "shared_folder_change_members_policy_details": EventDetails._shared_folder_change_members_policy_details_validator, - "shared_folder_create_details": EventDetails._shared_folder_create_details_validator, - "shared_folder_decline_invitation_details": EventDetails._shared_folder_decline_invitation_details_validator, - "shared_folder_mount_details": EventDetails._shared_folder_mount_details_validator, - "shared_folder_nest_details": EventDetails._shared_folder_nest_details_validator, - "shared_folder_transfer_ownership_details": EventDetails._shared_folder_transfer_ownership_details_validator, - "shared_folder_unmount_details": EventDetails._shared_folder_unmount_details_validator, - "shared_link_add_expiry_details": EventDetails._shared_link_add_expiry_details_validator, - "shared_link_change_expiry_details": EventDetails._shared_link_change_expiry_details_validator, - "shared_link_change_visibility_details": EventDetails._shared_link_change_visibility_details_validator, - "shared_link_copy_details": EventDetails._shared_link_copy_details_validator, - "shared_link_create_details": EventDetails._shared_link_create_details_validator, - "shared_link_disable_details": EventDetails._shared_link_disable_details_validator, - "shared_link_download_details": EventDetails._shared_link_download_details_validator, - "shared_link_remove_expiry_details": EventDetails._shared_link_remove_expiry_details_validator, - "shared_link_remove_visitor_details": EventDetails._shared_link_remove_visitor_details_validator, - "shared_link_settings_add_expiration_details": EventDetails._shared_link_settings_add_expiration_details_validator, - "shared_link_settings_add_password_details": EventDetails._shared_link_settings_add_password_details_validator, - "shared_link_settings_allow_download_disabled_details": EventDetails._shared_link_settings_allow_download_disabled_details_validator, - "shared_link_settings_allow_download_enabled_details": EventDetails._shared_link_settings_allow_download_enabled_details_validator, - "shared_link_settings_change_audience_details": EventDetails._shared_link_settings_change_audience_details_validator, - "shared_link_settings_change_expiration_details": EventDetails._shared_link_settings_change_expiration_details_validator, - "shared_link_settings_change_password_details": EventDetails._shared_link_settings_change_password_details_validator, - "shared_link_settings_remove_expiration_details": EventDetails._shared_link_settings_remove_expiration_details_validator, - "shared_link_settings_remove_password_details": EventDetails._shared_link_settings_remove_password_details_validator, - "shared_link_share_details": EventDetails._shared_link_share_details_validator, - "shared_link_view_details": EventDetails._shared_link_view_details_validator, - "shared_note_opened_details": EventDetails._shared_note_opened_details_validator, - "shmodel_disable_downloads_details": EventDetails._shmodel_disable_downloads_details_validator, - "shmodel_enable_downloads_details": EventDetails._shmodel_enable_downloads_details_validator, - "shmodel_group_share_details": EventDetails._shmodel_group_share_details_validator, - "showcase_access_granted_details": EventDetails._showcase_access_granted_details_validator, - "showcase_add_member_details": EventDetails._showcase_add_member_details_validator, - "showcase_archived_details": EventDetails._showcase_archived_details_validator, - "showcase_created_details": EventDetails._showcase_created_details_validator, - "showcase_delete_comment_details": EventDetails._showcase_delete_comment_details_validator, - "showcase_edited_details": EventDetails._showcase_edited_details_validator, - "showcase_edit_comment_details": EventDetails._showcase_edit_comment_details_validator, - "showcase_file_added_details": EventDetails._showcase_file_added_details_validator, - "showcase_file_download_details": EventDetails._showcase_file_download_details_validator, - "showcase_file_removed_details": EventDetails._showcase_file_removed_details_validator, - "showcase_file_view_details": EventDetails._showcase_file_view_details_validator, - "showcase_permanently_deleted_details": EventDetails._showcase_permanently_deleted_details_validator, - "showcase_post_comment_details": EventDetails._showcase_post_comment_details_validator, - "showcase_remove_member_details": EventDetails._showcase_remove_member_details_validator, - "showcase_renamed_details": EventDetails._showcase_renamed_details_validator, - "showcase_request_access_details": EventDetails._showcase_request_access_details_validator, - "showcase_resolve_comment_details": EventDetails._showcase_resolve_comment_details_validator, - "showcase_restored_details": EventDetails._showcase_restored_details_validator, - "showcase_trashed_details": EventDetails._showcase_trashed_details_validator, - "showcase_trashed_deprecated_details": EventDetails._showcase_trashed_deprecated_details_validator, - "showcase_unresolve_comment_details": EventDetails._showcase_unresolve_comment_details_validator, - "showcase_untrashed_details": EventDetails._showcase_untrashed_details_validator, - "showcase_untrashed_deprecated_details": EventDetails._showcase_untrashed_deprecated_details_validator, - "showcase_view_details": EventDetails._showcase_view_details_validator, - "sign_signature_request_canceled_details": EventDetails._sign_signature_request_canceled_details_validator, - "sign_signature_request_completed_details": EventDetails._sign_signature_request_completed_details_validator, - "sign_signature_request_declined_details": EventDetails._sign_signature_request_declined_details_validator, - "sign_signature_request_opened_details": EventDetails._sign_signature_request_opened_details_validator, - "sign_signature_request_reminder_sent_details": EventDetails._sign_signature_request_reminder_sent_details_validator, - "sign_signature_request_sent_details": EventDetails._sign_signature_request_sent_details_validator, - "sign_template_created_details": EventDetails._sign_template_created_details_validator, - "sign_template_shared_details": EventDetails._sign_template_shared_details_validator, - "risc_security_event_details": EventDetails._risc_security_event_details_validator, - "sso_add_cert_details": EventDetails._sso_add_cert_details_validator, - "sso_add_login_url_details": EventDetails._sso_add_login_url_details_validator, - "sso_add_logout_url_details": EventDetails._sso_add_logout_url_details_validator, - "sso_change_cert_details": EventDetails._sso_change_cert_details_validator, - "sso_change_login_url_details": EventDetails._sso_change_login_url_details_validator, - "sso_change_logout_url_details": EventDetails._sso_change_logout_url_details_validator, - "sso_change_saml_identity_mode_details": EventDetails._sso_change_saml_identity_mode_details_validator, - "sso_remove_cert_details": EventDetails._sso_remove_cert_details_validator, - "sso_remove_login_url_details": EventDetails._sso_remove_login_url_details_validator, - "sso_remove_logout_url_details": EventDetails._sso_remove_logout_url_details_validator, - "team_folder_change_status_details": EventDetails._team_folder_change_status_details_validator, - "team_folder_create_details": EventDetails._team_folder_create_details_validator, - "team_folder_downgrade_details": EventDetails._team_folder_downgrade_details_validator, - "team_folder_permanently_delete_details": EventDetails._team_folder_permanently_delete_details_validator, - "team_folder_rename_details": EventDetails._team_folder_rename_details_validator, - "team_folder_space_limits_change_caps_type_details": EventDetails._team_folder_space_limits_change_caps_type_details_validator, - "team_folder_space_limits_change_limit_details": EventDetails._team_folder_space_limits_change_limit_details_validator, - "team_folder_space_limits_change_notification_target_details": EventDetails._team_folder_space_limits_change_notification_target_details_validator, - "team_selective_sync_settings_changed_details": EventDetails._team_selective_sync_settings_changed_details_validator, - "account_capture_change_policy_details": EventDetails._account_capture_change_policy_details_validator, - "admin_email_reminders_changed_details": EventDetails._admin_email_reminders_changed_details_validator, - "ai_third_party_sharing_dropbox_base_policy_changed_details": EventDetails._ai_third_party_sharing_dropbox_base_policy_changed_details_validator, - "allow_download_disabled_details": EventDetails._allow_download_disabled_details_validator, - "allow_download_enabled_details": EventDetails._allow_download_enabled_details_validator, - "apple_login_change_policy_details": EventDetails._apple_login_change_policy_details_validator, - "app_permissions_changed_details": EventDetails._app_permissions_changed_details_validator, - "camera_uploads_policy_changed_details": EventDetails._camera_uploads_policy_changed_details_validator, - "capture_team_space_policy_changed_details": EventDetails._capture_team_space_policy_changed_details_validator, - "capture_transcript_policy_changed_details": EventDetails._capture_transcript_policy_changed_details_validator, - "classification_change_policy_details": EventDetails._classification_change_policy_details_validator, - "computer_backup_policy_changed_details": EventDetails._computer_backup_policy_changed_details_validator, - "content_administration_policy_changed_details": EventDetails._content_administration_policy_changed_details_validator, - "content_deletion_protection_change_policy_details": EventDetails._content_deletion_protection_change_policy_details_validator, - "dash_external_sharing_policy_changed_details": EventDetails._dash_external_sharing_policy_changed_details_validator, - "data_placement_restriction_change_policy_details": EventDetails._data_placement_restriction_change_policy_details_validator, - "data_placement_restriction_satisfy_policy_details": EventDetails._data_placement_restriction_satisfy_policy_details_validator, - "device_approvals_add_exception_details": EventDetails._device_approvals_add_exception_details_validator, - "device_approvals_change_desktop_policy_details": EventDetails._device_approvals_change_desktop_policy_details_validator, - "device_approvals_change_mobile_policy_details": EventDetails._device_approvals_change_mobile_policy_details_validator, - "device_approvals_change_overage_action_details": EventDetails._device_approvals_change_overage_action_details_validator, - "device_approvals_change_unlink_action_details": EventDetails._device_approvals_change_unlink_action_details_validator, - "device_approvals_remove_exception_details": EventDetails._device_approvals_remove_exception_details_validator, - "directory_restrictions_add_members_details": EventDetails._directory_restrictions_add_members_details_validator, - "directory_restrictions_remove_members_details": EventDetails._directory_restrictions_remove_members_details_validator, - "dropbox_passwords_policy_changed_details": EventDetails._dropbox_passwords_policy_changed_details_validator, - "email_ingest_policy_changed_details": EventDetails._email_ingest_policy_changed_details_validator, - "emm_add_exception_details": EventDetails._emm_add_exception_details_validator, - "emm_change_policy_details": EventDetails._emm_change_policy_details_validator, - "emm_remove_exception_details": EventDetails._emm_remove_exception_details_validator, - "extended_version_history_change_policy_details": EventDetails._extended_version_history_change_policy_details_validator, - "external_drive_backup_policy_changed_details": EventDetails._external_drive_backup_policy_changed_details_validator, - "file_comments_change_policy_details": EventDetails._file_comments_change_policy_details_validator, - "file_locking_policy_changed_details": EventDetails._file_locking_policy_changed_details_validator, - "file_provider_migration_policy_changed_details": EventDetails._file_provider_migration_policy_changed_details_validator, - "file_requests_change_policy_details": EventDetails._file_requests_change_policy_details_validator, - "file_requests_emails_enabled_details": EventDetails._file_requests_emails_enabled_details_validator, - "file_requests_emails_restricted_to_team_only_details": EventDetails._file_requests_emails_restricted_to_team_only_details_validator, - "file_transfers_policy_changed_details": EventDetails._file_transfers_policy_changed_details_validator, - "flexible_file_names_policy_changed_details": EventDetails._flexible_file_names_policy_changed_details_validator, - "folder_link_restriction_policy_changed_details": EventDetails._folder_link_restriction_policy_changed_details_validator, - "google_sso_change_policy_details": EventDetails._google_sso_change_policy_details_validator, - "group_user_management_change_policy_details": EventDetails._group_user_management_change_policy_details_validator, - "integration_policy_changed_details": EventDetails._integration_policy_changed_details_validator, - "invite_acceptance_email_policy_changed_details": EventDetails._invite_acceptance_email_policy_changed_details_validator, - "media_hub_adding_people_policy_changed_details": EventDetails._media_hub_adding_people_policy_changed_details_validator, - "media_hub_download_policy_changed_details": EventDetails._media_hub_download_policy_changed_details_validator, - "media_hub_link_sharing_policy_changed_details": EventDetails._media_hub_link_sharing_policy_changed_details_validator, - "member_requests_change_policy_details": EventDetails._member_requests_change_policy_details_validator, - "member_send_invite_policy_changed_details": EventDetails._member_send_invite_policy_changed_details_validator, - "member_space_limits_add_exception_details": EventDetails._member_space_limits_add_exception_details_validator, - "member_space_limits_change_caps_type_policy_details": EventDetails._member_space_limits_change_caps_type_policy_details_validator, - "member_space_limits_change_policy_details": EventDetails._member_space_limits_change_policy_details_validator, - "member_space_limits_remove_exception_details": EventDetails._member_space_limits_remove_exception_details_validator, - "member_suggestions_change_policy_details": EventDetails._member_suggestions_change_policy_details_validator, - "microsoft_login_change_policy_details": EventDetails._microsoft_login_change_policy_details_validator, - "microsoft_office_addin_change_policy_details": EventDetails._microsoft_office_addin_change_policy_details_validator, - "multi_team_identity_policy_changed_details": EventDetails._multi_team_identity_policy_changed_details_validator, - "network_control_change_policy_details": EventDetails._network_control_change_policy_details_validator, - "paper_change_deployment_policy_details": EventDetails._paper_change_deployment_policy_details_validator, - "paper_change_member_link_policy_details": EventDetails._paper_change_member_link_policy_details_validator, - "paper_change_member_policy_details": EventDetails._paper_change_member_policy_details_validator, - "paper_change_policy_details": EventDetails._paper_change_policy_details_validator, - "paper_default_folder_policy_changed_details": EventDetails._paper_default_folder_policy_changed_details_validator, - "paper_desktop_policy_changed_details": EventDetails._paper_desktop_policy_changed_details_validator, - "paper_enabled_users_group_addition_details": EventDetails._paper_enabled_users_group_addition_details_validator, - "paper_enabled_users_group_removal_details": EventDetails._paper_enabled_users_group_removal_details_validator, - "passkey_login_policy_changed_details": EventDetails._passkey_login_policy_changed_details_validator, - "password_strength_requirements_change_policy_details": EventDetails._password_strength_requirements_change_policy_details_validator, - "permanent_delete_change_policy_details": EventDetails._permanent_delete_change_policy_details_validator, - "previews_ai_policy_changed_details": EventDetails._previews_ai_policy_changed_details_validator, - "replay_adding_people_policy_changed_details": EventDetails._replay_adding_people_policy_changed_details_validator, - "replay_sharing_policy_changed_details": EventDetails._replay_sharing_policy_changed_details_validator, - "reseller_support_change_policy_details": EventDetails._reseller_support_change_policy_details_validator, - "rewind_policy_changed_details": EventDetails._rewind_policy_changed_details_validator, - "send_and_track_policy_changed_details": EventDetails._send_and_track_policy_changed_details_validator, - "send_external_sharing_policy_changed_details": EventDetails._send_external_sharing_policy_changed_details_validator, - "send_for_signature_policy_changed_details": EventDetails._send_for_signature_policy_changed_details_validator, - "shared_link_default_permissions_policy_changed_details": EventDetails._shared_link_default_permissions_policy_changed_details_validator, - "sharing_change_folder_join_policy_details": EventDetails._sharing_change_folder_join_policy_details_validator, - "sharing_change_link_allow_change_expiration_policy_details": EventDetails._sharing_change_link_allow_change_expiration_policy_details_validator, - "sharing_change_link_default_expiration_policy_details": EventDetails._sharing_change_link_default_expiration_policy_details_validator, - "sharing_change_link_enforce_password_policy_details": EventDetails._sharing_change_link_enforce_password_policy_details_validator, - "sharing_change_link_policy_details": EventDetails._sharing_change_link_policy_details_validator, - "sharing_change_member_policy_details": EventDetails._sharing_change_member_policy_details_validator, - "showcase_change_download_policy_details": EventDetails._showcase_change_download_policy_details_validator, - "showcase_change_enabled_policy_details": EventDetails._showcase_change_enabled_policy_details_validator, - "showcase_change_external_sharing_policy_details": EventDetails._showcase_change_external_sharing_policy_details_validator, - "sign_external_sharing_policy_changed_details": EventDetails._sign_external_sharing_policy_changed_details_validator, - "sign_template_creation_permission_changed_details": EventDetails._sign_template_creation_permission_changed_details_validator, - "smarter_smart_sync_policy_changed_details": EventDetails._smarter_smart_sync_policy_changed_details_validator, - "smart_sync_change_policy_details": EventDetails._smart_sync_change_policy_details_validator, - "smart_sync_not_opt_out_details": EventDetails._smart_sync_not_opt_out_details_validator, - "smart_sync_opt_out_details": EventDetails._smart_sync_opt_out_details_validator, - "sso_change_policy_details": EventDetails._sso_change_policy_details_validator, - "stack_cross_team_access_policy_changed_details": EventDetails._stack_cross_team_access_policy_changed_details_validator, - "team_branding_policy_changed_details": EventDetails._team_branding_policy_changed_details_validator, - "team_extensions_policy_changed_details": EventDetails._team_extensions_policy_changed_details_validator, - "team_member_storage_request_policy_changed_details": EventDetails._team_member_storage_request_policy_changed_details_validator, - "team_selective_sync_policy_changed_details": EventDetails._team_selective_sync_policy_changed_details_validator, - "team_sharing_whitelist_subjects_changed_details": EventDetails._team_sharing_whitelist_subjects_changed_details_validator, - "tfa_add_exception_details": EventDetails._tfa_add_exception_details_validator, - "tfa_change_policy_details": EventDetails._tfa_change_policy_details_validator, - "tfa_remove_exception_details": EventDetails._tfa_remove_exception_details_validator, - "top_level_content_policy_changed_details": EventDetails._top_level_content_policy_changed_details_validator, - "two_account_change_policy_details": EventDetails._two_account_change_policy_details_validator, - "viewer_info_policy_changed_details": EventDetails._viewer_info_policy_changed_details_validator, - "watermarking_policy_changed_details": EventDetails._watermarking_policy_changed_details_validator, - "web_sessions_change_active_session_limit_details": EventDetails._web_sessions_change_active_session_limit_details_validator, - "web_sessions_change_fixed_length_policy_details": EventDetails._web_sessions_change_fixed_length_policy_details_validator, - "web_sessions_change_idle_length_policy_details": EventDetails._web_sessions_change_idle_length_policy_details_validator, - "data_residency_migration_request_successful_details": EventDetails._data_residency_migration_request_successful_details_validator, - "data_residency_migration_request_unsuccessful_details": EventDetails._data_residency_migration_request_unsuccessful_details_validator, - "team_merge_from_details": EventDetails._team_merge_from_details_validator, - "team_merge_to_details": EventDetails._team_merge_to_details_validator, - "team_profile_add_background_details": EventDetails._team_profile_add_background_details_validator, - "team_profile_add_logo_details": EventDetails._team_profile_add_logo_details_validator, - "team_profile_change_background_details": EventDetails._team_profile_change_background_details_validator, - "team_profile_change_default_language_details": EventDetails._team_profile_change_default_language_details_validator, - "team_profile_change_logo_details": EventDetails._team_profile_change_logo_details_validator, - "team_profile_change_name_details": EventDetails._team_profile_change_name_details_validator, - "team_profile_remove_background_details": EventDetails._team_profile_remove_background_details_validator, - "team_profile_remove_logo_details": EventDetails._team_profile_remove_logo_details_validator, - "passkey_add_details": EventDetails._passkey_add_details_validator, - "passkey_remove_details": EventDetails._passkey_remove_details_validator, - "tfa_add_backup_phone_details": EventDetails._tfa_add_backup_phone_details_validator, - "tfa_add_security_key_details": EventDetails._tfa_add_security_key_details_validator, - "tfa_change_backup_phone_details": EventDetails._tfa_change_backup_phone_details_validator, - "tfa_change_status_details": EventDetails._tfa_change_status_details_validator, - "tfa_remove_backup_phone_details": EventDetails._tfa_remove_backup_phone_details_validator, - "tfa_remove_security_key_details": EventDetails._tfa_remove_security_key_details_validator, - "tfa_reset_details": EventDetails._tfa_reset_details_validator, - "changed_enterprise_admin_role_details": EventDetails._changed_enterprise_admin_role_details_validator, - "changed_enterprise_connected_team_status_details": EventDetails._changed_enterprise_connected_team_status_details_validator, - "ended_enterprise_admin_session_details": EventDetails._ended_enterprise_admin_session_details_validator, - "ended_enterprise_admin_session_deprecated_details": EventDetails._ended_enterprise_admin_session_deprecated_details_validator, - "enterprise_settings_locking_details": EventDetails._enterprise_settings_locking_details_validator, - "guest_admin_change_status_details": EventDetails._guest_admin_change_status_details_validator, - "started_enterprise_admin_session_details": EventDetails._started_enterprise_admin_session_details_validator, - "team_merge_request_accepted_details": EventDetails._team_merge_request_accepted_details_validator, - "team_merge_request_accepted_shown_to_primary_team_details": EventDetails._team_merge_request_accepted_shown_to_primary_team_details_validator, - "team_merge_request_accepted_shown_to_secondary_team_details": EventDetails._team_merge_request_accepted_shown_to_secondary_team_details_validator, - "team_merge_request_auto_canceled_details": EventDetails._team_merge_request_auto_canceled_details_validator, - "team_merge_request_canceled_details": EventDetails._team_merge_request_canceled_details_validator, - "team_merge_request_canceled_shown_to_primary_team_details": EventDetails._team_merge_request_canceled_shown_to_primary_team_details_validator, - "team_merge_request_canceled_shown_to_secondary_team_details": EventDetails._team_merge_request_canceled_shown_to_secondary_team_details_validator, - "team_merge_request_expired_details": EventDetails._team_merge_request_expired_details_validator, - "team_merge_request_expired_shown_to_primary_team_details": EventDetails._team_merge_request_expired_shown_to_primary_team_details_validator, - "team_merge_request_expired_shown_to_secondary_team_details": EventDetails._team_merge_request_expired_shown_to_secondary_team_details_validator, - "team_merge_request_rejected_shown_to_primary_team_details": EventDetails._team_merge_request_rejected_shown_to_primary_team_details_validator, - "team_merge_request_rejected_shown_to_secondary_team_details": EventDetails._team_merge_request_rejected_shown_to_secondary_team_details_validator, - "team_merge_request_reminder_details": EventDetails._team_merge_request_reminder_details_validator, - "team_merge_request_reminder_shown_to_primary_team_details": EventDetails._team_merge_request_reminder_shown_to_primary_team_details_validator, - "team_merge_request_reminder_shown_to_secondary_team_details": EventDetails._team_merge_request_reminder_shown_to_secondary_team_details_validator, - "team_merge_request_revoked_details": EventDetails._team_merge_request_revoked_details_validator, - "team_merge_request_sent_shown_to_primary_team_details": EventDetails._team_merge_request_sent_shown_to_primary_team_details_validator, - "team_merge_request_sent_shown_to_secondary_team_details": EventDetails._team_merge_request_sent_shown_to_secondary_team_details_validator, - "missing_details": EventDetails._missing_details_validator, - "other": EventDetails._other_validator, + 'admin_alerting_alert_state_changed_details': EventDetails._admin_alerting_alert_state_changed_details_validator, + 'admin_alerting_changed_alert_config_details': EventDetails._admin_alerting_changed_alert_config_details_validator, + 'admin_alerting_triggered_alert_details': EventDetails._admin_alerting_triggered_alert_details_validator, + 'ransomware_restore_process_completed_details': EventDetails._ransomware_restore_process_completed_details_validator, + 'ransomware_restore_process_started_details': EventDetails._ransomware_restore_process_started_details_validator, + 'app_blocked_by_permissions_details': EventDetails._app_blocked_by_permissions_details_validator, + 'app_link_team_details': EventDetails._app_link_team_details_validator, + 'app_link_user_details': EventDetails._app_link_user_details_validator, + 'app_unlink_team_details': EventDetails._app_unlink_team_details_validator, + 'app_unlink_user_details': EventDetails._app_unlink_user_details_validator, + 'integration_connected_details': EventDetails._integration_connected_details_validator, + 'integration_disconnected_details': EventDetails._integration_disconnected_details_validator, + 'file_add_comment_details': EventDetails._file_add_comment_details_validator, + 'file_change_comment_subscription_details': EventDetails._file_change_comment_subscription_details_validator, + 'file_delete_comment_details': EventDetails._file_delete_comment_details_validator, + 'file_edit_comment_details': EventDetails._file_edit_comment_details_validator, + 'file_like_comment_details': EventDetails._file_like_comment_details_validator, + 'file_resolve_comment_details': EventDetails._file_resolve_comment_details_validator, + 'file_unlike_comment_details': EventDetails._file_unlike_comment_details_validator, + 'file_unresolve_comment_details': EventDetails._file_unresolve_comment_details_validator, + 'dash_added_comment_to_stack_details': EventDetails._dash_added_comment_to_stack_details_validator, + 'dash_added_connector_details': EventDetails._dash_added_connector_details_validator, + 'dash_added_link_to_stack_details': EventDetails._dash_added_link_to_stack_details_validator, + 'dash_added_team_email_domain_allowlist_details': EventDetails._dash_added_team_email_domain_allowlist_details_validator, + 'dash_admin_added_org_wide_connector_details': EventDetails._dash_admin_added_org_wide_connector_details_validator, + 'dash_admin_disabled_connector_details': EventDetails._dash_admin_disabled_connector_details_validator, + 'dash_admin_enabled_connector_details': EventDetails._dash_admin_enabled_connector_details_validator, + 'dash_admin_removed_org_wide_connector_details': EventDetails._dash_admin_removed_org_wide_connector_details_validator, + 'dash_archived_stack_details': EventDetails._dash_archived_stack_details_validator, + 'dash_changed_audience_of_shared_link_to_stack_details': EventDetails._dash_changed_audience_of_shared_link_to_stack_details_validator, + 'dash_cloned_stack_details': EventDetails._dash_cloned_stack_details_validator, + 'dash_connector_tools_call_details': EventDetails._dash_connector_tools_call_details_validator, + 'dash_created_stack_details': EventDetails._dash_created_stack_details_validator, + 'dash_deleted_comment_from_stack_details': EventDetails._dash_deleted_comment_from_stack_details_validator, + 'dash_deleted_stack_details': EventDetails._dash_deleted_stack_details_validator, + 'dash_edited_comment_in_stack_details': EventDetails._dash_edited_comment_in_stack_details_validator, + 'dash_external_user_opened_stack_details': EventDetails._dash_external_user_opened_stack_details_validator, + 'dash_first_launched_desktop_details': EventDetails._dash_first_launched_desktop_details_validator, + 'dash_first_launched_extension_details': EventDetails._dash_first_launched_extension_details_validator, + 'dash_first_launched_web_start_page_details': EventDetails._dash_first_launched_web_start_page_details_validator, + 'dash_opened_shared_link_to_stack_details': EventDetails._dash_opened_shared_link_to_stack_details_validator, + 'dash_opened_stack_details': EventDetails._dash_opened_stack_details_validator, + 'dash_preview_opt_out_status_changed_details': EventDetails._dash_preview_opt_out_status_changed_details_validator, + 'dash_removed_connector_details': EventDetails._dash_removed_connector_details_validator, + 'dash_removed_link_from_stack_details': EventDetails._dash_removed_link_from_stack_details_validator, + 'dash_removed_shared_link_to_stack_details': EventDetails._dash_removed_shared_link_to_stack_details_validator, + 'dash_removed_team_email_domain_allowlist_details': EventDetails._dash_removed_team_email_domain_allowlist_details_validator, + 'dash_renamed_stack_details': EventDetails._dash_renamed_stack_details_validator, + 'dash_shared_link_to_stack_details': EventDetails._dash_shared_link_to_stack_details_validator, + 'dash_unarchived_stack_details': EventDetails._dash_unarchived_stack_details_validator, + 'dash_viewed_company_stack_details': EventDetails._dash_viewed_company_stack_details_validator, + 'dash_viewed_external_ai_activity_report_details': EventDetails._dash_viewed_external_ai_activity_report_details_validator, + 'governance_policy_add_folders_details': EventDetails._governance_policy_add_folders_details_validator, + 'governance_policy_add_folder_failed_details': EventDetails._governance_policy_add_folder_failed_details_validator, + 'governance_policy_content_disposed_details': EventDetails._governance_policy_content_disposed_details_validator, + 'governance_policy_create_details': EventDetails._governance_policy_create_details_validator, + 'governance_policy_delete_details': EventDetails._governance_policy_delete_details_validator, + 'governance_policy_edit_details_details': EventDetails._governance_policy_edit_details_details_validator, + 'governance_policy_edit_duration_details': EventDetails._governance_policy_edit_duration_details_validator, + 'governance_policy_export_created_details': EventDetails._governance_policy_export_created_details_validator, + 'governance_policy_export_removed_details': EventDetails._governance_policy_export_removed_details_validator, + 'governance_policy_remove_folders_details': EventDetails._governance_policy_remove_folders_details_validator, + 'governance_policy_report_created_details': EventDetails._governance_policy_report_created_details_validator, + 'governance_policy_zip_part_downloaded_details': EventDetails._governance_policy_zip_part_downloaded_details_validator, + 'legal_holds_activate_a_hold_details': EventDetails._legal_holds_activate_a_hold_details_validator, + 'legal_holds_add_members_details': EventDetails._legal_holds_add_members_details_validator, + 'legal_holds_change_hold_details_details': EventDetails._legal_holds_change_hold_details_details_validator, + 'legal_holds_change_hold_name_details': EventDetails._legal_holds_change_hold_name_details_validator, + 'legal_holds_export_a_hold_details': EventDetails._legal_holds_export_a_hold_details_validator, + 'legal_holds_export_cancelled_details': EventDetails._legal_holds_export_cancelled_details_validator, + 'legal_holds_export_downloaded_details': EventDetails._legal_holds_export_downloaded_details_validator, + 'legal_holds_export_removed_details': EventDetails._legal_holds_export_removed_details_validator, + 'legal_holds_release_a_hold_details': EventDetails._legal_holds_release_a_hold_details_validator, + 'legal_holds_remove_members_details': EventDetails._legal_holds_remove_members_details_validator, + 'legal_holds_report_a_hold_details': EventDetails._legal_holds_report_a_hold_details_validator, + 'device_change_ip_desktop_details': EventDetails._device_change_ip_desktop_details_validator, + 'device_change_ip_mobile_details': EventDetails._device_change_ip_mobile_details_validator, + 'device_change_ip_web_details': EventDetails._device_change_ip_web_details_validator, + 'device_delete_on_unlink_fail_details': EventDetails._device_delete_on_unlink_fail_details_validator, + 'device_delete_on_unlink_success_details': EventDetails._device_delete_on_unlink_success_details_validator, + 'device_link_fail_details': EventDetails._device_link_fail_details_validator, + 'device_link_success_details': EventDetails._device_link_success_details_validator, + 'device_management_disabled_details': EventDetails._device_management_disabled_details_validator, + 'device_management_enabled_details': EventDetails._device_management_enabled_details_validator, + 'device_sync_backup_status_changed_details': EventDetails._device_sync_backup_status_changed_details_validator, + 'device_unlink_details': EventDetails._device_unlink_details_validator, + 'dropbox_passwords_exported_details': EventDetails._dropbox_passwords_exported_details_validator, + 'dropbox_passwords_new_device_enrolled_details': EventDetails._dropbox_passwords_new_device_enrolled_details_validator, + 'emm_refresh_auth_token_details': EventDetails._emm_refresh_auth_token_details_validator, + 'external_drive_backup_eligibility_status_checked_details': EventDetails._external_drive_backup_eligibility_status_checked_details_validator, + 'external_drive_backup_status_changed_details': EventDetails._external_drive_backup_status_changed_details_validator, + 'account_capture_change_availability_details': EventDetails._account_capture_change_availability_details_validator, + 'account_capture_migrate_account_details': EventDetails._account_capture_migrate_account_details_validator, + 'account_capture_notification_emails_sent_details': EventDetails._account_capture_notification_emails_sent_details_validator, + 'account_capture_relinquish_account_details': EventDetails._account_capture_relinquish_account_details_validator, + 'disabled_domain_invites_details': EventDetails._disabled_domain_invites_details_validator, + 'domain_invites_approve_request_to_join_team_details': EventDetails._domain_invites_approve_request_to_join_team_details_validator, + 'domain_invites_decline_request_to_join_team_details': EventDetails._domain_invites_decline_request_to_join_team_details_validator, + 'domain_invites_email_existing_users_details': EventDetails._domain_invites_email_existing_users_details_validator, + 'domain_invites_request_to_join_team_details': EventDetails._domain_invites_request_to_join_team_details_validator, + 'domain_invites_set_invite_new_user_pref_to_no_details': EventDetails._domain_invites_set_invite_new_user_pref_to_no_details_validator, + 'domain_invites_set_invite_new_user_pref_to_yes_details': EventDetails._domain_invites_set_invite_new_user_pref_to_yes_details_validator, + 'domain_verification_add_domain_fail_details': EventDetails._domain_verification_add_domain_fail_details_validator, + 'domain_verification_add_domain_success_details': EventDetails._domain_verification_add_domain_success_details_validator, + 'domain_verification_remove_domain_details': EventDetails._domain_verification_remove_domain_details_validator, + 'enabled_domain_invites_details': EventDetails._enabled_domain_invites_details_validator, + 'encrypted_folder_cancel_team_key_rotation_details': EventDetails._encrypted_folder_cancel_team_key_rotation_details_validator, + 'encrypted_folder_enroll_backup_key_details': EventDetails._encrypted_folder_enroll_backup_key_details_validator, + 'encrypted_folder_enroll_client_details': EventDetails._encrypted_folder_enroll_client_details_validator, + 'encrypted_folder_enroll_team_details': EventDetails._encrypted_folder_enroll_team_details_validator, + 'encrypted_folder_finish_team_unenrollment_details': EventDetails._encrypted_folder_finish_team_unenrollment_details_validator, + 'encrypted_folder_init_team_key_rotation_details': EventDetails._encrypted_folder_init_team_key_rotation_details_validator, + 'encrypted_folder_init_team_unenrollment_details': EventDetails._encrypted_folder_init_team_unenrollment_details_validator, + 'encrypted_folder_remove_backup_key_details': EventDetails._encrypted_folder_remove_backup_key_details_validator, + 'encrypted_folder_rotate_team_key_details': EventDetails._encrypted_folder_rotate_team_key_details_validator, + 'encrypted_folder_unenroll_client_details': EventDetails._encrypted_folder_unenroll_client_details_validator, + 'team_encryption_key_activate_key_details': EventDetails._team_encryption_key_activate_key_details_validator, + 'team_encryption_key_cancel_key_deletion_details': EventDetails._team_encryption_key_cancel_key_deletion_details_validator, + 'team_encryption_key_create_key_details': EventDetails._team_encryption_key_create_key_details_validator, + 'team_encryption_key_deactivate_key_details': EventDetails._team_encryption_key_deactivate_key_details_validator, + 'team_encryption_key_delete_key_details': EventDetails._team_encryption_key_delete_key_details_validator, + 'team_encryption_key_disable_key_details': EventDetails._team_encryption_key_disable_key_details_validator, + 'team_encryption_key_enable_key_details': EventDetails._team_encryption_key_enable_key_details_validator, + 'team_encryption_key_rotate_key_details': EventDetails._team_encryption_key_rotate_key_details_validator, + 'team_encryption_key_schedule_key_deletion_details': EventDetails._team_encryption_key_schedule_key_deletion_details_validator, + 'apply_naming_convention_details': EventDetails._apply_naming_convention_details_validator, + 'create_folder_details': EventDetails._create_folder_details_validator, + 'file_add_details': EventDetails._file_add_details_validator, + 'file_add_from_automation_details': EventDetails._file_add_from_automation_details_validator, + 'file_copy_details': EventDetails._file_copy_details_validator, + 'file_delete_details': EventDetails._file_delete_details_validator, + 'file_download_details': EventDetails._file_download_details_validator, + 'file_edit_details': EventDetails._file_edit_details_validator, + 'file_get_copy_reference_details': EventDetails._file_get_copy_reference_details_validator, + 'file_locking_lock_status_changed_details': EventDetails._file_locking_lock_status_changed_details_validator, + 'file_move_details': EventDetails._file_move_details_validator, + 'file_permanently_delete_details': EventDetails._file_permanently_delete_details_validator, + 'file_preview_details': EventDetails._file_preview_details_validator, + 'file_rename_details': EventDetails._file_rename_details_validator, + 'file_restore_details': EventDetails._file_restore_details_validator, + 'file_revert_details': EventDetails._file_revert_details_validator, + 'file_rollback_changes_details': EventDetails._file_rollback_changes_details_validator, + 'file_save_copy_reference_details': EventDetails._file_save_copy_reference_details_validator, + 'folder_overview_description_changed_details': EventDetails._folder_overview_description_changed_details_validator, + 'folder_overview_item_pinned_details': EventDetails._folder_overview_item_pinned_details_validator, + 'folder_overview_item_unpinned_details': EventDetails._folder_overview_item_unpinned_details_validator, + 'media_hub_file_downloaded_details': EventDetails._media_hub_file_downloaded_details_validator, + 'object_label_added_details': EventDetails._object_label_added_details_validator, + 'object_label_removed_details': EventDetails._object_label_removed_details_validator, + 'object_label_updated_value_details': EventDetails._object_label_updated_value_details_validator, + 'organize_folder_with_tidy_details': EventDetails._organize_folder_with_tidy_details_validator, + 'replay_file_delete_details': EventDetails._replay_file_delete_details_validator, + 'replay_file_downloaded_details': EventDetails._replay_file_downloaded_details_validator, + 'replay_team_project_created_details': EventDetails._replay_team_project_created_details_validator, + 'rewind_folder_details': EventDetails._rewind_folder_details_validator, + 'undo_naming_convention_details': EventDetails._undo_naming_convention_details_validator, + 'undo_organize_folder_with_tidy_details': EventDetails._undo_organize_folder_with_tidy_details_validator, + 'user_tags_added_details': EventDetails._user_tags_added_details_validator, + 'user_tags_removed_details': EventDetails._user_tags_removed_details_validator, + 'email_ingest_receive_file_details': EventDetails._email_ingest_receive_file_details_validator, + 'file_request_auto_close_details': EventDetails._file_request_auto_close_details_validator, + 'file_request_change_details': EventDetails._file_request_change_details_validator, + 'file_request_close_details': EventDetails._file_request_close_details_validator, + 'file_request_create_details': EventDetails._file_request_create_details_validator, + 'file_request_delete_details': EventDetails._file_request_delete_details_validator, + 'file_request_receive_file_details': EventDetails._file_request_receive_file_details_validator, + 'group_add_external_id_details': EventDetails._group_add_external_id_details_validator, + 'group_add_member_details': EventDetails._group_add_member_details_validator, + 'group_change_external_id_details': EventDetails._group_change_external_id_details_validator, + 'group_change_management_type_details': EventDetails._group_change_management_type_details_validator, + 'group_change_member_role_details': EventDetails._group_change_member_role_details_validator, + 'group_create_details': EventDetails._group_create_details_validator, + 'group_delete_details': EventDetails._group_delete_details_validator, + 'group_description_updated_details': EventDetails._group_description_updated_details_validator, + 'group_external_sharing_setting_override_changed_details': EventDetails._group_external_sharing_setting_override_changed_details_validator, + 'group_join_policy_updated_details': EventDetails._group_join_policy_updated_details_validator, + 'group_moved_details': EventDetails._group_moved_details_validator, + 'group_remove_external_id_details': EventDetails._group_remove_external_id_details_validator, + 'group_remove_member_details': EventDetails._group_remove_member_details_validator, + 'group_rename_details': EventDetails._group_rename_details_validator, + 'account_lock_or_unlocked_details': EventDetails._account_lock_or_unlocked_details_validator, + 'emm_error_details': EventDetails._emm_error_details_validator, + 'guest_admin_signed_in_via_trusted_teams_details': EventDetails._guest_admin_signed_in_via_trusted_teams_details_validator, + 'guest_admin_signed_out_via_trusted_teams_details': EventDetails._guest_admin_signed_out_via_trusted_teams_details_validator, + 'login_fail_details': EventDetails._login_fail_details_validator, + 'login_success_details': EventDetails._login_success_details_validator, + 'logout_details': EventDetails._logout_details_validator, + 'reseller_support_session_end_details': EventDetails._reseller_support_session_end_details_validator, + 'reseller_support_session_start_details': EventDetails._reseller_support_session_start_details_validator, + 'sign_in_as_session_end_details': EventDetails._sign_in_as_session_end_details_validator, + 'sign_in_as_session_start_details': EventDetails._sign_in_as_session_start_details_validator, + 'sso_error_details': EventDetails._sso_error_details_validator, + 'addon_assigned_details': EventDetails._addon_assigned_details_validator, + 'addon_removed_details': EventDetails._addon_removed_details_validator, + 'backup_admin_invitation_sent_details': EventDetails._backup_admin_invitation_sent_details_validator, + 'backup_invitation_opened_details': EventDetails._backup_invitation_opened_details_validator, + 'create_team_invite_link_details': EventDetails._create_team_invite_link_details_validator, + 'delete_team_invite_link_details': EventDetails._delete_team_invite_link_details_validator, + 'member_add_external_id_details': EventDetails._member_add_external_id_details_validator, + 'member_add_name_details': EventDetails._member_add_name_details_validator, + 'member_change_admin_role_details': EventDetails._member_change_admin_role_details_validator, + 'member_change_email_details': EventDetails._member_change_email_details_validator, + 'member_change_external_id_details': EventDetails._member_change_external_id_details_validator, + 'member_change_membership_type_details': EventDetails._member_change_membership_type_details_validator, + 'member_change_name_details': EventDetails._member_change_name_details_validator, + 'member_change_reseller_role_details': EventDetails._member_change_reseller_role_details_validator, + 'member_change_status_details': EventDetails._member_change_status_details_validator, + 'member_delete_manual_contacts_details': EventDetails._member_delete_manual_contacts_details_validator, + 'member_delete_profile_photo_details': EventDetails._member_delete_profile_photo_details_validator, + 'member_permanently_delete_account_contents_details': EventDetails._member_permanently_delete_account_contents_details_validator, + 'member_remove_external_id_details': EventDetails._member_remove_external_id_details_validator, + 'member_set_profile_photo_details': EventDetails._member_set_profile_photo_details_validator, + 'member_space_limits_add_custom_quota_details': EventDetails._member_space_limits_add_custom_quota_details_validator, + 'member_space_limits_change_custom_quota_details': EventDetails._member_space_limits_change_custom_quota_details_validator, + 'member_space_limits_change_status_details': EventDetails._member_space_limits_change_status_details_validator, + 'member_space_limits_remove_custom_quota_details': EventDetails._member_space_limits_remove_custom_quota_details_validator, + 'member_suggest_details': EventDetails._member_suggest_details_validator, + 'member_transfer_account_contents_details': EventDetails._member_transfer_account_contents_details_validator, + 'pending_secondary_email_added_details': EventDetails._pending_secondary_email_added_details_validator, + 'product_assigned_to_member_details': EventDetails._product_assigned_to_member_details_validator, + 'product_removed_from_member_details': EventDetails._product_removed_from_member_details_validator, + 'secondary_email_deleted_details': EventDetails._secondary_email_deleted_details_validator, + 'secondary_email_verified_details': EventDetails._secondary_email_verified_details_validator, + 'secondary_mails_policy_changed_details': EventDetails._secondary_mails_policy_changed_details_validator, + 'binder_add_page_details': EventDetails._binder_add_page_details_validator, + 'binder_add_section_details': EventDetails._binder_add_section_details_validator, + 'binder_remove_page_details': EventDetails._binder_remove_page_details_validator, + 'binder_remove_section_details': EventDetails._binder_remove_section_details_validator, + 'binder_rename_page_details': EventDetails._binder_rename_page_details_validator, + 'binder_rename_section_details': EventDetails._binder_rename_section_details_validator, + 'binder_reorder_page_details': EventDetails._binder_reorder_page_details_validator, + 'binder_reorder_section_details': EventDetails._binder_reorder_section_details_validator, + 'paper_content_add_member_details': EventDetails._paper_content_add_member_details_validator, + 'paper_content_add_to_folder_details': EventDetails._paper_content_add_to_folder_details_validator, + 'paper_content_archive_details': EventDetails._paper_content_archive_details_validator, + 'paper_content_create_details': EventDetails._paper_content_create_details_validator, + 'paper_content_permanently_delete_details': EventDetails._paper_content_permanently_delete_details_validator, + 'paper_content_remove_from_folder_details': EventDetails._paper_content_remove_from_folder_details_validator, + 'paper_content_remove_member_details': EventDetails._paper_content_remove_member_details_validator, + 'paper_content_rename_details': EventDetails._paper_content_rename_details_validator, + 'paper_content_restore_details': EventDetails._paper_content_restore_details_validator, + 'paper_doc_add_comment_details': EventDetails._paper_doc_add_comment_details_validator, + 'paper_doc_change_member_role_details': EventDetails._paper_doc_change_member_role_details_validator, + 'paper_doc_change_sharing_policy_details': EventDetails._paper_doc_change_sharing_policy_details_validator, + 'paper_doc_change_subscription_details': EventDetails._paper_doc_change_subscription_details_validator, + 'paper_doc_deleted_details': EventDetails._paper_doc_deleted_details_validator, + 'paper_doc_delete_comment_details': EventDetails._paper_doc_delete_comment_details_validator, + 'paper_doc_download_details': EventDetails._paper_doc_download_details_validator, + 'paper_doc_edit_details': EventDetails._paper_doc_edit_details_validator, + 'paper_doc_edit_comment_details': EventDetails._paper_doc_edit_comment_details_validator, + 'paper_doc_followed_details': EventDetails._paper_doc_followed_details_validator, + 'paper_doc_mention_details': EventDetails._paper_doc_mention_details_validator, + 'paper_doc_ownership_changed_details': EventDetails._paper_doc_ownership_changed_details_validator, + 'paper_doc_request_access_details': EventDetails._paper_doc_request_access_details_validator, + 'paper_doc_resolve_comment_details': EventDetails._paper_doc_resolve_comment_details_validator, + 'paper_doc_revert_details': EventDetails._paper_doc_revert_details_validator, + 'paper_doc_slack_share_details': EventDetails._paper_doc_slack_share_details_validator, + 'paper_doc_team_invite_details': EventDetails._paper_doc_team_invite_details_validator, + 'paper_doc_trashed_details': EventDetails._paper_doc_trashed_details_validator, + 'paper_doc_unresolve_comment_details': EventDetails._paper_doc_unresolve_comment_details_validator, + 'paper_doc_untrashed_details': EventDetails._paper_doc_untrashed_details_validator, + 'paper_doc_view_details': EventDetails._paper_doc_view_details_validator, + 'paper_external_view_allow_details': EventDetails._paper_external_view_allow_details_validator, + 'paper_external_view_default_team_details': EventDetails._paper_external_view_default_team_details_validator, + 'paper_external_view_forbid_details': EventDetails._paper_external_view_forbid_details_validator, + 'paper_folder_change_subscription_details': EventDetails._paper_folder_change_subscription_details_validator, + 'paper_folder_deleted_details': EventDetails._paper_folder_deleted_details_validator, + 'paper_folder_followed_details': EventDetails._paper_folder_followed_details_validator, + 'paper_folder_team_invite_details': EventDetails._paper_folder_team_invite_details_validator, + 'paper_published_link_change_permission_details': EventDetails._paper_published_link_change_permission_details_validator, + 'paper_published_link_create_details': EventDetails._paper_published_link_create_details_validator, + 'paper_published_link_disabled_details': EventDetails._paper_published_link_disabled_details_validator, + 'paper_published_link_view_details': EventDetails._paper_published_link_view_details_validator, + 'password_change_details': EventDetails._password_change_details_validator, + 'password_reset_details': EventDetails._password_reset_details_validator, + 'password_reset_all_details': EventDetails._password_reset_all_details_validator, + 'protect_internal_domains_changed_details': EventDetails._protect_internal_domains_changed_details_validator, + 'classification_create_report_details': EventDetails._classification_create_report_details_validator, + 'classification_create_report_fail_details': EventDetails._classification_create_report_fail_details_validator, + 'emm_create_exceptions_report_details': EventDetails._emm_create_exceptions_report_details_validator, + 'emm_create_usage_report_details': EventDetails._emm_create_usage_report_details_validator, + 'export_members_report_details': EventDetails._export_members_report_details_validator, + 'export_members_report_fail_details': EventDetails._export_members_report_fail_details_validator, + 'external_sharing_create_report_details': EventDetails._external_sharing_create_report_details_validator, + 'external_sharing_report_failed_details': EventDetails._external_sharing_report_failed_details_validator, + 'member_access_details_create_report_details': EventDetails._member_access_details_create_report_details_validator, + 'member_access_details_create_report_failed_details': EventDetails._member_access_details_create_report_failed_details_validator, + 'no_expiration_link_gen_create_report_details': EventDetails._no_expiration_link_gen_create_report_details_validator, + 'no_expiration_link_gen_report_failed_details': EventDetails._no_expiration_link_gen_report_failed_details_validator, + 'no_password_link_gen_create_report_details': EventDetails._no_password_link_gen_create_report_details_validator, + 'no_password_link_gen_report_failed_details': EventDetails._no_password_link_gen_report_failed_details_validator, + 'no_password_link_view_create_report_details': EventDetails._no_password_link_view_create_report_details_validator, + 'no_password_link_view_report_failed_details': EventDetails._no_password_link_view_report_failed_details_validator, + 'outdated_link_view_create_report_details': EventDetails._outdated_link_view_create_report_details_validator, + 'outdated_link_view_report_failed_details': EventDetails._outdated_link_view_report_failed_details_validator, + 'paper_admin_export_start_details': EventDetails._paper_admin_export_start_details_validator, + 'ransomware_alert_create_report_details': EventDetails._ransomware_alert_create_report_details_validator, + 'ransomware_alert_create_report_failed_details': EventDetails._ransomware_alert_create_report_failed_details_validator, + 'shared_folders_create_report_details': EventDetails._shared_folders_create_report_details_validator, + 'shared_folders_create_report_failed_details': EventDetails._shared_folders_create_report_failed_details_validator, + 'smart_sync_create_admin_privilege_report_details': EventDetails._smart_sync_create_admin_privilege_report_details_validator, + 'team_activity_create_report_details': EventDetails._team_activity_create_report_details_validator, + 'team_activity_create_report_fail_details': EventDetails._team_activity_create_report_fail_details_validator, + 'team_folders_create_report_details': EventDetails._team_folders_create_report_details_validator, + 'team_folders_create_report_failed_details': EventDetails._team_folders_create_report_failed_details_validator, + 'team_storage_create_report_details': EventDetails._team_storage_create_report_details_validator, + 'team_storage_create_report_failed_details': EventDetails._team_storage_create_report_failed_details_validator, + 'collection_share_details': EventDetails._collection_share_details_validator, + 'file_transfers_file_add_details': EventDetails._file_transfers_file_add_details_validator, + 'file_transfers_transfer_delete_details': EventDetails._file_transfers_transfer_delete_details_validator, + 'file_transfers_transfer_download_details': EventDetails._file_transfers_transfer_download_details_validator, + 'file_transfers_transfer_send_details': EventDetails._file_transfers_transfer_send_details_validator, + 'file_transfers_transfer_view_details': EventDetails._file_transfers_transfer_view_details_validator, + 'media_hub_project_team_add_details': EventDetails._media_hub_project_team_add_details_validator, + 'media_hub_project_team_delete_details': EventDetails._media_hub_project_team_delete_details_validator, + 'media_hub_project_team_role_changed_details': EventDetails._media_hub_project_team_role_changed_details_validator, + 'media_hub_shared_link_audience_changed_details': EventDetails._media_hub_shared_link_audience_changed_details_validator, + 'media_hub_shared_link_created_details': EventDetails._media_hub_shared_link_created_details_validator, + 'media_hub_shared_link_download_setting_changed_details': EventDetails._media_hub_shared_link_download_setting_changed_details_validator, + 'media_hub_shared_link_revoked_details': EventDetails._media_hub_shared_link_revoked_details_validator, + 'note_acl_invite_only_details': EventDetails._note_acl_invite_only_details_validator, + 'note_acl_link_details': EventDetails._note_acl_link_details_validator, + 'note_acl_team_link_details': EventDetails._note_acl_team_link_details_validator, + 'note_shared_details': EventDetails._note_shared_details_validator, + 'note_share_receive_details': EventDetails._note_share_receive_details_validator, + 'open_note_shared_details': EventDetails._open_note_shared_details_validator, + 'replay_file_shared_link_created_details': EventDetails._replay_file_shared_link_created_details_validator, + 'replay_file_shared_link_modified_details': EventDetails._replay_file_shared_link_modified_details_validator, + 'replay_project_team_add_details': EventDetails._replay_project_team_add_details_validator, + 'replay_project_team_delete_details': EventDetails._replay_project_team_delete_details_validator, + 'send_and_track_file_added_details': EventDetails._send_and_track_file_added_details_validator, + 'send_and_track_file_renamed_details': EventDetails._send_and_track_file_renamed_details_validator, + 'send_and_track_file_updated_details': EventDetails._send_and_track_file_updated_details_validator, + 'send_and_track_link_created_details': EventDetails._send_and_track_link_created_details_validator, + 'send_and_track_link_deleted_details': EventDetails._send_and_track_link_deleted_details_validator, + 'send_and_track_link_updated_details': EventDetails._send_and_track_link_updated_details_validator, + 'send_and_track_link_viewed_details': EventDetails._send_and_track_link_viewed_details_validator, + 'send_and_track_removed_file_and_associated_links_details': EventDetails._send_and_track_removed_file_and_associated_links_details_validator, + 'sf_add_group_details': EventDetails._sf_add_group_details_validator, + 'sf_allow_non_members_to_view_shared_links_details': EventDetails._sf_allow_non_members_to_view_shared_links_details_validator, + 'sf_external_invite_warn_details': EventDetails._sf_external_invite_warn_details_validator, + 'sf_fb_invite_details': EventDetails._sf_fb_invite_details_validator, + 'sf_fb_invite_change_role_details': EventDetails._sf_fb_invite_change_role_details_validator, + 'sf_fb_uninvite_details': EventDetails._sf_fb_uninvite_details_validator, + 'sf_invite_group_details': EventDetails._sf_invite_group_details_validator, + 'sf_team_grant_access_details': EventDetails._sf_team_grant_access_details_validator, + 'sf_team_invite_details': EventDetails._sf_team_invite_details_validator, + 'sf_team_invite_change_role_details': EventDetails._sf_team_invite_change_role_details_validator, + 'sf_team_join_details': EventDetails._sf_team_join_details_validator, + 'sf_team_join_from_oob_link_details': EventDetails._sf_team_join_from_oob_link_details_validator, + 'sf_team_uninvite_details': EventDetails._sf_team_uninvite_details_validator, + 'shared_content_add_invitees_details': EventDetails._shared_content_add_invitees_details_validator, + 'shared_content_add_link_expiry_details': EventDetails._shared_content_add_link_expiry_details_validator, + 'shared_content_add_link_password_details': EventDetails._shared_content_add_link_password_details_validator, + 'shared_content_add_member_details': EventDetails._shared_content_add_member_details_validator, + 'shared_content_change_downloads_policy_details': EventDetails._shared_content_change_downloads_policy_details_validator, + 'shared_content_change_invitee_role_details': EventDetails._shared_content_change_invitee_role_details_validator, + 'shared_content_change_link_audience_details': EventDetails._shared_content_change_link_audience_details_validator, + 'shared_content_change_link_expiry_details': EventDetails._shared_content_change_link_expiry_details_validator, + 'shared_content_change_link_password_details': EventDetails._shared_content_change_link_password_details_validator, + 'shared_content_change_member_role_details': EventDetails._shared_content_change_member_role_details_validator, + 'shared_content_change_viewer_info_policy_details': EventDetails._shared_content_change_viewer_info_policy_details_validator, + 'shared_content_claim_invitation_details': EventDetails._shared_content_claim_invitation_details_validator, + 'shared_content_copy_details': EventDetails._shared_content_copy_details_validator, + 'shared_content_download_details': EventDetails._shared_content_download_details_validator, + 'shared_content_relinquish_membership_details': EventDetails._shared_content_relinquish_membership_details_validator, + 'shared_content_remove_invitees_details': EventDetails._shared_content_remove_invitees_details_validator, + 'shared_content_remove_link_expiry_details': EventDetails._shared_content_remove_link_expiry_details_validator, + 'shared_content_remove_link_password_details': EventDetails._shared_content_remove_link_password_details_validator, + 'shared_content_remove_member_details': EventDetails._shared_content_remove_member_details_validator, + 'shared_content_request_access_details': EventDetails._shared_content_request_access_details_validator, + 'shared_content_restore_invitees_details': EventDetails._shared_content_restore_invitees_details_validator, + 'shared_content_restore_member_details': EventDetails._shared_content_restore_member_details_validator, + 'shared_content_unshare_details': EventDetails._shared_content_unshare_details_validator, + 'shared_content_view_details': EventDetails._shared_content_view_details_validator, + 'shared_folder_change_link_policy_details': EventDetails._shared_folder_change_link_policy_details_validator, + 'shared_folder_change_members_inheritance_policy_details': EventDetails._shared_folder_change_members_inheritance_policy_details_validator, + 'shared_folder_change_members_management_policy_details': EventDetails._shared_folder_change_members_management_policy_details_validator, + 'shared_folder_change_members_policy_details': EventDetails._shared_folder_change_members_policy_details_validator, + 'shared_folder_create_details': EventDetails._shared_folder_create_details_validator, + 'shared_folder_decline_invitation_details': EventDetails._shared_folder_decline_invitation_details_validator, + 'shared_folder_mount_details': EventDetails._shared_folder_mount_details_validator, + 'shared_folder_nest_details': EventDetails._shared_folder_nest_details_validator, + 'shared_folder_transfer_ownership_details': EventDetails._shared_folder_transfer_ownership_details_validator, + 'shared_folder_unmount_details': EventDetails._shared_folder_unmount_details_validator, + 'shared_link_add_expiry_details': EventDetails._shared_link_add_expiry_details_validator, + 'shared_link_change_expiry_details': EventDetails._shared_link_change_expiry_details_validator, + 'shared_link_change_visibility_details': EventDetails._shared_link_change_visibility_details_validator, + 'shared_link_copy_details': EventDetails._shared_link_copy_details_validator, + 'shared_link_create_details': EventDetails._shared_link_create_details_validator, + 'shared_link_disable_details': EventDetails._shared_link_disable_details_validator, + 'shared_link_download_details': EventDetails._shared_link_download_details_validator, + 'shared_link_remove_expiry_details': EventDetails._shared_link_remove_expiry_details_validator, + 'shared_link_remove_visitor_details': EventDetails._shared_link_remove_visitor_details_validator, + 'shared_link_settings_add_expiration_details': EventDetails._shared_link_settings_add_expiration_details_validator, + 'shared_link_settings_add_password_details': EventDetails._shared_link_settings_add_password_details_validator, + 'shared_link_settings_allow_download_disabled_details': EventDetails._shared_link_settings_allow_download_disabled_details_validator, + 'shared_link_settings_allow_download_enabled_details': EventDetails._shared_link_settings_allow_download_enabled_details_validator, + 'shared_link_settings_change_audience_details': EventDetails._shared_link_settings_change_audience_details_validator, + 'shared_link_settings_change_expiration_details': EventDetails._shared_link_settings_change_expiration_details_validator, + 'shared_link_settings_change_password_details': EventDetails._shared_link_settings_change_password_details_validator, + 'shared_link_settings_remove_expiration_details': EventDetails._shared_link_settings_remove_expiration_details_validator, + 'shared_link_settings_remove_password_details': EventDetails._shared_link_settings_remove_password_details_validator, + 'shared_link_share_details': EventDetails._shared_link_share_details_validator, + 'shared_link_view_details': EventDetails._shared_link_view_details_validator, + 'shared_note_opened_details': EventDetails._shared_note_opened_details_validator, + 'shmodel_disable_downloads_details': EventDetails._shmodel_disable_downloads_details_validator, + 'shmodel_enable_downloads_details': EventDetails._shmodel_enable_downloads_details_validator, + 'shmodel_group_share_details': EventDetails._shmodel_group_share_details_validator, + 'showcase_access_granted_details': EventDetails._showcase_access_granted_details_validator, + 'showcase_add_member_details': EventDetails._showcase_add_member_details_validator, + 'showcase_archived_details': EventDetails._showcase_archived_details_validator, + 'showcase_created_details': EventDetails._showcase_created_details_validator, + 'showcase_delete_comment_details': EventDetails._showcase_delete_comment_details_validator, + 'showcase_edited_details': EventDetails._showcase_edited_details_validator, + 'showcase_edit_comment_details': EventDetails._showcase_edit_comment_details_validator, + 'showcase_file_added_details': EventDetails._showcase_file_added_details_validator, + 'showcase_file_download_details': EventDetails._showcase_file_download_details_validator, + 'showcase_file_removed_details': EventDetails._showcase_file_removed_details_validator, + 'showcase_file_view_details': EventDetails._showcase_file_view_details_validator, + 'showcase_permanently_deleted_details': EventDetails._showcase_permanently_deleted_details_validator, + 'showcase_post_comment_details': EventDetails._showcase_post_comment_details_validator, + 'showcase_remove_member_details': EventDetails._showcase_remove_member_details_validator, + 'showcase_renamed_details': EventDetails._showcase_renamed_details_validator, + 'showcase_request_access_details': EventDetails._showcase_request_access_details_validator, + 'showcase_resolve_comment_details': EventDetails._showcase_resolve_comment_details_validator, + 'showcase_restored_details': EventDetails._showcase_restored_details_validator, + 'showcase_trashed_details': EventDetails._showcase_trashed_details_validator, + 'showcase_trashed_deprecated_details': EventDetails._showcase_trashed_deprecated_details_validator, + 'showcase_unresolve_comment_details': EventDetails._showcase_unresolve_comment_details_validator, + 'showcase_untrashed_details': EventDetails._showcase_untrashed_details_validator, + 'showcase_untrashed_deprecated_details': EventDetails._showcase_untrashed_deprecated_details_validator, + 'showcase_view_details': EventDetails._showcase_view_details_validator, + 'sign_signature_request_canceled_details': EventDetails._sign_signature_request_canceled_details_validator, + 'sign_signature_request_completed_details': EventDetails._sign_signature_request_completed_details_validator, + 'sign_signature_request_declined_details': EventDetails._sign_signature_request_declined_details_validator, + 'sign_signature_request_opened_details': EventDetails._sign_signature_request_opened_details_validator, + 'sign_signature_request_reminder_sent_details': EventDetails._sign_signature_request_reminder_sent_details_validator, + 'sign_signature_request_sent_details': EventDetails._sign_signature_request_sent_details_validator, + 'sign_template_created_details': EventDetails._sign_template_created_details_validator, + 'sign_template_shared_details': EventDetails._sign_template_shared_details_validator, + 'risc_security_event_details': EventDetails._risc_security_event_details_validator, + 'sso_add_cert_details': EventDetails._sso_add_cert_details_validator, + 'sso_add_login_url_details': EventDetails._sso_add_login_url_details_validator, + 'sso_add_logout_url_details': EventDetails._sso_add_logout_url_details_validator, + 'sso_change_cert_details': EventDetails._sso_change_cert_details_validator, + 'sso_change_login_url_details': EventDetails._sso_change_login_url_details_validator, + 'sso_change_logout_url_details': EventDetails._sso_change_logout_url_details_validator, + 'sso_change_saml_identity_mode_details': EventDetails._sso_change_saml_identity_mode_details_validator, + 'sso_remove_cert_details': EventDetails._sso_remove_cert_details_validator, + 'sso_remove_login_url_details': EventDetails._sso_remove_login_url_details_validator, + 'sso_remove_logout_url_details': EventDetails._sso_remove_logout_url_details_validator, + 'team_folder_change_status_details': EventDetails._team_folder_change_status_details_validator, + 'team_folder_create_details': EventDetails._team_folder_create_details_validator, + 'team_folder_downgrade_details': EventDetails._team_folder_downgrade_details_validator, + 'team_folder_permanently_delete_details': EventDetails._team_folder_permanently_delete_details_validator, + 'team_folder_rename_details': EventDetails._team_folder_rename_details_validator, + 'team_folder_space_limits_change_caps_type_details': EventDetails._team_folder_space_limits_change_caps_type_details_validator, + 'team_folder_space_limits_change_limit_details': EventDetails._team_folder_space_limits_change_limit_details_validator, + 'team_folder_space_limits_change_notification_target_details': EventDetails._team_folder_space_limits_change_notification_target_details_validator, + 'team_selective_sync_settings_changed_details': EventDetails._team_selective_sync_settings_changed_details_validator, + 'account_capture_change_policy_details': EventDetails._account_capture_change_policy_details_validator, + 'admin_email_reminders_changed_details': EventDetails._admin_email_reminders_changed_details_validator, + 'ai_third_party_sharing_dropbox_base_policy_changed_details': EventDetails._ai_third_party_sharing_dropbox_base_policy_changed_details_validator, + 'allow_download_disabled_details': EventDetails._allow_download_disabled_details_validator, + 'allow_download_enabled_details': EventDetails._allow_download_enabled_details_validator, + 'apple_login_change_policy_details': EventDetails._apple_login_change_policy_details_validator, + 'app_permissions_changed_details': EventDetails._app_permissions_changed_details_validator, + 'camera_uploads_policy_changed_details': EventDetails._camera_uploads_policy_changed_details_validator, + 'capture_team_space_policy_changed_details': EventDetails._capture_team_space_policy_changed_details_validator, + 'capture_transcript_policy_changed_details': EventDetails._capture_transcript_policy_changed_details_validator, + 'classification_change_policy_details': EventDetails._classification_change_policy_details_validator, + 'computer_backup_policy_changed_details': EventDetails._computer_backup_policy_changed_details_validator, + 'content_administration_policy_changed_details': EventDetails._content_administration_policy_changed_details_validator, + 'content_deletion_protection_change_policy_details': EventDetails._content_deletion_protection_change_policy_details_validator, + 'dash_external_sharing_policy_changed_details': EventDetails._dash_external_sharing_policy_changed_details_validator, + 'data_placement_restriction_change_policy_details': EventDetails._data_placement_restriction_change_policy_details_validator, + 'data_placement_restriction_satisfy_policy_details': EventDetails._data_placement_restriction_satisfy_policy_details_validator, + 'device_approvals_add_exception_details': EventDetails._device_approvals_add_exception_details_validator, + 'device_approvals_change_desktop_policy_details': EventDetails._device_approvals_change_desktop_policy_details_validator, + 'device_approvals_change_mobile_policy_details': EventDetails._device_approvals_change_mobile_policy_details_validator, + 'device_approvals_change_overage_action_details': EventDetails._device_approvals_change_overage_action_details_validator, + 'device_approvals_change_unlink_action_details': EventDetails._device_approvals_change_unlink_action_details_validator, + 'device_approvals_remove_exception_details': EventDetails._device_approvals_remove_exception_details_validator, + 'directory_restrictions_add_members_details': EventDetails._directory_restrictions_add_members_details_validator, + 'directory_restrictions_remove_members_details': EventDetails._directory_restrictions_remove_members_details_validator, + 'dropbox_passwords_policy_changed_details': EventDetails._dropbox_passwords_policy_changed_details_validator, + 'email_ingest_policy_changed_details': EventDetails._email_ingest_policy_changed_details_validator, + 'emm_add_exception_details': EventDetails._emm_add_exception_details_validator, + 'emm_change_policy_details': EventDetails._emm_change_policy_details_validator, + 'emm_remove_exception_details': EventDetails._emm_remove_exception_details_validator, + 'extended_version_history_change_policy_details': EventDetails._extended_version_history_change_policy_details_validator, + 'external_drive_backup_policy_changed_details': EventDetails._external_drive_backup_policy_changed_details_validator, + 'file_comments_change_policy_details': EventDetails._file_comments_change_policy_details_validator, + 'file_locking_policy_changed_details': EventDetails._file_locking_policy_changed_details_validator, + 'file_provider_migration_policy_changed_details': EventDetails._file_provider_migration_policy_changed_details_validator, + 'file_requests_change_policy_details': EventDetails._file_requests_change_policy_details_validator, + 'file_requests_emails_enabled_details': EventDetails._file_requests_emails_enabled_details_validator, + 'file_requests_emails_restricted_to_team_only_details': EventDetails._file_requests_emails_restricted_to_team_only_details_validator, + 'file_transfers_policy_changed_details': EventDetails._file_transfers_policy_changed_details_validator, + 'flexible_file_names_policy_changed_details': EventDetails._flexible_file_names_policy_changed_details_validator, + 'folder_link_restriction_policy_changed_details': EventDetails._folder_link_restriction_policy_changed_details_validator, + 'google_sso_change_policy_details': EventDetails._google_sso_change_policy_details_validator, + 'group_user_management_change_policy_details': EventDetails._group_user_management_change_policy_details_validator, + 'integration_policy_changed_details': EventDetails._integration_policy_changed_details_validator, + 'invite_acceptance_email_policy_changed_details': EventDetails._invite_acceptance_email_policy_changed_details_validator, + 'media_hub_adding_people_policy_changed_details': EventDetails._media_hub_adding_people_policy_changed_details_validator, + 'media_hub_download_policy_changed_details': EventDetails._media_hub_download_policy_changed_details_validator, + 'media_hub_link_sharing_policy_changed_details': EventDetails._media_hub_link_sharing_policy_changed_details_validator, + 'member_requests_change_policy_details': EventDetails._member_requests_change_policy_details_validator, + 'member_send_invite_policy_changed_details': EventDetails._member_send_invite_policy_changed_details_validator, + 'member_space_limits_add_exception_details': EventDetails._member_space_limits_add_exception_details_validator, + 'member_space_limits_change_caps_type_policy_details': EventDetails._member_space_limits_change_caps_type_policy_details_validator, + 'member_space_limits_change_policy_details': EventDetails._member_space_limits_change_policy_details_validator, + 'member_space_limits_remove_exception_details': EventDetails._member_space_limits_remove_exception_details_validator, + 'member_suggestions_change_policy_details': EventDetails._member_suggestions_change_policy_details_validator, + 'microsoft_login_change_policy_details': EventDetails._microsoft_login_change_policy_details_validator, + 'microsoft_office_addin_change_policy_details': EventDetails._microsoft_office_addin_change_policy_details_validator, + 'multi_team_identity_policy_changed_details': EventDetails._multi_team_identity_policy_changed_details_validator, + 'network_control_change_policy_details': EventDetails._network_control_change_policy_details_validator, + 'paper_change_deployment_policy_details': EventDetails._paper_change_deployment_policy_details_validator, + 'paper_change_member_link_policy_details': EventDetails._paper_change_member_link_policy_details_validator, + 'paper_change_member_policy_details': EventDetails._paper_change_member_policy_details_validator, + 'paper_change_policy_details': EventDetails._paper_change_policy_details_validator, + 'paper_default_folder_policy_changed_details': EventDetails._paper_default_folder_policy_changed_details_validator, + 'paper_desktop_policy_changed_details': EventDetails._paper_desktop_policy_changed_details_validator, + 'paper_enabled_users_group_addition_details': EventDetails._paper_enabled_users_group_addition_details_validator, + 'paper_enabled_users_group_removal_details': EventDetails._paper_enabled_users_group_removal_details_validator, + 'passkey_login_policy_changed_details': EventDetails._passkey_login_policy_changed_details_validator, + 'password_strength_requirements_change_policy_details': EventDetails._password_strength_requirements_change_policy_details_validator, + 'permanent_delete_change_policy_details': EventDetails._permanent_delete_change_policy_details_validator, + 'previews_ai_policy_changed_details': EventDetails._previews_ai_policy_changed_details_validator, + 'replay_adding_people_policy_changed_details': EventDetails._replay_adding_people_policy_changed_details_validator, + 'replay_sharing_policy_changed_details': EventDetails._replay_sharing_policy_changed_details_validator, + 'reseller_support_change_policy_details': EventDetails._reseller_support_change_policy_details_validator, + 'rewind_policy_changed_details': EventDetails._rewind_policy_changed_details_validator, + 'send_and_track_policy_changed_details': EventDetails._send_and_track_policy_changed_details_validator, + 'send_external_sharing_policy_changed_details': EventDetails._send_external_sharing_policy_changed_details_validator, + 'send_for_signature_policy_changed_details': EventDetails._send_for_signature_policy_changed_details_validator, + 'shared_link_default_permissions_policy_changed_details': EventDetails._shared_link_default_permissions_policy_changed_details_validator, + 'sharing_change_folder_join_policy_details': EventDetails._sharing_change_folder_join_policy_details_validator, + 'sharing_change_link_allow_change_expiration_policy_details': EventDetails._sharing_change_link_allow_change_expiration_policy_details_validator, + 'sharing_change_link_default_expiration_policy_details': EventDetails._sharing_change_link_default_expiration_policy_details_validator, + 'sharing_change_link_enforce_password_policy_details': EventDetails._sharing_change_link_enforce_password_policy_details_validator, + 'sharing_change_link_policy_details': EventDetails._sharing_change_link_policy_details_validator, + 'sharing_change_member_policy_details': EventDetails._sharing_change_member_policy_details_validator, + 'showcase_change_download_policy_details': EventDetails._showcase_change_download_policy_details_validator, + 'showcase_change_enabled_policy_details': EventDetails._showcase_change_enabled_policy_details_validator, + 'showcase_change_external_sharing_policy_details': EventDetails._showcase_change_external_sharing_policy_details_validator, + 'sign_external_sharing_policy_changed_details': EventDetails._sign_external_sharing_policy_changed_details_validator, + 'sign_template_creation_permission_changed_details': EventDetails._sign_template_creation_permission_changed_details_validator, + 'smarter_smart_sync_policy_changed_details': EventDetails._smarter_smart_sync_policy_changed_details_validator, + 'smart_sync_change_policy_details': EventDetails._smart_sync_change_policy_details_validator, + 'smart_sync_not_opt_out_details': EventDetails._smart_sync_not_opt_out_details_validator, + 'smart_sync_opt_out_details': EventDetails._smart_sync_opt_out_details_validator, + 'sso_change_policy_details': EventDetails._sso_change_policy_details_validator, + 'stack_cross_team_access_policy_changed_details': EventDetails._stack_cross_team_access_policy_changed_details_validator, + 'team_branding_policy_changed_details': EventDetails._team_branding_policy_changed_details_validator, + 'team_extensions_policy_changed_details': EventDetails._team_extensions_policy_changed_details_validator, + 'team_member_storage_request_policy_changed_details': EventDetails._team_member_storage_request_policy_changed_details_validator, + 'team_selective_sync_policy_changed_details': EventDetails._team_selective_sync_policy_changed_details_validator, + 'team_sharing_whitelist_subjects_changed_details': EventDetails._team_sharing_whitelist_subjects_changed_details_validator, + 'tfa_add_exception_details': EventDetails._tfa_add_exception_details_validator, + 'tfa_change_policy_details': EventDetails._tfa_change_policy_details_validator, + 'tfa_remove_exception_details': EventDetails._tfa_remove_exception_details_validator, + 'top_level_content_policy_changed_details': EventDetails._top_level_content_policy_changed_details_validator, + 'two_account_change_policy_details': EventDetails._two_account_change_policy_details_validator, + 'viewer_info_policy_changed_details': EventDetails._viewer_info_policy_changed_details_validator, + 'watermarking_policy_changed_details': EventDetails._watermarking_policy_changed_details_validator, + 'web_sessions_change_active_session_limit_details': EventDetails._web_sessions_change_active_session_limit_details_validator, + 'web_sessions_change_fixed_length_policy_details': EventDetails._web_sessions_change_fixed_length_policy_details_validator, + 'web_sessions_change_idle_length_policy_details': EventDetails._web_sessions_change_idle_length_policy_details_validator, + 'data_residency_migration_request_successful_details': EventDetails._data_residency_migration_request_successful_details_validator, + 'data_residency_migration_request_unsuccessful_details': EventDetails._data_residency_migration_request_unsuccessful_details_validator, + 'team_merge_from_details': EventDetails._team_merge_from_details_validator, + 'team_merge_to_details': EventDetails._team_merge_to_details_validator, + 'team_profile_add_background_details': EventDetails._team_profile_add_background_details_validator, + 'team_profile_add_logo_details': EventDetails._team_profile_add_logo_details_validator, + 'team_profile_change_background_details': EventDetails._team_profile_change_background_details_validator, + 'team_profile_change_default_language_details': EventDetails._team_profile_change_default_language_details_validator, + 'team_profile_change_logo_details': EventDetails._team_profile_change_logo_details_validator, + 'team_profile_change_name_details': EventDetails._team_profile_change_name_details_validator, + 'team_profile_remove_background_details': EventDetails._team_profile_remove_background_details_validator, + 'team_profile_remove_logo_details': EventDetails._team_profile_remove_logo_details_validator, + 'passkey_add_details': EventDetails._passkey_add_details_validator, + 'passkey_remove_details': EventDetails._passkey_remove_details_validator, + 'tfa_add_backup_phone_details': EventDetails._tfa_add_backup_phone_details_validator, + 'tfa_add_security_key_details': EventDetails._tfa_add_security_key_details_validator, + 'tfa_change_backup_phone_details': EventDetails._tfa_change_backup_phone_details_validator, + 'tfa_change_status_details': EventDetails._tfa_change_status_details_validator, + 'tfa_remove_backup_phone_details': EventDetails._tfa_remove_backup_phone_details_validator, + 'tfa_remove_security_key_details': EventDetails._tfa_remove_security_key_details_validator, + 'tfa_reset_details': EventDetails._tfa_reset_details_validator, + 'changed_enterprise_admin_role_details': EventDetails._changed_enterprise_admin_role_details_validator, + 'changed_enterprise_connected_team_status_details': EventDetails._changed_enterprise_connected_team_status_details_validator, + 'ended_enterprise_admin_session_details': EventDetails._ended_enterprise_admin_session_details_validator, + 'ended_enterprise_admin_session_deprecated_details': EventDetails._ended_enterprise_admin_session_deprecated_details_validator, + 'enterprise_settings_locking_details': EventDetails._enterprise_settings_locking_details_validator, + 'guest_admin_change_status_details': EventDetails._guest_admin_change_status_details_validator, + 'started_enterprise_admin_session_details': EventDetails._started_enterprise_admin_session_details_validator, + 'team_merge_request_accepted_details': EventDetails._team_merge_request_accepted_details_validator, + 'team_merge_request_accepted_shown_to_primary_team_details': EventDetails._team_merge_request_accepted_shown_to_primary_team_details_validator, + 'team_merge_request_accepted_shown_to_secondary_team_details': EventDetails._team_merge_request_accepted_shown_to_secondary_team_details_validator, + 'team_merge_request_auto_canceled_details': EventDetails._team_merge_request_auto_canceled_details_validator, + 'team_merge_request_canceled_details': EventDetails._team_merge_request_canceled_details_validator, + 'team_merge_request_canceled_shown_to_primary_team_details': EventDetails._team_merge_request_canceled_shown_to_primary_team_details_validator, + 'team_merge_request_canceled_shown_to_secondary_team_details': EventDetails._team_merge_request_canceled_shown_to_secondary_team_details_validator, + 'team_merge_request_expired_details': EventDetails._team_merge_request_expired_details_validator, + 'team_merge_request_expired_shown_to_primary_team_details': EventDetails._team_merge_request_expired_shown_to_primary_team_details_validator, + 'team_merge_request_expired_shown_to_secondary_team_details': EventDetails._team_merge_request_expired_shown_to_secondary_team_details_validator, + 'team_merge_request_rejected_shown_to_primary_team_details': EventDetails._team_merge_request_rejected_shown_to_primary_team_details_validator, + 'team_merge_request_rejected_shown_to_secondary_team_details': EventDetails._team_merge_request_rejected_shown_to_secondary_team_details_validator, + 'team_merge_request_reminder_details': EventDetails._team_merge_request_reminder_details_validator, + 'team_merge_request_reminder_shown_to_primary_team_details': EventDetails._team_merge_request_reminder_shown_to_primary_team_details_validator, + 'team_merge_request_reminder_shown_to_secondary_team_details': EventDetails._team_merge_request_reminder_shown_to_secondary_team_details_validator, + 'team_merge_request_revoked_details': EventDetails._team_merge_request_revoked_details_validator, + 'team_merge_request_sent_shown_to_primary_team_details': EventDetails._team_merge_request_sent_shown_to_primary_team_details_validator, + 'team_merge_request_sent_shown_to_secondary_team_details': EventDetails._team_merge_request_sent_shown_to_secondary_team_details_validator, + 'missing_details': EventDetails._missing_details_validator, + 'other': EventDetails._other_validator, } -EventDetails.other = EventDetails("other") +EventDetails.other = EventDetails('other') -EventType._admin_alerting_alert_state_changed_validator = ( - AdminAlertingAlertStateChangedType_validator -) -EventType._admin_alerting_changed_alert_config_validator = ( - AdminAlertingChangedAlertConfigType_validator -) +EventType._admin_alerting_alert_state_changed_validator = AdminAlertingAlertStateChangedType_validator +EventType._admin_alerting_changed_alert_config_validator = AdminAlertingChangedAlertConfigType_validator EventType._admin_alerting_triggered_alert_validator = AdminAlertingTriggeredAlertType_validator -EventType._ransomware_restore_process_completed_validator = ( - RansomwareRestoreProcessCompletedType_validator -) -EventType._ransomware_restore_process_started_validator = ( - RansomwareRestoreProcessStartedType_validator -) +EventType._ransomware_restore_process_completed_validator = RansomwareRestoreProcessCompletedType_validator +EventType._ransomware_restore_process_started_validator = RansomwareRestoreProcessStartedType_validator EventType._app_blocked_by_permissions_validator = AppBlockedByPermissionsType_validator EventType._app_link_team_validator = AppLinkTeamType_validator EventType._app_link_user_validator = AppLinkUserType_validator @@ -103330,21 +97939,13 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): EventType._dash_added_comment_to_stack_validator = DashAddedCommentToStackType_validator EventType._dash_added_connector_validator = DashAddedConnectorType_validator EventType._dash_added_link_to_stack_validator = DashAddedLinkToStackType_validator -EventType._dash_added_team_email_domain_allowlist_validator = ( - DashAddedTeamEmailDomainAllowlistType_validator -) -EventType._dash_admin_added_org_wide_connector_validator = ( - DashAdminAddedOrgWideConnectorType_validator -) +EventType._dash_added_team_email_domain_allowlist_validator = DashAddedTeamEmailDomainAllowlistType_validator +EventType._dash_admin_added_org_wide_connector_validator = DashAdminAddedOrgWideConnectorType_validator EventType._dash_admin_disabled_connector_validator = DashAdminDisabledConnectorType_validator EventType._dash_admin_enabled_connector_validator = DashAdminEnabledConnectorType_validator -EventType._dash_admin_removed_org_wide_connector_validator = ( - DashAdminRemovedOrgWideConnectorType_validator -) +EventType._dash_admin_removed_org_wide_connector_validator = DashAdminRemovedOrgWideConnectorType_validator EventType._dash_archived_stack_validator = DashArchivedStackType_validator -EventType._dash_changed_audience_of_shared_link_to_stack_validator = ( - DashChangedAudienceOfSharedLinkToStackType_validator -) +EventType._dash_changed_audience_of_shared_link_to_stack_validator = DashChangedAudienceOfSharedLinkToStackType_validator EventType._dash_cloned_stack_validator = DashClonedStackType_validator EventType._dash_connector_tools_call_validator = DashConnectorToolsCallType_validator EventType._dash_created_stack_validator = DashCreatedStackType_validator @@ -103354,34 +97955,22 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): EventType._dash_external_user_opened_stack_validator = DashExternalUserOpenedStackType_validator EventType._dash_first_launched_desktop_validator = DashFirstLaunchedDesktopType_validator EventType._dash_first_launched_extension_validator = DashFirstLaunchedExtensionType_validator -EventType._dash_first_launched_web_start_page_validator = ( - DashFirstLaunchedWebStartPageType_validator -) +EventType._dash_first_launched_web_start_page_validator = DashFirstLaunchedWebStartPageType_validator EventType._dash_opened_shared_link_to_stack_validator = DashOpenedSharedLinkToStackType_validator EventType._dash_opened_stack_validator = DashOpenedStackType_validator -EventType._dash_preview_opt_out_status_changed_validator = ( - DashPreviewOptOutStatusChangedType_validator -) +EventType._dash_preview_opt_out_status_changed_validator = DashPreviewOptOutStatusChangedType_validator EventType._dash_removed_connector_validator = DashRemovedConnectorType_validator EventType._dash_removed_link_from_stack_validator = DashRemovedLinkFromStackType_validator EventType._dash_removed_shared_link_to_stack_validator = DashRemovedSharedLinkToStackType_validator -EventType._dash_removed_team_email_domain_allowlist_validator = ( - DashRemovedTeamEmailDomainAllowlistType_validator -) +EventType._dash_removed_team_email_domain_allowlist_validator = DashRemovedTeamEmailDomainAllowlistType_validator EventType._dash_renamed_stack_validator = DashRenamedStackType_validator EventType._dash_shared_link_to_stack_validator = DashSharedLinkToStackType_validator EventType._dash_unarchived_stack_validator = DashUnarchivedStackType_validator EventType._dash_viewed_company_stack_validator = DashViewedCompanyStackType_validator -EventType._dash_viewed_external_ai_activity_report_validator = ( - DashViewedExternalAiActivityReportType_validator -) +EventType._dash_viewed_external_ai_activity_report_validator = DashViewedExternalAiActivityReportType_validator EventType._governance_policy_add_folders_validator = GovernancePolicyAddFoldersType_validator -EventType._governance_policy_add_folder_failed_validator = ( - GovernancePolicyAddFolderFailedType_validator -) -EventType._governance_policy_content_disposed_validator = ( - GovernancePolicyContentDisposedType_validator -) +EventType._governance_policy_add_folder_failed_validator = GovernancePolicyAddFolderFailedType_validator +EventType._governance_policy_content_disposed_validator = GovernancePolicyContentDisposedType_validator EventType._governance_policy_create_validator = GovernancePolicyCreateType_validator EventType._governance_policy_delete_validator = GovernancePolicyDeleteType_validator EventType._governance_policy_edit_details_validator = GovernancePolicyEditDetailsType_validator @@ -103390,9 +97979,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): EventType._governance_policy_export_removed_validator = GovernancePolicyExportRemovedType_validator EventType._governance_policy_remove_folders_validator = GovernancePolicyRemoveFoldersType_validator EventType._governance_policy_report_created_validator = GovernancePolicyReportCreatedType_validator -EventType._governance_policy_zip_part_downloaded_validator = ( - GovernancePolicyZipPartDownloadedType_validator -) +EventType._governance_policy_zip_part_downloaded_validator = GovernancePolicyZipPartDownloadedType_validator EventType._legal_holds_activate_a_hold_validator = LegalHoldsActivateAHoldType_validator EventType._legal_holds_add_members_validator = LegalHoldsAddMembersType_validator EventType._legal_holds_change_hold_details_validator = LegalHoldsChangeHoldDetailsType_validator @@ -103416,92 +98003,44 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): EventType._device_sync_backup_status_changed_validator = DeviceSyncBackupStatusChangedType_validator EventType._device_unlink_validator = DeviceUnlinkType_validator EventType._dropbox_passwords_exported_validator = DropboxPasswordsExportedType_validator -EventType._dropbox_passwords_new_device_enrolled_validator = ( - DropboxPasswordsNewDeviceEnrolledType_validator -) +EventType._dropbox_passwords_new_device_enrolled_validator = DropboxPasswordsNewDeviceEnrolledType_validator EventType._emm_refresh_auth_token_validator = EmmRefreshAuthTokenType_validator -EventType._external_drive_backup_eligibility_status_checked_validator = ( - ExternalDriveBackupEligibilityStatusCheckedType_validator -) -EventType._external_drive_backup_status_changed_validator = ( - ExternalDriveBackupStatusChangedType_validator -) -EventType._account_capture_change_availability_validator = ( - AccountCaptureChangeAvailabilityType_validator -) +EventType._external_drive_backup_eligibility_status_checked_validator = ExternalDriveBackupEligibilityStatusCheckedType_validator +EventType._external_drive_backup_status_changed_validator = ExternalDriveBackupStatusChangedType_validator +EventType._account_capture_change_availability_validator = AccountCaptureChangeAvailabilityType_validator EventType._account_capture_migrate_account_validator = AccountCaptureMigrateAccountType_validator -EventType._account_capture_notification_emails_sent_validator = ( - AccountCaptureNotificationEmailsSentType_validator -) -EventType._account_capture_relinquish_account_validator = ( - AccountCaptureRelinquishAccountType_validator -) +EventType._account_capture_notification_emails_sent_validator = AccountCaptureNotificationEmailsSentType_validator +EventType._account_capture_relinquish_account_validator = AccountCaptureRelinquishAccountType_validator EventType._disabled_domain_invites_validator = DisabledDomainInvitesType_validator -EventType._domain_invites_approve_request_to_join_team_validator = ( - DomainInvitesApproveRequestToJoinTeamType_validator -) -EventType._domain_invites_decline_request_to_join_team_validator = ( - DomainInvitesDeclineRequestToJoinTeamType_validator -) -EventType._domain_invites_email_existing_users_validator = ( - DomainInvitesEmailExistingUsersType_validator -) -EventType._domain_invites_request_to_join_team_validator = ( - DomainInvitesRequestToJoinTeamType_validator -) -EventType._domain_invites_set_invite_new_user_pref_to_no_validator = ( - DomainInvitesSetInviteNewUserPrefToNoType_validator -) -EventType._domain_invites_set_invite_new_user_pref_to_yes_validator = ( - DomainInvitesSetInviteNewUserPrefToYesType_validator -) -EventType._domain_verification_add_domain_fail_validator = ( - DomainVerificationAddDomainFailType_validator -) -EventType._domain_verification_add_domain_success_validator = ( - DomainVerificationAddDomainSuccessType_validator -) -EventType._domain_verification_remove_domain_validator = ( - DomainVerificationRemoveDomainType_validator -) +EventType._domain_invites_approve_request_to_join_team_validator = DomainInvitesApproveRequestToJoinTeamType_validator +EventType._domain_invites_decline_request_to_join_team_validator = DomainInvitesDeclineRequestToJoinTeamType_validator +EventType._domain_invites_email_existing_users_validator = DomainInvitesEmailExistingUsersType_validator +EventType._domain_invites_request_to_join_team_validator = DomainInvitesRequestToJoinTeamType_validator +EventType._domain_invites_set_invite_new_user_pref_to_no_validator = DomainInvitesSetInviteNewUserPrefToNoType_validator +EventType._domain_invites_set_invite_new_user_pref_to_yes_validator = DomainInvitesSetInviteNewUserPrefToYesType_validator +EventType._domain_verification_add_domain_fail_validator = DomainVerificationAddDomainFailType_validator +EventType._domain_verification_add_domain_success_validator = DomainVerificationAddDomainSuccessType_validator +EventType._domain_verification_remove_domain_validator = DomainVerificationRemoveDomainType_validator EventType._enabled_domain_invites_validator = EnabledDomainInvitesType_validator -EventType._encrypted_folder_cancel_team_key_rotation_validator = ( - EncryptedFolderCancelTeamKeyRotationType_validator -) -EventType._encrypted_folder_enroll_backup_key_validator = ( - EncryptedFolderEnrollBackupKeyType_validator -) +EventType._encrypted_folder_cancel_team_key_rotation_validator = EncryptedFolderCancelTeamKeyRotationType_validator +EventType._encrypted_folder_enroll_backup_key_validator = EncryptedFolderEnrollBackupKeyType_validator EventType._encrypted_folder_enroll_client_validator = EncryptedFolderEnrollClientType_validator EventType._encrypted_folder_enroll_team_validator = EncryptedFolderEnrollTeamType_validator -EventType._encrypted_folder_finish_team_unenrollment_validator = ( - EncryptedFolderFinishTeamUnenrollmentType_validator -) -EventType._encrypted_folder_init_team_key_rotation_validator = ( - EncryptedFolderInitTeamKeyRotationType_validator -) -EventType._encrypted_folder_init_team_unenrollment_validator = ( - EncryptedFolderInitTeamUnenrollmentType_validator -) -EventType._encrypted_folder_remove_backup_key_validator = ( - EncryptedFolderRemoveBackupKeyType_validator -) +EventType._encrypted_folder_finish_team_unenrollment_validator = EncryptedFolderFinishTeamUnenrollmentType_validator +EventType._encrypted_folder_init_team_key_rotation_validator = EncryptedFolderInitTeamKeyRotationType_validator +EventType._encrypted_folder_init_team_unenrollment_validator = EncryptedFolderInitTeamUnenrollmentType_validator +EventType._encrypted_folder_remove_backup_key_validator = EncryptedFolderRemoveBackupKeyType_validator EventType._encrypted_folder_rotate_team_key_validator = EncryptedFolderRotateTeamKeyType_validator EventType._encrypted_folder_unenroll_client_validator = EncryptedFolderUnenrollClientType_validator EventType._team_encryption_key_activate_key_validator = TeamEncryptionKeyActivateKeyType_validator -EventType._team_encryption_key_cancel_key_deletion_validator = ( - TeamEncryptionKeyCancelKeyDeletionType_validator -) +EventType._team_encryption_key_cancel_key_deletion_validator = TeamEncryptionKeyCancelKeyDeletionType_validator EventType._team_encryption_key_create_key_validator = TeamEncryptionKeyCreateKeyType_validator -EventType._team_encryption_key_deactivate_key_validator = ( - TeamEncryptionKeyDeactivateKeyType_validator -) +EventType._team_encryption_key_deactivate_key_validator = TeamEncryptionKeyDeactivateKeyType_validator EventType._team_encryption_key_delete_key_validator = TeamEncryptionKeyDeleteKeyType_validator EventType._team_encryption_key_disable_key_validator = TeamEncryptionKeyDisableKeyType_validator EventType._team_encryption_key_enable_key_validator = TeamEncryptionKeyEnableKeyType_validator EventType._team_encryption_key_rotate_key_validator = TeamEncryptionKeyRotateKeyType_validator -EventType._team_encryption_key_schedule_key_deletion_validator = ( - TeamEncryptionKeyScheduleKeyDeletionType_validator -) +EventType._team_encryption_key_schedule_key_deletion_validator = TeamEncryptionKeyScheduleKeyDeletionType_validator EventType._apply_naming_convention_validator = ApplyNamingConventionType_validator EventType._create_folder_validator = CreateFolderType_validator EventType._file_add_validator = FileAddType_validator @@ -103520,9 +98059,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): EventType._file_revert_validator = FileRevertType_validator EventType._file_rollback_changes_validator = FileRollbackChangesType_validator EventType._file_save_copy_reference_validator = FileSaveCopyReferenceType_validator -EventType._folder_overview_description_changed_validator = ( - FolderOverviewDescriptionChangedType_validator -) +EventType._folder_overview_description_changed_validator = FolderOverviewDescriptionChangedType_validator EventType._folder_overview_item_pinned_validator = FolderOverviewItemPinnedType_validator EventType._folder_overview_item_unpinned_validator = FolderOverviewItemUnpinnedType_validator EventType._media_hub_file_downloaded_validator = MediaHubFileDownloadedType_validator @@ -103553,9 +98090,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): EventType._group_create_validator = GroupCreateType_validator EventType._group_delete_validator = GroupDeleteType_validator EventType._group_description_updated_validator = GroupDescriptionUpdatedType_validator -EventType._group_external_sharing_setting_override_changed_validator = ( - GroupExternalSharingSettingOverrideChangedType_validator -) +EventType._group_external_sharing_setting_override_changed_validator = GroupExternalSharingSettingOverrideChangedType_validator EventType._group_join_policy_updated_validator = GroupJoinPolicyUpdatedType_validator EventType._group_moved_validator = GroupMovedType_validator EventType._group_remove_external_id_validator = GroupRemoveExternalIdType_validator @@ -103563,12 +98098,8 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): EventType._group_rename_validator = GroupRenameType_validator EventType._account_lock_or_unlocked_validator = AccountLockOrUnlockedType_validator EventType._emm_error_validator = EmmErrorType_validator -EventType._guest_admin_signed_in_via_trusted_teams_validator = ( - GuestAdminSignedInViaTrustedTeamsType_validator -) -EventType._guest_admin_signed_out_via_trusted_teams_validator = ( - GuestAdminSignedOutViaTrustedTeamsType_validator -) +EventType._guest_admin_signed_in_via_trusted_teams_validator = GuestAdminSignedInViaTrustedTeamsType_validator +EventType._guest_admin_signed_out_via_trusted_teams_validator = GuestAdminSignedOutViaTrustedTeamsType_validator EventType._login_fail_validator = LoginFailType_validator EventType._login_success_validator = LoginSuccessType_validator EventType._logout_validator = LogoutType_validator @@ -103594,21 +98125,13 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): EventType._member_change_status_validator = MemberChangeStatusType_validator EventType._member_delete_manual_contacts_validator = MemberDeleteManualContactsType_validator EventType._member_delete_profile_photo_validator = MemberDeleteProfilePhotoType_validator -EventType._member_permanently_delete_account_contents_validator = ( - MemberPermanentlyDeleteAccountContentsType_validator -) +EventType._member_permanently_delete_account_contents_validator = MemberPermanentlyDeleteAccountContentsType_validator EventType._member_remove_external_id_validator = MemberRemoveExternalIdType_validator EventType._member_set_profile_photo_validator = MemberSetProfilePhotoType_validator -EventType._member_space_limits_add_custom_quota_validator = ( - MemberSpaceLimitsAddCustomQuotaType_validator -) -EventType._member_space_limits_change_custom_quota_validator = ( - MemberSpaceLimitsChangeCustomQuotaType_validator -) +EventType._member_space_limits_add_custom_quota_validator = MemberSpaceLimitsAddCustomQuotaType_validator +EventType._member_space_limits_change_custom_quota_validator = MemberSpaceLimitsChangeCustomQuotaType_validator EventType._member_space_limits_change_status_validator = MemberSpaceLimitsChangeStatusType_validator -EventType._member_space_limits_remove_custom_quota_validator = ( - MemberSpaceLimitsRemoveCustomQuotaType_validator -) +EventType._member_space_limits_remove_custom_quota_validator = MemberSpaceLimitsRemoveCustomQuotaType_validator EventType._member_suggest_validator = MemberSuggestType_validator EventType._member_transfer_account_contents_validator = MemberTransferAccountContentsType_validator EventType._pending_secondary_email_added_validator = PendingSecondaryEmailAddedType_validator @@ -103662,9 +98185,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): EventType._paper_folder_deleted_validator = PaperFolderDeletedType_validator EventType._paper_folder_followed_validator = PaperFolderFollowedType_validator EventType._paper_folder_team_invite_validator = PaperFolderTeamInviteType_validator -EventType._paper_published_link_change_permission_validator = ( - PaperPublishedLinkChangePermissionType_validator -) +EventType._paper_published_link_change_permission_validator = PaperPublishedLinkChangePermissionType_validator EventType._paper_published_link_create_validator = PaperPublishedLinkCreateType_validator EventType._paper_published_link_disabled_validator = PaperPublishedLinkDisabledType_validator EventType._paper_published_link_view_validator = PaperPublishedLinkViewType_validator @@ -103673,53 +98194,29 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): EventType._password_reset_all_validator = PasswordResetAllType_validator EventType._protect_internal_domains_changed_validator = ProtectInternalDomainsChangedType_validator EventType._classification_create_report_validator = ClassificationCreateReportType_validator -EventType._classification_create_report_fail_validator = ( - ClassificationCreateReportFailType_validator -) +EventType._classification_create_report_fail_validator = ClassificationCreateReportFailType_validator EventType._emm_create_exceptions_report_validator = EmmCreateExceptionsReportType_validator EventType._emm_create_usage_report_validator = EmmCreateUsageReportType_validator EventType._export_members_report_validator = ExportMembersReportType_validator EventType._export_members_report_fail_validator = ExportMembersReportFailType_validator EventType._external_sharing_create_report_validator = ExternalSharingCreateReportType_validator EventType._external_sharing_report_failed_validator = ExternalSharingReportFailedType_validator -EventType._member_access_details_create_report_validator = ( - MemberAccessDetailsCreateReportType_validator -) -EventType._member_access_details_create_report_failed_validator = ( - MemberAccessDetailsCreateReportFailedType_validator -) -EventType._no_expiration_link_gen_create_report_validator = ( - NoExpirationLinkGenCreateReportType_validator -) -EventType._no_expiration_link_gen_report_failed_validator = ( - NoExpirationLinkGenReportFailedType_validator -) -EventType._no_password_link_gen_create_report_validator = ( - NoPasswordLinkGenCreateReportType_validator -) -EventType._no_password_link_gen_report_failed_validator = ( - NoPasswordLinkGenReportFailedType_validator -) -EventType._no_password_link_view_create_report_validator = ( - NoPasswordLinkViewCreateReportType_validator -) -EventType._no_password_link_view_report_failed_validator = ( - NoPasswordLinkViewReportFailedType_validator -) +EventType._member_access_details_create_report_validator = MemberAccessDetailsCreateReportType_validator +EventType._member_access_details_create_report_failed_validator = MemberAccessDetailsCreateReportFailedType_validator +EventType._no_expiration_link_gen_create_report_validator = NoExpirationLinkGenCreateReportType_validator +EventType._no_expiration_link_gen_report_failed_validator = NoExpirationLinkGenReportFailedType_validator +EventType._no_password_link_gen_create_report_validator = NoPasswordLinkGenCreateReportType_validator +EventType._no_password_link_gen_report_failed_validator = NoPasswordLinkGenReportFailedType_validator +EventType._no_password_link_view_create_report_validator = NoPasswordLinkViewCreateReportType_validator +EventType._no_password_link_view_report_failed_validator = NoPasswordLinkViewReportFailedType_validator EventType._outdated_link_view_create_report_validator = OutdatedLinkViewCreateReportType_validator EventType._outdated_link_view_report_failed_validator = OutdatedLinkViewReportFailedType_validator EventType._paper_admin_export_start_validator = PaperAdminExportStartType_validator EventType._ransomware_alert_create_report_validator = RansomwareAlertCreateReportType_validator -EventType._ransomware_alert_create_report_failed_validator = ( - RansomwareAlertCreateReportFailedType_validator -) +EventType._ransomware_alert_create_report_failed_validator = RansomwareAlertCreateReportFailedType_validator EventType._shared_folders_create_report_validator = SharedFoldersCreateReportType_validator -EventType._shared_folders_create_report_failed_validator = ( - SharedFoldersCreateReportFailedType_validator -) -EventType._smart_sync_create_admin_privilege_report_validator = ( - SmartSyncCreateAdminPrivilegeReportType_validator -) +EventType._shared_folders_create_report_failed_validator = SharedFoldersCreateReportFailedType_validator +EventType._smart_sync_create_admin_privilege_report_validator = SmartSyncCreateAdminPrivilegeReportType_validator EventType._team_activity_create_report_validator = TeamActivityCreateReportType_validator EventType._team_activity_create_report_fail_validator = TeamActivityCreateReportFailType_validator EventType._team_folders_create_report_validator = TeamFoldersCreateReportType_validator @@ -103734,16 +98231,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): EventType._file_transfers_transfer_view_validator = FileTransfersTransferViewType_validator EventType._media_hub_project_team_add_validator = MediaHubProjectTeamAddType_validator EventType._media_hub_project_team_delete_validator = MediaHubProjectTeamDeleteType_validator -EventType._media_hub_project_team_role_changed_validator = ( - MediaHubProjectTeamRoleChangedType_validator -) -EventType._media_hub_shared_link_audience_changed_validator = ( - MediaHubSharedLinkAudienceChangedType_validator -) +EventType._media_hub_project_team_role_changed_validator = MediaHubProjectTeamRoleChangedType_validator +EventType._media_hub_shared_link_audience_changed_validator = MediaHubSharedLinkAudienceChangedType_validator EventType._media_hub_shared_link_created_validator = MediaHubSharedLinkCreatedType_validator -EventType._media_hub_shared_link_download_setting_changed_validator = ( - MediaHubSharedLinkDownloadSettingChangedType_validator -) +EventType._media_hub_shared_link_download_setting_changed_validator = MediaHubSharedLinkDownloadSettingChangedType_validator EventType._media_hub_shared_link_revoked_validator = MediaHubSharedLinkRevokedType_validator EventType._note_acl_invite_only_validator = NoteAclInviteOnlyType_validator EventType._note_acl_link_validator = NoteAclLinkType_validator @@ -103762,13 +98253,9 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): EventType._send_and_track_link_deleted_validator = SendAndTrackLinkDeletedType_validator EventType._send_and_track_link_updated_validator = SendAndTrackLinkUpdatedType_validator EventType._send_and_track_link_viewed_validator = SendAndTrackLinkViewedType_validator -EventType._send_and_track_removed_file_and_associated_links_validator = ( - SendAndTrackRemovedFileAndAssociatedLinksType_validator -) +EventType._send_and_track_removed_file_and_associated_links_validator = SendAndTrackRemovedFileAndAssociatedLinksType_validator EventType._sf_add_group_validator = SfAddGroupType_validator -EventType._sf_allow_non_members_to_view_shared_links_validator = ( - SfAllowNonMembersToViewSharedLinksType_validator -) +EventType._sf_allow_non_members_to_view_shared_links_validator = SfAllowNonMembersToViewSharedLinksType_validator EventType._sf_external_invite_warn_validator = SfExternalInviteWarnType_validator EventType._sf_fb_invite_validator = SfFbInviteType_validator EventType._sf_fb_invite_change_role_validator = SfFbInviteChangeRoleType_validator @@ -103784,34 +98271,20 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): EventType._shared_content_add_link_expiry_validator = SharedContentAddLinkExpiryType_validator EventType._shared_content_add_link_password_validator = SharedContentAddLinkPasswordType_validator EventType._shared_content_add_member_validator = SharedContentAddMemberType_validator -EventType._shared_content_change_downloads_policy_validator = ( - SharedContentChangeDownloadsPolicyType_validator -) -EventType._shared_content_change_invitee_role_validator = ( - SharedContentChangeInviteeRoleType_validator -) -EventType._shared_content_change_link_audience_validator = ( - SharedContentChangeLinkAudienceType_validator -) +EventType._shared_content_change_downloads_policy_validator = SharedContentChangeDownloadsPolicyType_validator +EventType._shared_content_change_invitee_role_validator = SharedContentChangeInviteeRoleType_validator +EventType._shared_content_change_link_audience_validator = SharedContentChangeLinkAudienceType_validator EventType._shared_content_change_link_expiry_validator = SharedContentChangeLinkExpiryType_validator -EventType._shared_content_change_link_password_validator = ( - SharedContentChangeLinkPasswordType_validator -) +EventType._shared_content_change_link_password_validator = SharedContentChangeLinkPasswordType_validator EventType._shared_content_change_member_role_validator = SharedContentChangeMemberRoleType_validator -EventType._shared_content_change_viewer_info_policy_validator = ( - SharedContentChangeViewerInfoPolicyType_validator -) +EventType._shared_content_change_viewer_info_policy_validator = SharedContentChangeViewerInfoPolicyType_validator EventType._shared_content_claim_invitation_validator = SharedContentClaimInvitationType_validator EventType._shared_content_copy_validator = SharedContentCopyType_validator EventType._shared_content_download_validator = SharedContentDownloadType_validator -EventType._shared_content_relinquish_membership_validator = ( - SharedContentRelinquishMembershipType_validator -) +EventType._shared_content_relinquish_membership_validator = SharedContentRelinquishMembershipType_validator EventType._shared_content_remove_invitees_validator = SharedContentRemoveInviteesType_validator EventType._shared_content_remove_link_expiry_validator = SharedContentRemoveLinkExpiryType_validator -EventType._shared_content_remove_link_password_validator = ( - SharedContentRemoveLinkPasswordType_validator -) +EventType._shared_content_remove_link_password_validator = SharedContentRemoveLinkPasswordType_validator EventType._shared_content_remove_member_validator = SharedContentRemoveMemberType_validator EventType._shared_content_request_access_validator = SharedContentRequestAccessType_validator EventType._shared_content_restore_invitees_validator = SharedContentRestoreInviteesType_validator @@ -103819,15 +98292,9 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): EventType._shared_content_unshare_validator = SharedContentUnshareType_validator EventType._shared_content_view_validator = SharedContentViewType_validator EventType._shared_folder_change_link_policy_validator = SharedFolderChangeLinkPolicyType_validator -EventType._shared_folder_change_members_inheritance_policy_validator = ( - SharedFolderChangeMembersInheritancePolicyType_validator -) -EventType._shared_folder_change_members_management_policy_validator = ( - SharedFolderChangeMembersManagementPolicyType_validator -) -EventType._shared_folder_change_members_policy_validator = ( - SharedFolderChangeMembersPolicyType_validator -) +EventType._shared_folder_change_members_inheritance_policy_validator = SharedFolderChangeMembersInheritancePolicyType_validator +EventType._shared_folder_change_members_management_policy_validator = SharedFolderChangeMembersManagementPolicyType_validator +EventType._shared_folder_change_members_policy_validator = SharedFolderChangeMembersPolicyType_validator EventType._shared_folder_create_validator = SharedFolderCreateType_validator EventType._shared_folder_decline_invitation_validator = SharedFolderDeclineInvitationType_validator EventType._shared_folder_mount_validator = SharedFolderMountType_validator @@ -103843,31 +98310,15 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): EventType._shared_link_download_validator = SharedLinkDownloadType_validator EventType._shared_link_remove_expiry_validator = SharedLinkRemoveExpiryType_validator EventType._shared_link_remove_visitor_validator = SharedLinkRemoveVisitorType_validator -EventType._shared_link_settings_add_expiration_validator = ( - SharedLinkSettingsAddExpirationType_validator -) +EventType._shared_link_settings_add_expiration_validator = SharedLinkSettingsAddExpirationType_validator EventType._shared_link_settings_add_password_validator = SharedLinkSettingsAddPasswordType_validator -EventType._shared_link_settings_allow_download_disabled_validator = ( - SharedLinkSettingsAllowDownloadDisabledType_validator -) -EventType._shared_link_settings_allow_download_enabled_validator = ( - SharedLinkSettingsAllowDownloadEnabledType_validator -) -EventType._shared_link_settings_change_audience_validator = ( - SharedLinkSettingsChangeAudienceType_validator -) -EventType._shared_link_settings_change_expiration_validator = ( - SharedLinkSettingsChangeExpirationType_validator -) -EventType._shared_link_settings_change_password_validator = ( - SharedLinkSettingsChangePasswordType_validator -) -EventType._shared_link_settings_remove_expiration_validator = ( - SharedLinkSettingsRemoveExpirationType_validator -) -EventType._shared_link_settings_remove_password_validator = ( - SharedLinkSettingsRemovePasswordType_validator -) +EventType._shared_link_settings_allow_download_disabled_validator = SharedLinkSettingsAllowDownloadDisabledType_validator +EventType._shared_link_settings_allow_download_enabled_validator = SharedLinkSettingsAllowDownloadEnabledType_validator +EventType._shared_link_settings_change_audience_validator = SharedLinkSettingsChangeAudienceType_validator +EventType._shared_link_settings_change_expiration_validator = SharedLinkSettingsChangeExpirationType_validator +EventType._shared_link_settings_change_password_validator = SharedLinkSettingsChangePasswordType_validator +EventType._shared_link_settings_remove_expiration_validator = SharedLinkSettingsRemoveExpirationType_validator +EventType._shared_link_settings_remove_password_validator = SharedLinkSettingsRemovePasswordType_validator EventType._shared_link_share_validator = SharedLinkShareType_validator EventType._shared_link_view_validator = SharedLinkViewType_validator EventType._shared_note_opened_validator = SharedNoteOpenedType_validator @@ -103902,9 +98353,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): EventType._sign_signature_request_completed_validator = SignSignatureRequestCompletedType_validator EventType._sign_signature_request_declined_validator = SignSignatureRequestDeclinedType_validator EventType._sign_signature_request_opened_validator = SignSignatureRequestOpenedType_validator -EventType._sign_signature_request_reminder_sent_validator = ( - SignSignatureRequestReminderSentType_validator -) +EventType._sign_signature_request_reminder_sent_validator = SignSignatureRequestReminderSentType_validator EventType._sign_signature_request_sent_validator = SignSignatureRequestSentType_validator EventType._sign_template_created_validator = SignTemplateCreatedType_validator EventType._sign_template_shared_validator = SignTemplateSharedType_validator @@ -103924,207 +98373,111 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): EventType._team_folder_downgrade_validator = TeamFolderDowngradeType_validator EventType._team_folder_permanently_delete_validator = TeamFolderPermanentlyDeleteType_validator EventType._team_folder_rename_validator = TeamFolderRenameType_validator -EventType._team_folder_space_limits_change_caps_type_validator = ( - TeamFolderSpaceLimitsChangeCapsTypeType_validator -) -EventType._team_folder_space_limits_change_limit_validator = ( - TeamFolderSpaceLimitsChangeLimitType_validator -) -EventType._team_folder_space_limits_change_notification_target_validator = ( - TeamFolderSpaceLimitsChangeNotificationTargetType_validator -) -EventType._team_selective_sync_settings_changed_validator = ( - TeamSelectiveSyncSettingsChangedType_validator -) +EventType._team_folder_space_limits_change_caps_type_validator = TeamFolderSpaceLimitsChangeCapsTypeType_validator +EventType._team_folder_space_limits_change_limit_validator = TeamFolderSpaceLimitsChangeLimitType_validator +EventType._team_folder_space_limits_change_notification_target_validator = TeamFolderSpaceLimitsChangeNotificationTargetType_validator +EventType._team_selective_sync_settings_changed_validator = TeamSelectiveSyncSettingsChangedType_validator EventType._account_capture_change_policy_validator = AccountCaptureChangePolicyType_validator EventType._admin_email_reminders_changed_validator = AdminEmailRemindersChangedType_validator -EventType._ai_third_party_sharing_dropbox_base_policy_changed_validator = ( - AiThirdPartySharingDropboxBasePolicyChangedType_validator -) +EventType._ai_third_party_sharing_dropbox_base_policy_changed_validator = AiThirdPartySharingDropboxBasePolicyChangedType_validator EventType._allow_download_disabled_validator = AllowDownloadDisabledType_validator EventType._allow_download_enabled_validator = AllowDownloadEnabledType_validator EventType._apple_login_change_policy_validator = AppleLoginChangePolicyType_validator EventType._app_permissions_changed_validator = AppPermissionsChangedType_validator EventType._camera_uploads_policy_changed_validator = CameraUploadsPolicyChangedType_validator EventType._capture_team_space_policy_changed_validator = CaptureTeamSpacePolicyChangedType_validator -EventType._capture_transcript_policy_changed_validator = ( - CaptureTranscriptPolicyChangedType_validator -) +EventType._capture_transcript_policy_changed_validator = CaptureTranscriptPolicyChangedType_validator EventType._classification_change_policy_validator = ClassificationChangePolicyType_validator EventType._computer_backup_policy_changed_validator = ComputerBackupPolicyChangedType_validator -EventType._content_administration_policy_changed_validator = ( - ContentAdministrationPolicyChangedType_validator -) -EventType._content_deletion_protection_change_policy_validator = ( - ContentDeletionProtectionChangePolicyType_validator -) -EventType._dash_external_sharing_policy_changed_validator = ( - DashExternalSharingPolicyChangedType_validator -) -EventType._data_placement_restriction_change_policy_validator = ( - DataPlacementRestrictionChangePolicyType_validator -) -EventType._data_placement_restriction_satisfy_policy_validator = ( - DataPlacementRestrictionSatisfyPolicyType_validator -) +EventType._content_administration_policy_changed_validator = ContentAdministrationPolicyChangedType_validator +EventType._content_deletion_protection_change_policy_validator = ContentDeletionProtectionChangePolicyType_validator +EventType._dash_external_sharing_policy_changed_validator = DashExternalSharingPolicyChangedType_validator +EventType._data_placement_restriction_change_policy_validator = DataPlacementRestrictionChangePolicyType_validator +EventType._data_placement_restriction_satisfy_policy_validator = DataPlacementRestrictionSatisfyPolicyType_validator EventType._device_approvals_add_exception_validator = DeviceApprovalsAddExceptionType_validator -EventType._device_approvals_change_desktop_policy_validator = ( - DeviceApprovalsChangeDesktopPolicyType_validator -) -EventType._device_approvals_change_mobile_policy_validator = ( - DeviceApprovalsChangeMobilePolicyType_validator -) -EventType._device_approvals_change_overage_action_validator = ( - DeviceApprovalsChangeOverageActionType_validator -) -EventType._device_approvals_change_unlink_action_validator = ( - DeviceApprovalsChangeUnlinkActionType_validator -) -EventType._device_approvals_remove_exception_validator = ( - DeviceApprovalsRemoveExceptionType_validator -) -EventType._directory_restrictions_add_members_validator = ( - DirectoryRestrictionsAddMembersType_validator -) -EventType._directory_restrictions_remove_members_validator = ( - DirectoryRestrictionsRemoveMembersType_validator -) +EventType._device_approvals_change_desktop_policy_validator = DeviceApprovalsChangeDesktopPolicyType_validator +EventType._device_approvals_change_mobile_policy_validator = DeviceApprovalsChangeMobilePolicyType_validator +EventType._device_approvals_change_overage_action_validator = DeviceApprovalsChangeOverageActionType_validator +EventType._device_approvals_change_unlink_action_validator = DeviceApprovalsChangeUnlinkActionType_validator +EventType._device_approvals_remove_exception_validator = DeviceApprovalsRemoveExceptionType_validator +EventType._directory_restrictions_add_members_validator = DirectoryRestrictionsAddMembersType_validator +EventType._directory_restrictions_remove_members_validator = DirectoryRestrictionsRemoveMembersType_validator EventType._dropbox_passwords_policy_changed_validator = DropboxPasswordsPolicyChangedType_validator EventType._email_ingest_policy_changed_validator = EmailIngestPolicyChangedType_validator EventType._emm_add_exception_validator = EmmAddExceptionType_validator EventType._emm_change_policy_validator = EmmChangePolicyType_validator EventType._emm_remove_exception_validator = EmmRemoveExceptionType_validator -EventType._extended_version_history_change_policy_validator = ( - ExtendedVersionHistoryChangePolicyType_validator -) -EventType._external_drive_backup_policy_changed_validator = ( - ExternalDriveBackupPolicyChangedType_validator -) +EventType._extended_version_history_change_policy_validator = ExtendedVersionHistoryChangePolicyType_validator +EventType._external_drive_backup_policy_changed_validator = ExternalDriveBackupPolicyChangedType_validator EventType._file_comments_change_policy_validator = FileCommentsChangePolicyType_validator EventType._file_locking_policy_changed_validator = FileLockingPolicyChangedType_validator -EventType._file_provider_migration_policy_changed_validator = ( - FileProviderMigrationPolicyChangedType_validator -) +EventType._file_provider_migration_policy_changed_validator = FileProviderMigrationPolicyChangedType_validator EventType._file_requests_change_policy_validator = FileRequestsChangePolicyType_validator EventType._file_requests_emails_enabled_validator = FileRequestsEmailsEnabledType_validator -EventType._file_requests_emails_restricted_to_team_only_validator = ( - FileRequestsEmailsRestrictedToTeamOnlyType_validator -) +EventType._file_requests_emails_restricted_to_team_only_validator = FileRequestsEmailsRestrictedToTeamOnlyType_validator EventType._file_transfers_policy_changed_validator = FileTransfersPolicyChangedType_validator -EventType._flexible_file_names_policy_changed_validator = ( - FlexibleFileNamesPolicyChangedType_validator -) -EventType._folder_link_restriction_policy_changed_validator = ( - FolderLinkRestrictionPolicyChangedType_validator -) +EventType._flexible_file_names_policy_changed_validator = FlexibleFileNamesPolicyChangedType_validator +EventType._folder_link_restriction_policy_changed_validator = FolderLinkRestrictionPolicyChangedType_validator EventType._google_sso_change_policy_validator = GoogleSsoChangePolicyType_validator -EventType._group_user_management_change_policy_validator = ( - GroupUserManagementChangePolicyType_validator -) +EventType._group_user_management_change_policy_validator = GroupUserManagementChangePolicyType_validator EventType._integration_policy_changed_validator = IntegrationPolicyChangedType_validator -EventType._invite_acceptance_email_policy_changed_validator = ( - InviteAcceptanceEmailPolicyChangedType_validator -) -EventType._media_hub_adding_people_policy_changed_validator = ( - MediaHubAddingPeoplePolicyChangedType_validator -) +EventType._invite_acceptance_email_policy_changed_validator = InviteAcceptanceEmailPolicyChangedType_validator +EventType._media_hub_adding_people_policy_changed_validator = MediaHubAddingPeoplePolicyChangedType_validator EventType._media_hub_download_policy_changed_validator = MediaHubDownloadPolicyChangedType_validator -EventType._media_hub_link_sharing_policy_changed_validator = ( - MediaHubLinkSharingPolicyChangedType_validator -) +EventType._media_hub_link_sharing_policy_changed_validator = MediaHubLinkSharingPolicyChangedType_validator EventType._member_requests_change_policy_validator = MemberRequestsChangePolicyType_validator EventType._member_send_invite_policy_changed_validator = MemberSendInvitePolicyChangedType_validator EventType._member_space_limits_add_exception_validator = MemberSpaceLimitsAddExceptionType_validator -EventType._member_space_limits_change_caps_type_policy_validator = ( - MemberSpaceLimitsChangeCapsTypePolicyType_validator -) +EventType._member_space_limits_change_caps_type_policy_validator = MemberSpaceLimitsChangeCapsTypePolicyType_validator EventType._member_space_limits_change_policy_validator = MemberSpaceLimitsChangePolicyType_validator -EventType._member_space_limits_remove_exception_validator = ( - MemberSpaceLimitsRemoveExceptionType_validator -) +EventType._member_space_limits_remove_exception_validator = MemberSpaceLimitsRemoveExceptionType_validator EventType._member_suggestions_change_policy_validator = MemberSuggestionsChangePolicyType_validator EventType._microsoft_login_change_policy_validator = MicrosoftLoginChangePolicyType_validator -EventType._microsoft_office_addin_change_policy_validator = ( - MicrosoftOfficeAddinChangePolicyType_validator -) -EventType._multi_team_identity_policy_changed_validator = ( - MultiTeamIdentityPolicyChangedType_validator -) +EventType._microsoft_office_addin_change_policy_validator = MicrosoftOfficeAddinChangePolicyType_validator +EventType._multi_team_identity_policy_changed_validator = MultiTeamIdentityPolicyChangedType_validator EventType._network_control_change_policy_validator = NetworkControlChangePolicyType_validator EventType._paper_change_deployment_policy_validator = PaperChangeDeploymentPolicyType_validator EventType._paper_change_member_link_policy_validator = PaperChangeMemberLinkPolicyType_validator EventType._paper_change_member_policy_validator = PaperChangeMemberPolicyType_validator EventType._paper_change_policy_validator = PaperChangePolicyType_validator -EventType._paper_default_folder_policy_changed_validator = ( - PaperDefaultFolderPolicyChangedType_validator -) +EventType._paper_default_folder_policy_changed_validator = PaperDefaultFolderPolicyChangedType_validator EventType._paper_desktop_policy_changed_validator = PaperDesktopPolicyChangedType_validator -EventType._paper_enabled_users_group_addition_validator = ( - PaperEnabledUsersGroupAdditionType_validator -) +EventType._paper_enabled_users_group_addition_validator = PaperEnabledUsersGroupAdditionType_validator EventType._paper_enabled_users_group_removal_validator = PaperEnabledUsersGroupRemovalType_validator EventType._passkey_login_policy_changed_validator = PasskeyLoginPolicyChangedType_validator -EventType._password_strength_requirements_change_policy_validator = ( - PasswordStrengthRequirementsChangePolicyType_validator -) +EventType._password_strength_requirements_change_policy_validator = PasswordStrengthRequirementsChangePolicyType_validator EventType._permanent_delete_change_policy_validator = PermanentDeleteChangePolicyType_validator EventType._previews_ai_policy_changed_validator = PreviewsAiPolicyChangedType_validator -EventType._replay_adding_people_policy_changed_validator = ( - ReplayAddingPeoplePolicyChangedType_validator -) +EventType._replay_adding_people_policy_changed_validator = ReplayAddingPeoplePolicyChangedType_validator EventType._replay_sharing_policy_changed_validator = ReplaySharingPolicyChangedType_validator EventType._reseller_support_change_policy_validator = ResellerSupportChangePolicyType_validator EventType._rewind_policy_changed_validator = RewindPolicyChangedType_validator EventType._send_and_track_policy_changed_validator = SendAndTrackPolicyChangedType_validator -EventType._send_external_sharing_policy_changed_validator = ( - SendExternalSharingPolicyChangedType_validator -) +EventType._send_external_sharing_policy_changed_validator = SendExternalSharingPolicyChangedType_validator EventType._send_for_signature_policy_changed_validator = SendForSignaturePolicyChangedType_validator -EventType._shared_link_default_permissions_policy_changed_validator = ( - SharedLinkDefaultPermissionsPolicyChangedType_validator -) +EventType._shared_link_default_permissions_policy_changed_validator = SharedLinkDefaultPermissionsPolicyChangedType_validator EventType._sharing_change_folder_join_policy_validator = SharingChangeFolderJoinPolicyType_validator -EventType._sharing_change_link_allow_change_expiration_policy_validator = ( - SharingChangeLinkAllowChangeExpirationPolicyType_validator -) -EventType._sharing_change_link_default_expiration_policy_validator = ( - SharingChangeLinkDefaultExpirationPolicyType_validator -) -EventType._sharing_change_link_enforce_password_policy_validator = ( - SharingChangeLinkEnforcePasswordPolicyType_validator -) +EventType._sharing_change_link_allow_change_expiration_policy_validator = SharingChangeLinkAllowChangeExpirationPolicyType_validator +EventType._sharing_change_link_default_expiration_policy_validator = SharingChangeLinkDefaultExpirationPolicyType_validator +EventType._sharing_change_link_enforce_password_policy_validator = SharingChangeLinkEnforcePasswordPolicyType_validator EventType._sharing_change_link_policy_validator = SharingChangeLinkPolicyType_validator EventType._sharing_change_member_policy_validator = SharingChangeMemberPolicyType_validator EventType._showcase_change_download_policy_validator = ShowcaseChangeDownloadPolicyType_validator EventType._showcase_change_enabled_policy_validator = ShowcaseChangeEnabledPolicyType_validator -EventType._showcase_change_external_sharing_policy_validator = ( - ShowcaseChangeExternalSharingPolicyType_validator -) -EventType._sign_external_sharing_policy_changed_validator = ( - SignExternalSharingPolicyChangedType_validator -) -EventType._sign_template_creation_permission_changed_validator = ( - SignTemplateCreationPermissionChangedType_validator -) +EventType._showcase_change_external_sharing_policy_validator = ShowcaseChangeExternalSharingPolicyType_validator +EventType._sign_external_sharing_policy_changed_validator = SignExternalSharingPolicyChangedType_validator +EventType._sign_template_creation_permission_changed_validator = SignTemplateCreationPermissionChangedType_validator EventType._smarter_smart_sync_policy_changed_validator = SmarterSmartSyncPolicyChangedType_validator EventType._smart_sync_change_policy_validator = SmartSyncChangePolicyType_validator EventType._smart_sync_not_opt_out_validator = SmartSyncNotOptOutType_validator EventType._smart_sync_opt_out_validator = SmartSyncOptOutType_validator EventType._sso_change_policy_validator = SsoChangePolicyType_validator -EventType._stack_cross_team_access_policy_changed_validator = ( - StackCrossTeamAccessPolicyChangedType_validator -) +EventType._stack_cross_team_access_policy_changed_validator = StackCrossTeamAccessPolicyChangedType_validator EventType._team_branding_policy_changed_validator = TeamBrandingPolicyChangedType_validator EventType._team_extensions_policy_changed_validator = TeamExtensionsPolicyChangedType_validator -EventType._team_member_storage_request_policy_changed_validator = ( - TeamMemberStorageRequestPolicyChangedType_validator -) -EventType._team_selective_sync_policy_changed_validator = ( - TeamSelectiveSyncPolicyChangedType_validator -) -EventType._team_sharing_whitelist_subjects_changed_validator = ( - TeamSharingWhitelistSubjectsChangedType_validator -) +EventType._team_member_storage_request_policy_changed_validator = TeamMemberStorageRequestPolicyChangedType_validator +EventType._team_selective_sync_policy_changed_validator = TeamSelectiveSyncPolicyChangedType_validator +EventType._team_sharing_whitelist_subjects_changed_validator = TeamSharingWhitelistSubjectsChangedType_validator EventType._tfa_add_exception_validator = TfaAddExceptionType_validator EventType._tfa_change_policy_validator = TfaChangePolicyType_validator EventType._tfa_remove_exception_validator = TfaRemoveExceptionType_validator @@ -104132,29 +98485,17 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): EventType._two_account_change_policy_validator = TwoAccountChangePolicyType_validator EventType._viewer_info_policy_changed_validator = ViewerInfoPolicyChangedType_validator EventType._watermarking_policy_changed_validator = WatermarkingPolicyChangedType_validator -EventType._web_sessions_change_active_session_limit_validator = ( - WebSessionsChangeActiveSessionLimitType_validator -) -EventType._web_sessions_change_fixed_length_policy_validator = ( - WebSessionsChangeFixedLengthPolicyType_validator -) -EventType._web_sessions_change_idle_length_policy_validator = ( - WebSessionsChangeIdleLengthPolicyType_validator -) -EventType._data_residency_migration_request_successful_validator = ( - DataResidencyMigrationRequestSuccessfulType_validator -) -EventType._data_residency_migration_request_unsuccessful_validator = ( - DataResidencyMigrationRequestUnsuccessfulType_validator -) +EventType._web_sessions_change_active_session_limit_validator = WebSessionsChangeActiveSessionLimitType_validator +EventType._web_sessions_change_fixed_length_policy_validator = WebSessionsChangeFixedLengthPolicyType_validator +EventType._web_sessions_change_idle_length_policy_validator = WebSessionsChangeIdleLengthPolicyType_validator +EventType._data_residency_migration_request_successful_validator = DataResidencyMigrationRequestSuccessfulType_validator +EventType._data_residency_migration_request_unsuccessful_validator = DataResidencyMigrationRequestUnsuccessfulType_validator EventType._team_merge_from_validator = TeamMergeFromType_validator EventType._team_merge_to_validator = TeamMergeToType_validator EventType._team_profile_add_background_validator = TeamProfileAddBackgroundType_validator EventType._team_profile_add_logo_validator = TeamProfileAddLogoType_validator EventType._team_profile_change_background_validator = TeamProfileChangeBackgroundType_validator -EventType._team_profile_change_default_language_validator = ( - TeamProfileChangeDefaultLanguageType_validator -) +EventType._team_profile_change_default_language_validator = TeamProfileChangeDefaultLanguageType_validator EventType._team_profile_change_logo_validator = TeamProfileChangeLogoType_validator EventType._team_profile_change_name_validator = TeamProfileChangeNameType_validator EventType._team_profile_remove_background_validator = TeamProfileRemoveBackgroundType_validator @@ -104169,682 +98510,654 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): EventType._tfa_remove_security_key_validator = TfaRemoveSecurityKeyType_validator EventType._tfa_reset_validator = TfaResetType_validator EventType._changed_enterprise_admin_role_validator = ChangedEnterpriseAdminRoleType_validator -EventType._changed_enterprise_connected_team_status_validator = ( - ChangedEnterpriseConnectedTeamStatusType_validator -) +EventType._changed_enterprise_connected_team_status_validator = ChangedEnterpriseConnectedTeamStatusType_validator EventType._ended_enterprise_admin_session_validator = EndedEnterpriseAdminSessionType_validator -EventType._ended_enterprise_admin_session_deprecated_validator = ( - EndedEnterpriseAdminSessionDeprecatedType_validator -) +EventType._ended_enterprise_admin_session_deprecated_validator = EndedEnterpriseAdminSessionDeprecatedType_validator EventType._enterprise_settings_locking_validator = EnterpriseSettingsLockingType_validator EventType._guest_admin_change_status_validator = GuestAdminChangeStatusType_validator EventType._started_enterprise_admin_session_validator = StartedEnterpriseAdminSessionType_validator EventType._team_merge_request_accepted_validator = TeamMergeRequestAcceptedType_validator -EventType._team_merge_request_accepted_shown_to_primary_team_validator = ( - TeamMergeRequestAcceptedShownToPrimaryTeamType_validator -) -EventType._team_merge_request_accepted_shown_to_secondary_team_validator = ( - TeamMergeRequestAcceptedShownToSecondaryTeamType_validator -) +EventType._team_merge_request_accepted_shown_to_primary_team_validator = TeamMergeRequestAcceptedShownToPrimaryTeamType_validator +EventType._team_merge_request_accepted_shown_to_secondary_team_validator = TeamMergeRequestAcceptedShownToSecondaryTeamType_validator EventType._team_merge_request_auto_canceled_validator = TeamMergeRequestAutoCanceledType_validator EventType._team_merge_request_canceled_validator = TeamMergeRequestCanceledType_validator -EventType._team_merge_request_canceled_shown_to_primary_team_validator = ( - TeamMergeRequestCanceledShownToPrimaryTeamType_validator -) -EventType._team_merge_request_canceled_shown_to_secondary_team_validator = ( - TeamMergeRequestCanceledShownToSecondaryTeamType_validator -) +EventType._team_merge_request_canceled_shown_to_primary_team_validator = TeamMergeRequestCanceledShownToPrimaryTeamType_validator +EventType._team_merge_request_canceled_shown_to_secondary_team_validator = TeamMergeRequestCanceledShownToSecondaryTeamType_validator EventType._team_merge_request_expired_validator = TeamMergeRequestExpiredType_validator -EventType._team_merge_request_expired_shown_to_primary_team_validator = ( - TeamMergeRequestExpiredShownToPrimaryTeamType_validator -) -EventType._team_merge_request_expired_shown_to_secondary_team_validator = ( - TeamMergeRequestExpiredShownToSecondaryTeamType_validator -) -EventType._team_merge_request_rejected_shown_to_primary_team_validator = ( - TeamMergeRequestRejectedShownToPrimaryTeamType_validator -) -EventType._team_merge_request_rejected_shown_to_secondary_team_validator = ( - TeamMergeRequestRejectedShownToSecondaryTeamType_validator -) +EventType._team_merge_request_expired_shown_to_primary_team_validator = TeamMergeRequestExpiredShownToPrimaryTeamType_validator +EventType._team_merge_request_expired_shown_to_secondary_team_validator = TeamMergeRequestExpiredShownToSecondaryTeamType_validator +EventType._team_merge_request_rejected_shown_to_primary_team_validator = TeamMergeRequestRejectedShownToPrimaryTeamType_validator +EventType._team_merge_request_rejected_shown_to_secondary_team_validator = TeamMergeRequestRejectedShownToSecondaryTeamType_validator EventType._team_merge_request_reminder_validator = TeamMergeRequestReminderType_validator -EventType._team_merge_request_reminder_shown_to_primary_team_validator = ( - TeamMergeRequestReminderShownToPrimaryTeamType_validator -) -EventType._team_merge_request_reminder_shown_to_secondary_team_validator = ( - TeamMergeRequestReminderShownToSecondaryTeamType_validator -) +EventType._team_merge_request_reminder_shown_to_primary_team_validator = TeamMergeRequestReminderShownToPrimaryTeamType_validator +EventType._team_merge_request_reminder_shown_to_secondary_team_validator = TeamMergeRequestReminderShownToSecondaryTeamType_validator EventType._team_merge_request_revoked_validator = TeamMergeRequestRevokedType_validator -EventType._team_merge_request_sent_shown_to_primary_team_validator = ( - TeamMergeRequestSentShownToPrimaryTeamType_validator -) -EventType._team_merge_request_sent_shown_to_secondary_team_validator = ( - TeamMergeRequestSentShownToSecondaryTeamType_validator -) +EventType._team_merge_request_sent_shown_to_primary_team_validator = TeamMergeRequestSentShownToPrimaryTeamType_validator +EventType._team_merge_request_sent_shown_to_secondary_team_validator = TeamMergeRequestSentShownToSecondaryTeamType_validator EventType._other_validator = bv.Void() EventType._tagmap = { - "admin_alerting_alert_state_changed": EventType._admin_alerting_alert_state_changed_validator, - "admin_alerting_changed_alert_config": EventType._admin_alerting_changed_alert_config_validator, - "admin_alerting_triggered_alert": EventType._admin_alerting_triggered_alert_validator, - "ransomware_restore_process_completed": EventType._ransomware_restore_process_completed_validator, - "ransomware_restore_process_started": EventType._ransomware_restore_process_started_validator, - "app_blocked_by_permissions": EventType._app_blocked_by_permissions_validator, - "app_link_team": EventType._app_link_team_validator, - "app_link_user": EventType._app_link_user_validator, - "app_unlink_team": EventType._app_unlink_team_validator, - "app_unlink_user": EventType._app_unlink_user_validator, - "integration_connected": EventType._integration_connected_validator, - "integration_disconnected": EventType._integration_disconnected_validator, - "file_add_comment": EventType._file_add_comment_validator, - "file_change_comment_subscription": EventType._file_change_comment_subscription_validator, - "file_delete_comment": EventType._file_delete_comment_validator, - "file_edit_comment": EventType._file_edit_comment_validator, - "file_like_comment": EventType._file_like_comment_validator, - "file_resolve_comment": EventType._file_resolve_comment_validator, - "file_unlike_comment": EventType._file_unlike_comment_validator, - "file_unresolve_comment": EventType._file_unresolve_comment_validator, - "dash_added_comment_to_stack": EventType._dash_added_comment_to_stack_validator, - "dash_added_connector": EventType._dash_added_connector_validator, - "dash_added_link_to_stack": EventType._dash_added_link_to_stack_validator, - "dash_added_team_email_domain_allowlist": EventType._dash_added_team_email_domain_allowlist_validator, - "dash_admin_added_org_wide_connector": EventType._dash_admin_added_org_wide_connector_validator, - "dash_admin_disabled_connector": EventType._dash_admin_disabled_connector_validator, - "dash_admin_enabled_connector": EventType._dash_admin_enabled_connector_validator, - "dash_admin_removed_org_wide_connector": EventType._dash_admin_removed_org_wide_connector_validator, - "dash_archived_stack": EventType._dash_archived_stack_validator, - "dash_changed_audience_of_shared_link_to_stack": EventType._dash_changed_audience_of_shared_link_to_stack_validator, - "dash_cloned_stack": EventType._dash_cloned_stack_validator, - "dash_connector_tools_call": EventType._dash_connector_tools_call_validator, - "dash_created_stack": EventType._dash_created_stack_validator, - "dash_deleted_comment_from_stack": EventType._dash_deleted_comment_from_stack_validator, - "dash_deleted_stack": EventType._dash_deleted_stack_validator, - "dash_edited_comment_in_stack": EventType._dash_edited_comment_in_stack_validator, - "dash_external_user_opened_stack": EventType._dash_external_user_opened_stack_validator, - "dash_first_launched_desktop": EventType._dash_first_launched_desktop_validator, - "dash_first_launched_extension": EventType._dash_first_launched_extension_validator, - "dash_first_launched_web_start_page": EventType._dash_first_launched_web_start_page_validator, - "dash_opened_shared_link_to_stack": EventType._dash_opened_shared_link_to_stack_validator, - "dash_opened_stack": EventType._dash_opened_stack_validator, - "dash_preview_opt_out_status_changed": EventType._dash_preview_opt_out_status_changed_validator, - "dash_removed_connector": EventType._dash_removed_connector_validator, - "dash_removed_link_from_stack": EventType._dash_removed_link_from_stack_validator, - "dash_removed_shared_link_to_stack": EventType._dash_removed_shared_link_to_stack_validator, - "dash_removed_team_email_domain_allowlist": EventType._dash_removed_team_email_domain_allowlist_validator, - "dash_renamed_stack": EventType._dash_renamed_stack_validator, - "dash_shared_link_to_stack": EventType._dash_shared_link_to_stack_validator, - "dash_unarchived_stack": EventType._dash_unarchived_stack_validator, - "dash_viewed_company_stack": EventType._dash_viewed_company_stack_validator, - "dash_viewed_external_ai_activity_report": EventType._dash_viewed_external_ai_activity_report_validator, - "governance_policy_add_folders": EventType._governance_policy_add_folders_validator, - "governance_policy_add_folder_failed": EventType._governance_policy_add_folder_failed_validator, - "governance_policy_content_disposed": EventType._governance_policy_content_disposed_validator, - "governance_policy_create": EventType._governance_policy_create_validator, - "governance_policy_delete": EventType._governance_policy_delete_validator, - "governance_policy_edit_details": EventType._governance_policy_edit_details_validator, - "governance_policy_edit_duration": EventType._governance_policy_edit_duration_validator, - "governance_policy_export_created": EventType._governance_policy_export_created_validator, - "governance_policy_export_removed": EventType._governance_policy_export_removed_validator, - "governance_policy_remove_folders": EventType._governance_policy_remove_folders_validator, - "governance_policy_report_created": EventType._governance_policy_report_created_validator, - "governance_policy_zip_part_downloaded": EventType._governance_policy_zip_part_downloaded_validator, - "legal_holds_activate_a_hold": EventType._legal_holds_activate_a_hold_validator, - "legal_holds_add_members": EventType._legal_holds_add_members_validator, - "legal_holds_change_hold_details": EventType._legal_holds_change_hold_details_validator, - "legal_holds_change_hold_name": EventType._legal_holds_change_hold_name_validator, - "legal_holds_export_a_hold": EventType._legal_holds_export_a_hold_validator, - "legal_holds_export_cancelled": EventType._legal_holds_export_cancelled_validator, - "legal_holds_export_downloaded": EventType._legal_holds_export_downloaded_validator, - "legal_holds_export_removed": EventType._legal_holds_export_removed_validator, - "legal_holds_release_a_hold": EventType._legal_holds_release_a_hold_validator, - "legal_holds_remove_members": EventType._legal_holds_remove_members_validator, - "legal_holds_report_a_hold": EventType._legal_holds_report_a_hold_validator, - "device_change_ip_desktop": EventType._device_change_ip_desktop_validator, - "device_change_ip_mobile": EventType._device_change_ip_mobile_validator, - "device_change_ip_web": EventType._device_change_ip_web_validator, - "device_delete_on_unlink_fail": EventType._device_delete_on_unlink_fail_validator, - "device_delete_on_unlink_success": EventType._device_delete_on_unlink_success_validator, - "device_link_fail": EventType._device_link_fail_validator, - "device_link_success": EventType._device_link_success_validator, - "device_management_disabled": EventType._device_management_disabled_validator, - "device_management_enabled": EventType._device_management_enabled_validator, - "device_sync_backup_status_changed": EventType._device_sync_backup_status_changed_validator, - "device_unlink": EventType._device_unlink_validator, - "dropbox_passwords_exported": EventType._dropbox_passwords_exported_validator, - "dropbox_passwords_new_device_enrolled": EventType._dropbox_passwords_new_device_enrolled_validator, - "emm_refresh_auth_token": EventType._emm_refresh_auth_token_validator, - "external_drive_backup_eligibility_status_checked": EventType._external_drive_backup_eligibility_status_checked_validator, - "external_drive_backup_status_changed": EventType._external_drive_backup_status_changed_validator, - "account_capture_change_availability": EventType._account_capture_change_availability_validator, - "account_capture_migrate_account": EventType._account_capture_migrate_account_validator, - "account_capture_notification_emails_sent": EventType._account_capture_notification_emails_sent_validator, - "account_capture_relinquish_account": EventType._account_capture_relinquish_account_validator, - "disabled_domain_invites": EventType._disabled_domain_invites_validator, - "domain_invites_approve_request_to_join_team": EventType._domain_invites_approve_request_to_join_team_validator, - "domain_invites_decline_request_to_join_team": EventType._domain_invites_decline_request_to_join_team_validator, - "domain_invites_email_existing_users": EventType._domain_invites_email_existing_users_validator, - "domain_invites_request_to_join_team": EventType._domain_invites_request_to_join_team_validator, - "domain_invites_set_invite_new_user_pref_to_no": EventType._domain_invites_set_invite_new_user_pref_to_no_validator, - "domain_invites_set_invite_new_user_pref_to_yes": EventType._domain_invites_set_invite_new_user_pref_to_yes_validator, - "domain_verification_add_domain_fail": EventType._domain_verification_add_domain_fail_validator, - "domain_verification_add_domain_success": EventType._domain_verification_add_domain_success_validator, - "domain_verification_remove_domain": EventType._domain_verification_remove_domain_validator, - "enabled_domain_invites": EventType._enabled_domain_invites_validator, - "encrypted_folder_cancel_team_key_rotation": EventType._encrypted_folder_cancel_team_key_rotation_validator, - "encrypted_folder_enroll_backup_key": EventType._encrypted_folder_enroll_backup_key_validator, - "encrypted_folder_enroll_client": EventType._encrypted_folder_enroll_client_validator, - "encrypted_folder_enroll_team": EventType._encrypted_folder_enroll_team_validator, - "encrypted_folder_finish_team_unenrollment": EventType._encrypted_folder_finish_team_unenrollment_validator, - "encrypted_folder_init_team_key_rotation": EventType._encrypted_folder_init_team_key_rotation_validator, - "encrypted_folder_init_team_unenrollment": EventType._encrypted_folder_init_team_unenrollment_validator, - "encrypted_folder_remove_backup_key": EventType._encrypted_folder_remove_backup_key_validator, - "encrypted_folder_rotate_team_key": EventType._encrypted_folder_rotate_team_key_validator, - "encrypted_folder_unenroll_client": EventType._encrypted_folder_unenroll_client_validator, - "team_encryption_key_activate_key": EventType._team_encryption_key_activate_key_validator, - "team_encryption_key_cancel_key_deletion": EventType._team_encryption_key_cancel_key_deletion_validator, - "team_encryption_key_create_key": EventType._team_encryption_key_create_key_validator, - "team_encryption_key_deactivate_key": EventType._team_encryption_key_deactivate_key_validator, - "team_encryption_key_delete_key": EventType._team_encryption_key_delete_key_validator, - "team_encryption_key_disable_key": EventType._team_encryption_key_disable_key_validator, - "team_encryption_key_enable_key": EventType._team_encryption_key_enable_key_validator, - "team_encryption_key_rotate_key": EventType._team_encryption_key_rotate_key_validator, - "team_encryption_key_schedule_key_deletion": EventType._team_encryption_key_schedule_key_deletion_validator, - "apply_naming_convention": EventType._apply_naming_convention_validator, - "create_folder": EventType._create_folder_validator, - "file_add": EventType._file_add_validator, - "file_add_from_automation": EventType._file_add_from_automation_validator, - "file_copy": EventType._file_copy_validator, - "file_delete": EventType._file_delete_validator, - "file_download": EventType._file_download_validator, - "file_edit": EventType._file_edit_validator, - "file_get_copy_reference": EventType._file_get_copy_reference_validator, - "file_locking_lock_status_changed": EventType._file_locking_lock_status_changed_validator, - "file_move": EventType._file_move_validator, - "file_permanently_delete": EventType._file_permanently_delete_validator, - "file_preview": EventType._file_preview_validator, - "file_rename": EventType._file_rename_validator, - "file_restore": EventType._file_restore_validator, - "file_revert": EventType._file_revert_validator, - "file_rollback_changes": EventType._file_rollback_changes_validator, - "file_save_copy_reference": EventType._file_save_copy_reference_validator, - "folder_overview_description_changed": EventType._folder_overview_description_changed_validator, - "folder_overview_item_pinned": EventType._folder_overview_item_pinned_validator, - "folder_overview_item_unpinned": EventType._folder_overview_item_unpinned_validator, - "media_hub_file_downloaded": EventType._media_hub_file_downloaded_validator, - "object_label_added": EventType._object_label_added_validator, - "object_label_removed": EventType._object_label_removed_validator, - "object_label_updated_value": EventType._object_label_updated_value_validator, - "organize_folder_with_tidy": EventType._organize_folder_with_tidy_validator, - "replay_file_delete": EventType._replay_file_delete_validator, - "replay_file_downloaded": EventType._replay_file_downloaded_validator, - "replay_team_project_created": EventType._replay_team_project_created_validator, - "rewind_folder": EventType._rewind_folder_validator, - "undo_naming_convention": EventType._undo_naming_convention_validator, - "undo_organize_folder_with_tidy": EventType._undo_organize_folder_with_tidy_validator, - "user_tags_added": EventType._user_tags_added_validator, - "user_tags_removed": EventType._user_tags_removed_validator, - "email_ingest_receive_file": EventType._email_ingest_receive_file_validator, - "file_request_auto_close": EventType._file_request_auto_close_validator, - "file_request_change": EventType._file_request_change_validator, - "file_request_close": EventType._file_request_close_validator, - "file_request_create": EventType._file_request_create_validator, - "file_request_delete": EventType._file_request_delete_validator, - "file_request_receive_file": EventType._file_request_receive_file_validator, - "group_add_external_id": EventType._group_add_external_id_validator, - "group_add_member": EventType._group_add_member_validator, - "group_change_external_id": EventType._group_change_external_id_validator, - "group_change_management_type": EventType._group_change_management_type_validator, - "group_change_member_role": EventType._group_change_member_role_validator, - "group_create": EventType._group_create_validator, - "group_delete": EventType._group_delete_validator, - "group_description_updated": EventType._group_description_updated_validator, - "group_external_sharing_setting_override_changed": EventType._group_external_sharing_setting_override_changed_validator, - "group_join_policy_updated": EventType._group_join_policy_updated_validator, - "group_moved": EventType._group_moved_validator, - "group_remove_external_id": EventType._group_remove_external_id_validator, - "group_remove_member": EventType._group_remove_member_validator, - "group_rename": EventType._group_rename_validator, - "account_lock_or_unlocked": EventType._account_lock_or_unlocked_validator, - "emm_error": EventType._emm_error_validator, - "guest_admin_signed_in_via_trusted_teams": EventType._guest_admin_signed_in_via_trusted_teams_validator, - "guest_admin_signed_out_via_trusted_teams": EventType._guest_admin_signed_out_via_trusted_teams_validator, - "login_fail": EventType._login_fail_validator, - "login_success": EventType._login_success_validator, - "logout": EventType._logout_validator, - "reseller_support_session_end": EventType._reseller_support_session_end_validator, - "reseller_support_session_start": EventType._reseller_support_session_start_validator, - "sign_in_as_session_end": EventType._sign_in_as_session_end_validator, - "sign_in_as_session_start": EventType._sign_in_as_session_start_validator, - "sso_error": EventType._sso_error_validator, - "addon_assigned": EventType._addon_assigned_validator, - "addon_removed": EventType._addon_removed_validator, - "backup_admin_invitation_sent": EventType._backup_admin_invitation_sent_validator, - "backup_invitation_opened": EventType._backup_invitation_opened_validator, - "create_team_invite_link": EventType._create_team_invite_link_validator, - "delete_team_invite_link": EventType._delete_team_invite_link_validator, - "member_add_external_id": EventType._member_add_external_id_validator, - "member_add_name": EventType._member_add_name_validator, - "member_change_admin_role": EventType._member_change_admin_role_validator, - "member_change_email": EventType._member_change_email_validator, - "member_change_external_id": EventType._member_change_external_id_validator, - "member_change_membership_type": EventType._member_change_membership_type_validator, - "member_change_name": EventType._member_change_name_validator, - "member_change_reseller_role": EventType._member_change_reseller_role_validator, - "member_change_status": EventType._member_change_status_validator, - "member_delete_manual_contacts": EventType._member_delete_manual_contacts_validator, - "member_delete_profile_photo": EventType._member_delete_profile_photo_validator, - "member_permanently_delete_account_contents": EventType._member_permanently_delete_account_contents_validator, - "member_remove_external_id": EventType._member_remove_external_id_validator, - "member_set_profile_photo": EventType._member_set_profile_photo_validator, - "member_space_limits_add_custom_quota": EventType._member_space_limits_add_custom_quota_validator, - "member_space_limits_change_custom_quota": EventType._member_space_limits_change_custom_quota_validator, - "member_space_limits_change_status": EventType._member_space_limits_change_status_validator, - "member_space_limits_remove_custom_quota": EventType._member_space_limits_remove_custom_quota_validator, - "member_suggest": EventType._member_suggest_validator, - "member_transfer_account_contents": EventType._member_transfer_account_contents_validator, - "pending_secondary_email_added": EventType._pending_secondary_email_added_validator, - "product_assigned_to_member": EventType._product_assigned_to_member_validator, - "product_removed_from_member": EventType._product_removed_from_member_validator, - "secondary_email_deleted": EventType._secondary_email_deleted_validator, - "secondary_email_verified": EventType._secondary_email_verified_validator, - "secondary_mails_policy_changed": EventType._secondary_mails_policy_changed_validator, - "binder_add_page": EventType._binder_add_page_validator, - "binder_add_section": EventType._binder_add_section_validator, - "binder_remove_page": EventType._binder_remove_page_validator, - "binder_remove_section": EventType._binder_remove_section_validator, - "binder_rename_page": EventType._binder_rename_page_validator, - "binder_rename_section": EventType._binder_rename_section_validator, - "binder_reorder_page": EventType._binder_reorder_page_validator, - "binder_reorder_section": EventType._binder_reorder_section_validator, - "paper_content_add_member": EventType._paper_content_add_member_validator, - "paper_content_add_to_folder": EventType._paper_content_add_to_folder_validator, - "paper_content_archive": EventType._paper_content_archive_validator, - "paper_content_create": EventType._paper_content_create_validator, - "paper_content_permanently_delete": EventType._paper_content_permanently_delete_validator, - "paper_content_remove_from_folder": EventType._paper_content_remove_from_folder_validator, - "paper_content_remove_member": EventType._paper_content_remove_member_validator, - "paper_content_rename": EventType._paper_content_rename_validator, - "paper_content_restore": EventType._paper_content_restore_validator, - "paper_doc_add_comment": EventType._paper_doc_add_comment_validator, - "paper_doc_change_member_role": EventType._paper_doc_change_member_role_validator, - "paper_doc_change_sharing_policy": EventType._paper_doc_change_sharing_policy_validator, - "paper_doc_change_subscription": EventType._paper_doc_change_subscription_validator, - "paper_doc_deleted": EventType._paper_doc_deleted_validator, - "paper_doc_delete_comment": EventType._paper_doc_delete_comment_validator, - "paper_doc_download": EventType._paper_doc_download_validator, - "paper_doc_edit": EventType._paper_doc_edit_validator, - "paper_doc_edit_comment": EventType._paper_doc_edit_comment_validator, - "paper_doc_followed": EventType._paper_doc_followed_validator, - "paper_doc_mention": EventType._paper_doc_mention_validator, - "paper_doc_ownership_changed": EventType._paper_doc_ownership_changed_validator, - "paper_doc_request_access": EventType._paper_doc_request_access_validator, - "paper_doc_resolve_comment": EventType._paper_doc_resolve_comment_validator, - "paper_doc_revert": EventType._paper_doc_revert_validator, - "paper_doc_slack_share": EventType._paper_doc_slack_share_validator, - "paper_doc_team_invite": EventType._paper_doc_team_invite_validator, - "paper_doc_trashed": EventType._paper_doc_trashed_validator, - "paper_doc_unresolve_comment": EventType._paper_doc_unresolve_comment_validator, - "paper_doc_untrashed": EventType._paper_doc_untrashed_validator, - "paper_doc_view": EventType._paper_doc_view_validator, - "paper_external_view_allow": EventType._paper_external_view_allow_validator, - "paper_external_view_default_team": EventType._paper_external_view_default_team_validator, - "paper_external_view_forbid": EventType._paper_external_view_forbid_validator, - "paper_folder_change_subscription": EventType._paper_folder_change_subscription_validator, - "paper_folder_deleted": EventType._paper_folder_deleted_validator, - "paper_folder_followed": EventType._paper_folder_followed_validator, - "paper_folder_team_invite": EventType._paper_folder_team_invite_validator, - "paper_published_link_change_permission": EventType._paper_published_link_change_permission_validator, - "paper_published_link_create": EventType._paper_published_link_create_validator, - "paper_published_link_disabled": EventType._paper_published_link_disabled_validator, - "paper_published_link_view": EventType._paper_published_link_view_validator, - "password_change": EventType._password_change_validator, - "password_reset": EventType._password_reset_validator, - "password_reset_all": EventType._password_reset_all_validator, - "protect_internal_domains_changed": EventType._protect_internal_domains_changed_validator, - "classification_create_report": EventType._classification_create_report_validator, - "classification_create_report_fail": EventType._classification_create_report_fail_validator, - "emm_create_exceptions_report": EventType._emm_create_exceptions_report_validator, - "emm_create_usage_report": EventType._emm_create_usage_report_validator, - "export_members_report": EventType._export_members_report_validator, - "export_members_report_fail": EventType._export_members_report_fail_validator, - "external_sharing_create_report": EventType._external_sharing_create_report_validator, - "external_sharing_report_failed": EventType._external_sharing_report_failed_validator, - "member_access_details_create_report": EventType._member_access_details_create_report_validator, - "member_access_details_create_report_failed": EventType._member_access_details_create_report_failed_validator, - "no_expiration_link_gen_create_report": EventType._no_expiration_link_gen_create_report_validator, - "no_expiration_link_gen_report_failed": EventType._no_expiration_link_gen_report_failed_validator, - "no_password_link_gen_create_report": EventType._no_password_link_gen_create_report_validator, - "no_password_link_gen_report_failed": EventType._no_password_link_gen_report_failed_validator, - "no_password_link_view_create_report": EventType._no_password_link_view_create_report_validator, - "no_password_link_view_report_failed": EventType._no_password_link_view_report_failed_validator, - "outdated_link_view_create_report": EventType._outdated_link_view_create_report_validator, - "outdated_link_view_report_failed": EventType._outdated_link_view_report_failed_validator, - "paper_admin_export_start": EventType._paper_admin_export_start_validator, - "ransomware_alert_create_report": EventType._ransomware_alert_create_report_validator, - "ransomware_alert_create_report_failed": EventType._ransomware_alert_create_report_failed_validator, - "shared_folders_create_report": EventType._shared_folders_create_report_validator, - "shared_folders_create_report_failed": EventType._shared_folders_create_report_failed_validator, - "smart_sync_create_admin_privilege_report": EventType._smart_sync_create_admin_privilege_report_validator, - "team_activity_create_report": EventType._team_activity_create_report_validator, - "team_activity_create_report_fail": EventType._team_activity_create_report_fail_validator, - "team_folders_create_report": EventType._team_folders_create_report_validator, - "team_folders_create_report_failed": EventType._team_folders_create_report_failed_validator, - "team_storage_create_report": EventType._team_storage_create_report_validator, - "team_storage_create_report_failed": EventType._team_storage_create_report_failed_validator, - "collection_share": EventType._collection_share_validator, - "file_transfers_file_add": EventType._file_transfers_file_add_validator, - "file_transfers_transfer_delete": EventType._file_transfers_transfer_delete_validator, - "file_transfers_transfer_download": EventType._file_transfers_transfer_download_validator, - "file_transfers_transfer_send": EventType._file_transfers_transfer_send_validator, - "file_transfers_transfer_view": EventType._file_transfers_transfer_view_validator, - "media_hub_project_team_add": EventType._media_hub_project_team_add_validator, - "media_hub_project_team_delete": EventType._media_hub_project_team_delete_validator, - "media_hub_project_team_role_changed": EventType._media_hub_project_team_role_changed_validator, - "media_hub_shared_link_audience_changed": EventType._media_hub_shared_link_audience_changed_validator, - "media_hub_shared_link_created": EventType._media_hub_shared_link_created_validator, - "media_hub_shared_link_download_setting_changed": EventType._media_hub_shared_link_download_setting_changed_validator, - "media_hub_shared_link_revoked": EventType._media_hub_shared_link_revoked_validator, - "note_acl_invite_only": EventType._note_acl_invite_only_validator, - "note_acl_link": EventType._note_acl_link_validator, - "note_acl_team_link": EventType._note_acl_team_link_validator, - "note_shared": EventType._note_shared_validator, - "note_share_receive": EventType._note_share_receive_validator, - "open_note_shared": EventType._open_note_shared_validator, - "replay_file_shared_link_created": EventType._replay_file_shared_link_created_validator, - "replay_file_shared_link_modified": EventType._replay_file_shared_link_modified_validator, - "replay_project_team_add": EventType._replay_project_team_add_validator, - "replay_project_team_delete": EventType._replay_project_team_delete_validator, - "send_and_track_file_added": EventType._send_and_track_file_added_validator, - "send_and_track_file_renamed": EventType._send_and_track_file_renamed_validator, - "send_and_track_file_updated": EventType._send_and_track_file_updated_validator, - "send_and_track_link_created": EventType._send_and_track_link_created_validator, - "send_and_track_link_deleted": EventType._send_and_track_link_deleted_validator, - "send_and_track_link_updated": EventType._send_and_track_link_updated_validator, - "send_and_track_link_viewed": EventType._send_and_track_link_viewed_validator, - "send_and_track_removed_file_and_associated_links": EventType._send_and_track_removed_file_and_associated_links_validator, - "sf_add_group": EventType._sf_add_group_validator, - "sf_allow_non_members_to_view_shared_links": EventType._sf_allow_non_members_to_view_shared_links_validator, - "sf_external_invite_warn": EventType._sf_external_invite_warn_validator, - "sf_fb_invite": EventType._sf_fb_invite_validator, - "sf_fb_invite_change_role": EventType._sf_fb_invite_change_role_validator, - "sf_fb_uninvite": EventType._sf_fb_uninvite_validator, - "sf_invite_group": EventType._sf_invite_group_validator, - "sf_team_grant_access": EventType._sf_team_grant_access_validator, - "sf_team_invite": EventType._sf_team_invite_validator, - "sf_team_invite_change_role": EventType._sf_team_invite_change_role_validator, - "sf_team_join": EventType._sf_team_join_validator, - "sf_team_join_from_oob_link": EventType._sf_team_join_from_oob_link_validator, - "sf_team_uninvite": EventType._sf_team_uninvite_validator, - "shared_content_add_invitees": EventType._shared_content_add_invitees_validator, - "shared_content_add_link_expiry": EventType._shared_content_add_link_expiry_validator, - "shared_content_add_link_password": EventType._shared_content_add_link_password_validator, - "shared_content_add_member": EventType._shared_content_add_member_validator, - "shared_content_change_downloads_policy": EventType._shared_content_change_downloads_policy_validator, - "shared_content_change_invitee_role": EventType._shared_content_change_invitee_role_validator, - "shared_content_change_link_audience": EventType._shared_content_change_link_audience_validator, - "shared_content_change_link_expiry": EventType._shared_content_change_link_expiry_validator, - "shared_content_change_link_password": EventType._shared_content_change_link_password_validator, - "shared_content_change_member_role": EventType._shared_content_change_member_role_validator, - "shared_content_change_viewer_info_policy": EventType._shared_content_change_viewer_info_policy_validator, - "shared_content_claim_invitation": EventType._shared_content_claim_invitation_validator, - "shared_content_copy": EventType._shared_content_copy_validator, - "shared_content_download": EventType._shared_content_download_validator, - "shared_content_relinquish_membership": EventType._shared_content_relinquish_membership_validator, - "shared_content_remove_invitees": EventType._shared_content_remove_invitees_validator, - "shared_content_remove_link_expiry": EventType._shared_content_remove_link_expiry_validator, - "shared_content_remove_link_password": EventType._shared_content_remove_link_password_validator, - "shared_content_remove_member": EventType._shared_content_remove_member_validator, - "shared_content_request_access": EventType._shared_content_request_access_validator, - "shared_content_restore_invitees": EventType._shared_content_restore_invitees_validator, - "shared_content_restore_member": EventType._shared_content_restore_member_validator, - "shared_content_unshare": EventType._shared_content_unshare_validator, - "shared_content_view": EventType._shared_content_view_validator, - "shared_folder_change_link_policy": EventType._shared_folder_change_link_policy_validator, - "shared_folder_change_members_inheritance_policy": EventType._shared_folder_change_members_inheritance_policy_validator, - "shared_folder_change_members_management_policy": EventType._shared_folder_change_members_management_policy_validator, - "shared_folder_change_members_policy": EventType._shared_folder_change_members_policy_validator, - "shared_folder_create": EventType._shared_folder_create_validator, - "shared_folder_decline_invitation": EventType._shared_folder_decline_invitation_validator, - "shared_folder_mount": EventType._shared_folder_mount_validator, - "shared_folder_nest": EventType._shared_folder_nest_validator, - "shared_folder_transfer_ownership": EventType._shared_folder_transfer_ownership_validator, - "shared_folder_unmount": EventType._shared_folder_unmount_validator, - "shared_link_add_expiry": EventType._shared_link_add_expiry_validator, - "shared_link_change_expiry": EventType._shared_link_change_expiry_validator, - "shared_link_change_visibility": EventType._shared_link_change_visibility_validator, - "shared_link_copy": EventType._shared_link_copy_validator, - "shared_link_create": EventType._shared_link_create_validator, - "shared_link_disable": EventType._shared_link_disable_validator, - "shared_link_download": EventType._shared_link_download_validator, - "shared_link_remove_expiry": EventType._shared_link_remove_expiry_validator, - "shared_link_remove_visitor": EventType._shared_link_remove_visitor_validator, - "shared_link_settings_add_expiration": EventType._shared_link_settings_add_expiration_validator, - "shared_link_settings_add_password": EventType._shared_link_settings_add_password_validator, - "shared_link_settings_allow_download_disabled": EventType._shared_link_settings_allow_download_disabled_validator, - "shared_link_settings_allow_download_enabled": EventType._shared_link_settings_allow_download_enabled_validator, - "shared_link_settings_change_audience": EventType._shared_link_settings_change_audience_validator, - "shared_link_settings_change_expiration": EventType._shared_link_settings_change_expiration_validator, - "shared_link_settings_change_password": EventType._shared_link_settings_change_password_validator, - "shared_link_settings_remove_expiration": EventType._shared_link_settings_remove_expiration_validator, - "shared_link_settings_remove_password": EventType._shared_link_settings_remove_password_validator, - "shared_link_share": EventType._shared_link_share_validator, - "shared_link_view": EventType._shared_link_view_validator, - "shared_note_opened": EventType._shared_note_opened_validator, - "shmodel_disable_downloads": EventType._shmodel_disable_downloads_validator, - "shmodel_enable_downloads": EventType._shmodel_enable_downloads_validator, - "shmodel_group_share": EventType._shmodel_group_share_validator, - "showcase_access_granted": EventType._showcase_access_granted_validator, - "showcase_add_member": EventType._showcase_add_member_validator, - "showcase_archived": EventType._showcase_archived_validator, - "showcase_created": EventType._showcase_created_validator, - "showcase_delete_comment": EventType._showcase_delete_comment_validator, - "showcase_edited": EventType._showcase_edited_validator, - "showcase_edit_comment": EventType._showcase_edit_comment_validator, - "showcase_file_added": EventType._showcase_file_added_validator, - "showcase_file_download": EventType._showcase_file_download_validator, - "showcase_file_removed": EventType._showcase_file_removed_validator, - "showcase_file_view": EventType._showcase_file_view_validator, - "showcase_permanently_deleted": EventType._showcase_permanently_deleted_validator, - "showcase_post_comment": EventType._showcase_post_comment_validator, - "showcase_remove_member": EventType._showcase_remove_member_validator, - "showcase_renamed": EventType._showcase_renamed_validator, - "showcase_request_access": EventType._showcase_request_access_validator, - "showcase_resolve_comment": EventType._showcase_resolve_comment_validator, - "showcase_restored": EventType._showcase_restored_validator, - "showcase_trashed": EventType._showcase_trashed_validator, - "showcase_trashed_deprecated": EventType._showcase_trashed_deprecated_validator, - "showcase_unresolve_comment": EventType._showcase_unresolve_comment_validator, - "showcase_untrashed": EventType._showcase_untrashed_validator, - "showcase_untrashed_deprecated": EventType._showcase_untrashed_deprecated_validator, - "showcase_view": EventType._showcase_view_validator, - "sign_signature_request_canceled": EventType._sign_signature_request_canceled_validator, - "sign_signature_request_completed": EventType._sign_signature_request_completed_validator, - "sign_signature_request_declined": EventType._sign_signature_request_declined_validator, - "sign_signature_request_opened": EventType._sign_signature_request_opened_validator, - "sign_signature_request_reminder_sent": EventType._sign_signature_request_reminder_sent_validator, - "sign_signature_request_sent": EventType._sign_signature_request_sent_validator, - "sign_template_created": EventType._sign_template_created_validator, - "sign_template_shared": EventType._sign_template_shared_validator, - "risc_security_event": EventType._risc_security_event_validator, - "sso_add_cert": EventType._sso_add_cert_validator, - "sso_add_login_url": EventType._sso_add_login_url_validator, - "sso_add_logout_url": EventType._sso_add_logout_url_validator, - "sso_change_cert": EventType._sso_change_cert_validator, - "sso_change_login_url": EventType._sso_change_login_url_validator, - "sso_change_logout_url": EventType._sso_change_logout_url_validator, - "sso_change_saml_identity_mode": EventType._sso_change_saml_identity_mode_validator, - "sso_remove_cert": EventType._sso_remove_cert_validator, - "sso_remove_login_url": EventType._sso_remove_login_url_validator, - "sso_remove_logout_url": EventType._sso_remove_logout_url_validator, - "team_folder_change_status": EventType._team_folder_change_status_validator, - "team_folder_create": EventType._team_folder_create_validator, - "team_folder_downgrade": EventType._team_folder_downgrade_validator, - "team_folder_permanently_delete": EventType._team_folder_permanently_delete_validator, - "team_folder_rename": EventType._team_folder_rename_validator, - "team_folder_space_limits_change_caps_type": EventType._team_folder_space_limits_change_caps_type_validator, - "team_folder_space_limits_change_limit": EventType._team_folder_space_limits_change_limit_validator, - "team_folder_space_limits_change_notification_target": EventType._team_folder_space_limits_change_notification_target_validator, - "team_selective_sync_settings_changed": EventType._team_selective_sync_settings_changed_validator, - "account_capture_change_policy": EventType._account_capture_change_policy_validator, - "admin_email_reminders_changed": EventType._admin_email_reminders_changed_validator, - "ai_third_party_sharing_dropbox_base_policy_changed": EventType._ai_third_party_sharing_dropbox_base_policy_changed_validator, - "allow_download_disabled": EventType._allow_download_disabled_validator, - "allow_download_enabled": EventType._allow_download_enabled_validator, - "apple_login_change_policy": EventType._apple_login_change_policy_validator, - "app_permissions_changed": EventType._app_permissions_changed_validator, - "camera_uploads_policy_changed": EventType._camera_uploads_policy_changed_validator, - "capture_team_space_policy_changed": EventType._capture_team_space_policy_changed_validator, - "capture_transcript_policy_changed": EventType._capture_transcript_policy_changed_validator, - "classification_change_policy": EventType._classification_change_policy_validator, - "computer_backup_policy_changed": EventType._computer_backup_policy_changed_validator, - "content_administration_policy_changed": EventType._content_administration_policy_changed_validator, - "content_deletion_protection_change_policy": EventType._content_deletion_protection_change_policy_validator, - "dash_external_sharing_policy_changed": EventType._dash_external_sharing_policy_changed_validator, - "data_placement_restriction_change_policy": EventType._data_placement_restriction_change_policy_validator, - "data_placement_restriction_satisfy_policy": EventType._data_placement_restriction_satisfy_policy_validator, - "device_approvals_add_exception": EventType._device_approvals_add_exception_validator, - "device_approvals_change_desktop_policy": EventType._device_approvals_change_desktop_policy_validator, - "device_approvals_change_mobile_policy": EventType._device_approvals_change_mobile_policy_validator, - "device_approvals_change_overage_action": EventType._device_approvals_change_overage_action_validator, - "device_approvals_change_unlink_action": EventType._device_approvals_change_unlink_action_validator, - "device_approvals_remove_exception": EventType._device_approvals_remove_exception_validator, - "directory_restrictions_add_members": EventType._directory_restrictions_add_members_validator, - "directory_restrictions_remove_members": EventType._directory_restrictions_remove_members_validator, - "dropbox_passwords_policy_changed": EventType._dropbox_passwords_policy_changed_validator, - "email_ingest_policy_changed": EventType._email_ingest_policy_changed_validator, - "emm_add_exception": EventType._emm_add_exception_validator, - "emm_change_policy": EventType._emm_change_policy_validator, - "emm_remove_exception": EventType._emm_remove_exception_validator, - "extended_version_history_change_policy": EventType._extended_version_history_change_policy_validator, - "external_drive_backup_policy_changed": EventType._external_drive_backup_policy_changed_validator, - "file_comments_change_policy": EventType._file_comments_change_policy_validator, - "file_locking_policy_changed": EventType._file_locking_policy_changed_validator, - "file_provider_migration_policy_changed": EventType._file_provider_migration_policy_changed_validator, - "file_requests_change_policy": EventType._file_requests_change_policy_validator, - "file_requests_emails_enabled": EventType._file_requests_emails_enabled_validator, - "file_requests_emails_restricted_to_team_only": EventType._file_requests_emails_restricted_to_team_only_validator, - "file_transfers_policy_changed": EventType._file_transfers_policy_changed_validator, - "flexible_file_names_policy_changed": EventType._flexible_file_names_policy_changed_validator, - "folder_link_restriction_policy_changed": EventType._folder_link_restriction_policy_changed_validator, - "google_sso_change_policy": EventType._google_sso_change_policy_validator, - "group_user_management_change_policy": EventType._group_user_management_change_policy_validator, - "integration_policy_changed": EventType._integration_policy_changed_validator, - "invite_acceptance_email_policy_changed": EventType._invite_acceptance_email_policy_changed_validator, - "media_hub_adding_people_policy_changed": EventType._media_hub_adding_people_policy_changed_validator, - "media_hub_download_policy_changed": EventType._media_hub_download_policy_changed_validator, - "media_hub_link_sharing_policy_changed": EventType._media_hub_link_sharing_policy_changed_validator, - "member_requests_change_policy": EventType._member_requests_change_policy_validator, - "member_send_invite_policy_changed": EventType._member_send_invite_policy_changed_validator, - "member_space_limits_add_exception": EventType._member_space_limits_add_exception_validator, - "member_space_limits_change_caps_type_policy": EventType._member_space_limits_change_caps_type_policy_validator, - "member_space_limits_change_policy": EventType._member_space_limits_change_policy_validator, - "member_space_limits_remove_exception": EventType._member_space_limits_remove_exception_validator, - "member_suggestions_change_policy": EventType._member_suggestions_change_policy_validator, - "microsoft_login_change_policy": EventType._microsoft_login_change_policy_validator, - "microsoft_office_addin_change_policy": EventType._microsoft_office_addin_change_policy_validator, - "multi_team_identity_policy_changed": EventType._multi_team_identity_policy_changed_validator, - "network_control_change_policy": EventType._network_control_change_policy_validator, - "paper_change_deployment_policy": EventType._paper_change_deployment_policy_validator, - "paper_change_member_link_policy": EventType._paper_change_member_link_policy_validator, - "paper_change_member_policy": EventType._paper_change_member_policy_validator, - "paper_change_policy": EventType._paper_change_policy_validator, - "paper_default_folder_policy_changed": EventType._paper_default_folder_policy_changed_validator, - "paper_desktop_policy_changed": EventType._paper_desktop_policy_changed_validator, - "paper_enabled_users_group_addition": EventType._paper_enabled_users_group_addition_validator, - "paper_enabled_users_group_removal": EventType._paper_enabled_users_group_removal_validator, - "passkey_login_policy_changed": EventType._passkey_login_policy_changed_validator, - "password_strength_requirements_change_policy": EventType._password_strength_requirements_change_policy_validator, - "permanent_delete_change_policy": EventType._permanent_delete_change_policy_validator, - "previews_ai_policy_changed": EventType._previews_ai_policy_changed_validator, - "replay_adding_people_policy_changed": EventType._replay_adding_people_policy_changed_validator, - "replay_sharing_policy_changed": EventType._replay_sharing_policy_changed_validator, - "reseller_support_change_policy": EventType._reseller_support_change_policy_validator, - "rewind_policy_changed": EventType._rewind_policy_changed_validator, - "send_and_track_policy_changed": EventType._send_and_track_policy_changed_validator, - "send_external_sharing_policy_changed": EventType._send_external_sharing_policy_changed_validator, - "send_for_signature_policy_changed": EventType._send_for_signature_policy_changed_validator, - "shared_link_default_permissions_policy_changed": EventType._shared_link_default_permissions_policy_changed_validator, - "sharing_change_folder_join_policy": EventType._sharing_change_folder_join_policy_validator, - "sharing_change_link_allow_change_expiration_policy": EventType._sharing_change_link_allow_change_expiration_policy_validator, - "sharing_change_link_default_expiration_policy": EventType._sharing_change_link_default_expiration_policy_validator, - "sharing_change_link_enforce_password_policy": EventType._sharing_change_link_enforce_password_policy_validator, - "sharing_change_link_policy": EventType._sharing_change_link_policy_validator, - "sharing_change_member_policy": EventType._sharing_change_member_policy_validator, - "showcase_change_download_policy": EventType._showcase_change_download_policy_validator, - "showcase_change_enabled_policy": EventType._showcase_change_enabled_policy_validator, - "showcase_change_external_sharing_policy": EventType._showcase_change_external_sharing_policy_validator, - "sign_external_sharing_policy_changed": EventType._sign_external_sharing_policy_changed_validator, - "sign_template_creation_permission_changed": EventType._sign_template_creation_permission_changed_validator, - "smarter_smart_sync_policy_changed": EventType._smarter_smart_sync_policy_changed_validator, - "smart_sync_change_policy": EventType._smart_sync_change_policy_validator, - "smart_sync_not_opt_out": EventType._smart_sync_not_opt_out_validator, - "smart_sync_opt_out": EventType._smart_sync_opt_out_validator, - "sso_change_policy": EventType._sso_change_policy_validator, - "stack_cross_team_access_policy_changed": EventType._stack_cross_team_access_policy_changed_validator, - "team_branding_policy_changed": EventType._team_branding_policy_changed_validator, - "team_extensions_policy_changed": EventType._team_extensions_policy_changed_validator, - "team_member_storage_request_policy_changed": EventType._team_member_storage_request_policy_changed_validator, - "team_selective_sync_policy_changed": EventType._team_selective_sync_policy_changed_validator, - "team_sharing_whitelist_subjects_changed": EventType._team_sharing_whitelist_subjects_changed_validator, - "tfa_add_exception": EventType._tfa_add_exception_validator, - "tfa_change_policy": EventType._tfa_change_policy_validator, - "tfa_remove_exception": EventType._tfa_remove_exception_validator, - "top_level_content_policy_changed": EventType._top_level_content_policy_changed_validator, - "two_account_change_policy": EventType._two_account_change_policy_validator, - "viewer_info_policy_changed": EventType._viewer_info_policy_changed_validator, - "watermarking_policy_changed": EventType._watermarking_policy_changed_validator, - "web_sessions_change_active_session_limit": EventType._web_sessions_change_active_session_limit_validator, - "web_sessions_change_fixed_length_policy": EventType._web_sessions_change_fixed_length_policy_validator, - "web_sessions_change_idle_length_policy": EventType._web_sessions_change_idle_length_policy_validator, - "data_residency_migration_request_successful": EventType._data_residency_migration_request_successful_validator, - "data_residency_migration_request_unsuccessful": EventType._data_residency_migration_request_unsuccessful_validator, - "team_merge_from": EventType._team_merge_from_validator, - "team_merge_to": EventType._team_merge_to_validator, - "team_profile_add_background": EventType._team_profile_add_background_validator, - "team_profile_add_logo": EventType._team_profile_add_logo_validator, - "team_profile_change_background": EventType._team_profile_change_background_validator, - "team_profile_change_default_language": EventType._team_profile_change_default_language_validator, - "team_profile_change_logo": EventType._team_profile_change_logo_validator, - "team_profile_change_name": EventType._team_profile_change_name_validator, - "team_profile_remove_background": EventType._team_profile_remove_background_validator, - "team_profile_remove_logo": EventType._team_profile_remove_logo_validator, - "passkey_add": EventType._passkey_add_validator, - "passkey_remove": EventType._passkey_remove_validator, - "tfa_add_backup_phone": EventType._tfa_add_backup_phone_validator, - "tfa_add_security_key": EventType._tfa_add_security_key_validator, - "tfa_change_backup_phone": EventType._tfa_change_backup_phone_validator, - "tfa_change_status": EventType._tfa_change_status_validator, - "tfa_remove_backup_phone": EventType._tfa_remove_backup_phone_validator, - "tfa_remove_security_key": EventType._tfa_remove_security_key_validator, - "tfa_reset": EventType._tfa_reset_validator, - "changed_enterprise_admin_role": EventType._changed_enterprise_admin_role_validator, - "changed_enterprise_connected_team_status": EventType._changed_enterprise_connected_team_status_validator, - "ended_enterprise_admin_session": EventType._ended_enterprise_admin_session_validator, - "ended_enterprise_admin_session_deprecated": EventType._ended_enterprise_admin_session_deprecated_validator, - "enterprise_settings_locking": EventType._enterprise_settings_locking_validator, - "guest_admin_change_status": EventType._guest_admin_change_status_validator, - "started_enterprise_admin_session": EventType._started_enterprise_admin_session_validator, - "team_merge_request_accepted": EventType._team_merge_request_accepted_validator, - "team_merge_request_accepted_shown_to_primary_team": EventType._team_merge_request_accepted_shown_to_primary_team_validator, - "team_merge_request_accepted_shown_to_secondary_team": EventType._team_merge_request_accepted_shown_to_secondary_team_validator, - "team_merge_request_auto_canceled": EventType._team_merge_request_auto_canceled_validator, - "team_merge_request_canceled": EventType._team_merge_request_canceled_validator, - "team_merge_request_canceled_shown_to_primary_team": EventType._team_merge_request_canceled_shown_to_primary_team_validator, - "team_merge_request_canceled_shown_to_secondary_team": EventType._team_merge_request_canceled_shown_to_secondary_team_validator, - "team_merge_request_expired": EventType._team_merge_request_expired_validator, - "team_merge_request_expired_shown_to_primary_team": EventType._team_merge_request_expired_shown_to_primary_team_validator, - "team_merge_request_expired_shown_to_secondary_team": EventType._team_merge_request_expired_shown_to_secondary_team_validator, - "team_merge_request_rejected_shown_to_primary_team": EventType._team_merge_request_rejected_shown_to_primary_team_validator, - "team_merge_request_rejected_shown_to_secondary_team": EventType._team_merge_request_rejected_shown_to_secondary_team_validator, - "team_merge_request_reminder": EventType._team_merge_request_reminder_validator, - "team_merge_request_reminder_shown_to_primary_team": EventType._team_merge_request_reminder_shown_to_primary_team_validator, - "team_merge_request_reminder_shown_to_secondary_team": EventType._team_merge_request_reminder_shown_to_secondary_team_validator, - "team_merge_request_revoked": EventType._team_merge_request_revoked_validator, - "team_merge_request_sent_shown_to_primary_team": EventType._team_merge_request_sent_shown_to_primary_team_validator, - "team_merge_request_sent_shown_to_secondary_team": EventType._team_merge_request_sent_shown_to_secondary_team_validator, - "other": EventType._other_validator, + 'admin_alerting_alert_state_changed': EventType._admin_alerting_alert_state_changed_validator, + 'admin_alerting_changed_alert_config': EventType._admin_alerting_changed_alert_config_validator, + 'admin_alerting_triggered_alert': EventType._admin_alerting_triggered_alert_validator, + 'ransomware_restore_process_completed': EventType._ransomware_restore_process_completed_validator, + 'ransomware_restore_process_started': EventType._ransomware_restore_process_started_validator, + 'app_blocked_by_permissions': EventType._app_blocked_by_permissions_validator, + 'app_link_team': EventType._app_link_team_validator, + 'app_link_user': EventType._app_link_user_validator, + 'app_unlink_team': EventType._app_unlink_team_validator, + 'app_unlink_user': EventType._app_unlink_user_validator, + 'integration_connected': EventType._integration_connected_validator, + 'integration_disconnected': EventType._integration_disconnected_validator, + 'file_add_comment': EventType._file_add_comment_validator, + 'file_change_comment_subscription': EventType._file_change_comment_subscription_validator, + 'file_delete_comment': EventType._file_delete_comment_validator, + 'file_edit_comment': EventType._file_edit_comment_validator, + 'file_like_comment': EventType._file_like_comment_validator, + 'file_resolve_comment': EventType._file_resolve_comment_validator, + 'file_unlike_comment': EventType._file_unlike_comment_validator, + 'file_unresolve_comment': EventType._file_unresolve_comment_validator, + 'dash_added_comment_to_stack': EventType._dash_added_comment_to_stack_validator, + 'dash_added_connector': EventType._dash_added_connector_validator, + 'dash_added_link_to_stack': EventType._dash_added_link_to_stack_validator, + 'dash_added_team_email_domain_allowlist': EventType._dash_added_team_email_domain_allowlist_validator, + 'dash_admin_added_org_wide_connector': EventType._dash_admin_added_org_wide_connector_validator, + 'dash_admin_disabled_connector': EventType._dash_admin_disabled_connector_validator, + 'dash_admin_enabled_connector': EventType._dash_admin_enabled_connector_validator, + 'dash_admin_removed_org_wide_connector': EventType._dash_admin_removed_org_wide_connector_validator, + 'dash_archived_stack': EventType._dash_archived_stack_validator, + 'dash_changed_audience_of_shared_link_to_stack': EventType._dash_changed_audience_of_shared_link_to_stack_validator, + 'dash_cloned_stack': EventType._dash_cloned_stack_validator, + 'dash_connector_tools_call': EventType._dash_connector_tools_call_validator, + 'dash_created_stack': EventType._dash_created_stack_validator, + 'dash_deleted_comment_from_stack': EventType._dash_deleted_comment_from_stack_validator, + 'dash_deleted_stack': EventType._dash_deleted_stack_validator, + 'dash_edited_comment_in_stack': EventType._dash_edited_comment_in_stack_validator, + 'dash_external_user_opened_stack': EventType._dash_external_user_opened_stack_validator, + 'dash_first_launched_desktop': EventType._dash_first_launched_desktop_validator, + 'dash_first_launched_extension': EventType._dash_first_launched_extension_validator, + 'dash_first_launched_web_start_page': EventType._dash_first_launched_web_start_page_validator, + 'dash_opened_shared_link_to_stack': EventType._dash_opened_shared_link_to_stack_validator, + 'dash_opened_stack': EventType._dash_opened_stack_validator, + 'dash_preview_opt_out_status_changed': EventType._dash_preview_opt_out_status_changed_validator, + 'dash_removed_connector': EventType._dash_removed_connector_validator, + 'dash_removed_link_from_stack': EventType._dash_removed_link_from_stack_validator, + 'dash_removed_shared_link_to_stack': EventType._dash_removed_shared_link_to_stack_validator, + 'dash_removed_team_email_domain_allowlist': EventType._dash_removed_team_email_domain_allowlist_validator, + 'dash_renamed_stack': EventType._dash_renamed_stack_validator, + 'dash_shared_link_to_stack': EventType._dash_shared_link_to_stack_validator, + 'dash_unarchived_stack': EventType._dash_unarchived_stack_validator, + 'dash_viewed_company_stack': EventType._dash_viewed_company_stack_validator, + 'dash_viewed_external_ai_activity_report': EventType._dash_viewed_external_ai_activity_report_validator, + 'governance_policy_add_folders': EventType._governance_policy_add_folders_validator, + 'governance_policy_add_folder_failed': EventType._governance_policy_add_folder_failed_validator, + 'governance_policy_content_disposed': EventType._governance_policy_content_disposed_validator, + 'governance_policy_create': EventType._governance_policy_create_validator, + 'governance_policy_delete': EventType._governance_policy_delete_validator, + 'governance_policy_edit_details': EventType._governance_policy_edit_details_validator, + 'governance_policy_edit_duration': EventType._governance_policy_edit_duration_validator, + 'governance_policy_export_created': EventType._governance_policy_export_created_validator, + 'governance_policy_export_removed': EventType._governance_policy_export_removed_validator, + 'governance_policy_remove_folders': EventType._governance_policy_remove_folders_validator, + 'governance_policy_report_created': EventType._governance_policy_report_created_validator, + 'governance_policy_zip_part_downloaded': EventType._governance_policy_zip_part_downloaded_validator, + 'legal_holds_activate_a_hold': EventType._legal_holds_activate_a_hold_validator, + 'legal_holds_add_members': EventType._legal_holds_add_members_validator, + 'legal_holds_change_hold_details': EventType._legal_holds_change_hold_details_validator, + 'legal_holds_change_hold_name': EventType._legal_holds_change_hold_name_validator, + 'legal_holds_export_a_hold': EventType._legal_holds_export_a_hold_validator, + 'legal_holds_export_cancelled': EventType._legal_holds_export_cancelled_validator, + 'legal_holds_export_downloaded': EventType._legal_holds_export_downloaded_validator, + 'legal_holds_export_removed': EventType._legal_holds_export_removed_validator, + 'legal_holds_release_a_hold': EventType._legal_holds_release_a_hold_validator, + 'legal_holds_remove_members': EventType._legal_holds_remove_members_validator, + 'legal_holds_report_a_hold': EventType._legal_holds_report_a_hold_validator, + 'device_change_ip_desktop': EventType._device_change_ip_desktop_validator, + 'device_change_ip_mobile': EventType._device_change_ip_mobile_validator, + 'device_change_ip_web': EventType._device_change_ip_web_validator, + 'device_delete_on_unlink_fail': EventType._device_delete_on_unlink_fail_validator, + 'device_delete_on_unlink_success': EventType._device_delete_on_unlink_success_validator, + 'device_link_fail': EventType._device_link_fail_validator, + 'device_link_success': EventType._device_link_success_validator, + 'device_management_disabled': EventType._device_management_disabled_validator, + 'device_management_enabled': EventType._device_management_enabled_validator, + 'device_sync_backup_status_changed': EventType._device_sync_backup_status_changed_validator, + 'device_unlink': EventType._device_unlink_validator, + 'dropbox_passwords_exported': EventType._dropbox_passwords_exported_validator, + 'dropbox_passwords_new_device_enrolled': EventType._dropbox_passwords_new_device_enrolled_validator, + 'emm_refresh_auth_token': EventType._emm_refresh_auth_token_validator, + 'external_drive_backup_eligibility_status_checked': EventType._external_drive_backup_eligibility_status_checked_validator, + 'external_drive_backup_status_changed': EventType._external_drive_backup_status_changed_validator, + 'account_capture_change_availability': EventType._account_capture_change_availability_validator, + 'account_capture_migrate_account': EventType._account_capture_migrate_account_validator, + 'account_capture_notification_emails_sent': EventType._account_capture_notification_emails_sent_validator, + 'account_capture_relinquish_account': EventType._account_capture_relinquish_account_validator, + 'disabled_domain_invites': EventType._disabled_domain_invites_validator, + 'domain_invites_approve_request_to_join_team': EventType._domain_invites_approve_request_to_join_team_validator, + 'domain_invites_decline_request_to_join_team': EventType._domain_invites_decline_request_to_join_team_validator, + 'domain_invites_email_existing_users': EventType._domain_invites_email_existing_users_validator, + 'domain_invites_request_to_join_team': EventType._domain_invites_request_to_join_team_validator, + 'domain_invites_set_invite_new_user_pref_to_no': EventType._domain_invites_set_invite_new_user_pref_to_no_validator, + 'domain_invites_set_invite_new_user_pref_to_yes': EventType._domain_invites_set_invite_new_user_pref_to_yes_validator, + 'domain_verification_add_domain_fail': EventType._domain_verification_add_domain_fail_validator, + 'domain_verification_add_domain_success': EventType._domain_verification_add_domain_success_validator, + 'domain_verification_remove_domain': EventType._domain_verification_remove_domain_validator, + 'enabled_domain_invites': EventType._enabled_domain_invites_validator, + 'encrypted_folder_cancel_team_key_rotation': EventType._encrypted_folder_cancel_team_key_rotation_validator, + 'encrypted_folder_enroll_backup_key': EventType._encrypted_folder_enroll_backup_key_validator, + 'encrypted_folder_enroll_client': EventType._encrypted_folder_enroll_client_validator, + 'encrypted_folder_enroll_team': EventType._encrypted_folder_enroll_team_validator, + 'encrypted_folder_finish_team_unenrollment': EventType._encrypted_folder_finish_team_unenrollment_validator, + 'encrypted_folder_init_team_key_rotation': EventType._encrypted_folder_init_team_key_rotation_validator, + 'encrypted_folder_init_team_unenrollment': EventType._encrypted_folder_init_team_unenrollment_validator, + 'encrypted_folder_remove_backup_key': EventType._encrypted_folder_remove_backup_key_validator, + 'encrypted_folder_rotate_team_key': EventType._encrypted_folder_rotate_team_key_validator, + 'encrypted_folder_unenroll_client': EventType._encrypted_folder_unenroll_client_validator, + 'team_encryption_key_activate_key': EventType._team_encryption_key_activate_key_validator, + 'team_encryption_key_cancel_key_deletion': EventType._team_encryption_key_cancel_key_deletion_validator, + 'team_encryption_key_create_key': EventType._team_encryption_key_create_key_validator, + 'team_encryption_key_deactivate_key': EventType._team_encryption_key_deactivate_key_validator, + 'team_encryption_key_delete_key': EventType._team_encryption_key_delete_key_validator, + 'team_encryption_key_disable_key': EventType._team_encryption_key_disable_key_validator, + 'team_encryption_key_enable_key': EventType._team_encryption_key_enable_key_validator, + 'team_encryption_key_rotate_key': EventType._team_encryption_key_rotate_key_validator, + 'team_encryption_key_schedule_key_deletion': EventType._team_encryption_key_schedule_key_deletion_validator, + 'apply_naming_convention': EventType._apply_naming_convention_validator, + 'create_folder': EventType._create_folder_validator, + 'file_add': EventType._file_add_validator, + 'file_add_from_automation': EventType._file_add_from_automation_validator, + 'file_copy': EventType._file_copy_validator, + 'file_delete': EventType._file_delete_validator, + 'file_download': EventType._file_download_validator, + 'file_edit': EventType._file_edit_validator, + 'file_get_copy_reference': EventType._file_get_copy_reference_validator, + 'file_locking_lock_status_changed': EventType._file_locking_lock_status_changed_validator, + 'file_move': EventType._file_move_validator, + 'file_permanently_delete': EventType._file_permanently_delete_validator, + 'file_preview': EventType._file_preview_validator, + 'file_rename': EventType._file_rename_validator, + 'file_restore': EventType._file_restore_validator, + 'file_revert': EventType._file_revert_validator, + 'file_rollback_changes': EventType._file_rollback_changes_validator, + 'file_save_copy_reference': EventType._file_save_copy_reference_validator, + 'folder_overview_description_changed': EventType._folder_overview_description_changed_validator, + 'folder_overview_item_pinned': EventType._folder_overview_item_pinned_validator, + 'folder_overview_item_unpinned': EventType._folder_overview_item_unpinned_validator, + 'media_hub_file_downloaded': EventType._media_hub_file_downloaded_validator, + 'object_label_added': EventType._object_label_added_validator, + 'object_label_removed': EventType._object_label_removed_validator, + 'object_label_updated_value': EventType._object_label_updated_value_validator, + 'organize_folder_with_tidy': EventType._organize_folder_with_tidy_validator, + 'replay_file_delete': EventType._replay_file_delete_validator, + 'replay_file_downloaded': EventType._replay_file_downloaded_validator, + 'replay_team_project_created': EventType._replay_team_project_created_validator, + 'rewind_folder': EventType._rewind_folder_validator, + 'undo_naming_convention': EventType._undo_naming_convention_validator, + 'undo_organize_folder_with_tidy': EventType._undo_organize_folder_with_tidy_validator, + 'user_tags_added': EventType._user_tags_added_validator, + 'user_tags_removed': EventType._user_tags_removed_validator, + 'email_ingest_receive_file': EventType._email_ingest_receive_file_validator, + 'file_request_auto_close': EventType._file_request_auto_close_validator, + 'file_request_change': EventType._file_request_change_validator, + 'file_request_close': EventType._file_request_close_validator, + 'file_request_create': EventType._file_request_create_validator, + 'file_request_delete': EventType._file_request_delete_validator, + 'file_request_receive_file': EventType._file_request_receive_file_validator, + 'group_add_external_id': EventType._group_add_external_id_validator, + 'group_add_member': EventType._group_add_member_validator, + 'group_change_external_id': EventType._group_change_external_id_validator, + 'group_change_management_type': EventType._group_change_management_type_validator, + 'group_change_member_role': EventType._group_change_member_role_validator, + 'group_create': EventType._group_create_validator, + 'group_delete': EventType._group_delete_validator, + 'group_description_updated': EventType._group_description_updated_validator, + 'group_external_sharing_setting_override_changed': EventType._group_external_sharing_setting_override_changed_validator, + 'group_join_policy_updated': EventType._group_join_policy_updated_validator, + 'group_moved': EventType._group_moved_validator, + 'group_remove_external_id': EventType._group_remove_external_id_validator, + 'group_remove_member': EventType._group_remove_member_validator, + 'group_rename': EventType._group_rename_validator, + 'account_lock_or_unlocked': EventType._account_lock_or_unlocked_validator, + 'emm_error': EventType._emm_error_validator, + 'guest_admin_signed_in_via_trusted_teams': EventType._guest_admin_signed_in_via_trusted_teams_validator, + 'guest_admin_signed_out_via_trusted_teams': EventType._guest_admin_signed_out_via_trusted_teams_validator, + 'login_fail': EventType._login_fail_validator, + 'login_success': EventType._login_success_validator, + 'logout': EventType._logout_validator, + 'reseller_support_session_end': EventType._reseller_support_session_end_validator, + 'reseller_support_session_start': EventType._reseller_support_session_start_validator, + 'sign_in_as_session_end': EventType._sign_in_as_session_end_validator, + 'sign_in_as_session_start': EventType._sign_in_as_session_start_validator, + 'sso_error': EventType._sso_error_validator, + 'addon_assigned': EventType._addon_assigned_validator, + 'addon_removed': EventType._addon_removed_validator, + 'backup_admin_invitation_sent': EventType._backup_admin_invitation_sent_validator, + 'backup_invitation_opened': EventType._backup_invitation_opened_validator, + 'create_team_invite_link': EventType._create_team_invite_link_validator, + 'delete_team_invite_link': EventType._delete_team_invite_link_validator, + 'member_add_external_id': EventType._member_add_external_id_validator, + 'member_add_name': EventType._member_add_name_validator, + 'member_change_admin_role': EventType._member_change_admin_role_validator, + 'member_change_email': EventType._member_change_email_validator, + 'member_change_external_id': EventType._member_change_external_id_validator, + 'member_change_membership_type': EventType._member_change_membership_type_validator, + 'member_change_name': EventType._member_change_name_validator, + 'member_change_reseller_role': EventType._member_change_reseller_role_validator, + 'member_change_status': EventType._member_change_status_validator, + 'member_delete_manual_contacts': EventType._member_delete_manual_contacts_validator, + 'member_delete_profile_photo': EventType._member_delete_profile_photo_validator, + 'member_permanently_delete_account_contents': EventType._member_permanently_delete_account_contents_validator, + 'member_remove_external_id': EventType._member_remove_external_id_validator, + 'member_set_profile_photo': EventType._member_set_profile_photo_validator, + 'member_space_limits_add_custom_quota': EventType._member_space_limits_add_custom_quota_validator, + 'member_space_limits_change_custom_quota': EventType._member_space_limits_change_custom_quota_validator, + 'member_space_limits_change_status': EventType._member_space_limits_change_status_validator, + 'member_space_limits_remove_custom_quota': EventType._member_space_limits_remove_custom_quota_validator, + 'member_suggest': EventType._member_suggest_validator, + 'member_transfer_account_contents': EventType._member_transfer_account_contents_validator, + 'pending_secondary_email_added': EventType._pending_secondary_email_added_validator, + 'product_assigned_to_member': EventType._product_assigned_to_member_validator, + 'product_removed_from_member': EventType._product_removed_from_member_validator, + 'secondary_email_deleted': EventType._secondary_email_deleted_validator, + 'secondary_email_verified': EventType._secondary_email_verified_validator, + 'secondary_mails_policy_changed': EventType._secondary_mails_policy_changed_validator, + 'binder_add_page': EventType._binder_add_page_validator, + 'binder_add_section': EventType._binder_add_section_validator, + 'binder_remove_page': EventType._binder_remove_page_validator, + 'binder_remove_section': EventType._binder_remove_section_validator, + 'binder_rename_page': EventType._binder_rename_page_validator, + 'binder_rename_section': EventType._binder_rename_section_validator, + 'binder_reorder_page': EventType._binder_reorder_page_validator, + 'binder_reorder_section': EventType._binder_reorder_section_validator, + 'paper_content_add_member': EventType._paper_content_add_member_validator, + 'paper_content_add_to_folder': EventType._paper_content_add_to_folder_validator, + 'paper_content_archive': EventType._paper_content_archive_validator, + 'paper_content_create': EventType._paper_content_create_validator, + 'paper_content_permanently_delete': EventType._paper_content_permanently_delete_validator, + 'paper_content_remove_from_folder': EventType._paper_content_remove_from_folder_validator, + 'paper_content_remove_member': EventType._paper_content_remove_member_validator, + 'paper_content_rename': EventType._paper_content_rename_validator, + 'paper_content_restore': EventType._paper_content_restore_validator, + 'paper_doc_add_comment': EventType._paper_doc_add_comment_validator, + 'paper_doc_change_member_role': EventType._paper_doc_change_member_role_validator, + 'paper_doc_change_sharing_policy': EventType._paper_doc_change_sharing_policy_validator, + 'paper_doc_change_subscription': EventType._paper_doc_change_subscription_validator, + 'paper_doc_deleted': EventType._paper_doc_deleted_validator, + 'paper_doc_delete_comment': EventType._paper_doc_delete_comment_validator, + 'paper_doc_download': EventType._paper_doc_download_validator, + 'paper_doc_edit': EventType._paper_doc_edit_validator, + 'paper_doc_edit_comment': EventType._paper_doc_edit_comment_validator, + 'paper_doc_followed': EventType._paper_doc_followed_validator, + 'paper_doc_mention': EventType._paper_doc_mention_validator, + 'paper_doc_ownership_changed': EventType._paper_doc_ownership_changed_validator, + 'paper_doc_request_access': EventType._paper_doc_request_access_validator, + 'paper_doc_resolve_comment': EventType._paper_doc_resolve_comment_validator, + 'paper_doc_revert': EventType._paper_doc_revert_validator, + 'paper_doc_slack_share': EventType._paper_doc_slack_share_validator, + 'paper_doc_team_invite': EventType._paper_doc_team_invite_validator, + 'paper_doc_trashed': EventType._paper_doc_trashed_validator, + 'paper_doc_unresolve_comment': EventType._paper_doc_unresolve_comment_validator, + 'paper_doc_untrashed': EventType._paper_doc_untrashed_validator, + 'paper_doc_view': EventType._paper_doc_view_validator, + 'paper_external_view_allow': EventType._paper_external_view_allow_validator, + 'paper_external_view_default_team': EventType._paper_external_view_default_team_validator, + 'paper_external_view_forbid': EventType._paper_external_view_forbid_validator, + 'paper_folder_change_subscription': EventType._paper_folder_change_subscription_validator, + 'paper_folder_deleted': EventType._paper_folder_deleted_validator, + 'paper_folder_followed': EventType._paper_folder_followed_validator, + 'paper_folder_team_invite': EventType._paper_folder_team_invite_validator, + 'paper_published_link_change_permission': EventType._paper_published_link_change_permission_validator, + 'paper_published_link_create': EventType._paper_published_link_create_validator, + 'paper_published_link_disabled': EventType._paper_published_link_disabled_validator, + 'paper_published_link_view': EventType._paper_published_link_view_validator, + 'password_change': EventType._password_change_validator, + 'password_reset': EventType._password_reset_validator, + 'password_reset_all': EventType._password_reset_all_validator, + 'protect_internal_domains_changed': EventType._protect_internal_domains_changed_validator, + 'classification_create_report': EventType._classification_create_report_validator, + 'classification_create_report_fail': EventType._classification_create_report_fail_validator, + 'emm_create_exceptions_report': EventType._emm_create_exceptions_report_validator, + 'emm_create_usage_report': EventType._emm_create_usage_report_validator, + 'export_members_report': EventType._export_members_report_validator, + 'export_members_report_fail': EventType._export_members_report_fail_validator, + 'external_sharing_create_report': EventType._external_sharing_create_report_validator, + 'external_sharing_report_failed': EventType._external_sharing_report_failed_validator, + 'member_access_details_create_report': EventType._member_access_details_create_report_validator, + 'member_access_details_create_report_failed': EventType._member_access_details_create_report_failed_validator, + 'no_expiration_link_gen_create_report': EventType._no_expiration_link_gen_create_report_validator, + 'no_expiration_link_gen_report_failed': EventType._no_expiration_link_gen_report_failed_validator, + 'no_password_link_gen_create_report': EventType._no_password_link_gen_create_report_validator, + 'no_password_link_gen_report_failed': EventType._no_password_link_gen_report_failed_validator, + 'no_password_link_view_create_report': EventType._no_password_link_view_create_report_validator, + 'no_password_link_view_report_failed': EventType._no_password_link_view_report_failed_validator, + 'outdated_link_view_create_report': EventType._outdated_link_view_create_report_validator, + 'outdated_link_view_report_failed': EventType._outdated_link_view_report_failed_validator, + 'paper_admin_export_start': EventType._paper_admin_export_start_validator, + 'ransomware_alert_create_report': EventType._ransomware_alert_create_report_validator, + 'ransomware_alert_create_report_failed': EventType._ransomware_alert_create_report_failed_validator, + 'shared_folders_create_report': EventType._shared_folders_create_report_validator, + 'shared_folders_create_report_failed': EventType._shared_folders_create_report_failed_validator, + 'smart_sync_create_admin_privilege_report': EventType._smart_sync_create_admin_privilege_report_validator, + 'team_activity_create_report': EventType._team_activity_create_report_validator, + 'team_activity_create_report_fail': EventType._team_activity_create_report_fail_validator, + 'team_folders_create_report': EventType._team_folders_create_report_validator, + 'team_folders_create_report_failed': EventType._team_folders_create_report_failed_validator, + 'team_storage_create_report': EventType._team_storage_create_report_validator, + 'team_storage_create_report_failed': EventType._team_storage_create_report_failed_validator, + 'collection_share': EventType._collection_share_validator, + 'file_transfers_file_add': EventType._file_transfers_file_add_validator, + 'file_transfers_transfer_delete': EventType._file_transfers_transfer_delete_validator, + 'file_transfers_transfer_download': EventType._file_transfers_transfer_download_validator, + 'file_transfers_transfer_send': EventType._file_transfers_transfer_send_validator, + 'file_transfers_transfer_view': EventType._file_transfers_transfer_view_validator, + 'media_hub_project_team_add': EventType._media_hub_project_team_add_validator, + 'media_hub_project_team_delete': EventType._media_hub_project_team_delete_validator, + 'media_hub_project_team_role_changed': EventType._media_hub_project_team_role_changed_validator, + 'media_hub_shared_link_audience_changed': EventType._media_hub_shared_link_audience_changed_validator, + 'media_hub_shared_link_created': EventType._media_hub_shared_link_created_validator, + 'media_hub_shared_link_download_setting_changed': EventType._media_hub_shared_link_download_setting_changed_validator, + 'media_hub_shared_link_revoked': EventType._media_hub_shared_link_revoked_validator, + 'note_acl_invite_only': EventType._note_acl_invite_only_validator, + 'note_acl_link': EventType._note_acl_link_validator, + 'note_acl_team_link': EventType._note_acl_team_link_validator, + 'note_shared': EventType._note_shared_validator, + 'note_share_receive': EventType._note_share_receive_validator, + 'open_note_shared': EventType._open_note_shared_validator, + 'replay_file_shared_link_created': EventType._replay_file_shared_link_created_validator, + 'replay_file_shared_link_modified': EventType._replay_file_shared_link_modified_validator, + 'replay_project_team_add': EventType._replay_project_team_add_validator, + 'replay_project_team_delete': EventType._replay_project_team_delete_validator, + 'send_and_track_file_added': EventType._send_and_track_file_added_validator, + 'send_and_track_file_renamed': EventType._send_and_track_file_renamed_validator, + 'send_and_track_file_updated': EventType._send_and_track_file_updated_validator, + 'send_and_track_link_created': EventType._send_and_track_link_created_validator, + 'send_and_track_link_deleted': EventType._send_and_track_link_deleted_validator, + 'send_and_track_link_updated': EventType._send_and_track_link_updated_validator, + 'send_and_track_link_viewed': EventType._send_and_track_link_viewed_validator, + 'send_and_track_removed_file_and_associated_links': EventType._send_and_track_removed_file_and_associated_links_validator, + 'sf_add_group': EventType._sf_add_group_validator, + 'sf_allow_non_members_to_view_shared_links': EventType._sf_allow_non_members_to_view_shared_links_validator, + 'sf_external_invite_warn': EventType._sf_external_invite_warn_validator, + 'sf_fb_invite': EventType._sf_fb_invite_validator, + 'sf_fb_invite_change_role': EventType._sf_fb_invite_change_role_validator, + 'sf_fb_uninvite': EventType._sf_fb_uninvite_validator, + 'sf_invite_group': EventType._sf_invite_group_validator, + 'sf_team_grant_access': EventType._sf_team_grant_access_validator, + 'sf_team_invite': EventType._sf_team_invite_validator, + 'sf_team_invite_change_role': EventType._sf_team_invite_change_role_validator, + 'sf_team_join': EventType._sf_team_join_validator, + 'sf_team_join_from_oob_link': EventType._sf_team_join_from_oob_link_validator, + 'sf_team_uninvite': EventType._sf_team_uninvite_validator, + 'shared_content_add_invitees': EventType._shared_content_add_invitees_validator, + 'shared_content_add_link_expiry': EventType._shared_content_add_link_expiry_validator, + 'shared_content_add_link_password': EventType._shared_content_add_link_password_validator, + 'shared_content_add_member': EventType._shared_content_add_member_validator, + 'shared_content_change_downloads_policy': EventType._shared_content_change_downloads_policy_validator, + 'shared_content_change_invitee_role': EventType._shared_content_change_invitee_role_validator, + 'shared_content_change_link_audience': EventType._shared_content_change_link_audience_validator, + 'shared_content_change_link_expiry': EventType._shared_content_change_link_expiry_validator, + 'shared_content_change_link_password': EventType._shared_content_change_link_password_validator, + 'shared_content_change_member_role': EventType._shared_content_change_member_role_validator, + 'shared_content_change_viewer_info_policy': EventType._shared_content_change_viewer_info_policy_validator, + 'shared_content_claim_invitation': EventType._shared_content_claim_invitation_validator, + 'shared_content_copy': EventType._shared_content_copy_validator, + 'shared_content_download': EventType._shared_content_download_validator, + 'shared_content_relinquish_membership': EventType._shared_content_relinquish_membership_validator, + 'shared_content_remove_invitees': EventType._shared_content_remove_invitees_validator, + 'shared_content_remove_link_expiry': EventType._shared_content_remove_link_expiry_validator, + 'shared_content_remove_link_password': EventType._shared_content_remove_link_password_validator, + 'shared_content_remove_member': EventType._shared_content_remove_member_validator, + 'shared_content_request_access': EventType._shared_content_request_access_validator, + 'shared_content_restore_invitees': EventType._shared_content_restore_invitees_validator, + 'shared_content_restore_member': EventType._shared_content_restore_member_validator, + 'shared_content_unshare': EventType._shared_content_unshare_validator, + 'shared_content_view': EventType._shared_content_view_validator, + 'shared_folder_change_link_policy': EventType._shared_folder_change_link_policy_validator, + 'shared_folder_change_members_inheritance_policy': EventType._shared_folder_change_members_inheritance_policy_validator, + 'shared_folder_change_members_management_policy': EventType._shared_folder_change_members_management_policy_validator, + 'shared_folder_change_members_policy': EventType._shared_folder_change_members_policy_validator, + 'shared_folder_create': EventType._shared_folder_create_validator, + 'shared_folder_decline_invitation': EventType._shared_folder_decline_invitation_validator, + 'shared_folder_mount': EventType._shared_folder_mount_validator, + 'shared_folder_nest': EventType._shared_folder_nest_validator, + 'shared_folder_transfer_ownership': EventType._shared_folder_transfer_ownership_validator, + 'shared_folder_unmount': EventType._shared_folder_unmount_validator, + 'shared_link_add_expiry': EventType._shared_link_add_expiry_validator, + 'shared_link_change_expiry': EventType._shared_link_change_expiry_validator, + 'shared_link_change_visibility': EventType._shared_link_change_visibility_validator, + 'shared_link_copy': EventType._shared_link_copy_validator, + 'shared_link_create': EventType._shared_link_create_validator, + 'shared_link_disable': EventType._shared_link_disable_validator, + 'shared_link_download': EventType._shared_link_download_validator, + 'shared_link_remove_expiry': EventType._shared_link_remove_expiry_validator, + 'shared_link_remove_visitor': EventType._shared_link_remove_visitor_validator, + 'shared_link_settings_add_expiration': EventType._shared_link_settings_add_expiration_validator, + 'shared_link_settings_add_password': EventType._shared_link_settings_add_password_validator, + 'shared_link_settings_allow_download_disabled': EventType._shared_link_settings_allow_download_disabled_validator, + 'shared_link_settings_allow_download_enabled': EventType._shared_link_settings_allow_download_enabled_validator, + 'shared_link_settings_change_audience': EventType._shared_link_settings_change_audience_validator, + 'shared_link_settings_change_expiration': EventType._shared_link_settings_change_expiration_validator, + 'shared_link_settings_change_password': EventType._shared_link_settings_change_password_validator, + 'shared_link_settings_remove_expiration': EventType._shared_link_settings_remove_expiration_validator, + 'shared_link_settings_remove_password': EventType._shared_link_settings_remove_password_validator, + 'shared_link_share': EventType._shared_link_share_validator, + 'shared_link_view': EventType._shared_link_view_validator, + 'shared_note_opened': EventType._shared_note_opened_validator, + 'shmodel_disable_downloads': EventType._shmodel_disable_downloads_validator, + 'shmodel_enable_downloads': EventType._shmodel_enable_downloads_validator, + 'shmodel_group_share': EventType._shmodel_group_share_validator, + 'showcase_access_granted': EventType._showcase_access_granted_validator, + 'showcase_add_member': EventType._showcase_add_member_validator, + 'showcase_archived': EventType._showcase_archived_validator, + 'showcase_created': EventType._showcase_created_validator, + 'showcase_delete_comment': EventType._showcase_delete_comment_validator, + 'showcase_edited': EventType._showcase_edited_validator, + 'showcase_edit_comment': EventType._showcase_edit_comment_validator, + 'showcase_file_added': EventType._showcase_file_added_validator, + 'showcase_file_download': EventType._showcase_file_download_validator, + 'showcase_file_removed': EventType._showcase_file_removed_validator, + 'showcase_file_view': EventType._showcase_file_view_validator, + 'showcase_permanently_deleted': EventType._showcase_permanently_deleted_validator, + 'showcase_post_comment': EventType._showcase_post_comment_validator, + 'showcase_remove_member': EventType._showcase_remove_member_validator, + 'showcase_renamed': EventType._showcase_renamed_validator, + 'showcase_request_access': EventType._showcase_request_access_validator, + 'showcase_resolve_comment': EventType._showcase_resolve_comment_validator, + 'showcase_restored': EventType._showcase_restored_validator, + 'showcase_trashed': EventType._showcase_trashed_validator, + 'showcase_trashed_deprecated': EventType._showcase_trashed_deprecated_validator, + 'showcase_unresolve_comment': EventType._showcase_unresolve_comment_validator, + 'showcase_untrashed': EventType._showcase_untrashed_validator, + 'showcase_untrashed_deprecated': EventType._showcase_untrashed_deprecated_validator, + 'showcase_view': EventType._showcase_view_validator, + 'sign_signature_request_canceled': EventType._sign_signature_request_canceled_validator, + 'sign_signature_request_completed': EventType._sign_signature_request_completed_validator, + 'sign_signature_request_declined': EventType._sign_signature_request_declined_validator, + 'sign_signature_request_opened': EventType._sign_signature_request_opened_validator, + 'sign_signature_request_reminder_sent': EventType._sign_signature_request_reminder_sent_validator, + 'sign_signature_request_sent': EventType._sign_signature_request_sent_validator, + 'sign_template_created': EventType._sign_template_created_validator, + 'sign_template_shared': EventType._sign_template_shared_validator, + 'risc_security_event': EventType._risc_security_event_validator, + 'sso_add_cert': EventType._sso_add_cert_validator, + 'sso_add_login_url': EventType._sso_add_login_url_validator, + 'sso_add_logout_url': EventType._sso_add_logout_url_validator, + 'sso_change_cert': EventType._sso_change_cert_validator, + 'sso_change_login_url': EventType._sso_change_login_url_validator, + 'sso_change_logout_url': EventType._sso_change_logout_url_validator, + 'sso_change_saml_identity_mode': EventType._sso_change_saml_identity_mode_validator, + 'sso_remove_cert': EventType._sso_remove_cert_validator, + 'sso_remove_login_url': EventType._sso_remove_login_url_validator, + 'sso_remove_logout_url': EventType._sso_remove_logout_url_validator, + 'team_folder_change_status': EventType._team_folder_change_status_validator, + 'team_folder_create': EventType._team_folder_create_validator, + 'team_folder_downgrade': EventType._team_folder_downgrade_validator, + 'team_folder_permanently_delete': EventType._team_folder_permanently_delete_validator, + 'team_folder_rename': EventType._team_folder_rename_validator, + 'team_folder_space_limits_change_caps_type': EventType._team_folder_space_limits_change_caps_type_validator, + 'team_folder_space_limits_change_limit': EventType._team_folder_space_limits_change_limit_validator, + 'team_folder_space_limits_change_notification_target': EventType._team_folder_space_limits_change_notification_target_validator, + 'team_selective_sync_settings_changed': EventType._team_selective_sync_settings_changed_validator, + 'account_capture_change_policy': EventType._account_capture_change_policy_validator, + 'admin_email_reminders_changed': EventType._admin_email_reminders_changed_validator, + 'ai_third_party_sharing_dropbox_base_policy_changed': EventType._ai_third_party_sharing_dropbox_base_policy_changed_validator, + 'allow_download_disabled': EventType._allow_download_disabled_validator, + 'allow_download_enabled': EventType._allow_download_enabled_validator, + 'apple_login_change_policy': EventType._apple_login_change_policy_validator, + 'app_permissions_changed': EventType._app_permissions_changed_validator, + 'camera_uploads_policy_changed': EventType._camera_uploads_policy_changed_validator, + 'capture_team_space_policy_changed': EventType._capture_team_space_policy_changed_validator, + 'capture_transcript_policy_changed': EventType._capture_transcript_policy_changed_validator, + 'classification_change_policy': EventType._classification_change_policy_validator, + 'computer_backup_policy_changed': EventType._computer_backup_policy_changed_validator, + 'content_administration_policy_changed': EventType._content_administration_policy_changed_validator, + 'content_deletion_protection_change_policy': EventType._content_deletion_protection_change_policy_validator, + 'dash_external_sharing_policy_changed': EventType._dash_external_sharing_policy_changed_validator, + 'data_placement_restriction_change_policy': EventType._data_placement_restriction_change_policy_validator, + 'data_placement_restriction_satisfy_policy': EventType._data_placement_restriction_satisfy_policy_validator, + 'device_approvals_add_exception': EventType._device_approvals_add_exception_validator, + 'device_approvals_change_desktop_policy': EventType._device_approvals_change_desktop_policy_validator, + 'device_approvals_change_mobile_policy': EventType._device_approvals_change_mobile_policy_validator, + 'device_approvals_change_overage_action': EventType._device_approvals_change_overage_action_validator, + 'device_approvals_change_unlink_action': EventType._device_approvals_change_unlink_action_validator, + 'device_approvals_remove_exception': EventType._device_approvals_remove_exception_validator, + 'directory_restrictions_add_members': EventType._directory_restrictions_add_members_validator, + 'directory_restrictions_remove_members': EventType._directory_restrictions_remove_members_validator, + 'dropbox_passwords_policy_changed': EventType._dropbox_passwords_policy_changed_validator, + 'email_ingest_policy_changed': EventType._email_ingest_policy_changed_validator, + 'emm_add_exception': EventType._emm_add_exception_validator, + 'emm_change_policy': EventType._emm_change_policy_validator, + 'emm_remove_exception': EventType._emm_remove_exception_validator, + 'extended_version_history_change_policy': EventType._extended_version_history_change_policy_validator, + 'external_drive_backup_policy_changed': EventType._external_drive_backup_policy_changed_validator, + 'file_comments_change_policy': EventType._file_comments_change_policy_validator, + 'file_locking_policy_changed': EventType._file_locking_policy_changed_validator, + 'file_provider_migration_policy_changed': EventType._file_provider_migration_policy_changed_validator, + 'file_requests_change_policy': EventType._file_requests_change_policy_validator, + 'file_requests_emails_enabled': EventType._file_requests_emails_enabled_validator, + 'file_requests_emails_restricted_to_team_only': EventType._file_requests_emails_restricted_to_team_only_validator, + 'file_transfers_policy_changed': EventType._file_transfers_policy_changed_validator, + 'flexible_file_names_policy_changed': EventType._flexible_file_names_policy_changed_validator, + 'folder_link_restriction_policy_changed': EventType._folder_link_restriction_policy_changed_validator, + 'google_sso_change_policy': EventType._google_sso_change_policy_validator, + 'group_user_management_change_policy': EventType._group_user_management_change_policy_validator, + 'integration_policy_changed': EventType._integration_policy_changed_validator, + 'invite_acceptance_email_policy_changed': EventType._invite_acceptance_email_policy_changed_validator, + 'media_hub_adding_people_policy_changed': EventType._media_hub_adding_people_policy_changed_validator, + 'media_hub_download_policy_changed': EventType._media_hub_download_policy_changed_validator, + 'media_hub_link_sharing_policy_changed': EventType._media_hub_link_sharing_policy_changed_validator, + 'member_requests_change_policy': EventType._member_requests_change_policy_validator, + 'member_send_invite_policy_changed': EventType._member_send_invite_policy_changed_validator, + 'member_space_limits_add_exception': EventType._member_space_limits_add_exception_validator, + 'member_space_limits_change_caps_type_policy': EventType._member_space_limits_change_caps_type_policy_validator, + 'member_space_limits_change_policy': EventType._member_space_limits_change_policy_validator, + 'member_space_limits_remove_exception': EventType._member_space_limits_remove_exception_validator, + 'member_suggestions_change_policy': EventType._member_suggestions_change_policy_validator, + 'microsoft_login_change_policy': EventType._microsoft_login_change_policy_validator, + 'microsoft_office_addin_change_policy': EventType._microsoft_office_addin_change_policy_validator, + 'multi_team_identity_policy_changed': EventType._multi_team_identity_policy_changed_validator, + 'network_control_change_policy': EventType._network_control_change_policy_validator, + 'paper_change_deployment_policy': EventType._paper_change_deployment_policy_validator, + 'paper_change_member_link_policy': EventType._paper_change_member_link_policy_validator, + 'paper_change_member_policy': EventType._paper_change_member_policy_validator, + 'paper_change_policy': EventType._paper_change_policy_validator, + 'paper_default_folder_policy_changed': EventType._paper_default_folder_policy_changed_validator, + 'paper_desktop_policy_changed': EventType._paper_desktop_policy_changed_validator, + 'paper_enabled_users_group_addition': EventType._paper_enabled_users_group_addition_validator, + 'paper_enabled_users_group_removal': EventType._paper_enabled_users_group_removal_validator, + 'passkey_login_policy_changed': EventType._passkey_login_policy_changed_validator, + 'password_strength_requirements_change_policy': EventType._password_strength_requirements_change_policy_validator, + 'permanent_delete_change_policy': EventType._permanent_delete_change_policy_validator, + 'previews_ai_policy_changed': EventType._previews_ai_policy_changed_validator, + 'replay_adding_people_policy_changed': EventType._replay_adding_people_policy_changed_validator, + 'replay_sharing_policy_changed': EventType._replay_sharing_policy_changed_validator, + 'reseller_support_change_policy': EventType._reseller_support_change_policy_validator, + 'rewind_policy_changed': EventType._rewind_policy_changed_validator, + 'send_and_track_policy_changed': EventType._send_and_track_policy_changed_validator, + 'send_external_sharing_policy_changed': EventType._send_external_sharing_policy_changed_validator, + 'send_for_signature_policy_changed': EventType._send_for_signature_policy_changed_validator, + 'shared_link_default_permissions_policy_changed': EventType._shared_link_default_permissions_policy_changed_validator, + 'sharing_change_folder_join_policy': EventType._sharing_change_folder_join_policy_validator, + 'sharing_change_link_allow_change_expiration_policy': EventType._sharing_change_link_allow_change_expiration_policy_validator, + 'sharing_change_link_default_expiration_policy': EventType._sharing_change_link_default_expiration_policy_validator, + 'sharing_change_link_enforce_password_policy': EventType._sharing_change_link_enforce_password_policy_validator, + 'sharing_change_link_policy': EventType._sharing_change_link_policy_validator, + 'sharing_change_member_policy': EventType._sharing_change_member_policy_validator, + 'showcase_change_download_policy': EventType._showcase_change_download_policy_validator, + 'showcase_change_enabled_policy': EventType._showcase_change_enabled_policy_validator, + 'showcase_change_external_sharing_policy': EventType._showcase_change_external_sharing_policy_validator, + 'sign_external_sharing_policy_changed': EventType._sign_external_sharing_policy_changed_validator, + 'sign_template_creation_permission_changed': EventType._sign_template_creation_permission_changed_validator, + 'smarter_smart_sync_policy_changed': EventType._smarter_smart_sync_policy_changed_validator, + 'smart_sync_change_policy': EventType._smart_sync_change_policy_validator, + 'smart_sync_not_opt_out': EventType._smart_sync_not_opt_out_validator, + 'smart_sync_opt_out': EventType._smart_sync_opt_out_validator, + 'sso_change_policy': EventType._sso_change_policy_validator, + 'stack_cross_team_access_policy_changed': EventType._stack_cross_team_access_policy_changed_validator, + 'team_branding_policy_changed': EventType._team_branding_policy_changed_validator, + 'team_extensions_policy_changed': EventType._team_extensions_policy_changed_validator, + 'team_member_storage_request_policy_changed': EventType._team_member_storage_request_policy_changed_validator, + 'team_selective_sync_policy_changed': EventType._team_selective_sync_policy_changed_validator, + 'team_sharing_whitelist_subjects_changed': EventType._team_sharing_whitelist_subjects_changed_validator, + 'tfa_add_exception': EventType._tfa_add_exception_validator, + 'tfa_change_policy': EventType._tfa_change_policy_validator, + 'tfa_remove_exception': EventType._tfa_remove_exception_validator, + 'top_level_content_policy_changed': EventType._top_level_content_policy_changed_validator, + 'two_account_change_policy': EventType._two_account_change_policy_validator, + 'viewer_info_policy_changed': EventType._viewer_info_policy_changed_validator, + 'watermarking_policy_changed': EventType._watermarking_policy_changed_validator, + 'web_sessions_change_active_session_limit': EventType._web_sessions_change_active_session_limit_validator, + 'web_sessions_change_fixed_length_policy': EventType._web_sessions_change_fixed_length_policy_validator, + 'web_sessions_change_idle_length_policy': EventType._web_sessions_change_idle_length_policy_validator, + 'data_residency_migration_request_successful': EventType._data_residency_migration_request_successful_validator, + 'data_residency_migration_request_unsuccessful': EventType._data_residency_migration_request_unsuccessful_validator, + 'team_merge_from': EventType._team_merge_from_validator, + 'team_merge_to': EventType._team_merge_to_validator, + 'team_profile_add_background': EventType._team_profile_add_background_validator, + 'team_profile_add_logo': EventType._team_profile_add_logo_validator, + 'team_profile_change_background': EventType._team_profile_change_background_validator, + 'team_profile_change_default_language': EventType._team_profile_change_default_language_validator, + 'team_profile_change_logo': EventType._team_profile_change_logo_validator, + 'team_profile_change_name': EventType._team_profile_change_name_validator, + 'team_profile_remove_background': EventType._team_profile_remove_background_validator, + 'team_profile_remove_logo': EventType._team_profile_remove_logo_validator, + 'passkey_add': EventType._passkey_add_validator, + 'passkey_remove': EventType._passkey_remove_validator, + 'tfa_add_backup_phone': EventType._tfa_add_backup_phone_validator, + 'tfa_add_security_key': EventType._tfa_add_security_key_validator, + 'tfa_change_backup_phone': EventType._tfa_change_backup_phone_validator, + 'tfa_change_status': EventType._tfa_change_status_validator, + 'tfa_remove_backup_phone': EventType._tfa_remove_backup_phone_validator, + 'tfa_remove_security_key': EventType._tfa_remove_security_key_validator, + 'tfa_reset': EventType._tfa_reset_validator, + 'changed_enterprise_admin_role': EventType._changed_enterprise_admin_role_validator, + 'changed_enterprise_connected_team_status': EventType._changed_enterprise_connected_team_status_validator, + 'ended_enterprise_admin_session': EventType._ended_enterprise_admin_session_validator, + 'ended_enterprise_admin_session_deprecated': EventType._ended_enterprise_admin_session_deprecated_validator, + 'enterprise_settings_locking': EventType._enterprise_settings_locking_validator, + 'guest_admin_change_status': EventType._guest_admin_change_status_validator, + 'started_enterprise_admin_session': EventType._started_enterprise_admin_session_validator, + 'team_merge_request_accepted': EventType._team_merge_request_accepted_validator, + 'team_merge_request_accepted_shown_to_primary_team': EventType._team_merge_request_accepted_shown_to_primary_team_validator, + 'team_merge_request_accepted_shown_to_secondary_team': EventType._team_merge_request_accepted_shown_to_secondary_team_validator, + 'team_merge_request_auto_canceled': EventType._team_merge_request_auto_canceled_validator, + 'team_merge_request_canceled': EventType._team_merge_request_canceled_validator, + 'team_merge_request_canceled_shown_to_primary_team': EventType._team_merge_request_canceled_shown_to_primary_team_validator, + 'team_merge_request_canceled_shown_to_secondary_team': EventType._team_merge_request_canceled_shown_to_secondary_team_validator, + 'team_merge_request_expired': EventType._team_merge_request_expired_validator, + 'team_merge_request_expired_shown_to_primary_team': EventType._team_merge_request_expired_shown_to_primary_team_validator, + 'team_merge_request_expired_shown_to_secondary_team': EventType._team_merge_request_expired_shown_to_secondary_team_validator, + 'team_merge_request_rejected_shown_to_primary_team': EventType._team_merge_request_rejected_shown_to_primary_team_validator, + 'team_merge_request_rejected_shown_to_secondary_team': EventType._team_merge_request_rejected_shown_to_secondary_team_validator, + 'team_merge_request_reminder': EventType._team_merge_request_reminder_validator, + 'team_merge_request_reminder_shown_to_primary_team': EventType._team_merge_request_reminder_shown_to_primary_team_validator, + 'team_merge_request_reminder_shown_to_secondary_team': EventType._team_merge_request_reminder_shown_to_secondary_team_validator, + 'team_merge_request_revoked': EventType._team_merge_request_revoked_validator, + 'team_merge_request_sent_shown_to_primary_team': EventType._team_merge_request_sent_shown_to_primary_team_validator, + 'team_merge_request_sent_shown_to_secondary_team': EventType._team_merge_request_sent_shown_to_secondary_team_validator, + 'other': EventType._other_validator, } -EventType.other = EventType("other") +EventType.other = EventType('other') EventTypeArg._admin_alerting_alert_state_changed_validator = bv.Void() EventTypeArg._admin_alerting_changed_alert_config_validator = bv.Void() @@ -105466,1557 +99779,1276 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): EventTypeArg._team_merge_request_sent_shown_to_secondary_team_validator = bv.Void() EventTypeArg._other_validator = bv.Void() EventTypeArg._tagmap = { - "admin_alerting_alert_state_changed": EventTypeArg._admin_alerting_alert_state_changed_validator, - "admin_alerting_changed_alert_config": EventTypeArg._admin_alerting_changed_alert_config_validator, - "admin_alerting_triggered_alert": EventTypeArg._admin_alerting_triggered_alert_validator, - "ransomware_restore_process_completed": EventTypeArg._ransomware_restore_process_completed_validator, - "ransomware_restore_process_started": EventTypeArg._ransomware_restore_process_started_validator, - "app_blocked_by_permissions": EventTypeArg._app_blocked_by_permissions_validator, - "app_link_team": EventTypeArg._app_link_team_validator, - "app_link_user": EventTypeArg._app_link_user_validator, - "app_unlink_team": EventTypeArg._app_unlink_team_validator, - "app_unlink_user": EventTypeArg._app_unlink_user_validator, - "integration_connected": EventTypeArg._integration_connected_validator, - "integration_disconnected": EventTypeArg._integration_disconnected_validator, - "file_add_comment": EventTypeArg._file_add_comment_validator, - "file_change_comment_subscription": EventTypeArg._file_change_comment_subscription_validator, - "file_delete_comment": EventTypeArg._file_delete_comment_validator, - "file_edit_comment": EventTypeArg._file_edit_comment_validator, - "file_like_comment": EventTypeArg._file_like_comment_validator, - "file_resolve_comment": EventTypeArg._file_resolve_comment_validator, - "file_unlike_comment": EventTypeArg._file_unlike_comment_validator, - "file_unresolve_comment": EventTypeArg._file_unresolve_comment_validator, - "dash_added_comment_to_stack": EventTypeArg._dash_added_comment_to_stack_validator, - "dash_added_connector": EventTypeArg._dash_added_connector_validator, - "dash_added_link_to_stack": EventTypeArg._dash_added_link_to_stack_validator, - "dash_added_team_email_domain_allowlist": EventTypeArg._dash_added_team_email_domain_allowlist_validator, - "dash_admin_added_org_wide_connector": EventTypeArg._dash_admin_added_org_wide_connector_validator, - "dash_admin_disabled_connector": EventTypeArg._dash_admin_disabled_connector_validator, - "dash_admin_enabled_connector": EventTypeArg._dash_admin_enabled_connector_validator, - "dash_admin_removed_org_wide_connector": EventTypeArg._dash_admin_removed_org_wide_connector_validator, - "dash_archived_stack": EventTypeArg._dash_archived_stack_validator, - "dash_changed_audience_of_shared_link_to_stack": EventTypeArg._dash_changed_audience_of_shared_link_to_stack_validator, - "dash_cloned_stack": EventTypeArg._dash_cloned_stack_validator, - "dash_connector_tools_call": EventTypeArg._dash_connector_tools_call_validator, - "dash_created_stack": EventTypeArg._dash_created_stack_validator, - "dash_deleted_comment_from_stack": EventTypeArg._dash_deleted_comment_from_stack_validator, - "dash_deleted_stack": EventTypeArg._dash_deleted_stack_validator, - "dash_edited_comment_in_stack": EventTypeArg._dash_edited_comment_in_stack_validator, - "dash_external_user_opened_stack": EventTypeArg._dash_external_user_opened_stack_validator, - "dash_first_launched_desktop": EventTypeArg._dash_first_launched_desktop_validator, - "dash_first_launched_extension": EventTypeArg._dash_first_launched_extension_validator, - "dash_first_launched_web_start_page": EventTypeArg._dash_first_launched_web_start_page_validator, - "dash_opened_shared_link_to_stack": EventTypeArg._dash_opened_shared_link_to_stack_validator, - "dash_opened_stack": EventTypeArg._dash_opened_stack_validator, - "dash_preview_opt_out_status_changed": EventTypeArg._dash_preview_opt_out_status_changed_validator, - "dash_removed_connector": EventTypeArg._dash_removed_connector_validator, - "dash_removed_link_from_stack": EventTypeArg._dash_removed_link_from_stack_validator, - "dash_removed_shared_link_to_stack": EventTypeArg._dash_removed_shared_link_to_stack_validator, - "dash_removed_team_email_domain_allowlist": EventTypeArg._dash_removed_team_email_domain_allowlist_validator, - "dash_renamed_stack": EventTypeArg._dash_renamed_stack_validator, - "dash_shared_link_to_stack": EventTypeArg._dash_shared_link_to_stack_validator, - "dash_unarchived_stack": EventTypeArg._dash_unarchived_stack_validator, - "dash_viewed_company_stack": EventTypeArg._dash_viewed_company_stack_validator, - "dash_viewed_external_ai_activity_report": EventTypeArg._dash_viewed_external_ai_activity_report_validator, - "governance_policy_add_folders": EventTypeArg._governance_policy_add_folders_validator, - "governance_policy_add_folder_failed": EventTypeArg._governance_policy_add_folder_failed_validator, - "governance_policy_content_disposed": EventTypeArg._governance_policy_content_disposed_validator, - "governance_policy_create": EventTypeArg._governance_policy_create_validator, - "governance_policy_delete": EventTypeArg._governance_policy_delete_validator, - "governance_policy_edit_details": EventTypeArg._governance_policy_edit_details_validator, - "governance_policy_edit_duration": EventTypeArg._governance_policy_edit_duration_validator, - "governance_policy_export_created": EventTypeArg._governance_policy_export_created_validator, - "governance_policy_export_removed": EventTypeArg._governance_policy_export_removed_validator, - "governance_policy_remove_folders": EventTypeArg._governance_policy_remove_folders_validator, - "governance_policy_report_created": EventTypeArg._governance_policy_report_created_validator, - "governance_policy_zip_part_downloaded": EventTypeArg._governance_policy_zip_part_downloaded_validator, - "legal_holds_activate_a_hold": EventTypeArg._legal_holds_activate_a_hold_validator, - "legal_holds_add_members": EventTypeArg._legal_holds_add_members_validator, - "legal_holds_change_hold_details": EventTypeArg._legal_holds_change_hold_details_validator, - "legal_holds_change_hold_name": EventTypeArg._legal_holds_change_hold_name_validator, - "legal_holds_export_a_hold": EventTypeArg._legal_holds_export_a_hold_validator, - "legal_holds_export_cancelled": EventTypeArg._legal_holds_export_cancelled_validator, - "legal_holds_export_downloaded": EventTypeArg._legal_holds_export_downloaded_validator, - "legal_holds_export_removed": EventTypeArg._legal_holds_export_removed_validator, - "legal_holds_release_a_hold": EventTypeArg._legal_holds_release_a_hold_validator, - "legal_holds_remove_members": EventTypeArg._legal_holds_remove_members_validator, - "legal_holds_report_a_hold": EventTypeArg._legal_holds_report_a_hold_validator, - "device_change_ip_desktop": EventTypeArg._device_change_ip_desktop_validator, - "device_change_ip_mobile": EventTypeArg._device_change_ip_mobile_validator, - "device_change_ip_web": EventTypeArg._device_change_ip_web_validator, - "device_delete_on_unlink_fail": EventTypeArg._device_delete_on_unlink_fail_validator, - "device_delete_on_unlink_success": EventTypeArg._device_delete_on_unlink_success_validator, - "device_link_fail": EventTypeArg._device_link_fail_validator, - "device_link_success": EventTypeArg._device_link_success_validator, - "device_management_disabled": EventTypeArg._device_management_disabled_validator, - "device_management_enabled": EventTypeArg._device_management_enabled_validator, - "device_sync_backup_status_changed": EventTypeArg._device_sync_backup_status_changed_validator, - "device_unlink": EventTypeArg._device_unlink_validator, - "dropbox_passwords_exported": EventTypeArg._dropbox_passwords_exported_validator, - "dropbox_passwords_new_device_enrolled": EventTypeArg._dropbox_passwords_new_device_enrolled_validator, - "emm_refresh_auth_token": EventTypeArg._emm_refresh_auth_token_validator, - "external_drive_backup_eligibility_status_checked": EventTypeArg._external_drive_backup_eligibility_status_checked_validator, - "external_drive_backup_status_changed": EventTypeArg._external_drive_backup_status_changed_validator, - "account_capture_change_availability": EventTypeArg._account_capture_change_availability_validator, - "account_capture_migrate_account": EventTypeArg._account_capture_migrate_account_validator, - "account_capture_notification_emails_sent": EventTypeArg._account_capture_notification_emails_sent_validator, - "account_capture_relinquish_account": EventTypeArg._account_capture_relinquish_account_validator, - "disabled_domain_invites": EventTypeArg._disabled_domain_invites_validator, - "domain_invites_approve_request_to_join_team": EventTypeArg._domain_invites_approve_request_to_join_team_validator, - "domain_invites_decline_request_to_join_team": EventTypeArg._domain_invites_decline_request_to_join_team_validator, - "domain_invites_email_existing_users": EventTypeArg._domain_invites_email_existing_users_validator, - "domain_invites_request_to_join_team": EventTypeArg._domain_invites_request_to_join_team_validator, - "domain_invites_set_invite_new_user_pref_to_no": EventTypeArg._domain_invites_set_invite_new_user_pref_to_no_validator, - "domain_invites_set_invite_new_user_pref_to_yes": EventTypeArg._domain_invites_set_invite_new_user_pref_to_yes_validator, - "domain_verification_add_domain_fail": EventTypeArg._domain_verification_add_domain_fail_validator, - "domain_verification_add_domain_success": EventTypeArg._domain_verification_add_domain_success_validator, - "domain_verification_remove_domain": EventTypeArg._domain_verification_remove_domain_validator, - "enabled_domain_invites": EventTypeArg._enabled_domain_invites_validator, - "encrypted_folder_cancel_team_key_rotation": EventTypeArg._encrypted_folder_cancel_team_key_rotation_validator, - "encrypted_folder_enroll_backup_key": EventTypeArg._encrypted_folder_enroll_backup_key_validator, - "encrypted_folder_enroll_client": EventTypeArg._encrypted_folder_enroll_client_validator, - "encrypted_folder_enroll_team": EventTypeArg._encrypted_folder_enroll_team_validator, - "encrypted_folder_finish_team_unenrollment": EventTypeArg._encrypted_folder_finish_team_unenrollment_validator, - "encrypted_folder_init_team_key_rotation": EventTypeArg._encrypted_folder_init_team_key_rotation_validator, - "encrypted_folder_init_team_unenrollment": EventTypeArg._encrypted_folder_init_team_unenrollment_validator, - "encrypted_folder_remove_backup_key": EventTypeArg._encrypted_folder_remove_backup_key_validator, - "encrypted_folder_rotate_team_key": EventTypeArg._encrypted_folder_rotate_team_key_validator, - "encrypted_folder_unenroll_client": EventTypeArg._encrypted_folder_unenroll_client_validator, - "team_encryption_key_activate_key": EventTypeArg._team_encryption_key_activate_key_validator, - "team_encryption_key_cancel_key_deletion": EventTypeArg._team_encryption_key_cancel_key_deletion_validator, - "team_encryption_key_create_key": EventTypeArg._team_encryption_key_create_key_validator, - "team_encryption_key_deactivate_key": EventTypeArg._team_encryption_key_deactivate_key_validator, - "team_encryption_key_delete_key": EventTypeArg._team_encryption_key_delete_key_validator, - "team_encryption_key_disable_key": EventTypeArg._team_encryption_key_disable_key_validator, - "team_encryption_key_enable_key": EventTypeArg._team_encryption_key_enable_key_validator, - "team_encryption_key_rotate_key": EventTypeArg._team_encryption_key_rotate_key_validator, - "team_encryption_key_schedule_key_deletion": EventTypeArg._team_encryption_key_schedule_key_deletion_validator, - "apply_naming_convention": EventTypeArg._apply_naming_convention_validator, - "create_folder": EventTypeArg._create_folder_validator, - "file_add": EventTypeArg._file_add_validator, - "file_add_from_automation": EventTypeArg._file_add_from_automation_validator, - "file_copy": EventTypeArg._file_copy_validator, - "file_delete": EventTypeArg._file_delete_validator, - "file_download": EventTypeArg._file_download_validator, - "file_edit": EventTypeArg._file_edit_validator, - "file_get_copy_reference": EventTypeArg._file_get_copy_reference_validator, - "file_locking_lock_status_changed": EventTypeArg._file_locking_lock_status_changed_validator, - "file_move": EventTypeArg._file_move_validator, - "file_permanently_delete": EventTypeArg._file_permanently_delete_validator, - "file_preview": EventTypeArg._file_preview_validator, - "file_rename": EventTypeArg._file_rename_validator, - "file_restore": EventTypeArg._file_restore_validator, - "file_revert": EventTypeArg._file_revert_validator, - "file_rollback_changes": EventTypeArg._file_rollback_changes_validator, - "file_save_copy_reference": EventTypeArg._file_save_copy_reference_validator, - "folder_overview_description_changed": EventTypeArg._folder_overview_description_changed_validator, - "folder_overview_item_pinned": EventTypeArg._folder_overview_item_pinned_validator, - "folder_overview_item_unpinned": EventTypeArg._folder_overview_item_unpinned_validator, - "media_hub_file_downloaded": EventTypeArg._media_hub_file_downloaded_validator, - "object_label_added": EventTypeArg._object_label_added_validator, - "object_label_removed": EventTypeArg._object_label_removed_validator, - "object_label_updated_value": EventTypeArg._object_label_updated_value_validator, - "organize_folder_with_tidy": EventTypeArg._organize_folder_with_tidy_validator, - "replay_file_delete": EventTypeArg._replay_file_delete_validator, - "replay_file_downloaded": EventTypeArg._replay_file_downloaded_validator, - "replay_team_project_created": EventTypeArg._replay_team_project_created_validator, - "rewind_folder": EventTypeArg._rewind_folder_validator, - "undo_naming_convention": EventTypeArg._undo_naming_convention_validator, - "undo_organize_folder_with_tidy": EventTypeArg._undo_organize_folder_with_tidy_validator, - "user_tags_added": EventTypeArg._user_tags_added_validator, - "user_tags_removed": EventTypeArg._user_tags_removed_validator, - "email_ingest_receive_file": EventTypeArg._email_ingest_receive_file_validator, - "file_request_auto_close": EventTypeArg._file_request_auto_close_validator, - "file_request_change": EventTypeArg._file_request_change_validator, - "file_request_close": EventTypeArg._file_request_close_validator, - "file_request_create": EventTypeArg._file_request_create_validator, - "file_request_delete": EventTypeArg._file_request_delete_validator, - "file_request_receive_file": EventTypeArg._file_request_receive_file_validator, - "group_add_external_id": EventTypeArg._group_add_external_id_validator, - "group_add_member": EventTypeArg._group_add_member_validator, - "group_change_external_id": EventTypeArg._group_change_external_id_validator, - "group_change_management_type": EventTypeArg._group_change_management_type_validator, - "group_change_member_role": EventTypeArg._group_change_member_role_validator, - "group_create": EventTypeArg._group_create_validator, - "group_delete": EventTypeArg._group_delete_validator, - "group_description_updated": EventTypeArg._group_description_updated_validator, - "group_external_sharing_setting_override_changed": EventTypeArg._group_external_sharing_setting_override_changed_validator, - "group_join_policy_updated": EventTypeArg._group_join_policy_updated_validator, - "group_moved": EventTypeArg._group_moved_validator, - "group_remove_external_id": EventTypeArg._group_remove_external_id_validator, - "group_remove_member": EventTypeArg._group_remove_member_validator, - "group_rename": EventTypeArg._group_rename_validator, - "account_lock_or_unlocked": EventTypeArg._account_lock_or_unlocked_validator, - "emm_error": EventTypeArg._emm_error_validator, - "guest_admin_signed_in_via_trusted_teams": EventTypeArg._guest_admin_signed_in_via_trusted_teams_validator, - "guest_admin_signed_out_via_trusted_teams": EventTypeArg._guest_admin_signed_out_via_trusted_teams_validator, - "login_fail": EventTypeArg._login_fail_validator, - "login_success": EventTypeArg._login_success_validator, - "logout": EventTypeArg._logout_validator, - "reseller_support_session_end": EventTypeArg._reseller_support_session_end_validator, - "reseller_support_session_start": EventTypeArg._reseller_support_session_start_validator, - "sign_in_as_session_end": EventTypeArg._sign_in_as_session_end_validator, - "sign_in_as_session_start": EventTypeArg._sign_in_as_session_start_validator, - "sso_error": EventTypeArg._sso_error_validator, - "addon_assigned": EventTypeArg._addon_assigned_validator, - "addon_removed": EventTypeArg._addon_removed_validator, - "backup_admin_invitation_sent": EventTypeArg._backup_admin_invitation_sent_validator, - "backup_invitation_opened": EventTypeArg._backup_invitation_opened_validator, - "create_team_invite_link": EventTypeArg._create_team_invite_link_validator, - "delete_team_invite_link": EventTypeArg._delete_team_invite_link_validator, - "member_add_external_id": EventTypeArg._member_add_external_id_validator, - "member_add_name": EventTypeArg._member_add_name_validator, - "member_change_admin_role": EventTypeArg._member_change_admin_role_validator, - "member_change_email": EventTypeArg._member_change_email_validator, - "member_change_external_id": EventTypeArg._member_change_external_id_validator, - "member_change_membership_type": EventTypeArg._member_change_membership_type_validator, - "member_change_name": EventTypeArg._member_change_name_validator, - "member_change_reseller_role": EventTypeArg._member_change_reseller_role_validator, - "member_change_status": EventTypeArg._member_change_status_validator, - "member_delete_manual_contacts": EventTypeArg._member_delete_manual_contacts_validator, - "member_delete_profile_photo": EventTypeArg._member_delete_profile_photo_validator, - "member_permanently_delete_account_contents": EventTypeArg._member_permanently_delete_account_contents_validator, - "member_remove_external_id": EventTypeArg._member_remove_external_id_validator, - "member_set_profile_photo": EventTypeArg._member_set_profile_photo_validator, - "member_space_limits_add_custom_quota": EventTypeArg._member_space_limits_add_custom_quota_validator, - "member_space_limits_change_custom_quota": EventTypeArg._member_space_limits_change_custom_quota_validator, - "member_space_limits_change_status": EventTypeArg._member_space_limits_change_status_validator, - "member_space_limits_remove_custom_quota": EventTypeArg._member_space_limits_remove_custom_quota_validator, - "member_suggest": EventTypeArg._member_suggest_validator, - "member_transfer_account_contents": EventTypeArg._member_transfer_account_contents_validator, - "pending_secondary_email_added": EventTypeArg._pending_secondary_email_added_validator, - "product_assigned_to_member": EventTypeArg._product_assigned_to_member_validator, - "product_removed_from_member": EventTypeArg._product_removed_from_member_validator, - "secondary_email_deleted": EventTypeArg._secondary_email_deleted_validator, - "secondary_email_verified": EventTypeArg._secondary_email_verified_validator, - "secondary_mails_policy_changed": EventTypeArg._secondary_mails_policy_changed_validator, - "binder_add_page": EventTypeArg._binder_add_page_validator, - "binder_add_section": EventTypeArg._binder_add_section_validator, - "binder_remove_page": EventTypeArg._binder_remove_page_validator, - "binder_remove_section": EventTypeArg._binder_remove_section_validator, - "binder_rename_page": EventTypeArg._binder_rename_page_validator, - "binder_rename_section": EventTypeArg._binder_rename_section_validator, - "binder_reorder_page": EventTypeArg._binder_reorder_page_validator, - "binder_reorder_section": EventTypeArg._binder_reorder_section_validator, - "paper_content_add_member": EventTypeArg._paper_content_add_member_validator, - "paper_content_add_to_folder": EventTypeArg._paper_content_add_to_folder_validator, - "paper_content_archive": EventTypeArg._paper_content_archive_validator, - "paper_content_create": EventTypeArg._paper_content_create_validator, - "paper_content_permanently_delete": EventTypeArg._paper_content_permanently_delete_validator, - "paper_content_remove_from_folder": EventTypeArg._paper_content_remove_from_folder_validator, - "paper_content_remove_member": EventTypeArg._paper_content_remove_member_validator, - "paper_content_rename": EventTypeArg._paper_content_rename_validator, - "paper_content_restore": EventTypeArg._paper_content_restore_validator, - "paper_doc_add_comment": EventTypeArg._paper_doc_add_comment_validator, - "paper_doc_change_member_role": EventTypeArg._paper_doc_change_member_role_validator, - "paper_doc_change_sharing_policy": EventTypeArg._paper_doc_change_sharing_policy_validator, - "paper_doc_change_subscription": EventTypeArg._paper_doc_change_subscription_validator, - "paper_doc_deleted": EventTypeArg._paper_doc_deleted_validator, - "paper_doc_delete_comment": EventTypeArg._paper_doc_delete_comment_validator, - "paper_doc_download": EventTypeArg._paper_doc_download_validator, - "paper_doc_edit": EventTypeArg._paper_doc_edit_validator, - "paper_doc_edit_comment": EventTypeArg._paper_doc_edit_comment_validator, - "paper_doc_followed": EventTypeArg._paper_doc_followed_validator, - "paper_doc_mention": EventTypeArg._paper_doc_mention_validator, - "paper_doc_ownership_changed": EventTypeArg._paper_doc_ownership_changed_validator, - "paper_doc_request_access": EventTypeArg._paper_doc_request_access_validator, - "paper_doc_resolve_comment": EventTypeArg._paper_doc_resolve_comment_validator, - "paper_doc_revert": EventTypeArg._paper_doc_revert_validator, - "paper_doc_slack_share": EventTypeArg._paper_doc_slack_share_validator, - "paper_doc_team_invite": EventTypeArg._paper_doc_team_invite_validator, - "paper_doc_trashed": EventTypeArg._paper_doc_trashed_validator, - "paper_doc_unresolve_comment": EventTypeArg._paper_doc_unresolve_comment_validator, - "paper_doc_untrashed": EventTypeArg._paper_doc_untrashed_validator, - "paper_doc_view": EventTypeArg._paper_doc_view_validator, - "paper_external_view_allow": EventTypeArg._paper_external_view_allow_validator, - "paper_external_view_default_team": EventTypeArg._paper_external_view_default_team_validator, - "paper_external_view_forbid": EventTypeArg._paper_external_view_forbid_validator, - "paper_folder_change_subscription": EventTypeArg._paper_folder_change_subscription_validator, - "paper_folder_deleted": EventTypeArg._paper_folder_deleted_validator, - "paper_folder_followed": EventTypeArg._paper_folder_followed_validator, - "paper_folder_team_invite": EventTypeArg._paper_folder_team_invite_validator, - "paper_published_link_change_permission": EventTypeArg._paper_published_link_change_permission_validator, - "paper_published_link_create": EventTypeArg._paper_published_link_create_validator, - "paper_published_link_disabled": EventTypeArg._paper_published_link_disabled_validator, - "paper_published_link_view": EventTypeArg._paper_published_link_view_validator, - "password_change": EventTypeArg._password_change_validator, - "password_reset": EventTypeArg._password_reset_validator, - "password_reset_all": EventTypeArg._password_reset_all_validator, - "protect_internal_domains_changed": EventTypeArg._protect_internal_domains_changed_validator, - "classification_create_report": EventTypeArg._classification_create_report_validator, - "classification_create_report_fail": EventTypeArg._classification_create_report_fail_validator, - "emm_create_exceptions_report": EventTypeArg._emm_create_exceptions_report_validator, - "emm_create_usage_report": EventTypeArg._emm_create_usage_report_validator, - "export_members_report": EventTypeArg._export_members_report_validator, - "export_members_report_fail": EventTypeArg._export_members_report_fail_validator, - "external_sharing_create_report": EventTypeArg._external_sharing_create_report_validator, - "external_sharing_report_failed": EventTypeArg._external_sharing_report_failed_validator, - "member_access_details_create_report": EventTypeArg._member_access_details_create_report_validator, - "member_access_details_create_report_failed": EventTypeArg._member_access_details_create_report_failed_validator, - "no_expiration_link_gen_create_report": EventTypeArg._no_expiration_link_gen_create_report_validator, - "no_expiration_link_gen_report_failed": EventTypeArg._no_expiration_link_gen_report_failed_validator, - "no_password_link_gen_create_report": EventTypeArg._no_password_link_gen_create_report_validator, - "no_password_link_gen_report_failed": EventTypeArg._no_password_link_gen_report_failed_validator, - "no_password_link_view_create_report": EventTypeArg._no_password_link_view_create_report_validator, - "no_password_link_view_report_failed": EventTypeArg._no_password_link_view_report_failed_validator, - "outdated_link_view_create_report": EventTypeArg._outdated_link_view_create_report_validator, - "outdated_link_view_report_failed": EventTypeArg._outdated_link_view_report_failed_validator, - "paper_admin_export_start": EventTypeArg._paper_admin_export_start_validator, - "ransomware_alert_create_report": EventTypeArg._ransomware_alert_create_report_validator, - "ransomware_alert_create_report_failed": EventTypeArg._ransomware_alert_create_report_failed_validator, - "shared_folders_create_report": EventTypeArg._shared_folders_create_report_validator, - "shared_folders_create_report_failed": EventTypeArg._shared_folders_create_report_failed_validator, - "smart_sync_create_admin_privilege_report": EventTypeArg._smart_sync_create_admin_privilege_report_validator, - "team_activity_create_report": EventTypeArg._team_activity_create_report_validator, - "team_activity_create_report_fail": EventTypeArg._team_activity_create_report_fail_validator, - "team_folders_create_report": EventTypeArg._team_folders_create_report_validator, - "team_folders_create_report_failed": EventTypeArg._team_folders_create_report_failed_validator, - "team_storage_create_report": EventTypeArg._team_storage_create_report_validator, - "team_storage_create_report_failed": EventTypeArg._team_storage_create_report_failed_validator, - "collection_share": EventTypeArg._collection_share_validator, - "file_transfers_file_add": EventTypeArg._file_transfers_file_add_validator, - "file_transfers_transfer_delete": EventTypeArg._file_transfers_transfer_delete_validator, - "file_transfers_transfer_download": EventTypeArg._file_transfers_transfer_download_validator, - "file_transfers_transfer_send": EventTypeArg._file_transfers_transfer_send_validator, - "file_transfers_transfer_view": EventTypeArg._file_transfers_transfer_view_validator, - "media_hub_project_team_add": EventTypeArg._media_hub_project_team_add_validator, - "media_hub_project_team_delete": EventTypeArg._media_hub_project_team_delete_validator, - "media_hub_project_team_role_changed": EventTypeArg._media_hub_project_team_role_changed_validator, - "media_hub_shared_link_audience_changed": EventTypeArg._media_hub_shared_link_audience_changed_validator, - "media_hub_shared_link_created": EventTypeArg._media_hub_shared_link_created_validator, - "media_hub_shared_link_download_setting_changed": EventTypeArg._media_hub_shared_link_download_setting_changed_validator, - "media_hub_shared_link_revoked": EventTypeArg._media_hub_shared_link_revoked_validator, - "note_acl_invite_only": EventTypeArg._note_acl_invite_only_validator, - "note_acl_link": EventTypeArg._note_acl_link_validator, - "note_acl_team_link": EventTypeArg._note_acl_team_link_validator, - "note_shared": EventTypeArg._note_shared_validator, - "note_share_receive": EventTypeArg._note_share_receive_validator, - "open_note_shared": EventTypeArg._open_note_shared_validator, - "replay_file_shared_link_created": EventTypeArg._replay_file_shared_link_created_validator, - "replay_file_shared_link_modified": EventTypeArg._replay_file_shared_link_modified_validator, - "replay_project_team_add": EventTypeArg._replay_project_team_add_validator, - "replay_project_team_delete": EventTypeArg._replay_project_team_delete_validator, - "send_and_track_file_added": EventTypeArg._send_and_track_file_added_validator, - "send_and_track_file_renamed": EventTypeArg._send_and_track_file_renamed_validator, - "send_and_track_file_updated": EventTypeArg._send_and_track_file_updated_validator, - "send_and_track_link_created": EventTypeArg._send_and_track_link_created_validator, - "send_and_track_link_deleted": EventTypeArg._send_and_track_link_deleted_validator, - "send_and_track_link_updated": EventTypeArg._send_and_track_link_updated_validator, - "send_and_track_link_viewed": EventTypeArg._send_and_track_link_viewed_validator, - "send_and_track_removed_file_and_associated_links": EventTypeArg._send_and_track_removed_file_and_associated_links_validator, - "sf_add_group": EventTypeArg._sf_add_group_validator, - "sf_allow_non_members_to_view_shared_links": EventTypeArg._sf_allow_non_members_to_view_shared_links_validator, - "sf_external_invite_warn": EventTypeArg._sf_external_invite_warn_validator, - "sf_fb_invite": EventTypeArg._sf_fb_invite_validator, - "sf_fb_invite_change_role": EventTypeArg._sf_fb_invite_change_role_validator, - "sf_fb_uninvite": EventTypeArg._sf_fb_uninvite_validator, - "sf_invite_group": EventTypeArg._sf_invite_group_validator, - "sf_team_grant_access": EventTypeArg._sf_team_grant_access_validator, - "sf_team_invite": EventTypeArg._sf_team_invite_validator, - "sf_team_invite_change_role": EventTypeArg._sf_team_invite_change_role_validator, - "sf_team_join": EventTypeArg._sf_team_join_validator, - "sf_team_join_from_oob_link": EventTypeArg._sf_team_join_from_oob_link_validator, - "sf_team_uninvite": EventTypeArg._sf_team_uninvite_validator, - "shared_content_add_invitees": EventTypeArg._shared_content_add_invitees_validator, - "shared_content_add_link_expiry": EventTypeArg._shared_content_add_link_expiry_validator, - "shared_content_add_link_password": EventTypeArg._shared_content_add_link_password_validator, - "shared_content_add_member": EventTypeArg._shared_content_add_member_validator, - "shared_content_change_downloads_policy": EventTypeArg._shared_content_change_downloads_policy_validator, - "shared_content_change_invitee_role": EventTypeArg._shared_content_change_invitee_role_validator, - "shared_content_change_link_audience": EventTypeArg._shared_content_change_link_audience_validator, - "shared_content_change_link_expiry": EventTypeArg._shared_content_change_link_expiry_validator, - "shared_content_change_link_password": EventTypeArg._shared_content_change_link_password_validator, - "shared_content_change_member_role": EventTypeArg._shared_content_change_member_role_validator, - "shared_content_change_viewer_info_policy": EventTypeArg._shared_content_change_viewer_info_policy_validator, - "shared_content_claim_invitation": EventTypeArg._shared_content_claim_invitation_validator, - "shared_content_copy": EventTypeArg._shared_content_copy_validator, - "shared_content_download": EventTypeArg._shared_content_download_validator, - "shared_content_relinquish_membership": EventTypeArg._shared_content_relinquish_membership_validator, - "shared_content_remove_invitees": EventTypeArg._shared_content_remove_invitees_validator, - "shared_content_remove_link_expiry": EventTypeArg._shared_content_remove_link_expiry_validator, - "shared_content_remove_link_password": EventTypeArg._shared_content_remove_link_password_validator, - "shared_content_remove_member": EventTypeArg._shared_content_remove_member_validator, - "shared_content_request_access": EventTypeArg._shared_content_request_access_validator, - "shared_content_restore_invitees": EventTypeArg._shared_content_restore_invitees_validator, - "shared_content_restore_member": EventTypeArg._shared_content_restore_member_validator, - "shared_content_unshare": EventTypeArg._shared_content_unshare_validator, - "shared_content_view": EventTypeArg._shared_content_view_validator, - "shared_folder_change_link_policy": EventTypeArg._shared_folder_change_link_policy_validator, - "shared_folder_change_members_inheritance_policy": EventTypeArg._shared_folder_change_members_inheritance_policy_validator, - "shared_folder_change_members_management_policy": EventTypeArg._shared_folder_change_members_management_policy_validator, - "shared_folder_change_members_policy": EventTypeArg._shared_folder_change_members_policy_validator, - "shared_folder_create": EventTypeArg._shared_folder_create_validator, - "shared_folder_decline_invitation": EventTypeArg._shared_folder_decline_invitation_validator, - "shared_folder_mount": EventTypeArg._shared_folder_mount_validator, - "shared_folder_nest": EventTypeArg._shared_folder_nest_validator, - "shared_folder_transfer_ownership": EventTypeArg._shared_folder_transfer_ownership_validator, - "shared_folder_unmount": EventTypeArg._shared_folder_unmount_validator, - "shared_link_add_expiry": EventTypeArg._shared_link_add_expiry_validator, - "shared_link_change_expiry": EventTypeArg._shared_link_change_expiry_validator, - "shared_link_change_visibility": EventTypeArg._shared_link_change_visibility_validator, - "shared_link_copy": EventTypeArg._shared_link_copy_validator, - "shared_link_create": EventTypeArg._shared_link_create_validator, - "shared_link_disable": EventTypeArg._shared_link_disable_validator, - "shared_link_download": EventTypeArg._shared_link_download_validator, - "shared_link_remove_expiry": EventTypeArg._shared_link_remove_expiry_validator, - "shared_link_remove_visitor": EventTypeArg._shared_link_remove_visitor_validator, - "shared_link_settings_add_expiration": EventTypeArg._shared_link_settings_add_expiration_validator, - "shared_link_settings_add_password": EventTypeArg._shared_link_settings_add_password_validator, - "shared_link_settings_allow_download_disabled": EventTypeArg._shared_link_settings_allow_download_disabled_validator, - "shared_link_settings_allow_download_enabled": EventTypeArg._shared_link_settings_allow_download_enabled_validator, - "shared_link_settings_change_audience": EventTypeArg._shared_link_settings_change_audience_validator, - "shared_link_settings_change_expiration": EventTypeArg._shared_link_settings_change_expiration_validator, - "shared_link_settings_change_password": EventTypeArg._shared_link_settings_change_password_validator, - "shared_link_settings_remove_expiration": EventTypeArg._shared_link_settings_remove_expiration_validator, - "shared_link_settings_remove_password": EventTypeArg._shared_link_settings_remove_password_validator, - "shared_link_share": EventTypeArg._shared_link_share_validator, - "shared_link_view": EventTypeArg._shared_link_view_validator, - "shared_note_opened": EventTypeArg._shared_note_opened_validator, - "shmodel_disable_downloads": EventTypeArg._shmodel_disable_downloads_validator, - "shmodel_enable_downloads": EventTypeArg._shmodel_enable_downloads_validator, - "shmodel_group_share": EventTypeArg._shmodel_group_share_validator, - "showcase_access_granted": EventTypeArg._showcase_access_granted_validator, - "showcase_add_member": EventTypeArg._showcase_add_member_validator, - "showcase_archived": EventTypeArg._showcase_archived_validator, - "showcase_created": EventTypeArg._showcase_created_validator, - "showcase_delete_comment": EventTypeArg._showcase_delete_comment_validator, - "showcase_edited": EventTypeArg._showcase_edited_validator, - "showcase_edit_comment": EventTypeArg._showcase_edit_comment_validator, - "showcase_file_added": EventTypeArg._showcase_file_added_validator, - "showcase_file_download": EventTypeArg._showcase_file_download_validator, - "showcase_file_removed": EventTypeArg._showcase_file_removed_validator, - "showcase_file_view": EventTypeArg._showcase_file_view_validator, - "showcase_permanently_deleted": EventTypeArg._showcase_permanently_deleted_validator, - "showcase_post_comment": EventTypeArg._showcase_post_comment_validator, - "showcase_remove_member": EventTypeArg._showcase_remove_member_validator, - "showcase_renamed": EventTypeArg._showcase_renamed_validator, - "showcase_request_access": EventTypeArg._showcase_request_access_validator, - "showcase_resolve_comment": EventTypeArg._showcase_resolve_comment_validator, - "showcase_restored": EventTypeArg._showcase_restored_validator, - "showcase_trashed": EventTypeArg._showcase_trashed_validator, - "showcase_trashed_deprecated": EventTypeArg._showcase_trashed_deprecated_validator, - "showcase_unresolve_comment": EventTypeArg._showcase_unresolve_comment_validator, - "showcase_untrashed": EventTypeArg._showcase_untrashed_validator, - "showcase_untrashed_deprecated": EventTypeArg._showcase_untrashed_deprecated_validator, - "showcase_view": EventTypeArg._showcase_view_validator, - "sign_signature_request_canceled": EventTypeArg._sign_signature_request_canceled_validator, - "sign_signature_request_completed": EventTypeArg._sign_signature_request_completed_validator, - "sign_signature_request_declined": EventTypeArg._sign_signature_request_declined_validator, - "sign_signature_request_opened": EventTypeArg._sign_signature_request_opened_validator, - "sign_signature_request_reminder_sent": EventTypeArg._sign_signature_request_reminder_sent_validator, - "sign_signature_request_sent": EventTypeArg._sign_signature_request_sent_validator, - "sign_template_created": EventTypeArg._sign_template_created_validator, - "sign_template_shared": EventTypeArg._sign_template_shared_validator, - "risc_security_event": EventTypeArg._risc_security_event_validator, - "sso_add_cert": EventTypeArg._sso_add_cert_validator, - "sso_add_login_url": EventTypeArg._sso_add_login_url_validator, - "sso_add_logout_url": EventTypeArg._sso_add_logout_url_validator, - "sso_change_cert": EventTypeArg._sso_change_cert_validator, - "sso_change_login_url": EventTypeArg._sso_change_login_url_validator, - "sso_change_logout_url": EventTypeArg._sso_change_logout_url_validator, - "sso_change_saml_identity_mode": EventTypeArg._sso_change_saml_identity_mode_validator, - "sso_remove_cert": EventTypeArg._sso_remove_cert_validator, - "sso_remove_login_url": EventTypeArg._sso_remove_login_url_validator, - "sso_remove_logout_url": EventTypeArg._sso_remove_logout_url_validator, - "team_folder_change_status": EventTypeArg._team_folder_change_status_validator, - "team_folder_create": EventTypeArg._team_folder_create_validator, - "team_folder_downgrade": EventTypeArg._team_folder_downgrade_validator, - "team_folder_permanently_delete": EventTypeArg._team_folder_permanently_delete_validator, - "team_folder_rename": EventTypeArg._team_folder_rename_validator, - "team_folder_space_limits_change_caps_type": EventTypeArg._team_folder_space_limits_change_caps_type_validator, - "team_folder_space_limits_change_limit": EventTypeArg._team_folder_space_limits_change_limit_validator, - "team_folder_space_limits_change_notification_target": EventTypeArg._team_folder_space_limits_change_notification_target_validator, - "team_selective_sync_settings_changed": EventTypeArg._team_selective_sync_settings_changed_validator, - "account_capture_change_policy": EventTypeArg._account_capture_change_policy_validator, - "admin_email_reminders_changed": EventTypeArg._admin_email_reminders_changed_validator, - "ai_third_party_sharing_dropbox_base_policy_changed": EventTypeArg._ai_third_party_sharing_dropbox_base_policy_changed_validator, - "allow_download_disabled": EventTypeArg._allow_download_disabled_validator, - "allow_download_enabled": EventTypeArg._allow_download_enabled_validator, - "apple_login_change_policy": EventTypeArg._apple_login_change_policy_validator, - "app_permissions_changed": EventTypeArg._app_permissions_changed_validator, - "camera_uploads_policy_changed": EventTypeArg._camera_uploads_policy_changed_validator, - "capture_team_space_policy_changed": EventTypeArg._capture_team_space_policy_changed_validator, - "capture_transcript_policy_changed": EventTypeArg._capture_transcript_policy_changed_validator, - "classification_change_policy": EventTypeArg._classification_change_policy_validator, - "computer_backup_policy_changed": EventTypeArg._computer_backup_policy_changed_validator, - "content_administration_policy_changed": EventTypeArg._content_administration_policy_changed_validator, - "content_deletion_protection_change_policy": EventTypeArg._content_deletion_protection_change_policy_validator, - "dash_external_sharing_policy_changed": EventTypeArg._dash_external_sharing_policy_changed_validator, - "data_placement_restriction_change_policy": EventTypeArg._data_placement_restriction_change_policy_validator, - "data_placement_restriction_satisfy_policy": EventTypeArg._data_placement_restriction_satisfy_policy_validator, - "device_approvals_add_exception": EventTypeArg._device_approvals_add_exception_validator, - "device_approvals_change_desktop_policy": EventTypeArg._device_approvals_change_desktop_policy_validator, - "device_approvals_change_mobile_policy": EventTypeArg._device_approvals_change_mobile_policy_validator, - "device_approvals_change_overage_action": EventTypeArg._device_approvals_change_overage_action_validator, - "device_approvals_change_unlink_action": EventTypeArg._device_approvals_change_unlink_action_validator, - "device_approvals_remove_exception": EventTypeArg._device_approvals_remove_exception_validator, - "directory_restrictions_add_members": EventTypeArg._directory_restrictions_add_members_validator, - "directory_restrictions_remove_members": EventTypeArg._directory_restrictions_remove_members_validator, - "dropbox_passwords_policy_changed": EventTypeArg._dropbox_passwords_policy_changed_validator, - "email_ingest_policy_changed": EventTypeArg._email_ingest_policy_changed_validator, - "emm_add_exception": EventTypeArg._emm_add_exception_validator, - "emm_change_policy": EventTypeArg._emm_change_policy_validator, - "emm_remove_exception": EventTypeArg._emm_remove_exception_validator, - "extended_version_history_change_policy": EventTypeArg._extended_version_history_change_policy_validator, - "external_drive_backup_policy_changed": EventTypeArg._external_drive_backup_policy_changed_validator, - "file_comments_change_policy": EventTypeArg._file_comments_change_policy_validator, - "file_locking_policy_changed": EventTypeArg._file_locking_policy_changed_validator, - "file_provider_migration_policy_changed": EventTypeArg._file_provider_migration_policy_changed_validator, - "file_requests_change_policy": EventTypeArg._file_requests_change_policy_validator, - "file_requests_emails_enabled": EventTypeArg._file_requests_emails_enabled_validator, - "file_requests_emails_restricted_to_team_only": EventTypeArg._file_requests_emails_restricted_to_team_only_validator, - "file_transfers_policy_changed": EventTypeArg._file_transfers_policy_changed_validator, - "flexible_file_names_policy_changed": EventTypeArg._flexible_file_names_policy_changed_validator, - "folder_link_restriction_policy_changed": EventTypeArg._folder_link_restriction_policy_changed_validator, - "google_sso_change_policy": EventTypeArg._google_sso_change_policy_validator, - "group_user_management_change_policy": EventTypeArg._group_user_management_change_policy_validator, - "integration_policy_changed": EventTypeArg._integration_policy_changed_validator, - "invite_acceptance_email_policy_changed": EventTypeArg._invite_acceptance_email_policy_changed_validator, - "media_hub_adding_people_policy_changed": EventTypeArg._media_hub_adding_people_policy_changed_validator, - "media_hub_download_policy_changed": EventTypeArg._media_hub_download_policy_changed_validator, - "media_hub_link_sharing_policy_changed": EventTypeArg._media_hub_link_sharing_policy_changed_validator, - "member_requests_change_policy": EventTypeArg._member_requests_change_policy_validator, - "member_send_invite_policy_changed": EventTypeArg._member_send_invite_policy_changed_validator, - "member_space_limits_add_exception": EventTypeArg._member_space_limits_add_exception_validator, - "member_space_limits_change_caps_type_policy": EventTypeArg._member_space_limits_change_caps_type_policy_validator, - "member_space_limits_change_policy": EventTypeArg._member_space_limits_change_policy_validator, - "member_space_limits_remove_exception": EventTypeArg._member_space_limits_remove_exception_validator, - "member_suggestions_change_policy": EventTypeArg._member_suggestions_change_policy_validator, - "microsoft_login_change_policy": EventTypeArg._microsoft_login_change_policy_validator, - "microsoft_office_addin_change_policy": EventTypeArg._microsoft_office_addin_change_policy_validator, - "multi_team_identity_policy_changed": EventTypeArg._multi_team_identity_policy_changed_validator, - "network_control_change_policy": EventTypeArg._network_control_change_policy_validator, - "paper_change_deployment_policy": EventTypeArg._paper_change_deployment_policy_validator, - "paper_change_member_link_policy": EventTypeArg._paper_change_member_link_policy_validator, - "paper_change_member_policy": EventTypeArg._paper_change_member_policy_validator, - "paper_change_policy": EventTypeArg._paper_change_policy_validator, - "paper_default_folder_policy_changed": EventTypeArg._paper_default_folder_policy_changed_validator, - "paper_desktop_policy_changed": EventTypeArg._paper_desktop_policy_changed_validator, - "paper_enabled_users_group_addition": EventTypeArg._paper_enabled_users_group_addition_validator, - "paper_enabled_users_group_removal": EventTypeArg._paper_enabled_users_group_removal_validator, - "passkey_login_policy_changed": EventTypeArg._passkey_login_policy_changed_validator, - "password_strength_requirements_change_policy": EventTypeArg._password_strength_requirements_change_policy_validator, - "permanent_delete_change_policy": EventTypeArg._permanent_delete_change_policy_validator, - "previews_ai_policy_changed": EventTypeArg._previews_ai_policy_changed_validator, - "replay_adding_people_policy_changed": EventTypeArg._replay_adding_people_policy_changed_validator, - "replay_sharing_policy_changed": EventTypeArg._replay_sharing_policy_changed_validator, - "reseller_support_change_policy": EventTypeArg._reseller_support_change_policy_validator, - "rewind_policy_changed": EventTypeArg._rewind_policy_changed_validator, - "send_and_track_policy_changed": EventTypeArg._send_and_track_policy_changed_validator, - "send_external_sharing_policy_changed": EventTypeArg._send_external_sharing_policy_changed_validator, - "send_for_signature_policy_changed": EventTypeArg._send_for_signature_policy_changed_validator, - "shared_link_default_permissions_policy_changed": EventTypeArg._shared_link_default_permissions_policy_changed_validator, - "sharing_change_folder_join_policy": EventTypeArg._sharing_change_folder_join_policy_validator, - "sharing_change_link_allow_change_expiration_policy": EventTypeArg._sharing_change_link_allow_change_expiration_policy_validator, - "sharing_change_link_default_expiration_policy": EventTypeArg._sharing_change_link_default_expiration_policy_validator, - "sharing_change_link_enforce_password_policy": EventTypeArg._sharing_change_link_enforce_password_policy_validator, - "sharing_change_link_policy": EventTypeArg._sharing_change_link_policy_validator, - "sharing_change_member_policy": EventTypeArg._sharing_change_member_policy_validator, - "showcase_change_download_policy": EventTypeArg._showcase_change_download_policy_validator, - "showcase_change_enabled_policy": EventTypeArg._showcase_change_enabled_policy_validator, - "showcase_change_external_sharing_policy": EventTypeArg._showcase_change_external_sharing_policy_validator, - "sign_external_sharing_policy_changed": EventTypeArg._sign_external_sharing_policy_changed_validator, - "sign_template_creation_permission_changed": EventTypeArg._sign_template_creation_permission_changed_validator, - "smarter_smart_sync_policy_changed": EventTypeArg._smarter_smart_sync_policy_changed_validator, - "smart_sync_change_policy": EventTypeArg._smart_sync_change_policy_validator, - "smart_sync_not_opt_out": EventTypeArg._smart_sync_not_opt_out_validator, - "smart_sync_opt_out": EventTypeArg._smart_sync_opt_out_validator, - "sso_change_policy": EventTypeArg._sso_change_policy_validator, - "stack_cross_team_access_policy_changed": EventTypeArg._stack_cross_team_access_policy_changed_validator, - "team_branding_policy_changed": EventTypeArg._team_branding_policy_changed_validator, - "team_extensions_policy_changed": EventTypeArg._team_extensions_policy_changed_validator, - "team_member_storage_request_policy_changed": EventTypeArg._team_member_storage_request_policy_changed_validator, - "team_selective_sync_policy_changed": EventTypeArg._team_selective_sync_policy_changed_validator, - "team_sharing_whitelist_subjects_changed": EventTypeArg._team_sharing_whitelist_subjects_changed_validator, - "tfa_add_exception": EventTypeArg._tfa_add_exception_validator, - "tfa_change_policy": EventTypeArg._tfa_change_policy_validator, - "tfa_remove_exception": EventTypeArg._tfa_remove_exception_validator, - "top_level_content_policy_changed": EventTypeArg._top_level_content_policy_changed_validator, - "two_account_change_policy": EventTypeArg._two_account_change_policy_validator, - "viewer_info_policy_changed": EventTypeArg._viewer_info_policy_changed_validator, - "watermarking_policy_changed": EventTypeArg._watermarking_policy_changed_validator, - "web_sessions_change_active_session_limit": EventTypeArg._web_sessions_change_active_session_limit_validator, - "web_sessions_change_fixed_length_policy": EventTypeArg._web_sessions_change_fixed_length_policy_validator, - "web_sessions_change_idle_length_policy": EventTypeArg._web_sessions_change_idle_length_policy_validator, - "data_residency_migration_request_successful": EventTypeArg._data_residency_migration_request_successful_validator, - "data_residency_migration_request_unsuccessful": EventTypeArg._data_residency_migration_request_unsuccessful_validator, - "team_merge_from": EventTypeArg._team_merge_from_validator, - "team_merge_to": EventTypeArg._team_merge_to_validator, - "team_profile_add_background": EventTypeArg._team_profile_add_background_validator, - "team_profile_add_logo": EventTypeArg._team_profile_add_logo_validator, - "team_profile_change_background": EventTypeArg._team_profile_change_background_validator, - "team_profile_change_default_language": EventTypeArg._team_profile_change_default_language_validator, - "team_profile_change_logo": EventTypeArg._team_profile_change_logo_validator, - "team_profile_change_name": EventTypeArg._team_profile_change_name_validator, - "team_profile_remove_background": EventTypeArg._team_profile_remove_background_validator, - "team_profile_remove_logo": EventTypeArg._team_profile_remove_logo_validator, - "passkey_add": EventTypeArg._passkey_add_validator, - "passkey_remove": EventTypeArg._passkey_remove_validator, - "tfa_add_backup_phone": EventTypeArg._tfa_add_backup_phone_validator, - "tfa_add_security_key": EventTypeArg._tfa_add_security_key_validator, - "tfa_change_backup_phone": EventTypeArg._tfa_change_backup_phone_validator, - "tfa_change_status": EventTypeArg._tfa_change_status_validator, - "tfa_remove_backup_phone": EventTypeArg._tfa_remove_backup_phone_validator, - "tfa_remove_security_key": EventTypeArg._tfa_remove_security_key_validator, - "tfa_reset": EventTypeArg._tfa_reset_validator, - "changed_enterprise_admin_role": EventTypeArg._changed_enterprise_admin_role_validator, - "changed_enterprise_connected_team_status": EventTypeArg._changed_enterprise_connected_team_status_validator, - "ended_enterprise_admin_session": EventTypeArg._ended_enterprise_admin_session_validator, - "ended_enterprise_admin_session_deprecated": EventTypeArg._ended_enterprise_admin_session_deprecated_validator, - "enterprise_settings_locking": EventTypeArg._enterprise_settings_locking_validator, - "guest_admin_change_status": EventTypeArg._guest_admin_change_status_validator, - "started_enterprise_admin_session": EventTypeArg._started_enterprise_admin_session_validator, - "team_merge_request_accepted": EventTypeArg._team_merge_request_accepted_validator, - "team_merge_request_accepted_shown_to_primary_team": EventTypeArg._team_merge_request_accepted_shown_to_primary_team_validator, - "team_merge_request_accepted_shown_to_secondary_team": EventTypeArg._team_merge_request_accepted_shown_to_secondary_team_validator, - "team_merge_request_auto_canceled": EventTypeArg._team_merge_request_auto_canceled_validator, - "team_merge_request_canceled": EventTypeArg._team_merge_request_canceled_validator, - "team_merge_request_canceled_shown_to_primary_team": EventTypeArg._team_merge_request_canceled_shown_to_primary_team_validator, - "team_merge_request_canceled_shown_to_secondary_team": EventTypeArg._team_merge_request_canceled_shown_to_secondary_team_validator, - "team_merge_request_expired": EventTypeArg._team_merge_request_expired_validator, - "team_merge_request_expired_shown_to_primary_team": EventTypeArg._team_merge_request_expired_shown_to_primary_team_validator, - "team_merge_request_expired_shown_to_secondary_team": EventTypeArg._team_merge_request_expired_shown_to_secondary_team_validator, - "team_merge_request_rejected_shown_to_primary_team": EventTypeArg._team_merge_request_rejected_shown_to_primary_team_validator, - "team_merge_request_rejected_shown_to_secondary_team": EventTypeArg._team_merge_request_rejected_shown_to_secondary_team_validator, - "team_merge_request_reminder": EventTypeArg._team_merge_request_reminder_validator, - "team_merge_request_reminder_shown_to_primary_team": EventTypeArg._team_merge_request_reminder_shown_to_primary_team_validator, - "team_merge_request_reminder_shown_to_secondary_team": EventTypeArg._team_merge_request_reminder_shown_to_secondary_team_validator, - "team_merge_request_revoked": EventTypeArg._team_merge_request_revoked_validator, - "team_merge_request_sent_shown_to_primary_team": EventTypeArg._team_merge_request_sent_shown_to_primary_team_validator, - "team_merge_request_sent_shown_to_secondary_team": EventTypeArg._team_merge_request_sent_shown_to_secondary_team_validator, - "other": EventTypeArg._other_validator, + 'admin_alerting_alert_state_changed': EventTypeArg._admin_alerting_alert_state_changed_validator, + 'admin_alerting_changed_alert_config': EventTypeArg._admin_alerting_changed_alert_config_validator, + 'admin_alerting_triggered_alert': EventTypeArg._admin_alerting_triggered_alert_validator, + 'ransomware_restore_process_completed': EventTypeArg._ransomware_restore_process_completed_validator, + 'ransomware_restore_process_started': EventTypeArg._ransomware_restore_process_started_validator, + 'app_blocked_by_permissions': EventTypeArg._app_blocked_by_permissions_validator, + 'app_link_team': EventTypeArg._app_link_team_validator, + 'app_link_user': EventTypeArg._app_link_user_validator, + 'app_unlink_team': EventTypeArg._app_unlink_team_validator, + 'app_unlink_user': EventTypeArg._app_unlink_user_validator, + 'integration_connected': EventTypeArg._integration_connected_validator, + 'integration_disconnected': EventTypeArg._integration_disconnected_validator, + 'file_add_comment': EventTypeArg._file_add_comment_validator, + 'file_change_comment_subscription': EventTypeArg._file_change_comment_subscription_validator, + 'file_delete_comment': EventTypeArg._file_delete_comment_validator, + 'file_edit_comment': EventTypeArg._file_edit_comment_validator, + 'file_like_comment': EventTypeArg._file_like_comment_validator, + 'file_resolve_comment': EventTypeArg._file_resolve_comment_validator, + 'file_unlike_comment': EventTypeArg._file_unlike_comment_validator, + 'file_unresolve_comment': EventTypeArg._file_unresolve_comment_validator, + 'dash_added_comment_to_stack': EventTypeArg._dash_added_comment_to_stack_validator, + 'dash_added_connector': EventTypeArg._dash_added_connector_validator, + 'dash_added_link_to_stack': EventTypeArg._dash_added_link_to_stack_validator, + 'dash_added_team_email_domain_allowlist': EventTypeArg._dash_added_team_email_domain_allowlist_validator, + 'dash_admin_added_org_wide_connector': EventTypeArg._dash_admin_added_org_wide_connector_validator, + 'dash_admin_disabled_connector': EventTypeArg._dash_admin_disabled_connector_validator, + 'dash_admin_enabled_connector': EventTypeArg._dash_admin_enabled_connector_validator, + 'dash_admin_removed_org_wide_connector': EventTypeArg._dash_admin_removed_org_wide_connector_validator, + 'dash_archived_stack': EventTypeArg._dash_archived_stack_validator, + 'dash_changed_audience_of_shared_link_to_stack': EventTypeArg._dash_changed_audience_of_shared_link_to_stack_validator, + 'dash_cloned_stack': EventTypeArg._dash_cloned_stack_validator, + 'dash_connector_tools_call': EventTypeArg._dash_connector_tools_call_validator, + 'dash_created_stack': EventTypeArg._dash_created_stack_validator, + 'dash_deleted_comment_from_stack': EventTypeArg._dash_deleted_comment_from_stack_validator, + 'dash_deleted_stack': EventTypeArg._dash_deleted_stack_validator, + 'dash_edited_comment_in_stack': EventTypeArg._dash_edited_comment_in_stack_validator, + 'dash_external_user_opened_stack': EventTypeArg._dash_external_user_opened_stack_validator, + 'dash_first_launched_desktop': EventTypeArg._dash_first_launched_desktop_validator, + 'dash_first_launched_extension': EventTypeArg._dash_first_launched_extension_validator, + 'dash_first_launched_web_start_page': EventTypeArg._dash_first_launched_web_start_page_validator, + 'dash_opened_shared_link_to_stack': EventTypeArg._dash_opened_shared_link_to_stack_validator, + 'dash_opened_stack': EventTypeArg._dash_opened_stack_validator, + 'dash_preview_opt_out_status_changed': EventTypeArg._dash_preview_opt_out_status_changed_validator, + 'dash_removed_connector': EventTypeArg._dash_removed_connector_validator, + 'dash_removed_link_from_stack': EventTypeArg._dash_removed_link_from_stack_validator, + 'dash_removed_shared_link_to_stack': EventTypeArg._dash_removed_shared_link_to_stack_validator, + 'dash_removed_team_email_domain_allowlist': EventTypeArg._dash_removed_team_email_domain_allowlist_validator, + 'dash_renamed_stack': EventTypeArg._dash_renamed_stack_validator, + 'dash_shared_link_to_stack': EventTypeArg._dash_shared_link_to_stack_validator, + 'dash_unarchived_stack': EventTypeArg._dash_unarchived_stack_validator, + 'dash_viewed_company_stack': EventTypeArg._dash_viewed_company_stack_validator, + 'dash_viewed_external_ai_activity_report': EventTypeArg._dash_viewed_external_ai_activity_report_validator, + 'governance_policy_add_folders': EventTypeArg._governance_policy_add_folders_validator, + 'governance_policy_add_folder_failed': EventTypeArg._governance_policy_add_folder_failed_validator, + 'governance_policy_content_disposed': EventTypeArg._governance_policy_content_disposed_validator, + 'governance_policy_create': EventTypeArg._governance_policy_create_validator, + 'governance_policy_delete': EventTypeArg._governance_policy_delete_validator, + 'governance_policy_edit_details': EventTypeArg._governance_policy_edit_details_validator, + 'governance_policy_edit_duration': EventTypeArg._governance_policy_edit_duration_validator, + 'governance_policy_export_created': EventTypeArg._governance_policy_export_created_validator, + 'governance_policy_export_removed': EventTypeArg._governance_policy_export_removed_validator, + 'governance_policy_remove_folders': EventTypeArg._governance_policy_remove_folders_validator, + 'governance_policy_report_created': EventTypeArg._governance_policy_report_created_validator, + 'governance_policy_zip_part_downloaded': EventTypeArg._governance_policy_zip_part_downloaded_validator, + 'legal_holds_activate_a_hold': EventTypeArg._legal_holds_activate_a_hold_validator, + 'legal_holds_add_members': EventTypeArg._legal_holds_add_members_validator, + 'legal_holds_change_hold_details': EventTypeArg._legal_holds_change_hold_details_validator, + 'legal_holds_change_hold_name': EventTypeArg._legal_holds_change_hold_name_validator, + 'legal_holds_export_a_hold': EventTypeArg._legal_holds_export_a_hold_validator, + 'legal_holds_export_cancelled': EventTypeArg._legal_holds_export_cancelled_validator, + 'legal_holds_export_downloaded': EventTypeArg._legal_holds_export_downloaded_validator, + 'legal_holds_export_removed': EventTypeArg._legal_holds_export_removed_validator, + 'legal_holds_release_a_hold': EventTypeArg._legal_holds_release_a_hold_validator, + 'legal_holds_remove_members': EventTypeArg._legal_holds_remove_members_validator, + 'legal_holds_report_a_hold': EventTypeArg._legal_holds_report_a_hold_validator, + 'device_change_ip_desktop': EventTypeArg._device_change_ip_desktop_validator, + 'device_change_ip_mobile': EventTypeArg._device_change_ip_mobile_validator, + 'device_change_ip_web': EventTypeArg._device_change_ip_web_validator, + 'device_delete_on_unlink_fail': EventTypeArg._device_delete_on_unlink_fail_validator, + 'device_delete_on_unlink_success': EventTypeArg._device_delete_on_unlink_success_validator, + 'device_link_fail': EventTypeArg._device_link_fail_validator, + 'device_link_success': EventTypeArg._device_link_success_validator, + 'device_management_disabled': EventTypeArg._device_management_disabled_validator, + 'device_management_enabled': EventTypeArg._device_management_enabled_validator, + 'device_sync_backup_status_changed': EventTypeArg._device_sync_backup_status_changed_validator, + 'device_unlink': EventTypeArg._device_unlink_validator, + 'dropbox_passwords_exported': EventTypeArg._dropbox_passwords_exported_validator, + 'dropbox_passwords_new_device_enrolled': EventTypeArg._dropbox_passwords_new_device_enrolled_validator, + 'emm_refresh_auth_token': EventTypeArg._emm_refresh_auth_token_validator, + 'external_drive_backup_eligibility_status_checked': EventTypeArg._external_drive_backup_eligibility_status_checked_validator, + 'external_drive_backup_status_changed': EventTypeArg._external_drive_backup_status_changed_validator, + 'account_capture_change_availability': EventTypeArg._account_capture_change_availability_validator, + 'account_capture_migrate_account': EventTypeArg._account_capture_migrate_account_validator, + 'account_capture_notification_emails_sent': EventTypeArg._account_capture_notification_emails_sent_validator, + 'account_capture_relinquish_account': EventTypeArg._account_capture_relinquish_account_validator, + 'disabled_domain_invites': EventTypeArg._disabled_domain_invites_validator, + 'domain_invites_approve_request_to_join_team': EventTypeArg._domain_invites_approve_request_to_join_team_validator, + 'domain_invites_decline_request_to_join_team': EventTypeArg._domain_invites_decline_request_to_join_team_validator, + 'domain_invites_email_existing_users': EventTypeArg._domain_invites_email_existing_users_validator, + 'domain_invites_request_to_join_team': EventTypeArg._domain_invites_request_to_join_team_validator, + 'domain_invites_set_invite_new_user_pref_to_no': EventTypeArg._domain_invites_set_invite_new_user_pref_to_no_validator, + 'domain_invites_set_invite_new_user_pref_to_yes': EventTypeArg._domain_invites_set_invite_new_user_pref_to_yes_validator, + 'domain_verification_add_domain_fail': EventTypeArg._domain_verification_add_domain_fail_validator, + 'domain_verification_add_domain_success': EventTypeArg._domain_verification_add_domain_success_validator, + 'domain_verification_remove_domain': EventTypeArg._domain_verification_remove_domain_validator, + 'enabled_domain_invites': EventTypeArg._enabled_domain_invites_validator, + 'encrypted_folder_cancel_team_key_rotation': EventTypeArg._encrypted_folder_cancel_team_key_rotation_validator, + 'encrypted_folder_enroll_backup_key': EventTypeArg._encrypted_folder_enroll_backup_key_validator, + 'encrypted_folder_enroll_client': EventTypeArg._encrypted_folder_enroll_client_validator, + 'encrypted_folder_enroll_team': EventTypeArg._encrypted_folder_enroll_team_validator, + 'encrypted_folder_finish_team_unenrollment': EventTypeArg._encrypted_folder_finish_team_unenrollment_validator, + 'encrypted_folder_init_team_key_rotation': EventTypeArg._encrypted_folder_init_team_key_rotation_validator, + 'encrypted_folder_init_team_unenrollment': EventTypeArg._encrypted_folder_init_team_unenrollment_validator, + 'encrypted_folder_remove_backup_key': EventTypeArg._encrypted_folder_remove_backup_key_validator, + 'encrypted_folder_rotate_team_key': EventTypeArg._encrypted_folder_rotate_team_key_validator, + 'encrypted_folder_unenroll_client': EventTypeArg._encrypted_folder_unenroll_client_validator, + 'team_encryption_key_activate_key': EventTypeArg._team_encryption_key_activate_key_validator, + 'team_encryption_key_cancel_key_deletion': EventTypeArg._team_encryption_key_cancel_key_deletion_validator, + 'team_encryption_key_create_key': EventTypeArg._team_encryption_key_create_key_validator, + 'team_encryption_key_deactivate_key': EventTypeArg._team_encryption_key_deactivate_key_validator, + 'team_encryption_key_delete_key': EventTypeArg._team_encryption_key_delete_key_validator, + 'team_encryption_key_disable_key': EventTypeArg._team_encryption_key_disable_key_validator, + 'team_encryption_key_enable_key': EventTypeArg._team_encryption_key_enable_key_validator, + 'team_encryption_key_rotate_key': EventTypeArg._team_encryption_key_rotate_key_validator, + 'team_encryption_key_schedule_key_deletion': EventTypeArg._team_encryption_key_schedule_key_deletion_validator, + 'apply_naming_convention': EventTypeArg._apply_naming_convention_validator, + 'create_folder': EventTypeArg._create_folder_validator, + 'file_add': EventTypeArg._file_add_validator, + 'file_add_from_automation': EventTypeArg._file_add_from_automation_validator, + 'file_copy': EventTypeArg._file_copy_validator, + 'file_delete': EventTypeArg._file_delete_validator, + 'file_download': EventTypeArg._file_download_validator, + 'file_edit': EventTypeArg._file_edit_validator, + 'file_get_copy_reference': EventTypeArg._file_get_copy_reference_validator, + 'file_locking_lock_status_changed': EventTypeArg._file_locking_lock_status_changed_validator, + 'file_move': EventTypeArg._file_move_validator, + 'file_permanently_delete': EventTypeArg._file_permanently_delete_validator, + 'file_preview': EventTypeArg._file_preview_validator, + 'file_rename': EventTypeArg._file_rename_validator, + 'file_restore': EventTypeArg._file_restore_validator, + 'file_revert': EventTypeArg._file_revert_validator, + 'file_rollback_changes': EventTypeArg._file_rollback_changes_validator, + 'file_save_copy_reference': EventTypeArg._file_save_copy_reference_validator, + 'folder_overview_description_changed': EventTypeArg._folder_overview_description_changed_validator, + 'folder_overview_item_pinned': EventTypeArg._folder_overview_item_pinned_validator, + 'folder_overview_item_unpinned': EventTypeArg._folder_overview_item_unpinned_validator, + 'media_hub_file_downloaded': EventTypeArg._media_hub_file_downloaded_validator, + 'object_label_added': EventTypeArg._object_label_added_validator, + 'object_label_removed': EventTypeArg._object_label_removed_validator, + 'object_label_updated_value': EventTypeArg._object_label_updated_value_validator, + 'organize_folder_with_tidy': EventTypeArg._organize_folder_with_tidy_validator, + 'replay_file_delete': EventTypeArg._replay_file_delete_validator, + 'replay_file_downloaded': EventTypeArg._replay_file_downloaded_validator, + 'replay_team_project_created': EventTypeArg._replay_team_project_created_validator, + 'rewind_folder': EventTypeArg._rewind_folder_validator, + 'undo_naming_convention': EventTypeArg._undo_naming_convention_validator, + 'undo_organize_folder_with_tidy': EventTypeArg._undo_organize_folder_with_tidy_validator, + 'user_tags_added': EventTypeArg._user_tags_added_validator, + 'user_tags_removed': EventTypeArg._user_tags_removed_validator, + 'email_ingest_receive_file': EventTypeArg._email_ingest_receive_file_validator, + 'file_request_auto_close': EventTypeArg._file_request_auto_close_validator, + 'file_request_change': EventTypeArg._file_request_change_validator, + 'file_request_close': EventTypeArg._file_request_close_validator, + 'file_request_create': EventTypeArg._file_request_create_validator, + 'file_request_delete': EventTypeArg._file_request_delete_validator, + 'file_request_receive_file': EventTypeArg._file_request_receive_file_validator, + 'group_add_external_id': EventTypeArg._group_add_external_id_validator, + 'group_add_member': EventTypeArg._group_add_member_validator, + 'group_change_external_id': EventTypeArg._group_change_external_id_validator, + 'group_change_management_type': EventTypeArg._group_change_management_type_validator, + 'group_change_member_role': EventTypeArg._group_change_member_role_validator, + 'group_create': EventTypeArg._group_create_validator, + 'group_delete': EventTypeArg._group_delete_validator, + 'group_description_updated': EventTypeArg._group_description_updated_validator, + 'group_external_sharing_setting_override_changed': EventTypeArg._group_external_sharing_setting_override_changed_validator, + 'group_join_policy_updated': EventTypeArg._group_join_policy_updated_validator, + 'group_moved': EventTypeArg._group_moved_validator, + 'group_remove_external_id': EventTypeArg._group_remove_external_id_validator, + 'group_remove_member': EventTypeArg._group_remove_member_validator, + 'group_rename': EventTypeArg._group_rename_validator, + 'account_lock_or_unlocked': EventTypeArg._account_lock_or_unlocked_validator, + 'emm_error': EventTypeArg._emm_error_validator, + 'guest_admin_signed_in_via_trusted_teams': EventTypeArg._guest_admin_signed_in_via_trusted_teams_validator, + 'guest_admin_signed_out_via_trusted_teams': EventTypeArg._guest_admin_signed_out_via_trusted_teams_validator, + 'login_fail': EventTypeArg._login_fail_validator, + 'login_success': EventTypeArg._login_success_validator, + 'logout': EventTypeArg._logout_validator, + 'reseller_support_session_end': EventTypeArg._reseller_support_session_end_validator, + 'reseller_support_session_start': EventTypeArg._reseller_support_session_start_validator, + 'sign_in_as_session_end': EventTypeArg._sign_in_as_session_end_validator, + 'sign_in_as_session_start': EventTypeArg._sign_in_as_session_start_validator, + 'sso_error': EventTypeArg._sso_error_validator, + 'addon_assigned': EventTypeArg._addon_assigned_validator, + 'addon_removed': EventTypeArg._addon_removed_validator, + 'backup_admin_invitation_sent': EventTypeArg._backup_admin_invitation_sent_validator, + 'backup_invitation_opened': EventTypeArg._backup_invitation_opened_validator, + 'create_team_invite_link': EventTypeArg._create_team_invite_link_validator, + 'delete_team_invite_link': EventTypeArg._delete_team_invite_link_validator, + 'member_add_external_id': EventTypeArg._member_add_external_id_validator, + 'member_add_name': EventTypeArg._member_add_name_validator, + 'member_change_admin_role': EventTypeArg._member_change_admin_role_validator, + 'member_change_email': EventTypeArg._member_change_email_validator, + 'member_change_external_id': EventTypeArg._member_change_external_id_validator, + 'member_change_membership_type': EventTypeArg._member_change_membership_type_validator, + 'member_change_name': EventTypeArg._member_change_name_validator, + 'member_change_reseller_role': EventTypeArg._member_change_reseller_role_validator, + 'member_change_status': EventTypeArg._member_change_status_validator, + 'member_delete_manual_contacts': EventTypeArg._member_delete_manual_contacts_validator, + 'member_delete_profile_photo': EventTypeArg._member_delete_profile_photo_validator, + 'member_permanently_delete_account_contents': EventTypeArg._member_permanently_delete_account_contents_validator, + 'member_remove_external_id': EventTypeArg._member_remove_external_id_validator, + 'member_set_profile_photo': EventTypeArg._member_set_profile_photo_validator, + 'member_space_limits_add_custom_quota': EventTypeArg._member_space_limits_add_custom_quota_validator, + 'member_space_limits_change_custom_quota': EventTypeArg._member_space_limits_change_custom_quota_validator, + 'member_space_limits_change_status': EventTypeArg._member_space_limits_change_status_validator, + 'member_space_limits_remove_custom_quota': EventTypeArg._member_space_limits_remove_custom_quota_validator, + 'member_suggest': EventTypeArg._member_suggest_validator, + 'member_transfer_account_contents': EventTypeArg._member_transfer_account_contents_validator, + 'pending_secondary_email_added': EventTypeArg._pending_secondary_email_added_validator, + 'product_assigned_to_member': EventTypeArg._product_assigned_to_member_validator, + 'product_removed_from_member': EventTypeArg._product_removed_from_member_validator, + 'secondary_email_deleted': EventTypeArg._secondary_email_deleted_validator, + 'secondary_email_verified': EventTypeArg._secondary_email_verified_validator, + 'secondary_mails_policy_changed': EventTypeArg._secondary_mails_policy_changed_validator, + 'binder_add_page': EventTypeArg._binder_add_page_validator, + 'binder_add_section': EventTypeArg._binder_add_section_validator, + 'binder_remove_page': EventTypeArg._binder_remove_page_validator, + 'binder_remove_section': EventTypeArg._binder_remove_section_validator, + 'binder_rename_page': EventTypeArg._binder_rename_page_validator, + 'binder_rename_section': EventTypeArg._binder_rename_section_validator, + 'binder_reorder_page': EventTypeArg._binder_reorder_page_validator, + 'binder_reorder_section': EventTypeArg._binder_reorder_section_validator, + 'paper_content_add_member': EventTypeArg._paper_content_add_member_validator, + 'paper_content_add_to_folder': EventTypeArg._paper_content_add_to_folder_validator, + 'paper_content_archive': EventTypeArg._paper_content_archive_validator, + 'paper_content_create': EventTypeArg._paper_content_create_validator, + 'paper_content_permanently_delete': EventTypeArg._paper_content_permanently_delete_validator, + 'paper_content_remove_from_folder': EventTypeArg._paper_content_remove_from_folder_validator, + 'paper_content_remove_member': EventTypeArg._paper_content_remove_member_validator, + 'paper_content_rename': EventTypeArg._paper_content_rename_validator, + 'paper_content_restore': EventTypeArg._paper_content_restore_validator, + 'paper_doc_add_comment': EventTypeArg._paper_doc_add_comment_validator, + 'paper_doc_change_member_role': EventTypeArg._paper_doc_change_member_role_validator, + 'paper_doc_change_sharing_policy': EventTypeArg._paper_doc_change_sharing_policy_validator, + 'paper_doc_change_subscription': EventTypeArg._paper_doc_change_subscription_validator, + 'paper_doc_deleted': EventTypeArg._paper_doc_deleted_validator, + 'paper_doc_delete_comment': EventTypeArg._paper_doc_delete_comment_validator, + 'paper_doc_download': EventTypeArg._paper_doc_download_validator, + 'paper_doc_edit': EventTypeArg._paper_doc_edit_validator, + 'paper_doc_edit_comment': EventTypeArg._paper_doc_edit_comment_validator, + 'paper_doc_followed': EventTypeArg._paper_doc_followed_validator, + 'paper_doc_mention': EventTypeArg._paper_doc_mention_validator, + 'paper_doc_ownership_changed': EventTypeArg._paper_doc_ownership_changed_validator, + 'paper_doc_request_access': EventTypeArg._paper_doc_request_access_validator, + 'paper_doc_resolve_comment': EventTypeArg._paper_doc_resolve_comment_validator, + 'paper_doc_revert': EventTypeArg._paper_doc_revert_validator, + 'paper_doc_slack_share': EventTypeArg._paper_doc_slack_share_validator, + 'paper_doc_team_invite': EventTypeArg._paper_doc_team_invite_validator, + 'paper_doc_trashed': EventTypeArg._paper_doc_trashed_validator, + 'paper_doc_unresolve_comment': EventTypeArg._paper_doc_unresolve_comment_validator, + 'paper_doc_untrashed': EventTypeArg._paper_doc_untrashed_validator, + 'paper_doc_view': EventTypeArg._paper_doc_view_validator, + 'paper_external_view_allow': EventTypeArg._paper_external_view_allow_validator, + 'paper_external_view_default_team': EventTypeArg._paper_external_view_default_team_validator, + 'paper_external_view_forbid': EventTypeArg._paper_external_view_forbid_validator, + 'paper_folder_change_subscription': EventTypeArg._paper_folder_change_subscription_validator, + 'paper_folder_deleted': EventTypeArg._paper_folder_deleted_validator, + 'paper_folder_followed': EventTypeArg._paper_folder_followed_validator, + 'paper_folder_team_invite': EventTypeArg._paper_folder_team_invite_validator, + 'paper_published_link_change_permission': EventTypeArg._paper_published_link_change_permission_validator, + 'paper_published_link_create': EventTypeArg._paper_published_link_create_validator, + 'paper_published_link_disabled': EventTypeArg._paper_published_link_disabled_validator, + 'paper_published_link_view': EventTypeArg._paper_published_link_view_validator, + 'password_change': EventTypeArg._password_change_validator, + 'password_reset': EventTypeArg._password_reset_validator, + 'password_reset_all': EventTypeArg._password_reset_all_validator, + 'protect_internal_domains_changed': EventTypeArg._protect_internal_domains_changed_validator, + 'classification_create_report': EventTypeArg._classification_create_report_validator, + 'classification_create_report_fail': EventTypeArg._classification_create_report_fail_validator, + 'emm_create_exceptions_report': EventTypeArg._emm_create_exceptions_report_validator, + 'emm_create_usage_report': EventTypeArg._emm_create_usage_report_validator, + 'export_members_report': EventTypeArg._export_members_report_validator, + 'export_members_report_fail': EventTypeArg._export_members_report_fail_validator, + 'external_sharing_create_report': EventTypeArg._external_sharing_create_report_validator, + 'external_sharing_report_failed': EventTypeArg._external_sharing_report_failed_validator, + 'member_access_details_create_report': EventTypeArg._member_access_details_create_report_validator, + 'member_access_details_create_report_failed': EventTypeArg._member_access_details_create_report_failed_validator, + 'no_expiration_link_gen_create_report': EventTypeArg._no_expiration_link_gen_create_report_validator, + 'no_expiration_link_gen_report_failed': EventTypeArg._no_expiration_link_gen_report_failed_validator, + 'no_password_link_gen_create_report': EventTypeArg._no_password_link_gen_create_report_validator, + 'no_password_link_gen_report_failed': EventTypeArg._no_password_link_gen_report_failed_validator, + 'no_password_link_view_create_report': EventTypeArg._no_password_link_view_create_report_validator, + 'no_password_link_view_report_failed': EventTypeArg._no_password_link_view_report_failed_validator, + 'outdated_link_view_create_report': EventTypeArg._outdated_link_view_create_report_validator, + 'outdated_link_view_report_failed': EventTypeArg._outdated_link_view_report_failed_validator, + 'paper_admin_export_start': EventTypeArg._paper_admin_export_start_validator, + 'ransomware_alert_create_report': EventTypeArg._ransomware_alert_create_report_validator, + 'ransomware_alert_create_report_failed': EventTypeArg._ransomware_alert_create_report_failed_validator, + 'shared_folders_create_report': EventTypeArg._shared_folders_create_report_validator, + 'shared_folders_create_report_failed': EventTypeArg._shared_folders_create_report_failed_validator, + 'smart_sync_create_admin_privilege_report': EventTypeArg._smart_sync_create_admin_privilege_report_validator, + 'team_activity_create_report': EventTypeArg._team_activity_create_report_validator, + 'team_activity_create_report_fail': EventTypeArg._team_activity_create_report_fail_validator, + 'team_folders_create_report': EventTypeArg._team_folders_create_report_validator, + 'team_folders_create_report_failed': EventTypeArg._team_folders_create_report_failed_validator, + 'team_storage_create_report': EventTypeArg._team_storage_create_report_validator, + 'team_storage_create_report_failed': EventTypeArg._team_storage_create_report_failed_validator, + 'collection_share': EventTypeArg._collection_share_validator, + 'file_transfers_file_add': EventTypeArg._file_transfers_file_add_validator, + 'file_transfers_transfer_delete': EventTypeArg._file_transfers_transfer_delete_validator, + 'file_transfers_transfer_download': EventTypeArg._file_transfers_transfer_download_validator, + 'file_transfers_transfer_send': EventTypeArg._file_transfers_transfer_send_validator, + 'file_transfers_transfer_view': EventTypeArg._file_transfers_transfer_view_validator, + 'media_hub_project_team_add': EventTypeArg._media_hub_project_team_add_validator, + 'media_hub_project_team_delete': EventTypeArg._media_hub_project_team_delete_validator, + 'media_hub_project_team_role_changed': EventTypeArg._media_hub_project_team_role_changed_validator, + 'media_hub_shared_link_audience_changed': EventTypeArg._media_hub_shared_link_audience_changed_validator, + 'media_hub_shared_link_created': EventTypeArg._media_hub_shared_link_created_validator, + 'media_hub_shared_link_download_setting_changed': EventTypeArg._media_hub_shared_link_download_setting_changed_validator, + 'media_hub_shared_link_revoked': EventTypeArg._media_hub_shared_link_revoked_validator, + 'note_acl_invite_only': EventTypeArg._note_acl_invite_only_validator, + 'note_acl_link': EventTypeArg._note_acl_link_validator, + 'note_acl_team_link': EventTypeArg._note_acl_team_link_validator, + 'note_shared': EventTypeArg._note_shared_validator, + 'note_share_receive': EventTypeArg._note_share_receive_validator, + 'open_note_shared': EventTypeArg._open_note_shared_validator, + 'replay_file_shared_link_created': EventTypeArg._replay_file_shared_link_created_validator, + 'replay_file_shared_link_modified': EventTypeArg._replay_file_shared_link_modified_validator, + 'replay_project_team_add': EventTypeArg._replay_project_team_add_validator, + 'replay_project_team_delete': EventTypeArg._replay_project_team_delete_validator, + 'send_and_track_file_added': EventTypeArg._send_and_track_file_added_validator, + 'send_and_track_file_renamed': EventTypeArg._send_and_track_file_renamed_validator, + 'send_and_track_file_updated': EventTypeArg._send_and_track_file_updated_validator, + 'send_and_track_link_created': EventTypeArg._send_and_track_link_created_validator, + 'send_and_track_link_deleted': EventTypeArg._send_and_track_link_deleted_validator, + 'send_and_track_link_updated': EventTypeArg._send_and_track_link_updated_validator, + 'send_and_track_link_viewed': EventTypeArg._send_and_track_link_viewed_validator, + 'send_and_track_removed_file_and_associated_links': EventTypeArg._send_and_track_removed_file_and_associated_links_validator, + 'sf_add_group': EventTypeArg._sf_add_group_validator, + 'sf_allow_non_members_to_view_shared_links': EventTypeArg._sf_allow_non_members_to_view_shared_links_validator, + 'sf_external_invite_warn': EventTypeArg._sf_external_invite_warn_validator, + 'sf_fb_invite': EventTypeArg._sf_fb_invite_validator, + 'sf_fb_invite_change_role': EventTypeArg._sf_fb_invite_change_role_validator, + 'sf_fb_uninvite': EventTypeArg._sf_fb_uninvite_validator, + 'sf_invite_group': EventTypeArg._sf_invite_group_validator, + 'sf_team_grant_access': EventTypeArg._sf_team_grant_access_validator, + 'sf_team_invite': EventTypeArg._sf_team_invite_validator, + 'sf_team_invite_change_role': EventTypeArg._sf_team_invite_change_role_validator, + 'sf_team_join': EventTypeArg._sf_team_join_validator, + 'sf_team_join_from_oob_link': EventTypeArg._sf_team_join_from_oob_link_validator, + 'sf_team_uninvite': EventTypeArg._sf_team_uninvite_validator, + 'shared_content_add_invitees': EventTypeArg._shared_content_add_invitees_validator, + 'shared_content_add_link_expiry': EventTypeArg._shared_content_add_link_expiry_validator, + 'shared_content_add_link_password': EventTypeArg._shared_content_add_link_password_validator, + 'shared_content_add_member': EventTypeArg._shared_content_add_member_validator, + 'shared_content_change_downloads_policy': EventTypeArg._shared_content_change_downloads_policy_validator, + 'shared_content_change_invitee_role': EventTypeArg._shared_content_change_invitee_role_validator, + 'shared_content_change_link_audience': EventTypeArg._shared_content_change_link_audience_validator, + 'shared_content_change_link_expiry': EventTypeArg._shared_content_change_link_expiry_validator, + 'shared_content_change_link_password': EventTypeArg._shared_content_change_link_password_validator, + 'shared_content_change_member_role': EventTypeArg._shared_content_change_member_role_validator, + 'shared_content_change_viewer_info_policy': EventTypeArg._shared_content_change_viewer_info_policy_validator, + 'shared_content_claim_invitation': EventTypeArg._shared_content_claim_invitation_validator, + 'shared_content_copy': EventTypeArg._shared_content_copy_validator, + 'shared_content_download': EventTypeArg._shared_content_download_validator, + 'shared_content_relinquish_membership': EventTypeArg._shared_content_relinquish_membership_validator, + 'shared_content_remove_invitees': EventTypeArg._shared_content_remove_invitees_validator, + 'shared_content_remove_link_expiry': EventTypeArg._shared_content_remove_link_expiry_validator, + 'shared_content_remove_link_password': EventTypeArg._shared_content_remove_link_password_validator, + 'shared_content_remove_member': EventTypeArg._shared_content_remove_member_validator, + 'shared_content_request_access': EventTypeArg._shared_content_request_access_validator, + 'shared_content_restore_invitees': EventTypeArg._shared_content_restore_invitees_validator, + 'shared_content_restore_member': EventTypeArg._shared_content_restore_member_validator, + 'shared_content_unshare': EventTypeArg._shared_content_unshare_validator, + 'shared_content_view': EventTypeArg._shared_content_view_validator, + 'shared_folder_change_link_policy': EventTypeArg._shared_folder_change_link_policy_validator, + 'shared_folder_change_members_inheritance_policy': EventTypeArg._shared_folder_change_members_inheritance_policy_validator, + 'shared_folder_change_members_management_policy': EventTypeArg._shared_folder_change_members_management_policy_validator, + 'shared_folder_change_members_policy': EventTypeArg._shared_folder_change_members_policy_validator, + 'shared_folder_create': EventTypeArg._shared_folder_create_validator, + 'shared_folder_decline_invitation': EventTypeArg._shared_folder_decline_invitation_validator, + 'shared_folder_mount': EventTypeArg._shared_folder_mount_validator, + 'shared_folder_nest': EventTypeArg._shared_folder_nest_validator, + 'shared_folder_transfer_ownership': EventTypeArg._shared_folder_transfer_ownership_validator, + 'shared_folder_unmount': EventTypeArg._shared_folder_unmount_validator, + 'shared_link_add_expiry': EventTypeArg._shared_link_add_expiry_validator, + 'shared_link_change_expiry': EventTypeArg._shared_link_change_expiry_validator, + 'shared_link_change_visibility': EventTypeArg._shared_link_change_visibility_validator, + 'shared_link_copy': EventTypeArg._shared_link_copy_validator, + 'shared_link_create': EventTypeArg._shared_link_create_validator, + 'shared_link_disable': EventTypeArg._shared_link_disable_validator, + 'shared_link_download': EventTypeArg._shared_link_download_validator, + 'shared_link_remove_expiry': EventTypeArg._shared_link_remove_expiry_validator, + 'shared_link_remove_visitor': EventTypeArg._shared_link_remove_visitor_validator, + 'shared_link_settings_add_expiration': EventTypeArg._shared_link_settings_add_expiration_validator, + 'shared_link_settings_add_password': EventTypeArg._shared_link_settings_add_password_validator, + 'shared_link_settings_allow_download_disabled': EventTypeArg._shared_link_settings_allow_download_disabled_validator, + 'shared_link_settings_allow_download_enabled': EventTypeArg._shared_link_settings_allow_download_enabled_validator, + 'shared_link_settings_change_audience': EventTypeArg._shared_link_settings_change_audience_validator, + 'shared_link_settings_change_expiration': EventTypeArg._shared_link_settings_change_expiration_validator, + 'shared_link_settings_change_password': EventTypeArg._shared_link_settings_change_password_validator, + 'shared_link_settings_remove_expiration': EventTypeArg._shared_link_settings_remove_expiration_validator, + 'shared_link_settings_remove_password': EventTypeArg._shared_link_settings_remove_password_validator, + 'shared_link_share': EventTypeArg._shared_link_share_validator, + 'shared_link_view': EventTypeArg._shared_link_view_validator, + 'shared_note_opened': EventTypeArg._shared_note_opened_validator, + 'shmodel_disable_downloads': EventTypeArg._shmodel_disable_downloads_validator, + 'shmodel_enable_downloads': EventTypeArg._shmodel_enable_downloads_validator, + 'shmodel_group_share': EventTypeArg._shmodel_group_share_validator, + 'showcase_access_granted': EventTypeArg._showcase_access_granted_validator, + 'showcase_add_member': EventTypeArg._showcase_add_member_validator, + 'showcase_archived': EventTypeArg._showcase_archived_validator, + 'showcase_created': EventTypeArg._showcase_created_validator, + 'showcase_delete_comment': EventTypeArg._showcase_delete_comment_validator, + 'showcase_edited': EventTypeArg._showcase_edited_validator, + 'showcase_edit_comment': EventTypeArg._showcase_edit_comment_validator, + 'showcase_file_added': EventTypeArg._showcase_file_added_validator, + 'showcase_file_download': EventTypeArg._showcase_file_download_validator, + 'showcase_file_removed': EventTypeArg._showcase_file_removed_validator, + 'showcase_file_view': EventTypeArg._showcase_file_view_validator, + 'showcase_permanently_deleted': EventTypeArg._showcase_permanently_deleted_validator, + 'showcase_post_comment': EventTypeArg._showcase_post_comment_validator, + 'showcase_remove_member': EventTypeArg._showcase_remove_member_validator, + 'showcase_renamed': EventTypeArg._showcase_renamed_validator, + 'showcase_request_access': EventTypeArg._showcase_request_access_validator, + 'showcase_resolve_comment': EventTypeArg._showcase_resolve_comment_validator, + 'showcase_restored': EventTypeArg._showcase_restored_validator, + 'showcase_trashed': EventTypeArg._showcase_trashed_validator, + 'showcase_trashed_deprecated': EventTypeArg._showcase_trashed_deprecated_validator, + 'showcase_unresolve_comment': EventTypeArg._showcase_unresolve_comment_validator, + 'showcase_untrashed': EventTypeArg._showcase_untrashed_validator, + 'showcase_untrashed_deprecated': EventTypeArg._showcase_untrashed_deprecated_validator, + 'showcase_view': EventTypeArg._showcase_view_validator, + 'sign_signature_request_canceled': EventTypeArg._sign_signature_request_canceled_validator, + 'sign_signature_request_completed': EventTypeArg._sign_signature_request_completed_validator, + 'sign_signature_request_declined': EventTypeArg._sign_signature_request_declined_validator, + 'sign_signature_request_opened': EventTypeArg._sign_signature_request_opened_validator, + 'sign_signature_request_reminder_sent': EventTypeArg._sign_signature_request_reminder_sent_validator, + 'sign_signature_request_sent': EventTypeArg._sign_signature_request_sent_validator, + 'sign_template_created': EventTypeArg._sign_template_created_validator, + 'sign_template_shared': EventTypeArg._sign_template_shared_validator, + 'risc_security_event': EventTypeArg._risc_security_event_validator, + 'sso_add_cert': EventTypeArg._sso_add_cert_validator, + 'sso_add_login_url': EventTypeArg._sso_add_login_url_validator, + 'sso_add_logout_url': EventTypeArg._sso_add_logout_url_validator, + 'sso_change_cert': EventTypeArg._sso_change_cert_validator, + 'sso_change_login_url': EventTypeArg._sso_change_login_url_validator, + 'sso_change_logout_url': EventTypeArg._sso_change_logout_url_validator, + 'sso_change_saml_identity_mode': EventTypeArg._sso_change_saml_identity_mode_validator, + 'sso_remove_cert': EventTypeArg._sso_remove_cert_validator, + 'sso_remove_login_url': EventTypeArg._sso_remove_login_url_validator, + 'sso_remove_logout_url': EventTypeArg._sso_remove_logout_url_validator, + 'team_folder_change_status': EventTypeArg._team_folder_change_status_validator, + 'team_folder_create': EventTypeArg._team_folder_create_validator, + 'team_folder_downgrade': EventTypeArg._team_folder_downgrade_validator, + 'team_folder_permanently_delete': EventTypeArg._team_folder_permanently_delete_validator, + 'team_folder_rename': EventTypeArg._team_folder_rename_validator, + 'team_folder_space_limits_change_caps_type': EventTypeArg._team_folder_space_limits_change_caps_type_validator, + 'team_folder_space_limits_change_limit': EventTypeArg._team_folder_space_limits_change_limit_validator, + 'team_folder_space_limits_change_notification_target': EventTypeArg._team_folder_space_limits_change_notification_target_validator, + 'team_selective_sync_settings_changed': EventTypeArg._team_selective_sync_settings_changed_validator, + 'account_capture_change_policy': EventTypeArg._account_capture_change_policy_validator, + 'admin_email_reminders_changed': EventTypeArg._admin_email_reminders_changed_validator, + 'ai_third_party_sharing_dropbox_base_policy_changed': EventTypeArg._ai_third_party_sharing_dropbox_base_policy_changed_validator, + 'allow_download_disabled': EventTypeArg._allow_download_disabled_validator, + 'allow_download_enabled': EventTypeArg._allow_download_enabled_validator, + 'apple_login_change_policy': EventTypeArg._apple_login_change_policy_validator, + 'app_permissions_changed': EventTypeArg._app_permissions_changed_validator, + 'camera_uploads_policy_changed': EventTypeArg._camera_uploads_policy_changed_validator, + 'capture_team_space_policy_changed': EventTypeArg._capture_team_space_policy_changed_validator, + 'capture_transcript_policy_changed': EventTypeArg._capture_transcript_policy_changed_validator, + 'classification_change_policy': EventTypeArg._classification_change_policy_validator, + 'computer_backup_policy_changed': EventTypeArg._computer_backup_policy_changed_validator, + 'content_administration_policy_changed': EventTypeArg._content_administration_policy_changed_validator, + 'content_deletion_protection_change_policy': EventTypeArg._content_deletion_protection_change_policy_validator, + 'dash_external_sharing_policy_changed': EventTypeArg._dash_external_sharing_policy_changed_validator, + 'data_placement_restriction_change_policy': EventTypeArg._data_placement_restriction_change_policy_validator, + 'data_placement_restriction_satisfy_policy': EventTypeArg._data_placement_restriction_satisfy_policy_validator, + 'device_approvals_add_exception': EventTypeArg._device_approvals_add_exception_validator, + 'device_approvals_change_desktop_policy': EventTypeArg._device_approvals_change_desktop_policy_validator, + 'device_approvals_change_mobile_policy': EventTypeArg._device_approvals_change_mobile_policy_validator, + 'device_approvals_change_overage_action': EventTypeArg._device_approvals_change_overage_action_validator, + 'device_approvals_change_unlink_action': EventTypeArg._device_approvals_change_unlink_action_validator, + 'device_approvals_remove_exception': EventTypeArg._device_approvals_remove_exception_validator, + 'directory_restrictions_add_members': EventTypeArg._directory_restrictions_add_members_validator, + 'directory_restrictions_remove_members': EventTypeArg._directory_restrictions_remove_members_validator, + 'dropbox_passwords_policy_changed': EventTypeArg._dropbox_passwords_policy_changed_validator, + 'email_ingest_policy_changed': EventTypeArg._email_ingest_policy_changed_validator, + 'emm_add_exception': EventTypeArg._emm_add_exception_validator, + 'emm_change_policy': EventTypeArg._emm_change_policy_validator, + 'emm_remove_exception': EventTypeArg._emm_remove_exception_validator, + 'extended_version_history_change_policy': EventTypeArg._extended_version_history_change_policy_validator, + 'external_drive_backup_policy_changed': EventTypeArg._external_drive_backup_policy_changed_validator, + 'file_comments_change_policy': EventTypeArg._file_comments_change_policy_validator, + 'file_locking_policy_changed': EventTypeArg._file_locking_policy_changed_validator, + 'file_provider_migration_policy_changed': EventTypeArg._file_provider_migration_policy_changed_validator, + 'file_requests_change_policy': EventTypeArg._file_requests_change_policy_validator, + 'file_requests_emails_enabled': EventTypeArg._file_requests_emails_enabled_validator, + 'file_requests_emails_restricted_to_team_only': EventTypeArg._file_requests_emails_restricted_to_team_only_validator, + 'file_transfers_policy_changed': EventTypeArg._file_transfers_policy_changed_validator, + 'flexible_file_names_policy_changed': EventTypeArg._flexible_file_names_policy_changed_validator, + 'folder_link_restriction_policy_changed': EventTypeArg._folder_link_restriction_policy_changed_validator, + 'google_sso_change_policy': EventTypeArg._google_sso_change_policy_validator, + 'group_user_management_change_policy': EventTypeArg._group_user_management_change_policy_validator, + 'integration_policy_changed': EventTypeArg._integration_policy_changed_validator, + 'invite_acceptance_email_policy_changed': EventTypeArg._invite_acceptance_email_policy_changed_validator, + 'media_hub_adding_people_policy_changed': EventTypeArg._media_hub_adding_people_policy_changed_validator, + 'media_hub_download_policy_changed': EventTypeArg._media_hub_download_policy_changed_validator, + 'media_hub_link_sharing_policy_changed': EventTypeArg._media_hub_link_sharing_policy_changed_validator, + 'member_requests_change_policy': EventTypeArg._member_requests_change_policy_validator, + 'member_send_invite_policy_changed': EventTypeArg._member_send_invite_policy_changed_validator, + 'member_space_limits_add_exception': EventTypeArg._member_space_limits_add_exception_validator, + 'member_space_limits_change_caps_type_policy': EventTypeArg._member_space_limits_change_caps_type_policy_validator, + 'member_space_limits_change_policy': EventTypeArg._member_space_limits_change_policy_validator, + 'member_space_limits_remove_exception': EventTypeArg._member_space_limits_remove_exception_validator, + 'member_suggestions_change_policy': EventTypeArg._member_suggestions_change_policy_validator, + 'microsoft_login_change_policy': EventTypeArg._microsoft_login_change_policy_validator, + 'microsoft_office_addin_change_policy': EventTypeArg._microsoft_office_addin_change_policy_validator, + 'multi_team_identity_policy_changed': EventTypeArg._multi_team_identity_policy_changed_validator, + 'network_control_change_policy': EventTypeArg._network_control_change_policy_validator, + 'paper_change_deployment_policy': EventTypeArg._paper_change_deployment_policy_validator, + 'paper_change_member_link_policy': EventTypeArg._paper_change_member_link_policy_validator, + 'paper_change_member_policy': EventTypeArg._paper_change_member_policy_validator, + 'paper_change_policy': EventTypeArg._paper_change_policy_validator, + 'paper_default_folder_policy_changed': EventTypeArg._paper_default_folder_policy_changed_validator, + 'paper_desktop_policy_changed': EventTypeArg._paper_desktop_policy_changed_validator, + 'paper_enabled_users_group_addition': EventTypeArg._paper_enabled_users_group_addition_validator, + 'paper_enabled_users_group_removal': EventTypeArg._paper_enabled_users_group_removal_validator, + 'passkey_login_policy_changed': EventTypeArg._passkey_login_policy_changed_validator, + 'password_strength_requirements_change_policy': EventTypeArg._password_strength_requirements_change_policy_validator, + 'permanent_delete_change_policy': EventTypeArg._permanent_delete_change_policy_validator, + 'previews_ai_policy_changed': EventTypeArg._previews_ai_policy_changed_validator, + 'replay_adding_people_policy_changed': EventTypeArg._replay_adding_people_policy_changed_validator, + 'replay_sharing_policy_changed': EventTypeArg._replay_sharing_policy_changed_validator, + 'reseller_support_change_policy': EventTypeArg._reseller_support_change_policy_validator, + 'rewind_policy_changed': EventTypeArg._rewind_policy_changed_validator, + 'send_and_track_policy_changed': EventTypeArg._send_and_track_policy_changed_validator, + 'send_external_sharing_policy_changed': EventTypeArg._send_external_sharing_policy_changed_validator, + 'send_for_signature_policy_changed': EventTypeArg._send_for_signature_policy_changed_validator, + 'shared_link_default_permissions_policy_changed': EventTypeArg._shared_link_default_permissions_policy_changed_validator, + 'sharing_change_folder_join_policy': EventTypeArg._sharing_change_folder_join_policy_validator, + 'sharing_change_link_allow_change_expiration_policy': EventTypeArg._sharing_change_link_allow_change_expiration_policy_validator, + 'sharing_change_link_default_expiration_policy': EventTypeArg._sharing_change_link_default_expiration_policy_validator, + 'sharing_change_link_enforce_password_policy': EventTypeArg._sharing_change_link_enforce_password_policy_validator, + 'sharing_change_link_policy': EventTypeArg._sharing_change_link_policy_validator, + 'sharing_change_member_policy': EventTypeArg._sharing_change_member_policy_validator, + 'showcase_change_download_policy': EventTypeArg._showcase_change_download_policy_validator, + 'showcase_change_enabled_policy': EventTypeArg._showcase_change_enabled_policy_validator, + 'showcase_change_external_sharing_policy': EventTypeArg._showcase_change_external_sharing_policy_validator, + 'sign_external_sharing_policy_changed': EventTypeArg._sign_external_sharing_policy_changed_validator, + 'sign_template_creation_permission_changed': EventTypeArg._sign_template_creation_permission_changed_validator, + 'smarter_smart_sync_policy_changed': EventTypeArg._smarter_smart_sync_policy_changed_validator, + 'smart_sync_change_policy': EventTypeArg._smart_sync_change_policy_validator, + 'smart_sync_not_opt_out': EventTypeArg._smart_sync_not_opt_out_validator, + 'smart_sync_opt_out': EventTypeArg._smart_sync_opt_out_validator, + 'sso_change_policy': EventTypeArg._sso_change_policy_validator, + 'stack_cross_team_access_policy_changed': EventTypeArg._stack_cross_team_access_policy_changed_validator, + 'team_branding_policy_changed': EventTypeArg._team_branding_policy_changed_validator, + 'team_extensions_policy_changed': EventTypeArg._team_extensions_policy_changed_validator, + 'team_member_storage_request_policy_changed': EventTypeArg._team_member_storage_request_policy_changed_validator, + 'team_selective_sync_policy_changed': EventTypeArg._team_selective_sync_policy_changed_validator, + 'team_sharing_whitelist_subjects_changed': EventTypeArg._team_sharing_whitelist_subjects_changed_validator, + 'tfa_add_exception': EventTypeArg._tfa_add_exception_validator, + 'tfa_change_policy': EventTypeArg._tfa_change_policy_validator, + 'tfa_remove_exception': EventTypeArg._tfa_remove_exception_validator, + 'top_level_content_policy_changed': EventTypeArg._top_level_content_policy_changed_validator, + 'two_account_change_policy': EventTypeArg._two_account_change_policy_validator, + 'viewer_info_policy_changed': EventTypeArg._viewer_info_policy_changed_validator, + 'watermarking_policy_changed': EventTypeArg._watermarking_policy_changed_validator, + 'web_sessions_change_active_session_limit': EventTypeArg._web_sessions_change_active_session_limit_validator, + 'web_sessions_change_fixed_length_policy': EventTypeArg._web_sessions_change_fixed_length_policy_validator, + 'web_sessions_change_idle_length_policy': EventTypeArg._web_sessions_change_idle_length_policy_validator, + 'data_residency_migration_request_successful': EventTypeArg._data_residency_migration_request_successful_validator, + 'data_residency_migration_request_unsuccessful': EventTypeArg._data_residency_migration_request_unsuccessful_validator, + 'team_merge_from': EventTypeArg._team_merge_from_validator, + 'team_merge_to': EventTypeArg._team_merge_to_validator, + 'team_profile_add_background': EventTypeArg._team_profile_add_background_validator, + 'team_profile_add_logo': EventTypeArg._team_profile_add_logo_validator, + 'team_profile_change_background': EventTypeArg._team_profile_change_background_validator, + 'team_profile_change_default_language': EventTypeArg._team_profile_change_default_language_validator, + 'team_profile_change_logo': EventTypeArg._team_profile_change_logo_validator, + 'team_profile_change_name': EventTypeArg._team_profile_change_name_validator, + 'team_profile_remove_background': EventTypeArg._team_profile_remove_background_validator, + 'team_profile_remove_logo': EventTypeArg._team_profile_remove_logo_validator, + 'passkey_add': EventTypeArg._passkey_add_validator, + 'passkey_remove': EventTypeArg._passkey_remove_validator, + 'tfa_add_backup_phone': EventTypeArg._tfa_add_backup_phone_validator, + 'tfa_add_security_key': EventTypeArg._tfa_add_security_key_validator, + 'tfa_change_backup_phone': EventTypeArg._tfa_change_backup_phone_validator, + 'tfa_change_status': EventTypeArg._tfa_change_status_validator, + 'tfa_remove_backup_phone': EventTypeArg._tfa_remove_backup_phone_validator, + 'tfa_remove_security_key': EventTypeArg._tfa_remove_security_key_validator, + 'tfa_reset': EventTypeArg._tfa_reset_validator, + 'changed_enterprise_admin_role': EventTypeArg._changed_enterprise_admin_role_validator, + 'changed_enterprise_connected_team_status': EventTypeArg._changed_enterprise_connected_team_status_validator, + 'ended_enterprise_admin_session': EventTypeArg._ended_enterprise_admin_session_validator, + 'ended_enterprise_admin_session_deprecated': EventTypeArg._ended_enterprise_admin_session_deprecated_validator, + 'enterprise_settings_locking': EventTypeArg._enterprise_settings_locking_validator, + 'guest_admin_change_status': EventTypeArg._guest_admin_change_status_validator, + 'started_enterprise_admin_session': EventTypeArg._started_enterprise_admin_session_validator, + 'team_merge_request_accepted': EventTypeArg._team_merge_request_accepted_validator, + 'team_merge_request_accepted_shown_to_primary_team': EventTypeArg._team_merge_request_accepted_shown_to_primary_team_validator, + 'team_merge_request_accepted_shown_to_secondary_team': EventTypeArg._team_merge_request_accepted_shown_to_secondary_team_validator, + 'team_merge_request_auto_canceled': EventTypeArg._team_merge_request_auto_canceled_validator, + 'team_merge_request_canceled': EventTypeArg._team_merge_request_canceled_validator, + 'team_merge_request_canceled_shown_to_primary_team': EventTypeArg._team_merge_request_canceled_shown_to_primary_team_validator, + 'team_merge_request_canceled_shown_to_secondary_team': EventTypeArg._team_merge_request_canceled_shown_to_secondary_team_validator, + 'team_merge_request_expired': EventTypeArg._team_merge_request_expired_validator, + 'team_merge_request_expired_shown_to_primary_team': EventTypeArg._team_merge_request_expired_shown_to_primary_team_validator, + 'team_merge_request_expired_shown_to_secondary_team': EventTypeArg._team_merge_request_expired_shown_to_secondary_team_validator, + 'team_merge_request_rejected_shown_to_primary_team': EventTypeArg._team_merge_request_rejected_shown_to_primary_team_validator, + 'team_merge_request_rejected_shown_to_secondary_team': EventTypeArg._team_merge_request_rejected_shown_to_secondary_team_validator, + 'team_merge_request_reminder': EventTypeArg._team_merge_request_reminder_validator, + 'team_merge_request_reminder_shown_to_primary_team': EventTypeArg._team_merge_request_reminder_shown_to_primary_team_validator, + 'team_merge_request_reminder_shown_to_secondary_team': EventTypeArg._team_merge_request_reminder_shown_to_secondary_team_validator, + 'team_merge_request_revoked': EventTypeArg._team_merge_request_revoked_validator, + 'team_merge_request_sent_shown_to_primary_team': EventTypeArg._team_merge_request_sent_shown_to_primary_team_validator, + 'team_merge_request_sent_shown_to_secondary_team': EventTypeArg._team_merge_request_sent_shown_to_secondary_team_validator, + 'other': EventTypeArg._other_validator, } -EventTypeArg.admin_alerting_alert_state_changed = EventTypeArg("admin_alerting_alert_state_changed") -EventTypeArg.admin_alerting_changed_alert_config = EventTypeArg( - "admin_alerting_changed_alert_config" -) -EventTypeArg.admin_alerting_triggered_alert = EventTypeArg("admin_alerting_triggered_alert") -EventTypeArg.ransomware_restore_process_completed = EventTypeArg( - "ransomware_restore_process_completed" -) -EventTypeArg.ransomware_restore_process_started = EventTypeArg("ransomware_restore_process_started") -EventTypeArg.app_blocked_by_permissions = EventTypeArg("app_blocked_by_permissions") -EventTypeArg.app_link_team = EventTypeArg("app_link_team") -EventTypeArg.app_link_user = EventTypeArg("app_link_user") -EventTypeArg.app_unlink_team = EventTypeArg("app_unlink_team") -EventTypeArg.app_unlink_user = EventTypeArg("app_unlink_user") -EventTypeArg.integration_connected = EventTypeArg("integration_connected") -EventTypeArg.integration_disconnected = EventTypeArg("integration_disconnected") -EventTypeArg.file_add_comment = EventTypeArg("file_add_comment") -EventTypeArg.file_change_comment_subscription = EventTypeArg("file_change_comment_subscription") -EventTypeArg.file_delete_comment = EventTypeArg("file_delete_comment") -EventTypeArg.file_edit_comment = EventTypeArg("file_edit_comment") -EventTypeArg.file_like_comment = EventTypeArg("file_like_comment") -EventTypeArg.file_resolve_comment = EventTypeArg("file_resolve_comment") -EventTypeArg.file_unlike_comment = EventTypeArg("file_unlike_comment") -EventTypeArg.file_unresolve_comment = EventTypeArg("file_unresolve_comment") -EventTypeArg.dash_added_comment_to_stack = EventTypeArg("dash_added_comment_to_stack") -EventTypeArg.dash_added_connector = EventTypeArg("dash_added_connector") -EventTypeArg.dash_added_link_to_stack = EventTypeArg("dash_added_link_to_stack") -EventTypeArg.dash_added_team_email_domain_allowlist = EventTypeArg( - "dash_added_team_email_domain_allowlist" -) -EventTypeArg.dash_admin_added_org_wide_connector = EventTypeArg( - "dash_admin_added_org_wide_connector" -) -EventTypeArg.dash_admin_disabled_connector = EventTypeArg("dash_admin_disabled_connector") -EventTypeArg.dash_admin_enabled_connector = EventTypeArg("dash_admin_enabled_connector") -EventTypeArg.dash_admin_removed_org_wide_connector = EventTypeArg( - "dash_admin_removed_org_wide_connector" -) -EventTypeArg.dash_archived_stack = EventTypeArg("dash_archived_stack") -EventTypeArg.dash_changed_audience_of_shared_link_to_stack = EventTypeArg( - "dash_changed_audience_of_shared_link_to_stack" -) -EventTypeArg.dash_cloned_stack = EventTypeArg("dash_cloned_stack") -EventTypeArg.dash_connector_tools_call = EventTypeArg("dash_connector_tools_call") -EventTypeArg.dash_created_stack = EventTypeArg("dash_created_stack") -EventTypeArg.dash_deleted_comment_from_stack = EventTypeArg("dash_deleted_comment_from_stack") -EventTypeArg.dash_deleted_stack = EventTypeArg("dash_deleted_stack") -EventTypeArg.dash_edited_comment_in_stack = EventTypeArg("dash_edited_comment_in_stack") -EventTypeArg.dash_external_user_opened_stack = EventTypeArg("dash_external_user_opened_stack") -EventTypeArg.dash_first_launched_desktop = EventTypeArg("dash_first_launched_desktop") -EventTypeArg.dash_first_launched_extension = EventTypeArg("dash_first_launched_extension") -EventTypeArg.dash_first_launched_web_start_page = EventTypeArg("dash_first_launched_web_start_page") -EventTypeArg.dash_opened_shared_link_to_stack = EventTypeArg("dash_opened_shared_link_to_stack") -EventTypeArg.dash_opened_stack = EventTypeArg("dash_opened_stack") -EventTypeArg.dash_preview_opt_out_status_changed = EventTypeArg( - "dash_preview_opt_out_status_changed" -) -EventTypeArg.dash_removed_connector = EventTypeArg("dash_removed_connector") -EventTypeArg.dash_removed_link_from_stack = EventTypeArg("dash_removed_link_from_stack") -EventTypeArg.dash_removed_shared_link_to_stack = EventTypeArg("dash_removed_shared_link_to_stack") -EventTypeArg.dash_removed_team_email_domain_allowlist = EventTypeArg( - "dash_removed_team_email_domain_allowlist" -) -EventTypeArg.dash_renamed_stack = EventTypeArg("dash_renamed_stack") -EventTypeArg.dash_shared_link_to_stack = EventTypeArg("dash_shared_link_to_stack") -EventTypeArg.dash_unarchived_stack = EventTypeArg("dash_unarchived_stack") -EventTypeArg.dash_viewed_company_stack = EventTypeArg("dash_viewed_company_stack") -EventTypeArg.dash_viewed_external_ai_activity_report = EventTypeArg( - "dash_viewed_external_ai_activity_report" -) -EventTypeArg.governance_policy_add_folders = EventTypeArg("governance_policy_add_folders") -EventTypeArg.governance_policy_add_folder_failed = EventTypeArg( - "governance_policy_add_folder_failed" -) -EventTypeArg.governance_policy_content_disposed = EventTypeArg("governance_policy_content_disposed") -EventTypeArg.governance_policy_create = EventTypeArg("governance_policy_create") -EventTypeArg.governance_policy_delete = EventTypeArg("governance_policy_delete") -EventTypeArg.governance_policy_edit_details = EventTypeArg("governance_policy_edit_details") -EventTypeArg.governance_policy_edit_duration = EventTypeArg("governance_policy_edit_duration") -EventTypeArg.governance_policy_export_created = EventTypeArg("governance_policy_export_created") -EventTypeArg.governance_policy_export_removed = EventTypeArg("governance_policy_export_removed") -EventTypeArg.governance_policy_remove_folders = EventTypeArg("governance_policy_remove_folders") -EventTypeArg.governance_policy_report_created = EventTypeArg("governance_policy_report_created") -EventTypeArg.governance_policy_zip_part_downloaded = EventTypeArg( - "governance_policy_zip_part_downloaded" -) -EventTypeArg.legal_holds_activate_a_hold = EventTypeArg("legal_holds_activate_a_hold") -EventTypeArg.legal_holds_add_members = EventTypeArg("legal_holds_add_members") -EventTypeArg.legal_holds_change_hold_details = EventTypeArg("legal_holds_change_hold_details") -EventTypeArg.legal_holds_change_hold_name = EventTypeArg("legal_holds_change_hold_name") -EventTypeArg.legal_holds_export_a_hold = EventTypeArg("legal_holds_export_a_hold") -EventTypeArg.legal_holds_export_cancelled = EventTypeArg("legal_holds_export_cancelled") -EventTypeArg.legal_holds_export_downloaded = EventTypeArg("legal_holds_export_downloaded") -EventTypeArg.legal_holds_export_removed = EventTypeArg("legal_holds_export_removed") -EventTypeArg.legal_holds_release_a_hold = EventTypeArg("legal_holds_release_a_hold") -EventTypeArg.legal_holds_remove_members = EventTypeArg("legal_holds_remove_members") -EventTypeArg.legal_holds_report_a_hold = EventTypeArg("legal_holds_report_a_hold") -EventTypeArg.device_change_ip_desktop = EventTypeArg("device_change_ip_desktop") -EventTypeArg.device_change_ip_mobile = EventTypeArg("device_change_ip_mobile") -EventTypeArg.device_change_ip_web = EventTypeArg("device_change_ip_web") -EventTypeArg.device_delete_on_unlink_fail = EventTypeArg("device_delete_on_unlink_fail") -EventTypeArg.device_delete_on_unlink_success = EventTypeArg("device_delete_on_unlink_success") -EventTypeArg.device_link_fail = EventTypeArg("device_link_fail") -EventTypeArg.device_link_success = EventTypeArg("device_link_success") -EventTypeArg.device_management_disabled = EventTypeArg("device_management_disabled") -EventTypeArg.device_management_enabled = EventTypeArg("device_management_enabled") -EventTypeArg.device_sync_backup_status_changed = EventTypeArg("device_sync_backup_status_changed") -EventTypeArg.device_unlink = EventTypeArg("device_unlink") -EventTypeArg.dropbox_passwords_exported = EventTypeArg("dropbox_passwords_exported") -EventTypeArg.dropbox_passwords_new_device_enrolled = EventTypeArg( - "dropbox_passwords_new_device_enrolled" -) -EventTypeArg.emm_refresh_auth_token = EventTypeArg("emm_refresh_auth_token") -EventTypeArg.external_drive_backup_eligibility_status_checked = EventTypeArg( - "external_drive_backup_eligibility_status_checked" -) -EventTypeArg.external_drive_backup_status_changed = EventTypeArg( - "external_drive_backup_status_changed" -) -EventTypeArg.account_capture_change_availability = EventTypeArg( - "account_capture_change_availability" -) -EventTypeArg.account_capture_migrate_account = EventTypeArg("account_capture_migrate_account") -EventTypeArg.account_capture_notification_emails_sent = EventTypeArg( - "account_capture_notification_emails_sent" -) -EventTypeArg.account_capture_relinquish_account = EventTypeArg("account_capture_relinquish_account") -EventTypeArg.disabled_domain_invites = EventTypeArg("disabled_domain_invites") -EventTypeArg.domain_invites_approve_request_to_join_team = EventTypeArg( - "domain_invites_approve_request_to_join_team" -) -EventTypeArg.domain_invites_decline_request_to_join_team = EventTypeArg( - "domain_invites_decline_request_to_join_team" -) -EventTypeArg.domain_invites_email_existing_users = EventTypeArg( - "domain_invites_email_existing_users" -) -EventTypeArg.domain_invites_request_to_join_team = EventTypeArg( - "domain_invites_request_to_join_team" -) -EventTypeArg.domain_invites_set_invite_new_user_pref_to_no = EventTypeArg( - "domain_invites_set_invite_new_user_pref_to_no" -) -EventTypeArg.domain_invites_set_invite_new_user_pref_to_yes = EventTypeArg( - "domain_invites_set_invite_new_user_pref_to_yes" -) -EventTypeArg.domain_verification_add_domain_fail = EventTypeArg( - "domain_verification_add_domain_fail" -) -EventTypeArg.domain_verification_add_domain_success = EventTypeArg( - "domain_verification_add_domain_success" -) -EventTypeArg.domain_verification_remove_domain = EventTypeArg("domain_verification_remove_domain") -EventTypeArg.enabled_domain_invites = EventTypeArg("enabled_domain_invites") -EventTypeArg.encrypted_folder_cancel_team_key_rotation = EventTypeArg( - "encrypted_folder_cancel_team_key_rotation" -) -EventTypeArg.encrypted_folder_enroll_backup_key = EventTypeArg("encrypted_folder_enroll_backup_key") -EventTypeArg.encrypted_folder_enroll_client = EventTypeArg("encrypted_folder_enroll_client") -EventTypeArg.encrypted_folder_enroll_team = EventTypeArg("encrypted_folder_enroll_team") -EventTypeArg.encrypted_folder_finish_team_unenrollment = EventTypeArg( - "encrypted_folder_finish_team_unenrollment" -) -EventTypeArg.encrypted_folder_init_team_key_rotation = EventTypeArg( - "encrypted_folder_init_team_key_rotation" -) -EventTypeArg.encrypted_folder_init_team_unenrollment = EventTypeArg( - "encrypted_folder_init_team_unenrollment" -) -EventTypeArg.encrypted_folder_remove_backup_key = EventTypeArg("encrypted_folder_remove_backup_key") -EventTypeArg.encrypted_folder_rotate_team_key = EventTypeArg("encrypted_folder_rotate_team_key") -EventTypeArg.encrypted_folder_unenroll_client = EventTypeArg("encrypted_folder_unenroll_client") -EventTypeArg.team_encryption_key_activate_key = EventTypeArg("team_encryption_key_activate_key") -EventTypeArg.team_encryption_key_cancel_key_deletion = EventTypeArg( - "team_encryption_key_cancel_key_deletion" -) -EventTypeArg.team_encryption_key_create_key = EventTypeArg("team_encryption_key_create_key") -EventTypeArg.team_encryption_key_deactivate_key = EventTypeArg("team_encryption_key_deactivate_key") -EventTypeArg.team_encryption_key_delete_key = EventTypeArg("team_encryption_key_delete_key") -EventTypeArg.team_encryption_key_disable_key = EventTypeArg("team_encryption_key_disable_key") -EventTypeArg.team_encryption_key_enable_key = EventTypeArg("team_encryption_key_enable_key") -EventTypeArg.team_encryption_key_rotate_key = EventTypeArg("team_encryption_key_rotate_key") -EventTypeArg.team_encryption_key_schedule_key_deletion = EventTypeArg( - "team_encryption_key_schedule_key_deletion" -) -EventTypeArg.apply_naming_convention = EventTypeArg("apply_naming_convention") -EventTypeArg.create_folder = EventTypeArg("create_folder") -EventTypeArg.file_add = EventTypeArg("file_add") -EventTypeArg.file_add_from_automation = EventTypeArg("file_add_from_automation") -EventTypeArg.file_copy = EventTypeArg("file_copy") -EventTypeArg.file_delete = EventTypeArg("file_delete") -EventTypeArg.file_download = EventTypeArg("file_download") -EventTypeArg.file_edit = EventTypeArg("file_edit") -EventTypeArg.file_get_copy_reference = EventTypeArg("file_get_copy_reference") -EventTypeArg.file_locking_lock_status_changed = EventTypeArg("file_locking_lock_status_changed") -EventTypeArg.file_move = EventTypeArg("file_move") -EventTypeArg.file_permanently_delete = EventTypeArg("file_permanently_delete") -EventTypeArg.file_preview = EventTypeArg("file_preview") -EventTypeArg.file_rename = EventTypeArg("file_rename") -EventTypeArg.file_restore = EventTypeArg("file_restore") -EventTypeArg.file_revert = EventTypeArg("file_revert") -EventTypeArg.file_rollback_changes = EventTypeArg("file_rollback_changes") -EventTypeArg.file_save_copy_reference = EventTypeArg("file_save_copy_reference") -EventTypeArg.folder_overview_description_changed = EventTypeArg( - "folder_overview_description_changed" -) -EventTypeArg.folder_overview_item_pinned = EventTypeArg("folder_overview_item_pinned") -EventTypeArg.folder_overview_item_unpinned = EventTypeArg("folder_overview_item_unpinned") -EventTypeArg.media_hub_file_downloaded = EventTypeArg("media_hub_file_downloaded") -EventTypeArg.object_label_added = EventTypeArg("object_label_added") -EventTypeArg.object_label_removed = EventTypeArg("object_label_removed") -EventTypeArg.object_label_updated_value = EventTypeArg("object_label_updated_value") -EventTypeArg.organize_folder_with_tidy = EventTypeArg("organize_folder_with_tidy") -EventTypeArg.replay_file_delete = EventTypeArg("replay_file_delete") -EventTypeArg.replay_file_downloaded = EventTypeArg("replay_file_downloaded") -EventTypeArg.replay_team_project_created = EventTypeArg("replay_team_project_created") -EventTypeArg.rewind_folder = EventTypeArg("rewind_folder") -EventTypeArg.undo_naming_convention = EventTypeArg("undo_naming_convention") -EventTypeArg.undo_organize_folder_with_tidy = EventTypeArg("undo_organize_folder_with_tidy") -EventTypeArg.user_tags_added = EventTypeArg("user_tags_added") -EventTypeArg.user_tags_removed = EventTypeArg("user_tags_removed") -EventTypeArg.email_ingest_receive_file = EventTypeArg("email_ingest_receive_file") -EventTypeArg.file_request_auto_close = EventTypeArg("file_request_auto_close") -EventTypeArg.file_request_change = EventTypeArg("file_request_change") -EventTypeArg.file_request_close = EventTypeArg("file_request_close") -EventTypeArg.file_request_create = EventTypeArg("file_request_create") -EventTypeArg.file_request_delete = EventTypeArg("file_request_delete") -EventTypeArg.file_request_receive_file = EventTypeArg("file_request_receive_file") -EventTypeArg.group_add_external_id = EventTypeArg("group_add_external_id") -EventTypeArg.group_add_member = EventTypeArg("group_add_member") -EventTypeArg.group_change_external_id = EventTypeArg("group_change_external_id") -EventTypeArg.group_change_management_type = EventTypeArg("group_change_management_type") -EventTypeArg.group_change_member_role = EventTypeArg("group_change_member_role") -EventTypeArg.group_create = EventTypeArg("group_create") -EventTypeArg.group_delete = EventTypeArg("group_delete") -EventTypeArg.group_description_updated = EventTypeArg("group_description_updated") -EventTypeArg.group_external_sharing_setting_override_changed = EventTypeArg( - "group_external_sharing_setting_override_changed" -) -EventTypeArg.group_join_policy_updated = EventTypeArg("group_join_policy_updated") -EventTypeArg.group_moved = EventTypeArg("group_moved") -EventTypeArg.group_remove_external_id = EventTypeArg("group_remove_external_id") -EventTypeArg.group_remove_member = EventTypeArg("group_remove_member") -EventTypeArg.group_rename = EventTypeArg("group_rename") -EventTypeArg.account_lock_or_unlocked = EventTypeArg("account_lock_or_unlocked") -EventTypeArg.emm_error = EventTypeArg("emm_error") -EventTypeArg.guest_admin_signed_in_via_trusted_teams = EventTypeArg( - "guest_admin_signed_in_via_trusted_teams" -) -EventTypeArg.guest_admin_signed_out_via_trusted_teams = EventTypeArg( - "guest_admin_signed_out_via_trusted_teams" -) -EventTypeArg.login_fail = EventTypeArg("login_fail") -EventTypeArg.login_success = EventTypeArg("login_success") -EventTypeArg.logout = EventTypeArg("logout") -EventTypeArg.reseller_support_session_end = EventTypeArg("reseller_support_session_end") -EventTypeArg.reseller_support_session_start = EventTypeArg("reseller_support_session_start") -EventTypeArg.sign_in_as_session_end = EventTypeArg("sign_in_as_session_end") -EventTypeArg.sign_in_as_session_start = EventTypeArg("sign_in_as_session_start") -EventTypeArg.sso_error = EventTypeArg("sso_error") -EventTypeArg.addon_assigned = EventTypeArg("addon_assigned") -EventTypeArg.addon_removed = EventTypeArg("addon_removed") -EventTypeArg.backup_admin_invitation_sent = EventTypeArg("backup_admin_invitation_sent") -EventTypeArg.backup_invitation_opened = EventTypeArg("backup_invitation_opened") -EventTypeArg.create_team_invite_link = EventTypeArg("create_team_invite_link") -EventTypeArg.delete_team_invite_link = EventTypeArg("delete_team_invite_link") -EventTypeArg.member_add_external_id = EventTypeArg("member_add_external_id") -EventTypeArg.member_add_name = EventTypeArg("member_add_name") -EventTypeArg.member_change_admin_role = EventTypeArg("member_change_admin_role") -EventTypeArg.member_change_email = EventTypeArg("member_change_email") -EventTypeArg.member_change_external_id = EventTypeArg("member_change_external_id") -EventTypeArg.member_change_membership_type = EventTypeArg("member_change_membership_type") -EventTypeArg.member_change_name = EventTypeArg("member_change_name") -EventTypeArg.member_change_reseller_role = EventTypeArg("member_change_reseller_role") -EventTypeArg.member_change_status = EventTypeArg("member_change_status") -EventTypeArg.member_delete_manual_contacts = EventTypeArg("member_delete_manual_contacts") -EventTypeArg.member_delete_profile_photo = EventTypeArg("member_delete_profile_photo") -EventTypeArg.member_permanently_delete_account_contents = EventTypeArg( - "member_permanently_delete_account_contents" -) -EventTypeArg.member_remove_external_id = EventTypeArg("member_remove_external_id") -EventTypeArg.member_set_profile_photo = EventTypeArg("member_set_profile_photo") -EventTypeArg.member_space_limits_add_custom_quota = EventTypeArg( - "member_space_limits_add_custom_quota" -) -EventTypeArg.member_space_limits_change_custom_quota = EventTypeArg( - "member_space_limits_change_custom_quota" -) -EventTypeArg.member_space_limits_change_status = EventTypeArg("member_space_limits_change_status") -EventTypeArg.member_space_limits_remove_custom_quota = EventTypeArg( - "member_space_limits_remove_custom_quota" -) -EventTypeArg.member_suggest = EventTypeArg("member_suggest") -EventTypeArg.member_transfer_account_contents = EventTypeArg("member_transfer_account_contents") -EventTypeArg.pending_secondary_email_added = EventTypeArg("pending_secondary_email_added") -EventTypeArg.product_assigned_to_member = EventTypeArg("product_assigned_to_member") -EventTypeArg.product_removed_from_member = EventTypeArg("product_removed_from_member") -EventTypeArg.secondary_email_deleted = EventTypeArg("secondary_email_deleted") -EventTypeArg.secondary_email_verified = EventTypeArg("secondary_email_verified") -EventTypeArg.secondary_mails_policy_changed = EventTypeArg("secondary_mails_policy_changed") -EventTypeArg.binder_add_page = EventTypeArg("binder_add_page") -EventTypeArg.binder_add_section = EventTypeArg("binder_add_section") -EventTypeArg.binder_remove_page = EventTypeArg("binder_remove_page") -EventTypeArg.binder_remove_section = EventTypeArg("binder_remove_section") -EventTypeArg.binder_rename_page = EventTypeArg("binder_rename_page") -EventTypeArg.binder_rename_section = EventTypeArg("binder_rename_section") -EventTypeArg.binder_reorder_page = EventTypeArg("binder_reorder_page") -EventTypeArg.binder_reorder_section = EventTypeArg("binder_reorder_section") -EventTypeArg.paper_content_add_member = EventTypeArg("paper_content_add_member") -EventTypeArg.paper_content_add_to_folder = EventTypeArg("paper_content_add_to_folder") -EventTypeArg.paper_content_archive = EventTypeArg("paper_content_archive") -EventTypeArg.paper_content_create = EventTypeArg("paper_content_create") -EventTypeArg.paper_content_permanently_delete = EventTypeArg("paper_content_permanently_delete") -EventTypeArg.paper_content_remove_from_folder = EventTypeArg("paper_content_remove_from_folder") -EventTypeArg.paper_content_remove_member = EventTypeArg("paper_content_remove_member") -EventTypeArg.paper_content_rename = EventTypeArg("paper_content_rename") -EventTypeArg.paper_content_restore = EventTypeArg("paper_content_restore") -EventTypeArg.paper_doc_add_comment = EventTypeArg("paper_doc_add_comment") -EventTypeArg.paper_doc_change_member_role = EventTypeArg("paper_doc_change_member_role") -EventTypeArg.paper_doc_change_sharing_policy = EventTypeArg("paper_doc_change_sharing_policy") -EventTypeArg.paper_doc_change_subscription = EventTypeArg("paper_doc_change_subscription") -EventTypeArg.paper_doc_deleted = EventTypeArg("paper_doc_deleted") -EventTypeArg.paper_doc_delete_comment = EventTypeArg("paper_doc_delete_comment") -EventTypeArg.paper_doc_download = EventTypeArg("paper_doc_download") -EventTypeArg.paper_doc_edit = EventTypeArg("paper_doc_edit") -EventTypeArg.paper_doc_edit_comment = EventTypeArg("paper_doc_edit_comment") -EventTypeArg.paper_doc_followed = EventTypeArg("paper_doc_followed") -EventTypeArg.paper_doc_mention = EventTypeArg("paper_doc_mention") -EventTypeArg.paper_doc_ownership_changed = EventTypeArg("paper_doc_ownership_changed") -EventTypeArg.paper_doc_request_access = EventTypeArg("paper_doc_request_access") -EventTypeArg.paper_doc_resolve_comment = EventTypeArg("paper_doc_resolve_comment") -EventTypeArg.paper_doc_revert = EventTypeArg("paper_doc_revert") -EventTypeArg.paper_doc_slack_share = EventTypeArg("paper_doc_slack_share") -EventTypeArg.paper_doc_team_invite = EventTypeArg("paper_doc_team_invite") -EventTypeArg.paper_doc_trashed = EventTypeArg("paper_doc_trashed") -EventTypeArg.paper_doc_unresolve_comment = EventTypeArg("paper_doc_unresolve_comment") -EventTypeArg.paper_doc_untrashed = EventTypeArg("paper_doc_untrashed") -EventTypeArg.paper_doc_view = EventTypeArg("paper_doc_view") -EventTypeArg.paper_external_view_allow = EventTypeArg("paper_external_view_allow") -EventTypeArg.paper_external_view_default_team = EventTypeArg("paper_external_view_default_team") -EventTypeArg.paper_external_view_forbid = EventTypeArg("paper_external_view_forbid") -EventTypeArg.paper_folder_change_subscription = EventTypeArg("paper_folder_change_subscription") -EventTypeArg.paper_folder_deleted = EventTypeArg("paper_folder_deleted") -EventTypeArg.paper_folder_followed = EventTypeArg("paper_folder_followed") -EventTypeArg.paper_folder_team_invite = EventTypeArg("paper_folder_team_invite") -EventTypeArg.paper_published_link_change_permission = EventTypeArg( - "paper_published_link_change_permission" -) -EventTypeArg.paper_published_link_create = EventTypeArg("paper_published_link_create") -EventTypeArg.paper_published_link_disabled = EventTypeArg("paper_published_link_disabled") -EventTypeArg.paper_published_link_view = EventTypeArg("paper_published_link_view") -EventTypeArg.password_change = EventTypeArg("password_change") -EventTypeArg.password_reset = EventTypeArg("password_reset") -EventTypeArg.password_reset_all = EventTypeArg("password_reset_all") -EventTypeArg.protect_internal_domains_changed = EventTypeArg("protect_internal_domains_changed") -EventTypeArg.classification_create_report = EventTypeArg("classification_create_report") -EventTypeArg.classification_create_report_fail = EventTypeArg("classification_create_report_fail") -EventTypeArg.emm_create_exceptions_report = EventTypeArg("emm_create_exceptions_report") -EventTypeArg.emm_create_usage_report = EventTypeArg("emm_create_usage_report") -EventTypeArg.export_members_report = EventTypeArg("export_members_report") -EventTypeArg.export_members_report_fail = EventTypeArg("export_members_report_fail") -EventTypeArg.external_sharing_create_report = EventTypeArg("external_sharing_create_report") -EventTypeArg.external_sharing_report_failed = EventTypeArg("external_sharing_report_failed") -EventTypeArg.member_access_details_create_report = EventTypeArg( - "member_access_details_create_report" -) -EventTypeArg.member_access_details_create_report_failed = EventTypeArg( - "member_access_details_create_report_failed" -) -EventTypeArg.no_expiration_link_gen_create_report = EventTypeArg( - "no_expiration_link_gen_create_report" -) -EventTypeArg.no_expiration_link_gen_report_failed = EventTypeArg( - "no_expiration_link_gen_report_failed" -) -EventTypeArg.no_password_link_gen_create_report = EventTypeArg("no_password_link_gen_create_report") -EventTypeArg.no_password_link_gen_report_failed = EventTypeArg("no_password_link_gen_report_failed") -EventTypeArg.no_password_link_view_create_report = EventTypeArg( - "no_password_link_view_create_report" -) -EventTypeArg.no_password_link_view_report_failed = EventTypeArg( - "no_password_link_view_report_failed" -) -EventTypeArg.outdated_link_view_create_report = EventTypeArg("outdated_link_view_create_report") -EventTypeArg.outdated_link_view_report_failed = EventTypeArg("outdated_link_view_report_failed") -EventTypeArg.paper_admin_export_start = EventTypeArg("paper_admin_export_start") -EventTypeArg.ransomware_alert_create_report = EventTypeArg("ransomware_alert_create_report") -EventTypeArg.ransomware_alert_create_report_failed = EventTypeArg( - "ransomware_alert_create_report_failed" -) -EventTypeArg.shared_folders_create_report = EventTypeArg("shared_folders_create_report") -EventTypeArg.shared_folders_create_report_failed = EventTypeArg( - "shared_folders_create_report_failed" -) -EventTypeArg.smart_sync_create_admin_privilege_report = EventTypeArg( - "smart_sync_create_admin_privilege_report" -) -EventTypeArg.team_activity_create_report = EventTypeArg("team_activity_create_report") -EventTypeArg.team_activity_create_report_fail = EventTypeArg("team_activity_create_report_fail") -EventTypeArg.team_folders_create_report = EventTypeArg("team_folders_create_report") -EventTypeArg.team_folders_create_report_failed = EventTypeArg("team_folders_create_report_failed") -EventTypeArg.team_storage_create_report = EventTypeArg("team_storage_create_report") -EventTypeArg.team_storage_create_report_failed = EventTypeArg("team_storage_create_report_failed") -EventTypeArg.collection_share = EventTypeArg("collection_share") -EventTypeArg.file_transfers_file_add = EventTypeArg("file_transfers_file_add") -EventTypeArg.file_transfers_transfer_delete = EventTypeArg("file_transfers_transfer_delete") -EventTypeArg.file_transfers_transfer_download = EventTypeArg("file_transfers_transfer_download") -EventTypeArg.file_transfers_transfer_send = EventTypeArg("file_transfers_transfer_send") -EventTypeArg.file_transfers_transfer_view = EventTypeArg("file_transfers_transfer_view") -EventTypeArg.media_hub_project_team_add = EventTypeArg("media_hub_project_team_add") -EventTypeArg.media_hub_project_team_delete = EventTypeArg("media_hub_project_team_delete") -EventTypeArg.media_hub_project_team_role_changed = EventTypeArg( - "media_hub_project_team_role_changed" -) -EventTypeArg.media_hub_shared_link_audience_changed = EventTypeArg( - "media_hub_shared_link_audience_changed" -) -EventTypeArg.media_hub_shared_link_created = EventTypeArg("media_hub_shared_link_created") -EventTypeArg.media_hub_shared_link_download_setting_changed = EventTypeArg( - "media_hub_shared_link_download_setting_changed" -) -EventTypeArg.media_hub_shared_link_revoked = EventTypeArg("media_hub_shared_link_revoked") -EventTypeArg.note_acl_invite_only = EventTypeArg("note_acl_invite_only") -EventTypeArg.note_acl_link = EventTypeArg("note_acl_link") -EventTypeArg.note_acl_team_link = EventTypeArg("note_acl_team_link") -EventTypeArg.note_shared = EventTypeArg("note_shared") -EventTypeArg.note_share_receive = EventTypeArg("note_share_receive") -EventTypeArg.open_note_shared = EventTypeArg("open_note_shared") -EventTypeArg.replay_file_shared_link_created = EventTypeArg("replay_file_shared_link_created") -EventTypeArg.replay_file_shared_link_modified = EventTypeArg("replay_file_shared_link_modified") -EventTypeArg.replay_project_team_add = EventTypeArg("replay_project_team_add") -EventTypeArg.replay_project_team_delete = EventTypeArg("replay_project_team_delete") -EventTypeArg.send_and_track_file_added = EventTypeArg("send_and_track_file_added") -EventTypeArg.send_and_track_file_renamed = EventTypeArg("send_and_track_file_renamed") -EventTypeArg.send_and_track_file_updated = EventTypeArg("send_and_track_file_updated") -EventTypeArg.send_and_track_link_created = EventTypeArg("send_and_track_link_created") -EventTypeArg.send_and_track_link_deleted = EventTypeArg("send_and_track_link_deleted") -EventTypeArg.send_and_track_link_updated = EventTypeArg("send_and_track_link_updated") -EventTypeArg.send_and_track_link_viewed = EventTypeArg("send_and_track_link_viewed") -EventTypeArg.send_and_track_removed_file_and_associated_links = EventTypeArg( - "send_and_track_removed_file_and_associated_links" -) -EventTypeArg.sf_add_group = EventTypeArg("sf_add_group") -EventTypeArg.sf_allow_non_members_to_view_shared_links = EventTypeArg( - "sf_allow_non_members_to_view_shared_links" -) -EventTypeArg.sf_external_invite_warn = EventTypeArg("sf_external_invite_warn") -EventTypeArg.sf_fb_invite = EventTypeArg("sf_fb_invite") -EventTypeArg.sf_fb_invite_change_role = EventTypeArg("sf_fb_invite_change_role") -EventTypeArg.sf_fb_uninvite = EventTypeArg("sf_fb_uninvite") -EventTypeArg.sf_invite_group = EventTypeArg("sf_invite_group") -EventTypeArg.sf_team_grant_access = EventTypeArg("sf_team_grant_access") -EventTypeArg.sf_team_invite = EventTypeArg("sf_team_invite") -EventTypeArg.sf_team_invite_change_role = EventTypeArg("sf_team_invite_change_role") -EventTypeArg.sf_team_join = EventTypeArg("sf_team_join") -EventTypeArg.sf_team_join_from_oob_link = EventTypeArg("sf_team_join_from_oob_link") -EventTypeArg.sf_team_uninvite = EventTypeArg("sf_team_uninvite") -EventTypeArg.shared_content_add_invitees = EventTypeArg("shared_content_add_invitees") -EventTypeArg.shared_content_add_link_expiry = EventTypeArg("shared_content_add_link_expiry") -EventTypeArg.shared_content_add_link_password = EventTypeArg("shared_content_add_link_password") -EventTypeArg.shared_content_add_member = EventTypeArg("shared_content_add_member") -EventTypeArg.shared_content_change_downloads_policy = EventTypeArg( - "shared_content_change_downloads_policy" -) -EventTypeArg.shared_content_change_invitee_role = EventTypeArg("shared_content_change_invitee_role") -EventTypeArg.shared_content_change_link_audience = EventTypeArg( - "shared_content_change_link_audience" -) -EventTypeArg.shared_content_change_link_expiry = EventTypeArg("shared_content_change_link_expiry") -EventTypeArg.shared_content_change_link_password = EventTypeArg( - "shared_content_change_link_password" -) -EventTypeArg.shared_content_change_member_role = EventTypeArg("shared_content_change_member_role") -EventTypeArg.shared_content_change_viewer_info_policy = EventTypeArg( - "shared_content_change_viewer_info_policy" -) -EventTypeArg.shared_content_claim_invitation = EventTypeArg("shared_content_claim_invitation") -EventTypeArg.shared_content_copy = EventTypeArg("shared_content_copy") -EventTypeArg.shared_content_download = EventTypeArg("shared_content_download") -EventTypeArg.shared_content_relinquish_membership = EventTypeArg( - "shared_content_relinquish_membership" -) -EventTypeArg.shared_content_remove_invitees = EventTypeArg("shared_content_remove_invitees") -EventTypeArg.shared_content_remove_link_expiry = EventTypeArg("shared_content_remove_link_expiry") -EventTypeArg.shared_content_remove_link_password = EventTypeArg( - "shared_content_remove_link_password" -) -EventTypeArg.shared_content_remove_member = EventTypeArg("shared_content_remove_member") -EventTypeArg.shared_content_request_access = EventTypeArg("shared_content_request_access") -EventTypeArg.shared_content_restore_invitees = EventTypeArg("shared_content_restore_invitees") -EventTypeArg.shared_content_restore_member = EventTypeArg("shared_content_restore_member") -EventTypeArg.shared_content_unshare = EventTypeArg("shared_content_unshare") -EventTypeArg.shared_content_view = EventTypeArg("shared_content_view") -EventTypeArg.shared_folder_change_link_policy = EventTypeArg("shared_folder_change_link_policy") -EventTypeArg.shared_folder_change_members_inheritance_policy = EventTypeArg( - "shared_folder_change_members_inheritance_policy" -) -EventTypeArg.shared_folder_change_members_management_policy = EventTypeArg( - "shared_folder_change_members_management_policy" -) -EventTypeArg.shared_folder_change_members_policy = EventTypeArg( - "shared_folder_change_members_policy" -) -EventTypeArg.shared_folder_create = EventTypeArg("shared_folder_create") -EventTypeArg.shared_folder_decline_invitation = EventTypeArg("shared_folder_decline_invitation") -EventTypeArg.shared_folder_mount = EventTypeArg("shared_folder_mount") -EventTypeArg.shared_folder_nest = EventTypeArg("shared_folder_nest") -EventTypeArg.shared_folder_transfer_ownership = EventTypeArg("shared_folder_transfer_ownership") -EventTypeArg.shared_folder_unmount = EventTypeArg("shared_folder_unmount") -EventTypeArg.shared_link_add_expiry = EventTypeArg("shared_link_add_expiry") -EventTypeArg.shared_link_change_expiry = EventTypeArg("shared_link_change_expiry") -EventTypeArg.shared_link_change_visibility = EventTypeArg("shared_link_change_visibility") -EventTypeArg.shared_link_copy = EventTypeArg("shared_link_copy") -EventTypeArg.shared_link_create = EventTypeArg("shared_link_create") -EventTypeArg.shared_link_disable = EventTypeArg("shared_link_disable") -EventTypeArg.shared_link_download = EventTypeArg("shared_link_download") -EventTypeArg.shared_link_remove_expiry = EventTypeArg("shared_link_remove_expiry") -EventTypeArg.shared_link_remove_visitor = EventTypeArg("shared_link_remove_visitor") -EventTypeArg.shared_link_settings_add_expiration = EventTypeArg( - "shared_link_settings_add_expiration" -) -EventTypeArg.shared_link_settings_add_password = EventTypeArg("shared_link_settings_add_password") -EventTypeArg.shared_link_settings_allow_download_disabled = EventTypeArg( - "shared_link_settings_allow_download_disabled" -) -EventTypeArg.shared_link_settings_allow_download_enabled = EventTypeArg( - "shared_link_settings_allow_download_enabled" -) -EventTypeArg.shared_link_settings_change_audience = EventTypeArg( - "shared_link_settings_change_audience" -) -EventTypeArg.shared_link_settings_change_expiration = EventTypeArg( - "shared_link_settings_change_expiration" -) -EventTypeArg.shared_link_settings_change_password = EventTypeArg( - "shared_link_settings_change_password" -) -EventTypeArg.shared_link_settings_remove_expiration = EventTypeArg( - "shared_link_settings_remove_expiration" -) -EventTypeArg.shared_link_settings_remove_password = EventTypeArg( - "shared_link_settings_remove_password" -) -EventTypeArg.shared_link_share = EventTypeArg("shared_link_share") -EventTypeArg.shared_link_view = EventTypeArg("shared_link_view") -EventTypeArg.shared_note_opened = EventTypeArg("shared_note_opened") -EventTypeArg.shmodel_disable_downloads = EventTypeArg("shmodel_disable_downloads") -EventTypeArg.shmodel_enable_downloads = EventTypeArg("shmodel_enable_downloads") -EventTypeArg.shmodel_group_share = EventTypeArg("shmodel_group_share") -EventTypeArg.showcase_access_granted = EventTypeArg("showcase_access_granted") -EventTypeArg.showcase_add_member = EventTypeArg("showcase_add_member") -EventTypeArg.showcase_archived = EventTypeArg("showcase_archived") -EventTypeArg.showcase_created = EventTypeArg("showcase_created") -EventTypeArg.showcase_delete_comment = EventTypeArg("showcase_delete_comment") -EventTypeArg.showcase_edited = EventTypeArg("showcase_edited") -EventTypeArg.showcase_edit_comment = EventTypeArg("showcase_edit_comment") -EventTypeArg.showcase_file_added = EventTypeArg("showcase_file_added") -EventTypeArg.showcase_file_download = EventTypeArg("showcase_file_download") -EventTypeArg.showcase_file_removed = EventTypeArg("showcase_file_removed") -EventTypeArg.showcase_file_view = EventTypeArg("showcase_file_view") -EventTypeArg.showcase_permanently_deleted = EventTypeArg("showcase_permanently_deleted") -EventTypeArg.showcase_post_comment = EventTypeArg("showcase_post_comment") -EventTypeArg.showcase_remove_member = EventTypeArg("showcase_remove_member") -EventTypeArg.showcase_renamed = EventTypeArg("showcase_renamed") -EventTypeArg.showcase_request_access = EventTypeArg("showcase_request_access") -EventTypeArg.showcase_resolve_comment = EventTypeArg("showcase_resolve_comment") -EventTypeArg.showcase_restored = EventTypeArg("showcase_restored") -EventTypeArg.showcase_trashed = EventTypeArg("showcase_trashed") -EventTypeArg.showcase_trashed_deprecated = EventTypeArg("showcase_trashed_deprecated") -EventTypeArg.showcase_unresolve_comment = EventTypeArg("showcase_unresolve_comment") -EventTypeArg.showcase_untrashed = EventTypeArg("showcase_untrashed") -EventTypeArg.showcase_untrashed_deprecated = EventTypeArg("showcase_untrashed_deprecated") -EventTypeArg.showcase_view = EventTypeArg("showcase_view") -EventTypeArg.sign_signature_request_canceled = EventTypeArg("sign_signature_request_canceled") -EventTypeArg.sign_signature_request_completed = EventTypeArg("sign_signature_request_completed") -EventTypeArg.sign_signature_request_declined = EventTypeArg("sign_signature_request_declined") -EventTypeArg.sign_signature_request_opened = EventTypeArg("sign_signature_request_opened") -EventTypeArg.sign_signature_request_reminder_sent = EventTypeArg( - "sign_signature_request_reminder_sent" -) -EventTypeArg.sign_signature_request_sent = EventTypeArg("sign_signature_request_sent") -EventTypeArg.sign_template_created = EventTypeArg("sign_template_created") -EventTypeArg.sign_template_shared = EventTypeArg("sign_template_shared") -EventTypeArg.risc_security_event = EventTypeArg("risc_security_event") -EventTypeArg.sso_add_cert = EventTypeArg("sso_add_cert") -EventTypeArg.sso_add_login_url = EventTypeArg("sso_add_login_url") -EventTypeArg.sso_add_logout_url = EventTypeArg("sso_add_logout_url") -EventTypeArg.sso_change_cert = EventTypeArg("sso_change_cert") -EventTypeArg.sso_change_login_url = EventTypeArg("sso_change_login_url") -EventTypeArg.sso_change_logout_url = EventTypeArg("sso_change_logout_url") -EventTypeArg.sso_change_saml_identity_mode = EventTypeArg("sso_change_saml_identity_mode") -EventTypeArg.sso_remove_cert = EventTypeArg("sso_remove_cert") -EventTypeArg.sso_remove_login_url = EventTypeArg("sso_remove_login_url") -EventTypeArg.sso_remove_logout_url = EventTypeArg("sso_remove_logout_url") -EventTypeArg.team_folder_change_status = EventTypeArg("team_folder_change_status") -EventTypeArg.team_folder_create = EventTypeArg("team_folder_create") -EventTypeArg.team_folder_downgrade = EventTypeArg("team_folder_downgrade") -EventTypeArg.team_folder_permanently_delete = EventTypeArg("team_folder_permanently_delete") -EventTypeArg.team_folder_rename = EventTypeArg("team_folder_rename") -EventTypeArg.team_folder_space_limits_change_caps_type = EventTypeArg( - "team_folder_space_limits_change_caps_type" -) -EventTypeArg.team_folder_space_limits_change_limit = EventTypeArg( - "team_folder_space_limits_change_limit" -) -EventTypeArg.team_folder_space_limits_change_notification_target = EventTypeArg( - "team_folder_space_limits_change_notification_target" -) -EventTypeArg.team_selective_sync_settings_changed = EventTypeArg( - "team_selective_sync_settings_changed" -) -EventTypeArg.account_capture_change_policy = EventTypeArg("account_capture_change_policy") -EventTypeArg.admin_email_reminders_changed = EventTypeArg("admin_email_reminders_changed") -EventTypeArg.ai_third_party_sharing_dropbox_base_policy_changed = EventTypeArg( - "ai_third_party_sharing_dropbox_base_policy_changed" -) -EventTypeArg.allow_download_disabled = EventTypeArg("allow_download_disabled") -EventTypeArg.allow_download_enabled = EventTypeArg("allow_download_enabled") -EventTypeArg.apple_login_change_policy = EventTypeArg("apple_login_change_policy") -EventTypeArg.app_permissions_changed = EventTypeArg("app_permissions_changed") -EventTypeArg.camera_uploads_policy_changed = EventTypeArg("camera_uploads_policy_changed") -EventTypeArg.capture_team_space_policy_changed = EventTypeArg("capture_team_space_policy_changed") -EventTypeArg.capture_transcript_policy_changed = EventTypeArg("capture_transcript_policy_changed") -EventTypeArg.classification_change_policy = EventTypeArg("classification_change_policy") -EventTypeArg.computer_backup_policy_changed = EventTypeArg("computer_backup_policy_changed") -EventTypeArg.content_administration_policy_changed = EventTypeArg( - "content_administration_policy_changed" -) -EventTypeArg.content_deletion_protection_change_policy = EventTypeArg( - "content_deletion_protection_change_policy" -) -EventTypeArg.dash_external_sharing_policy_changed = EventTypeArg( - "dash_external_sharing_policy_changed" -) -EventTypeArg.data_placement_restriction_change_policy = EventTypeArg( - "data_placement_restriction_change_policy" -) -EventTypeArg.data_placement_restriction_satisfy_policy = EventTypeArg( - "data_placement_restriction_satisfy_policy" -) -EventTypeArg.device_approvals_add_exception = EventTypeArg("device_approvals_add_exception") -EventTypeArg.device_approvals_change_desktop_policy = EventTypeArg( - "device_approvals_change_desktop_policy" -) -EventTypeArg.device_approvals_change_mobile_policy = EventTypeArg( - "device_approvals_change_mobile_policy" -) -EventTypeArg.device_approvals_change_overage_action = EventTypeArg( - "device_approvals_change_overage_action" -) -EventTypeArg.device_approvals_change_unlink_action = EventTypeArg( - "device_approvals_change_unlink_action" -) -EventTypeArg.device_approvals_remove_exception = EventTypeArg("device_approvals_remove_exception") -EventTypeArg.directory_restrictions_add_members = EventTypeArg("directory_restrictions_add_members") -EventTypeArg.directory_restrictions_remove_members = EventTypeArg( - "directory_restrictions_remove_members" -) -EventTypeArg.dropbox_passwords_policy_changed = EventTypeArg("dropbox_passwords_policy_changed") -EventTypeArg.email_ingest_policy_changed = EventTypeArg("email_ingest_policy_changed") -EventTypeArg.emm_add_exception = EventTypeArg("emm_add_exception") -EventTypeArg.emm_change_policy = EventTypeArg("emm_change_policy") -EventTypeArg.emm_remove_exception = EventTypeArg("emm_remove_exception") -EventTypeArg.extended_version_history_change_policy = EventTypeArg( - "extended_version_history_change_policy" -) -EventTypeArg.external_drive_backup_policy_changed = EventTypeArg( - "external_drive_backup_policy_changed" -) -EventTypeArg.file_comments_change_policy = EventTypeArg("file_comments_change_policy") -EventTypeArg.file_locking_policy_changed = EventTypeArg("file_locking_policy_changed") -EventTypeArg.file_provider_migration_policy_changed = EventTypeArg( - "file_provider_migration_policy_changed" -) -EventTypeArg.file_requests_change_policy = EventTypeArg("file_requests_change_policy") -EventTypeArg.file_requests_emails_enabled = EventTypeArg("file_requests_emails_enabled") -EventTypeArg.file_requests_emails_restricted_to_team_only = EventTypeArg( - "file_requests_emails_restricted_to_team_only" -) -EventTypeArg.file_transfers_policy_changed = EventTypeArg("file_transfers_policy_changed") -EventTypeArg.flexible_file_names_policy_changed = EventTypeArg("flexible_file_names_policy_changed") -EventTypeArg.folder_link_restriction_policy_changed = EventTypeArg( - "folder_link_restriction_policy_changed" -) -EventTypeArg.google_sso_change_policy = EventTypeArg("google_sso_change_policy") -EventTypeArg.group_user_management_change_policy = EventTypeArg( - "group_user_management_change_policy" -) -EventTypeArg.integration_policy_changed = EventTypeArg("integration_policy_changed") -EventTypeArg.invite_acceptance_email_policy_changed = EventTypeArg( - "invite_acceptance_email_policy_changed" -) -EventTypeArg.media_hub_adding_people_policy_changed = EventTypeArg( - "media_hub_adding_people_policy_changed" -) -EventTypeArg.media_hub_download_policy_changed = EventTypeArg("media_hub_download_policy_changed") -EventTypeArg.media_hub_link_sharing_policy_changed = EventTypeArg( - "media_hub_link_sharing_policy_changed" -) -EventTypeArg.member_requests_change_policy = EventTypeArg("member_requests_change_policy") -EventTypeArg.member_send_invite_policy_changed = EventTypeArg("member_send_invite_policy_changed") -EventTypeArg.member_space_limits_add_exception = EventTypeArg("member_space_limits_add_exception") -EventTypeArg.member_space_limits_change_caps_type_policy = EventTypeArg( - "member_space_limits_change_caps_type_policy" -) -EventTypeArg.member_space_limits_change_policy = EventTypeArg("member_space_limits_change_policy") -EventTypeArg.member_space_limits_remove_exception = EventTypeArg( - "member_space_limits_remove_exception" -) -EventTypeArg.member_suggestions_change_policy = EventTypeArg("member_suggestions_change_policy") -EventTypeArg.microsoft_login_change_policy = EventTypeArg("microsoft_login_change_policy") -EventTypeArg.microsoft_office_addin_change_policy = EventTypeArg( - "microsoft_office_addin_change_policy" -) -EventTypeArg.multi_team_identity_policy_changed = EventTypeArg("multi_team_identity_policy_changed") -EventTypeArg.network_control_change_policy = EventTypeArg("network_control_change_policy") -EventTypeArg.paper_change_deployment_policy = EventTypeArg("paper_change_deployment_policy") -EventTypeArg.paper_change_member_link_policy = EventTypeArg("paper_change_member_link_policy") -EventTypeArg.paper_change_member_policy = EventTypeArg("paper_change_member_policy") -EventTypeArg.paper_change_policy = EventTypeArg("paper_change_policy") -EventTypeArg.paper_default_folder_policy_changed = EventTypeArg( - "paper_default_folder_policy_changed" -) -EventTypeArg.paper_desktop_policy_changed = EventTypeArg("paper_desktop_policy_changed") -EventTypeArg.paper_enabled_users_group_addition = EventTypeArg("paper_enabled_users_group_addition") -EventTypeArg.paper_enabled_users_group_removal = EventTypeArg("paper_enabled_users_group_removal") -EventTypeArg.passkey_login_policy_changed = EventTypeArg("passkey_login_policy_changed") -EventTypeArg.password_strength_requirements_change_policy = EventTypeArg( - "password_strength_requirements_change_policy" -) -EventTypeArg.permanent_delete_change_policy = EventTypeArg("permanent_delete_change_policy") -EventTypeArg.previews_ai_policy_changed = EventTypeArg("previews_ai_policy_changed") -EventTypeArg.replay_adding_people_policy_changed = EventTypeArg( - "replay_adding_people_policy_changed" -) -EventTypeArg.replay_sharing_policy_changed = EventTypeArg("replay_sharing_policy_changed") -EventTypeArg.reseller_support_change_policy = EventTypeArg("reseller_support_change_policy") -EventTypeArg.rewind_policy_changed = EventTypeArg("rewind_policy_changed") -EventTypeArg.send_and_track_policy_changed = EventTypeArg("send_and_track_policy_changed") -EventTypeArg.send_external_sharing_policy_changed = EventTypeArg( - "send_external_sharing_policy_changed" -) -EventTypeArg.send_for_signature_policy_changed = EventTypeArg("send_for_signature_policy_changed") -EventTypeArg.shared_link_default_permissions_policy_changed = EventTypeArg( - "shared_link_default_permissions_policy_changed" -) -EventTypeArg.sharing_change_folder_join_policy = EventTypeArg("sharing_change_folder_join_policy") -EventTypeArg.sharing_change_link_allow_change_expiration_policy = EventTypeArg( - "sharing_change_link_allow_change_expiration_policy" -) -EventTypeArg.sharing_change_link_default_expiration_policy = EventTypeArg( - "sharing_change_link_default_expiration_policy" -) -EventTypeArg.sharing_change_link_enforce_password_policy = EventTypeArg( - "sharing_change_link_enforce_password_policy" -) -EventTypeArg.sharing_change_link_policy = EventTypeArg("sharing_change_link_policy") -EventTypeArg.sharing_change_member_policy = EventTypeArg("sharing_change_member_policy") -EventTypeArg.showcase_change_download_policy = EventTypeArg("showcase_change_download_policy") -EventTypeArg.showcase_change_enabled_policy = EventTypeArg("showcase_change_enabled_policy") -EventTypeArg.showcase_change_external_sharing_policy = EventTypeArg( - "showcase_change_external_sharing_policy" -) -EventTypeArg.sign_external_sharing_policy_changed = EventTypeArg( - "sign_external_sharing_policy_changed" -) -EventTypeArg.sign_template_creation_permission_changed = EventTypeArg( - "sign_template_creation_permission_changed" -) -EventTypeArg.smarter_smart_sync_policy_changed = EventTypeArg("smarter_smart_sync_policy_changed") -EventTypeArg.smart_sync_change_policy = EventTypeArg("smart_sync_change_policy") -EventTypeArg.smart_sync_not_opt_out = EventTypeArg("smart_sync_not_opt_out") -EventTypeArg.smart_sync_opt_out = EventTypeArg("smart_sync_opt_out") -EventTypeArg.sso_change_policy = EventTypeArg("sso_change_policy") -EventTypeArg.stack_cross_team_access_policy_changed = EventTypeArg( - "stack_cross_team_access_policy_changed" -) -EventTypeArg.team_branding_policy_changed = EventTypeArg("team_branding_policy_changed") -EventTypeArg.team_extensions_policy_changed = EventTypeArg("team_extensions_policy_changed") -EventTypeArg.team_member_storage_request_policy_changed = EventTypeArg( - "team_member_storage_request_policy_changed" -) -EventTypeArg.team_selective_sync_policy_changed = EventTypeArg("team_selective_sync_policy_changed") -EventTypeArg.team_sharing_whitelist_subjects_changed = EventTypeArg( - "team_sharing_whitelist_subjects_changed" -) -EventTypeArg.tfa_add_exception = EventTypeArg("tfa_add_exception") -EventTypeArg.tfa_change_policy = EventTypeArg("tfa_change_policy") -EventTypeArg.tfa_remove_exception = EventTypeArg("tfa_remove_exception") -EventTypeArg.top_level_content_policy_changed = EventTypeArg("top_level_content_policy_changed") -EventTypeArg.two_account_change_policy = EventTypeArg("two_account_change_policy") -EventTypeArg.viewer_info_policy_changed = EventTypeArg("viewer_info_policy_changed") -EventTypeArg.watermarking_policy_changed = EventTypeArg("watermarking_policy_changed") -EventTypeArg.web_sessions_change_active_session_limit = EventTypeArg( - "web_sessions_change_active_session_limit" -) -EventTypeArg.web_sessions_change_fixed_length_policy = EventTypeArg( - "web_sessions_change_fixed_length_policy" -) -EventTypeArg.web_sessions_change_idle_length_policy = EventTypeArg( - "web_sessions_change_idle_length_policy" -) -EventTypeArg.data_residency_migration_request_successful = EventTypeArg( - "data_residency_migration_request_successful" -) -EventTypeArg.data_residency_migration_request_unsuccessful = EventTypeArg( - "data_residency_migration_request_unsuccessful" -) -EventTypeArg.team_merge_from = EventTypeArg("team_merge_from") -EventTypeArg.team_merge_to = EventTypeArg("team_merge_to") -EventTypeArg.team_profile_add_background = EventTypeArg("team_profile_add_background") -EventTypeArg.team_profile_add_logo = EventTypeArg("team_profile_add_logo") -EventTypeArg.team_profile_change_background = EventTypeArg("team_profile_change_background") -EventTypeArg.team_profile_change_default_language = EventTypeArg( - "team_profile_change_default_language" -) -EventTypeArg.team_profile_change_logo = EventTypeArg("team_profile_change_logo") -EventTypeArg.team_profile_change_name = EventTypeArg("team_profile_change_name") -EventTypeArg.team_profile_remove_background = EventTypeArg("team_profile_remove_background") -EventTypeArg.team_profile_remove_logo = EventTypeArg("team_profile_remove_logo") -EventTypeArg.passkey_add = EventTypeArg("passkey_add") -EventTypeArg.passkey_remove = EventTypeArg("passkey_remove") -EventTypeArg.tfa_add_backup_phone = EventTypeArg("tfa_add_backup_phone") -EventTypeArg.tfa_add_security_key = EventTypeArg("tfa_add_security_key") -EventTypeArg.tfa_change_backup_phone = EventTypeArg("tfa_change_backup_phone") -EventTypeArg.tfa_change_status = EventTypeArg("tfa_change_status") -EventTypeArg.tfa_remove_backup_phone = EventTypeArg("tfa_remove_backup_phone") -EventTypeArg.tfa_remove_security_key = EventTypeArg("tfa_remove_security_key") -EventTypeArg.tfa_reset = EventTypeArg("tfa_reset") -EventTypeArg.changed_enterprise_admin_role = EventTypeArg("changed_enterprise_admin_role") -EventTypeArg.changed_enterprise_connected_team_status = EventTypeArg( - "changed_enterprise_connected_team_status" -) -EventTypeArg.ended_enterprise_admin_session = EventTypeArg("ended_enterprise_admin_session") -EventTypeArg.ended_enterprise_admin_session_deprecated = EventTypeArg( - "ended_enterprise_admin_session_deprecated" -) -EventTypeArg.enterprise_settings_locking = EventTypeArg("enterprise_settings_locking") -EventTypeArg.guest_admin_change_status = EventTypeArg("guest_admin_change_status") -EventTypeArg.started_enterprise_admin_session = EventTypeArg("started_enterprise_admin_session") -EventTypeArg.team_merge_request_accepted = EventTypeArg("team_merge_request_accepted") -EventTypeArg.team_merge_request_accepted_shown_to_primary_team = EventTypeArg( - "team_merge_request_accepted_shown_to_primary_team" -) -EventTypeArg.team_merge_request_accepted_shown_to_secondary_team = EventTypeArg( - "team_merge_request_accepted_shown_to_secondary_team" -) -EventTypeArg.team_merge_request_auto_canceled = EventTypeArg("team_merge_request_auto_canceled") -EventTypeArg.team_merge_request_canceled = EventTypeArg("team_merge_request_canceled") -EventTypeArg.team_merge_request_canceled_shown_to_primary_team = EventTypeArg( - "team_merge_request_canceled_shown_to_primary_team" -) -EventTypeArg.team_merge_request_canceled_shown_to_secondary_team = EventTypeArg( - "team_merge_request_canceled_shown_to_secondary_team" -) -EventTypeArg.team_merge_request_expired = EventTypeArg("team_merge_request_expired") -EventTypeArg.team_merge_request_expired_shown_to_primary_team = EventTypeArg( - "team_merge_request_expired_shown_to_primary_team" -) -EventTypeArg.team_merge_request_expired_shown_to_secondary_team = EventTypeArg( - "team_merge_request_expired_shown_to_secondary_team" -) -EventTypeArg.team_merge_request_rejected_shown_to_primary_team = EventTypeArg( - "team_merge_request_rejected_shown_to_primary_team" -) -EventTypeArg.team_merge_request_rejected_shown_to_secondary_team = EventTypeArg( - "team_merge_request_rejected_shown_to_secondary_team" -) -EventTypeArg.team_merge_request_reminder = EventTypeArg("team_merge_request_reminder") -EventTypeArg.team_merge_request_reminder_shown_to_primary_team = EventTypeArg( - "team_merge_request_reminder_shown_to_primary_team" -) -EventTypeArg.team_merge_request_reminder_shown_to_secondary_team = EventTypeArg( - "team_merge_request_reminder_shown_to_secondary_team" -) -EventTypeArg.team_merge_request_revoked = EventTypeArg("team_merge_request_revoked") -EventTypeArg.team_merge_request_sent_shown_to_primary_team = EventTypeArg( - "team_merge_request_sent_shown_to_primary_team" -) -EventTypeArg.team_merge_request_sent_shown_to_secondary_team = EventTypeArg( - "team_merge_request_sent_shown_to_secondary_team" -) -EventTypeArg.other = EventTypeArg("other") +EventTypeArg.admin_alerting_alert_state_changed = EventTypeArg('admin_alerting_alert_state_changed') +EventTypeArg.admin_alerting_changed_alert_config = EventTypeArg('admin_alerting_changed_alert_config') +EventTypeArg.admin_alerting_triggered_alert = EventTypeArg('admin_alerting_triggered_alert') +EventTypeArg.ransomware_restore_process_completed = EventTypeArg('ransomware_restore_process_completed') +EventTypeArg.ransomware_restore_process_started = EventTypeArg('ransomware_restore_process_started') +EventTypeArg.app_blocked_by_permissions = EventTypeArg('app_blocked_by_permissions') +EventTypeArg.app_link_team = EventTypeArg('app_link_team') +EventTypeArg.app_link_user = EventTypeArg('app_link_user') +EventTypeArg.app_unlink_team = EventTypeArg('app_unlink_team') +EventTypeArg.app_unlink_user = EventTypeArg('app_unlink_user') +EventTypeArg.integration_connected = EventTypeArg('integration_connected') +EventTypeArg.integration_disconnected = EventTypeArg('integration_disconnected') +EventTypeArg.file_add_comment = EventTypeArg('file_add_comment') +EventTypeArg.file_change_comment_subscription = EventTypeArg('file_change_comment_subscription') +EventTypeArg.file_delete_comment = EventTypeArg('file_delete_comment') +EventTypeArg.file_edit_comment = EventTypeArg('file_edit_comment') +EventTypeArg.file_like_comment = EventTypeArg('file_like_comment') +EventTypeArg.file_resolve_comment = EventTypeArg('file_resolve_comment') +EventTypeArg.file_unlike_comment = EventTypeArg('file_unlike_comment') +EventTypeArg.file_unresolve_comment = EventTypeArg('file_unresolve_comment') +EventTypeArg.dash_added_comment_to_stack = EventTypeArg('dash_added_comment_to_stack') +EventTypeArg.dash_added_connector = EventTypeArg('dash_added_connector') +EventTypeArg.dash_added_link_to_stack = EventTypeArg('dash_added_link_to_stack') +EventTypeArg.dash_added_team_email_domain_allowlist = EventTypeArg('dash_added_team_email_domain_allowlist') +EventTypeArg.dash_admin_added_org_wide_connector = EventTypeArg('dash_admin_added_org_wide_connector') +EventTypeArg.dash_admin_disabled_connector = EventTypeArg('dash_admin_disabled_connector') +EventTypeArg.dash_admin_enabled_connector = EventTypeArg('dash_admin_enabled_connector') +EventTypeArg.dash_admin_removed_org_wide_connector = EventTypeArg('dash_admin_removed_org_wide_connector') +EventTypeArg.dash_archived_stack = EventTypeArg('dash_archived_stack') +EventTypeArg.dash_changed_audience_of_shared_link_to_stack = EventTypeArg('dash_changed_audience_of_shared_link_to_stack') +EventTypeArg.dash_cloned_stack = EventTypeArg('dash_cloned_stack') +EventTypeArg.dash_connector_tools_call = EventTypeArg('dash_connector_tools_call') +EventTypeArg.dash_created_stack = EventTypeArg('dash_created_stack') +EventTypeArg.dash_deleted_comment_from_stack = EventTypeArg('dash_deleted_comment_from_stack') +EventTypeArg.dash_deleted_stack = EventTypeArg('dash_deleted_stack') +EventTypeArg.dash_edited_comment_in_stack = EventTypeArg('dash_edited_comment_in_stack') +EventTypeArg.dash_external_user_opened_stack = EventTypeArg('dash_external_user_opened_stack') +EventTypeArg.dash_first_launched_desktop = EventTypeArg('dash_first_launched_desktop') +EventTypeArg.dash_first_launched_extension = EventTypeArg('dash_first_launched_extension') +EventTypeArg.dash_first_launched_web_start_page = EventTypeArg('dash_first_launched_web_start_page') +EventTypeArg.dash_opened_shared_link_to_stack = EventTypeArg('dash_opened_shared_link_to_stack') +EventTypeArg.dash_opened_stack = EventTypeArg('dash_opened_stack') +EventTypeArg.dash_preview_opt_out_status_changed = EventTypeArg('dash_preview_opt_out_status_changed') +EventTypeArg.dash_removed_connector = EventTypeArg('dash_removed_connector') +EventTypeArg.dash_removed_link_from_stack = EventTypeArg('dash_removed_link_from_stack') +EventTypeArg.dash_removed_shared_link_to_stack = EventTypeArg('dash_removed_shared_link_to_stack') +EventTypeArg.dash_removed_team_email_domain_allowlist = EventTypeArg('dash_removed_team_email_domain_allowlist') +EventTypeArg.dash_renamed_stack = EventTypeArg('dash_renamed_stack') +EventTypeArg.dash_shared_link_to_stack = EventTypeArg('dash_shared_link_to_stack') +EventTypeArg.dash_unarchived_stack = EventTypeArg('dash_unarchived_stack') +EventTypeArg.dash_viewed_company_stack = EventTypeArg('dash_viewed_company_stack') +EventTypeArg.dash_viewed_external_ai_activity_report = EventTypeArg('dash_viewed_external_ai_activity_report') +EventTypeArg.governance_policy_add_folders = EventTypeArg('governance_policy_add_folders') +EventTypeArg.governance_policy_add_folder_failed = EventTypeArg('governance_policy_add_folder_failed') +EventTypeArg.governance_policy_content_disposed = EventTypeArg('governance_policy_content_disposed') +EventTypeArg.governance_policy_create = EventTypeArg('governance_policy_create') +EventTypeArg.governance_policy_delete = EventTypeArg('governance_policy_delete') +EventTypeArg.governance_policy_edit_details = EventTypeArg('governance_policy_edit_details') +EventTypeArg.governance_policy_edit_duration = EventTypeArg('governance_policy_edit_duration') +EventTypeArg.governance_policy_export_created = EventTypeArg('governance_policy_export_created') +EventTypeArg.governance_policy_export_removed = EventTypeArg('governance_policy_export_removed') +EventTypeArg.governance_policy_remove_folders = EventTypeArg('governance_policy_remove_folders') +EventTypeArg.governance_policy_report_created = EventTypeArg('governance_policy_report_created') +EventTypeArg.governance_policy_zip_part_downloaded = EventTypeArg('governance_policy_zip_part_downloaded') +EventTypeArg.legal_holds_activate_a_hold = EventTypeArg('legal_holds_activate_a_hold') +EventTypeArg.legal_holds_add_members = EventTypeArg('legal_holds_add_members') +EventTypeArg.legal_holds_change_hold_details = EventTypeArg('legal_holds_change_hold_details') +EventTypeArg.legal_holds_change_hold_name = EventTypeArg('legal_holds_change_hold_name') +EventTypeArg.legal_holds_export_a_hold = EventTypeArg('legal_holds_export_a_hold') +EventTypeArg.legal_holds_export_cancelled = EventTypeArg('legal_holds_export_cancelled') +EventTypeArg.legal_holds_export_downloaded = EventTypeArg('legal_holds_export_downloaded') +EventTypeArg.legal_holds_export_removed = EventTypeArg('legal_holds_export_removed') +EventTypeArg.legal_holds_release_a_hold = EventTypeArg('legal_holds_release_a_hold') +EventTypeArg.legal_holds_remove_members = EventTypeArg('legal_holds_remove_members') +EventTypeArg.legal_holds_report_a_hold = EventTypeArg('legal_holds_report_a_hold') +EventTypeArg.device_change_ip_desktop = EventTypeArg('device_change_ip_desktop') +EventTypeArg.device_change_ip_mobile = EventTypeArg('device_change_ip_mobile') +EventTypeArg.device_change_ip_web = EventTypeArg('device_change_ip_web') +EventTypeArg.device_delete_on_unlink_fail = EventTypeArg('device_delete_on_unlink_fail') +EventTypeArg.device_delete_on_unlink_success = EventTypeArg('device_delete_on_unlink_success') +EventTypeArg.device_link_fail = EventTypeArg('device_link_fail') +EventTypeArg.device_link_success = EventTypeArg('device_link_success') +EventTypeArg.device_management_disabled = EventTypeArg('device_management_disabled') +EventTypeArg.device_management_enabled = EventTypeArg('device_management_enabled') +EventTypeArg.device_sync_backup_status_changed = EventTypeArg('device_sync_backup_status_changed') +EventTypeArg.device_unlink = EventTypeArg('device_unlink') +EventTypeArg.dropbox_passwords_exported = EventTypeArg('dropbox_passwords_exported') +EventTypeArg.dropbox_passwords_new_device_enrolled = EventTypeArg('dropbox_passwords_new_device_enrolled') +EventTypeArg.emm_refresh_auth_token = EventTypeArg('emm_refresh_auth_token') +EventTypeArg.external_drive_backup_eligibility_status_checked = EventTypeArg('external_drive_backup_eligibility_status_checked') +EventTypeArg.external_drive_backup_status_changed = EventTypeArg('external_drive_backup_status_changed') +EventTypeArg.account_capture_change_availability = EventTypeArg('account_capture_change_availability') +EventTypeArg.account_capture_migrate_account = EventTypeArg('account_capture_migrate_account') +EventTypeArg.account_capture_notification_emails_sent = EventTypeArg('account_capture_notification_emails_sent') +EventTypeArg.account_capture_relinquish_account = EventTypeArg('account_capture_relinquish_account') +EventTypeArg.disabled_domain_invites = EventTypeArg('disabled_domain_invites') +EventTypeArg.domain_invites_approve_request_to_join_team = EventTypeArg('domain_invites_approve_request_to_join_team') +EventTypeArg.domain_invites_decline_request_to_join_team = EventTypeArg('domain_invites_decline_request_to_join_team') +EventTypeArg.domain_invites_email_existing_users = EventTypeArg('domain_invites_email_existing_users') +EventTypeArg.domain_invites_request_to_join_team = EventTypeArg('domain_invites_request_to_join_team') +EventTypeArg.domain_invites_set_invite_new_user_pref_to_no = EventTypeArg('domain_invites_set_invite_new_user_pref_to_no') +EventTypeArg.domain_invites_set_invite_new_user_pref_to_yes = EventTypeArg('domain_invites_set_invite_new_user_pref_to_yes') +EventTypeArg.domain_verification_add_domain_fail = EventTypeArg('domain_verification_add_domain_fail') +EventTypeArg.domain_verification_add_domain_success = EventTypeArg('domain_verification_add_domain_success') +EventTypeArg.domain_verification_remove_domain = EventTypeArg('domain_verification_remove_domain') +EventTypeArg.enabled_domain_invites = EventTypeArg('enabled_domain_invites') +EventTypeArg.encrypted_folder_cancel_team_key_rotation = EventTypeArg('encrypted_folder_cancel_team_key_rotation') +EventTypeArg.encrypted_folder_enroll_backup_key = EventTypeArg('encrypted_folder_enroll_backup_key') +EventTypeArg.encrypted_folder_enroll_client = EventTypeArg('encrypted_folder_enroll_client') +EventTypeArg.encrypted_folder_enroll_team = EventTypeArg('encrypted_folder_enroll_team') +EventTypeArg.encrypted_folder_finish_team_unenrollment = EventTypeArg('encrypted_folder_finish_team_unenrollment') +EventTypeArg.encrypted_folder_init_team_key_rotation = EventTypeArg('encrypted_folder_init_team_key_rotation') +EventTypeArg.encrypted_folder_init_team_unenrollment = EventTypeArg('encrypted_folder_init_team_unenrollment') +EventTypeArg.encrypted_folder_remove_backup_key = EventTypeArg('encrypted_folder_remove_backup_key') +EventTypeArg.encrypted_folder_rotate_team_key = EventTypeArg('encrypted_folder_rotate_team_key') +EventTypeArg.encrypted_folder_unenroll_client = EventTypeArg('encrypted_folder_unenroll_client') +EventTypeArg.team_encryption_key_activate_key = EventTypeArg('team_encryption_key_activate_key') +EventTypeArg.team_encryption_key_cancel_key_deletion = EventTypeArg('team_encryption_key_cancel_key_deletion') +EventTypeArg.team_encryption_key_create_key = EventTypeArg('team_encryption_key_create_key') +EventTypeArg.team_encryption_key_deactivate_key = EventTypeArg('team_encryption_key_deactivate_key') +EventTypeArg.team_encryption_key_delete_key = EventTypeArg('team_encryption_key_delete_key') +EventTypeArg.team_encryption_key_disable_key = EventTypeArg('team_encryption_key_disable_key') +EventTypeArg.team_encryption_key_enable_key = EventTypeArg('team_encryption_key_enable_key') +EventTypeArg.team_encryption_key_rotate_key = EventTypeArg('team_encryption_key_rotate_key') +EventTypeArg.team_encryption_key_schedule_key_deletion = EventTypeArg('team_encryption_key_schedule_key_deletion') +EventTypeArg.apply_naming_convention = EventTypeArg('apply_naming_convention') +EventTypeArg.create_folder = EventTypeArg('create_folder') +EventTypeArg.file_add = EventTypeArg('file_add') +EventTypeArg.file_add_from_automation = EventTypeArg('file_add_from_automation') +EventTypeArg.file_copy = EventTypeArg('file_copy') +EventTypeArg.file_delete = EventTypeArg('file_delete') +EventTypeArg.file_download = EventTypeArg('file_download') +EventTypeArg.file_edit = EventTypeArg('file_edit') +EventTypeArg.file_get_copy_reference = EventTypeArg('file_get_copy_reference') +EventTypeArg.file_locking_lock_status_changed = EventTypeArg('file_locking_lock_status_changed') +EventTypeArg.file_move = EventTypeArg('file_move') +EventTypeArg.file_permanently_delete = EventTypeArg('file_permanently_delete') +EventTypeArg.file_preview = EventTypeArg('file_preview') +EventTypeArg.file_rename = EventTypeArg('file_rename') +EventTypeArg.file_restore = EventTypeArg('file_restore') +EventTypeArg.file_revert = EventTypeArg('file_revert') +EventTypeArg.file_rollback_changes = EventTypeArg('file_rollback_changes') +EventTypeArg.file_save_copy_reference = EventTypeArg('file_save_copy_reference') +EventTypeArg.folder_overview_description_changed = EventTypeArg('folder_overview_description_changed') +EventTypeArg.folder_overview_item_pinned = EventTypeArg('folder_overview_item_pinned') +EventTypeArg.folder_overview_item_unpinned = EventTypeArg('folder_overview_item_unpinned') +EventTypeArg.media_hub_file_downloaded = EventTypeArg('media_hub_file_downloaded') +EventTypeArg.object_label_added = EventTypeArg('object_label_added') +EventTypeArg.object_label_removed = EventTypeArg('object_label_removed') +EventTypeArg.object_label_updated_value = EventTypeArg('object_label_updated_value') +EventTypeArg.organize_folder_with_tidy = EventTypeArg('organize_folder_with_tidy') +EventTypeArg.replay_file_delete = EventTypeArg('replay_file_delete') +EventTypeArg.replay_file_downloaded = EventTypeArg('replay_file_downloaded') +EventTypeArg.replay_team_project_created = EventTypeArg('replay_team_project_created') +EventTypeArg.rewind_folder = EventTypeArg('rewind_folder') +EventTypeArg.undo_naming_convention = EventTypeArg('undo_naming_convention') +EventTypeArg.undo_organize_folder_with_tidy = EventTypeArg('undo_organize_folder_with_tidy') +EventTypeArg.user_tags_added = EventTypeArg('user_tags_added') +EventTypeArg.user_tags_removed = EventTypeArg('user_tags_removed') +EventTypeArg.email_ingest_receive_file = EventTypeArg('email_ingest_receive_file') +EventTypeArg.file_request_auto_close = EventTypeArg('file_request_auto_close') +EventTypeArg.file_request_change = EventTypeArg('file_request_change') +EventTypeArg.file_request_close = EventTypeArg('file_request_close') +EventTypeArg.file_request_create = EventTypeArg('file_request_create') +EventTypeArg.file_request_delete = EventTypeArg('file_request_delete') +EventTypeArg.file_request_receive_file = EventTypeArg('file_request_receive_file') +EventTypeArg.group_add_external_id = EventTypeArg('group_add_external_id') +EventTypeArg.group_add_member = EventTypeArg('group_add_member') +EventTypeArg.group_change_external_id = EventTypeArg('group_change_external_id') +EventTypeArg.group_change_management_type = EventTypeArg('group_change_management_type') +EventTypeArg.group_change_member_role = EventTypeArg('group_change_member_role') +EventTypeArg.group_create = EventTypeArg('group_create') +EventTypeArg.group_delete = EventTypeArg('group_delete') +EventTypeArg.group_description_updated = EventTypeArg('group_description_updated') +EventTypeArg.group_external_sharing_setting_override_changed = EventTypeArg('group_external_sharing_setting_override_changed') +EventTypeArg.group_join_policy_updated = EventTypeArg('group_join_policy_updated') +EventTypeArg.group_moved = EventTypeArg('group_moved') +EventTypeArg.group_remove_external_id = EventTypeArg('group_remove_external_id') +EventTypeArg.group_remove_member = EventTypeArg('group_remove_member') +EventTypeArg.group_rename = EventTypeArg('group_rename') +EventTypeArg.account_lock_or_unlocked = EventTypeArg('account_lock_or_unlocked') +EventTypeArg.emm_error = EventTypeArg('emm_error') +EventTypeArg.guest_admin_signed_in_via_trusted_teams = EventTypeArg('guest_admin_signed_in_via_trusted_teams') +EventTypeArg.guest_admin_signed_out_via_trusted_teams = EventTypeArg('guest_admin_signed_out_via_trusted_teams') +EventTypeArg.login_fail = EventTypeArg('login_fail') +EventTypeArg.login_success = EventTypeArg('login_success') +EventTypeArg.logout = EventTypeArg('logout') +EventTypeArg.reseller_support_session_end = EventTypeArg('reseller_support_session_end') +EventTypeArg.reseller_support_session_start = EventTypeArg('reseller_support_session_start') +EventTypeArg.sign_in_as_session_end = EventTypeArg('sign_in_as_session_end') +EventTypeArg.sign_in_as_session_start = EventTypeArg('sign_in_as_session_start') +EventTypeArg.sso_error = EventTypeArg('sso_error') +EventTypeArg.addon_assigned = EventTypeArg('addon_assigned') +EventTypeArg.addon_removed = EventTypeArg('addon_removed') +EventTypeArg.backup_admin_invitation_sent = EventTypeArg('backup_admin_invitation_sent') +EventTypeArg.backup_invitation_opened = EventTypeArg('backup_invitation_opened') +EventTypeArg.create_team_invite_link = EventTypeArg('create_team_invite_link') +EventTypeArg.delete_team_invite_link = EventTypeArg('delete_team_invite_link') +EventTypeArg.member_add_external_id = EventTypeArg('member_add_external_id') +EventTypeArg.member_add_name = EventTypeArg('member_add_name') +EventTypeArg.member_change_admin_role = EventTypeArg('member_change_admin_role') +EventTypeArg.member_change_email = EventTypeArg('member_change_email') +EventTypeArg.member_change_external_id = EventTypeArg('member_change_external_id') +EventTypeArg.member_change_membership_type = EventTypeArg('member_change_membership_type') +EventTypeArg.member_change_name = EventTypeArg('member_change_name') +EventTypeArg.member_change_reseller_role = EventTypeArg('member_change_reseller_role') +EventTypeArg.member_change_status = EventTypeArg('member_change_status') +EventTypeArg.member_delete_manual_contacts = EventTypeArg('member_delete_manual_contacts') +EventTypeArg.member_delete_profile_photo = EventTypeArg('member_delete_profile_photo') +EventTypeArg.member_permanently_delete_account_contents = EventTypeArg('member_permanently_delete_account_contents') +EventTypeArg.member_remove_external_id = EventTypeArg('member_remove_external_id') +EventTypeArg.member_set_profile_photo = EventTypeArg('member_set_profile_photo') +EventTypeArg.member_space_limits_add_custom_quota = EventTypeArg('member_space_limits_add_custom_quota') +EventTypeArg.member_space_limits_change_custom_quota = EventTypeArg('member_space_limits_change_custom_quota') +EventTypeArg.member_space_limits_change_status = EventTypeArg('member_space_limits_change_status') +EventTypeArg.member_space_limits_remove_custom_quota = EventTypeArg('member_space_limits_remove_custom_quota') +EventTypeArg.member_suggest = EventTypeArg('member_suggest') +EventTypeArg.member_transfer_account_contents = EventTypeArg('member_transfer_account_contents') +EventTypeArg.pending_secondary_email_added = EventTypeArg('pending_secondary_email_added') +EventTypeArg.product_assigned_to_member = EventTypeArg('product_assigned_to_member') +EventTypeArg.product_removed_from_member = EventTypeArg('product_removed_from_member') +EventTypeArg.secondary_email_deleted = EventTypeArg('secondary_email_deleted') +EventTypeArg.secondary_email_verified = EventTypeArg('secondary_email_verified') +EventTypeArg.secondary_mails_policy_changed = EventTypeArg('secondary_mails_policy_changed') +EventTypeArg.binder_add_page = EventTypeArg('binder_add_page') +EventTypeArg.binder_add_section = EventTypeArg('binder_add_section') +EventTypeArg.binder_remove_page = EventTypeArg('binder_remove_page') +EventTypeArg.binder_remove_section = EventTypeArg('binder_remove_section') +EventTypeArg.binder_rename_page = EventTypeArg('binder_rename_page') +EventTypeArg.binder_rename_section = EventTypeArg('binder_rename_section') +EventTypeArg.binder_reorder_page = EventTypeArg('binder_reorder_page') +EventTypeArg.binder_reorder_section = EventTypeArg('binder_reorder_section') +EventTypeArg.paper_content_add_member = EventTypeArg('paper_content_add_member') +EventTypeArg.paper_content_add_to_folder = EventTypeArg('paper_content_add_to_folder') +EventTypeArg.paper_content_archive = EventTypeArg('paper_content_archive') +EventTypeArg.paper_content_create = EventTypeArg('paper_content_create') +EventTypeArg.paper_content_permanently_delete = EventTypeArg('paper_content_permanently_delete') +EventTypeArg.paper_content_remove_from_folder = EventTypeArg('paper_content_remove_from_folder') +EventTypeArg.paper_content_remove_member = EventTypeArg('paper_content_remove_member') +EventTypeArg.paper_content_rename = EventTypeArg('paper_content_rename') +EventTypeArg.paper_content_restore = EventTypeArg('paper_content_restore') +EventTypeArg.paper_doc_add_comment = EventTypeArg('paper_doc_add_comment') +EventTypeArg.paper_doc_change_member_role = EventTypeArg('paper_doc_change_member_role') +EventTypeArg.paper_doc_change_sharing_policy = EventTypeArg('paper_doc_change_sharing_policy') +EventTypeArg.paper_doc_change_subscription = EventTypeArg('paper_doc_change_subscription') +EventTypeArg.paper_doc_deleted = EventTypeArg('paper_doc_deleted') +EventTypeArg.paper_doc_delete_comment = EventTypeArg('paper_doc_delete_comment') +EventTypeArg.paper_doc_download = EventTypeArg('paper_doc_download') +EventTypeArg.paper_doc_edit = EventTypeArg('paper_doc_edit') +EventTypeArg.paper_doc_edit_comment = EventTypeArg('paper_doc_edit_comment') +EventTypeArg.paper_doc_followed = EventTypeArg('paper_doc_followed') +EventTypeArg.paper_doc_mention = EventTypeArg('paper_doc_mention') +EventTypeArg.paper_doc_ownership_changed = EventTypeArg('paper_doc_ownership_changed') +EventTypeArg.paper_doc_request_access = EventTypeArg('paper_doc_request_access') +EventTypeArg.paper_doc_resolve_comment = EventTypeArg('paper_doc_resolve_comment') +EventTypeArg.paper_doc_revert = EventTypeArg('paper_doc_revert') +EventTypeArg.paper_doc_slack_share = EventTypeArg('paper_doc_slack_share') +EventTypeArg.paper_doc_team_invite = EventTypeArg('paper_doc_team_invite') +EventTypeArg.paper_doc_trashed = EventTypeArg('paper_doc_trashed') +EventTypeArg.paper_doc_unresolve_comment = EventTypeArg('paper_doc_unresolve_comment') +EventTypeArg.paper_doc_untrashed = EventTypeArg('paper_doc_untrashed') +EventTypeArg.paper_doc_view = EventTypeArg('paper_doc_view') +EventTypeArg.paper_external_view_allow = EventTypeArg('paper_external_view_allow') +EventTypeArg.paper_external_view_default_team = EventTypeArg('paper_external_view_default_team') +EventTypeArg.paper_external_view_forbid = EventTypeArg('paper_external_view_forbid') +EventTypeArg.paper_folder_change_subscription = EventTypeArg('paper_folder_change_subscription') +EventTypeArg.paper_folder_deleted = EventTypeArg('paper_folder_deleted') +EventTypeArg.paper_folder_followed = EventTypeArg('paper_folder_followed') +EventTypeArg.paper_folder_team_invite = EventTypeArg('paper_folder_team_invite') +EventTypeArg.paper_published_link_change_permission = EventTypeArg('paper_published_link_change_permission') +EventTypeArg.paper_published_link_create = EventTypeArg('paper_published_link_create') +EventTypeArg.paper_published_link_disabled = EventTypeArg('paper_published_link_disabled') +EventTypeArg.paper_published_link_view = EventTypeArg('paper_published_link_view') +EventTypeArg.password_change = EventTypeArg('password_change') +EventTypeArg.password_reset = EventTypeArg('password_reset') +EventTypeArg.password_reset_all = EventTypeArg('password_reset_all') +EventTypeArg.protect_internal_domains_changed = EventTypeArg('protect_internal_domains_changed') +EventTypeArg.classification_create_report = EventTypeArg('classification_create_report') +EventTypeArg.classification_create_report_fail = EventTypeArg('classification_create_report_fail') +EventTypeArg.emm_create_exceptions_report = EventTypeArg('emm_create_exceptions_report') +EventTypeArg.emm_create_usage_report = EventTypeArg('emm_create_usage_report') +EventTypeArg.export_members_report = EventTypeArg('export_members_report') +EventTypeArg.export_members_report_fail = EventTypeArg('export_members_report_fail') +EventTypeArg.external_sharing_create_report = EventTypeArg('external_sharing_create_report') +EventTypeArg.external_sharing_report_failed = EventTypeArg('external_sharing_report_failed') +EventTypeArg.member_access_details_create_report = EventTypeArg('member_access_details_create_report') +EventTypeArg.member_access_details_create_report_failed = EventTypeArg('member_access_details_create_report_failed') +EventTypeArg.no_expiration_link_gen_create_report = EventTypeArg('no_expiration_link_gen_create_report') +EventTypeArg.no_expiration_link_gen_report_failed = EventTypeArg('no_expiration_link_gen_report_failed') +EventTypeArg.no_password_link_gen_create_report = EventTypeArg('no_password_link_gen_create_report') +EventTypeArg.no_password_link_gen_report_failed = EventTypeArg('no_password_link_gen_report_failed') +EventTypeArg.no_password_link_view_create_report = EventTypeArg('no_password_link_view_create_report') +EventTypeArg.no_password_link_view_report_failed = EventTypeArg('no_password_link_view_report_failed') +EventTypeArg.outdated_link_view_create_report = EventTypeArg('outdated_link_view_create_report') +EventTypeArg.outdated_link_view_report_failed = EventTypeArg('outdated_link_view_report_failed') +EventTypeArg.paper_admin_export_start = EventTypeArg('paper_admin_export_start') +EventTypeArg.ransomware_alert_create_report = EventTypeArg('ransomware_alert_create_report') +EventTypeArg.ransomware_alert_create_report_failed = EventTypeArg('ransomware_alert_create_report_failed') +EventTypeArg.shared_folders_create_report = EventTypeArg('shared_folders_create_report') +EventTypeArg.shared_folders_create_report_failed = EventTypeArg('shared_folders_create_report_failed') +EventTypeArg.smart_sync_create_admin_privilege_report = EventTypeArg('smart_sync_create_admin_privilege_report') +EventTypeArg.team_activity_create_report = EventTypeArg('team_activity_create_report') +EventTypeArg.team_activity_create_report_fail = EventTypeArg('team_activity_create_report_fail') +EventTypeArg.team_folders_create_report = EventTypeArg('team_folders_create_report') +EventTypeArg.team_folders_create_report_failed = EventTypeArg('team_folders_create_report_failed') +EventTypeArg.team_storage_create_report = EventTypeArg('team_storage_create_report') +EventTypeArg.team_storage_create_report_failed = EventTypeArg('team_storage_create_report_failed') +EventTypeArg.collection_share = EventTypeArg('collection_share') +EventTypeArg.file_transfers_file_add = EventTypeArg('file_transfers_file_add') +EventTypeArg.file_transfers_transfer_delete = EventTypeArg('file_transfers_transfer_delete') +EventTypeArg.file_transfers_transfer_download = EventTypeArg('file_transfers_transfer_download') +EventTypeArg.file_transfers_transfer_send = EventTypeArg('file_transfers_transfer_send') +EventTypeArg.file_transfers_transfer_view = EventTypeArg('file_transfers_transfer_view') +EventTypeArg.media_hub_project_team_add = EventTypeArg('media_hub_project_team_add') +EventTypeArg.media_hub_project_team_delete = EventTypeArg('media_hub_project_team_delete') +EventTypeArg.media_hub_project_team_role_changed = EventTypeArg('media_hub_project_team_role_changed') +EventTypeArg.media_hub_shared_link_audience_changed = EventTypeArg('media_hub_shared_link_audience_changed') +EventTypeArg.media_hub_shared_link_created = EventTypeArg('media_hub_shared_link_created') +EventTypeArg.media_hub_shared_link_download_setting_changed = EventTypeArg('media_hub_shared_link_download_setting_changed') +EventTypeArg.media_hub_shared_link_revoked = EventTypeArg('media_hub_shared_link_revoked') +EventTypeArg.note_acl_invite_only = EventTypeArg('note_acl_invite_only') +EventTypeArg.note_acl_link = EventTypeArg('note_acl_link') +EventTypeArg.note_acl_team_link = EventTypeArg('note_acl_team_link') +EventTypeArg.note_shared = EventTypeArg('note_shared') +EventTypeArg.note_share_receive = EventTypeArg('note_share_receive') +EventTypeArg.open_note_shared = EventTypeArg('open_note_shared') +EventTypeArg.replay_file_shared_link_created = EventTypeArg('replay_file_shared_link_created') +EventTypeArg.replay_file_shared_link_modified = EventTypeArg('replay_file_shared_link_modified') +EventTypeArg.replay_project_team_add = EventTypeArg('replay_project_team_add') +EventTypeArg.replay_project_team_delete = EventTypeArg('replay_project_team_delete') +EventTypeArg.send_and_track_file_added = EventTypeArg('send_and_track_file_added') +EventTypeArg.send_and_track_file_renamed = EventTypeArg('send_and_track_file_renamed') +EventTypeArg.send_and_track_file_updated = EventTypeArg('send_and_track_file_updated') +EventTypeArg.send_and_track_link_created = EventTypeArg('send_and_track_link_created') +EventTypeArg.send_and_track_link_deleted = EventTypeArg('send_and_track_link_deleted') +EventTypeArg.send_and_track_link_updated = EventTypeArg('send_and_track_link_updated') +EventTypeArg.send_and_track_link_viewed = EventTypeArg('send_and_track_link_viewed') +EventTypeArg.send_and_track_removed_file_and_associated_links = EventTypeArg('send_and_track_removed_file_and_associated_links') +EventTypeArg.sf_add_group = EventTypeArg('sf_add_group') +EventTypeArg.sf_allow_non_members_to_view_shared_links = EventTypeArg('sf_allow_non_members_to_view_shared_links') +EventTypeArg.sf_external_invite_warn = EventTypeArg('sf_external_invite_warn') +EventTypeArg.sf_fb_invite = EventTypeArg('sf_fb_invite') +EventTypeArg.sf_fb_invite_change_role = EventTypeArg('sf_fb_invite_change_role') +EventTypeArg.sf_fb_uninvite = EventTypeArg('sf_fb_uninvite') +EventTypeArg.sf_invite_group = EventTypeArg('sf_invite_group') +EventTypeArg.sf_team_grant_access = EventTypeArg('sf_team_grant_access') +EventTypeArg.sf_team_invite = EventTypeArg('sf_team_invite') +EventTypeArg.sf_team_invite_change_role = EventTypeArg('sf_team_invite_change_role') +EventTypeArg.sf_team_join = EventTypeArg('sf_team_join') +EventTypeArg.sf_team_join_from_oob_link = EventTypeArg('sf_team_join_from_oob_link') +EventTypeArg.sf_team_uninvite = EventTypeArg('sf_team_uninvite') +EventTypeArg.shared_content_add_invitees = EventTypeArg('shared_content_add_invitees') +EventTypeArg.shared_content_add_link_expiry = EventTypeArg('shared_content_add_link_expiry') +EventTypeArg.shared_content_add_link_password = EventTypeArg('shared_content_add_link_password') +EventTypeArg.shared_content_add_member = EventTypeArg('shared_content_add_member') +EventTypeArg.shared_content_change_downloads_policy = EventTypeArg('shared_content_change_downloads_policy') +EventTypeArg.shared_content_change_invitee_role = EventTypeArg('shared_content_change_invitee_role') +EventTypeArg.shared_content_change_link_audience = EventTypeArg('shared_content_change_link_audience') +EventTypeArg.shared_content_change_link_expiry = EventTypeArg('shared_content_change_link_expiry') +EventTypeArg.shared_content_change_link_password = EventTypeArg('shared_content_change_link_password') +EventTypeArg.shared_content_change_member_role = EventTypeArg('shared_content_change_member_role') +EventTypeArg.shared_content_change_viewer_info_policy = EventTypeArg('shared_content_change_viewer_info_policy') +EventTypeArg.shared_content_claim_invitation = EventTypeArg('shared_content_claim_invitation') +EventTypeArg.shared_content_copy = EventTypeArg('shared_content_copy') +EventTypeArg.shared_content_download = EventTypeArg('shared_content_download') +EventTypeArg.shared_content_relinquish_membership = EventTypeArg('shared_content_relinquish_membership') +EventTypeArg.shared_content_remove_invitees = EventTypeArg('shared_content_remove_invitees') +EventTypeArg.shared_content_remove_link_expiry = EventTypeArg('shared_content_remove_link_expiry') +EventTypeArg.shared_content_remove_link_password = EventTypeArg('shared_content_remove_link_password') +EventTypeArg.shared_content_remove_member = EventTypeArg('shared_content_remove_member') +EventTypeArg.shared_content_request_access = EventTypeArg('shared_content_request_access') +EventTypeArg.shared_content_restore_invitees = EventTypeArg('shared_content_restore_invitees') +EventTypeArg.shared_content_restore_member = EventTypeArg('shared_content_restore_member') +EventTypeArg.shared_content_unshare = EventTypeArg('shared_content_unshare') +EventTypeArg.shared_content_view = EventTypeArg('shared_content_view') +EventTypeArg.shared_folder_change_link_policy = EventTypeArg('shared_folder_change_link_policy') +EventTypeArg.shared_folder_change_members_inheritance_policy = EventTypeArg('shared_folder_change_members_inheritance_policy') +EventTypeArg.shared_folder_change_members_management_policy = EventTypeArg('shared_folder_change_members_management_policy') +EventTypeArg.shared_folder_change_members_policy = EventTypeArg('shared_folder_change_members_policy') +EventTypeArg.shared_folder_create = EventTypeArg('shared_folder_create') +EventTypeArg.shared_folder_decline_invitation = EventTypeArg('shared_folder_decline_invitation') +EventTypeArg.shared_folder_mount = EventTypeArg('shared_folder_mount') +EventTypeArg.shared_folder_nest = EventTypeArg('shared_folder_nest') +EventTypeArg.shared_folder_transfer_ownership = EventTypeArg('shared_folder_transfer_ownership') +EventTypeArg.shared_folder_unmount = EventTypeArg('shared_folder_unmount') +EventTypeArg.shared_link_add_expiry = EventTypeArg('shared_link_add_expiry') +EventTypeArg.shared_link_change_expiry = EventTypeArg('shared_link_change_expiry') +EventTypeArg.shared_link_change_visibility = EventTypeArg('shared_link_change_visibility') +EventTypeArg.shared_link_copy = EventTypeArg('shared_link_copy') +EventTypeArg.shared_link_create = EventTypeArg('shared_link_create') +EventTypeArg.shared_link_disable = EventTypeArg('shared_link_disable') +EventTypeArg.shared_link_download = EventTypeArg('shared_link_download') +EventTypeArg.shared_link_remove_expiry = EventTypeArg('shared_link_remove_expiry') +EventTypeArg.shared_link_remove_visitor = EventTypeArg('shared_link_remove_visitor') +EventTypeArg.shared_link_settings_add_expiration = EventTypeArg('shared_link_settings_add_expiration') +EventTypeArg.shared_link_settings_add_password = EventTypeArg('shared_link_settings_add_password') +EventTypeArg.shared_link_settings_allow_download_disabled = EventTypeArg('shared_link_settings_allow_download_disabled') +EventTypeArg.shared_link_settings_allow_download_enabled = EventTypeArg('shared_link_settings_allow_download_enabled') +EventTypeArg.shared_link_settings_change_audience = EventTypeArg('shared_link_settings_change_audience') +EventTypeArg.shared_link_settings_change_expiration = EventTypeArg('shared_link_settings_change_expiration') +EventTypeArg.shared_link_settings_change_password = EventTypeArg('shared_link_settings_change_password') +EventTypeArg.shared_link_settings_remove_expiration = EventTypeArg('shared_link_settings_remove_expiration') +EventTypeArg.shared_link_settings_remove_password = EventTypeArg('shared_link_settings_remove_password') +EventTypeArg.shared_link_share = EventTypeArg('shared_link_share') +EventTypeArg.shared_link_view = EventTypeArg('shared_link_view') +EventTypeArg.shared_note_opened = EventTypeArg('shared_note_opened') +EventTypeArg.shmodel_disable_downloads = EventTypeArg('shmodel_disable_downloads') +EventTypeArg.shmodel_enable_downloads = EventTypeArg('shmodel_enable_downloads') +EventTypeArg.shmodel_group_share = EventTypeArg('shmodel_group_share') +EventTypeArg.showcase_access_granted = EventTypeArg('showcase_access_granted') +EventTypeArg.showcase_add_member = EventTypeArg('showcase_add_member') +EventTypeArg.showcase_archived = EventTypeArg('showcase_archived') +EventTypeArg.showcase_created = EventTypeArg('showcase_created') +EventTypeArg.showcase_delete_comment = EventTypeArg('showcase_delete_comment') +EventTypeArg.showcase_edited = EventTypeArg('showcase_edited') +EventTypeArg.showcase_edit_comment = EventTypeArg('showcase_edit_comment') +EventTypeArg.showcase_file_added = EventTypeArg('showcase_file_added') +EventTypeArg.showcase_file_download = EventTypeArg('showcase_file_download') +EventTypeArg.showcase_file_removed = EventTypeArg('showcase_file_removed') +EventTypeArg.showcase_file_view = EventTypeArg('showcase_file_view') +EventTypeArg.showcase_permanently_deleted = EventTypeArg('showcase_permanently_deleted') +EventTypeArg.showcase_post_comment = EventTypeArg('showcase_post_comment') +EventTypeArg.showcase_remove_member = EventTypeArg('showcase_remove_member') +EventTypeArg.showcase_renamed = EventTypeArg('showcase_renamed') +EventTypeArg.showcase_request_access = EventTypeArg('showcase_request_access') +EventTypeArg.showcase_resolve_comment = EventTypeArg('showcase_resolve_comment') +EventTypeArg.showcase_restored = EventTypeArg('showcase_restored') +EventTypeArg.showcase_trashed = EventTypeArg('showcase_trashed') +EventTypeArg.showcase_trashed_deprecated = EventTypeArg('showcase_trashed_deprecated') +EventTypeArg.showcase_unresolve_comment = EventTypeArg('showcase_unresolve_comment') +EventTypeArg.showcase_untrashed = EventTypeArg('showcase_untrashed') +EventTypeArg.showcase_untrashed_deprecated = EventTypeArg('showcase_untrashed_deprecated') +EventTypeArg.showcase_view = EventTypeArg('showcase_view') +EventTypeArg.sign_signature_request_canceled = EventTypeArg('sign_signature_request_canceled') +EventTypeArg.sign_signature_request_completed = EventTypeArg('sign_signature_request_completed') +EventTypeArg.sign_signature_request_declined = EventTypeArg('sign_signature_request_declined') +EventTypeArg.sign_signature_request_opened = EventTypeArg('sign_signature_request_opened') +EventTypeArg.sign_signature_request_reminder_sent = EventTypeArg('sign_signature_request_reminder_sent') +EventTypeArg.sign_signature_request_sent = EventTypeArg('sign_signature_request_sent') +EventTypeArg.sign_template_created = EventTypeArg('sign_template_created') +EventTypeArg.sign_template_shared = EventTypeArg('sign_template_shared') +EventTypeArg.risc_security_event = EventTypeArg('risc_security_event') +EventTypeArg.sso_add_cert = EventTypeArg('sso_add_cert') +EventTypeArg.sso_add_login_url = EventTypeArg('sso_add_login_url') +EventTypeArg.sso_add_logout_url = EventTypeArg('sso_add_logout_url') +EventTypeArg.sso_change_cert = EventTypeArg('sso_change_cert') +EventTypeArg.sso_change_login_url = EventTypeArg('sso_change_login_url') +EventTypeArg.sso_change_logout_url = EventTypeArg('sso_change_logout_url') +EventTypeArg.sso_change_saml_identity_mode = EventTypeArg('sso_change_saml_identity_mode') +EventTypeArg.sso_remove_cert = EventTypeArg('sso_remove_cert') +EventTypeArg.sso_remove_login_url = EventTypeArg('sso_remove_login_url') +EventTypeArg.sso_remove_logout_url = EventTypeArg('sso_remove_logout_url') +EventTypeArg.team_folder_change_status = EventTypeArg('team_folder_change_status') +EventTypeArg.team_folder_create = EventTypeArg('team_folder_create') +EventTypeArg.team_folder_downgrade = EventTypeArg('team_folder_downgrade') +EventTypeArg.team_folder_permanently_delete = EventTypeArg('team_folder_permanently_delete') +EventTypeArg.team_folder_rename = EventTypeArg('team_folder_rename') +EventTypeArg.team_folder_space_limits_change_caps_type = EventTypeArg('team_folder_space_limits_change_caps_type') +EventTypeArg.team_folder_space_limits_change_limit = EventTypeArg('team_folder_space_limits_change_limit') +EventTypeArg.team_folder_space_limits_change_notification_target = EventTypeArg('team_folder_space_limits_change_notification_target') +EventTypeArg.team_selective_sync_settings_changed = EventTypeArg('team_selective_sync_settings_changed') +EventTypeArg.account_capture_change_policy = EventTypeArg('account_capture_change_policy') +EventTypeArg.admin_email_reminders_changed = EventTypeArg('admin_email_reminders_changed') +EventTypeArg.ai_third_party_sharing_dropbox_base_policy_changed = EventTypeArg('ai_third_party_sharing_dropbox_base_policy_changed') +EventTypeArg.allow_download_disabled = EventTypeArg('allow_download_disabled') +EventTypeArg.allow_download_enabled = EventTypeArg('allow_download_enabled') +EventTypeArg.apple_login_change_policy = EventTypeArg('apple_login_change_policy') +EventTypeArg.app_permissions_changed = EventTypeArg('app_permissions_changed') +EventTypeArg.camera_uploads_policy_changed = EventTypeArg('camera_uploads_policy_changed') +EventTypeArg.capture_team_space_policy_changed = EventTypeArg('capture_team_space_policy_changed') +EventTypeArg.capture_transcript_policy_changed = EventTypeArg('capture_transcript_policy_changed') +EventTypeArg.classification_change_policy = EventTypeArg('classification_change_policy') +EventTypeArg.computer_backup_policy_changed = EventTypeArg('computer_backup_policy_changed') +EventTypeArg.content_administration_policy_changed = EventTypeArg('content_administration_policy_changed') +EventTypeArg.content_deletion_protection_change_policy = EventTypeArg('content_deletion_protection_change_policy') +EventTypeArg.dash_external_sharing_policy_changed = EventTypeArg('dash_external_sharing_policy_changed') +EventTypeArg.data_placement_restriction_change_policy = EventTypeArg('data_placement_restriction_change_policy') +EventTypeArg.data_placement_restriction_satisfy_policy = EventTypeArg('data_placement_restriction_satisfy_policy') +EventTypeArg.device_approvals_add_exception = EventTypeArg('device_approvals_add_exception') +EventTypeArg.device_approvals_change_desktop_policy = EventTypeArg('device_approvals_change_desktop_policy') +EventTypeArg.device_approvals_change_mobile_policy = EventTypeArg('device_approvals_change_mobile_policy') +EventTypeArg.device_approvals_change_overage_action = EventTypeArg('device_approvals_change_overage_action') +EventTypeArg.device_approvals_change_unlink_action = EventTypeArg('device_approvals_change_unlink_action') +EventTypeArg.device_approvals_remove_exception = EventTypeArg('device_approvals_remove_exception') +EventTypeArg.directory_restrictions_add_members = EventTypeArg('directory_restrictions_add_members') +EventTypeArg.directory_restrictions_remove_members = EventTypeArg('directory_restrictions_remove_members') +EventTypeArg.dropbox_passwords_policy_changed = EventTypeArg('dropbox_passwords_policy_changed') +EventTypeArg.email_ingest_policy_changed = EventTypeArg('email_ingest_policy_changed') +EventTypeArg.emm_add_exception = EventTypeArg('emm_add_exception') +EventTypeArg.emm_change_policy = EventTypeArg('emm_change_policy') +EventTypeArg.emm_remove_exception = EventTypeArg('emm_remove_exception') +EventTypeArg.extended_version_history_change_policy = EventTypeArg('extended_version_history_change_policy') +EventTypeArg.external_drive_backup_policy_changed = EventTypeArg('external_drive_backup_policy_changed') +EventTypeArg.file_comments_change_policy = EventTypeArg('file_comments_change_policy') +EventTypeArg.file_locking_policy_changed = EventTypeArg('file_locking_policy_changed') +EventTypeArg.file_provider_migration_policy_changed = EventTypeArg('file_provider_migration_policy_changed') +EventTypeArg.file_requests_change_policy = EventTypeArg('file_requests_change_policy') +EventTypeArg.file_requests_emails_enabled = EventTypeArg('file_requests_emails_enabled') +EventTypeArg.file_requests_emails_restricted_to_team_only = EventTypeArg('file_requests_emails_restricted_to_team_only') +EventTypeArg.file_transfers_policy_changed = EventTypeArg('file_transfers_policy_changed') +EventTypeArg.flexible_file_names_policy_changed = EventTypeArg('flexible_file_names_policy_changed') +EventTypeArg.folder_link_restriction_policy_changed = EventTypeArg('folder_link_restriction_policy_changed') +EventTypeArg.google_sso_change_policy = EventTypeArg('google_sso_change_policy') +EventTypeArg.group_user_management_change_policy = EventTypeArg('group_user_management_change_policy') +EventTypeArg.integration_policy_changed = EventTypeArg('integration_policy_changed') +EventTypeArg.invite_acceptance_email_policy_changed = EventTypeArg('invite_acceptance_email_policy_changed') +EventTypeArg.media_hub_adding_people_policy_changed = EventTypeArg('media_hub_adding_people_policy_changed') +EventTypeArg.media_hub_download_policy_changed = EventTypeArg('media_hub_download_policy_changed') +EventTypeArg.media_hub_link_sharing_policy_changed = EventTypeArg('media_hub_link_sharing_policy_changed') +EventTypeArg.member_requests_change_policy = EventTypeArg('member_requests_change_policy') +EventTypeArg.member_send_invite_policy_changed = EventTypeArg('member_send_invite_policy_changed') +EventTypeArg.member_space_limits_add_exception = EventTypeArg('member_space_limits_add_exception') +EventTypeArg.member_space_limits_change_caps_type_policy = EventTypeArg('member_space_limits_change_caps_type_policy') +EventTypeArg.member_space_limits_change_policy = EventTypeArg('member_space_limits_change_policy') +EventTypeArg.member_space_limits_remove_exception = EventTypeArg('member_space_limits_remove_exception') +EventTypeArg.member_suggestions_change_policy = EventTypeArg('member_suggestions_change_policy') +EventTypeArg.microsoft_login_change_policy = EventTypeArg('microsoft_login_change_policy') +EventTypeArg.microsoft_office_addin_change_policy = EventTypeArg('microsoft_office_addin_change_policy') +EventTypeArg.multi_team_identity_policy_changed = EventTypeArg('multi_team_identity_policy_changed') +EventTypeArg.network_control_change_policy = EventTypeArg('network_control_change_policy') +EventTypeArg.paper_change_deployment_policy = EventTypeArg('paper_change_deployment_policy') +EventTypeArg.paper_change_member_link_policy = EventTypeArg('paper_change_member_link_policy') +EventTypeArg.paper_change_member_policy = EventTypeArg('paper_change_member_policy') +EventTypeArg.paper_change_policy = EventTypeArg('paper_change_policy') +EventTypeArg.paper_default_folder_policy_changed = EventTypeArg('paper_default_folder_policy_changed') +EventTypeArg.paper_desktop_policy_changed = EventTypeArg('paper_desktop_policy_changed') +EventTypeArg.paper_enabled_users_group_addition = EventTypeArg('paper_enabled_users_group_addition') +EventTypeArg.paper_enabled_users_group_removal = EventTypeArg('paper_enabled_users_group_removal') +EventTypeArg.passkey_login_policy_changed = EventTypeArg('passkey_login_policy_changed') +EventTypeArg.password_strength_requirements_change_policy = EventTypeArg('password_strength_requirements_change_policy') +EventTypeArg.permanent_delete_change_policy = EventTypeArg('permanent_delete_change_policy') +EventTypeArg.previews_ai_policy_changed = EventTypeArg('previews_ai_policy_changed') +EventTypeArg.replay_adding_people_policy_changed = EventTypeArg('replay_adding_people_policy_changed') +EventTypeArg.replay_sharing_policy_changed = EventTypeArg('replay_sharing_policy_changed') +EventTypeArg.reseller_support_change_policy = EventTypeArg('reseller_support_change_policy') +EventTypeArg.rewind_policy_changed = EventTypeArg('rewind_policy_changed') +EventTypeArg.send_and_track_policy_changed = EventTypeArg('send_and_track_policy_changed') +EventTypeArg.send_external_sharing_policy_changed = EventTypeArg('send_external_sharing_policy_changed') +EventTypeArg.send_for_signature_policy_changed = EventTypeArg('send_for_signature_policy_changed') +EventTypeArg.shared_link_default_permissions_policy_changed = EventTypeArg('shared_link_default_permissions_policy_changed') +EventTypeArg.sharing_change_folder_join_policy = EventTypeArg('sharing_change_folder_join_policy') +EventTypeArg.sharing_change_link_allow_change_expiration_policy = EventTypeArg('sharing_change_link_allow_change_expiration_policy') +EventTypeArg.sharing_change_link_default_expiration_policy = EventTypeArg('sharing_change_link_default_expiration_policy') +EventTypeArg.sharing_change_link_enforce_password_policy = EventTypeArg('sharing_change_link_enforce_password_policy') +EventTypeArg.sharing_change_link_policy = EventTypeArg('sharing_change_link_policy') +EventTypeArg.sharing_change_member_policy = EventTypeArg('sharing_change_member_policy') +EventTypeArg.showcase_change_download_policy = EventTypeArg('showcase_change_download_policy') +EventTypeArg.showcase_change_enabled_policy = EventTypeArg('showcase_change_enabled_policy') +EventTypeArg.showcase_change_external_sharing_policy = EventTypeArg('showcase_change_external_sharing_policy') +EventTypeArg.sign_external_sharing_policy_changed = EventTypeArg('sign_external_sharing_policy_changed') +EventTypeArg.sign_template_creation_permission_changed = EventTypeArg('sign_template_creation_permission_changed') +EventTypeArg.smarter_smart_sync_policy_changed = EventTypeArg('smarter_smart_sync_policy_changed') +EventTypeArg.smart_sync_change_policy = EventTypeArg('smart_sync_change_policy') +EventTypeArg.smart_sync_not_opt_out = EventTypeArg('smart_sync_not_opt_out') +EventTypeArg.smart_sync_opt_out = EventTypeArg('smart_sync_opt_out') +EventTypeArg.sso_change_policy = EventTypeArg('sso_change_policy') +EventTypeArg.stack_cross_team_access_policy_changed = EventTypeArg('stack_cross_team_access_policy_changed') +EventTypeArg.team_branding_policy_changed = EventTypeArg('team_branding_policy_changed') +EventTypeArg.team_extensions_policy_changed = EventTypeArg('team_extensions_policy_changed') +EventTypeArg.team_member_storage_request_policy_changed = EventTypeArg('team_member_storage_request_policy_changed') +EventTypeArg.team_selective_sync_policy_changed = EventTypeArg('team_selective_sync_policy_changed') +EventTypeArg.team_sharing_whitelist_subjects_changed = EventTypeArg('team_sharing_whitelist_subjects_changed') +EventTypeArg.tfa_add_exception = EventTypeArg('tfa_add_exception') +EventTypeArg.tfa_change_policy = EventTypeArg('tfa_change_policy') +EventTypeArg.tfa_remove_exception = EventTypeArg('tfa_remove_exception') +EventTypeArg.top_level_content_policy_changed = EventTypeArg('top_level_content_policy_changed') +EventTypeArg.two_account_change_policy = EventTypeArg('two_account_change_policy') +EventTypeArg.viewer_info_policy_changed = EventTypeArg('viewer_info_policy_changed') +EventTypeArg.watermarking_policy_changed = EventTypeArg('watermarking_policy_changed') +EventTypeArg.web_sessions_change_active_session_limit = EventTypeArg('web_sessions_change_active_session_limit') +EventTypeArg.web_sessions_change_fixed_length_policy = EventTypeArg('web_sessions_change_fixed_length_policy') +EventTypeArg.web_sessions_change_idle_length_policy = EventTypeArg('web_sessions_change_idle_length_policy') +EventTypeArg.data_residency_migration_request_successful = EventTypeArg('data_residency_migration_request_successful') +EventTypeArg.data_residency_migration_request_unsuccessful = EventTypeArg('data_residency_migration_request_unsuccessful') +EventTypeArg.team_merge_from = EventTypeArg('team_merge_from') +EventTypeArg.team_merge_to = EventTypeArg('team_merge_to') +EventTypeArg.team_profile_add_background = EventTypeArg('team_profile_add_background') +EventTypeArg.team_profile_add_logo = EventTypeArg('team_profile_add_logo') +EventTypeArg.team_profile_change_background = EventTypeArg('team_profile_change_background') +EventTypeArg.team_profile_change_default_language = EventTypeArg('team_profile_change_default_language') +EventTypeArg.team_profile_change_logo = EventTypeArg('team_profile_change_logo') +EventTypeArg.team_profile_change_name = EventTypeArg('team_profile_change_name') +EventTypeArg.team_profile_remove_background = EventTypeArg('team_profile_remove_background') +EventTypeArg.team_profile_remove_logo = EventTypeArg('team_profile_remove_logo') +EventTypeArg.passkey_add = EventTypeArg('passkey_add') +EventTypeArg.passkey_remove = EventTypeArg('passkey_remove') +EventTypeArg.tfa_add_backup_phone = EventTypeArg('tfa_add_backup_phone') +EventTypeArg.tfa_add_security_key = EventTypeArg('tfa_add_security_key') +EventTypeArg.tfa_change_backup_phone = EventTypeArg('tfa_change_backup_phone') +EventTypeArg.tfa_change_status = EventTypeArg('tfa_change_status') +EventTypeArg.tfa_remove_backup_phone = EventTypeArg('tfa_remove_backup_phone') +EventTypeArg.tfa_remove_security_key = EventTypeArg('tfa_remove_security_key') +EventTypeArg.tfa_reset = EventTypeArg('tfa_reset') +EventTypeArg.changed_enterprise_admin_role = EventTypeArg('changed_enterprise_admin_role') +EventTypeArg.changed_enterprise_connected_team_status = EventTypeArg('changed_enterprise_connected_team_status') +EventTypeArg.ended_enterprise_admin_session = EventTypeArg('ended_enterprise_admin_session') +EventTypeArg.ended_enterprise_admin_session_deprecated = EventTypeArg('ended_enterprise_admin_session_deprecated') +EventTypeArg.enterprise_settings_locking = EventTypeArg('enterprise_settings_locking') +EventTypeArg.guest_admin_change_status = EventTypeArg('guest_admin_change_status') +EventTypeArg.started_enterprise_admin_session = EventTypeArg('started_enterprise_admin_session') +EventTypeArg.team_merge_request_accepted = EventTypeArg('team_merge_request_accepted') +EventTypeArg.team_merge_request_accepted_shown_to_primary_team = EventTypeArg('team_merge_request_accepted_shown_to_primary_team') +EventTypeArg.team_merge_request_accepted_shown_to_secondary_team = EventTypeArg('team_merge_request_accepted_shown_to_secondary_team') +EventTypeArg.team_merge_request_auto_canceled = EventTypeArg('team_merge_request_auto_canceled') +EventTypeArg.team_merge_request_canceled = EventTypeArg('team_merge_request_canceled') +EventTypeArg.team_merge_request_canceled_shown_to_primary_team = EventTypeArg('team_merge_request_canceled_shown_to_primary_team') +EventTypeArg.team_merge_request_canceled_shown_to_secondary_team = EventTypeArg('team_merge_request_canceled_shown_to_secondary_team') +EventTypeArg.team_merge_request_expired = EventTypeArg('team_merge_request_expired') +EventTypeArg.team_merge_request_expired_shown_to_primary_team = EventTypeArg('team_merge_request_expired_shown_to_primary_team') +EventTypeArg.team_merge_request_expired_shown_to_secondary_team = EventTypeArg('team_merge_request_expired_shown_to_secondary_team') +EventTypeArg.team_merge_request_rejected_shown_to_primary_team = EventTypeArg('team_merge_request_rejected_shown_to_primary_team') +EventTypeArg.team_merge_request_rejected_shown_to_secondary_team = EventTypeArg('team_merge_request_rejected_shown_to_secondary_team') +EventTypeArg.team_merge_request_reminder = EventTypeArg('team_merge_request_reminder') +EventTypeArg.team_merge_request_reminder_shown_to_primary_team = EventTypeArg('team_merge_request_reminder_shown_to_primary_team') +EventTypeArg.team_merge_request_reminder_shown_to_secondary_team = EventTypeArg('team_merge_request_reminder_shown_to_secondary_team') +EventTypeArg.team_merge_request_revoked = EventTypeArg('team_merge_request_revoked') +EventTypeArg.team_merge_request_sent_shown_to_primary_team = EventTypeArg('team_merge_request_sent_shown_to_primary_team') +EventTypeArg.team_merge_request_sent_shown_to_secondary_team = EventTypeArg('team_merge_request_sent_shown_to_secondary_team') +EventTypeArg.other = EventTypeArg('other') ExportMembersReportDetails._all_field_names_ = set([]) ExportMembersReportDetails._all_fields_ = [] ExportMembersReportFailDetails.failure_reason.validator = team.TeamReportFailureReason_validator -ExportMembersReportFailDetails._all_field_names_ = set(["failure_reason"]) -ExportMembersReportFailDetails._all_fields_ = [ - ("failure_reason", ExportMembersReportFailDetails.failure_reason.validator) -] +ExportMembersReportFailDetails._all_field_names_ = set(['failure_reason']) +ExportMembersReportFailDetails._all_fields_ = [('failure_reason', ExportMembersReportFailDetails.failure_reason.validator)] ExportMembersReportFailType.description.validator = bv.String() -ExportMembersReportFailType._all_field_names_ = set(["description"]) -ExportMembersReportFailType._all_fields_ = [ - ("description", ExportMembersReportFailType.description.validator) -] +ExportMembersReportFailType._all_field_names_ = set(['description']) +ExportMembersReportFailType._all_fields_ = [('description', ExportMembersReportFailType.description.validator)] ExportMembersReportType.description.validator = bv.String() -ExportMembersReportType._all_field_names_ = set(["description"]) -ExportMembersReportType._all_fields_ = [ - ("description", ExportMembersReportType.description.validator) -] - -ExtendedVersionHistoryChangePolicyDetails.new_value.validator = ( - ExtendedVersionHistoryPolicy_validator -) -ExtendedVersionHistoryChangePolicyDetails.previous_value.validator = bv.Nullable( - ExtendedVersionHistoryPolicy_validator -) -ExtendedVersionHistoryChangePolicyDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +ExportMembersReportType._all_field_names_ = set(['description']) +ExportMembersReportType._all_fields_ = [('description', ExportMembersReportType.description.validator)] + +ExtendedVersionHistoryChangePolicyDetails.new_value.validator = ExtendedVersionHistoryPolicy_validator +ExtendedVersionHistoryChangePolicyDetails.previous_value.validator = bv.Nullable(ExtendedVersionHistoryPolicy_validator) +ExtendedVersionHistoryChangePolicyDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) ExtendedVersionHistoryChangePolicyDetails._all_fields_ = [ - ("new_value", ExtendedVersionHistoryChangePolicyDetails.new_value.validator), - ( - "previous_value", - ExtendedVersionHistoryChangePolicyDetails.previous_value.validator, - ), + ('new_value', ExtendedVersionHistoryChangePolicyDetails.new_value.validator), + ('previous_value', ExtendedVersionHistoryChangePolicyDetails.previous_value.validator), ] ExtendedVersionHistoryChangePolicyType.description.validator = bv.String() -ExtendedVersionHistoryChangePolicyType._all_field_names_ = set(["description"]) -ExtendedVersionHistoryChangePolicyType._all_fields_ = [ - ("description", ExtendedVersionHistoryChangePolicyType.description.validator) -] +ExtendedVersionHistoryChangePolicyType._all_field_names_ = set(['description']) +ExtendedVersionHistoryChangePolicyType._all_fields_ = [('description', ExtendedVersionHistoryChangePolicyType.description.validator)] ExtendedVersionHistoryPolicy._explicitly_limited_validator = bv.Void() ExtendedVersionHistoryPolicy._explicitly_unlimited_validator = bv.Void() @@ -107024,117 +101056,83 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ExtendedVersionHistoryPolicy._implicitly_unlimited_validator = bv.Void() ExtendedVersionHistoryPolicy._other_validator = bv.Void() ExtendedVersionHistoryPolicy._tagmap = { - "explicitly_limited": ExtendedVersionHistoryPolicy._explicitly_limited_validator, - "explicitly_unlimited": ExtendedVersionHistoryPolicy._explicitly_unlimited_validator, - "implicitly_limited": ExtendedVersionHistoryPolicy._implicitly_limited_validator, - "implicitly_unlimited": ExtendedVersionHistoryPolicy._implicitly_unlimited_validator, - "other": ExtendedVersionHistoryPolicy._other_validator, + 'explicitly_limited': ExtendedVersionHistoryPolicy._explicitly_limited_validator, + 'explicitly_unlimited': ExtendedVersionHistoryPolicy._explicitly_unlimited_validator, + 'implicitly_limited': ExtendedVersionHistoryPolicy._implicitly_limited_validator, + 'implicitly_unlimited': ExtendedVersionHistoryPolicy._implicitly_unlimited_validator, + 'other': ExtendedVersionHistoryPolicy._other_validator, } -ExtendedVersionHistoryPolicy.explicitly_limited = ExtendedVersionHistoryPolicy("explicitly_limited") -ExtendedVersionHistoryPolicy.explicitly_unlimited = ExtendedVersionHistoryPolicy( - "explicitly_unlimited" -) -ExtendedVersionHistoryPolicy.implicitly_limited = ExtendedVersionHistoryPolicy("implicitly_limited") -ExtendedVersionHistoryPolicy.implicitly_unlimited = ExtendedVersionHistoryPolicy( - "implicitly_unlimited" -) -ExtendedVersionHistoryPolicy.other = ExtendedVersionHistoryPolicy("other") +ExtendedVersionHistoryPolicy.explicitly_limited = ExtendedVersionHistoryPolicy('explicitly_limited') +ExtendedVersionHistoryPolicy.explicitly_unlimited = ExtendedVersionHistoryPolicy('explicitly_unlimited') +ExtendedVersionHistoryPolicy.implicitly_limited = ExtendedVersionHistoryPolicy('implicitly_limited') +ExtendedVersionHistoryPolicy.implicitly_unlimited = ExtendedVersionHistoryPolicy('implicitly_unlimited') +ExtendedVersionHistoryPolicy.other = ExtendedVersionHistoryPolicy('other') ExternalDriveBackupEligibilityStatus._exceed_license_cap_validator = bv.Void() ExternalDriveBackupEligibilityStatus._skip_validator = bv.Void() ExternalDriveBackupEligibilityStatus._success_validator = bv.Void() ExternalDriveBackupEligibilityStatus._other_validator = bv.Void() ExternalDriveBackupEligibilityStatus._tagmap = { - "exceed_license_cap": ExternalDriveBackupEligibilityStatus._exceed_license_cap_validator, - "skip": ExternalDriveBackupEligibilityStatus._skip_validator, - "success": ExternalDriveBackupEligibilityStatus._success_validator, - "other": ExternalDriveBackupEligibilityStatus._other_validator, + 'exceed_license_cap': ExternalDriveBackupEligibilityStatus._exceed_license_cap_validator, + 'skip': ExternalDriveBackupEligibilityStatus._skip_validator, + 'success': ExternalDriveBackupEligibilityStatus._success_validator, + 'other': ExternalDriveBackupEligibilityStatus._other_validator, } -ExternalDriveBackupEligibilityStatus.exceed_license_cap = ExternalDriveBackupEligibilityStatus( - "exceed_license_cap" -) -ExternalDriveBackupEligibilityStatus.skip = ExternalDriveBackupEligibilityStatus("skip") -ExternalDriveBackupEligibilityStatus.success = ExternalDriveBackupEligibilityStatus("success") -ExternalDriveBackupEligibilityStatus.other = ExternalDriveBackupEligibilityStatus("other") - -ExternalDriveBackupEligibilityStatusCheckedDetails.desktop_device_session_info.validator = ( - DesktopDeviceSessionLogInfo_validator -) -ExternalDriveBackupEligibilityStatusCheckedDetails.status.validator = ( - ExternalDriveBackupEligibilityStatus_validator -) -ExternalDriveBackupEligibilityStatusCheckedDetails.number_of_external_drive_backup.validator = ( - bv.UInt64() -) -ExternalDriveBackupEligibilityStatusCheckedDetails._all_field_names_ = set( - [ - "desktop_device_session_info", - "status", - "number_of_external_drive_backup", - ] -) +ExternalDriveBackupEligibilityStatus.exceed_license_cap = ExternalDriveBackupEligibilityStatus('exceed_license_cap') +ExternalDriveBackupEligibilityStatus.skip = ExternalDriveBackupEligibilityStatus('skip') +ExternalDriveBackupEligibilityStatus.success = ExternalDriveBackupEligibilityStatus('success') +ExternalDriveBackupEligibilityStatus.other = ExternalDriveBackupEligibilityStatus('other') + +ExternalDriveBackupEligibilityStatusCheckedDetails.desktop_device_session_info.validator = DesktopDeviceSessionLogInfo_validator +ExternalDriveBackupEligibilityStatusCheckedDetails.status.validator = ExternalDriveBackupEligibilityStatus_validator +ExternalDriveBackupEligibilityStatusCheckedDetails.number_of_external_drive_backup.validator = bv.UInt64() +ExternalDriveBackupEligibilityStatusCheckedDetails._all_field_names_ = set([ + 'desktop_device_session_info', + 'status', + 'number_of_external_drive_backup', +]) ExternalDriveBackupEligibilityStatusCheckedDetails._all_fields_ = [ - ( - "desktop_device_session_info", - ExternalDriveBackupEligibilityStatusCheckedDetails.desktop_device_session_info.validator, - ), - ("status", ExternalDriveBackupEligibilityStatusCheckedDetails.status.validator), - ( - "number_of_external_drive_backup", - ExternalDriveBackupEligibilityStatusCheckedDetails.number_of_external_drive_backup.validator, - ), + ('desktop_device_session_info', ExternalDriveBackupEligibilityStatusCheckedDetails.desktop_device_session_info.validator), + ('status', ExternalDriveBackupEligibilityStatusCheckedDetails.status.validator), + ('number_of_external_drive_backup', ExternalDriveBackupEligibilityStatusCheckedDetails.number_of_external_drive_backup.validator), ] ExternalDriveBackupEligibilityStatusCheckedType.description.validator = bv.String() -ExternalDriveBackupEligibilityStatusCheckedType._all_field_names_ = set(["description"]) -ExternalDriveBackupEligibilityStatusCheckedType._all_fields_ = [ - ( - "description", - ExternalDriveBackupEligibilityStatusCheckedType.description.validator, - ) -] +ExternalDriveBackupEligibilityStatusCheckedType._all_field_names_ = set(['description']) +ExternalDriveBackupEligibilityStatusCheckedType._all_fields_ = [('description', ExternalDriveBackupEligibilityStatusCheckedType.description.validator)] ExternalDriveBackupPolicy._default_validator = bv.Void() ExternalDriveBackupPolicy._disabled_validator = bv.Void() ExternalDriveBackupPolicy._enabled_validator = bv.Void() ExternalDriveBackupPolicy._other_validator = bv.Void() ExternalDriveBackupPolicy._tagmap = { - "default": ExternalDriveBackupPolicy._default_validator, - "disabled": ExternalDriveBackupPolicy._disabled_validator, - "enabled": ExternalDriveBackupPolicy._enabled_validator, - "other": ExternalDriveBackupPolicy._other_validator, + 'default': ExternalDriveBackupPolicy._default_validator, + 'disabled': ExternalDriveBackupPolicy._disabled_validator, + 'enabled': ExternalDriveBackupPolicy._enabled_validator, + 'other': ExternalDriveBackupPolicy._other_validator, } -ExternalDriveBackupPolicy.default = ExternalDriveBackupPolicy("default") -ExternalDriveBackupPolicy.disabled = ExternalDriveBackupPolicy("disabled") -ExternalDriveBackupPolicy.enabled = ExternalDriveBackupPolicy("enabled") -ExternalDriveBackupPolicy.other = ExternalDriveBackupPolicy("other") +ExternalDriveBackupPolicy.default = ExternalDriveBackupPolicy('default') +ExternalDriveBackupPolicy.disabled = ExternalDriveBackupPolicy('disabled') +ExternalDriveBackupPolicy.enabled = ExternalDriveBackupPolicy('enabled') +ExternalDriveBackupPolicy.other = ExternalDriveBackupPolicy('other') ExternalDriveBackupPolicyChangedDetails.new_value.validator = ExternalDriveBackupPolicy_validator -ExternalDriveBackupPolicyChangedDetails.previous_value.validator = ( - ExternalDriveBackupPolicy_validator -) -ExternalDriveBackupPolicyChangedDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +ExternalDriveBackupPolicyChangedDetails.previous_value.validator = ExternalDriveBackupPolicy_validator +ExternalDriveBackupPolicyChangedDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) ExternalDriveBackupPolicyChangedDetails._all_fields_ = [ - ("new_value", ExternalDriveBackupPolicyChangedDetails.new_value.validator), - ( - "previous_value", - ExternalDriveBackupPolicyChangedDetails.previous_value.validator, - ), + ('new_value', ExternalDriveBackupPolicyChangedDetails.new_value.validator), + ('previous_value', ExternalDriveBackupPolicyChangedDetails.previous_value.validator), ] ExternalDriveBackupPolicyChangedType.description.validator = bv.String() -ExternalDriveBackupPolicyChangedType._all_field_names_ = set(["description"]) -ExternalDriveBackupPolicyChangedType._all_fields_ = [ - ("description", ExternalDriveBackupPolicyChangedType.description.validator) -] +ExternalDriveBackupPolicyChangedType._all_field_names_ = set(['description']) +ExternalDriveBackupPolicyChangedType._all_fields_ = [('description', ExternalDriveBackupPolicyChangedType.description.validator)] ExternalDriveBackupStatus._broken_validator = bv.Void() ExternalDriveBackupStatus._created_validator = bv.Void() @@ -107144,144 +101142,117 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ExternalDriveBackupStatus._unknown_validator = bv.Void() ExternalDriveBackupStatus._other_validator = bv.Void() ExternalDriveBackupStatus._tagmap = { - "broken": ExternalDriveBackupStatus._broken_validator, - "created": ExternalDriveBackupStatus._created_validator, - "created_or_broken": ExternalDriveBackupStatus._created_or_broken_validator, - "deleted": ExternalDriveBackupStatus._deleted_validator, - "empty": ExternalDriveBackupStatus._empty_validator, - "unknown": ExternalDriveBackupStatus._unknown_validator, - "other": ExternalDriveBackupStatus._other_validator, + 'broken': ExternalDriveBackupStatus._broken_validator, + 'created': ExternalDriveBackupStatus._created_validator, + 'created_or_broken': ExternalDriveBackupStatus._created_or_broken_validator, + 'deleted': ExternalDriveBackupStatus._deleted_validator, + 'empty': ExternalDriveBackupStatus._empty_validator, + 'unknown': ExternalDriveBackupStatus._unknown_validator, + 'other': ExternalDriveBackupStatus._other_validator, } -ExternalDriveBackupStatus.broken = ExternalDriveBackupStatus("broken") -ExternalDriveBackupStatus.created = ExternalDriveBackupStatus("created") -ExternalDriveBackupStatus.created_or_broken = ExternalDriveBackupStatus("created_or_broken") -ExternalDriveBackupStatus.deleted = ExternalDriveBackupStatus("deleted") -ExternalDriveBackupStatus.empty = ExternalDriveBackupStatus("empty") -ExternalDriveBackupStatus.unknown = ExternalDriveBackupStatus("unknown") -ExternalDriveBackupStatus.other = ExternalDriveBackupStatus("other") +ExternalDriveBackupStatus.broken = ExternalDriveBackupStatus('broken') +ExternalDriveBackupStatus.created = ExternalDriveBackupStatus('created') +ExternalDriveBackupStatus.created_or_broken = ExternalDriveBackupStatus('created_or_broken') +ExternalDriveBackupStatus.deleted = ExternalDriveBackupStatus('deleted') +ExternalDriveBackupStatus.empty = ExternalDriveBackupStatus('empty') +ExternalDriveBackupStatus.unknown = ExternalDriveBackupStatus('unknown') +ExternalDriveBackupStatus.other = ExternalDriveBackupStatus('other') -ExternalDriveBackupStatusChangedDetails.desktop_device_session_info.validator = ( - DesktopDeviceSessionLogInfo_validator -) -ExternalDriveBackupStatusChangedDetails.previous_value.validator = ( - ExternalDriveBackupStatus_validator -) +ExternalDriveBackupStatusChangedDetails.desktop_device_session_info.validator = DesktopDeviceSessionLogInfo_validator +ExternalDriveBackupStatusChangedDetails.previous_value.validator = ExternalDriveBackupStatus_validator ExternalDriveBackupStatusChangedDetails.new_value.validator = ExternalDriveBackupStatus_validator -ExternalDriveBackupStatusChangedDetails._all_field_names_ = set( - [ - "desktop_device_session_info", - "previous_value", - "new_value", - ] -) +ExternalDriveBackupStatusChangedDetails._all_field_names_ = set([ + 'desktop_device_session_info', + 'previous_value', + 'new_value', +]) ExternalDriveBackupStatusChangedDetails._all_fields_ = [ - ( - "desktop_device_session_info", - ExternalDriveBackupStatusChangedDetails.desktop_device_session_info.validator, - ), - ( - "previous_value", - ExternalDriveBackupStatusChangedDetails.previous_value.validator, - ), - ("new_value", ExternalDriveBackupStatusChangedDetails.new_value.validator), + ('desktop_device_session_info', ExternalDriveBackupStatusChangedDetails.desktop_device_session_info.validator), + ('previous_value', ExternalDriveBackupStatusChangedDetails.previous_value.validator), + ('new_value', ExternalDriveBackupStatusChangedDetails.new_value.validator), ] ExternalDriveBackupStatusChangedType.description.validator = bv.String() -ExternalDriveBackupStatusChangedType._all_field_names_ = set(["description"]) -ExternalDriveBackupStatusChangedType._all_fields_ = [ - ("description", ExternalDriveBackupStatusChangedType.description.validator) -] +ExternalDriveBackupStatusChangedType._all_field_names_ = set(['description']) +ExternalDriveBackupStatusChangedType._all_fields_ = [('description', ExternalDriveBackupStatusChangedType.description.validator)] ExternalSharingCreateReportDetails._all_field_names_ = set([]) ExternalSharingCreateReportDetails._all_fields_ = [] ExternalSharingCreateReportType.description.validator = bv.String() -ExternalSharingCreateReportType._all_field_names_ = set(["description"]) -ExternalSharingCreateReportType._all_fields_ = [ - ("description", ExternalSharingCreateReportType.description.validator) -] +ExternalSharingCreateReportType._all_field_names_ = set(['description']) +ExternalSharingCreateReportType._all_fields_ = [('description', ExternalSharingCreateReportType.description.validator)] ExternalSharingReportFailedDetails.failure_reason.validator = team.TeamReportFailureReason_validator -ExternalSharingReportFailedDetails._all_field_names_ = set(["failure_reason"]) -ExternalSharingReportFailedDetails._all_fields_ = [ - ("failure_reason", ExternalSharingReportFailedDetails.failure_reason.validator) -] +ExternalSharingReportFailedDetails._all_field_names_ = set(['failure_reason']) +ExternalSharingReportFailedDetails._all_fields_ = [('failure_reason', ExternalSharingReportFailedDetails.failure_reason.validator)] ExternalSharingReportFailedType.description.validator = bv.String() -ExternalSharingReportFailedType._all_field_names_ = set(["description"]) -ExternalSharingReportFailedType._all_fields_ = [ - ("description", ExternalSharingReportFailedType.description.validator) -] +ExternalSharingReportFailedType._all_field_names_ = set(['description']) +ExternalSharingReportFailedType._all_fields_ = [('description', ExternalSharingReportFailedType.description.validator)] ExternalSharingSetting._allow_validator = bv.Void() ExternalSharingSetting._forbid_validator = bv.Void() ExternalSharingSetting._unset_validator = bv.Void() ExternalSharingSetting._other_validator = bv.Void() ExternalSharingSetting._tagmap = { - "allow": ExternalSharingSetting._allow_validator, - "forbid": ExternalSharingSetting._forbid_validator, - "unset": ExternalSharingSetting._unset_validator, - "other": ExternalSharingSetting._other_validator, + 'allow': ExternalSharingSetting._allow_validator, + 'forbid': ExternalSharingSetting._forbid_validator, + 'unset': ExternalSharingSetting._unset_validator, + 'other': ExternalSharingSetting._other_validator, } -ExternalSharingSetting.allow = ExternalSharingSetting("allow") -ExternalSharingSetting.forbid = ExternalSharingSetting("forbid") -ExternalSharingSetting.unset = ExternalSharingSetting("unset") -ExternalSharingSetting.other = ExternalSharingSetting("other") +ExternalSharingSetting.allow = ExternalSharingSetting('allow') +ExternalSharingSetting.forbid = ExternalSharingSetting('forbid') +ExternalSharingSetting.unset = ExternalSharingSetting('unset') +ExternalSharingSetting.other = ExternalSharingSetting('other') ExternalUserLogInfo.user_identifier.validator = bv.String() ExternalUserLogInfo.identifier_type.validator = IdentifierType_validator -ExternalUserLogInfo._all_field_names_ = set( - [ - "user_identifier", - "identifier_type", - ] -) +ExternalUserLogInfo._all_field_names_ = set([ + 'user_identifier', + 'identifier_type', +]) ExternalUserLogInfo._all_fields_ = [ - ("user_identifier", ExternalUserLogInfo.user_identifier.validator), - ("identifier_type", ExternalUserLogInfo.identifier_type.validator), + ('user_identifier', ExternalUserLogInfo.user_identifier.validator), + ('identifier_type', ExternalUserLogInfo.identifier_type.validator), ] FailureDetailsLogInfo.user_friendly_message.validator = bv.Nullable(bv.String()) FailureDetailsLogInfo.technical_error_message.validator = bv.Nullable(bv.String()) -FailureDetailsLogInfo._all_field_names_ = set( - [ - "user_friendly_message", - "technical_error_message", - ] -) +FailureDetailsLogInfo._all_field_names_ = set([ + 'user_friendly_message', + 'technical_error_message', +]) FailureDetailsLogInfo._all_fields_ = [ - ("user_friendly_message", FailureDetailsLogInfo.user_friendly_message.validator), - ( - "technical_error_message", - FailureDetailsLogInfo.technical_error_message.validator, - ), + ('user_friendly_message', FailureDetailsLogInfo.user_friendly_message.validator), + ('technical_error_message', FailureDetailsLogInfo.technical_error_message.validator), ] FedAdminRole._enterprise_admin_validator = bv.Void() FedAdminRole._not_enterprise_admin_validator = bv.Void() FedAdminRole._other_validator = bv.Void() FedAdminRole._tagmap = { - "enterprise_admin": FedAdminRole._enterprise_admin_validator, - "not_enterprise_admin": FedAdminRole._not_enterprise_admin_validator, - "other": FedAdminRole._other_validator, + 'enterprise_admin': FedAdminRole._enterprise_admin_validator, + 'not_enterprise_admin': FedAdminRole._not_enterprise_admin_validator, + 'other': FedAdminRole._other_validator, } -FedAdminRole.enterprise_admin = FedAdminRole("enterprise_admin") -FedAdminRole.not_enterprise_admin = FedAdminRole("not_enterprise_admin") -FedAdminRole.other = FedAdminRole("other") +FedAdminRole.enterprise_admin = FedAdminRole('enterprise_admin') +FedAdminRole.not_enterprise_admin = FedAdminRole('not_enterprise_admin') +FedAdminRole.other = FedAdminRole('other') FedExtraDetails._organization_validator = OrganizationDetails_validator FedExtraDetails._team_validator = TeamDetails_validator FedExtraDetails._other_validator = bv.Void() FedExtraDetails._tagmap = { - "organization": FedExtraDetails._organization_validator, - "team": FedExtraDetails._team_validator, - "other": FedExtraDetails._other_validator, + 'organization': FedExtraDetails._organization_validator, + 'team': FedExtraDetails._team_validator, + 'other': FedExtraDetails._other_validator, } -FedExtraDetails.other = FedExtraDetails("other") +FedExtraDetails.other = FedExtraDetails('other') FedHandshakeAction._accepted_invite_validator = bv.Void() FedHandshakeAction._canceled_invite_validator = bv.Void() @@ -107291,47 +101262,43 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): FedHandshakeAction._removed_team_validator = bv.Void() FedHandshakeAction._other_validator = bv.Void() FedHandshakeAction._tagmap = { - "accepted_invite": FedHandshakeAction._accepted_invite_validator, - "canceled_invite": FedHandshakeAction._canceled_invite_validator, - "invite_expired": FedHandshakeAction._invite_expired_validator, - "invited": FedHandshakeAction._invited_validator, - "rejected_invite": FedHandshakeAction._rejected_invite_validator, - "removed_team": FedHandshakeAction._removed_team_validator, - "other": FedHandshakeAction._other_validator, + 'accepted_invite': FedHandshakeAction._accepted_invite_validator, + 'canceled_invite': FedHandshakeAction._canceled_invite_validator, + 'invite_expired': FedHandshakeAction._invite_expired_validator, + 'invited': FedHandshakeAction._invited_validator, + 'rejected_invite': FedHandshakeAction._rejected_invite_validator, + 'removed_team': FedHandshakeAction._removed_team_validator, + 'other': FedHandshakeAction._other_validator, } -FedHandshakeAction.accepted_invite = FedHandshakeAction("accepted_invite") -FedHandshakeAction.canceled_invite = FedHandshakeAction("canceled_invite") -FedHandshakeAction.invite_expired = FedHandshakeAction("invite_expired") -FedHandshakeAction.invited = FedHandshakeAction("invited") -FedHandshakeAction.rejected_invite = FedHandshakeAction("rejected_invite") -FedHandshakeAction.removed_team = FedHandshakeAction("removed_team") -FedHandshakeAction.other = FedHandshakeAction("other") +FedHandshakeAction.accepted_invite = FedHandshakeAction('accepted_invite') +FedHandshakeAction.canceled_invite = FedHandshakeAction('canceled_invite') +FedHandshakeAction.invite_expired = FedHandshakeAction('invite_expired') +FedHandshakeAction.invited = FedHandshakeAction('invited') +FedHandshakeAction.rejected_invite = FedHandshakeAction('rejected_invite') +FedHandshakeAction.removed_team = FedHandshakeAction('removed_team') +FedHandshakeAction.other = FedHandshakeAction('other') FederationStatusChangeAdditionalInfo._connected_team_name_validator = ConnectedTeamName_validator -FederationStatusChangeAdditionalInfo._non_trusted_team_details_validator = ( - NonTrustedTeamDetails_validator -) +FederationStatusChangeAdditionalInfo._non_trusted_team_details_validator = NonTrustedTeamDetails_validator FederationStatusChangeAdditionalInfo._organization_name_validator = OrganizationName_validator FederationStatusChangeAdditionalInfo._other_validator = bv.Void() FederationStatusChangeAdditionalInfo._tagmap = { - "connected_team_name": FederationStatusChangeAdditionalInfo._connected_team_name_validator, - "non_trusted_team_details": FederationStatusChangeAdditionalInfo._non_trusted_team_details_validator, - "organization_name": FederationStatusChangeAdditionalInfo._organization_name_validator, - "other": FederationStatusChangeAdditionalInfo._other_validator, + 'connected_team_name': FederationStatusChangeAdditionalInfo._connected_team_name_validator, + 'non_trusted_team_details': FederationStatusChangeAdditionalInfo._non_trusted_team_details_validator, + 'organization_name': FederationStatusChangeAdditionalInfo._organization_name_validator, + 'other': FederationStatusChangeAdditionalInfo._other_validator, } -FederationStatusChangeAdditionalInfo.other = FederationStatusChangeAdditionalInfo("other") +FederationStatusChangeAdditionalInfo.other = FederationStatusChangeAdditionalInfo('other') FileAddCommentDetails.comment_text.validator = bv.Nullable(bv.String()) -FileAddCommentDetails._all_field_names_ = set(["comment_text"]) -FileAddCommentDetails._all_fields_ = [ - ("comment_text", FileAddCommentDetails.comment_text.validator) -] +FileAddCommentDetails._all_field_names_ = set(['comment_text']) +FileAddCommentDetails._all_fields_ = [('comment_text', FileAddCommentDetails.comment_text.validator)] FileAddCommentType.description.validator = bv.String() -FileAddCommentType._all_field_names_ = set(["description"]) -FileAddCommentType._all_fields_ = [("description", FileAddCommentType.description.validator)] +FileAddCommentType._all_field_names_ = set(['description']) +FileAddCommentType._all_fields_ = [('description', FileAddCommentType.description.validator)] FileAddDetails._all_field_names_ = set([]) FileAddDetails._all_fields_ = [] @@ -107340,678 +101307,523 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): FileAddFromAutomationDetails._all_fields_ = [] FileAddFromAutomationType.description.validator = bv.String() -FileAddFromAutomationType._all_field_names_ = set(["description"]) -FileAddFromAutomationType._all_fields_ = [ - ("description", FileAddFromAutomationType.description.validator) -] +FileAddFromAutomationType._all_field_names_ = set(['description']) +FileAddFromAutomationType._all_fields_ = [('description', FileAddFromAutomationType.description.validator)] FileAddType.description.validator = bv.String() -FileAddType._all_field_names_ = set(["description"]) -FileAddType._all_fields_ = [("description", FileAddType.description.validator)] +FileAddType._all_field_names_ = set(['description']) +FileAddType._all_fields_ = [('description', FileAddType.description.validator)] FileChangeCommentSubscriptionDetails.new_value.validator = FileCommentNotificationPolicy_validator -FileChangeCommentSubscriptionDetails.previous_value.validator = bv.Nullable( - FileCommentNotificationPolicy_validator -) -FileChangeCommentSubscriptionDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +FileChangeCommentSubscriptionDetails.previous_value.validator = bv.Nullable(FileCommentNotificationPolicy_validator) +FileChangeCommentSubscriptionDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) FileChangeCommentSubscriptionDetails._all_fields_ = [ - ("new_value", FileChangeCommentSubscriptionDetails.new_value.validator), - ("previous_value", FileChangeCommentSubscriptionDetails.previous_value.validator), + ('new_value', FileChangeCommentSubscriptionDetails.new_value.validator), + ('previous_value', FileChangeCommentSubscriptionDetails.previous_value.validator), ] FileChangeCommentSubscriptionType.description.validator = bv.String() -FileChangeCommentSubscriptionType._all_field_names_ = set(["description"]) -FileChangeCommentSubscriptionType._all_fields_ = [ - ("description", FileChangeCommentSubscriptionType.description.validator) -] +FileChangeCommentSubscriptionType._all_field_names_ = set(['description']) +FileChangeCommentSubscriptionType._all_fields_ = [('description', FileChangeCommentSubscriptionType.description.validator)] FileCommentNotificationPolicy._disabled_validator = bv.Void() FileCommentNotificationPolicy._enabled_validator = bv.Void() FileCommentNotificationPolicy._other_validator = bv.Void() FileCommentNotificationPolicy._tagmap = { - "disabled": FileCommentNotificationPolicy._disabled_validator, - "enabled": FileCommentNotificationPolicy._enabled_validator, - "other": FileCommentNotificationPolicy._other_validator, + 'disabled': FileCommentNotificationPolicy._disabled_validator, + 'enabled': FileCommentNotificationPolicy._enabled_validator, + 'other': FileCommentNotificationPolicy._other_validator, } -FileCommentNotificationPolicy.disabled = FileCommentNotificationPolicy("disabled") -FileCommentNotificationPolicy.enabled = FileCommentNotificationPolicy("enabled") -FileCommentNotificationPolicy.other = FileCommentNotificationPolicy("other") +FileCommentNotificationPolicy.disabled = FileCommentNotificationPolicy('disabled') +FileCommentNotificationPolicy.enabled = FileCommentNotificationPolicy('enabled') +FileCommentNotificationPolicy.other = FileCommentNotificationPolicy('other') FileCommentsChangePolicyDetails.new_value.validator = FileCommentsPolicy_validator FileCommentsChangePolicyDetails.previous_value.validator = bv.Nullable(FileCommentsPolicy_validator) -FileCommentsChangePolicyDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +FileCommentsChangePolicyDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) FileCommentsChangePolicyDetails._all_fields_ = [ - ("new_value", FileCommentsChangePolicyDetails.new_value.validator), - ("previous_value", FileCommentsChangePolicyDetails.previous_value.validator), + ('new_value', FileCommentsChangePolicyDetails.new_value.validator), + ('previous_value', FileCommentsChangePolicyDetails.previous_value.validator), ] FileCommentsChangePolicyType.description.validator = bv.String() -FileCommentsChangePolicyType._all_field_names_ = set(["description"]) -FileCommentsChangePolicyType._all_fields_ = [ - ("description", FileCommentsChangePolicyType.description.validator) -] +FileCommentsChangePolicyType._all_field_names_ = set(['description']) +FileCommentsChangePolicyType._all_fields_ = [('description', FileCommentsChangePolicyType.description.validator)] FileCommentsPolicy._disabled_validator = bv.Void() FileCommentsPolicy._enabled_validator = bv.Void() FileCommentsPolicy._other_validator = bv.Void() FileCommentsPolicy._tagmap = { - "disabled": FileCommentsPolicy._disabled_validator, - "enabled": FileCommentsPolicy._enabled_validator, - "other": FileCommentsPolicy._other_validator, + 'disabled': FileCommentsPolicy._disabled_validator, + 'enabled': FileCommentsPolicy._enabled_validator, + 'other': FileCommentsPolicy._other_validator, } -FileCommentsPolicy.disabled = FileCommentsPolicy("disabled") -FileCommentsPolicy.enabled = FileCommentsPolicy("enabled") -FileCommentsPolicy.other = FileCommentsPolicy("other") +FileCommentsPolicy.disabled = FileCommentsPolicy('disabled') +FileCommentsPolicy.enabled = FileCommentsPolicy('enabled') +FileCommentsPolicy.other = FileCommentsPolicy('other') -FileCopyDetails.relocate_action_details.validator = bv.List( - RelocateAssetReferencesLogInfo_validator -) -FileCopyDetails._all_field_names_ = set(["relocate_action_details"]) -FileCopyDetails._all_fields_ = [ - ("relocate_action_details", FileCopyDetails.relocate_action_details.validator) -] +FileCopyDetails.relocate_action_details.validator = bv.List(RelocateAssetReferencesLogInfo_validator) +FileCopyDetails._all_field_names_ = set(['relocate_action_details']) +FileCopyDetails._all_fields_ = [('relocate_action_details', FileCopyDetails.relocate_action_details.validator)] FileCopyType.description.validator = bv.String() -FileCopyType._all_field_names_ = set(["description"]) -FileCopyType._all_fields_ = [("description", FileCopyType.description.validator)] +FileCopyType._all_field_names_ = set(['description']) +FileCopyType._all_fields_ = [('description', FileCopyType.description.validator)] FileDeleteCommentDetails.comment_text.validator = bv.Nullable(bv.String()) -FileDeleteCommentDetails._all_field_names_ = set(["comment_text"]) -FileDeleteCommentDetails._all_fields_ = [ - ("comment_text", FileDeleteCommentDetails.comment_text.validator) -] +FileDeleteCommentDetails._all_field_names_ = set(['comment_text']) +FileDeleteCommentDetails._all_fields_ = [('comment_text', FileDeleteCommentDetails.comment_text.validator)] FileDeleteCommentType.description.validator = bv.String() -FileDeleteCommentType._all_field_names_ = set(["description"]) -FileDeleteCommentType._all_fields_ = [("description", FileDeleteCommentType.description.validator)] +FileDeleteCommentType._all_field_names_ = set(['description']) +FileDeleteCommentType._all_fields_ = [('description', FileDeleteCommentType.description.validator)] FileDeleteDetails._all_field_names_ = set([]) FileDeleteDetails._all_fields_ = [] FileDeleteType.description.validator = bv.String() -FileDeleteType._all_field_names_ = set(["description"]) -FileDeleteType._all_fields_ = [("description", FileDeleteType.description.validator)] +FileDeleteType._all_field_names_ = set(['description']) +FileDeleteType._all_fields_ = [('description', FileDeleteType.description.validator)] FileDownloadDetails._all_field_names_ = set([]) FileDownloadDetails._all_fields_ = [] FileDownloadType.description.validator = bv.String() -FileDownloadType._all_field_names_ = set(["description"]) -FileDownloadType._all_fields_ = [("description", FileDownloadType.description.validator)] +FileDownloadType._all_field_names_ = set(['description']) +FileDownloadType._all_fields_ = [('description', FileDownloadType.description.validator)] FileEditCommentDetails.comment_text.validator = bv.Nullable(bv.String()) FileEditCommentDetails.previous_comment_text.validator = bv.String() -FileEditCommentDetails._all_field_names_ = set( - [ - "comment_text", - "previous_comment_text", - ] -) +FileEditCommentDetails._all_field_names_ = set([ + 'comment_text', + 'previous_comment_text', +]) FileEditCommentDetails._all_fields_ = [ - ("comment_text", FileEditCommentDetails.comment_text.validator), - ("previous_comment_text", FileEditCommentDetails.previous_comment_text.validator), + ('comment_text', FileEditCommentDetails.comment_text.validator), + ('previous_comment_text', FileEditCommentDetails.previous_comment_text.validator), ] FileEditCommentType.description.validator = bv.String() -FileEditCommentType._all_field_names_ = set(["description"]) -FileEditCommentType._all_fields_ = [("description", FileEditCommentType.description.validator)] +FileEditCommentType._all_field_names_ = set(['description']) +FileEditCommentType._all_fields_ = [('description', FileEditCommentType.description.validator)] FileEditDetails._all_field_names_ = set([]) FileEditDetails._all_fields_ = [] FileEditType.description.validator = bv.String() -FileEditType._all_field_names_ = set(["description"]) -FileEditType._all_fields_ = [("description", FileEditType.description.validator)] +FileEditType._all_field_names_ = set(['description']) +FileEditType._all_fields_ = [('description', FileEditType.description.validator)] FileGetCopyReferenceDetails._all_field_names_ = set([]) FileGetCopyReferenceDetails._all_fields_ = [] FileGetCopyReferenceType.description.validator = bv.String() -FileGetCopyReferenceType._all_field_names_ = set(["description"]) -FileGetCopyReferenceType._all_fields_ = [ - ("description", FileGetCopyReferenceType.description.validator) -] +FileGetCopyReferenceType._all_field_names_ = set(['description']) +FileGetCopyReferenceType._all_fields_ = [('description', FileGetCopyReferenceType.description.validator)] FileLikeCommentDetails.comment_text.validator = bv.Nullable(bv.String()) -FileLikeCommentDetails._all_field_names_ = set(["comment_text"]) -FileLikeCommentDetails._all_fields_ = [ - ("comment_text", FileLikeCommentDetails.comment_text.validator) -] +FileLikeCommentDetails._all_field_names_ = set(['comment_text']) +FileLikeCommentDetails._all_fields_ = [('comment_text', FileLikeCommentDetails.comment_text.validator)] FileLikeCommentType.description.validator = bv.String() -FileLikeCommentType._all_field_names_ = set(["description"]) -FileLikeCommentType._all_fields_ = [("description", FileLikeCommentType.description.validator)] +FileLikeCommentType._all_field_names_ = set(['description']) +FileLikeCommentType._all_fields_ = [('description', FileLikeCommentType.description.validator)] FileLockingLockStatusChangedDetails.previous_value.validator = LockStatus_validator FileLockingLockStatusChangedDetails.new_value.validator = LockStatus_validator -FileLockingLockStatusChangedDetails._all_field_names_ = set( - [ - "previous_value", - "new_value", - ] -) +FileLockingLockStatusChangedDetails._all_field_names_ = set([ + 'previous_value', + 'new_value', +]) FileLockingLockStatusChangedDetails._all_fields_ = [ - ("previous_value", FileLockingLockStatusChangedDetails.previous_value.validator), - ("new_value", FileLockingLockStatusChangedDetails.new_value.validator), + ('previous_value', FileLockingLockStatusChangedDetails.previous_value.validator), + ('new_value', FileLockingLockStatusChangedDetails.new_value.validator), ] FileLockingLockStatusChangedType.description.validator = bv.String() -FileLockingLockStatusChangedType._all_field_names_ = set(["description"]) -FileLockingLockStatusChangedType._all_fields_ = [ - ("description", FileLockingLockStatusChangedType.description.validator) -] +FileLockingLockStatusChangedType._all_field_names_ = set(['description']) +FileLockingLockStatusChangedType._all_fields_ = [('description', FileLockingLockStatusChangedType.description.validator)] FileLockingPolicyChangedDetails.new_value.validator = team_policies.FileLockingPolicyState_validator -FileLockingPolicyChangedDetails.previous_value.validator = ( - team_policies.FileLockingPolicyState_validator -) -FileLockingPolicyChangedDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +FileLockingPolicyChangedDetails.previous_value.validator = team_policies.FileLockingPolicyState_validator +FileLockingPolicyChangedDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) FileLockingPolicyChangedDetails._all_fields_ = [ - ("new_value", FileLockingPolicyChangedDetails.new_value.validator), - ("previous_value", FileLockingPolicyChangedDetails.previous_value.validator), + ('new_value', FileLockingPolicyChangedDetails.new_value.validator), + ('previous_value', FileLockingPolicyChangedDetails.previous_value.validator), ] FileLockingPolicyChangedType.description.validator = bv.String() -FileLockingPolicyChangedType._all_field_names_ = set(["description"]) -FileLockingPolicyChangedType._all_fields_ = [ - ("description", FileLockingPolicyChangedType.description.validator) -] +FileLockingPolicyChangedType._all_field_names_ = set(['description']) +FileLockingPolicyChangedType._all_fields_ = [('description', FileLockingPolicyChangedType.description.validator)] FileOrFolderLogInfo.path.validator = PathLogInfo_validator FileOrFolderLogInfo.display_name.validator = bv.Nullable(bv.String()) FileOrFolderLogInfo.file_id.validator = bv.Nullable(bv.String()) FileOrFolderLogInfo.file_size.validator = bv.Nullable(bv.UInt64()) -FileOrFolderLogInfo._all_field_names_ = set( - [ - "path", - "display_name", - "file_id", - "file_size", - ] -) +FileOrFolderLogInfo._all_field_names_ = set([ + 'path', + 'display_name', + 'file_id', + 'file_size', +]) FileOrFolderLogInfo._all_fields_ = [ - ("path", FileOrFolderLogInfo.path.validator), - ("display_name", FileOrFolderLogInfo.display_name.validator), - ("file_id", FileOrFolderLogInfo.file_id.validator), - ("file_size", FileOrFolderLogInfo.file_size.validator), + ('path', FileOrFolderLogInfo.path.validator), + ('display_name', FileOrFolderLogInfo.display_name.validator), + ('file_id', FileOrFolderLogInfo.file_id.validator), + ('file_size', FileOrFolderLogInfo.file_size.validator), ] FileLogInfo._all_field_names_ = FileOrFolderLogInfo._all_field_names_.union(set([])) FileLogInfo._all_fields_ = FileOrFolderLogInfo._all_fields_ + [] -FileMoveDetails.relocate_action_details.validator = bv.List( - RelocateAssetReferencesLogInfo_validator -) -FileMoveDetails._all_field_names_ = set(["relocate_action_details"]) -FileMoveDetails._all_fields_ = [ - ("relocate_action_details", FileMoveDetails.relocate_action_details.validator) -] +FileMoveDetails.relocate_action_details.validator = bv.List(RelocateAssetReferencesLogInfo_validator) +FileMoveDetails._all_field_names_ = set(['relocate_action_details']) +FileMoveDetails._all_fields_ = [('relocate_action_details', FileMoveDetails.relocate_action_details.validator)] FileMoveType.description.validator = bv.String() -FileMoveType._all_field_names_ = set(["description"]) -FileMoveType._all_fields_ = [("description", FileMoveType.description.validator)] +FileMoveType._all_field_names_ = set(['description']) +FileMoveType._all_fields_ = [('description', FileMoveType.description.validator)] FilePermanentlyDeleteDetails._all_field_names_ = set([]) FilePermanentlyDeleteDetails._all_fields_ = [] FilePermanentlyDeleteType.description.validator = bv.String() -FilePermanentlyDeleteType._all_field_names_ = set(["description"]) -FilePermanentlyDeleteType._all_fields_ = [ - ("description", FilePermanentlyDeleteType.description.validator) -] +FilePermanentlyDeleteType._all_field_names_ = set(['description']) +FilePermanentlyDeleteType._all_fields_ = [('description', FilePermanentlyDeleteType.description.validator)] FilePreviewDetails._all_field_names_ = set([]) FilePreviewDetails._all_fields_ = [] FilePreviewType.description.validator = bv.String() -FilePreviewType._all_field_names_ = set(["description"]) -FilePreviewType._all_fields_ = [("description", FilePreviewType.description.validator)] - -FileProviderMigrationPolicyChangedDetails.new_value.validator = ( - team_policies.FileProviderMigrationPolicyState_validator -) -FileProviderMigrationPolicyChangedDetails.previous_value.validator = ( - team_policies.FileProviderMigrationPolicyState_validator -) -FileProviderMigrationPolicyChangedDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +FilePreviewType._all_field_names_ = set(['description']) +FilePreviewType._all_fields_ = [('description', FilePreviewType.description.validator)] + +FileProviderMigrationPolicyChangedDetails.new_value.validator = team_policies.FileProviderMigrationPolicyState_validator +FileProviderMigrationPolicyChangedDetails.previous_value.validator = team_policies.FileProviderMigrationPolicyState_validator +FileProviderMigrationPolicyChangedDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) FileProviderMigrationPolicyChangedDetails._all_fields_ = [ - ("new_value", FileProviderMigrationPolicyChangedDetails.new_value.validator), - ( - "previous_value", - FileProviderMigrationPolicyChangedDetails.previous_value.validator, - ), + ('new_value', FileProviderMigrationPolicyChangedDetails.new_value.validator), + ('previous_value', FileProviderMigrationPolicyChangedDetails.previous_value.validator), ] FileProviderMigrationPolicyChangedType.description.validator = bv.String() -FileProviderMigrationPolicyChangedType._all_field_names_ = set(["description"]) -FileProviderMigrationPolicyChangedType._all_fields_ = [ - ("description", FileProviderMigrationPolicyChangedType.description.validator) -] +FileProviderMigrationPolicyChangedType._all_field_names_ = set(['description']) +FileProviderMigrationPolicyChangedType._all_fields_ = [('description', FileProviderMigrationPolicyChangedType.description.validator)] -FileRenameDetails.relocate_action_details.validator = bv.List( - RelocateAssetReferencesLogInfo_validator -) -FileRenameDetails._all_field_names_ = set(["relocate_action_details"]) -FileRenameDetails._all_fields_ = [ - ("relocate_action_details", FileRenameDetails.relocate_action_details.validator) -] +FileRenameDetails.relocate_action_details.validator = bv.List(RelocateAssetReferencesLogInfo_validator) +FileRenameDetails._all_field_names_ = set(['relocate_action_details']) +FileRenameDetails._all_fields_ = [('relocate_action_details', FileRenameDetails.relocate_action_details.validator)] FileRenameType.description.validator = bv.String() -FileRenameType._all_field_names_ = set(["description"]) -FileRenameType._all_fields_ = [("description", FileRenameType.description.validator)] +FileRenameType._all_field_names_ = set(['description']) +FileRenameType._all_fields_ = [('description', FileRenameType.description.validator)] -FileRequestAutoCloseDetails.file_request_id.validator = bv.Nullable( - file_requests.FileRequestId_validator -) +FileRequestAutoCloseDetails.file_request_id.validator = bv.Nullable(file_requests.FileRequestId_validator) FileRequestAutoCloseDetails.reason.validator = bv.Nullable(bv.String()) FileRequestAutoCloseDetails.previous_details.validator = bv.Nullable(FileRequestDetails_validator) -FileRequestAutoCloseDetails._all_field_names_ = set( - [ - "file_request_id", - "reason", - "previous_details", - ] -) +FileRequestAutoCloseDetails._all_field_names_ = set([ + 'file_request_id', + 'reason', + 'previous_details', +]) FileRequestAutoCloseDetails._all_fields_ = [ - ("file_request_id", FileRequestAutoCloseDetails.file_request_id.validator), - ("reason", FileRequestAutoCloseDetails.reason.validator), - ("previous_details", FileRequestAutoCloseDetails.previous_details.validator), + ('file_request_id', FileRequestAutoCloseDetails.file_request_id.validator), + ('reason', FileRequestAutoCloseDetails.reason.validator), + ('previous_details', FileRequestAutoCloseDetails.previous_details.validator), ] FileRequestAutoCloseType.description.validator = bv.String() -FileRequestAutoCloseType._all_field_names_ = set(["description"]) -FileRequestAutoCloseType._all_fields_ = [ - ("description", FileRequestAutoCloseType.description.validator) -] +FileRequestAutoCloseType._all_field_names_ = set(['description']) +FileRequestAutoCloseType._all_fields_ = [('description', FileRequestAutoCloseType.description.validator)] -FileRequestChangeDetails.file_request_id.validator = bv.Nullable( - file_requests.FileRequestId_validator -) +FileRequestChangeDetails.file_request_id.validator = bv.Nullable(file_requests.FileRequestId_validator) FileRequestChangeDetails.previous_details.validator = bv.Nullable(FileRequestDetails_validator) FileRequestChangeDetails.new_details.validator = FileRequestDetails_validator -FileRequestChangeDetails._all_field_names_ = set( - [ - "file_request_id", - "previous_details", - "new_details", - ] -) +FileRequestChangeDetails._all_field_names_ = set([ + 'file_request_id', + 'previous_details', + 'new_details', +]) FileRequestChangeDetails._all_fields_ = [ - ("file_request_id", FileRequestChangeDetails.file_request_id.validator), - ("previous_details", FileRequestChangeDetails.previous_details.validator), - ("new_details", FileRequestChangeDetails.new_details.validator), + ('file_request_id', FileRequestChangeDetails.file_request_id.validator), + ('previous_details', FileRequestChangeDetails.previous_details.validator), + ('new_details', FileRequestChangeDetails.new_details.validator), ] FileRequestChangeType.description.validator = bv.String() -FileRequestChangeType._all_field_names_ = set(["description"]) -FileRequestChangeType._all_fields_ = [("description", FileRequestChangeType.description.validator)] +FileRequestChangeType._all_field_names_ = set(['description']) +FileRequestChangeType._all_fields_ = [('description', FileRequestChangeType.description.validator)] -FileRequestCloseDetails.file_request_id.validator = bv.Nullable( - file_requests.FileRequestId_validator -) +FileRequestCloseDetails.file_request_id.validator = bv.Nullable(file_requests.FileRequestId_validator) FileRequestCloseDetails.previous_details.validator = bv.Nullable(FileRequestDetails_validator) -FileRequestCloseDetails._all_field_names_ = set( - [ - "file_request_id", - "previous_details", - ] -) +FileRequestCloseDetails._all_field_names_ = set([ + 'file_request_id', + 'previous_details', +]) FileRequestCloseDetails._all_fields_ = [ - ("file_request_id", FileRequestCloseDetails.file_request_id.validator), - ("previous_details", FileRequestCloseDetails.previous_details.validator), + ('file_request_id', FileRequestCloseDetails.file_request_id.validator), + ('previous_details', FileRequestCloseDetails.previous_details.validator), ] FileRequestCloseType.description.validator = bv.String() -FileRequestCloseType._all_field_names_ = set(["description"]) -FileRequestCloseType._all_fields_ = [("description", FileRequestCloseType.description.validator)] +FileRequestCloseType._all_field_names_ = set(['description']) +FileRequestCloseType._all_fields_ = [('description', FileRequestCloseType.description.validator)] -FileRequestCreateDetails.file_request_id.validator = bv.Nullable( - file_requests.FileRequestId_validator -) +FileRequestCreateDetails.file_request_id.validator = bv.Nullable(file_requests.FileRequestId_validator) FileRequestCreateDetails.request_details.validator = bv.Nullable(FileRequestDetails_validator) -FileRequestCreateDetails._all_field_names_ = set( - [ - "file_request_id", - "request_details", - ] -) +FileRequestCreateDetails._all_field_names_ = set([ + 'file_request_id', + 'request_details', +]) FileRequestCreateDetails._all_fields_ = [ - ("file_request_id", FileRequestCreateDetails.file_request_id.validator), - ("request_details", FileRequestCreateDetails.request_details.validator), + ('file_request_id', FileRequestCreateDetails.file_request_id.validator), + ('request_details', FileRequestCreateDetails.request_details.validator), ] FileRequestCreateType.description.validator = bv.String() -FileRequestCreateType._all_field_names_ = set(["description"]) -FileRequestCreateType._all_fields_ = [("description", FileRequestCreateType.description.validator)] +FileRequestCreateType._all_field_names_ = set(['description']) +FileRequestCreateType._all_fields_ = [('description', FileRequestCreateType.description.validator)] FileRequestDeadline.deadline.validator = bv.Nullable(common.DropboxTimestamp_validator) FileRequestDeadline.allow_late_uploads.validator = bv.Nullable(bv.String()) -FileRequestDeadline._all_field_names_ = set( - [ - "deadline", - "allow_late_uploads", - ] -) +FileRequestDeadline._all_field_names_ = set([ + 'deadline', + 'allow_late_uploads', +]) FileRequestDeadline._all_fields_ = [ - ("deadline", FileRequestDeadline.deadline.validator), - ("allow_late_uploads", FileRequestDeadline.allow_late_uploads.validator), + ('deadline', FileRequestDeadline.deadline.validator), + ('allow_late_uploads', FileRequestDeadline.allow_late_uploads.validator), ] -FileRequestDeleteDetails.file_request_id.validator = bv.Nullable( - file_requests.FileRequestId_validator -) +FileRequestDeleteDetails.file_request_id.validator = bv.Nullable(file_requests.FileRequestId_validator) FileRequestDeleteDetails.previous_details.validator = bv.Nullable(FileRequestDetails_validator) -FileRequestDeleteDetails._all_field_names_ = set( - [ - "file_request_id", - "previous_details", - ] -) +FileRequestDeleteDetails._all_field_names_ = set([ + 'file_request_id', + 'previous_details', +]) FileRequestDeleteDetails._all_fields_ = [ - ("file_request_id", FileRequestDeleteDetails.file_request_id.validator), - ("previous_details", FileRequestDeleteDetails.previous_details.validator), + ('file_request_id', FileRequestDeleteDetails.file_request_id.validator), + ('previous_details', FileRequestDeleteDetails.previous_details.validator), ] FileRequestDeleteType.description.validator = bv.String() -FileRequestDeleteType._all_field_names_ = set(["description"]) -FileRequestDeleteType._all_fields_ = [("description", FileRequestDeleteType.description.validator)] +FileRequestDeleteType._all_field_names_ = set(['description']) +FileRequestDeleteType._all_fields_ = [('description', FileRequestDeleteType.description.validator)] FileRequestDetails.asset_index.validator = bv.UInt64() FileRequestDetails.deadline.validator = bv.Nullable(FileRequestDeadline_validator) FileRequestDetails.has_password.validator = bv.Nullable(bv.Boolean()) -FileRequestDetails._all_field_names_ = set( - [ - "asset_index", - "deadline", - "has_password", - ] -) +FileRequestDetails._all_field_names_ = set([ + 'asset_index', + 'deadline', + 'has_password', +]) FileRequestDetails._all_fields_ = [ - ("asset_index", FileRequestDetails.asset_index.validator), - ("deadline", FileRequestDetails.deadline.validator), - ("has_password", FileRequestDetails.has_password.validator), + ('asset_index', FileRequestDetails.asset_index.validator), + ('deadline', FileRequestDetails.deadline.validator), + ('has_password', FileRequestDetails.has_password.validator), ] -FileRequestReceiveFileDetails.file_request_id.validator = bv.Nullable( - file_requests.FileRequestId_validator -) -FileRequestReceiveFileDetails.file_request_details.validator = bv.Nullable( - FileRequestDetails_validator -) +FileRequestReceiveFileDetails.file_request_id.validator = bv.Nullable(file_requests.FileRequestId_validator) +FileRequestReceiveFileDetails.file_request_details.validator = bv.Nullable(FileRequestDetails_validator) FileRequestReceiveFileDetails.submitted_file_names.validator = bv.List(bv.String()) -FileRequestReceiveFileDetails.submitter_name.validator = bv.Nullable( - common.DisplayNameLegacy_validator -) +FileRequestReceiveFileDetails.submitter_name.validator = bv.Nullable(common.DisplayNameLegacy_validator) FileRequestReceiveFileDetails.submitter_email.validator = bv.Nullable(EmailAddress_validator) -FileRequestReceiveFileDetails._all_field_names_ = set( - [ - "file_request_id", - "file_request_details", - "submitted_file_names", - "submitter_name", - "submitter_email", - ] -) +FileRequestReceiveFileDetails._all_field_names_ = set([ + 'file_request_id', + 'file_request_details', + 'submitted_file_names', + 'submitter_name', + 'submitter_email', +]) FileRequestReceiveFileDetails._all_fields_ = [ - ("file_request_id", FileRequestReceiveFileDetails.file_request_id.validator), - ( - "file_request_details", - FileRequestReceiveFileDetails.file_request_details.validator, - ), - ( - "submitted_file_names", - FileRequestReceiveFileDetails.submitted_file_names.validator, - ), - ("submitter_name", FileRequestReceiveFileDetails.submitter_name.validator), - ("submitter_email", FileRequestReceiveFileDetails.submitter_email.validator), + ('file_request_id', FileRequestReceiveFileDetails.file_request_id.validator), + ('file_request_details', FileRequestReceiveFileDetails.file_request_details.validator), + ('submitted_file_names', FileRequestReceiveFileDetails.submitted_file_names.validator), + ('submitter_name', FileRequestReceiveFileDetails.submitter_name.validator), + ('submitter_email', FileRequestReceiveFileDetails.submitter_email.validator), ] FileRequestReceiveFileType.description.validator = bv.String() -FileRequestReceiveFileType._all_field_names_ = set(["description"]) -FileRequestReceiveFileType._all_fields_ = [ - ("description", FileRequestReceiveFileType.description.validator) -] +FileRequestReceiveFileType._all_field_names_ = set(['description']) +FileRequestReceiveFileType._all_fields_ = [('description', FileRequestReceiveFileType.description.validator)] FileRequestsChangePolicyDetails.new_value.validator = FileRequestsPolicy_validator FileRequestsChangePolicyDetails.previous_value.validator = bv.Nullable(FileRequestsPolicy_validator) -FileRequestsChangePolicyDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +FileRequestsChangePolicyDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) FileRequestsChangePolicyDetails._all_fields_ = [ - ("new_value", FileRequestsChangePolicyDetails.new_value.validator), - ("previous_value", FileRequestsChangePolicyDetails.previous_value.validator), + ('new_value', FileRequestsChangePolicyDetails.new_value.validator), + ('previous_value', FileRequestsChangePolicyDetails.previous_value.validator), ] FileRequestsChangePolicyType.description.validator = bv.String() -FileRequestsChangePolicyType._all_field_names_ = set(["description"]) -FileRequestsChangePolicyType._all_fields_ = [ - ("description", FileRequestsChangePolicyType.description.validator) -] +FileRequestsChangePolicyType._all_field_names_ = set(['description']) +FileRequestsChangePolicyType._all_fields_ = [('description', FileRequestsChangePolicyType.description.validator)] FileRequestsEmailsEnabledDetails._all_field_names_ = set([]) FileRequestsEmailsEnabledDetails._all_fields_ = [] FileRequestsEmailsEnabledType.description.validator = bv.String() -FileRequestsEmailsEnabledType._all_field_names_ = set(["description"]) -FileRequestsEmailsEnabledType._all_fields_ = [ - ("description", FileRequestsEmailsEnabledType.description.validator) -] +FileRequestsEmailsEnabledType._all_field_names_ = set(['description']) +FileRequestsEmailsEnabledType._all_fields_ = [('description', FileRequestsEmailsEnabledType.description.validator)] FileRequestsEmailsRestrictedToTeamOnlyDetails._all_field_names_ = set([]) FileRequestsEmailsRestrictedToTeamOnlyDetails._all_fields_ = [] FileRequestsEmailsRestrictedToTeamOnlyType.description.validator = bv.String() -FileRequestsEmailsRestrictedToTeamOnlyType._all_field_names_ = set(["description"]) -FileRequestsEmailsRestrictedToTeamOnlyType._all_fields_ = [ - ("description", FileRequestsEmailsRestrictedToTeamOnlyType.description.validator) -] +FileRequestsEmailsRestrictedToTeamOnlyType._all_field_names_ = set(['description']) +FileRequestsEmailsRestrictedToTeamOnlyType._all_fields_ = [('description', FileRequestsEmailsRestrictedToTeamOnlyType.description.validator)] FileRequestsPolicy._disabled_validator = bv.Void() FileRequestsPolicy._enabled_validator = bv.Void() FileRequestsPolicy._other_validator = bv.Void() FileRequestsPolicy._tagmap = { - "disabled": FileRequestsPolicy._disabled_validator, - "enabled": FileRequestsPolicy._enabled_validator, - "other": FileRequestsPolicy._other_validator, + 'disabled': FileRequestsPolicy._disabled_validator, + 'enabled': FileRequestsPolicy._enabled_validator, + 'other': FileRequestsPolicy._other_validator, } -FileRequestsPolicy.disabled = FileRequestsPolicy("disabled") -FileRequestsPolicy.enabled = FileRequestsPolicy("enabled") -FileRequestsPolicy.other = FileRequestsPolicy("other") +FileRequestsPolicy.disabled = FileRequestsPolicy('disabled') +FileRequestsPolicy.enabled = FileRequestsPolicy('enabled') +FileRequestsPolicy.other = FileRequestsPolicy('other') FileResolveCommentDetails.comment_text.validator = bv.Nullable(bv.String()) -FileResolveCommentDetails._all_field_names_ = set(["comment_text"]) -FileResolveCommentDetails._all_fields_ = [ - ("comment_text", FileResolveCommentDetails.comment_text.validator) -] +FileResolveCommentDetails._all_field_names_ = set(['comment_text']) +FileResolveCommentDetails._all_fields_ = [('comment_text', FileResolveCommentDetails.comment_text.validator)] FileResolveCommentType.description.validator = bv.String() -FileResolveCommentType._all_field_names_ = set(["description"]) -FileResolveCommentType._all_fields_ = [ - ("description", FileResolveCommentType.description.validator) -] +FileResolveCommentType._all_field_names_ = set(['description']) +FileResolveCommentType._all_fields_ = [('description', FileResolveCommentType.description.validator)] FileRestoreDetails._all_field_names_ = set([]) FileRestoreDetails._all_fields_ = [] FileRestoreType.description.validator = bv.String() -FileRestoreType._all_field_names_ = set(["description"]) -FileRestoreType._all_fields_ = [("description", FileRestoreType.description.validator)] +FileRestoreType._all_field_names_ = set(['description']) +FileRestoreType._all_fields_ = [('description', FileRestoreType.description.validator)] FileRevertDetails._all_field_names_ = set([]) FileRevertDetails._all_fields_ = [] FileRevertType.description.validator = bv.String() -FileRevertType._all_field_names_ = set(["description"]) -FileRevertType._all_fields_ = [("description", FileRevertType.description.validator)] +FileRevertType._all_field_names_ = set(['description']) +FileRevertType._all_fields_ = [('description', FileRevertType.description.validator)] FileRollbackChangesDetails._all_field_names_ = set([]) FileRollbackChangesDetails._all_fields_ = [] FileRollbackChangesType.description.validator = bv.String() -FileRollbackChangesType._all_field_names_ = set(["description"]) -FileRollbackChangesType._all_fields_ = [ - ("description", FileRollbackChangesType.description.validator) -] +FileRollbackChangesType._all_field_names_ = set(['description']) +FileRollbackChangesType._all_fields_ = [('description', FileRollbackChangesType.description.validator)] -FileSaveCopyReferenceDetails.relocate_action_details.validator = bv.List( - RelocateAssetReferencesLogInfo_validator -) -FileSaveCopyReferenceDetails._all_field_names_ = set(["relocate_action_details"]) -FileSaveCopyReferenceDetails._all_fields_ = [ - ( - "relocate_action_details", - FileSaveCopyReferenceDetails.relocate_action_details.validator, - ) -] +FileSaveCopyReferenceDetails.relocate_action_details.validator = bv.List(RelocateAssetReferencesLogInfo_validator) +FileSaveCopyReferenceDetails._all_field_names_ = set(['relocate_action_details']) +FileSaveCopyReferenceDetails._all_fields_ = [('relocate_action_details', FileSaveCopyReferenceDetails.relocate_action_details.validator)] FileSaveCopyReferenceType.description.validator = bv.String() -FileSaveCopyReferenceType._all_field_names_ = set(["description"]) -FileSaveCopyReferenceType._all_fields_ = [ - ("description", FileSaveCopyReferenceType.description.validator) -] +FileSaveCopyReferenceType._all_field_names_ = set(['description']) +FileSaveCopyReferenceType._all_fields_ = [('description', FileSaveCopyReferenceType.description.validator)] FileTransfersFileAddDetails.file_transfer_id.validator = bv.String() -FileTransfersFileAddDetails._all_field_names_ = set(["file_transfer_id"]) -FileTransfersFileAddDetails._all_fields_ = [ - ("file_transfer_id", FileTransfersFileAddDetails.file_transfer_id.validator) -] +FileTransfersFileAddDetails._all_field_names_ = set(['file_transfer_id']) +FileTransfersFileAddDetails._all_fields_ = [('file_transfer_id', FileTransfersFileAddDetails.file_transfer_id.validator)] FileTransfersFileAddType.description.validator = bv.String() -FileTransfersFileAddType._all_field_names_ = set(["description"]) -FileTransfersFileAddType._all_fields_ = [ - ("description", FileTransfersFileAddType.description.validator) -] +FileTransfersFileAddType._all_field_names_ = set(['description']) +FileTransfersFileAddType._all_fields_ = [('description', FileTransfersFileAddType.description.validator)] FileTransfersPolicy._disabled_validator = bv.Void() FileTransfersPolicy._enabled_validator = bv.Void() FileTransfersPolicy._other_validator = bv.Void() FileTransfersPolicy._tagmap = { - "disabled": FileTransfersPolicy._disabled_validator, - "enabled": FileTransfersPolicy._enabled_validator, - "other": FileTransfersPolicy._other_validator, + 'disabled': FileTransfersPolicy._disabled_validator, + 'enabled': FileTransfersPolicy._enabled_validator, + 'other': FileTransfersPolicy._other_validator, } -FileTransfersPolicy.disabled = FileTransfersPolicy("disabled") -FileTransfersPolicy.enabled = FileTransfersPolicy("enabled") -FileTransfersPolicy.other = FileTransfersPolicy("other") +FileTransfersPolicy.disabled = FileTransfersPolicy('disabled') +FileTransfersPolicy.enabled = FileTransfersPolicy('enabled') +FileTransfersPolicy.other = FileTransfersPolicy('other') FileTransfersPolicyChangedDetails.new_value.validator = FileTransfersPolicy_validator FileTransfersPolicyChangedDetails.previous_value.validator = FileTransfersPolicy_validator -FileTransfersPolicyChangedDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +FileTransfersPolicyChangedDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) FileTransfersPolicyChangedDetails._all_fields_ = [ - ("new_value", FileTransfersPolicyChangedDetails.new_value.validator), - ("previous_value", FileTransfersPolicyChangedDetails.previous_value.validator), + ('new_value', FileTransfersPolicyChangedDetails.new_value.validator), + ('previous_value', FileTransfersPolicyChangedDetails.previous_value.validator), ] FileTransfersPolicyChangedType.description.validator = bv.String() -FileTransfersPolicyChangedType._all_field_names_ = set(["description"]) -FileTransfersPolicyChangedType._all_fields_ = [ - ("description", FileTransfersPolicyChangedType.description.validator) -] +FileTransfersPolicyChangedType._all_field_names_ = set(['description']) +FileTransfersPolicyChangedType._all_fields_ = [('description', FileTransfersPolicyChangedType.description.validator)] FileTransfersTransferDeleteDetails.file_transfer_id.validator = bv.String() -FileTransfersTransferDeleteDetails._all_field_names_ = set(["file_transfer_id"]) -FileTransfersTransferDeleteDetails._all_fields_ = [ - ("file_transfer_id", FileTransfersTransferDeleteDetails.file_transfer_id.validator) -] +FileTransfersTransferDeleteDetails._all_field_names_ = set(['file_transfer_id']) +FileTransfersTransferDeleteDetails._all_fields_ = [('file_transfer_id', FileTransfersTransferDeleteDetails.file_transfer_id.validator)] FileTransfersTransferDeleteType.description.validator = bv.String() -FileTransfersTransferDeleteType._all_field_names_ = set(["description"]) -FileTransfersTransferDeleteType._all_fields_ = [ - ("description", FileTransfersTransferDeleteType.description.validator) -] +FileTransfersTransferDeleteType._all_field_names_ = set(['description']) +FileTransfersTransferDeleteType._all_fields_ = [('description', FileTransfersTransferDeleteType.description.validator)] FileTransfersTransferDownloadDetails.file_transfer_id.validator = bv.String() -FileTransfersTransferDownloadDetails._all_field_names_ = set(["file_transfer_id"]) -FileTransfersTransferDownloadDetails._all_fields_ = [ - ( - "file_transfer_id", - FileTransfersTransferDownloadDetails.file_transfer_id.validator, - ) -] +FileTransfersTransferDownloadDetails._all_field_names_ = set(['file_transfer_id']) +FileTransfersTransferDownloadDetails._all_fields_ = [('file_transfer_id', FileTransfersTransferDownloadDetails.file_transfer_id.validator)] FileTransfersTransferDownloadType.description.validator = bv.String() -FileTransfersTransferDownloadType._all_field_names_ = set(["description"]) -FileTransfersTransferDownloadType._all_fields_ = [ - ("description", FileTransfersTransferDownloadType.description.validator) -] +FileTransfersTransferDownloadType._all_field_names_ = set(['description']) +FileTransfersTransferDownloadType._all_fields_ = [('description', FileTransfersTransferDownloadType.description.validator)] FileTransfersTransferSendDetails.file_transfer_id.validator = bv.String() -FileTransfersTransferSendDetails._all_field_names_ = set(["file_transfer_id"]) -FileTransfersTransferSendDetails._all_fields_ = [ - ("file_transfer_id", FileTransfersTransferSendDetails.file_transfer_id.validator) -] +FileTransfersTransferSendDetails._all_field_names_ = set(['file_transfer_id']) +FileTransfersTransferSendDetails._all_fields_ = [('file_transfer_id', FileTransfersTransferSendDetails.file_transfer_id.validator)] FileTransfersTransferSendType.description.validator = bv.String() -FileTransfersTransferSendType._all_field_names_ = set(["description"]) -FileTransfersTransferSendType._all_fields_ = [ - ("description", FileTransfersTransferSendType.description.validator) -] +FileTransfersTransferSendType._all_field_names_ = set(['description']) +FileTransfersTransferSendType._all_fields_ = [('description', FileTransfersTransferSendType.description.validator)] FileTransfersTransferViewDetails.file_transfer_id.validator = bv.String() -FileTransfersTransferViewDetails._all_field_names_ = set(["file_transfer_id"]) -FileTransfersTransferViewDetails._all_fields_ = [ - ("file_transfer_id", FileTransfersTransferViewDetails.file_transfer_id.validator) -] +FileTransfersTransferViewDetails._all_field_names_ = set(['file_transfer_id']) +FileTransfersTransferViewDetails._all_fields_ = [('file_transfer_id', FileTransfersTransferViewDetails.file_transfer_id.validator)] FileTransfersTransferViewType.description.validator = bv.String() -FileTransfersTransferViewType._all_field_names_ = set(["description"]) -FileTransfersTransferViewType._all_fields_ = [ - ("description", FileTransfersTransferViewType.description.validator) -] +FileTransfersTransferViewType._all_field_names_ = set(['description']) +FileTransfersTransferViewType._all_fields_ = [('description', FileTransfersTransferViewType.description.validator)] FileUnlikeCommentDetails.comment_text.validator = bv.Nullable(bv.String()) -FileUnlikeCommentDetails._all_field_names_ = set(["comment_text"]) -FileUnlikeCommentDetails._all_fields_ = [ - ("comment_text", FileUnlikeCommentDetails.comment_text.validator) -] +FileUnlikeCommentDetails._all_field_names_ = set(['comment_text']) +FileUnlikeCommentDetails._all_fields_ = [('comment_text', FileUnlikeCommentDetails.comment_text.validator)] FileUnlikeCommentType.description.validator = bv.String() -FileUnlikeCommentType._all_field_names_ = set(["description"]) -FileUnlikeCommentType._all_fields_ = [("description", FileUnlikeCommentType.description.validator)] +FileUnlikeCommentType._all_field_names_ = set(['description']) +FileUnlikeCommentType._all_fields_ = [('description', FileUnlikeCommentType.description.validator)] FileUnresolveCommentDetails.comment_text.validator = bv.Nullable(bv.String()) -FileUnresolveCommentDetails._all_field_names_ = set(["comment_text"]) -FileUnresolveCommentDetails._all_fields_ = [ - ("comment_text", FileUnresolveCommentDetails.comment_text.validator) -] +FileUnresolveCommentDetails._all_field_names_ = set(['comment_text']) +FileUnresolveCommentDetails._all_fields_ = [('comment_text', FileUnresolveCommentDetails.comment_text.validator)] FileUnresolveCommentType.description.validator = bv.String() -FileUnresolveCommentType._all_field_names_ = set(["description"]) -FileUnresolveCommentType._all_fields_ = [ - ("description", FileUnresolveCommentType.description.validator) -] +FileUnresolveCommentType._all_field_names_ = set(['description']) +FileUnresolveCommentType._all_fields_ = [('description', FileUnresolveCommentType.description.validator)] FlexibleFileNamesPolicy._off_validator = bv.Void() FlexibleFileNamesPolicy._off_default_validator = bv.Void() @@ -108021,171 +101833,123 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): FlexibleFileNamesPolicy._required_default_validator = bv.Void() FlexibleFileNamesPolicy._other_validator = bv.Void() FlexibleFileNamesPolicy._tagmap = { - "off": FlexibleFileNamesPolicy._off_validator, - "off_default": FlexibleFileNamesPolicy._off_default_validator, - "optional": FlexibleFileNamesPolicy._optional_validator, - "optional_default": FlexibleFileNamesPolicy._optional_default_validator, - "required": FlexibleFileNamesPolicy._required_validator, - "required_default": FlexibleFileNamesPolicy._required_default_validator, - "other": FlexibleFileNamesPolicy._other_validator, + 'off': FlexibleFileNamesPolicy._off_validator, + 'off_default': FlexibleFileNamesPolicy._off_default_validator, + 'optional': FlexibleFileNamesPolicy._optional_validator, + 'optional_default': FlexibleFileNamesPolicy._optional_default_validator, + 'required': FlexibleFileNamesPolicy._required_validator, + 'required_default': FlexibleFileNamesPolicy._required_default_validator, + 'other': FlexibleFileNamesPolicy._other_validator, } -FlexibleFileNamesPolicy.off = FlexibleFileNamesPolicy("off") -FlexibleFileNamesPolicy.off_default = FlexibleFileNamesPolicy("off_default") -FlexibleFileNamesPolicy.optional = FlexibleFileNamesPolicy("optional") -FlexibleFileNamesPolicy.optional_default = FlexibleFileNamesPolicy("optional_default") -FlexibleFileNamesPolicy.required = FlexibleFileNamesPolicy("required") -FlexibleFileNamesPolicy.required_default = FlexibleFileNamesPolicy("required_default") -FlexibleFileNamesPolicy.other = FlexibleFileNamesPolicy("other") +FlexibleFileNamesPolicy.off = FlexibleFileNamesPolicy('off') +FlexibleFileNamesPolicy.off_default = FlexibleFileNamesPolicy('off_default') +FlexibleFileNamesPolicy.optional = FlexibleFileNamesPolicy('optional') +FlexibleFileNamesPolicy.optional_default = FlexibleFileNamesPolicy('optional_default') +FlexibleFileNamesPolicy.required = FlexibleFileNamesPolicy('required') +FlexibleFileNamesPolicy.required_default = FlexibleFileNamesPolicy('required_default') +FlexibleFileNamesPolicy.other = FlexibleFileNamesPolicy('other') FlexibleFileNamesPolicyChangedDetails.new_value.validator = FlexibleFileNamesPolicy_validator -FlexibleFileNamesPolicyChangedDetails.previous_value.validator = bv.Nullable( - FlexibleFileNamesPolicy_validator -) -FlexibleFileNamesPolicyChangedDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +FlexibleFileNamesPolicyChangedDetails.previous_value.validator = bv.Nullable(FlexibleFileNamesPolicy_validator) +FlexibleFileNamesPolicyChangedDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) FlexibleFileNamesPolicyChangedDetails._all_fields_ = [ - ("new_value", FlexibleFileNamesPolicyChangedDetails.new_value.validator), - ("previous_value", FlexibleFileNamesPolicyChangedDetails.previous_value.validator), + ('new_value', FlexibleFileNamesPolicyChangedDetails.new_value.validator), + ('previous_value', FlexibleFileNamesPolicyChangedDetails.previous_value.validator), ] FlexibleFileNamesPolicyChangedType.description.validator = bv.String() -FlexibleFileNamesPolicyChangedType._all_field_names_ = set(["description"]) -FlexibleFileNamesPolicyChangedType._all_fields_ = [ - ("description", FlexibleFileNamesPolicyChangedType.description.validator) -] +FlexibleFileNamesPolicyChangedType._all_field_names_ = set(['description']) +FlexibleFileNamesPolicyChangedType._all_fields_ = [('description', FlexibleFileNamesPolicyChangedType.description.validator)] FolderLinkRestrictionPolicy._disabled_validator = bv.Void() FolderLinkRestrictionPolicy._enabled_validator = bv.Void() FolderLinkRestrictionPolicy._other_validator = bv.Void() FolderLinkRestrictionPolicy._tagmap = { - "disabled": FolderLinkRestrictionPolicy._disabled_validator, - "enabled": FolderLinkRestrictionPolicy._enabled_validator, - "other": FolderLinkRestrictionPolicy._other_validator, + 'disabled': FolderLinkRestrictionPolicy._disabled_validator, + 'enabled': FolderLinkRestrictionPolicy._enabled_validator, + 'other': FolderLinkRestrictionPolicy._other_validator, } -FolderLinkRestrictionPolicy.disabled = FolderLinkRestrictionPolicy("disabled") -FolderLinkRestrictionPolicy.enabled = FolderLinkRestrictionPolicy("enabled") -FolderLinkRestrictionPolicy.other = FolderLinkRestrictionPolicy("other") +FolderLinkRestrictionPolicy.disabled = FolderLinkRestrictionPolicy('disabled') +FolderLinkRestrictionPolicy.enabled = FolderLinkRestrictionPolicy('enabled') +FolderLinkRestrictionPolicy.other = FolderLinkRestrictionPolicy('other') -FolderLinkRestrictionPolicyChangedDetails.new_value.validator = ( - FolderLinkRestrictionPolicy_validator -) -FolderLinkRestrictionPolicyChangedDetails.previous_value.validator = ( - FolderLinkRestrictionPolicy_validator -) -FolderLinkRestrictionPolicyChangedDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +FolderLinkRestrictionPolicyChangedDetails.new_value.validator = FolderLinkRestrictionPolicy_validator +FolderLinkRestrictionPolicyChangedDetails.previous_value.validator = FolderLinkRestrictionPolicy_validator +FolderLinkRestrictionPolicyChangedDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) FolderLinkRestrictionPolicyChangedDetails._all_fields_ = [ - ("new_value", FolderLinkRestrictionPolicyChangedDetails.new_value.validator), - ( - "previous_value", - FolderLinkRestrictionPolicyChangedDetails.previous_value.validator, - ), + ('new_value', FolderLinkRestrictionPolicyChangedDetails.new_value.validator), + ('previous_value', FolderLinkRestrictionPolicyChangedDetails.previous_value.validator), ] FolderLinkRestrictionPolicyChangedType.description.validator = bv.String() -FolderLinkRestrictionPolicyChangedType._all_field_names_ = set(["description"]) -FolderLinkRestrictionPolicyChangedType._all_fields_ = [ - ("description", FolderLinkRestrictionPolicyChangedType.description.validator) -] +FolderLinkRestrictionPolicyChangedType._all_field_names_ = set(['description']) +FolderLinkRestrictionPolicyChangedType._all_fields_ = [('description', FolderLinkRestrictionPolicyChangedType.description.validator)] FolderLogInfo.file_count.validator = bv.Nullable(bv.UInt64()) -FolderLogInfo._all_field_names_ = FileOrFolderLogInfo._all_field_names_.union(set(["file_count"])) -FolderLogInfo._all_fields_ = FileOrFolderLogInfo._all_fields_ + [ - ("file_count", FolderLogInfo.file_count.validator) -] +FolderLogInfo._all_field_names_ = FileOrFolderLogInfo._all_field_names_.union(set(['file_count'])) +FolderLogInfo._all_fields_ = FileOrFolderLogInfo._all_fields_ + [('file_count', FolderLogInfo.file_count.validator)] FolderOverviewDescriptionChangedDetails.folder_overview_location_asset.validator = bv.UInt64() -FolderOverviewDescriptionChangedDetails._all_field_names_ = set(["folder_overview_location_asset"]) -FolderOverviewDescriptionChangedDetails._all_fields_ = [ - ( - "folder_overview_location_asset", - FolderOverviewDescriptionChangedDetails.folder_overview_location_asset.validator, - ) -] +FolderOverviewDescriptionChangedDetails._all_field_names_ = set(['folder_overview_location_asset']) +FolderOverviewDescriptionChangedDetails._all_fields_ = [('folder_overview_location_asset', FolderOverviewDescriptionChangedDetails.folder_overview_location_asset.validator)] FolderOverviewDescriptionChangedType.description.validator = bv.String() -FolderOverviewDescriptionChangedType._all_field_names_ = set(["description"]) -FolderOverviewDescriptionChangedType._all_fields_ = [ - ("description", FolderOverviewDescriptionChangedType.description.validator) -] +FolderOverviewDescriptionChangedType._all_field_names_ = set(['description']) +FolderOverviewDescriptionChangedType._all_fields_ = [('description', FolderOverviewDescriptionChangedType.description.validator)] FolderOverviewItemPinnedDetails.folder_overview_location_asset.validator = bv.UInt64() FolderOverviewItemPinnedDetails.pinned_items_asset_indices.validator = bv.List(bv.UInt64()) -FolderOverviewItemPinnedDetails._all_field_names_ = set( - [ - "folder_overview_location_asset", - "pinned_items_asset_indices", - ] -) +FolderOverviewItemPinnedDetails._all_field_names_ = set([ + 'folder_overview_location_asset', + 'pinned_items_asset_indices', +]) FolderOverviewItemPinnedDetails._all_fields_ = [ - ( - "folder_overview_location_asset", - FolderOverviewItemPinnedDetails.folder_overview_location_asset.validator, - ), - ( - "pinned_items_asset_indices", - FolderOverviewItemPinnedDetails.pinned_items_asset_indices.validator, - ), + ('folder_overview_location_asset', FolderOverviewItemPinnedDetails.folder_overview_location_asset.validator), + ('pinned_items_asset_indices', FolderOverviewItemPinnedDetails.pinned_items_asset_indices.validator), ] FolderOverviewItemPinnedType.description.validator = bv.String() -FolderOverviewItemPinnedType._all_field_names_ = set(["description"]) -FolderOverviewItemPinnedType._all_fields_ = [ - ("description", FolderOverviewItemPinnedType.description.validator) -] +FolderOverviewItemPinnedType._all_field_names_ = set(['description']) +FolderOverviewItemPinnedType._all_fields_ = [('description', FolderOverviewItemPinnedType.description.validator)] FolderOverviewItemUnpinnedDetails.folder_overview_location_asset.validator = bv.UInt64() FolderOverviewItemUnpinnedDetails.pinned_items_asset_indices.validator = bv.List(bv.UInt64()) -FolderOverviewItemUnpinnedDetails._all_field_names_ = set( - [ - "folder_overview_location_asset", - "pinned_items_asset_indices", - ] -) +FolderOverviewItemUnpinnedDetails._all_field_names_ = set([ + 'folder_overview_location_asset', + 'pinned_items_asset_indices', +]) FolderOverviewItemUnpinnedDetails._all_fields_ = [ - ( - "folder_overview_location_asset", - FolderOverviewItemUnpinnedDetails.folder_overview_location_asset.validator, - ), - ( - "pinned_items_asset_indices", - FolderOverviewItemUnpinnedDetails.pinned_items_asset_indices.validator, - ), + ('folder_overview_location_asset', FolderOverviewItemUnpinnedDetails.folder_overview_location_asset.validator), + ('pinned_items_asset_indices', FolderOverviewItemUnpinnedDetails.pinned_items_asset_indices.validator), ] FolderOverviewItemUnpinnedType.description.validator = bv.String() -FolderOverviewItemUnpinnedType._all_field_names_ = set(["description"]) -FolderOverviewItemUnpinnedType._all_fields_ = [ - ("description", FolderOverviewItemUnpinnedType.description.validator) -] +FolderOverviewItemUnpinnedType._all_field_names_ = set(['description']) +FolderOverviewItemUnpinnedType._all_fields_ = [('description', FolderOverviewItemUnpinnedType.description.validator)] GeoLocationLogInfo.city.validator = bv.Nullable(bv.String()) GeoLocationLogInfo.region.validator = bv.Nullable(bv.String()) GeoLocationLogInfo.country.validator = bv.Nullable(bv.String()) GeoLocationLogInfo.ip_address.validator = IpAddress_validator -GeoLocationLogInfo._all_field_names_ = set( - [ - "city", - "region", - "country", - "ip_address", - ] -) +GeoLocationLogInfo._all_field_names_ = set([ + 'city', + 'region', + 'country', + 'ip_address', +]) GeoLocationLogInfo._all_fields_ = [ - ("city", GeoLocationLogInfo.city.validator), - ("region", GeoLocationLogInfo.region.validator), - ("country", GeoLocationLogInfo.country.validator), - ("ip_address", GeoLocationLogInfo.ip_address.validator), + ('city', GeoLocationLogInfo.city.validator), + ('region', GeoLocationLogInfo.region.validator), + ('country', GeoLocationLogInfo.country.validator), + ('ip_address', GeoLocationLogInfo.ip_address.validator), ] GetTeamEventsArg.limit.validator = bv.UInt32(min_value=1, max_value=1000) @@ -108193,248 +101957,202 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): GetTeamEventsArg.time.validator = bv.Nullable(team_common.TimeRange_validator) GetTeamEventsArg.category.validator = bv.Nullable(EventCategory_validator) GetTeamEventsArg.event_type.validator = bv.Nullable(EventTypeArg_validator) -GetTeamEventsArg._all_field_names_ = set( - [ - "limit", - "account_id", - "time", - "category", - "event_type", - ] -) +GetTeamEventsArg._all_field_names_ = set([ + 'limit', + 'account_id', + 'time', + 'category', + 'event_type', +]) GetTeamEventsArg._all_fields_ = [ - ("limit", GetTeamEventsArg.limit.validator), - ("account_id", GetTeamEventsArg.account_id.validator), - ("time", GetTeamEventsArg.time.validator), - ("category", GetTeamEventsArg.category.validator), - ("event_type", GetTeamEventsArg.event_type.validator), + ('limit', GetTeamEventsArg.limit.validator), + ('account_id', GetTeamEventsArg.account_id.validator), + ('time', GetTeamEventsArg.time.validator), + ('category', GetTeamEventsArg.category.validator), + ('event_type', GetTeamEventsArg.event_type.validator), ] GetTeamEventsContinueArg.cursor.validator = bv.String() -GetTeamEventsContinueArg._all_field_names_ = set(["cursor"]) -GetTeamEventsContinueArg._all_fields_ = [("cursor", GetTeamEventsContinueArg.cursor.validator)] +GetTeamEventsContinueArg._all_field_names_ = set(['cursor']) +GetTeamEventsContinueArg._all_fields_ = [('cursor', GetTeamEventsContinueArg.cursor.validator)] GetTeamEventsContinueError._bad_cursor_validator = bv.Void() GetTeamEventsContinueError._reset_validator = common.DropboxTimestamp_validator GetTeamEventsContinueError._other_validator = bv.Void() GetTeamEventsContinueError._tagmap = { - "bad_cursor": GetTeamEventsContinueError._bad_cursor_validator, - "reset": GetTeamEventsContinueError._reset_validator, - "other": GetTeamEventsContinueError._other_validator, + 'bad_cursor': GetTeamEventsContinueError._bad_cursor_validator, + 'reset': GetTeamEventsContinueError._reset_validator, + 'other': GetTeamEventsContinueError._other_validator, } -GetTeamEventsContinueError.bad_cursor = GetTeamEventsContinueError("bad_cursor") -GetTeamEventsContinueError.other = GetTeamEventsContinueError("other") +GetTeamEventsContinueError.bad_cursor = GetTeamEventsContinueError('bad_cursor') +GetTeamEventsContinueError.other = GetTeamEventsContinueError('other') GetTeamEventsError._account_id_not_found_validator = bv.Void() GetTeamEventsError._invalid_time_range_validator = bv.Void() GetTeamEventsError._invalid_filters_validator = bv.Void() GetTeamEventsError._other_validator = bv.Void() GetTeamEventsError._tagmap = { - "account_id_not_found": GetTeamEventsError._account_id_not_found_validator, - "invalid_time_range": GetTeamEventsError._invalid_time_range_validator, - "invalid_filters": GetTeamEventsError._invalid_filters_validator, - "other": GetTeamEventsError._other_validator, + 'account_id_not_found': GetTeamEventsError._account_id_not_found_validator, + 'invalid_time_range': GetTeamEventsError._invalid_time_range_validator, + 'invalid_filters': GetTeamEventsError._invalid_filters_validator, + 'other': GetTeamEventsError._other_validator, } -GetTeamEventsError.account_id_not_found = GetTeamEventsError("account_id_not_found") -GetTeamEventsError.invalid_time_range = GetTeamEventsError("invalid_time_range") -GetTeamEventsError.invalid_filters = GetTeamEventsError("invalid_filters") -GetTeamEventsError.other = GetTeamEventsError("other") +GetTeamEventsError.account_id_not_found = GetTeamEventsError('account_id_not_found') +GetTeamEventsError.invalid_time_range = GetTeamEventsError('invalid_time_range') +GetTeamEventsError.invalid_filters = GetTeamEventsError('invalid_filters') +GetTeamEventsError.other = GetTeamEventsError('other') GetTeamEventsResult.events.validator = bv.List(TeamEvent_validator) GetTeamEventsResult.cursor.validator = bv.String() GetTeamEventsResult.has_more.validator = bv.Boolean() -GetTeamEventsResult._all_field_names_ = set( - [ - "events", - "cursor", - "has_more", - ] -) +GetTeamEventsResult._all_field_names_ = set([ + 'events', + 'cursor', + 'has_more', +]) GetTeamEventsResult._all_fields_ = [ - ("events", GetTeamEventsResult.events.validator), - ("cursor", GetTeamEventsResult.cursor.validator), - ("has_more", GetTeamEventsResult.has_more.validator), + ('events', GetTeamEventsResult.events.validator), + ('cursor', GetTeamEventsResult.cursor.validator), + ('has_more', GetTeamEventsResult.has_more.validator), ] GoogleSsoChangePolicyDetails.new_value.validator = GoogleSsoPolicy_validator GoogleSsoChangePolicyDetails.previous_value.validator = bv.Nullable(GoogleSsoPolicy_validator) -GoogleSsoChangePolicyDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +GoogleSsoChangePolicyDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) GoogleSsoChangePolicyDetails._all_fields_ = [ - ("new_value", GoogleSsoChangePolicyDetails.new_value.validator), - ("previous_value", GoogleSsoChangePolicyDetails.previous_value.validator), + ('new_value', GoogleSsoChangePolicyDetails.new_value.validator), + ('previous_value', GoogleSsoChangePolicyDetails.previous_value.validator), ] GoogleSsoChangePolicyType.description.validator = bv.String() -GoogleSsoChangePolicyType._all_field_names_ = set(["description"]) -GoogleSsoChangePolicyType._all_fields_ = [ - ("description", GoogleSsoChangePolicyType.description.validator) -] +GoogleSsoChangePolicyType._all_field_names_ = set(['description']) +GoogleSsoChangePolicyType._all_fields_ = [('description', GoogleSsoChangePolicyType.description.validator)] GoogleSsoPolicy._disabled_validator = bv.Void() GoogleSsoPolicy._enabled_validator = bv.Void() GoogleSsoPolicy._other_validator = bv.Void() GoogleSsoPolicy._tagmap = { - "disabled": GoogleSsoPolicy._disabled_validator, - "enabled": GoogleSsoPolicy._enabled_validator, - "other": GoogleSsoPolicy._other_validator, + 'disabled': GoogleSsoPolicy._disabled_validator, + 'enabled': GoogleSsoPolicy._enabled_validator, + 'other': GoogleSsoPolicy._other_validator, } -GoogleSsoPolicy.disabled = GoogleSsoPolicy("disabled") -GoogleSsoPolicy.enabled = GoogleSsoPolicy("enabled") -GoogleSsoPolicy.other = GoogleSsoPolicy("other") +GoogleSsoPolicy.disabled = GoogleSsoPolicy('disabled') +GoogleSsoPolicy.enabled = GoogleSsoPolicy('enabled') +GoogleSsoPolicy.other = GoogleSsoPolicy('other') GovernancePolicyAddFolderFailedDetails.governance_policy_id.validator = bv.String() GovernancePolicyAddFolderFailedDetails.name.validator = bv.String() GovernancePolicyAddFolderFailedDetails.policy_type.validator = bv.Nullable(PolicyType_validator) GovernancePolicyAddFolderFailedDetails.folder.validator = bv.String() GovernancePolicyAddFolderFailedDetails.reason.validator = bv.Nullable(bv.String()) -GovernancePolicyAddFolderFailedDetails._all_field_names_ = set( - [ - "governance_policy_id", - "name", - "policy_type", - "folder", - "reason", - ] -) +GovernancePolicyAddFolderFailedDetails._all_field_names_ = set([ + 'governance_policy_id', + 'name', + 'policy_type', + 'folder', + 'reason', +]) GovernancePolicyAddFolderFailedDetails._all_fields_ = [ - ( - "governance_policy_id", - GovernancePolicyAddFolderFailedDetails.governance_policy_id.validator, - ), - ("name", GovernancePolicyAddFolderFailedDetails.name.validator), - ("policy_type", GovernancePolicyAddFolderFailedDetails.policy_type.validator), - ("folder", GovernancePolicyAddFolderFailedDetails.folder.validator), - ("reason", GovernancePolicyAddFolderFailedDetails.reason.validator), + ('governance_policy_id', GovernancePolicyAddFolderFailedDetails.governance_policy_id.validator), + ('name', GovernancePolicyAddFolderFailedDetails.name.validator), + ('policy_type', GovernancePolicyAddFolderFailedDetails.policy_type.validator), + ('folder', GovernancePolicyAddFolderFailedDetails.folder.validator), + ('reason', GovernancePolicyAddFolderFailedDetails.reason.validator), ] GovernancePolicyAddFolderFailedType.description.validator = bv.String() -GovernancePolicyAddFolderFailedType._all_field_names_ = set(["description"]) -GovernancePolicyAddFolderFailedType._all_fields_ = [ - ("description", GovernancePolicyAddFolderFailedType.description.validator) -] +GovernancePolicyAddFolderFailedType._all_field_names_ = set(['description']) +GovernancePolicyAddFolderFailedType._all_fields_ = [('description', GovernancePolicyAddFolderFailedType.description.validator)] GovernancePolicyAddFoldersDetails.governance_policy_id.validator = bv.String() GovernancePolicyAddFoldersDetails.name.validator = bv.String() GovernancePolicyAddFoldersDetails.policy_type.validator = bv.Nullable(PolicyType_validator) GovernancePolicyAddFoldersDetails.folders.validator = bv.Nullable(bv.List(bv.String())) -GovernancePolicyAddFoldersDetails._all_field_names_ = set( - [ - "governance_policy_id", - "name", - "policy_type", - "folders", - ] -) +GovernancePolicyAddFoldersDetails._all_field_names_ = set([ + 'governance_policy_id', + 'name', + 'policy_type', + 'folders', +]) GovernancePolicyAddFoldersDetails._all_fields_ = [ - ( - "governance_policy_id", - GovernancePolicyAddFoldersDetails.governance_policy_id.validator, - ), - ("name", GovernancePolicyAddFoldersDetails.name.validator), - ("policy_type", GovernancePolicyAddFoldersDetails.policy_type.validator), - ("folders", GovernancePolicyAddFoldersDetails.folders.validator), + ('governance_policy_id', GovernancePolicyAddFoldersDetails.governance_policy_id.validator), + ('name', GovernancePolicyAddFoldersDetails.name.validator), + ('policy_type', GovernancePolicyAddFoldersDetails.policy_type.validator), + ('folders', GovernancePolicyAddFoldersDetails.folders.validator), ] GovernancePolicyAddFoldersType.description.validator = bv.String() -GovernancePolicyAddFoldersType._all_field_names_ = set(["description"]) -GovernancePolicyAddFoldersType._all_fields_ = [ - ("description", GovernancePolicyAddFoldersType.description.validator) -] +GovernancePolicyAddFoldersType._all_field_names_ = set(['description']) +GovernancePolicyAddFoldersType._all_fields_ = [('description', GovernancePolicyAddFoldersType.description.validator)] GovernancePolicyContentDisposedDetails.governance_policy_id.validator = bv.String() GovernancePolicyContentDisposedDetails.name.validator = bv.String() GovernancePolicyContentDisposedDetails.policy_type.validator = bv.Nullable(PolicyType_validator) GovernancePolicyContentDisposedDetails.disposition_type.validator = DispositionActionType_validator -GovernancePolicyContentDisposedDetails._all_field_names_ = set( - [ - "governance_policy_id", - "name", - "policy_type", - "disposition_type", - ] -) +GovernancePolicyContentDisposedDetails._all_field_names_ = set([ + 'governance_policy_id', + 'name', + 'policy_type', + 'disposition_type', +]) GovernancePolicyContentDisposedDetails._all_fields_ = [ - ( - "governance_policy_id", - GovernancePolicyContentDisposedDetails.governance_policy_id.validator, - ), - ("name", GovernancePolicyContentDisposedDetails.name.validator), - ("policy_type", GovernancePolicyContentDisposedDetails.policy_type.validator), - ( - "disposition_type", - GovernancePolicyContentDisposedDetails.disposition_type.validator, - ), + ('governance_policy_id', GovernancePolicyContentDisposedDetails.governance_policy_id.validator), + ('name', GovernancePolicyContentDisposedDetails.name.validator), + ('policy_type', GovernancePolicyContentDisposedDetails.policy_type.validator), + ('disposition_type', GovernancePolicyContentDisposedDetails.disposition_type.validator), ] GovernancePolicyContentDisposedType.description.validator = bv.String() -GovernancePolicyContentDisposedType._all_field_names_ = set(["description"]) -GovernancePolicyContentDisposedType._all_fields_ = [ - ("description", GovernancePolicyContentDisposedType.description.validator) -] +GovernancePolicyContentDisposedType._all_field_names_ = set(['description']) +GovernancePolicyContentDisposedType._all_fields_ = [('description', GovernancePolicyContentDisposedType.description.validator)] GovernancePolicyCreateDetails.governance_policy_id.validator = bv.String() GovernancePolicyCreateDetails.name.validator = bv.String() GovernancePolicyCreateDetails.policy_type.validator = bv.Nullable(PolicyType_validator) GovernancePolicyCreateDetails.duration.validator = DurationLogInfo_validator GovernancePolicyCreateDetails.folders.validator = bv.Nullable(bv.List(bv.String())) -GovernancePolicyCreateDetails._all_field_names_ = set( - [ - "governance_policy_id", - "name", - "policy_type", - "duration", - "folders", - ] -) +GovernancePolicyCreateDetails._all_field_names_ = set([ + 'governance_policy_id', + 'name', + 'policy_type', + 'duration', + 'folders', +]) GovernancePolicyCreateDetails._all_fields_ = [ - ( - "governance_policy_id", - GovernancePolicyCreateDetails.governance_policy_id.validator, - ), - ("name", GovernancePolicyCreateDetails.name.validator), - ("policy_type", GovernancePolicyCreateDetails.policy_type.validator), - ("duration", GovernancePolicyCreateDetails.duration.validator), - ("folders", GovernancePolicyCreateDetails.folders.validator), + ('governance_policy_id', GovernancePolicyCreateDetails.governance_policy_id.validator), + ('name', GovernancePolicyCreateDetails.name.validator), + ('policy_type', GovernancePolicyCreateDetails.policy_type.validator), + ('duration', GovernancePolicyCreateDetails.duration.validator), + ('folders', GovernancePolicyCreateDetails.folders.validator), ] GovernancePolicyCreateType.description.validator = bv.String() -GovernancePolicyCreateType._all_field_names_ = set(["description"]) -GovernancePolicyCreateType._all_fields_ = [ - ("description", GovernancePolicyCreateType.description.validator) -] +GovernancePolicyCreateType._all_field_names_ = set(['description']) +GovernancePolicyCreateType._all_fields_ = [('description', GovernancePolicyCreateType.description.validator)] GovernancePolicyDeleteDetails.governance_policy_id.validator = bv.String() GovernancePolicyDeleteDetails.name.validator = bv.String() GovernancePolicyDeleteDetails.policy_type.validator = bv.Nullable(PolicyType_validator) -GovernancePolicyDeleteDetails._all_field_names_ = set( - [ - "governance_policy_id", - "name", - "policy_type", - ] -) +GovernancePolicyDeleteDetails._all_field_names_ = set([ + 'governance_policy_id', + 'name', + 'policy_type', +]) GovernancePolicyDeleteDetails._all_fields_ = [ - ( - "governance_policy_id", - GovernancePolicyDeleteDetails.governance_policy_id.validator, - ), - ("name", GovernancePolicyDeleteDetails.name.validator), - ("policy_type", GovernancePolicyDeleteDetails.policy_type.validator), + ('governance_policy_id', GovernancePolicyDeleteDetails.governance_policy_id.validator), + ('name', GovernancePolicyDeleteDetails.name.validator), + ('policy_type', GovernancePolicyDeleteDetails.policy_type.validator), ] GovernancePolicyDeleteType.description.validator = bv.String() -GovernancePolicyDeleteType._all_field_names_ = set(["description"]) -GovernancePolicyDeleteType._all_fields_ = [ - ("description", GovernancePolicyDeleteType.description.validator) -] +GovernancePolicyDeleteType._all_field_names_ = set(['description']) +GovernancePolicyDeleteType._all_fields_ = [('description', GovernancePolicyDeleteType.description.validator)] GovernancePolicyEditDetailsDetails.governance_policy_id.validator = bv.String() GovernancePolicyEditDetailsDetails.name.validator = bv.String() @@ -108442,461 +102160,351 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): GovernancePolicyEditDetailsDetails.attribute.validator = bv.String() GovernancePolicyEditDetailsDetails.previous_value.validator = bv.String() GovernancePolicyEditDetailsDetails.new_value.validator = bv.String() -GovernancePolicyEditDetailsDetails._all_field_names_ = set( - [ - "governance_policy_id", - "name", - "policy_type", - "attribute", - "previous_value", - "new_value", - ] -) +GovernancePolicyEditDetailsDetails._all_field_names_ = set([ + 'governance_policy_id', + 'name', + 'policy_type', + 'attribute', + 'previous_value', + 'new_value', +]) GovernancePolicyEditDetailsDetails._all_fields_ = [ - ( - "governance_policy_id", - GovernancePolicyEditDetailsDetails.governance_policy_id.validator, - ), - ("name", GovernancePolicyEditDetailsDetails.name.validator), - ("policy_type", GovernancePolicyEditDetailsDetails.policy_type.validator), - ("attribute", GovernancePolicyEditDetailsDetails.attribute.validator), - ("previous_value", GovernancePolicyEditDetailsDetails.previous_value.validator), - ("new_value", GovernancePolicyEditDetailsDetails.new_value.validator), + ('governance_policy_id', GovernancePolicyEditDetailsDetails.governance_policy_id.validator), + ('name', GovernancePolicyEditDetailsDetails.name.validator), + ('policy_type', GovernancePolicyEditDetailsDetails.policy_type.validator), + ('attribute', GovernancePolicyEditDetailsDetails.attribute.validator), + ('previous_value', GovernancePolicyEditDetailsDetails.previous_value.validator), + ('new_value', GovernancePolicyEditDetailsDetails.new_value.validator), ] GovernancePolicyEditDetailsType.description.validator = bv.String() -GovernancePolicyEditDetailsType._all_field_names_ = set(["description"]) -GovernancePolicyEditDetailsType._all_fields_ = [ - ("description", GovernancePolicyEditDetailsType.description.validator) -] +GovernancePolicyEditDetailsType._all_field_names_ = set(['description']) +GovernancePolicyEditDetailsType._all_fields_ = [('description', GovernancePolicyEditDetailsType.description.validator)] GovernancePolicyEditDurationDetails.governance_policy_id.validator = bv.String() GovernancePolicyEditDurationDetails.name.validator = bv.String() GovernancePolicyEditDurationDetails.policy_type.validator = bv.Nullable(PolicyType_validator) GovernancePolicyEditDurationDetails.previous_value.validator = DurationLogInfo_validator GovernancePolicyEditDurationDetails.new_value.validator = DurationLogInfo_validator -GovernancePolicyEditDurationDetails._all_field_names_ = set( - [ - "governance_policy_id", - "name", - "policy_type", - "previous_value", - "new_value", - ] -) +GovernancePolicyEditDurationDetails._all_field_names_ = set([ + 'governance_policy_id', + 'name', + 'policy_type', + 'previous_value', + 'new_value', +]) GovernancePolicyEditDurationDetails._all_fields_ = [ - ( - "governance_policy_id", - GovernancePolicyEditDurationDetails.governance_policy_id.validator, - ), - ("name", GovernancePolicyEditDurationDetails.name.validator), - ("policy_type", GovernancePolicyEditDurationDetails.policy_type.validator), - ("previous_value", GovernancePolicyEditDurationDetails.previous_value.validator), - ("new_value", GovernancePolicyEditDurationDetails.new_value.validator), + ('governance_policy_id', GovernancePolicyEditDurationDetails.governance_policy_id.validator), + ('name', GovernancePolicyEditDurationDetails.name.validator), + ('policy_type', GovernancePolicyEditDurationDetails.policy_type.validator), + ('previous_value', GovernancePolicyEditDurationDetails.previous_value.validator), + ('new_value', GovernancePolicyEditDurationDetails.new_value.validator), ] GovernancePolicyEditDurationType.description.validator = bv.String() -GovernancePolicyEditDurationType._all_field_names_ = set(["description"]) -GovernancePolicyEditDurationType._all_fields_ = [ - ("description", GovernancePolicyEditDurationType.description.validator) -] +GovernancePolicyEditDurationType._all_field_names_ = set(['description']) +GovernancePolicyEditDurationType._all_fields_ = [('description', GovernancePolicyEditDurationType.description.validator)] GovernancePolicyExportCreatedDetails.governance_policy_id.validator = bv.String() GovernancePolicyExportCreatedDetails.name.validator = bv.String() GovernancePolicyExportCreatedDetails.policy_type.validator = bv.Nullable(PolicyType_validator) GovernancePolicyExportCreatedDetails.export_name.validator = bv.String() -GovernancePolicyExportCreatedDetails._all_field_names_ = set( - [ - "governance_policy_id", - "name", - "policy_type", - "export_name", - ] -) +GovernancePolicyExportCreatedDetails._all_field_names_ = set([ + 'governance_policy_id', + 'name', + 'policy_type', + 'export_name', +]) GovernancePolicyExportCreatedDetails._all_fields_ = [ - ( - "governance_policy_id", - GovernancePolicyExportCreatedDetails.governance_policy_id.validator, - ), - ("name", GovernancePolicyExportCreatedDetails.name.validator), - ("policy_type", GovernancePolicyExportCreatedDetails.policy_type.validator), - ("export_name", GovernancePolicyExportCreatedDetails.export_name.validator), + ('governance_policy_id', GovernancePolicyExportCreatedDetails.governance_policy_id.validator), + ('name', GovernancePolicyExportCreatedDetails.name.validator), + ('policy_type', GovernancePolicyExportCreatedDetails.policy_type.validator), + ('export_name', GovernancePolicyExportCreatedDetails.export_name.validator), ] GovernancePolicyExportCreatedType.description.validator = bv.String() -GovernancePolicyExportCreatedType._all_field_names_ = set(["description"]) -GovernancePolicyExportCreatedType._all_fields_ = [ - ("description", GovernancePolicyExportCreatedType.description.validator) -] +GovernancePolicyExportCreatedType._all_field_names_ = set(['description']) +GovernancePolicyExportCreatedType._all_fields_ = [('description', GovernancePolicyExportCreatedType.description.validator)] GovernancePolicyExportRemovedDetails.governance_policy_id.validator = bv.String() GovernancePolicyExportRemovedDetails.name.validator = bv.String() GovernancePolicyExportRemovedDetails.policy_type.validator = bv.Nullable(PolicyType_validator) GovernancePolicyExportRemovedDetails.export_name.validator = bv.String() -GovernancePolicyExportRemovedDetails._all_field_names_ = set( - [ - "governance_policy_id", - "name", - "policy_type", - "export_name", - ] -) +GovernancePolicyExportRemovedDetails._all_field_names_ = set([ + 'governance_policy_id', + 'name', + 'policy_type', + 'export_name', +]) GovernancePolicyExportRemovedDetails._all_fields_ = [ - ( - "governance_policy_id", - GovernancePolicyExportRemovedDetails.governance_policy_id.validator, - ), - ("name", GovernancePolicyExportRemovedDetails.name.validator), - ("policy_type", GovernancePolicyExportRemovedDetails.policy_type.validator), - ("export_name", GovernancePolicyExportRemovedDetails.export_name.validator), + ('governance_policy_id', GovernancePolicyExportRemovedDetails.governance_policy_id.validator), + ('name', GovernancePolicyExportRemovedDetails.name.validator), + ('policy_type', GovernancePolicyExportRemovedDetails.policy_type.validator), + ('export_name', GovernancePolicyExportRemovedDetails.export_name.validator), ] GovernancePolicyExportRemovedType.description.validator = bv.String() -GovernancePolicyExportRemovedType._all_field_names_ = set(["description"]) -GovernancePolicyExportRemovedType._all_fields_ = [ - ("description", GovernancePolicyExportRemovedType.description.validator) -] +GovernancePolicyExportRemovedType._all_field_names_ = set(['description']) +GovernancePolicyExportRemovedType._all_fields_ = [('description', GovernancePolicyExportRemovedType.description.validator)] GovernancePolicyRemoveFoldersDetails.governance_policy_id.validator = bv.String() GovernancePolicyRemoveFoldersDetails.name.validator = bv.String() GovernancePolicyRemoveFoldersDetails.policy_type.validator = bv.Nullable(PolicyType_validator) GovernancePolicyRemoveFoldersDetails.folders.validator = bv.Nullable(bv.List(bv.String())) GovernancePolicyRemoveFoldersDetails.reason.validator = bv.Nullable(bv.String()) -GovernancePolicyRemoveFoldersDetails._all_field_names_ = set( - [ - "governance_policy_id", - "name", - "policy_type", - "folders", - "reason", - ] -) +GovernancePolicyRemoveFoldersDetails._all_field_names_ = set([ + 'governance_policy_id', + 'name', + 'policy_type', + 'folders', + 'reason', +]) GovernancePolicyRemoveFoldersDetails._all_fields_ = [ - ( - "governance_policy_id", - GovernancePolicyRemoveFoldersDetails.governance_policy_id.validator, - ), - ("name", GovernancePolicyRemoveFoldersDetails.name.validator), - ("policy_type", GovernancePolicyRemoveFoldersDetails.policy_type.validator), - ("folders", GovernancePolicyRemoveFoldersDetails.folders.validator), - ("reason", GovernancePolicyRemoveFoldersDetails.reason.validator), + ('governance_policy_id', GovernancePolicyRemoveFoldersDetails.governance_policy_id.validator), + ('name', GovernancePolicyRemoveFoldersDetails.name.validator), + ('policy_type', GovernancePolicyRemoveFoldersDetails.policy_type.validator), + ('folders', GovernancePolicyRemoveFoldersDetails.folders.validator), + ('reason', GovernancePolicyRemoveFoldersDetails.reason.validator), ] GovernancePolicyRemoveFoldersType.description.validator = bv.String() -GovernancePolicyRemoveFoldersType._all_field_names_ = set(["description"]) -GovernancePolicyRemoveFoldersType._all_fields_ = [ - ("description", GovernancePolicyRemoveFoldersType.description.validator) -] +GovernancePolicyRemoveFoldersType._all_field_names_ = set(['description']) +GovernancePolicyRemoveFoldersType._all_fields_ = [('description', GovernancePolicyRemoveFoldersType.description.validator)] GovernancePolicyReportCreatedDetails.governance_policy_id.validator = bv.String() GovernancePolicyReportCreatedDetails.name.validator = bv.String() GovernancePolicyReportCreatedDetails.policy_type.validator = bv.Nullable(PolicyType_validator) -GovernancePolicyReportCreatedDetails._all_field_names_ = set( - [ - "governance_policy_id", - "name", - "policy_type", - ] -) +GovernancePolicyReportCreatedDetails._all_field_names_ = set([ + 'governance_policy_id', + 'name', + 'policy_type', +]) GovernancePolicyReportCreatedDetails._all_fields_ = [ - ( - "governance_policy_id", - GovernancePolicyReportCreatedDetails.governance_policy_id.validator, - ), - ("name", GovernancePolicyReportCreatedDetails.name.validator), - ("policy_type", GovernancePolicyReportCreatedDetails.policy_type.validator), + ('governance_policy_id', GovernancePolicyReportCreatedDetails.governance_policy_id.validator), + ('name', GovernancePolicyReportCreatedDetails.name.validator), + ('policy_type', GovernancePolicyReportCreatedDetails.policy_type.validator), ] GovernancePolicyReportCreatedType.description.validator = bv.String() -GovernancePolicyReportCreatedType._all_field_names_ = set(["description"]) -GovernancePolicyReportCreatedType._all_fields_ = [ - ("description", GovernancePolicyReportCreatedType.description.validator) -] +GovernancePolicyReportCreatedType._all_field_names_ = set(['description']) +GovernancePolicyReportCreatedType._all_fields_ = [('description', GovernancePolicyReportCreatedType.description.validator)] GovernancePolicyZipPartDownloadedDetails.governance_policy_id.validator = bv.String() GovernancePolicyZipPartDownloadedDetails.name.validator = bv.String() GovernancePolicyZipPartDownloadedDetails.policy_type.validator = bv.Nullable(PolicyType_validator) GovernancePolicyZipPartDownloadedDetails.export_name.validator = bv.String() GovernancePolicyZipPartDownloadedDetails.part.validator = bv.Nullable(bv.String()) -GovernancePolicyZipPartDownloadedDetails._all_field_names_ = set( - [ - "governance_policy_id", - "name", - "policy_type", - "export_name", - "part", - ] -) +GovernancePolicyZipPartDownloadedDetails._all_field_names_ = set([ + 'governance_policy_id', + 'name', + 'policy_type', + 'export_name', + 'part', +]) GovernancePolicyZipPartDownloadedDetails._all_fields_ = [ - ( - "governance_policy_id", - GovernancePolicyZipPartDownloadedDetails.governance_policy_id.validator, - ), - ("name", GovernancePolicyZipPartDownloadedDetails.name.validator), - ("policy_type", GovernancePolicyZipPartDownloadedDetails.policy_type.validator), - ("export_name", GovernancePolicyZipPartDownloadedDetails.export_name.validator), - ("part", GovernancePolicyZipPartDownloadedDetails.part.validator), + ('governance_policy_id', GovernancePolicyZipPartDownloadedDetails.governance_policy_id.validator), + ('name', GovernancePolicyZipPartDownloadedDetails.name.validator), + ('policy_type', GovernancePolicyZipPartDownloadedDetails.policy_type.validator), + ('export_name', GovernancePolicyZipPartDownloadedDetails.export_name.validator), + ('part', GovernancePolicyZipPartDownloadedDetails.part.validator), ] GovernancePolicyZipPartDownloadedType.description.validator = bv.String() -GovernancePolicyZipPartDownloadedType._all_field_names_ = set(["description"]) -GovernancePolicyZipPartDownloadedType._all_fields_ = [ - ("description", GovernancePolicyZipPartDownloadedType.description.validator) -] +GovernancePolicyZipPartDownloadedType._all_field_names_ = set(['description']) +GovernancePolicyZipPartDownloadedType._all_fields_ = [('description', GovernancePolicyZipPartDownloadedType.description.validator)] GroupAddExternalIdDetails.new_value.validator = team_common.GroupExternalId_validator -GroupAddExternalIdDetails._all_field_names_ = set(["new_value"]) -GroupAddExternalIdDetails._all_fields_ = [ - ("new_value", GroupAddExternalIdDetails.new_value.validator) -] +GroupAddExternalIdDetails._all_field_names_ = set(['new_value']) +GroupAddExternalIdDetails._all_fields_ = [('new_value', GroupAddExternalIdDetails.new_value.validator)] GroupAddExternalIdType.description.validator = bv.String() -GroupAddExternalIdType._all_field_names_ = set(["description"]) -GroupAddExternalIdType._all_fields_ = [ - ("description", GroupAddExternalIdType.description.validator) -] +GroupAddExternalIdType._all_field_names_ = set(['description']) +GroupAddExternalIdType._all_fields_ = [('description', GroupAddExternalIdType.description.validator)] GroupAddMemberDetails.is_group_owner.validator = bv.Boolean() -GroupAddMemberDetails._all_field_names_ = set(["is_group_owner"]) -GroupAddMemberDetails._all_fields_ = [ - ("is_group_owner", GroupAddMemberDetails.is_group_owner.validator) -] +GroupAddMemberDetails._all_field_names_ = set(['is_group_owner']) +GroupAddMemberDetails._all_fields_ = [('is_group_owner', GroupAddMemberDetails.is_group_owner.validator)] GroupAddMemberType.description.validator = bv.String() -GroupAddMemberType._all_field_names_ = set(["description"]) -GroupAddMemberType._all_fields_ = [("description", GroupAddMemberType.description.validator)] +GroupAddMemberType._all_field_names_ = set(['description']) +GroupAddMemberType._all_fields_ = [('description', GroupAddMemberType.description.validator)] GroupChangeExternalIdDetails.new_value.validator = team_common.GroupExternalId_validator GroupChangeExternalIdDetails.previous_value.validator = team_common.GroupExternalId_validator -GroupChangeExternalIdDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +GroupChangeExternalIdDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) GroupChangeExternalIdDetails._all_fields_ = [ - ("new_value", GroupChangeExternalIdDetails.new_value.validator), - ("previous_value", GroupChangeExternalIdDetails.previous_value.validator), + ('new_value', GroupChangeExternalIdDetails.new_value.validator), + ('previous_value', GroupChangeExternalIdDetails.previous_value.validator), ] GroupChangeExternalIdType.description.validator = bv.String() -GroupChangeExternalIdType._all_field_names_ = set(["description"]) -GroupChangeExternalIdType._all_fields_ = [ - ("description", GroupChangeExternalIdType.description.validator) -] +GroupChangeExternalIdType._all_field_names_ = set(['description']) +GroupChangeExternalIdType._all_fields_ = [('description', GroupChangeExternalIdType.description.validator)] GroupChangeManagementTypeDetails.new_value.validator = team_common.GroupManagementType_validator -GroupChangeManagementTypeDetails.previous_value.validator = bv.Nullable( - team_common.GroupManagementType_validator -) -GroupChangeManagementTypeDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +GroupChangeManagementTypeDetails.previous_value.validator = bv.Nullable(team_common.GroupManagementType_validator) +GroupChangeManagementTypeDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) GroupChangeManagementTypeDetails._all_fields_ = [ - ("new_value", GroupChangeManagementTypeDetails.new_value.validator), - ("previous_value", GroupChangeManagementTypeDetails.previous_value.validator), + ('new_value', GroupChangeManagementTypeDetails.new_value.validator), + ('previous_value', GroupChangeManagementTypeDetails.previous_value.validator), ] GroupChangeManagementTypeType.description.validator = bv.String() -GroupChangeManagementTypeType._all_field_names_ = set(["description"]) -GroupChangeManagementTypeType._all_fields_ = [ - ("description", GroupChangeManagementTypeType.description.validator) -] +GroupChangeManagementTypeType._all_field_names_ = set(['description']) +GroupChangeManagementTypeType._all_fields_ = [('description', GroupChangeManagementTypeType.description.validator)] GroupChangeMemberRoleDetails.is_group_owner.validator = bv.Boolean() -GroupChangeMemberRoleDetails._all_field_names_ = set(["is_group_owner"]) -GroupChangeMemberRoleDetails._all_fields_ = [ - ("is_group_owner", GroupChangeMemberRoleDetails.is_group_owner.validator) -] +GroupChangeMemberRoleDetails._all_field_names_ = set(['is_group_owner']) +GroupChangeMemberRoleDetails._all_fields_ = [('is_group_owner', GroupChangeMemberRoleDetails.is_group_owner.validator)] GroupChangeMemberRoleType.description.validator = bv.String() -GroupChangeMemberRoleType._all_field_names_ = set(["description"]) -GroupChangeMemberRoleType._all_fields_ = [ - ("description", GroupChangeMemberRoleType.description.validator) -] +GroupChangeMemberRoleType._all_field_names_ = set(['description']) +GroupChangeMemberRoleType._all_fields_ = [('description', GroupChangeMemberRoleType.description.validator)] GroupCreateDetails.is_company_managed.validator = bv.Nullable(bv.Boolean()) GroupCreateDetails.join_policy.validator = bv.Nullable(GroupJoinPolicy_validator) -GroupCreateDetails._all_field_names_ = set( - [ - "is_company_managed", - "join_policy", - ] -) +GroupCreateDetails._all_field_names_ = set([ + 'is_company_managed', + 'join_policy', +]) GroupCreateDetails._all_fields_ = [ - ("is_company_managed", GroupCreateDetails.is_company_managed.validator), - ("join_policy", GroupCreateDetails.join_policy.validator), + ('is_company_managed', GroupCreateDetails.is_company_managed.validator), + ('join_policy', GroupCreateDetails.join_policy.validator), ] GroupCreateType.description.validator = bv.String() -GroupCreateType._all_field_names_ = set(["description"]) -GroupCreateType._all_fields_ = [("description", GroupCreateType.description.validator)] +GroupCreateType._all_field_names_ = set(['description']) +GroupCreateType._all_fields_ = [('description', GroupCreateType.description.validator)] GroupDeleteDetails.is_company_managed.validator = bv.Nullable(bv.Boolean()) -GroupDeleteDetails._all_field_names_ = set(["is_company_managed"]) -GroupDeleteDetails._all_fields_ = [ - ("is_company_managed", GroupDeleteDetails.is_company_managed.validator) -] +GroupDeleteDetails._all_field_names_ = set(['is_company_managed']) +GroupDeleteDetails._all_fields_ = [('is_company_managed', GroupDeleteDetails.is_company_managed.validator)] GroupDeleteType.description.validator = bv.String() -GroupDeleteType._all_field_names_ = set(["description"]) -GroupDeleteType._all_fields_ = [("description", GroupDeleteType.description.validator)] +GroupDeleteType._all_field_names_ = set(['description']) +GroupDeleteType._all_fields_ = [('description', GroupDeleteType.description.validator)] GroupDescriptionUpdatedDetails._all_field_names_ = set([]) GroupDescriptionUpdatedDetails._all_fields_ = [] GroupDescriptionUpdatedType.description.validator = bv.String() -GroupDescriptionUpdatedType._all_field_names_ = set(["description"]) -GroupDescriptionUpdatedType._all_fields_ = [ - ("description", GroupDescriptionUpdatedType.description.validator) -] - -GroupExternalSharingSettingOverrideChangedDetails.new_value.validator = ( - ExternalSharingSetting_validator -) -GroupExternalSharingSettingOverrideChangedDetails.previous_value.validator = ( - ExternalSharingSetting_validator -) -GroupExternalSharingSettingOverrideChangedDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +GroupDescriptionUpdatedType._all_field_names_ = set(['description']) +GroupDescriptionUpdatedType._all_fields_ = [('description', GroupDescriptionUpdatedType.description.validator)] + +GroupExternalSharingSettingOverrideChangedDetails.new_value.validator = ExternalSharingSetting_validator +GroupExternalSharingSettingOverrideChangedDetails.previous_value.validator = ExternalSharingSetting_validator +GroupExternalSharingSettingOverrideChangedDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) GroupExternalSharingSettingOverrideChangedDetails._all_fields_ = [ - ( - "new_value", - GroupExternalSharingSettingOverrideChangedDetails.new_value.validator, - ), - ( - "previous_value", - GroupExternalSharingSettingOverrideChangedDetails.previous_value.validator, - ), + ('new_value', GroupExternalSharingSettingOverrideChangedDetails.new_value.validator), + ('previous_value', GroupExternalSharingSettingOverrideChangedDetails.previous_value.validator), ] GroupExternalSharingSettingOverrideChangedType.description.validator = bv.String() -GroupExternalSharingSettingOverrideChangedType._all_field_names_ = set(["description"]) -GroupExternalSharingSettingOverrideChangedType._all_fields_ = [ - ( - "description", - GroupExternalSharingSettingOverrideChangedType.description.validator, - ) -] +GroupExternalSharingSettingOverrideChangedType._all_field_names_ = set(['description']) +GroupExternalSharingSettingOverrideChangedType._all_fields_ = [('description', GroupExternalSharingSettingOverrideChangedType.description.validator)] GroupJoinPolicy._open_validator = bv.Void() GroupJoinPolicy._request_to_join_validator = bv.Void() GroupJoinPolicy._other_validator = bv.Void() GroupJoinPolicy._tagmap = { - "open": GroupJoinPolicy._open_validator, - "request_to_join": GroupJoinPolicy._request_to_join_validator, - "other": GroupJoinPolicy._other_validator, + 'open': GroupJoinPolicy._open_validator, + 'request_to_join': GroupJoinPolicy._request_to_join_validator, + 'other': GroupJoinPolicy._other_validator, } -GroupJoinPolicy.open = GroupJoinPolicy("open") -GroupJoinPolicy.request_to_join = GroupJoinPolicy("request_to_join") -GroupJoinPolicy.other = GroupJoinPolicy("other") +GroupJoinPolicy.open = GroupJoinPolicy('open') +GroupJoinPolicy.request_to_join = GroupJoinPolicy('request_to_join') +GroupJoinPolicy.other = GroupJoinPolicy('other') GroupJoinPolicyUpdatedDetails.is_company_managed.validator = bv.Nullable(bv.Boolean()) GroupJoinPolicyUpdatedDetails.join_policy.validator = bv.Nullable(GroupJoinPolicy_validator) -GroupJoinPolicyUpdatedDetails._all_field_names_ = set( - [ - "is_company_managed", - "join_policy", - ] -) +GroupJoinPolicyUpdatedDetails._all_field_names_ = set([ + 'is_company_managed', + 'join_policy', +]) GroupJoinPolicyUpdatedDetails._all_fields_ = [ - ("is_company_managed", GroupJoinPolicyUpdatedDetails.is_company_managed.validator), - ("join_policy", GroupJoinPolicyUpdatedDetails.join_policy.validator), + ('is_company_managed', GroupJoinPolicyUpdatedDetails.is_company_managed.validator), + ('join_policy', GroupJoinPolicyUpdatedDetails.join_policy.validator), ] GroupJoinPolicyUpdatedType.description.validator = bv.String() -GroupJoinPolicyUpdatedType._all_field_names_ = set(["description"]) -GroupJoinPolicyUpdatedType._all_fields_ = [ - ("description", GroupJoinPolicyUpdatedType.description.validator) -] +GroupJoinPolicyUpdatedType._all_field_names_ = set(['description']) +GroupJoinPolicyUpdatedType._all_fields_ = [('description', GroupJoinPolicyUpdatedType.description.validator)] GroupLogInfo.group_id.validator = bv.Nullable(team_common.GroupId_validator) GroupLogInfo.display_name.validator = bv.String() GroupLogInfo.external_id.validator = bv.Nullable(team_common.GroupExternalId_validator) -GroupLogInfo._all_field_names_ = set( - [ - "group_id", - "display_name", - "external_id", - ] -) +GroupLogInfo._all_field_names_ = set([ + 'group_id', + 'display_name', + 'external_id', +]) GroupLogInfo._all_fields_ = [ - ("group_id", GroupLogInfo.group_id.validator), - ("display_name", GroupLogInfo.display_name.validator), - ("external_id", GroupLogInfo.external_id.validator), + ('group_id', GroupLogInfo.group_id.validator), + ('display_name', GroupLogInfo.display_name.validator), + ('external_id', GroupLogInfo.external_id.validator), ] GroupMovedDetails._all_field_names_ = set([]) GroupMovedDetails._all_fields_ = [] GroupMovedType.description.validator = bv.String() -GroupMovedType._all_field_names_ = set(["description"]) -GroupMovedType._all_fields_ = [("description", GroupMovedType.description.validator)] +GroupMovedType._all_field_names_ = set(['description']) +GroupMovedType._all_fields_ = [('description', GroupMovedType.description.validator)] GroupRemoveExternalIdDetails.previous_value.validator = team_common.GroupExternalId_validator -GroupRemoveExternalIdDetails._all_field_names_ = set(["previous_value"]) -GroupRemoveExternalIdDetails._all_fields_ = [ - ("previous_value", GroupRemoveExternalIdDetails.previous_value.validator) -] +GroupRemoveExternalIdDetails._all_field_names_ = set(['previous_value']) +GroupRemoveExternalIdDetails._all_fields_ = [('previous_value', GroupRemoveExternalIdDetails.previous_value.validator)] GroupRemoveExternalIdType.description.validator = bv.String() -GroupRemoveExternalIdType._all_field_names_ = set(["description"]) -GroupRemoveExternalIdType._all_fields_ = [ - ("description", GroupRemoveExternalIdType.description.validator) -] +GroupRemoveExternalIdType._all_field_names_ = set(['description']) +GroupRemoveExternalIdType._all_fields_ = [('description', GroupRemoveExternalIdType.description.validator)] GroupRemoveMemberDetails._all_field_names_ = set([]) GroupRemoveMemberDetails._all_fields_ = [] GroupRemoveMemberType.description.validator = bv.String() -GroupRemoveMemberType._all_field_names_ = set(["description"]) -GroupRemoveMemberType._all_fields_ = [("description", GroupRemoveMemberType.description.validator)] +GroupRemoveMemberType._all_field_names_ = set(['description']) +GroupRemoveMemberType._all_fields_ = [('description', GroupRemoveMemberType.description.validator)] GroupRenameDetails.previous_value.validator = bv.String() GroupRenameDetails.new_value.validator = bv.String() -GroupRenameDetails._all_field_names_ = set( - [ - "previous_value", - "new_value", - ] -) +GroupRenameDetails._all_field_names_ = set([ + 'previous_value', + 'new_value', +]) GroupRenameDetails._all_fields_ = [ - ("previous_value", GroupRenameDetails.previous_value.validator), - ("new_value", GroupRenameDetails.new_value.validator), + ('previous_value', GroupRenameDetails.previous_value.validator), + ('new_value', GroupRenameDetails.new_value.validator), ] GroupRenameType.description.validator = bv.String() -GroupRenameType._all_field_names_ = set(["description"]) -GroupRenameType._all_fields_ = [("description", GroupRenameType.description.validator)] +GroupRenameType._all_field_names_ = set(['description']) +GroupRenameType._all_fields_ = [('description', GroupRenameType.description.validator)] GroupUserManagementChangePolicyDetails.new_value.validator = team_policies.GroupCreation_validator -GroupUserManagementChangePolicyDetails.previous_value.validator = bv.Nullable( - team_policies.GroupCreation_validator -) -GroupUserManagementChangePolicyDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +GroupUserManagementChangePolicyDetails.previous_value.validator = bv.Nullable(team_policies.GroupCreation_validator) +GroupUserManagementChangePolicyDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) GroupUserManagementChangePolicyDetails._all_fields_ = [ - ("new_value", GroupUserManagementChangePolicyDetails.new_value.validator), - ("previous_value", GroupUserManagementChangePolicyDetails.previous_value.validator), + ('new_value', GroupUserManagementChangePolicyDetails.new_value.validator), + ('previous_value', GroupUserManagementChangePolicyDetails.previous_value.validator), ] GroupUserManagementChangePolicyType.description.validator = bv.String() -GroupUserManagementChangePolicyType._all_field_names_ = set(["description"]) -GroupUserManagementChangePolicyType._all_fields_ = [ - ("description", GroupUserManagementChangePolicyType.description.validator) -] +GroupUserManagementChangePolicyType._all_field_names_ = set(['description']) +GroupUserManagementChangePolicyType._all_fields_ = [('description', GroupUserManagementChangePolicyType.description.validator)] GuestAdminChangeStatusDetails.is_guest.validator = bv.Boolean() GuestAdminChangeStatusDetails.guest_team_name.validator = bv.Nullable(bv.String()) @@ -108904,185 +102512,144 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): GuestAdminChangeStatusDetails.previous_value.validator = TrustedTeamsRequestState_validator GuestAdminChangeStatusDetails.new_value.validator = TrustedTeamsRequestState_validator GuestAdminChangeStatusDetails.action_details.validator = TrustedTeamsRequestAction_validator -GuestAdminChangeStatusDetails._all_field_names_ = set( - [ - "is_guest", - "guest_team_name", - "host_team_name", - "previous_value", - "new_value", - "action_details", - ] -) +GuestAdminChangeStatusDetails._all_field_names_ = set([ + 'is_guest', + 'guest_team_name', + 'host_team_name', + 'previous_value', + 'new_value', + 'action_details', +]) GuestAdminChangeStatusDetails._all_fields_ = [ - ("is_guest", GuestAdminChangeStatusDetails.is_guest.validator), - ("guest_team_name", GuestAdminChangeStatusDetails.guest_team_name.validator), - ("host_team_name", GuestAdminChangeStatusDetails.host_team_name.validator), - ("previous_value", GuestAdminChangeStatusDetails.previous_value.validator), - ("new_value", GuestAdminChangeStatusDetails.new_value.validator), - ("action_details", GuestAdminChangeStatusDetails.action_details.validator), + ('is_guest', GuestAdminChangeStatusDetails.is_guest.validator), + ('guest_team_name', GuestAdminChangeStatusDetails.guest_team_name.validator), + ('host_team_name', GuestAdminChangeStatusDetails.host_team_name.validator), + ('previous_value', GuestAdminChangeStatusDetails.previous_value.validator), + ('new_value', GuestAdminChangeStatusDetails.new_value.validator), + ('action_details', GuestAdminChangeStatusDetails.action_details.validator), ] GuestAdminChangeStatusType.description.validator = bv.String() -GuestAdminChangeStatusType._all_field_names_ = set(["description"]) -GuestAdminChangeStatusType._all_fields_ = [ - ("description", GuestAdminChangeStatusType.description.validator) -] +GuestAdminChangeStatusType._all_field_names_ = set(['description']) +GuestAdminChangeStatusType._all_fields_ = [('description', GuestAdminChangeStatusType.description.validator)] GuestAdminSignedInViaTrustedTeamsDetails.team_name.validator = bv.Nullable(bv.String()) GuestAdminSignedInViaTrustedTeamsDetails.trusted_team_name.validator = bv.Nullable(bv.String()) -GuestAdminSignedInViaTrustedTeamsDetails._all_field_names_ = set( - [ - "team_name", - "trusted_team_name", - ] -) +GuestAdminSignedInViaTrustedTeamsDetails._all_field_names_ = set([ + 'team_name', + 'trusted_team_name', +]) GuestAdminSignedInViaTrustedTeamsDetails._all_fields_ = [ - ("team_name", GuestAdminSignedInViaTrustedTeamsDetails.team_name.validator), - ( - "trusted_team_name", - GuestAdminSignedInViaTrustedTeamsDetails.trusted_team_name.validator, - ), + ('team_name', GuestAdminSignedInViaTrustedTeamsDetails.team_name.validator), + ('trusted_team_name', GuestAdminSignedInViaTrustedTeamsDetails.trusted_team_name.validator), ] GuestAdminSignedInViaTrustedTeamsType.description.validator = bv.String() -GuestAdminSignedInViaTrustedTeamsType._all_field_names_ = set(["description"]) -GuestAdminSignedInViaTrustedTeamsType._all_fields_ = [ - ("description", GuestAdminSignedInViaTrustedTeamsType.description.validator) -] +GuestAdminSignedInViaTrustedTeamsType._all_field_names_ = set(['description']) +GuestAdminSignedInViaTrustedTeamsType._all_fields_ = [('description', GuestAdminSignedInViaTrustedTeamsType.description.validator)] GuestAdminSignedOutViaTrustedTeamsDetails.team_name.validator = bv.Nullable(bv.String()) GuestAdminSignedOutViaTrustedTeamsDetails.trusted_team_name.validator = bv.Nullable(bv.String()) -GuestAdminSignedOutViaTrustedTeamsDetails._all_field_names_ = set( - [ - "team_name", - "trusted_team_name", - ] -) +GuestAdminSignedOutViaTrustedTeamsDetails._all_field_names_ = set([ + 'team_name', + 'trusted_team_name', +]) GuestAdminSignedOutViaTrustedTeamsDetails._all_fields_ = [ - ("team_name", GuestAdminSignedOutViaTrustedTeamsDetails.team_name.validator), - ( - "trusted_team_name", - GuestAdminSignedOutViaTrustedTeamsDetails.trusted_team_name.validator, - ), + ('team_name', GuestAdminSignedOutViaTrustedTeamsDetails.team_name.validator), + ('trusted_team_name', GuestAdminSignedOutViaTrustedTeamsDetails.trusted_team_name.validator), ] GuestAdminSignedOutViaTrustedTeamsType.description.validator = bv.String() -GuestAdminSignedOutViaTrustedTeamsType._all_field_names_ = set(["description"]) -GuestAdminSignedOutViaTrustedTeamsType._all_fields_ = [ - ("description", GuestAdminSignedOutViaTrustedTeamsType.description.validator) -] +GuestAdminSignedOutViaTrustedTeamsType._all_field_names_ = set(['description']) +GuestAdminSignedOutViaTrustedTeamsType._all_fields_ = [('description', GuestAdminSignedOutViaTrustedTeamsType.description.validator)] IdentifierType._email_validator = bv.Void() IdentifierType._facebook_profile_name_validator = bv.Void() IdentifierType._other_validator = bv.Void() IdentifierType._tagmap = { - "email": IdentifierType._email_validator, - "facebook_profile_name": IdentifierType._facebook_profile_name_validator, - "other": IdentifierType._other_validator, + 'email': IdentifierType._email_validator, + 'facebook_profile_name': IdentifierType._facebook_profile_name_validator, + 'other': IdentifierType._other_validator, } -IdentifierType.email = IdentifierType("email") -IdentifierType.facebook_profile_name = IdentifierType("facebook_profile_name") -IdentifierType.other = IdentifierType("other") +IdentifierType.email = IdentifierType('email') +IdentifierType.facebook_profile_name = IdentifierType('facebook_profile_name') +IdentifierType.other = IdentifierType('other') IntegrationConnectedDetails.integration_name.validator = bv.String() -IntegrationConnectedDetails._all_field_names_ = set(["integration_name"]) -IntegrationConnectedDetails._all_fields_ = [ - ("integration_name", IntegrationConnectedDetails.integration_name.validator) -] +IntegrationConnectedDetails._all_field_names_ = set(['integration_name']) +IntegrationConnectedDetails._all_fields_ = [('integration_name', IntegrationConnectedDetails.integration_name.validator)] IntegrationConnectedType.description.validator = bv.String() -IntegrationConnectedType._all_field_names_ = set(["description"]) -IntegrationConnectedType._all_fields_ = [ - ("description", IntegrationConnectedType.description.validator) -] +IntegrationConnectedType._all_field_names_ = set(['description']) +IntegrationConnectedType._all_fields_ = [('description', IntegrationConnectedType.description.validator)] IntegrationDisconnectedDetails.integration_name.validator = bv.String() -IntegrationDisconnectedDetails._all_field_names_ = set(["integration_name"]) -IntegrationDisconnectedDetails._all_fields_ = [ - ("integration_name", IntegrationDisconnectedDetails.integration_name.validator) -] +IntegrationDisconnectedDetails._all_field_names_ = set(['integration_name']) +IntegrationDisconnectedDetails._all_fields_ = [('integration_name', IntegrationDisconnectedDetails.integration_name.validator)] IntegrationDisconnectedType.description.validator = bv.String() -IntegrationDisconnectedType._all_field_names_ = set(["description"]) -IntegrationDisconnectedType._all_fields_ = [ - ("description", IntegrationDisconnectedType.description.validator) -] +IntegrationDisconnectedType._all_field_names_ = set(['description']) +IntegrationDisconnectedType._all_fields_ = [('description', IntegrationDisconnectedType.description.validator)] IntegrationPolicy._disabled_validator = bv.Void() IntegrationPolicy._enabled_validator = bv.Void() IntegrationPolicy._other_validator = bv.Void() IntegrationPolicy._tagmap = { - "disabled": IntegrationPolicy._disabled_validator, - "enabled": IntegrationPolicy._enabled_validator, - "other": IntegrationPolicy._other_validator, + 'disabled': IntegrationPolicy._disabled_validator, + 'enabled': IntegrationPolicy._enabled_validator, + 'other': IntegrationPolicy._other_validator, } -IntegrationPolicy.disabled = IntegrationPolicy("disabled") -IntegrationPolicy.enabled = IntegrationPolicy("enabled") -IntegrationPolicy.other = IntegrationPolicy("other") +IntegrationPolicy.disabled = IntegrationPolicy('disabled') +IntegrationPolicy.enabled = IntegrationPolicy('enabled') +IntegrationPolicy.other = IntegrationPolicy('other') IntegrationPolicyChangedDetails.integration_name.validator = bv.String() IntegrationPolicyChangedDetails.new_value.validator = IntegrationPolicy_validator IntegrationPolicyChangedDetails.previous_value.validator = IntegrationPolicy_validator -IntegrationPolicyChangedDetails._all_field_names_ = set( - [ - "integration_name", - "new_value", - "previous_value", - ] -) +IntegrationPolicyChangedDetails._all_field_names_ = set([ + 'integration_name', + 'new_value', + 'previous_value', +]) IntegrationPolicyChangedDetails._all_fields_ = [ - ("integration_name", IntegrationPolicyChangedDetails.integration_name.validator), - ("new_value", IntegrationPolicyChangedDetails.new_value.validator), - ("previous_value", IntegrationPolicyChangedDetails.previous_value.validator), + ('integration_name', IntegrationPolicyChangedDetails.integration_name.validator), + ('new_value', IntegrationPolicyChangedDetails.new_value.validator), + ('previous_value', IntegrationPolicyChangedDetails.previous_value.validator), ] IntegrationPolicyChangedType.description.validator = bv.String() -IntegrationPolicyChangedType._all_field_names_ = set(["description"]) -IntegrationPolicyChangedType._all_fields_ = [ - ("description", IntegrationPolicyChangedType.description.validator) -] +IntegrationPolicyChangedType._all_field_names_ = set(['description']) +IntegrationPolicyChangedType._all_fields_ = [('description', IntegrationPolicyChangedType.description.validator)] InviteAcceptanceEmailPolicy._disabled_validator = bv.Void() InviteAcceptanceEmailPolicy._enabled_validator = bv.Void() InviteAcceptanceEmailPolicy._other_validator = bv.Void() InviteAcceptanceEmailPolicy._tagmap = { - "disabled": InviteAcceptanceEmailPolicy._disabled_validator, - "enabled": InviteAcceptanceEmailPolicy._enabled_validator, - "other": InviteAcceptanceEmailPolicy._other_validator, + 'disabled': InviteAcceptanceEmailPolicy._disabled_validator, + 'enabled': InviteAcceptanceEmailPolicy._enabled_validator, + 'other': InviteAcceptanceEmailPolicy._other_validator, } -InviteAcceptanceEmailPolicy.disabled = InviteAcceptanceEmailPolicy("disabled") -InviteAcceptanceEmailPolicy.enabled = InviteAcceptanceEmailPolicy("enabled") -InviteAcceptanceEmailPolicy.other = InviteAcceptanceEmailPolicy("other") +InviteAcceptanceEmailPolicy.disabled = InviteAcceptanceEmailPolicy('disabled') +InviteAcceptanceEmailPolicy.enabled = InviteAcceptanceEmailPolicy('enabled') +InviteAcceptanceEmailPolicy.other = InviteAcceptanceEmailPolicy('other') -InviteAcceptanceEmailPolicyChangedDetails.new_value.validator = ( - InviteAcceptanceEmailPolicy_validator -) -InviteAcceptanceEmailPolicyChangedDetails.previous_value.validator = ( - InviteAcceptanceEmailPolicy_validator -) -InviteAcceptanceEmailPolicyChangedDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +InviteAcceptanceEmailPolicyChangedDetails.new_value.validator = InviteAcceptanceEmailPolicy_validator +InviteAcceptanceEmailPolicyChangedDetails.previous_value.validator = InviteAcceptanceEmailPolicy_validator +InviteAcceptanceEmailPolicyChangedDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) InviteAcceptanceEmailPolicyChangedDetails._all_fields_ = [ - ("new_value", InviteAcceptanceEmailPolicyChangedDetails.new_value.validator), - ( - "previous_value", - InviteAcceptanceEmailPolicyChangedDetails.previous_value.validator, - ), + ('new_value', InviteAcceptanceEmailPolicyChangedDetails.new_value.validator), + ('previous_value', InviteAcceptanceEmailPolicyChangedDetails.previous_value.validator), ] InviteAcceptanceEmailPolicyChangedType.description.validator = bv.String() -InviteAcceptanceEmailPolicyChangedType._all_field_names_ = set(["description"]) -InviteAcceptanceEmailPolicyChangedType._all_fields_ = [ - ("description", InviteAcceptanceEmailPolicyChangedType.description.validator) -] +InviteAcceptanceEmailPolicyChangedType._all_field_names_ = set(['description']) +InviteAcceptanceEmailPolicyChangedType._all_fields_ = [('description', InviteAcceptanceEmailPolicyChangedType.description.validator)] InviteMethod._auto_approve_validator = bv.Void() InviteMethod._invite_link_validator = bv.Void() @@ -109090,18 +102657,18 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): InviteMethod._moved_from_another_team_validator = bv.Void() InviteMethod._other_validator = bv.Void() InviteMethod._tagmap = { - "auto_approve": InviteMethod._auto_approve_validator, - "invite_link": InviteMethod._invite_link_validator, - "member_invite": InviteMethod._member_invite_validator, - "moved_from_another_team": InviteMethod._moved_from_another_team_validator, - "other": InviteMethod._other_validator, + 'auto_approve': InviteMethod._auto_approve_validator, + 'invite_link': InviteMethod._invite_link_validator, + 'member_invite': InviteMethod._member_invite_validator, + 'moved_from_another_team': InviteMethod._moved_from_another_team_validator, + 'other': InviteMethod._other_validator, } -InviteMethod.auto_approve = InviteMethod("auto_approve") -InviteMethod.invite_link = InviteMethod("invite_link") -InviteMethod.member_invite = InviteMethod("member_invite") -InviteMethod.moved_from_another_team = InviteMethod("moved_from_another_team") -InviteMethod.other = InviteMethod("other") +InviteMethod.auto_approve = InviteMethod('auto_approve') +InviteMethod.invite_link = InviteMethod('invite_link') +InviteMethod.member_invite = InviteMethod('member_invite') +InviteMethod.moved_from_another_team = InviteMethod('moved_from_another_team') +InviteMethod.other = InviteMethod('other') JoinTeamDetails.linked_apps.validator = bv.List(UserLinkedAppLogInfo_validator) JoinTeamDetails.linked_devices.validator = bv.List(LinkedDeviceLogInfo_validator) @@ -109112,35 +102679,27 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): JoinTeamDetails.has_linked_apps.validator = bv.Nullable(bv.Boolean()) JoinTeamDetails.has_linked_devices.validator = bv.Nullable(bv.Boolean()) JoinTeamDetails.has_linked_shared_folders.validator = bv.Nullable(bv.Boolean()) -JoinTeamDetails._all_field_names_ = set( - [ - "linked_apps", - "linked_devices", - "linked_shared_folders", - "was_linked_apps_truncated", - "was_linked_devices_truncated", - "was_linked_shared_folders_truncated", - "has_linked_apps", - "has_linked_devices", - "has_linked_shared_folders", - ] -) +JoinTeamDetails._all_field_names_ = set([ + 'linked_apps', + 'linked_devices', + 'linked_shared_folders', + 'was_linked_apps_truncated', + 'was_linked_devices_truncated', + 'was_linked_shared_folders_truncated', + 'has_linked_apps', + 'has_linked_devices', + 'has_linked_shared_folders', +]) JoinTeamDetails._all_fields_ = [ - ("linked_apps", JoinTeamDetails.linked_apps.validator), - ("linked_devices", JoinTeamDetails.linked_devices.validator), - ("linked_shared_folders", JoinTeamDetails.linked_shared_folders.validator), - ("was_linked_apps_truncated", JoinTeamDetails.was_linked_apps_truncated.validator), - ( - "was_linked_devices_truncated", - JoinTeamDetails.was_linked_devices_truncated.validator, - ), - ( - "was_linked_shared_folders_truncated", - JoinTeamDetails.was_linked_shared_folders_truncated.validator, - ), - ("has_linked_apps", JoinTeamDetails.has_linked_apps.validator), - ("has_linked_devices", JoinTeamDetails.has_linked_devices.validator), - ("has_linked_shared_folders", JoinTeamDetails.has_linked_shared_folders.validator), + ('linked_apps', JoinTeamDetails.linked_apps.validator), + ('linked_devices', JoinTeamDetails.linked_devices.validator), + ('linked_shared_folders', JoinTeamDetails.linked_shared_folders.validator), + ('was_linked_apps_truncated', JoinTeamDetails.was_linked_apps_truncated.validator), + ('was_linked_devices_truncated', JoinTeamDetails.was_linked_devices_truncated.validator), + ('was_linked_shared_folders_truncated', JoinTeamDetails.was_linked_shared_folders_truncated.validator), + ('has_linked_apps', JoinTeamDetails.has_linked_apps.validator), + ('has_linked_devices', JoinTeamDetails.has_linked_devices.validator), + ('has_linked_shared_folders', JoinTeamDetails.has_linked_shared_folders.validator), ] LabelType._personal_information_validator = bv.Void() @@ -109148,16 +102707,16 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): LabelType._user_defined_tag_validator = bv.Void() LabelType._other_validator = bv.Void() LabelType._tagmap = { - "personal_information": LabelType._personal_information_validator, - "test_only": LabelType._test_only_validator, - "user_defined_tag": LabelType._user_defined_tag_validator, - "other": LabelType._other_validator, + 'personal_information': LabelType._personal_information_validator, + 'test_only': LabelType._test_only_validator, + 'user_defined_tag': LabelType._user_defined_tag_validator, + 'other': LabelType._other_validator, } -LabelType.personal_information = LabelType("personal_information") -LabelType.test_only = LabelType("test_only") -LabelType.user_defined_tag = LabelType("user_defined_tag") -LabelType.other = LabelType("other") +LabelType.personal_information = LabelType('personal_information') +LabelType.test_only = LabelType('test_only') +LabelType.user_defined_tag = LabelType('user_defined_tag') +LabelType.other = LabelType('other') LegacyDeviceSessionLogInfo.session_info.validator = bv.Nullable(SessionLogInfo_validator) LegacyDeviceSessionLogInfo.display_name.validator = bv.Nullable(bv.String()) @@ -109168,278 +102727,228 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): LegacyDeviceSessionLogInfo.device_type.validator = bv.Nullable(bv.String()) LegacyDeviceSessionLogInfo.client_version.validator = bv.Nullable(bv.String()) LegacyDeviceSessionLogInfo.legacy_uniq_id.validator = bv.Nullable(bv.String()) -LegacyDeviceSessionLogInfo._field_names_ = set( - [ - "session_info", - "display_name", - "is_emm_managed", - "platform", - "mac_address", - "os_version", - "device_type", - "client_version", - "legacy_uniq_id", - ] -) -LegacyDeviceSessionLogInfo._all_field_names_ = DeviceSessionLogInfo._all_field_names_.union( - LegacyDeviceSessionLogInfo._field_names_ -) +LegacyDeviceSessionLogInfo._field_names_ = set([ + 'session_info', + 'display_name', + 'is_emm_managed', + 'platform', + 'mac_address', + 'os_version', + 'device_type', + 'client_version', + 'legacy_uniq_id', +]) +LegacyDeviceSessionLogInfo._all_field_names_ = DeviceSessionLogInfo._all_field_names_.union(LegacyDeviceSessionLogInfo._field_names_) LegacyDeviceSessionLogInfo._fields_ = [ - ("session_info", LegacyDeviceSessionLogInfo.session_info.validator), - ("display_name", LegacyDeviceSessionLogInfo.display_name.validator), - ("is_emm_managed", LegacyDeviceSessionLogInfo.is_emm_managed.validator), - ("platform", LegacyDeviceSessionLogInfo.platform.validator), - ("mac_address", LegacyDeviceSessionLogInfo.mac_address.validator), - ("os_version", LegacyDeviceSessionLogInfo.os_version.validator), - ("device_type", LegacyDeviceSessionLogInfo.device_type.validator), - ("client_version", LegacyDeviceSessionLogInfo.client_version.validator), - ("legacy_uniq_id", LegacyDeviceSessionLogInfo.legacy_uniq_id.validator), -] -LegacyDeviceSessionLogInfo._all_fields_ = ( - DeviceSessionLogInfo._all_fields_ + LegacyDeviceSessionLogInfo._fields_ -) + ('session_info', LegacyDeviceSessionLogInfo.session_info.validator), + ('display_name', LegacyDeviceSessionLogInfo.display_name.validator), + ('is_emm_managed', LegacyDeviceSessionLogInfo.is_emm_managed.validator), + ('platform', LegacyDeviceSessionLogInfo.platform.validator), + ('mac_address', LegacyDeviceSessionLogInfo.mac_address.validator), + ('os_version', LegacyDeviceSessionLogInfo.os_version.validator), + ('device_type', LegacyDeviceSessionLogInfo.device_type.validator), + ('client_version', LegacyDeviceSessionLogInfo.client_version.validator), + ('legacy_uniq_id', LegacyDeviceSessionLogInfo.legacy_uniq_id.validator), +] +LegacyDeviceSessionLogInfo._all_fields_ = DeviceSessionLogInfo._all_fields_ + LegacyDeviceSessionLogInfo._fields_ LegalHoldsActivateAHoldDetails.legal_hold_id.validator = bv.String() LegalHoldsActivateAHoldDetails.name.validator = bv.String() LegalHoldsActivateAHoldDetails.start_date.validator = common.DropboxTimestamp_validator LegalHoldsActivateAHoldDetails.end_date.validator = bv.Nullable(common.DropboxTimestamp_validator) -LegalHoldsActivateAHoldDetails._all_field_names_ = set( - [ - "legal_hold_id", - "name", - "start_date", - "end_date", - ] -) +LegalHoldsActivateAHoldDetails._all_field_names_ = set([ + 'legal_hold_id', + 'name', + 'start_date', + 'end_date', +]) LegalHoldsActivateAHoldDetails._all_fields_ = [ - ("legal_hold_id", LegalHoldsActivateAHoldDetails.legal_hold_id.validator), - ("name", LegalHoldsActivateAHoldDetails.name.validator), - ("start_date", LegalHoldsActivateAHoldDetails.start_date.validator), - ("end_date", LegalHoldsActivateAHoldDetails.end_date.validator), + ('legal_hold_id', LegalHoldsActivateAHoldDetails.legal_hold_id.validator), + ('name', LegalHoldsActivateAHoldDetails.name.validator), + ('start_date', LegalHoldsActivateAHoldDetails.start_date.validator), + ('end_date', LegalHoldsActivateAHoldDetails.end_date.validator), ] LegalHoldsActivateAHoldType.description.validator = bv.String() -LegalHoldsActivateAHoldType._all_field_names_ = set(["description"]) -LegalHoldsActivateAHoldType._all_fields_ = [ - ("description", LegalHoldsActivateAHoldType.description.validator) -] +LegalHoldsActivateAHoldType._all_field_names_ = set(['description']) +LegalHoldsActivateAHoldType._all_fields_ = [('description', LegalHoldsActivateAHoldType.description.validator)] LegalHoldsAddMembersDetails.legal_hold_id.validator = bv.String() LegalHoldsAddMembersDetails.name.validator = bv.String() -LegalHoldsAddMembersDetails._all_field_names_ = set( - [ - "legal_hold_id", - "name", - ] -) +LegalHoldsAddMembersDetails._all_field_names_ = set([ + 'legal_hold_id', + 'name', +]) LegalHoldsAddMembersDetails._all_fields_ = [ - ("legal_hold_id", LegalHoldsAddMembersDetails.legal_hold_id.validator), - ("name", LegalHoldsAddMembersDetails.name.validator), + ('legal_hold_id', LegalHoldsAddMembersDetails.legal_hold_id.validator), + ('name', LegalHoldsAddMembersDetails.name.validator), ] LegalHoldsAddMembersType.description.validator = bv.String() -LegalHoldsAddMembersType._all_field_names_ = set(["description"]) -LegalHoldsAddMembersType._all_fields_ = [ - ("description", LegalHoldsAddMembersType.description.validator) -] +LegalHoldsAddMembersType._all_field_names_ = set(['description']) +LegalHoldsAddMembersType._all_fields_ = [('description', LegalHoldsAddMembersType.description.validator)] LegalHoldsChangeHoldDetailsDetails.legal_hold_id.validator = bv.String() LegalHoldsChangeHoldDetailsDetails.name.validator = bv.String() LegalHoldsChangeHoldDetailsDetails.previous_value.validator = bv.String() LegalHoldsChangeHoldDetailsDetails.new_value.validator = bv.String() -LegalHoldsChangeHoldDetailsDetails._all_field_names_ = set( - [ - "legal_hold_id", - "name", - "previous_value", - "new_value", - ] -) +LegalHoldsChangeHoldDetailsDetails._all_field_names_ = set([ + 'legal_hold_id', + 'name', + 'previous_value', + 'new_value', +]) LegalHoldsChangeHoldDetailsDetails._all_fields_ = [ - ("legal_hold_id", LegalHoldsChangeHoldDetailsDetails.legal_hold_id.validator), - ("name", LegalHoldsChangeHoldDetailsDetails.name.validator), - ("previous_value", LegalHoldsChangeHoldDetailsDetails.previous_value.validator), - ("new_value", LegalHoldsChangeHoldDetailsDetails.new_value.validator), + ('legal_hold_id', LegalHoldsChangeHoldDetailsDetails.legal_hold_id.validator), + ('name', LegalHoldsChangeHoldDetailsDetails.name.validator), + ('previous_value', LegalHoldsChangeHoldDetailsDetails.previous_value.validator), + ('new_value', LegalHoldsChangeHoldDetailsDetails.new_value.validator), ] LegalHoldsChangeHoldDetailsType.description.validator = bv.String() -LegalHoldsChangeHoldDetailsType._all_field_names_ = set(["description"]) -LegalHoldsChangeHoldDetailsType._all_fields_ = [ - ("description", LegalHoldsChangeHoldDetailsType.description.validator) -] +LegalHoldsChangeHoldDetailsType._all_field_names_ = set(['description']) +LegalHoldsChangeHoldDetailsType._all_fields_ = [('description', LegalHoldsChangeHoldDetailsType.description.validator)] LegalHoldsChangeHoldNameDetails.legal_hold_id.validator = bv.String() LegalHoldsChangeHoldNameDetails.previous_value.validator = bv.String() LegalHoldsChangeHoldNameDetails.new_value.validator = bv.String() -LegalHoldsChangeHoldNameDetails._all_field_names_ = set( - [ - "legal_hold_id", - "previous_value", - "new_value", - ] -) +LegalHoldsChangeHoldNameDetails._all_field_names_ = set([ + 'legal_hold_id', + 'previous_value', + 'new_value', +]) LegalHoldsChangeHoldNameDetails._all_fields_ = [ - ("legal_hold_id", LegalHoldsChangeHoldNameDetails.legal_hold_id.validator), - ("previous_value", LegalHoldsChangeHoldNameDetails.previous_value.validator), - ("new_value", LegalHoldsChangeHoldNameDetails.new_value.validator), + ('legal_hold_id', LegalHoldsChangeHoldNameDetails.legal_hold_id.validator), + ('previous_value', LegalHoldsChangeHoldNameDetails.previous_value.validator), + ('new_value', LegalHoldsChangeHoldNameDetails.new_value.validator), ] LegalHoldsChangeHoldNameType.description.validator = bv.String() -LegalHoldsChangeHoldNameType._all_field_names_ = set(["description"]) -LegalHoldsChangeHoldNameType._all_fields_ = [ - ("description", LegalHoldsChangeHoldNameType.description.validator) -] +LegalHoldsChangeHoldNameType._all_field_names_ = set(['description']) +LegalHoldsChangeHoldNameType._all_fields_ = [('description', LegalHoldsChangeHoldNameType.description.validator)] LegalHoldsExportAHoldDetails.legal_hold_id.validator = bv.String() LegalHoldsExportAHoldDetails.name.validator = bv.String() LegalHoldsExportAHoldDetails.export_name.validator = bv.Nullable(bv.String()) -LegalHoldsExportAHoldDetails._all_field_names_ = set( - [ - "legal_hold_id", - "name", - "export_name", - ] -) +LegalHoldsExportAHoldDetails._all_field_names_ = set([ + 'legal_hold_id', + 'name', + 'export_name', +]) LegalHoldsExportAHoldDetails._all_fields_ = [ - ("legal_hold_id", LegalHoldsExportAHoldDetails.legal_hold_id.validator), - ("name", LegalHoldsExportAHoldDetails.name.validator), - ("export_name", LegalHoldsExportAHoldDetails.export_name.validator), + ('legal_hold_id', LegalHoldsExportAHoldDetails.legal_hold_id.validator), + ('name', LegalHoldsExportAHoldDetails.name.validator), + ('export_name', LegalHoldsExportAHoldDetails.export_name.validator), ] LegalHoldsExportAHoldType.description.validator = bv.String() -LegalHoldsExportAHoldType._all_field_names_ = set(["description"]) -LegalHoldsExportAHoldType._all_fields_ = [ - ("description", LegalHoldsExportAHoldType.description.validator) -] +LegalHoldsExportAHoldType._all_field_names_ = set(['description']) +LegalHoldsExportAHoldType._all_fields_ = [('description', LegalHoldsExportAHoldType.description.validator)] LegalHoldsExportCancelledDetails.legal_hold_id.validator = bv.String() LegalHoldsExportCancelledDetails.name.validator = bv.String() LegalHoldsExportCancelledDetails.export_name.validator = bv.String() -LegalHoldsExportCancelledDetails._all_field_names_ = set( - [ - "legal_hold_id", - "name", - "export_name", - ] -) +LegalHoldsExportCancelledDetails._all_field_names_ = set([ + 'legal_hold_id', + 'name', + 'export_name', +]) LegalHoldsExportCancelledDetails._all_fields_ = [ - ("legal_hold_id", LegalHoldsExportCancelledDetails.legal_hold_id.validator), - ("name", LegalHoldsExportCancelledDetails.name.validator), - ("export_name", LegalHoldsExportCancelledDetails.export_name.validator), + ('legal_hold_id', LegalHoldsExportCancelledDetails.legal_hold_id.validator), + ('name', LegalHoldsExportCancelledDetails.name.validator), + ('export_name', LegalHoldsExportCancelledDetails.export_name.validator), ] LegalHoldsExportCancelledType.description.validator = bv.String() -LegalHoldsExportCancelledType._all_field_names_ = set(["description"]) -LegalHoldsExportCancelledType._all_fields_ = [ - ("description", LegalHoldsExportCancelledType.description.validator) -] +LegalHoldsExportCancelledType._all_field_names_ = set(['description']) +LegalHoldsExportCancelledType._all_fields_ = [('description', LegalHoldsExportCancelledType.description.validator)] LegalHoldsExportDownloadedDetails.legal_hold_id.validator = bv.String() LegalHoldsExportDownloadedDetails.name.validator = bv.String() LegalHoldsExportDownloadedDetails.export_name.validator = bv.String() LegalHoldsExportDownloadedDetails.part.validator = bv.Nullable(bv.String()) LegalHoldsExportDownloadedDetails.file_name.validator = bv.Nullable(bv.String()) -LegalHoldsExportDownloadedDetails._all_field_names_ = set( - [ - "legal_hold_id", - "name", - "export_name", - "part", - "file_name", - ] -) +LegalHoldsExportDownloadedDetails._all_field_names_ = set([ + 'legal_hold_id', + 'name', + 'export_name', + 'part', + 'file_name', +]) LegalHoldsExportDownloadedDetails._all_fields_ = [ - ("legal_hold_id", LegalHoldsExportDownloadedDetails.legal_hold_id.validator), - ("name", LegalHoldsExportDownloadedDetails.name.validator), - ("export_name", LegalHoldsExportDownloadedDetails.export_name.validator), - ("part", LegalHoldsExportDownloadedDetails.part.validator), - ("file_name", LegalHoldsExportDownloadedDetails.file_name.validator), + ('legal_hold_id', LegalHoldsExportDownloadedDetails.legal_hold_id.validator), + ('name', LegalHoldsExportDownloadedDetails.name.validator), + ('export_name', LegalHoldsExportDownloadedDetails.export_name.validator), + ('part', LegalHoldsExportDownloadedDetails.part.validator), + ('file_name', LegalHoldsExportDownloadedDetails.file_name.validator), ] LegalHoldsExportDownloadedType.description.validator = bv.String() -LegalHoldsExportDownloadedType._all_field_names_ = set(["description"]) -LegalHoldsExportDownloadedType._all_fields_ = [ - ("description", LegalHoldsExportDownloadedType.description.validator) -] +LegalHoldsExportDownloadedType._all_field_names_ = set(['description']) +LegalHoldsExportDownloadedType._all_fields_ = [('description', LegalHoldsExportDownloadedType.description.validator)] LegalHoldsExportRemovedDetails.legal_hold_id.validator = bv.String() LegalHoldsExportRemovedDetails.name.validator = bv.String() LegalHoldsExportRemovedDetails.export_name.validator = bv.String() -LegalHoldsExportRemovedDetails._all_field_names_ = set( - [ - "legal_hold_id", - "name", - "export_name", - ] -) +LegalHoldsExportRemovedDetails._all_field_names_ = set([ + 'legal_hold_id', + 'name', + 'export_name', +]) LegalHoldsExportRemovedDetails._all_fields_ = [ - ("legal_hold_id", LegalHoldsExportRemovedDetails.legal_hold_id.validator), - ("name", LegalHoldsExportRemovedDetails.name.validator), - ("export_name", LegalHoldsExportRemovedDetails.export_name.validator), + ('legal_hold_id', LegalHoldsExportRemovedDetails.legal_hold_id.validator), + ('name', LegalHoldsExportRemovedDetails.name.validator), + ('export_name', LegalHoldsExportRemovedDetails.export_name.validator), ] LegalHoldsExportRemovedType.description.validator = bv.String() -LegalHoldsExportRemovedType._all_field_names_ = set(["description"]) -LegalHoldsExportRemovedType._all_fields_ = [ - ("description", LegalHoldsExportRemovedType.description.validator) -] +LegalHoldsExportRemovedType._all_field_names_ = set(['description']) +LegalHoldsExportRemovedType._all_fields_ = [('description', LegalHoldsExportRemovedType.description.validator)] LegalHoldsReleaseAHoldDetails.legal_hold_id.validator = bv.String() LegalHoldsReleaseAHoldDetails.name.validator = bv.String() -LegalHoldsReleaseAHoldDetails._all_field_names_ = set( - [ - "legal_hold_id", - "name", - ] -) +LegalHoldsReleaseAHoldDetails._all_field_names_ = set([ + 'legal_hold_id', + 'name', +]) LegalHoldsReleaseAHoldDetails._all_fields_ = [ - ("legal_hold_id", LegalHoldsReleaseAHoldDetails.legal_hold_id.validator), - ("name", LegalHoldsReleaseAHoldDetails.name.validator), + ('legal_hold_id', LegalHoldsReleaseAHoldDetails.legal_hold_id.validator), + ('name', LegalHoldsReleaseAHoldDetails.name.validator), ] LegalHoldsReleaseAHoldType.description.validator = bv.String() -LegalHoldsReleaseAHoldType._all_field_names_ = set(["description"]) -LegalHoldsReleaseAHoldType._all_fields_ = [ - ("description", LegalHoldsReleaseAHoldType.description.validator) -] +LegalHoldsReleaseAHoldType._all_field_names_ = set(['description']) +LegalHoldsReleaseAHoldType._all_fields_ = [('description', LegalHoldsReleaseAHoldType.description.validator)] LegalHoldsRemoveMembersDetails.legal_hold_id.validator = bv.String() LegalHoldsRemoveMembersDetails.name.validator = bv.String() -LegalHoldsRemoveMembersDetails._all_field_names_ = set( - [ - "legal_hold_id", - "name", - ] -) +LegalHoldsRemoveMembersDetails._all_field_names_ = set([ + 'legal_hold_id', + 'name', +]) LegalHoldsRemoveMembersDetails._all_fields_ = [ - ("legal_hold_id", LegalHoldsRemoveMembersDetails.legal_hold_id.validator), - ("name", LegalHoldsRemoveMembersDetails.name.validator), + ('legal_hold_id', LegalHoldsRemoveMembersDetails.legal_hold_id.validator), + ('name', LegalHoldsRemoveMembersDetails.name.validator), ] LegalHoldsRemoveMembersType.description.validator = bv.String() -LegalHoldsRemoveMembersType._all_field_names_ = set(["description"]) -LegalHoldsRemoveMembersType._all_fields_ = [ - ("description", LegalHoldsRemoveMembersType.description.validator) -] +LegalHoldsRemoveMembersType._all_field_names_ = set(['description']) +LegalHoldsRemoveMembersType._all_fields_ = [('description', LegalHoldsRemoveMembersType.description.validator)] LegalHoldsReportAHoldDetails.legal_hold_id.validator = bv.String() LegalHoldsReportAHoldDetails.name.validator = bv.String() -LegalHoldsReportAHoldDetails._all_field_names_ = set( - [ - "legal_hold_id", - "name", - ] -) +LegalHoldsReportAHoldDetails._all_field_names_ = set([ + 'legal_hold_id', + 'name', +]) LegalHoldsReportAHoldDetails._all_fields_ = [ - ("legal_hold_id", LegalHoldsReportAHoldDetails.legal_hold_id.validator), - ("name", LegalHoldsReportAHoldDetails.name.validator), + ('legal_hold_id', LegalHoldsReportAHoldDetails.legal_hold_id.validator), + ('name', LegalHoldsReportAHoldDetails.name.validator), ] LegalHoldsReportAHoldType.description.validator = bv.String() -LegalHoldsReportAHoldType._all_field_names_ = set(["description"]) -LegalHoldsReportAHoldType._all_fields_ = [ - ("description", LegalHoldsReportAHoldType.description.validator) -] +LegalHoldsReportAHoldType._all_field_names_ = set(['description']) +LegalHoldsReportAHoldType._all_fields_ = [('description', LegalHoldsReportAHoldType.description.validator)] LinkSettingsLogInfo.name.validator = bv.String() LinkSettingsLogInfo.require_email.validator = bv.Boolean() @@ -109447,23 +102956,21 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): LinkSettingsLogInfo.expire_at.validator = bv.Nullable(common.DropboxTimestamp_validator) LinkSettingsLogInfo.password_required.validator = bv.Boolean() LinkSettingsLogInfo.url.validator = bv.String() -LinkSettingsLogInfo._all_field_names_ = set( - [ - "name", - "require_email", - "downloadable", - "expire_at", - "password_required", - "url", - ] -) +LinkSettingsLogInfo._all_field_names_ = set([ + 'name', + 'require_email', + 'downloadable', + 'expire_at', + 'password_required', + 'url', +]) LinkSettingsLogInfo._all_fields_ = [ - ("name", LinkSettingsLogInfo.name.validator), - ("require_email", LinkSettingsLogInfo.require_email.validator), - ("downloadable", LinkSettingsLogInfo.downloadable.validator), - ("expire_at", LinkSettingsLogInfo.expire_at.validator), - ("password_required", LinkSettingsLogInfo.password_required.validator), - ("url", LinkSettingsLogInfo.url.validator), + ('name', LinkSettingsLogInfo.name.validator), + ('require_email', LinkSettingsLogInfo.require_email.validator), + ('downloadable', LinkSettingsLogInfo.downloadable.validator), + ('expire_at', LinkSettingsLogInfo.expire_at.validator), + ('password_required', LinkSettingsLogInfo.password_required.validator), + ('url', LinkSettingsLogInfo.url.validator), ] LinkedDeviceLogInfo._desktop_device_session_validator = DesktopDeviceSessionLogInfo_validator @@ -109472,47 +102979,45 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): LinkedDeviceLogInfo._web_device_session_validator = WebDeviceSessionLogInfo_validator LinkedDeviceLogInfo._other_validator = bv.Void() LinkedDeviceLogInfo._tagmap = { - "desktop_device_session": LinkedDeviceLogInfo._desktop_device_session_validator, - "legacy_device_session": LinkedDeviceLogInfo._legacy_device_session_validator, - "mobile_device_session": LinkedDeviceLogInfo._mobile_device_session_validator, - "web_device_session": LinkedDeviceLogInfo._web_device_session_validator, - "other": LinkedDeviceLogInfo._other_validator, + 'desktop_device_session': LinkedDeviceLogInfo._desktop_device_session_validator, + 'legacy_device_session': LinkedDeviceLogInfo._legacy_device_session_validator, + 'mobile_device_session': LinkedDeviceLogInfo._mobile_device_session_validator, + 'web_device_session': LinkedDeviceLogInfo._web_device_session_validator, + 'other': LinkedDeviceLogInfo._other_validator, } -LinkedDeviceLogInfo.other = LinkedDeviceLogInfo("other") +LinkedDeviceLogInfo.other = LinkedDeviceLogInfo('other') LockStatus._locked_validator = bv.Void() LockStatus._unlocked_validator = bv.Void() LockStatus._other_validator = bv.Void() LockStatus._tagmap = { - "locked": LockStatus._locked_validator, - "unlocked": LockStatus._unlocked_validator, - "other": LockStatus._other_validator, + 'locked': LockStatus._locked_validator, + 'unlocked': LockStatus._unlocked_validator, + 'other': LockStatus._other_validator, } -LockStatus.locked = LockStatus("locked") -LockStatus.unlocked = LockStatus("unlocked") -LockStatus.other = LockStatus("other") +LockStatus.locked = LockStatus('locked') +LockStatus.unlocked = LockStatus('unlocked') +LockStatus.other = LockStatus('other') LoginFailDetails.is_emm_managed.validator = bv.Nullable(bv.Boolean()) LoginFailDetails.login_method.validator = LoginMethod_validator LoginFailDetails.error_details.validator = FailureDetailsLogInfo_validator -LoginFailDetails._all_field_names_ = set( - [ - "is_emm_managed", - "login_method", - "error_details", - ] -) +LoginFailDetails._all_field_names_ = set([ + 'is_emm_managed', + 'login_method', + 'error_details', +]) LoginFailDetails._all_fields_ = [ - ("is_emm_managed", LoginFailDetails.is_emm_managed.validator), - ("login_method", LoginFailDetails.login_method.validator), - ("error_details", LoginFailDetails.error_details.validator), + ('is_emm_managed', LoginFailDetails.is_emm_managed.validator), + ('login_method', LoginFailDetails.login_method.validator), + ('error_details', LoginFailDetails.error_details.validator), ] LoginFailType.description.validator = bv.String() -LoginFailType._all_field_names_ = set(["description"]) -LoginFailType._all_fields_ = [("description", LoginFailType.description.validator)] +LoginFailType._all_field_names_ = set(['description']) +LoginFailType._all_fields_ = [('description', LoginFailType.description.validator)] LoginMethod._apple_oauth_validator = bv.Void() LoginMethod._first_party_token_exchange_validator = bv.Void() @@ -109528,602 +103033,477 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): LoginMethod._microsoft_oauth_validator = bv.Void() LoginMethod._other_validator = bv.Void() LoginMethod._tagmap = { - "apple_oauth": LoginMethod._apple_oauth_validator, - "first_party_token_exchange": LoginMethod._first_party_token_exchange_validator, - "google_oauth": LoginMethod._google_oauth_validator, - "kakao_oauth": LoginMethod._kakao_oauth_validator, - "lenovo_oauth": LoginMethod._lenovo_oauth_validator, - "passkey": LoginMethod._passkey_validator, - "password": LoginMethod._password_validator, - "qr_code": LoginMethod._qr_code_validator, - "saml": LoginMethod._saml_validator, - "two_factor_authentication": LoginMethod._two_factor_authentication_validator, - "web_session": LoginMethod._web_session_validator, - "microsoft_oauth": LoginMethod._microsoft_oauth_validator, - "other": LoginMethod._other_validator, + 'apple_oauth': LoginMethod._apple_oauth_validator, + 'first_party_token_exchange': LoginMethod._first_party_token_exchange_validator, + 'google_oauth': LoginMethod._google_oauth_validator, + 'kakao_oauth': LoginMethod._kakao_oauth_validator, + 'lenovo_oauth': LoginMethod._lenovo_oauth_validator, + 'passkey': LoginMethod._passkey_validator, + 'password': LoginMethod._password_validator, + 'qr_code': LoginMethod._qr_code_validator, + 'saml': LoginMethod._saml_validator, + 'two_factor_authentication': LoginMethod._two_factor_authentication_validator, + 'web_session': LoginMethod._web_session_validator, + 'microsoft_oauth': LoginMethod._microsoft_oauth_validator, + 'other': LoginMethod._other_validator, } -LoginMethod.apple_oauth = LoginMethod("apple_oauth") -LoginMethod.first_party_token_exchange = LoginMethod("first_party_token_exchange") -LoginMethod.google_oauth = LoginMethod("google_oauth") -LoginMethod.kakao_oauth = LoginMethod("kakao_oauth") -LoginMethod.lenovo_oauth = LoginMethod("lenovo_oauth") -LoginMethod.passkey = LoginMethod("passkey") -LoginMethod.password = LoginMethod("password") -LoginMethod.qr_code = LoginMethod("qr_code") -LoginMethod.saml = LoginMethod("saml") -LoginMethod.two_factor_authentication = LoginMethod("two_factor_authentication") -LoginMethod.web_session = LoginMethod("web_session") -LoginMethod.microsoft_oauth = LoginMethod("microsoft_oauth") -LoginMethod.other = LoginMethod("other") +LoginMethod.apple_oauth = LoginMethod('apple_oauth') +LoginMethod.first_party_token_exchange = LoginMethod('first_party_token_exchange') +LoginMethod.google_oauth = LoginMethod('google_oauth') +LoginMethod.kakao_oauth = LoginMethod('kakao_oauth') +LoginMethod.lenovo_oauth = LoginMethod('lenovo_oauth') +LoginMethod.passkey = LoginMethod('passkey') +LoginMethod.password = LoginMethod('password') +LoginMethod.qr_code = LoginMethod('qr_code') +LoginMethod.saml = LoginMethod('saml') +LoginMethod.two_factor_authentication = LoginMethod('two_factor_authentication') +LoginMethod.web_session = LoginMethod('web_session') +LoginMethod.microsoft_oauth = LoginMethod('microsoft_oauth') +LoginMethod.other = LoginMethod('other') LoginSuccessDetails.is_emm_managed.validator = bv.Nullable(bv.Boolean()) LoginSuccessDetails.login_method.validator = LoginMethod_validator -LoginSuccessDetails._all_field_names_ = set( - [ - "is_emm_managed", - "login_method", - ] -) +LoginSuccessDetails._all_field_names_ = set([ + 'is_emm_managed', + 'login_method', +]) LoginSuccessDetails._all_fields_ = [ - ("is_emm_managed", LoginSuccessDetails.is_emm_managed.validator), - ("login_method", LoginSuccessDetails.login_method.validator), + ('is_emm_managed', LoginSuccessDetails.is_emm_managed.validator), + ('login_method', LoginSuccessDetails.login_method.validator), ] LoginSuccessType.description.validator = bv.String() -LoginSuccessType._all_field_names_ = set(["description"]) -LoginSuccessType._all_fields_ = [("description", LoginSuccessType.description.validator)] +LoginSuccessType._all_field_names_ = set(['description']) +LoginSuccessType._all_fields_ = [('description', LoginSuccessType.description.validator)] LogoutDetails.login_id.validator = bv.Nullable(bv.String()) -LogoutDetails._all_field_names_ = set(["login_id"]) -LogoutDetails._all_fields_ = [("login_id", LogoutDetails.login_id.validator)] +LogoutDetails._all_field_names_ = set(['login_id']) +LogoutDetails._all_fields_ = [('login_id', LogoutDetails.login_id.validator)] LogoutType.description.validator = bv.String() -LogoutType._all_field_names_ = set(["description"]) -LogoutType._all_fields_ = [("description", LogoutType.description.validator)] +LogoutType._all_field_names_ = set(['description']) +LogoutType._all_fields_ = [('description', LogoutType.description.validator)] MalwareExclusionState.excluded_file_hashes_count.validator = bv.Int64() MalwareExclusionState.file_path_from_last_exclusion.validator = bv.Nullable(bv.String()) MalwareExclusionState.file_path_from_last_inclusion.validator = bv.Nullable(bv.String()) -MalwareExclusionState._all_field_names_ = set( - [ - "excluded_file_hashes_count", - "file_path_from_last_exclusion", - "file_path_from_last_inclusion", - ] -) +MalwareExclusionState._all_field_names_ = set([ + 'excluded_file_hashes_count', + 'file_path_from_last_exclusion', + 'file_path_from_last_inclusion', +]) MalwareExclusionState._all_fields_ = [ - ( - "excluded_file_hashes_count", - MalwareExclusionState.excluded_file_hashes_count.validator, - ), - ( - "file_path_from_last_exclusion", - MalwareExclusionState.file_path_from_last_exclusion.validator, - ), - ( - "file_path_from_last_inclusion", - MalwareExclusionState.file_path_from_last_inclusion.validator, - ), + ('excluded_file_hashes_count', MalwareExclusionState.excluded_file_hashes_count.validator), + ('file_path_from_last_exclusion', MalwareExclusionState.file_path_from_last_exclusion.validator), + ('file_path_from_last_inclusion', MalwareExclusionState.file_path_from_last_inclusion.validator), ] MediaHubAddingPeoplePolicy._anyone_validator = bv.Void() MediaHubAddingPeoplePolicy._team_only_validator = bv.Void() MediaHubAddingPeoplePolicy._other_validator = bv.Void() MediaHubAddingPeoplePolicy._tagmap = { - "anyone": MediaHubAddingPeoplePolicy._anyone_validator, - "team_only": MediaHubAddingPeoplePolicy._team_only_validator, - "other": MediaHubAddingPeoplePolicy._other_validator, + 'anyone': MediaHubAddingPeoplePolicy._anyone_validator, + 'team_only': MediaHubAddingPeoplePolicy._team_only_validator, + 'other': MediaHubAddingPeoplePolicy._other_validator, } -MediaHubAddingPeoplePolicy.anyone = MediaHubAddingPeoplePolicy("anyone") -MediaHubAddingPeoplePolicy.team_only = MediaHubAddingPeoplePolicy("team_only") -MediaHubAddingPeoplePolicy.other = MediaHubAddingPeoplePolicy("other") +MediaHubAddingPeoplePolicy.anyone = MediaHubAddingPeoplePolicy('anyone') +MediaHubAddingPeoplePolicy.team_only = MediaHubAddingPeoplePolicy('team_only') +MediaHubAddingPeoplePolicy.other = MediaHubAddingPeoplePolicy('other') MediaHubAddingPeoplePolicyChangedDetails.new_value.validator = MediaHubAddingPeoplePolicy_validator -MediaHubAddingPeoplePolicyChangedDetails.previous_value.validator = ( - MediaHubAddingPeoplePolicy_validator -) -MediaHubAddingPeoplePolicyChangedDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +MediaHubAddingPeoplePolicyChangedDetails.previous_value.validator = MediaHubAddingPeoplePolicy_validator +MediaHubAddingPeoplePolicyChangedDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) MediaHubAddingPeoplePolicyChangedDetails._all_fields_ = [ - ("new_value", MediaHubAddingPeoplePolicyChangedDetails.new_value.validator), - ( - "previous_value", - MediaHubAddingPeoplePolicyChangedDetails.previous_value.validator, - ), + ('new_value', MediaHubAddingPeoplePolicyChangedDetails.new_value.validator), + ('previous_value', MediaHubAddingPeoplePolicyChangedDetails.previous_value.validator), ] MediaHubAddingPeoplePolicyChangedType.description.validator = bv.String() -MediaHubAddingPeoplePolicyChangedType._all_field_names_ = set(["description"]) -MediaHubAddingPeoplePolicyChangedType._all_fields_ = [ - ("description", MediaHubAddingPeoplePolicyChangedType.description.validator) -] +MediaHubAddingPeoplePolicyChangedType._all_field_names_ = set(['description']) +MediaHubAddingPeoplePolicyChangedType._all_fields_ = [('description', MediaHubAddingPeoplePolicyChangedType.description.validator)] MediaHubDownloadPolicy._disabled_validator = bv.Void() MediaHubDownloadPolicy._enabled_validator = bv.Void() MediaHubDownloadPolicy._other_validator = bv.Void() MediaHubDownloadPolicy._tagmap = { - "disabled": MediaHubDownloadPolicy._disabled_validator, - "enabled": MediaHubDownloadPolicy._enabled_validator, - "other": MediaHubDownloadPolicy._other_validator, + 'disabled': MediaHubDownloadPolicy._disabled_validator, + 'enabled': MediaHubDownloadPolicy._enabled_validator, + 'other': MediaHubDownloadPolicy._other_validator, } -MediaHubDownloadPolicy.disabled = MediaHubDownloadPolicy("disabled") -MediaHubDownloadPolicy.enabled = MediaHubDownloadPolicy("enabled") -MediaHubDownloadPolicy.other = MediaHubDownloadPolicy("other") +MediaHubDownloadPolicy.disabled = MediaHubDownloadPolicy('disabled') +MediaHubDownloadPolicy.enabled = MediaHubDownloadPolicy('enabled') +MediaHubDownloadPolicy.other = MediaHubDownloadPolicy('other') MediaHubDownloadPolicyChangedDetails.new_value.validator = MediaHubDownloadPolicy_validator MediaHubDownloadPolicyChangedDetails.previous_value.validator = MediaHubDownloadPolicy_validator -MediaHubDownloadPolicyChangedDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +MediaHubDownloadPolicyChangedDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) MediaHubDownloadPolicyChangedDetails._all_fields_ = [ - ("new_value", MediaHubDownloadPolicyChangedDetails.new_value.validator), - ("previous_value", MediaHubDownloadPolicyChangedDetails.previous_value.validator), + ('new_value', MediaHubDownloadPolicyChangedDetails.new_value.validator), + ('previous_value', MediaHubDownloadPolicyChangedDetails.previous_value.validator), ] MediaHubDownloadPolicyChangedType.description.validator = bv.String() -MediaHubDownloadPolicyChangedType._all_field_names_ = set(["description"]) -MediaHubDownloadPolicyChangedType._all_fields_ = [ - ("description", MediaHubDownloadPolicyChangedType.description.validator) -] +MediaHubDownloadPolicyChangedType._all_field_names_ = set(['description']) +MediaHubDownloadPolicyChangedType._all_fields_ = [('description', MediaHubDownloadPolicyChangedType.description.validator)] MediaHubFileDownloadedDetails._all_field_names_ = set([]) MediaHubFileDownloadedDetails._all_fields_ = [] MediaHubFileDownloadedType.description.validator = bv.String() -MediaHubFileDownloadedType._all_field_names_ = set(["description"]) -MediaHubFileDownloadedType._all_fields_ = [ - ("description", MediaHubFileDownloadedType.description.validator) -] +MediaHubFileDownloadedType._all_field_names_ = set(['description']) +MediaHubFileDownloadedType._all_fields_ = [('description', MediaHubFileDownloadedType.description.validator)] MediaHubLinkSharingPolicy._no_one_validator = bv.Void() MediaHubLinkSharingPolicy._public_validator = bv.Void() MediaHubLinkSharingPolicy._team_only_validator = bv.Void() MediaHubLinkSharingPolicy._other_validator = bv.Void() MediaHubLinkSharingPolicy._tagmap = { - "no_one": MediaHubLinkSharingPolicy._no_one_validator, - "public": MediaHubLinkSharingPolicy._public_validator, - "team_only": MediaHubLinkSharingPolicy._team_only_validator, - "other": MediaHubLinkSharingPolicy._other_validator, + 'no_one': MediaHubLinkSharingPolicy._no_one_validator, + 'public': MediaHubLinkSharingPolicy._public_validator, + 'team_only': MediaHubLinkSharingPolicy._team_only_validator, + 'other': MediaHubLinkSharingPolicy._other_validator, } -MediaHubLinkSharingPolicy.no_one = MediaHubLinkSharingPolicy("no_one") -MediaHubLinkSharingPolicy.public = MediaHubLinkSharingPolicy("public") -MediaHubLinkSharingPolicy.team_only = MediaHubLinkSharingPolicy("team_only") -MediaHubLinkSharingPolicy.other = MediaHubLinkSharingPolicy("other") +MediaHubLinkSharingPolicy.no_one = MediaHubLinkSharingPolicy('no_one') +MediaHubLinkSharingPolicy.public = MediaHubLinkSharingPolicy('public') +MediaHubLinkSharingPolicy.team_only = MediaHubLinkSharingPolicy('team_only') +MediaHubLinkSharingPolicy.other = MediaHubLinkSharingPolicy('other') MediaHubLinkSharingPolicyChangedDetails.new_value.validator = MediaHubLinkSharingPolicy_validator -MediaHubLinkSharingPolicyChangedDetails.previous_value.validator = ( - MediaHubLinkSharingPolicy_validator -) -MediaHubLinkSharingPolicyChangedDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +MediaHubLinkSharingPolicyChangedDetails.previous_value.validator = MediaHubLinkSharingPolicy_validator +MediaHubLinkSharingPolicyChangedDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) MediaHubLinkSharingPolicyChangedDetails._all_fields_ = [ - ("new_value", MediaHubLinkSharingPolicyChangedDetails.new_value.validator), - ( - "previous_value", - MediaHubLinkSharingPolicyChangedDetails.previous_value.validator, - ), + ('new_value', MediaHubLinkSharingPolicyChangedDetails.new_value.validator), + ('previous_value', MediaHubLinkSharingPolicyChangedDetails.previous_value.validator), ] MediaHubLinkSharingPolicyChangedType.description.validator = bv.String() -MediaHubLinkSharingPolicyChangedType._all_field_names_ = set(["description"]) -MediaHubLinkSharingPolicyChangedType._all_fields_ = [ - ("description", MediaHubLinkSharingPolicyChangedType.description.validator) -] +MediaHubLinkSharingPolicyChangedType._all_field_names_ = set(['description']) +MediaHubLinkSharingPolicyChangedType._all_fields_ = [('description', MediaHubLinkSharingPolicyChangedType.description.validator)] MediaHubProjectRole._editor_validator = bv.Void() MediaHubProjectRole._owner_validator = bv.Void() MediaHubProjectRole._reviewer_validator = bv.Void() MediaHubProjectRole._other_validator = bv.Void() MediaHubProjectRole._tagmap = { - "editor": MediaHubProjectRole._editor_validator, - "owner": MediaHubProjectRole._owner_validator, - "reviewer": MediaHubProjectRole._reviewer_validator, - "other": MediaHubProjectRole._other_validator, + 'editor': MediaHubProjectRole._editor_validator, + 'owner': MediaHubProjectRole._owner_validator, + 'reviewer': MediaHubProjectRole._reviewer_validator, + 'other': MediaHubProjectRole._other_validator, } -MediaHubProjectRole.editor = MediaHubProjectRole("editor") -MediaHubProjectRole.owner = MediaHubProjectRole("owner") -MediaHubProjectRole.reviewer = MediaHubProjectRole("reviewer") -MediaHubProjectRole.other = MediaHubProjectRole("other") +MediaHubProjectRole.editor = MediaHubProjectRole('editor') +MediaHubProjectRole.owner = MediaHubProjectRole('owner') +MediaHubProjectRole.reviewer = MediaHubProjectRole('reviewer') +MediaHubProjectRole.other = MediaHubProjectRole('other') MediaHubProjectTeamAddDetails._all_field_names_ = set([]) MediaHubProjectTeamAddDetails._all_fields_ = [] MediaHubProjectTeamAddType.description.validator = bv.String() -MediaHubProjectTeamAddType._all_field_names_ = set(["description"]) -MediaHubProjectTeamAddType._all_fields_ = [ - ("description", MediaHubProjectTeamAddType.description.validator) -] +MediaHubProjectTeamAddType._all_field_names_ = set(['description']) +MediaHubProjectTeamAddType._all_fields_ = [('description', MediaHubProjectTeamAddType.description.validator)] MediaHubProjectTeamDeleteDetails._all_field_names_ = set([]) MediaHubProjectTeamDeleteDetails._all_fields_ = [] MediaHubProjectTeamDeleteType.description.validator = bv.String() -MediaHubProjectTeamDeleteType._all_field_names_ = set(["description"]) -MediaHubProjectTeamDeleteType._all_fields_ = [ - ("description", MediaHubProjectTeamDeleteType.description.validator) -] +MediaHubProjectTeamDeleteType._all_field_names_ = set(['description']) +MediaHubProjectTeamDeleteType._all_fields_ = [('description', MediaHubProjectTeamDeleteType.description.validator)] MediaHubProjectTeamRoleChangedDetails.previous_role.validator = MediaHubProjectRole_validator MediaHubProjectTeamRoleChangedDetails.new_role.validator = MediaHubProjectRole_validator -MediaHubProjectTeamRoleChangedDetails._all_field_names_ = set( - [ - "previous_role", - "new_role", - ] -) +MediaHubProjectTeamRoleChangedDetails._all_field_names_ = set([ + 'previous_role', + 'new_role', +]) MediaHubProjectTeamRoleChangedDetails._all_fields_ = [ - ("previous_role", MediaHubProjectTeamRoleChangedDetails.previous_role.validator), - ("new_role", MediaHubProjectTeamRoleChangedDetails.new_role.validator), + ('previous_role', MediaHubProjectTeamRoleChangedDetails.previous_role.validator), + ('new_role', MediaHubProjectTeamRoleChangedDetails.new_role.validator), ] MediaHubProjectTeamRoleChangedType.description.validator = bv.String() -MediaHubProjectTeamRoleChangedType._all_field_names_ = set(["description"]) -MediaHubProjectTeamRoleChangedType._all_fields_ = [ - ("description", MediaHubProjectTeamRoleChangedType.description.validator) -] +MediaHubProjectTeamRoleChangedType._all_field_names_ = set(['description']) +MediaHubProjectTeamRoleChangedType._all_fields_ = [('description', MediaHubProjectTeamRoleChangedType.description.validator)] MediaHubSharedLinkAudience._no_one_validator = bv.Void() MediaHubSharedLinkAudience._public_validator = bv.Void() MediaHubSharedLinkAudience._team_only_validator = bv.Void() MediaHubSharedLinkAudience._other_validator = bv.Void() MediaHubSharedLinkAudience._tagmap = { - "no_one": MediaHubSharedLinkAudience._no_one_validator, - "public": MediaHubSharedLinkAudience._public_validator, - "team_only": MediaHubSharedLinkAudience._team_only_validator, - "other": MediaHubSharedLinkAudience._other_validator, + 'no_one': MediaHubSharedLinkAudience._no_one_validator, + 'public': MediaHubSharedLinkAudience._public_validator, + 'team_only': MediaHubSharedLinkAudience._team_only_validator, + 'other': MediaHubSharedLinkAudience._other_validator, } -MediaHubSharedLinkAudience.no_one = MediaHubSharedLinkAudience("no_one") -MediaHubSharedLinkAudience.public = MediaHubSharedLinkAudience("public") -MediaHubSharedLinkAudience.team_only = MediaHubSharedLinkAudience("team_only") -MediaHubSharedLinkAudience.other = MediaHubSharedLinkAudience("other") +MediaHubSharedLinkAudience.no_one = MediaHubSharedLinkAudience('no_one') +MediaHubSharedLinkAudience.public = MediaHubSharedLinkAudience('public') +MediaHubSharedLinkAudience.team_only = MediaHubSharedLinkAudience('team_only') +MediaHubSharedLinkAudience.other = MediaHubSharedLinkAudience('other') -MediaHubSharedLinkAudienceChangedDetails.target_type.validator = ( - MediaHubSharedLinkTargetType_validator -) -MediaHubSharedLinkAudienceChangedDetails.previous_value.validator = ( - MediaHubSharedLinkAudience_validator -) +MediaHubSharedLinkAudienceChangedDetails.target_type.validator = MediaHubSharedLinkTargetType_validator +MediaHubSharedLinkAudienceChangedDetails.previous_value.validator = MediaHubSharedLinkAudience_validator MediaHubSharedLinkAudienceChangedDetails.new_value.validator = MediaHubSharedLinkAudience_validator -MediaHubSharedLinkAudienceChangedDetails._all_field_names_ = set( - [ - "target_type", - "previous_value", - "new_value", - ] -) +MediaHubSharedLinkAudienceChangedDetails._all_field_names_ = set([ + 'target_type', + 'previous_value', + 'new_value', +]) MediaHubSharedLinkAudienceChangedDetails._all_fields_ = [ - ("target_type", MediaHubSharedLinkAudienceChangedDetails.target_type.validator), - ( - "previous_value", - MediaHubSharedLinkAudienceChangedDetails.previous_value.validator, - ), - ("new_value", MediaHubSharedLinkAudienceChangedDetails.new_value.validator), + ('target_type', MediaHubSharedLinkAudienceChangedDetails.target_type.validator), + ('previous_value', MediaHubSharedLinkAudienceChangedDetails.previous_value.validator), + ('new_value', MediaHubSharedLinkAudienceChangedDetails.new_value.validator), ] MediaHubSharedLinkAudienceChangedType.description.validator = bv.String() -MediaHubSharedLinkAudienceChangedType._all_field_names_ = set(["description"]) -MediaHubSharedLinkAudienceChangedType._all_fields_ = [ - ("description", MediaHubSharedLinkAudienceChangedType.description.validator) -] +MediaHubSharedLinkAudienceChangedType._all_field_names_ = set(['description']) +MediaHubSharedLinkAudienceChangedType._all_fields_ = [('description', MediaHubSharedLinkAudienceChangedType.description.validator)] MediaHubSharedLinkCreatedDetails.target_type.validator = MediaHubSharedLinkTargetType_validator MediaHubSharedLinkCreatedDetails.audience.validator = MediaHubSharedLinkAudience_validator -MediaHubSharedLinkCreatedDetails._all_field_names_ = set( - [ - "target_type", - "audience", - ] -) +MediaHubSharedLinkCreatedDetails._all_field_names_ = set([ + 'target_type', + 'audience', +]) MediaHubSharedLinkCreatedDetails._all_fields_ = [ - ("target_type", MediaHubSharedLinkCreatedDetails.target_type.validator), - ("audience", MediaHubSharedLinkCreatedDetails.audience.validator), + ('target_type', MediaHubSharedLinkCreatedDetails.target_type.validator), + ('audience', MediaHubSharedLinkCreatedDetails.audience.validator), ] MediaHubSharedLinkCreatedType.description.validator = bv.String() -MediaHubSharedLinkCreatedType._all_field_names_ = set(["description"]) -MediaHubSharedLinkCreatedType._all_fields_ = [ - ("description", MediaHubSharedLinkCreatedType.description.validator) -] +MediaHubSharedLinkCreatedType._all_field_names_ = set(['description']) +MediaHubSharedLinkCreatedType._all_fields_ = [('description', MediaHubSharedLinkCreatedType.description.validator)] MediaHubSharedLinkDownloadSetting._disabled_validator = bv.Void() MediaHubSharedLinkDownloadSetting._enabled_validator = bv.Void() MediaHubSharedLinkDownloadSetting._other_validator = bv.Void() MediaHubSharedLinkDownloadSetting._tagmap = { - "disabled": MediaHubSharedLinkDownloadSetting._disabled_validator, - "enabled": MediaHubSharedLinkDownloadSetting._enabled_validator, - "other": MediaHubSharedLinkDownloadSetting._other_validator, + 'disabled': MediaHubSharedLinkDownloadSetting._disabled_validator, + 'enabled': MediaHubSharedLinkDownloadSetting._enabled_validator, + 'other': MediaHubSharedLinkDownloadSetting._other_validator, } -MediaHubSharedLinkDownloadSetting.disabled = MediaHubSharedLinkDownloadSetting("disabled") -MediaHubSharedLinkDownloadSetting.enabled = MediaHubSharedLinkDownloadSetting("enabled") -MediaHubSharedLinkDownloadSetting.other = MediaHubSharedLinkDownloadSetting("other") - -MediaHubSharedLinkDownloadSettingChangedDetails.target_type.validator = ( - MediaHubSharedLinkTargetType_validator -) -MediaHubSharedLinkDownloadSettingChangedDetails.previous_value.validator = ( - MediaHubSharedLinkDownloadSetting_validator -) -MediaHubSharedLinkDownloadSettingChangedDetails.new_value.validator = ( - MediaHubSharedLinkDownloadSetting_validator -) -MediaHubSharedLinkDownloadSettingChangedDetails._all_field_names_ = set( - [ - "target_type", - "previous_value", - "new_value", - ] -) +MediaHubSharedLinkDownloadSetting.disabled = MediaHubSharedLinkDownloadSetting('disabled') +MediaHubSharedLinkDownloadSetting.enabled = MediaHubSharedLinkDownloadSetting('enabled') +MediaHubSharedLinkDownloadSetting.other = MediaHubSharedLinkDownloadSetting('other') + +MediaHubSharedLinkDownloadSettingChangedDetails.target_type.validator = MediaHubSharedLinkTargetType_validator +MediaHubSharedLinkDownloadSettingChangedDetails.previous_value.validator = MediaHubSharedLinkDownloadSetting_validator +MediaHubSharedLinkDownloadSettingChangedDetails.new_value.validator = MediaHubSharedLinkDownloadSetting_validator +MediaHubSharedLinkDownloadSettingChangedDetails._all_field_names_ = set([ + 'target_type', + 'previous_value', + 'new_value', +]) MediaHubSharedLinkDownloadSettingChangedDetails._all_fields_ = [ - ( - "target_type", - MediaHubSharedLinkDownloadSettingChangedDetails.target_type.validator, - ), - ( - "previous_value", - MediaHubSharedLinkDownloadSettingChangedDetails.previous_value.validator, - ), - ("new_value", MediaHubSharedLinkDownloadSettingChangedDetails.new_value.validator), + ('target_type', MediaHubSharedLinkDownloadSettingChangedDetails.target_type.validator), + ('previous_value', MediaHubSharedLinkDownloadSettingChangedDetails.previous_value.validator), + ('new_value', MediaHubSharedLinkDownloadSettingChangedDetails.new_value.validator), ] MediaHubSharedLinkDownloadSettingChangedType.description.validator = bv.String() -MediaHubSharedLinkDownloadSettingChangedType._all_field_names_ = set(["description"]) -MediaHubSharedLinkDownloadSettingChangedType._all_fields_ = [ - ("description", MediaHubSharedLinkDownloadSettingChangedType.description.validator) -] +MediaHubSharedLinkDownloadSettingChangedType._all_field_names_ = set(['description']) +MediaHubSharedLinkDownloadSettingChangedType._all_fields_ = [('description', MediaHubSharedLinkDownloadSettingChangedType.description.validator)] MediaHubSharedLinkRevokedDetails.target_type.validator = MediaHubSharedLinkTargetType_validator -MediaHubSharedLinkRevokedDetails._all_field_names_ = set(["target_type"]) -MediaHubSharedLinkRevokedDetails._all_fields_ = [ - ("target_type", MediaHubSharedLinkRevokedDetails.target_type.validator) -] +MediaHubSharedLinkRevokedDetails._all_field_names_ = set(['target_type']) +MediaHubSharedLinkRevokedDetails._all_fields_ = [('target_type', MediaHubSharedLinkRevokedDetails.target_type.validator)] MediaHubSharedLinkRevokedType.description.validator = bv.String() -MediaHubSharedLinkRevokedType._all_field_names_ = set(["description"]) -MediaHubSharedLinkRevokedType._all_fields_ = [ - ("description", MediaHubSharedLinkRevokedType.description.validator) -] +MediaHubSharedLinkRevokedType._all_field_names_ = set(['description']) +MediaHubSharedLinkRevokedType._all_fields_ = [('description', MediaHubSharedLinkRevokedType.description.validator)] MediaHubSharedLinkTargetType._bundle_validator = bv.Void() MediaHubSharedLinkTargetType._project_validator = bv.Void() MediaHubSharedLinkTargetType._other_validator = bv.Void() MediaHubSharedLinkTargetType._tagmap = { - "bundle": MediaHubSharedLinkTargetType._bundle_validator, - "project": MediaHubSharedLinkTargetType._project_validator, - "other": MediaHubSharedLinkTargetType._other_validator, + 'bundle': MediaHubSharedLinkTargetType._bundle_validator, + 'project': MediaHubSharedLinkTargetType._project_validator, + 'other': MediaHubSharedLinkTargetType._other_validator, } -MediaHubSharedLinkTargetType.bundle = MediaHubSharedLinkTargetType("bundle") -MediaHubSharedLinkTargetType.project = MediaHubSharedLinkTargetType("project") -MediaHubSharedLinkTargetType.other = MediaHubSharedLinkTargetType("other") +MediaHubSharedLinkTargetType.bundle = MediaHubSharedLinkTargetType('bundle') +MediaHubSharedLinkTargetType.project = MediaHubSharedLinkTargetType('project') +MediaHubSharedLinkTargetType.other = MediaHubSharedLinkTargetType('other') MemberAccessDetailsCreateReportDetails._all_field_names_ = set([]) MemberAccessDetailsCreateReportDetails._all_fields_ = [] -MemberAccessDetailsCreateReportFailedDetails.failure_reason.validator = ( - team.TeamReportFailureReason_validator -) -MemberAccessDetailsCreateReportFailedDetails._all_field_names_ = set(["failure_reason"]) -MemberAccessDetailsCreateReportFailedDetails._all_fields_ = [ - ( - "failure_reason", - MemberAccessDetailsCreateReportFailedDetails.failure_reason.validator, - ) -] +MemberAccessDetailsCreateReportFailedDetails.failure_reason.validator = team.TeamReportFailureReason_validator +MemberAccessDetailsCreateReportFailedDetails._all_field_names_ = set(['failure_reason']) +MemberAccessDetailsCreateReportFailedDetails._all_fields_ = [('failure_reason', MemberAccessDetailsCreateReportFailedDetails.failure_reason.validator)] MemberAccessDetailsCreateReportFailedType.description.validator = bv.String() -MemberAccessDetailsCreateReportFailedType._all_field_names_ = set(["description"]) -MemberAccessDetailsCreateReportFailedType._all_fields_ = [ - ("description", MemberAccessDetailsCreateReportFailedType.description.validator) -] +MemberAccessDetailsCreateReportFailedType._all_field_names_ = set(['description']) +MemberAccessDetailsCreateReportFailedType._all_fields_ = [('description', MemberAccessDetailsCreateReportFailedType.description.validator)] MemberAccessDetailsCreateReportType.description.validator = bv.String() -MemberAccessDetailsCreateReportType._all_field_names_ = set(["description"]) -MemberAccessDetailsCreateReportType._all_fields_ = [ - ("description", MemberAccessDetailsCreateReportType.description.validator) -] +MemberAccessDetailsCreateReportType._all_field_names_ = set(['description']) +MemberAccessDetailsCreateReportType._all_fields_ = [('description', MemberAccessDetailsCreateReportType.description.validator)] MemberAddExternalIdDetails.new_value.validator = team_common.MemberExternalId_validator -MemberAddExternalIdDetails._all_field_names_ = set(["new_value"]) -MemberAddExternalIdDetails._all_fields_ = [ - ("new_value", MemberAddExternalIdDetails.new_value.validator) -] +MemberAddExternalIdDetails._all_field_names_ = set(['new_value']) +MemberAddExternalIdDetails._all_fields_ = [('new_value', MemberAddExternalIdDetails.new_value.validator)] MemberAddExternalIdType.description.validator = bv.String() -MemberAddExternalIdType._all_field_names_ = set(["description"]) -MemberAddExternalIdType._all_fields_ = [ - ("description", MemberAddExternalIdType.description.validator) -] +MemberAddExternalIdType._all_field_names_ = set(['description']) +MemberAddExternalIdType._all_fields_ = [('description', MemberAddExternalIdType.description.validator)] MemberAddNameDetails.new_value.validator = UserNameLogInfo_validator -MemberAddNameDetails._all_field_names_ = set(["new_value"]) -MemberAddNameDetails._all_fields_ = [("new_value", MemberAddNameDetails.new_value.validator)] +MemberAddNameDetails._all_field_names_ = set(['new_value']) +MemberAddNameDetails._all_fields_ = [('new_value', MemberAddNameDetails.new_value.validator)] MemberAddNameType.description.validator = bv.String() -MemberAddNameType._all_field_names_ = set(["description"]) -MemberAddNameType._all_fields_ = [("description", MemberAddNameType.description.validator)] +MemberAddNameType._all_field_names_ = set(['description']) +MemberAddNameType._all_fields_ = [('description', MemberAddNameType.description.validator)] MemberChangeAdminRoleDetails.new_value.validator = bv.Nullable(AdminRole_validator) MemberChangeAdminRoleDetails.previous_value.validator = bv.Nullable(AdminRole_validator) -MemberChangeAdminRoleDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +MemberChangeAdminRoleDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) MemberChangeAdminRoleDetails._all_fields_ = [ - ("new_value", MemberChangeAdminRoleDetails.new_value.validator), - ("previous_value", MemberChangeAdminRoleDetails.previous_value.validator), + ('new_value', MemberChangeAdminRoleDetails.new_value.validator), + ('previous_value', MemberChangeAdminRoleDetails.previous_value.validator), ] MemberChangeAdminRoleType.description.validator = bv.String() -MemberChangeAdminRoleType._all_field_names_ = set(["description"]) -MemberChangeAdminRoleType._all_fields_ = [ - ("description", MemberChangeAdminRoleType.description.validator) -] +MemberChangeAdminRoleType._all_field_names_ = set(['description']) +MemberChangeAdminRoleType._all_fields_ = [('description', MemberChangeAdminRoleType.description.validator)] MemberChangeEmailDetails.new_value.validator = EmailAddress_validator MemberChangeEmailDetails.previous_value.validator = bv.Nullable(EmailAddress_validator) -MemberChangeEmailDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +MemberChangeEmailDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) MemberChangeEmailDetails._all_fields_ = [ - ("new_value", MemberChangeEmailDetails.new_value.validator), - ("previous_value", MemberChangeEmailDetails.previous_value.validator), + ('new_value', MemberChangeEmailDetails.new_value.validator), + ('previous_value', MemberChangeEmailDetails.previous_value.validator), ] MemberChangeEmailType.description.validator = bv.String() -MemberChangeEmailType._all_field_names_ = set(["description"]) -MemberChangeEmailType._all_fields_ = [("description", MemberChangeEmailType.description.validator)] +MemberChangeEmailType._all_field_names_ = set(['description']) +MemberChangeEmailType._all_fields_ = [('description', MemberChangeEmailType.description.validator)] MemberChangeExternalIdDetails.new_value.validator = team_common.MemberExternalId_validator MemberChangeExternalIdDetails.previous_value.validator = team_common.MemberExternalId_validator -MemberChangeExternalIdDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +MemberChangeExternalIdDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) MemberChangeExternalIdDetails._all_fields_ = [ - ("new_value", MemberChangeExternalIdDetails.new_value.validator), - ("previous_value", MemberChangeExternalIdDetails.previous_value.validator), + ('new_value', MemberChangeExternalIdDetails.new_value.validator), + ('previous_value', MemberChangeExternalIdDetails.previous_value.validator), ] MemberChangeExternalIdType.description.validator = bv.String() -MemberChangeExternalIdType._all_field_names_ = set(["description"]) -MemberChangeExternalIdType._all_fields_ = [ - ("description", MemberChangeExternalIdType.description.validator) -] +MemberChangeExternalIdType._all_field_names_ = set(['description']) +MemberChangeExternalIdType._all_fields_ = [('description', MemberChangeExternalIdType.description.validator)] MemberChangeMembershipTypeDetails.prev_value.validator = TeamMembershipType_validator MemberChangeMembershipTypeDetails.new_value.validator = TeamMembershipType_validator -MemberChangeMembershipTypeDetails._all_field_names_ = set( - [ - "prev_value", - "new_value", - ] -) +MemberChangeMembershipTypeDetails._all_field_names_ = set([ + 'prev_value', + 'new_value', +]) MemberChangeMembershipTypeDetails._all_fields_ = [ - ("prev_value", MemberChangeMembershipTypeDetails.prev_value.validator), - ("new_value", MemberChangeMembershipTypeDetails.new_value.validator), + ('prev_value', MemberChangeMembershipTypeDetails.prev_value.validator), + ('new_value', MemberChangeMembershipTypeDetails.new_value.validator), ] MemberChangeMembershipTypeType.description.validator = bv.String() -MemberChangeMembershipTypeType._all_field_names_ = set(["description"]) -MemberChangeMembershipTypeType._all_fields_ = [ - ("description", MemberChangeMembershipTypeType.description.validator) -] +MemberChangeMembershipTypeType._all_field_names_ = set(['description']) +MemberChangeMembershipTypeType._all_fields_ = [('description', MemberChangeMembershipTypeType.description.validator)] MemberChangeNameDetails.new_value.validator = UserNameLogInfo_validator MemberChangeNameDetails.previous_value.validator = bv.Nullable(UserNameLogInfo_validator) -MemberChangeNameDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +MemberChangeNameDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) MemberChangeNameDetails._all_fields_ = [ - ("new_value", MemberChangeNameDetails.new_value.validator), - ("previous_value", MemberChangeNameDetails.previous_value.validator), + ('new_value', MemberChangeNameDetails.new_value.validator), + ('previous_value', MemberChangeNameDetails.previous_value.validator), ] MemberChangeNameType.description.validator = bv.String() -MemberChangeNameType._all_field_names_ = set(["description"]) -MemberChangeNameType._all_fields_ = [("description", MemberChangeNameType.description.validator)] +MemberChangeNameType._all_field_names_ = set(['description']) +MemberChangeNameType._all_fields_ = [('description', MemberChangeNameType.description.validator)] MemberChangeResellerRoleDetails.new_value.validator = ResellerRole_validator MemberChangeResellerRoleDetails.previous_value.validator = ResellerRole_validator -MemberChangeResellerRoleDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +MemberChangeResellerRoleDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) MemberChangeResellerRoleDetails._all_fields_ = [ - ("new_value", MemberChangeResellerRoleDetails.new_value.validator), - ("previous_value", MemberChangeResellerRoleDetails.previous_value.validator), + ('new_value', MemberChangeResellerRoleDetails.new_value.validator), + ('previous_value', MemberChangeResellerRoleDetails.previous_value.validator), ] MemberChangeResellerRoleType.description.validator = bv.String() -MemberChangeResellerRoleType._all_field_names_ = set(["description"]) -MemberChangeResellerRoleType._all_fields_ = [ - ("description", MemberChangeResellerRoleType.description.validator) -] +MemberChangeResellerRoleType._all_field_names_ = set(['description']) +MemberChangeResellerRoleType._all_fields_ = [('description', MemberChangeResellerRoleType.description.validator)] MemberChangeStatusDetails.previous_value.validator = bv.Nullable(MemberStatus_validator) MemberChangeStatusDetails.new_value.validator = MemberStatus_validator MemberChangeStatusDetails.action.validator = bv.Nullable(ActionDetails_validator) MemberChangeStatusDetails.new_team.validator = bv.Nullable(bv.String()) MemberChangeStatusDetails.previous_team.validator = bv.Nullable(bv.String()) -MemberChangeStatusDetails._all_field_names_ = set( - [ - "previous_value", - "new_value", - "action", - "new_team", - "previous_team", - ] -) +MemberChangeStatusDetails._all_field_names_ = set([ + 'previous_value', + 'new_value', + 'action', + 'new_team', + 'previous_team', +]) MemberChangeStatusDetails._all_fields_ = [ - ("previous_value", MemberChangeStatusDetails.previous_value.validator), - ("new_value", MemberChangeStatusDetails.new_value.validator), - ("action", MemberChangeStatusDetails.action.validator), - ("new_team", MemberChangeStatusDetails.new_team.validator), - ("previous_team", MemberChangeStatusDetails.previous_team.validator), + ('previous_value', MemberChangeStatusDetails.previous_value.validator), + ('new_value', MemberChangeStatusDetails.new_value.validator), + ('action', MemberChangeStatusDetails.action.validator), + ('new_team', MemberChangeStatusDetails.new_team.validator), + ('previous_team', MemberChangeStatusDetails.previous_team.validator), ] MemberChangeStatusType.description.validator = bv.String() -MemberChangeStatusType._all_field_names_ = set(["description"]) -MemberChangeStatusType._all_fields_ = [ - ("description", MemberChangeStatusType.description.validator) -] +MemberChangeStatusType._all_field_names_ = set(['description']) +MemberChangeStatusType._all_fields_ = [('description', MemberChangeStatusType.description.validator)] MemberDeleteManualContactsDetails._all_field_names_ = set([]) MemberDeleteManualContactsDetails._all_fields_ = [] MemberDeleteManualContactsType.description.validator = bv.String() -MemberDeleteManualContactsType._all_field_names_ = set(["description"]) -MemberDeleteManualContactsType._all_fields_ = [ - ("description", MemberDeleteManualContactsType.description.validator) -] +MemberDeleteManualContactsType._all_field_names_ = set(['description']) +MemberDeleteManualContactsType._all_fields_ = [('description', MemberDeleteManualContactsType.description.validator)] MemberDeleteProfilePhotoDetails._all_field_names_ = set([]) MemberDeleteProfilePhotoDetails._all_fields_ = [] MemberDeleteProfilePhotoType.description.validator = bv.String() -MemberDeleteProfilePhotoType._all_field_names_ = set(["description"]) -MemberDeleteProfilePhotoType._all_fields_ = [ - ("description", MemberDeleteProfilePhotoType.description.validator) -] +MemberDeleteProfilePhotoType._all_field_names_ = set(['description']) +MemberDeleteProfilePhotoType._all_fields_ = [('description', MemberDeleteProfilePhotoType.description.validator)] MemberPermanentlyDeleteAccountContentsDetails._all_field_names_ = set([]) MemberPermanentlyDeleteAccountContentsDetails._all_fields_ = [] MemberPermanentlyDeleteAccountContentsType.description.validator = bv.String() -MemberPermanentlyDeleteAccountContentsType._all_field_names_ = set(["description"]) -MemberPermanentlyDeleteAccountContentsType._all_fields_ = [ - ("description", MemberPermanentlyDeleteAccountContentsType.description.validator) -] +MemberPermanentlyDeleteAccountContentsType._all_field_names_ = set(['description']) +MemberPermanentlyDeleteAccountContentsType._all_fields_ = [('description', MemberPermanentlyDeleteAccountContentsType.description.validator)] MemberRemoveActionType._delete_validator = bv.Void() MemberRemoveActionType._leave_validator = bv.Void() @@ -110131,234 +103511,184 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): MemberRemoveActionType._offboard_and_retain_team_folders_validator = bv.Void() MemberRemoveActionType._other_validator = bv.Void() MemberRemoveActionType._tagmap = { - "delete": MemberRemoveActionType._delete_validator, - "leave": MemberRemoveActionType._leave_validator, - "offboard": MemberRemoveActionType._offboard_validator, - "offboard_and_retain_team_folders": MemberRemoveActionType._offboard_and_retain_team_folders_validator, - "other": MemberRemoveActionType._other_validator, + 'delete': MemberRemoveActionType._delete_validator, + 'leave': MemberRemoveActionType._leave_validator, + 'offboard': MemberRemoveActionType._offboard_validator, + 'offboard_and_retain_team_folders': MemberRemoveActionType._offboard_and_retain_team_folders_validator, + 'other': MemberRemoveActionType._other_validator, } -MemberRemoveActionType.delete = MemberRemoveActionType("delete") -MemberRemoveActionType.leave = MemberRemoveActionType("leave") -MemberRemoveActionType.offboard = MemberRemoveActionType("offboard") -MemberRemoveActionType.offboard_and_retain_team_folders = MemberRemoveActionType( - "offboard_and_retain_team_folders" -) -MemberRemoveActionType.other = MemberRemoveActionType("other") +MemberRemoveActionType.delete = MemberRemoveActionType('delete') +MemberRemoveActionType.leave = MemberRemoveActionType('leave') +MemberRemoveActionType.offboard = MemberRemoveActionType('offboard') +MemberRemoveActionType.offboard_and_retain_team_folders = MemberRemoveActionType('offboard_and_retain_team_folders') +MemberRemoveActionType.other = MemberRemoveActionType('other') MemberRemoveExternalIdDetails.previous_value.validator = team_common.MemberExternalId_validator -MemberRemoveExternalIdDetails._all_field_names_ = set(["previous_value"]) -MemberRemoveExternalIdDetails._all_fields_ = [ - ("previous_value", MemberRemoveExternalIdDetails.previous_value.validator) -] +MemberRemoveExternalIdDetails._all_field_names_ = set(['previous_value']) +MemberRemoveExternalIdDetails._all_fields_ = [('previous_value', MemberRemoveExternalIdDetails.previous_value.validator)] MemberRemoveExternalIdType.description.validator = bv.String() -MemberRemoveExternalIdType._all_field_names_ = set(["description"]) -MemberRemoveExternalIdType._all_fields_ = [ - ("description", MemberRemoveExternalIdType.description.validator) -] +MemberRemoveExternalIdType._all_field_names_ = set(['description']) +MemberRemoveExternalIdType._all_fields_ = [('description', MemberRemoveExternalIdType.description.validator)] MemberRequestsChangePolicyDetails.new_value.validator = MemberRequestsPolicy_validator -MemberRequestsChangePolicyDetails.previous_value.validator = bv.Nullable( - MemberRequestsPolicy_validator -) -MemberRequestsChangePolicyDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +MemberRequestsChangePolicyDetails.previous_value.validator = bv.Nullable(MemberRequestsPolicy_validator) +MemberRequestsChangePolicyDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) MemberRequestsChangePolicyDetails._all_fields_ = [ - ("new_value", MemberRequestsChangePolicyDetails.new_value.validator), - ("previous_value", MemberRequestsChangePolicyDetails.previous_value.validator), + ('new_value', MemberRequestsChangePolicyDetails.new_value.validator), + ('previous_value', MemberRequestsChangePolicyDetails.previous_value.validator), ] MemberRequestsChangePolicyType.description.validator = bv.String() -MemberRequestsChangePolicyType._all_field_names_ = set(["description"]) -MemberRequestsChangePolicyType._all_fields_ = [ - ("description", MemberRequestsChangePolicyType.description.validator) -] +MemberRequestsChangePolicyType._all_field_names_ = set(['description']) +MemberRequestsChangePolicyType._all_fields_ = [('description', MemberRequestsChangePolicyType.description.validator)] MemberRequestsPolicy._auto_accept_validator = bv.Void() MemberRequestsPolicy._disabled_validator = bv.Void() MemberRequestsPolicy._require_approval_validator = bv.Void() MemberRequestsPolicy._other_validator = bv.Void() MemberRequestsPolicy._tagmap = { - "auto_accept": MemberRequestsPolicy._auto_accept_validator, - "disabled": MemberRequestsPolicy._disabled_validator, - "require_approval": MemberRequestsPolicy._require_approval_validator, - "other": MemberRequestsPolicy._other_validator, + 'auto_accept': MemberRequestsPolicy._auto_accept_validator, + 'disabled': MemberRequestsPolicy._disabled_validator, + 'require_approval': MemberRequestsPolicy._require_approval_validator, + 'other': MemberRequestsPolicy._other_validator, } -MemberRequestsPolicy.auto_accept = MemberRequestsPolicy("auto_accept") -MemberRequestsPolicy.disabled = MemberRequestsPolicy("disabled") -MemberRequestsPolicy.require_approval = MemberRequestsPolicy("require_approval") -MemberRequestsPolicy.other = MemberRequestsPolicy("other") +MemberRequestsPolicy.auto_accept = MemberRequestsPolicy('auto_accept') +MemberRequestsPolicy.disabled = MemberRequestsPolicy('disabled') +MemberRequestsPolicy.require_approval = MemberRequestsPolicy('require_approval') +MemberRequestsPolicy.other = MemberRequestsPolicy('other') MemberSendInvitePolicy._disabled_validator = bv.Void() MemberSendInvitePolicy._everyone_validator = bv.Void() MemberSendInvitePolicy._specific_members_validator = bv.Void() MemberSendInvitePolicy._other_validator = bv.Void() MemberSendInvitePolicy._tagmap = { - "disabled": MemberSendInvitePolicy._disabled_validator, - "everyone": MemberSendInvitePolicy._everyone_validator, - "specific_members": MemberSendInvitePolicy._specific_members_validator, - "other": MemberSendInvitePolicy._other_validator, + 'disabled': MemberSendInvitePolicy._disabled_validator, + 'everyone': MemberSendInvitePolicy._everyone_validator, + 'specific_members': MemberSendInvitePolicy._specific_members_validator, + 'other': MemberSendInvitePolicy._other_validator, } -MemberSendInvitePolicy.disabled = MemberSendInvitePolicy("disabled") -MemberSendInvitePolicy.everyone = MemberSendInvitePolicy("everyone") -MemberSendInvitePolicy.specific_members = MemberSendInvitePolicy("specific_members") -MemberSendInvitePolicy.other = MemberSendInvitePolicy("other") +MemberSendInvitePolicy.disabled = MemberSendInvitePolicy('disabled') +MemberSendInvitePolicy.everyone = MemberSendInvitePolicy('everyone') +MemberSendInvitePolicy.specific_members = MemberSendInvitePolicy('specific_members') +MemberSendInvitePolicy.other = MemberSendInvitePolicy('other') MemberSendInvitePolicyChangedDetails.new_value.validator = MemberSendInvitePolicy_validator MemberSendInvitePolicyChangedDetails.previous_value.validator = MemberSendInvitePolicy_validator -MemberSendInvitePolicyChangedDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +MemberSendInvitePolicyChangedDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) MemberSendInvitePolicyChangedDetails._all_fields_ = [ - ("new_value", MemberSendInvitePolicyChangedDetails.new_value.validator), - ("previous_value", MemberSendInvitePolicyChangedDetails.previous_value.validator), + ('new_value', MemberSendInvitePolicyChangedDetails.new_value.validator), + ('previous_value', MemberSendInvitePolicyChangedDetails.previous_value.validator), ] MemberSendInvitePolicyChangedType.description.validator = bv.String() -MemberSendInvitePolicyChangedType._all_field_names_ = set(["description"]) -MemberSendInvitePolicyChangedType._all_fields_ = [ - ("description", MemberSendInvitePolicyChangedType.description.validator) -] +MemberSendInvitePolicyChangedType._all_field_names_ = set(['description']) +MemberSendInvitePolicyChangedType._all_fields_ = [('description', MemberSendInvitePolicyChangedType.description.validator)] MemberSetProfilePhotoDetails._all_field_names_ = set([]) MemberSetProfilePhotoDetails._all_fields_ = [] MemberSetProfilePhotoType.description.validator = bv.String() -MemberSetProfilePhotoType._all_field_names_ = set(["description"]) -MemberSetProfilePhotoType._all_fields_ = [ - ("description", MemberSetProfilePhotoType.description.validator) -] +MemberSetProfilePhotoType._all_field_names_ = set(['description']) +MemberSetProfilePhotoType._all_fields_ = [('description', MemberSetProfilePhotoType.description.validator)] MemberSpaceLimitsAddCustomQuotaDetails.new_value.validator = bv.UInt64() -MemberSpaceLimitsAddCustomQuotaDetails._all_field_names_ = set(["new_value"]) -MemberSpaceLimitsAddCustomQuotaDetails._all_fields_ = [ - ("new_value", MemberSpaceLimitsAddCustomQuotaDetails.new_value.validator) -] +MemberSpaceLimitsAddCustomQuotaDetails._all_field_names_ = set(['new_value']) +MemberSpaceLimitsAddCustomQuotaDetails._all_fields_ = [('new_value', MemberSpaceLimitsAddCustomQuotaDetails.new_value.validator)] MemberSpaceLimitsAddCustomQuotaType.description.validator = bv.String() -MemberSpaceLimitsAddCustomQuotaType._all_field_names_ = set(["description"]) -MemberSpaceLimitsAddCustomQuotaType._all_fields_ = [ - ("description", MemberSpaceLimitsAddCustomQuotaType.description.validator) -] +MemberSpaceLimitsAddCustomQuotaType._all_field_names_ = set(['description']) +MemberSpaceLimitsAddCustomQuotaType._all_fields_ = [('description', MemberSpaceLimitsAddCustomQuotaType.description.validator)] MemberSpaceLimitsAddExceptionDetails._all_field_names_ = set([]) MemberSpaceLimitsAddExceptionDetails._all_fields_ = [] MemberSpaceLimitsAddExceptionType.description.validator = bv.String() -MemberSpaceLimitsAddExceptionType._all_field_names_ = set(["description"]) -MemberSpaceLimitsAddExceptionType._all_fields_ = [ - ("description", MemberSpaceLimitsAddExceptionType.description.validator) -] +MemberSpaceLimitsAddExceptionType._all_field_names_ = set(['description']) +MemberSpaceLimitsAddExceptionType._all_fields_ = [('description', MemberSpaceLimitsAddExceptionType.description.validator)] MemberSpaceLimitsChangeCapsTypePolicyDetails.previous_value.validator = SpaceCapsType_validator MemberSpaceLimitsChangeCapsTypePolicyDetails.new_value.validator = SpaceCapsType_validator -MemberSpaceLimitsChangeCapsTypePolicyDetails._all_field_names_ = set( - [ - "previous_value", - "new_value", - ] -) +MemberSpaceLimitsChangeCapsTypePolicyDetails._all_field_names_ = set([ + 'previous_value', + 'new_value', +]) MemberSpaceLimitsChangeCapsTypePolicyDetails._all_fields_ = [ - ( - "previous_value", - MemberSpaceLimitsChangeCapsTypePolicyDetails.previous_value.validator, - ), - ("new_value", MemberSpaceLimitsChangeCapsTypePolicyDetails.new_value.validator), + ('previous_value', MemberSpaceLimitsChangeCapsTypePolicyDetails.previous_value.validator), + ('new_value', MemberSpaceLimitsChangeCapsTypePolicyDetails.new_value.validator), ] MemberSpaceLimitsChangeCapsTypePolicyType.description.validator = bv.String() -MemberSpaceLimitsChangeCapsTypePolicyType._all_field_names_ = set(["description"]) -MemberSpaceLimitsChangeCapsTypePolicyType._all_fields_ = [ - ("description", MemberSpaceLimitsChangeCapsTypePolicyType.description.validator) -] +MemberSpaceLimitsChangeCapsTypePolicyType._all_field_names_ = set(['description']) +MemberSpaceLimitsChangeCapsTypePolicyType._all_fields_ = [('description', MemberSpaceLimitsChangeCapsTypePolicyType.description.validator)] MemberSpaceLimitsChangeCustomQuotaDetails.previous_value.validator = bv.UInt64() MemberSpaceLimitsChangeCustomQuotaDetails.new_value.validator = bv.UInt64() -MemberSpaceLimitsChangeCustomQuotaDetails._all_field_names_ = set( - [ - "previous_value", - "new_value", - ] -) +MemberSpaceLimitsChangeCustomQuotaDetails._all_field_names_ = set([ + 'previous_value', + 'new_value', +]) MemberSpaceLimitsChangeCustomQuotaDetails._all_fields_ = [ - ( - "previous_value", - MemberSpaceLimitsChangeCustomQuotaDetails.previous_value.validator, - ), - ("new_value", MemberSpaceLimitsChangeCustomQuotaDetails.new_value.validator), + ('previous_value', MemberSpaceLimitsChangeCustomQuotaDetails.previous_value.validator), + ('new_value', MemberSpaceLimitsChangeCustomQuotaDetails.new_value.validator), ] MemberSpaceLimitsChangeCustomQuotaType.description.validator = bv.String() -MemberSpaceLimitsChangeCustomQuotaType._all_field_names_ = set(["description"]) -MemberSpaceLimitsChangeCustomQuotaType._all_fields_ = [ - ("description", MemberSpaceLimitsChangeCustomQuotaType.description.validator) -] +MemberSpaceLimitsChangeCustomQuotaType._all_field_names_ = set(['description']) +MemberSpaceLimitsChangeCustomQuotaType._all_fields_ = [('description', MemberSpaceLimitsChangeCustomQuotaType.description.validator)] MemberSpaceLimitsChangePolicyDetails.previous_value.validator = bv.Nullable(bv.UInt64()) MemberSpaceLimitsChangePolicyDetails.new_value.validator = bv.Nullable(bv.UInt64()) -MemberSpaceLimitsChangePolicyDetails._all_field_names_ = set( - [ - "previous_value", - "new_value", - ] -) +MemberSpaceLimitsChangePolicyDetails._all_field_names_ = set([ + 'previous_value', + 'new_value', +]) MemberSpaceLimitsChangePolicyDetails._all_fields_ = [ - ("previous_value", MemberSpaceLimitsChangePolicyDetails.previous_value.validator), - ("new_value", MemberSpaceLimitsChangePolicyDetails.new_value.validator), + ('previous_value', MemberSpaceLimitsChangePolicyDetails.previous_value.validator), + ('new_value', MemberSpaceLimitsChangePolicyDetails.new_value.validator), ] MemberSpaceLimitsChangePolicyType.description.validator = bv.String() -MemberSpaceLimitsChangePolicyType._all_field_names_ = set(["description"]) -MemberSpaceLimitsChangePolicyType._all_fields_ = [ - ("description", MemberSpaceLimitsChangePolicyType.description.validator) -] +MemberSpaceLimitsChangePolicyType._all_field_names_ = set(['description']) +MemberSpaceLimitsChangePolicyType._all_fields_ = [('description', MemberSpaceLimitsChangePolicyType.description.validator)] MemberSpaceLimitsChangeStatusDetails.previous_value.validator = SpaceLimitsStatus_validator MemberSpaceLimitsChangeStatusDetails.new_value.validator = SpaceLimitsStatus_validator -MemberSpaceLimitsChangeStatusDetails._all_field_names_ = set( - [ - "previous_value", - "new_value", - ] -) +MemberSpaceLimitsChangeStatusDetails._all_field_names_ = set([ + 'previous_value', + 'new_value', +]) MemberSpaceLimitsChangeStatusDetails._all_fields_ = [ - ("previous_value", MemberSpaceLimitsChangeStatusDetails.previous_value.validator), - ("new_value", MemberSpaceLimitsChangeStatusDetails.new_value.validator), + ('previous_value', MemberSpaceLimitsChangeStatusDetails.previous_value.validator), + ('new_value', MemberSpaceLimitsChangeStatusDetails.new_value.validator), ] MemberSpaceLimitsChangeStatusType.description.validator = bv.String() -MemberSpaceLimitsChangeStatusType._all_field_names_ = set(["description"]) -MemberSpaceLimitsChangeStatusType._all_fields_ = [ - ("description", MemberSpaceLimitsChangeStatusType.description.validator) -] +MemberSpaceLimitsChangeStatusType._all_field_names_ = set(['description']) +MemberSpaceLimitsChangeStatusType._all_fields_ = [('description', MemberSpaceLimitsChangeStatusType.description.validator)] MemberSpaceLimitsRemoveCustomQuotaDetails._all_field_names_ = set([]) MemberSpaceLimitsRemoveCustomQuotaDetails._all_fields_ = [] MemberSpaceLimitsRemoveCustomQuotaType.description.validator = bv.String() -MemberSpaceLimitsRemoveCustomQuotaType._all_field_names_ = set(["description"]) -MemberSpaceLimitsRemoveCustomQuotaType._all_fields_ = [ - ("description", MemberSpaceLimitsRemoveCustomQuotaType.description.validator) -] +MemberSpaceLimitsRemoveCustomQuotaType._all_field_names_ = set(['description']) +MemberSpaceLimitsRemoveCustomQuotaType._all_fields_ = [('description', MemberSpaceLimitsRemoveCustomQuotaType.description.validator)] MemberSpaceLimitsRemoveExceptionDetails._all_field_names_ = set([]) MemberSpaceLimitsRemoveExceptionDetails._all_fields_ = [] MemberSpaceLimitsRemoveExceptionType.description.validator = bv.String() -MemberSpaceLimitsRemoveExceptionType._all_field_names_ = set(["description"]) -MemberSpaceLimitsRemoveExceptionType._all_fields_ = [ - ("description", MemberSpaceLimitsRemoveExceptionType.description.validator) -] +MemberSpaceLimitsRemoveExceptionType._all_field_names_ = set(['description']) +MemberSpaceLimitsRemoveExceptionType._all_fields_ = [('description', MemberSpaceLimitsRemoveExceptionType.description.validator)] MemberStatus._active_validator = bv.Void() MemberStatus._invited_validator = bv.Void() @@ -110368,168 +103698,139 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): MemberStatus._suspended_validator = bv.Void() MemberStatus._other_validator = bv.Void() MemberStatus._tagmap = { - "active": MemberStatus._active_validator, - "invited": MemberStatus._invited_validator, - "moved_to_another_team": MemberStatus._moved_to_another_team_validator, - "not_joined": MemberStatus._not_joined_validator, - "removed": MemberStatus._removed_validator, - "suspended": MemberStatus._suspended_validator, - "other": MemberStatus._other_validator, + 'active': MemberStatus._active_validator, + 'invited': MemberStatus._invited_validator, + 'moved_to_another_team': MemberStatus._moved_to_another_team_validator, + 'not_joined': MemberStatus._not_joined_validator, + 'removed': MemberStatus._removed_validator, + 'suspended': MemberStatus._suspended_validator, + 'other': MemberStatus._other_validator, } -MemberStatus.active = MemberStatus("active") -MemberStatus.invited = MemberStatus("invited") -MemberStatus.moved_to_another_team = MemberStatus("moved_to_another_team") -MemberStatus.not_joined = MemberStatus("not_joined") -MemberStatus.removed = MemberStatus("removed") -MemberStatus.suspended = MemberStatus("suspended") -MemberStatus.other = MemberStatus("other") +MemberStatus.active = MemberStatus('active') +MemberStatus.invited = MemberStatus('invited') +MemberStatus.moved_to_another_team = MemberStatus('moved_to_another_team') +MemberStatus.not_joined = MemberStatus('not_joined') +MemberStatus.removed = MemberStatus('removed') +MemberStatus.suspended = MemberStatus('suspended') +MemberStatus.other = MemberStatus('other') MemberSuggestDetails.suggested_members.validator = bv.List(EmailAddress_validator) -MemberSuggestDetails._all_field_names_ = set(["suggested_members"]) -MemberSuggestDetails._all_fields_ = [ - ("suggested_members", MemberSuggestDetails.suggested_members.validator) -] +MemberSuggestDetails._all_field_names_ = set(['suggested_members']) +MemberSuggestDetails._all_fields_ = [('suggested_members', MemberSuggestDetails.suggested_members.validator)] MemberSuggestType.description.validator = bv.String() -MemberSuggestType._all_field_names_ = set(["description"]) -MemberSuggestType._all_fields_ = [("description", MemberSuggestType.description.validator)] +MemberSuggestType._all_field_names_ = set(['description']) +MemberSuggestType._all_fields_ = [('description', MemberSuggestType.description.validator)] MemberSuggestionsChangePolicyDetails.new_value.validator = MemberSuggestionsPolicy_validator -MemberSuggestionsChangePolicyDetails.previous_value.validator = bv.Nullable( - MemberSuggestionsPolicy_validator -) -MemberSuggestionsChangePolicyDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +MemberSuggestionsChangePolicyDetails.previous_value.validator = bv.Nullable(MemberSuggestionsPolicy_validator) +MemberSuggestionsChangePolicyDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) MemberSuggestionsChangePolicyDetails._all_fields_ = [ - ("new_value", MemberSuggestionsChangePolicyDetails.new_value.validator), - ("previous_value", MemberSuggestionsChangePolicyDetails.previous_value.validator), + ('new_value', MemberSuggestionsChangePolicyDetails.new_value.validator), + ('previous_value', MemberSuggestionsChangePolicyDetails.previous_value.validator), ] MemberSuggestionsChangePolicyType.description.validator = bv.String() -MemberSuggestionsChangePolicyType._all_field_names_ = set(["description"]) -MemberSuggestionsChangePolicyType._all_fields_ = [ - ("description", MemberSuggestionsChangePolicyType.description.validator) -] +MemberSuggestionsChangePolicyType._all_field_names_ = set(['description']) +MemberSuggestionsChangePolicyType._all_fields_ = [('description', MemberSuggestionsChangePolicyType.description.validator)] MemberSuggestionsPolicy._disabled_validator = bv.Void() MemberSuggestionsPolicy._enabled_validator = bv.Void() MemberSuggestionsPolicy._other_validator = bv.Void() MemberSuggestionsPolicy._tagmap = { - "disabled": MemberSuggestionsPolicy._disabled_validator, - "enabled": MemberSuggestionsPolicy._enabled_validator, - "other": MemberSuggestionsPolicy._other_validator, + 'disabled': MemberSuggestionsPolicy._disabled_validator, + 'enabled': MemberSuggestionsPolicy._enabled_validator, + 'other': MemberSuggestionsPolicy._other_validator, } -MemberSuggestionsPolicy.disabled = MemberSuggestionsPolicy("disabled") -MemberSuggestionsPolicy.enabled = MemberSuggestionsPolicy("enabled") -MemberSuggestionsPolicy.other = MemberSuggestionsPolicy("other") +MemberSuggestionsPolicy.disabled = MemberSuggestionsPolicy('disabled') +MemberSuggestionsPolicy.enabled = MemberSuggestionsPolicy('enabled') +MemberSuggestionsPolicy.other = MemberSuggestionsPolicy('other') MemberTransferAccountContentsDetails._all_field_names_ = set([]) MemberTransferAccountContentsDetails._all_fields_ = [] MemberTransferAccountContentsType.description.validator = bv.String() -MemberTransferAccountContentsType._all_field_names_ = set(["description"]) -MemberTransferAccountContentsType._all_fields_ = [ - ("description", MemberTransferAccountContentsType.description.validator) -] +MemberTransferAccountContentsType._all_field_names_ = set(['description']) +MemberTransferAccountContentsType._all_fields_ = [('description', MemberTransferAccountContentsType.description.validator)] MemberTransferredInternalFields.source_team_id.validator = team_common.TeamId_validator MemberTransferredInternalFields.target_team_id.validator = team_common.TeamId_validator -MemberTransferredInternalFields._all_field_names_ = set( - [ - "source_team_id", - "target_team_id", - ] -) +MemberTransferredInternalFields._all_field_names_ = set([ + 'source_team_id', + 'target_team_id', +]) MemberTransferredInternalFields._all_fields_ = [ - ("source_team_id", MemberTransferredInternalFields.source_team_id.validator), - ("target_team_id", MemberTransferredInternalFields.target_team_id.validator), + ('source_team_id', MemberTransferredInternalFields.source_team_id.validator), + ('target_team_id', MemberTransferredInternalFields.target_team_id.validator), ] MicrosoftLoginChangePolicyDetails.new_value.validator = MicrosoftLoginPolicy_validator -MicrosoftLoginChangePolicyDetails.previous_value.validator = bv.Nullable( - MicrosoftLoginPolicy_validator -) -MicrosoftLoginChangePolicyDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +MicrosoftLoginChangePolicyDetails.previous_value.validator = bv.Nullable(MicrosoftLoginPolicy_validator) +MicrosoftLoginChangePolicyDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) MicrosoftLoginChangePolicyDetails._all_fields_ = [ - ("new_value", MicrosoftLoginChangePolicyDetails.new_value.validator), - ("previous_value", MicrosoftLoginChangePolicyDetails.previous_value.validator), + ('new_value', MicrosoftLoginChangePolicyDetails.new_value.validator), + ('previous_value', MicrosoftLoginChangePolicyDetails.previous_value.validator), ] MicrosoftLoginChangePolicyType.description.validator = bv.String() -MicrosoftLoginChangePolicyType._all_field_names_ = set(["description"]) -MicrosoftLoginChangePolicyType._all_fields_ = [ - ("description", MicrosoftLoginChangePolicyType.description.validator) -] +MicrosoftLoginChangePolicyType._all_field_names_ = set(['description']) +MicrosoftLoginChangePolicyType._all_fields_ = [('description', MicrosoftLoginChangePolicyType.description.validator)] MicrosoftLoginPolicy._default_validator = bv.Void() MicrosoftLoginPolicy._disabled_validator = bv.Void() MicrosoftLoginPolicy._enabled_validator = bv.Void() MicrosoftLoginPolicy._other_validator = bv.Void() MicrosoftLoginPolicy._tagmap = { - "default": MicrosoftLoginPolicy._default_validator, - "disabled": MicrosoftLoginPolicy._disabled_validator, - "enabled": MicrosoftLoginPolicy._enabled_validator, - "other": MicrosoftLoginPolicy._other_validator, + 'default': MicrosoftLoginPolicy._default_validator, + 'disabled': MicrosoftLoginPolicy._disabled_validator, + 'enabled': MicrosoftLoginPolicy._enabled_validator, + 'other': MicrosoftLoginPolicy._other_validator, } -MicrosoftLoginPolicy.default = MicrosoftLoginPolicy("default") -MicrosoftLoginPolicy.disabled = MicrosoftLoginPolicy("disabled") -MicrosoftLoginPolicy.enabled = MicrosoftLoginPolicy("enabled") -MicrosoftLoginPolicy.other = MicrosoftLoginPolicy("other") +MicrosoftLoginPolicy.default = MicrosoftLoginPolicy('default') +MicrosoftLoginPolicy.disabled = MicrosoftLoginPolicy('disabled') +MicrosoftLoginPolicy.enabled = MicrosoftLoginPolicy('enabled') +MicrosoftLoginPolicy.other = MicrosoftLoginPolicy('other') MicrosoftOfficeAddinChangePolicyDetails.new_value.validator = MicrosoftOfficeAddinPolicy_validator -MicrosoftOfficeAddinChangePolicyDetails.previous_value.validator = bv.Nullable( - MicrosoftOfficeAddinPolicy_validator -) -MicrosoftOfficeAddinChangePolicyDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +MicrosoftOfficeAddinChangePolicyDetails.previous_value.validator = bv.Nullable(MicrosoftOfficeAddinPolicy_validator) +MicrosoftOfficeAddinChangePolicyDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) MicrosoftOfficeAddinChangePolicyDetails._all_fields_ = [ - ("new_value", MicrosoftOfficeAddinChangePolicyDetails.new_value.validator), - ( - "previous_value", - MicrosoftOfficeAddinChangePolicyDetails.previous_value.validator, - ), + ('new_value', MicrosoftOfficeAddinChangePolicyDetails.new_value.validator), + ('previous_value', MicrosoftOfficeAddinChangePolicyDetails.previous_value.validator), ] MicrosoftOfficeAddinChangePolicyType.description.validator = bv.String() -MicrosoftOfficeAddinChangePolicyType._all_field_names_ = set(["description"]) -MicrosoftOfficeAddinChangePolicyType._all_fields_ = [ - ("description", MicrosoftOfficeAddinChangePolicyType.description.validator) -] +MicrosoftOfficeAddinChangePolicyType._all_field_names_ = set(['description']) +MicrosoftOfficeAddinChangePolicyType._all_fields_ = [('description', MicrosoftOfficeAddinChangePolicyType.description.validator)] MicrosoftOfficeAddinPolicy._disabled_validator = bv.Void() MicrosoftOfficeAddinPolicy._enabled_validator = bv.Void() MicrosoftOfficeAddinPolicy._other_validator = bv.Void() MicrosoftOfficeAddinPolicy._tagmap = { - "disabled": MicrosoftOfficeAddinPolicy._disabled_validator, - "enabled": MicrosoftOfficeAddinPolicy._enabled_validator, - "other": MicrosoftOfficeAddinPolicy._other_validator, + 'disabled': MicrosoftOfficeAddinPolicy._disabled_validator, + 'enabled': MicrosoftOfficeAddinPolicy._enabled_validator, + 'other': MicrosoftOfficeAddinPolicy._other_validator, } -MicrosoftOfficeAddinPolicy.disabled = MicrosoftOfficeAddinPolicy("disabled") -MicrosoftOfficeAddinPolicy.enabled = MicrosoftOfficeAddinPolicy("enabled") -MicrosoftOfficeAddinPolicy.other = MicrosoftOfficeAddinPolicy("other") +MicrosoftOfficeAddinPolicy.disabled = MicrosoftOfficeAddinPolicy('disabled') +MicrosoftOfficeAddinPolicy.enabled = MicrosoftOfficeAddinPolicy('enabled') +MicrosoftOfficeAddinPolicy.other = MicrosoftOfficeAddinPolicy('other') MissingDetails.source_event_fields.validator = bv.Nullable(bv.String()) -MissingDetails._all_field_names_ = set(["source_event_fields"]) -MissingDetails._all_fields_ = [ - ("source_event_fields", MissingDetails.source_event_fields.validator) -] +MissingDetails._all_field_names_ = set(['source_event_fields']) +MissingDetails._all_fields_ = [('source_event_fields', MissingDetails.source_event_fields.validator)] MobileDeviceSessionLogInfo.session_info.validator = bv.Nullable(MobileSessionLogInfo_validator) MobileDeviceSessionLogInfo.device_name.validator = bv.String() @@ -110537,35 +103838,27 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): MobileDeviceSessionLogInfo.client_version.validator = bv.Nullable(bv.String()) MobileDeviceSessionLogInfo.os_version.validator = bv.Nullable(bv.String()) MobileDeviceSessionLogInfo.last_carrier.validator = bv.Nullable(bv.String()) -MobileDeviceSessionLogInfo._field_names_ = set( - [ - "session_info", - "device_name", - "client_type", - "client_version", - "os_version", - "last_carrier", - ] -) -MobileDeviceSessionLogInfo._all_field_names_ = DeviceSessionLogInfo._all_field_names_.union( - MobileDeviceSessionLogInfo._field_names_ -) +MobileDeviceSessionLogInfo._field_names_ = set([ + 'session_info', + 'device_name', + 'client_type', + 'client_version', + 'os_version', + 'last_carrier', +]) +MobileDeviceSessionLogInfo._all_field_names_ = DeviceSessionLogInfo._all_field_names_.union(MobileDeviceSessionLogInfo._field_names_) MobileDeviceSessionLogInfo._fields_ = [ - ("session_info", MobileDeviceSessionLogInfo.session_info.validator), - ("device_name", MobileDeviceSessionLogInfo.device_name.validator), - ("client_type", MobileDeviceSessionLogInfo.client_type.validator), - ("client_version", MobileDeviceSessionLogInfo.client_version.validator), - ("os_version", MobileDeviceSessionLogInfo.os_version.validator), - ("last_carrier", MobileDeviceSessionLogInfo.last_carrier.validator), + ('session_info', MobileDeviceSessionLogInfo.session_info.validator), + ('device_name', MobileDeviceSessionLogInfo.device_name.validator), + ('client_type', MobileDeviceSessionLogInfo.client_type.validator), + ('client_version', MobileDeviceSessionLogInfo.client_version.validator), + ('os_version', MobileDeviceSessionLogInfo.os_version.validator), + ('last_carrier', MobileDeviceSessionLogInfo.last_carrier.validator), ] -MobileDeviceSessionLogInfo._all_fields_ = ( - DeviceSessionLogInfo._all_fields_ + MobileDeviceSessionLogInfo._fields_ -) +MobileDeviceSessionLogInfo._all_fields_ = DeviceSessionLogInfo._all_fields_ + MobileDeviceSessionLogInfo._fields_ MobileSessionLogInfo._field_names_ = set([]) -MobileSessionLogInfo._all_field_names_ = SessionLogInfo._all_field_names_.union( - MobileSessionLogInfo._field_names_ -) +MobileSessionLogInfo._all_field_names_ = SessionLogInfo._all_field_names_.union(MobileSessionLogInfo._field_names_) MobileSessionLogInfo._fields_ = [] MobileSessionLogInfo._all_fields_ = SessionLogInfo._all_fields_ + MobileSessionLogInfo._fields_ @@ -110574,992 +103867,775 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): MultiTeamIdentityPolicy._enabled_validator = bv.Void() MultiTeamIdentityPolicy._other_validator = bv.Void() MultiTeamIdentityPolicy._tagmap = { - "default": MultiTeamIdentityPolicy._default_validator, - "disabled": MultiTeamIdentityPolicy._disabled_validator, - "enabled": MultiTeamIdentityPolicy._enabled_validator, - "other": MultiTeamIdentityPolicy._other_validator, + 'default': MultiTeamIdentityPolicy._default_validator, + 'disabled': MultiTeamIdentityPolicy._disabled_validator, + 'enabled': MultiTeamIdentityPolicy._enabled_validator, + 'other': MultiTeamIdentityPolicy._other_validator, } -MultiTeamIdentityPolicy.default = MultiTeamIdentityPolicy("default") -MultiTeamIdentityPolicy.disabled = MultiTeamIdentityPolicy("disabled") -MultiTeamIdentityPolicy.enabled = MultiTeamIdentityPolicy("enabled") -MultiTeamIdentityPolicy.other = MultiTeamIdentityPolicy("other") +MultiTeamIdentityPolicy.default = MultiTeamIdentityPolicy('default') +MultiTeamIdentityPolicy.disabled = MultiTeamIdentityPolicy('disabled') +MultiTeamIdentityPolicy.enabled = MultiTeamIdentityPolicy('enabled') +MultiTeamIdentityPolicy.other = MultiTeamIdentityPolicy('other') MultiTeamIdentityPolicyChangedDetails.new_value.validator = MultiTeamIdentityPolicy_validator -MultiTeamIdentityPolicyChangedDetails.previous_value.validator = bv.Nullable( - MultiTeamIdentityPolicy_validator -) -MultiTeamIdentityPolicyChangedDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +MultiTeamIdentityPolicyChangedDetails.previous_value.validator = bv.Nullable(MultiTeamIdentityPolicy_validator) +MultiTeamIdentityPolicyChangedDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) MultiTeamIdentityPolicyChangedDetails._all_fields_ = [ - ("new_value", MultiTeamIdentityPolicyChangedDetails.new_value.validator), - ("previous_value", MultiTeamIdentityPolicyChangedDetails.previous_value.validator), + ('new_value', MultiTeamIdentityPolicyChangedDetails.new_value.validator), + ('previous_value', MultiTeamIdentityPolicyChangedDetails.previous_value.validator), ] MultiTeamIdentityPolicyChangedType.description.validator = bv.String() -MultiTeamIdentityPolicyChangedType._all_field_names_ = set(["description"]) -MultiTeamIdentityPolicyChangedType._all_fields_ = [ - ("description", MultiTeamIdentityPolicyChangedType.description.validator) -] +MultiTeamIdentityPolicyChangedType._all_field_names_ = set(['description']) +MultiTeamIdentityPolicyChangedType._all_fields_ = [('description', MultiTeamIdentityPolicyChangedType.description.validator)] NamespaceRelativePathLogInfo.ns_id.validator = bv.Nullable(NamespaceId_validator) NamespaceRelativePathLogInfo.relative_path.validator = bv.Nullable(FilePath_validator) NamespaceRelativePathLogInfo.is_shared_namespace.validator = bv.Nullable(bv.Boolean()) -NamespaceRelativePathLogInfo._all_field_names_ = set( - [ - "ns_id", - "relative_path", - "is_shared_namespace", - ] -) +NamespaceRelativePathLogInfo._all_field_names_ = set([ + 'ns_id', + 'relative_path', + 'is_shared_namespace', +]) NamespaceRelativePathLogInfo._all_fields_ = [ - ("ns_id", NamespaceRelativePathLogInfo.ns_id.validator), - ("relative_path", NamespaceRelativePathLogInfo.relative_path.validator), - ("is_shared_namespace", NamespaceRelativePathLogInfo.is_shared_namespace.validator), + ('ns_id', NamespaceRelativePathLogInfo.ns_id.validator), + ('relative_path', NamespaceRelativePathLogInfo.relative_path.validator), + ('is_shared_namespace', NamespaceRelativePathLogInfo.is_shared_namespace.validator), ] NetworkControlChangePolicyDetails.new_value.validator = NetworkControlPolicy_validator -NetworkControlChangePolicyDetails.previous_value.validator = bv.Nullable( - NetworkControlPolicy_validator -) -NetworkControlChangePolicyDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +NetworkControlChangePolicyDetails.previous_value.validator = bv.Nullable(NetworkControlPolicy_validator) +NetworkControlChangePolicyDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) NetworkControlChangePolicyDetails._all_fields_ = [ - ("new_value", NetworkControlChangePolicyDetails.new_value.validator), - ("previous_value", NetworkControlChangePolicyDetails.previous_value.validator), + ('new_value', NetworkControlChangePolicyDetails.new_value.validator), + ('previous_value', NetworkControlChangePolicyDetails.previous_value.validator), ] NetworkControlChangePolicyType.description.validator = bv.String() -NetworkControlChangePolicyType._all_field_names_ = set(["description"]) -NetworkControlChangePolicyType._all_fields_ = [ - ("description", NetworkControlChangePolicyType.description.validator) -] +NetworkControlChangePolicyType._all_field_names_ = set(['description']) +NetworkControlChangePolicyType._all_fields_ = [('description', NetworkControlChangePolicyType.description.validator)] NetworkControlPolicy._disabled_validator = bv.Void() NetworkControlPolicy._enabled_validator = bv.Void() NetworkControlPolicy._other_validator = bv.Void() NetworkControlPolicy._tagmap = { - "disabled": NetworkControlPolicy._disabled_validator, - "enabled": NetworkControlPolicy._enabled_validator, - "other": NetworkControlPolicy._other_validator, + 'disabled': NetworkControlPolicy._disabled_validator, + 'enabled': NetworkControlPolicy._enabled_validator, + 'other': NetworkControlPolicy._other_validator, } -NetworkControlPolicy.disabled = NetworkControlPolicy("disabled") -NetworkControlPolicy.enabled = NetworkControlPolicy("enabled") -NetworkControlPolicy.other = NetworkControlPolicy("other") +NetworkControlPolicy.disabled = NetworkControlPolicy('disabled') +NetworkControlPolicy.enabled = NetworkControlPolicy('enabled') +NetworkControlPolicy.other = NetworkControlPolicy('other') NoExpirationLinkGenCreateReportDetails.start_date.validator = common.DropboxTimestamp_validator NoExpirationLinkGenCreateReportDetails.end_date.validator = common.DropboxTimestamp_validator -NoExpirationLinkGenCreateReportDetails._all_field_names_ = set( - [ - "start_date", - "end_date", - ] -) +NoExpirationLinkGenCreateReportDetails._all_field_names_ = set([ + 'start_date', + 'end_date', +]) NoExpirationLinkGenCreateReportDetails._all_fields_ = [ - ("start_date", NoExpirationLinkGenCreateReportDetails.start_date.validator), - ("end_date", NoExpirationLinkGenCreateReportDetails.end_date.validator), + ('start_date', NoExpirationLinkGenCreateReportDetails.start_date.validator), + ('end_date', NoExpirationLinkGenCreateReportDetails.end_date.validator), ] NoExpirationLinkGenCreateReportType.description.validator = bv.String() -NoExpirationLinkGenCreateReportType._all_field_names_ = set(["description"]) -NoExpirationLinkGenCreateReportType._all_fields_ = [ - ("description", NoExpirationLinkGenCreateReportType.description.validator) -] +NoExpirationLinkGenCreateReportType._all_field_names_ = set(['description']) +NoExpirationLinkGenCreateReportType._all_fields_ = [('description', NoExpirationLinkGenCreateReportType.description.validator)] -NoExpirationLinkGenReportFailedDetails.failure_reason.validator = ( - team.TeamReportFailureReason_validator -) -NoExpirationLinkGenReportFailedDetails._all_field_names_ = set(["failure_reason"]) -NoExpirationLinkGenReportFailedDetails._all_fields_ = [ - ("failure_reason", NoExpirationLinkGenReportFailedDetails.failure_reason.validator) -] +NoExpirationLinkGenReportFailedDetails.failure_reason.validator = team.TeamReportFailureReason_validator +NoExpirationLinkGenReportFailedDetails._all_field_names_ = set(['failure_reason']) +NoExpirationLinkGenReportFailedDetails._all_fields_ = [('failure_reason', NoExpirationLinkGenReportFailedDetails.failure_reason.validator)] NoExpirationLinkGenReportFailedType.description.validator = bv.String() -NoExpirationLinkGenReportFailedType._all_field_names_ = set(["description"]) -NoExpirationLinkGenReportFailedType._all_fields_ = [ - ("description", NoExpirationLinkGenReportFailedType.description.validator) -] +NoExpirationLinkGenReportFailedType._all_field_names_ = set(['description']) +NoExpirationLinkGenReportFailedType._all_fields_ = [('description', NoExpirationLinkGenReportFailedType.description.validator)] NoPasswordLinkGenCreateReportDetails.start_date.validator = common.DropboxTimestamp_validator NoPasswordLinkGenCreateReportDetails.end_date.validator = common.DropboxTimestamp_validator -NoPasswordLinkGenCreateReportDetails._all_field_names_ = set( - [ - "start_date", - "end_date", - ] -) +NoPasswordLinkGenCreateReportDetails._all_field_names_ = set([ + 'start_date', + 'end_date', +]) NoPasswordLinkGenCreateReportDetails._all_fields_ = [ - ("start_date", NoPasswordLinkGenCreateReportDetails.start_date.validator), - ("end_date", NoPasswordLinkGenCreateReportDetails.end_date.validator), + ('start_date', NoPasswordLinkGenCreateReportDetails.start_date.validator), + ('end_date', NoPasswordLinkGenCreateReportDetails.end_date.validator), ] NoPasswordLinkGenCreateReportType.description.validator = bv.String() -NoPasswordLinkGenCreateReportType._all_field_names_ = set(["description"]) -NoPasswordLinkGenCreateReportType._all_fields_ = [ - ("description", NoPasswordLinkGenCreateReportType.description.validator) -] +NoPasswordLinkGenCreateReportType._all_field_names_ = set(['description']) +NoPasswordLinkGenCreateReportType._all_fields_ = [('description', NoPasswordLinkGenCreateReportType.description.validator)] -NoPasswordLinkGenReportFailedDetails.failure_reason.validator = ( - team.TeamReportFailureReason_validator -) -NoPasswordLinkGenReportFailedDetails._all_field_names_ = set(["failure_reason"]) -NoPasswordLinkGenReportFailedDetails._all_fields_ = [ - ("failure_reason", NoPasswordLinkGenReportFailedDetails.failure_reason.validator) -] +NoPasswordLinkGenReportFailedDetails.failure_reason.validator = team.TeamReportFailureReason_validator +NoPasswordLinkGenReportFailedDetails._all_field_names_ = set(['failure_reason']) +NoPasswordLinkGenReportFailedDetails._all_fields_ = [('failure_reason', NoPasswordLinkGenReportFailedDetails.failure_reason.validator)] NoPasswordLinkGenReportFailedType.description.validator = bv.String() -NoPasswordLinkGenReportFailedType._all_field_names_ = set(["description"]) -NoPasswordLinkGenReportFailedType._all_fields_ = [ - ("description", NoPasswordLinkGenReportFailedType.description.validator) -] +NoPasswordLinkGenReportFailedType._all_field_names_ = set(['description']) +NoPasswordLinkGenReportFailedType._all_fields_ = [('description', NoPasswordLinkGenReportFailedType.description.validator)] NoPasswordLinkViewCreateReportDetails.start_date.validator = common.DropboxTimestamp_validator NoPasswordLinkViewCreateReportDetails.end_date.validator = common.DropboxTimestamp_validator -NoPasswordLinkViewCreateReportDetails._all_field_names_ = set( - [ - "start_date", - "end_date", - ] -) +NoPasswordLinkViewCreateReportDetails._all_field_names_ = set([ + 'start_date', + 'end_date', +]) NoPasswordLinkViewCreateReportDetails._all_fields_ = [ - ("start_date", NoPasswordLinkViewCreateReportDetails.start_date.validator), - ("end_date", NoPasswordLinkViewCreateReportDetails.end_date.validator), + ('start_date', NoPasswordLinkViewCreateReportDetails.start_date.validator), + ('end_date', NoPasswordLinkViewCreateReportDetails.end_date.validator), ] NoPasswordLinkViewCreateReportType.description.validator = bv.String() -NoPasswordLinkViewCreateReportType._all_field_names_ = set(["description"]) -NoPasswordLinkViewCreateReportType._all_fields_ = [ - ("description", NoPasswordLinkViewCreateReportType.description.validator) -] +NoPasswordLinkViewCreateReportType._all_field_names_ = set(['description']) +NoPasswordLinkViewCreateReportType._all_fields_ = [('description', NoPasswordLinkViewCreateReportType.description.validator)] -NoPasswordLinkViewReportFailedDetails.failure_reason.validator = ( - team.TeamReportFailureReason_validator -) -NoPasswordLinkViewReportFailedDetails._all_field_names_ = set(["failure_reason"]) -NoPasswordLinkViewReportFailedDetails._all_fields_ = [ - ("failure_reason", NoPasswordLinkViewReportFailedDetails.failure_reason.validator) -] +NoPasswordLinkViewReportFailedDetails.failure_reason.validator = team.TeamReportFailureReason_validator +NoPasswordLinkViewReportFailedDetails._all_field_names_ = set(['failure_reason']) +NoPasswordLinkViewReportFailedDetails._all_fields_ = [('failure_reason', NoPasswordLinkViewReportFailedDetails.failure_reason.validator)] NoPasswordLinkViewReportFailedType.description.validator = bv.String() -NoPasswordLinkViewReportFailedType._all_field_names_ = set(["description"]) -NoPasswordLinkViewReportFailedType._all_fields_ = [ - ("description", NoPasswordLinkViewReportFailedType.description.validator) -] +NoPasswordLinkViewReportFailedType._all_field_names_ = set(['description']) +NoPasswordLinkViewReportFailedType._all_fields_ = [('description', NoPasswordLinkViewReportFailedType.description.validator)] UserLogInfo.account_id.validator = bv.Nullable(users_common.AccountId_validator) UserLogInfo.display_name.validator = bv.Nullable(common.DisplayNameLegacy_validator) UserLogInfo.email.validator = bv.Nullable(EmailAddress_validator) -UserLogInfo._field_names_ = set( - [ - "account_id", - "display_name", - "email", - ] -) +UserLogInfo._field_names_ = set([ + 'account_id', + 'display_name', + 'email', +]) UserLogInfo._all_field_names_ = UserLogInfo._field_names_ UserLogInfo._fields_ = [ - ("account_id", UserLogInfo.account_id.validator), - ("display_name", UserLogInfo.display_name.validator), - ("email", UserLogInfo.email.validator), + ('account_id', UserLogInfo.account_id.validator), + ('display_name', UserLogInfo.display_name.validator), + ('email', UserLogInfo.email.validator), ] UserLogInfo._all_fields_ = UserLogInfo._fields_ UserLogInfo._tag_to_subtype_ = { - ("non_team_member",): NonTeamMemberLogInfo_validator, - ("team_member",): TeamMemberLogInfo_validator, - ("trusted_non_team_member",): TrustedNonTeamMemberLogInfo_validator, + ('non_team_member',): NonTeamMemberLogInfo_validator, + ('team_member',): TeamMemberLogInfo_validator, + ('trusted_non_team_member',): TrustedNonTeamMemberLogInfo_validator, } UserLogInfo._pytype_to_tag_and_subtype_ = { - NonTeamMemberLogInfo: (("non_team_member",), NonTeamMemberLogInfo_validator), - TeamMemberLogInfo: (("team_member",), TeamMemberLogInfo_validator), - TrustedNonTeamMemberLogInfo: ( - ("trusted_non_team_member",), - TrustedNonTeamMemberLogInfo_validator, - ), + NonTeamMemberLogInfo: (('non_team_member',), NonTeamMemberLogInfo_validator), + TeamMemberLogInfo: (('team_member',), TeamMemberLogInfo_validator), + TrustedNonTeamMemberLogInfo: (('trusted_non_team_member',), TrustedNonTeamMemberLogInfo_validator), } UserLogInfo._is_catch_all_ = True NonTeamMemberLogInfo._field_names_ = set([]) -NonTeamMemberLogInfo._all_field_names_ = UserLogInfo._all_field_names_.union( - NonTeamMemberLogInfo._field_names_ -) +NonTeamMemberLogInfo._all_field_names_ = UserLogInfo._all_field_names_.union(NonTeamMemberLogInfo._field_names_) NonTeamMemberLogInfo._fields_ = [] NonTeamMemberLogInfo._all_fields_ = UserLogInfo._all_fields_ + NonTeamMemberLogInfo._fields_ NonTrustedTeamDetails.team.validator = bv.String() -NonTrustedTeamDetails._all_field_names_ = set(["team"]) -NonTrustedTeamDetails._all_fields_ = [("team", NonTrustedTeamDetails.team.validator)] +NonTrustedTeamDetails._all_field_names_ = set(['team']) +NonTrustedTeamDetails._all_fields_ = [('team', NonTrustedTeamDetails.team.validator)] NoteAclInviteOnlyDetails._all_field_names_ = set([]) NoteAclInviteOnlyDetails._all_fields_ = [] NoteAclInviteOnlyType.description.validator = bv.String() -NoteAclInviteOnlyType._all_field_names_ = set(["description"]) -NoteAclInviteOnlyType._all_fields_ = [("description", NoteAclInviteOnlyType.description.validator)] +NoteAclInviteOnlyType._all_field_names_ = set(['description']) +NoteAclInviteOnlyType._all_fields_ = [('description', NoteAclInviteOnlyType.description.validator)] NoteAclLinkDetails._all_field_names_ = set([]) NoteAclLinkDetails._all_fields_ = [] NoteAclLinkType.description.validator = bv.String() -NoteAclLinkType._all_field_names_ = set(["description"]) -NoteAclLinkType._all_fields_ = [("description", NoteAclLinkType.description.validator)] +NoteAclLinkType._all_field_names_ = set(['description']) +NoteAclLinkType._all_fields_ = [('description', NoteAclLinkType.description.validator)] NoteAclTeamLinkDetails._all_field_names_ = set([]) NoteAclTeamLinkDetails._all_fields_ = [] NoteAclTeamLinkType.description.validator = bv.String() -NoteAclTeamLinkType._all_field_names_ = set(["description"]) -NoteAclTeamLinkType._all_fields_ = [("description", NoteAclTeamLinkType.description.validator)] +NoteAclTeamLinkType._all_field_names_ = set(['description']) +NoteAclTeamLinkType._all_fields_ = [('description', NoteAclTeamLinkType.description.validator)] NoteShareReceiveDetails._all_field_names_ = set([]) NoteShareReceiveDetails._all_fields_ = [] NoteShareReceiveType.description.validator = bv.String() -NoteShareReceiveType._all_field_names_ = set(["description"]) -NoteShareReceiveType._all_fields_ = [("description", NoteShareReceiveType.description.validator)] +NoteShareReceiveType._all_field_names_ = set(['description']) +NoteShareReceiveType._all_fields_ = [('description', NoteShareReceiveType.description.validator)] NoteSharedDetails._all_field_names_ = set([]) NoteSharedDetails._all_fields_ = [] NoteSharedType.description.validator = bv.String() -NoteSharedType._all_field_names_ = set(["description"]) -NoteSharedType._all_fields_ = [("description", NoteSharedType.description.validator)] +NoteSharedType._all_field_names_ = set(['description']) +NoteSharedType._all_fields_ = [('description', NoteSharedType.description.validator)] ObjectLabelAddedDetails.label_type.validator = LabelType_validator -ObjectLabelAddedDetails._all_field_names_ = set(["label_type"]) -ObjectLabelAddedDetails._all_fields_ = [ - ("label_type", ObjectLabelAddedDetails.label_type.validator) -] +ObjectLabelAddedDetails._all_field_names_ = set(['label_type']) +ObjectLabelAddedDetails._all_fields_ = [('label_type', ObjectLabelAddedDetails.label_type.validator)] ObjectLabelAddedType.description.validator = bv.String() -ObjectLabelAddedType._all_field_names_ = set(["description"]) -ObjectLabelAddedType._all_fields_ = [("description", ObjectLabelAddedType.description.validator)] +ObjectLabelAddedType._all_field_names_ = set(['description']) +ObjectLabelAddedType._all_fields_ = [('description', ObjectLabelAddedType.description.validator)] ObjectLabelRemovedDetails.label_type.validator = LabelType_validator -ObjectLabelRemovedDetails._all_field_names_ = set(["label_type"]) -ObjectLabelRemovedDetails._all_fields_ = [ - ("label_type", ObjectLabelRemovedDetails.label_type.validator) -] +ObjectLabelRemovedDetails._all_field_names_ = set(['label_type']) +ObjectLabelRemovedDetails._all_fields_ = [('label_type', ObjectLabelRemovedDetails.label_type.validator)] ObjectLabelRemovedType.description.validator = bv.String() -ObjectLabelRemovedType._all_field_names_ = set(["description"]) -ObjectLabelRemovedType._all_fields_ = [ - ("description", ObjectLabelRemovedType.description.validator) -] +ObjectLabelRemovedType._all_field_names_ = set(['description']) +ObjectLabelRemovedType._all_fields_ = [('description', ObjectLabelRemovedType.description.validator)] ObjectLabelUpdatedValueDetails.label_type.validator = LabelType_validator -ObjectLabelUpdatedValueDetails._all_field_names_ = set(["label_type"]) -ObjectLabelUpdatedValueDetails._all_fields_ = [ - ("label_type", ObjectLabelUpdatedValueDetails.label_type.validator) -] +ObjectLabelUpdatedValueDetails._all_field_names_ = set(['label_type']) +ObjectLabelUpdatedValueDetails._all_fields_ = [('label_type', ObjectLabelUpdatedValueDetails.label_type.validator)] ObjectLabelUpdatedValueType.description.validator = bv.String() -ObjectLabelUpdatedValueType._all_field_names_ = set(["description"]) -ObjectLabelUpdatedValueType._all_fields_ = [ - ("description", ObjectLabelUpdatedValueType.description.validator) -] +ObjectLabelUpdatedValueType._all_field_names_ = set(['description']) +ObjectLabelUpdatedValueType._all_fields_ = [('description', ObjectLabelUpdatedValueType.description.validator)] OpenNoteSharedDetails._all_field_names_ = set([]) OpenNoteSharedDetails._all_fields_ = [] OpenNoteSharedType.description.validator = bv.String() -OpenNoteSharedType._all_field_names_ = set(["description"]) -OpenNoteSharedType._all_fields_ = [("description", OpenNoteSharedType.description.validator)] +OpenNoteSharedType._all_field_names_ = set(['description']) +OpenNoteSharedType._all_fields_ = [('description', OpenNoteSharedType.description.validator)] OrganizationDetails.organization.validator = bv.String() -OrganizationDetails._all_field_names_ = set(["organization"]) -OrganizationDetails._all_fields_ = [("organization", OrganizationDetails.organization.validator)] +OrganizationDetails._all_field_names_ = set(['organization']) +OrganizationDetails._all_fields_ = [('organization', OrganizationDetails.organization.validator)] OrganizationName.organization.validator = bv.String() -OrganizationName._all_field_names_ = set(["organization"]) -OrganizationName._all_fields_ = [("organization", OrganizationName.organization.validator)] +OrganizationName._all_field_names_ = set(['organization']) +OrganizationName._all_fields_ = [('organization', OrganizationName.organization.validator)] OrganizeFolderWithTidyDetails._all_field_names_ = set([]) OrganizeFolderWithTidyDetails._all_fields_ = [] OrganizeFolderWithTidyType.description.validator = bv.String() -OrganizeFolderWithTidyType._all_field_names_ = set(["description"]) -OrganizeFolderWithTidyType._all_fields_ = [ - ("description", OrganizeFolderWithTidyType.description.validator) -] +OrganizeFolderWithTidyType._all_field_names_ = set(['description']) +OrganizeFolderWithTidyType._all_fields_ = [('description', OrganizeFolderWithTidyType.description.validator)] OriginLogInfo.geo_location.validator = bv.Nullable(GeoLocationLogInfo_validator) OriginLogInfo.access_method.validator = AccessMethodLogInfo_validator -OriginLogInfo._all_field_names_ = set( - [ - "geo_location", - "access_method", - ] -) +OriginLogInfo._all_field_names_ = set([ + 'geo_location', + 'access_method', +]) OriginLogInfo._all_fields_ = [ - ("geo_location", OriginLogInfo.geo_location.validator), - ("access_method", OriginLogInfo.access_method.validator), + ('geo_location', OriginLogInfo.geo_location.validator), + ('access_method', OriginLogInfo.access_method.validator), ] OutdatedLinkViewCreateReportDetails.start_date.validator = common.DropboxTimestamp_validator OutdatedLinkViewCreateReportDetails.end_date.validator = common.DropboxTimestamp_validator -OutdatedLinkViewCreateReportDetails._all_field_names_ = set( - [ - "start_date", - "end_date", - ] -) +OutdatedLinkViewCreateReportDetails._all_field_names_ = set([ + 'start_date', + 'end_date', +]) OutdatedLinkViewCreateReportDetails._all_fields_ = [ - ("start_date", OutdatedLinkViewCreateReportDetails.start_date.validator), - ("end_date", OutdatedLinkViewCreateReportDetails.end_date.validator), + ('start_date', OutdatedLinkViewCreateReportDetails.start_date.validator), + ('end_date', OutdatedLinkViewCreateReportDetails.end_date.validator), ] OutdatedLinkViewCreateReportType.description.validator = bv.String() -OutdatedLinkViewCreateReportType._all_field_names_ = set(["description"]) -OutdatedLinkViewCreateReportType._all_fields_ = [ - ("description", OutdatedLinkViewCreateReportType.description.validator) -] +OutdatedLinkViewCreateReportType._all_field_names_ = set(['description']) +OutdatedLinkViewCreateReportType._all_fields_ = [('description', OutdatedLinkViewCreateReportType.description.validator)] -OutdatedLinkViewReportFailedDetails.failure_reason.validator = ( - team.TeamReportFailureReason_validator -) -OutdatedLinkViewReportFailedDetails._all_field_names_ = set(["failure_reason"]) -OutdatedLinkViewReportFailedDetails._all_fields_ = [ - ("failure_reason", OutdatedLinkViewReportFailedDetails.failure_reason.validator) -] +OutdatedLinkViewReportFailedDetails.failure_reason.validator = team.TeamReportFailureReason_validator +OutdatedLinkViewReportFailedDetails._all_field_names_ = set(['failure_reason']) +OutdatedLinkViewReportFailedDetails._all_fields_ = [('failure_reason', OutdatedLinkViewReportFailedDetails.failure_reason.validator)] OutdatedLinkViewReportFailedType.description.validator = bv.String() -OutdatedLinkViewReportFailedType._all_field_names_ = set(["description"]) -OutdatedLinkViewReportFailedType._all_fields_ = [ - ("description", OutdatedLinkViewReportFailedType.description.validator) -] +OutdatedLinkViewReportFailedType._all_field_names_ = set(['description']) +OutdatedLinkViewReportFailedType._all_fields_ = [('description', OutdatedLinkViewReportFailedType.description.validator)] PaperAccessType._commenter_validator = bv.Void() PaperAccessType._editor_validator = bv.Void() PaperAccessType._viewer_validator = bv.Void() PaperAccessType._other_validator = bv.Void() PaperAccessType._tagmap = { - "commenter": PaperAccessType._commenter_validator, - "editor": PaperAccessType._editor_validator, - "viewer": PaperAccessType._viewer_validator, - "other": PaperAccessType._other_validator, + 'commenter': PaperAccessType._commenter_validator, + 'editor': PaperAccessType._editor_validator, + 'viewer': PaperAccessType._viewer_validator, + 'other': PaperAccessType._other_validator, } -PaperAccessType.commenter = PaperAccessType("commenter") -PaperAccessType.editor = PaperAccessType("editor") -PaperAccessType.viewer = PaperAccessType("viewer") -PaperAccessType.other = PaperAccessType("other") +PaperAccessType.commenter = PaperAccessType('commenter') +PaperAccessType.editor = PaperAccessType('editor') +PaperAccessType.viewer = PaperAccessType('viewer') +PaperAccessType.other = PaperAccessType('other') PaperAdminExportStartDetails._all_field_names_ = set([]) PaperAdminExportStartDetails._all_fields_ = [] PaperAdminExportStartType.description.validator = bv.String() -PaperAdminExportStartType._all_field_names_ = set(["description"]) -PaperAdminExportStartType._all_fields_ = [ - ("description", PaperAdminExportStartType.description.validator) -] - -PaperChangeDeploymentPolicyDetails.new_value.validator = ( - team_policies.PaperDeploymentPolicy_validator -) -PaperChangeDeploymentPolicyDetails.previous_value.validator = bv.Nullable( - team_policies.PaperDeploymentPolicy_validator -) -PaperChangeDeploymentPolicyDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +PaperAdminExportStartType._all_field_names_ = set(['description']) +PaperAdminExportStartType._all_fields_ = [('description', PaperAdminExportStartType.description.validator)] + +PaperChangeDeploymentPolicyDetails.new_value.validator = team_policies.PaperDeploymentPolicy_validator +PaperChangeDeploymentPolicyDetails.previous_value.validator = bv.Nullable(team_policies.PaperDeploymentPolicy_validator) +PaperChangeDeploymentPolicyDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) PaperChangeDeploymentPolicyDetails._all_fields_ = [ - ("new_value", PaperChangeDeploymentPolicyDetails.new_value.validator), - ("previous_value", PaperChangeDeploymentPolicyDetails.previous_value.validator), + ('new_value', PaperChangeDeploymentPolicyDetails.new_value.validator), + ('previous_value', PaperChangeDeploymentPolicyDetails.previous_value.validator), ] PaperChangeDeploymentPolicyType.description.validator = bv.String() -PaperChangeDeploymentPolicyType._all_field_names_ = set(["description"]) -PaperChangeDeploymentPolicyType._all_fields_ = [ - ("description", PaperChangeDeploymentPolicyType.description.validator) -] +PaperChangeDeploymentPolicyType._all_field_names_ = set(['description']) +PaperChangeDeploymentPolicyType._all_fields_ = [('description', PaperChangeDeploymentPolicyType.description.validator)] PaperChangeMemberLinkPolicyDetails.new_value.validator = PaperMemberPolicy_validator -PaperChangeMemberLinkPolicyDetails._all_field_names_ = set(["new_value"]) -PaperChangeMemberLinkPolicyDetails._all_fields_ = [ - ("new_value", PaperChangeMemberLinkPolicyDetails.new_value.validator) -] +PaperChangeMemberLinkPolicyDetails._all_field_names_ = set(['new_value']) +PaperChangeMemberLinkPolicyDetails._all_fields_ = [('new_value', PaperChangeMemberLinkPolicyDetails.new_value.validator)] PaperChangeMemberLinkPolicyType.description.validator = bv.String() -PaperChangeMemberLinkPolicyType._all_field_names_ = set(["description"]) -PaperChangeMemberLinkPolicyType._all_fields_ = [ - ("description", PaperChangeMemberLinkPolicyType.description.validator) -] +PaperChangeMemberLinkPolicyType._all_field_names_ = set(['description']) +PaperChangeMemberLinkPolicyType._all_fields_ = [('description', PaperChangeMemberLinkPolicyType.description.validator)] PaperChangeMemberPolicyDetails.new_value.validator = PaperMemberPolicy_validator PaperChangeMemberPolicyDetails.previous_value.validator = bv.Nullable(PaperMemberPolicy_validator) -PaperChangeMemberPolicyDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +PaperChangeMemberPolicyDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) PaperChangeMemberPolicyDetails._all_fields_ = [ - ("new_value", PaperChangeMemberPolicyDetails.new_value.validator), - ("previous_value", PaperChangeMemberPolicyDetails.previous_value.validator), + ('new_value', PaperChangeMemberPolicyDetails.new_value.validator), + ('previous_value', PaperChangeMemberPolicyDetails.previous_value.validator), ] PaperChangeMemberPolicyType.description.validator = bv.String() -PaperChangeMemberPolicyType._all_field_names_ = set(["description"]) -PaperChangeMemberPolicyType._all_fields_ = [ - ("description", PaperChangeMemberPolicyType.description.validator) -] +PaperChangeMemberPolicyType._all_field_names_ = set(['description']) +PaperChangeMemberPolicyType._all_fields_ = [('description', PaperChangeMemberPolicyType.description.validator)] PaperChangePolicyDetails.new_value.validator = team_policies.PaperEnabledPolicy_validator -PaperChangePolicyDetails.previous_value.validator = bv.Nullable( - team_policies.PaperEnabledPolicy_validator -) -PaperChangePolicyDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +PaperChangePolicyDetails.previous_value.validator = bv.Nullable(team_policies.PaperEnabledPolicy_validator) +PaperChangePolicyDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) PaperChangePolicyDetails._all_fields_ = [ - ("new_value", PaperChangePolicyDetails.new_value.validator), - ("previous_value", PaperChangePolicyDetails.previous_value.validator), + ('new_value', PaperChangePolicyDetails.new_value.validator), + ('previous_value', PaperChangePolicyDetails.previous_value.validator), ] PaperChangePolicyType.description.validator = bv.String() -PaperChangePolicyType._all_field_names_ = set(["description"]) -PaperChangePolicyType._all_fields_ = [("description", PaperChangePolicyType.description.validator)] +PaperChangePolicyType._all_field_names_ = set(['description']) +PaperChangePolicyType._all_fields_ = [('description', PaperChangePolicyType.description.validator)] PaperContentAddMemberDetails.event_uuid.validator = bv.String() -PaperContentAddMemberDetails._all_field_names_ = set(["event_uuid"]) -PaperContentAddMemberDetails._all_fields_ = [ - ("event_uuid", PaperContentAddMemberDetails.event_uuid.validator) -] +PaperContentAddMemberDetails._all_field_names_ = set(['event_uuid']) +PaperContentAddMemberDetails._all_fields_ = [('event_uuid', PaperContentAddMemberDetails.event_uuid.validator)] PaperContentAddMemberType.description.validator = bv.String() -PaperContentAddMemberType._all_field_names_ = set(["description"]) -PaperContentAddMemberType._all_fields_ = [ - ("description", PaperContentAddMemberType.description.validator) -] +PaperContentAddMemberType._all_field_names_ = set(['description']) +PaperContentAddMemberType._all_fields_ = [('description', PaperContentAddMemberType.description.validator)] PaperContentAddToFolderDetails.event_uuid.validator = bv.String() PaperContentAddToFolderDetails.target_asset_index.validator = bv.UInt64() PaperContentAddToFolderDetails.parent_asset_index.validator = bv.UInt64() -PaperContentAddToFolderDetails._all_field_names_ = set( - [ - "event_uuid", - "target_asset_index", - "parent_asset_index", - ] -) +PaperContentAddToFolderDetails._all_field_names_ = set([ + 'event_uuid', + 'target_asset_index', + 'parent_asset_index', +]) PaperContentAddToFolderDetails._all_fields_ = [ - ("event_uuid", PaperContentAddToFolderDetails.event_uuid.validator), - ("target_asset_index", PaperContentAddToFolderDetails.target_asset_index.validator), - ("parent_asset_index", PaperContentAddToFolderDetails.parent_asset_index.validator), + ('event_uuid', PaperContentAddToFolderDetails.event_uuid.validator), + ('target_asset_index', PaperContentAddToFolderDetails.target_asset_index.validator), + ('parent_asset_index', PaperContentAddToFolderDetails.parent_asset_index.validator), ] PaperContentAddToFolderType.description.validator = bv.String() -PaperContentAddToFolderType._all_field_names_ = set(["description"]) -PaperContentAddToFolderType._all_fields_ = [ - ("description", PaperContentAddToFolderType.description.validator) -] +PaperContentAddToFolderType._all_field_names_ = set(['description']) +PaperContentAddToFolderType._all_fields_ = [('description', PaperContentAddToFolderType.description.validator)] PaperContentArchiveDetails.event_uuid.validator = bv.String() -PaperContentArchiveDetails._all_field_names_ = set(["event_uuid"]) -PaperContentArchiveDetails._all_fields_ = [ - ("event_uuid", PaperContentArchiveDetails.event_uuid.validator) -] +PaperContentArchiveDetails._all_field_names_ = set(['event_uuid']) +PaperContentArchiveDetails._all_fields_ = [('event_uuid', PaperContentArchiveDetails.event_uuid.validator)] PaperContentArchiveType.description.validator = bv.String() -PaperContentArchiveType._all_field_names_ = set(["description"]) -PaperContentArchiveType._all_fields_ = [ - ("description", PaperContentArchiveType.description.validator) -] +PaperContentArchiveType._all_field_names_ = set(['description']) +PaperContentArchiveType._all_fields_ = [('description', PaperContentArchiveType.description.validator)] PaperContentCreateDetails.event_uuid.validator = bv.String() -PaperContentCreateDetails._all_field_names_ = set(["event_uuid"]) -PaperContentCreateDetails._all_fields_ = [ - ("event_uuid", PaperContentCreateDetails.event_uuid.validator) -] +PaperContentCreateDetails._all_field_names_ = set(['event_uuid']) +PaperContentCreateDetails._all_fields_ = [('event_uuid', PaperContentCreateDetails.event_uuid.validator)] PaperContentCreateType.description.validator = bv.String() -PaperContentCreateType._all_field_names_ = set(["description"]) -PaperContentCreateType._all_fields_ = [ - ("description", PaperContentCreateType.description.validator) -] +PaperContentCreateType._all_field_names_ = set(['description']) +PaperContentCreateType._all_fields_ = [('description', PaperContentCreateType.description.validator)] PaperContentPermanentlyDeleteDetails.event_uuid.validator = bv.String() -PaperContentPermanentlyDeleteDetails._all_field_names_ = set(["event_uuid"]) -PaperContentPermanentlyDeleteDetails._all_fields_ = [ - ("event_uuid", PaperContentPermanentlyDeleteDetails.event_uuid.validator) -] +PaperContentPermanentlyDeleteDetails._all_field_names_ = set(['event_uuid']) +PaperContentPermanentlyDeleteDetails._all_fields_ = [('event_uuid', PaperContentPermanentlyDeleteDetails.event_uuid.validator)] PaperContentPermanentlyDeleteType.description.validator = bv.String() -PaperContentPermanentlyDeleteType._all_field_names_ = set(["description"]) -PaperContentPermanentlyDeleteType._all_fields_ = [ - ("description", PaperContentPermanentlyDeleteType.description.validator) -] +PaperContentPermanentlyDeleteType._all_field_names_ = set(['description']) +PaperContentPermanentlyDeleteType._all_fields_ = [('description', PaperContentPermanentlyDeleteType.description.validator)] PaperContentRemoveFromFolderDetails.event_uuid.validator = bv.String() PaperContentRemoveFromFolderDetails.target_asset_index.validator = bv.Nullable(bv.UInt64()) PaperContentRemoveFromFolderDetails.parent_asset_index.validator = bv.Nullable(bv.UInt64()) -PaperContentRemoveFromFolderDetails._all_field_names_ = set( - [ - "event_uuid", - "target_asset_index", - "parent_asset_index", - ] -) +PaperContentRemoveFromFolderDetails._all_field_names_ = set([ + 'event_uuid', + 'target_asset_index', + 'parent_asset_index', +]) PaperContentRemoveFromFolderDetails._all_fields_ = [ - ("event_uuid", PaperContentRemoveFromFolderDetails.event_uuid.validator), - ( - "target_asset_index", - PaperContentRemoveFromFolderDetails.target_asset_index.validator, - ), - ( - "parent_asset_index", - PaperContentRemoveFromFolderDetails.parent_asset_index.validator, - ), + ('event_uuid', PaperContentRemoveFromFolderDetails.event_uuid.validator), + ('target_asset_index', PaperContentRemoveFromFolderDetails.target_asset_index.validator), + ('parent_asset_index', PaperContentRemoveFromFolderDetails.parent_asset_index.validator), ] PaperContentRemoveFromFolderType.description.validator = bv.String() -PaperContentRemoveFromFolderType._all_field_names_ = set(["description"]) -PaperContentRemoveFromFolderType._all_fields_ = [ - ("description", PaperContentRemoveFromFolderType.description.validator) -] +PaperContentRemoveFromFolderType._all_field_names_ = set(['description']) +PaperContentRemoveFromFolderType._all_fields_ = [('description', PaperContentRemoveFromFolderType.description.validator)] PaperContentRemoveMemberDetails.event_uuid.validator = bv.String() -PaperContentRemoveMemberDetails._all_field_names_ = set(["event_uuid"]) -PaperContentRemoveMemberDetails._all_fields_ = [ - ("event_uuid", PaperContentRemoveMemberDetails.event_uuid.validator) -] +PaperContentRemoveMemberDetails._all_field_names_ = set(['event_uuid']) +PaperContentRemoveMemberDetails._all_fields_ = [('event_uuid', PaperContentRemoveMemberDetails.event_uuid.validator)] PaperContentRemoveMemberType.description.validator = bv.String() -PaperContentRemoveMemberType._all_field_names_ = set(["description"]) -PaperContentRemoveMemberType._all_fields_ = [ - ("description", PaperContentRemoveMemberType.description.validator) -] +PaperContentRemoveMemberType._all_field_names_ = set(['description']) +PaperContentRemoveMemberType._all_fields_ = [('description', PaperContentRemoveMemberType.description.validator)] PaperContentRenameDetails.event_uuid.validator = bv.String() -PaperContentRenameDetails._all_field_names_ = set(["event_uuid"]) -PaperContentRenameDetails._all_fields_ = [ - ("event_uuid", PaperContentRenameDetails.event_uuid.validator) -] +PaperContentRenameDetails._all_field_names_ = set(['event_uuid']) +PaperContentRenameDetails._all_fields_ = [('event_uuid', PaperContentRenameDetails.event_uuid.validator)] PaperContentRenameType.description.validator = bv.String() -PaperContentRenameType._all_field_names_ = set(["description"]) -PaperContentRenameType._all_fields_ = [ - ("description", PaperContentRenameType.description.validator) -] +PaperContentRenameType._all_field_names_ = set(['description']) +PaperContentRenameType._all_fields_ = [('description', PaperContentRenameType.description.validator)] PaperContentRestoreDetails.event_uuid.validator = bv.String() -PaperContentRestoreDetails._all_field_names_ = set(["event_uuid"]) -PaperContentRestoreDetails._all_fields_ = [ - ("event_uuid", PaperContentRestoreDetails.event_uuid.validator) -] +PaperContentRestoreDetails._all_field_names_ = set(['event_uuid']) +PaperContentRestoreDetails._all_fields_ = [('event_uuid', PaperContentRestoreDetails.event_uuid.validator)] PaperContentRestoreType.description.validator = bv.String() -PaperContentRestoreType._all_field_names_ = set(["description"]) -PaperContentRestoreType._all_fields_ = [ - ("description", PaperContentRestoreType.description.validator) -] +PaperContentRestoreType._all_field_names_ = set(['description']) +PaperContentRestoreType._all_fields_ = [('description', PaperContentRestoreType.description.validator)] PaperDefaultFolderPolicy._everyone_in_team_validator = bv.Void() PaperDefaultFolderPolicy._invite_only_validator = bv.Void() PaperDefaultFolderPolicy._other_validator = bv.Void() PaperDefaultFolderPolicy._tagmap = { - "everyone_in_team": PaperDefaultFolderPolicy._everyone_in_team_validator, - "invite_only": PaperDefaultFolderPolicy._invite_only_validator, - "other": PaperDefaultFolderPolicy._other_validator, + 'everyone_in_team': PaperDefaultFolderPolicy._everyone_in_team_validator, + 'invite_only': PaperDefaultFolderPolicy._invite_only_validator, + 'other': PaperDefaultFolderPolicy._other_validator, } -PaperDefaultFolderPolicy.everyone_in_team = PaperDefaultFolderPolicy("everyone_in_team") -PaperDefaultFolderPolicy.invite_only = PaperDefaultFolderPolicy("invite_only") -PaperDefaultFolderPolicy.other = PaperDefaultFolderPolicy("other") +PaperDefaultFolderPolicy.everyone_in_team = PaperDefaultFolderPolicy('everyone_in_team') +PaperDefaultFolderPolicy.invite_only = PaperDefaultFolderPolicy('invite_only') +PaperDefaultFolderPolicy.other = PaperDefaultFolderPolicy('other') PaperDefaultFolderPolicyChangedDetails.new_value.validator = PaperDefaultFolderPolicy_validator PaperDefaultFolderPolicyChangedDetails.previous_value.validator = PaperDefaultFolderPolicy_validator -PaperDefaultFolderPolicyChangedDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +PaperDefaultFolderPolicyChangedDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) PaperDefaultFolderPolicyChangedDetails._all_fields_ = [ - ("new_value", PaperDefaultFolderPolicyChangedDetails.new_value.validator), - ("previous_value", PaperDefaultFolderPolicyChangedDetails.previous_value.validator), + ('new_value', PaperDefaultFolderPolicyChangedDetails.new_value.validator), + ('previous_value', PaperDefaultFolderPolicyChangedDetails.previous_value.validator), ] PaperDefaultFolderPolicyChangedType.description.validator = bv.String() -PaperDefaultFolderPolicyChangedType._all_field_names_ = set(["description"]) -PaperDefaultFolderPolicyChangedType._all_fields_ = [ - ("description", PaperDefaultFolderPolicyChangedType.description.validator) -] +PaperDefaultFolderPolicyChangedType._all_field_names_ = set(['description']) +PaperDefaultFolderPolicyChangedType._all_fields_ = [('description', PaperDefaultFolderPolicyChangedType.description.validator)] PaperDesktopPolicy._disabled_validator = bv.Void() PaperDesktopPolicy._enabled_validator = bv.Void() PaperDesktopPolicy._other_validator = bv.Void() PaperDesktopPolicy._tagmap = { - "disabled": PaperDesktopPolicy._disabled_validator, - "enabled": PaperDesktopPolicy._enabled_validator, - "other": PaperDesktopPolicy._other_validator, + 'disabled': PaperDesktopPolicy._disabled_validator, + 'enabled': PaperDesktopPolicy._enabled_validator, + 'other': PaperDesktopPolicy._other_validator, } -PaperDesktopPolicy.disabled = PaperDesktopPolicy("disabled") -PaperDesktopPolicy.enabled = PaperDesktopPolicy("enabled") -PaperDesktopPolicy.other = PaperDesktopPolicy("other") +PaperDesktopPolicy.disabled = PaperDesktopPolicy('disabled') +PaperDesktopPolicy.enabled = PaperDesktopPolicy('enabled') +PaperDesktopPolicy.other = PaperDesktopPolicy('other') PaperDesktopPolicyChangedDetails.new_value.validator = PaperDesktopPolicy_validator PaperDesktopPolicyChangedDetails.previous_value.validator = PaperDesktopPolicy_validator -PaperDesktopPolicyChangedDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +PaperDesktopPolicyChangedDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) PaperDesktopPolicyChangedDetails._all_fields_ = [ - ("new_value", PaperDesktopPolicyChangedDetails.new_value.validator), - ("previous_value", PaperDesktopPolicyChangedDetails.previous_value.validator), + ('new_value', PaperDesktopPolicyChangedDetails.new_value.validator), + ('previous_value', PaperDesktopPolicyChangedDetails.previous_value.validator), ] PaperDesktopPolicyChangedType.description.validator = bv.String() -PaperDesktopPolicyChangedType._all_field_names_ = set(["description"]) -PaperDesktopPolicyChangedType._all_fields_ = [ - ("description", PaperDesktopPolicyChangedType.description.validator) -] +PaperDesktopPolicyChangedType._all_field_names_ = set(['description']) +PaperDesktopPolicyChangedType._all_fields_ = [('description', PaperDesktopPolicyChangedType.description.validator)] PaperDocAddCommentDetails.event_uuid.validator = bv.String() PaperDocAddCommentDetails.comment_text.validator = bv.Nullable(bv.String()) -PaperDocAddCommentDetails._all_field_names_ = set( - [ - "event_uuid", - "comment_text", - ] -) +PaperDocAddCommentDetails._all_field_names_ = set([ + 'event_uuid', + 'comment_text', +]) PaperDocAddCommentDetails._all_fields_ = [ - ("event_uuid", PaperDocAddCommentDetails.event_uuid.validator), - ("comment_text", PaperDocAddCommentDetails.comment_text.validator), + ('event_uuid', PaperDocAddCommentDetails.event_uuid.validator), + ('comment_text', PaperDocAddCommentDetails.comment_text.validator), ] PaperDocAddCommentType.description.validator = bv.String() -PaperDocAddCommentType._all_field_names_ = set(["description"]) -PaperDocAddCommentType._all_fields_ = [ - ("description", PaperDocAddCommentType.description.validator) -] +PaperDocAddCommentType._all_field_names_ = set(['description']) +PaperDocAddCommentType._all_fields_ = [('description', PaperDocAddCommentType.description.validator)] PaperDocChangeMemberRoleDetails.event_uuid.validator = bv.String() PaperDocChangeMemberRoleDetails.access_type.validator = PaperAccessType_validator -PaperDocChangeMemberRoleDetails._all_field_names_ = set( - [ - "event_uuid", - "access_type", - ] -) +PaperDocChangeMemberRoleDetails._all_field_names_ = set([ + 'event_uuid', + 'access_type', +]) PaperDocChangeMemberRoleDetails._all_fields_ = [ - ("event_uuid", PaperDocChangeMemberRoleDetails.event_uuid.validator), - ("access_type", PaperDocChangeMemberRoleDetails.access_type.validator), + ('event_uuid', PaperDocChangeMemberRoleDetails.event_uuid.validator), + ('access_type', PaperDocChangeMemberRoleDetails.access_type.validator), ] PaperDocChangeMemberRoleType.description.validator = bv.String() -PaperDocChangeMemberRoleType._all_field_names_ = set(["description"]) -PaperDocChangeMemberRoleType._all_fields_ = [ - ("description", PaperDocChangeMemberRoleType.description.validator) -] +PaperDocChangeMemberRoleType._all_field_names_ = set(['description']) +PaperDocChangeMemberRoleType._all_fields_ = [('description', PaperDocChangeMemberRoleType.description.validator)] PaperDocChangeSharingPolicyDetails.event_uuid.validator = bv.String() PaperDocChangeSharingPolicyDetails.public_sharing_policy.validator = bv.Nullable(bv.String()) PaperDocChangeSharingPolicyDetails.team_sharing_policy.validator = bv.Nullable(bv.String()) -PaperDocChangeSharingPolicyDetails._all_field_names_ = set( - [ - "event_uuid", - "public_sharing_policy", - "team_sharing_policy", - ] -) +PaperDocChangeSharingPolicyDetails._all_field_names_ = set([ + 'event_uuid', + 'public_sharing_policy', + 'team_sharing_policy', +]) PaperDocChangeSharingPolicyDetails._all_fields_ = [ - ("event_uuid", PaperDocChangeSharingPolicyDetails.event_uuid.validator), - ( - "public_sharing_policy", - PaperDocChangeSharingPolicyDetails.public_sharing_policy.validator, - ), - ( - "team_sharing_policy", - PaperDocChangeSharingPolicyDetails.team_sharing_policy.validator, - ), + ('event_uuid', PaperDocChangeSharingPolicyDetails.event_uuid.validator), + ('public_sharing_policy', PaperDocChangeSharingPolicyDetails.public_sharing_policy.validator), + ('team_sharing_policy', PaperDocChangeSharingPolicyDetails.team_sharing_policy.validator), ] PaperDocChangeSharingPolicyType.description.validator = bv.String() -PaperDocChangeSharingPolicyType._all_field_names_ = set(["description"]) -PaperDocChangeSharingPolicyType._all_fields_ = [ - ("description", PaperDocChangeSharingPolicyType.description.validator) -] +PaperDocChangeSharingPolicyType._all_field_names_ = set(['description']) +PaperDocChangeSharingPolicyType._all_fields_ = [('description', PaperDocChangeSharingPolicyType.description.validator)] PaperDocChangeSubscriptionDetails.event_uuid.validator = bv.String() PaperDocChangeSubscriptionDetails.new_subscription_level.validator = bv.String() PaperDocChangeSubscriptionDetails.previous_subscription_level.validator = bv.Nullable(bv.String()) -PaperDocChangeSubscriptionDetails._all_field_names_ = set( - [ - "event_uuid", - "new_subscription_level", - "previous_subscription_level", - ] -) +PaperDocChangeSubscriptionDetails._all_field_names_ = set([ + 'event_uuid', + 'new_subscription_level', + 'previous_subscription_level', +]) PaperDocChangeSubscriptionDetails._all_fields_ = [ - ("event_uuid", PaperDocChangeSubscriptionDetails.event_uuid.validator), - ( - "new_subscription_level", - PaperDocChangeSubscriptionDetails.new_subscription_level.validator, - ), - ( - "previous_subscription_level", - PaperDocChangeSubscriptionDetails.previous_subscription_level.validator, - ), + ('event_uuid', PaperDocChangeSubscriptionDetails.event_uuid.validator), + ('new_subscription_level', PaperDocChangeSubscriptionDetails.new_subscription_level.validator), + ('previous_subscription_level', PaperDocChangeSubscriptionDetails.previous_subscription_level.validator), ] PaperDocChangeSubscriptionType.description.validator = bv.String() -PaperDocChangeSubscriptionType._all_field_names_ = set(["description"]) -PaperDocChangeSubscriptionType._all_fields_ = [ - ("description", PaperDocChangeSubscriptionType.description.validator) -] +PaperDocChangeSubscriptionType._all_field_names_ = set(['description']) +PaperDocChangeSubscriptionType._all_fields_ = [('description', PaperDocChangeSubscriptionType.description.validator)] PaperDocDeleteCommentDetails.event_uuid.validator = bv.String() PaperDocDeleteCommentDetails.comment_text.validator = bv.Nullable(bv.String()) -PaperDocDeleteCommentDetails._all_field_names_ = set( - [ - "event_uuid", - "comment_text", - ] -) +PaperDocDeleteCommentDetails._all_field_names_ = set([ + 'event_uuid', + 'comment_text', +]) PaperDocDeleteCommentDetails._all_fields_ = [ - ("event_uuid", PaperDocDeleteCommentDetails.event_uuid.validator), - ("comment_text", PaperDocDeleteCommentDetails.comment_text.validator), + ('event_uuid', PaperDocDeleteCommentDetails.event_uuid.validator), + ('comment_text', PaperDocDeleteCommentDetails.comment_text.validator), ] PaperDocDeleteCommentType.description.validator = bv.String() -PaperDocDeleteCommentType._all_field_names_ = set(["description"]) -PaperDocDeleteCommentType._all_fields_ = [ - ("description", PaperDocDeleteCommentType.description.validator) -] +PaperDocDeleteCommentType._all_field_names_ = set(['description']) +PaperDocDeleteCommentType._all_fields_ = [('description', PaperDocDeleteCommentType.description.validator)] PaperDocDeletedDetails.event_uuid.validator = bv.String() -PaperDocDeletedDetails._all_field_names_ = set(["event_uuid"]) -PaperDocDeletedDetails._all_fields_ = [("event_uuid", PaperDocDeletedDetails.event_uuid.validator)] +PaperDocDeletedDetails._all_field_names_ = set(['event_uuid']) +PaperDocDeletedDetails._all_fields_ = [('event_uuid', PaperDocDeletedDetails.event_uuid.validator)] PaperDocDeletedType.description.validator = bv.String() -PaperDocDeletedType._all_field_names_ = set(["description"]) -PaperDocDeletedType._all_fields_ = [("description", PaperDocDeletedType.description.validator)] +PaperDocDeletedType._all_field_names_ = set(['description']) +PaperDocDeletedType._all_fields_ = [('description', PaperDocDeletedType.description.validator)] PaperDocDownloadDetails.event_uuid.validator = bv.String() PaperDocDownloadDetails.export_file_format.validator = PaperDownloadFormat_validator -PaperDocDownloadDetails._all_field_names_ = set( - [ - "event_uuid", - "export_file_format", - ] -) +PaperDocDownloadDetails._all_field_names_ = set([ + 'event_uuid', + 'export_file_format', +]) PaperDocDownloadDetails._all_fields_ = [ - ("event_uuid", PaperDocDownloadDetails.event_uuid.validator), - ("export_file_format", PaperDocDownloadDetails.export_file_format.validator), + ('event_uuid', PaperDocDownloadDetails.event_uuid.validator), + ('export_file_format', PaperDocDownloadDetails.export_file_format.validator), ] PaperDocDownloadType.description.validator = bv.String() -PaperDocDownloadType._all_field_names_ = set(["description"]) -PaperDocDownloadType._all_fields_ = [("description", PaperDocDownloadType.description.validator)] +PaperDocDownloadType._all_field_names_ = set(['description']) +PaperDocDownloadType._all_fields_ = [('description', PaperDocDownloadType.description.validator)] PaperDocEditCommentDetails.event_uuid.validator = bv.String() PaperDocEditCommentDetails.comment_text.validator = bv.Nullable(bv.String()) -PaperDocEditCommentDetails._all_field_names_ = set( - [ - "event_uuid", - "comment_text", - ] -) +PaperDocEditCommentDetails._all_field_names_ = set([ + 'event_uuid', + 'comment_text', +]) PaperDocEditCommentDetails._all_fields_ = [ - ("event_uuid", PaperDocEditCommentDetails.event_uuid.validator), - ("comment_text", PaperDocEditCommentDetails.comment_text.validator), + ('event_uuid', PaperDocEditCommentDetails.event_uuid.validator), + ('comment_text', PaperDocEditCommentDetails.comment_text.validator), ] PaperDocEditCommentType.description.validator = bv.String() -PaperDocEditCommentType._all_field_names_ = set(["description"]) -PaperDocEditCommentType._all_fields_ = [ - ("description", PaperDocEditCommentType.description.validator) -] +PaperDocEditCommentType._all_field_names_ = set(['description']) +PaperDocEditCommentType._all_fields_ = [('description', PaperDocEditCommentType.description.validator)] PaperDocEditDetails.event_uuid.validator = bv.String() -PaperDocEditDetails._all_field_names_ = set(["event_uuid"]) -PaperDocEditDetails._all_fields_ = [("event_uuid", PaperDocEditDetails.event_uuid.validator)] +PaperDocEditDetails._all_field_names_ = set(['event_uuid']) +PaperDocEditDetails._all_fields_ = [('event_uuid', PaperDocEditDetails.event_uuid.validator)] PaperDocEditType.description.validator = bv.String() -PaperDocEditType._all_field_names_ = set(["description"]) -PaperDocEditType._all_fields_ = [("description", PaperDocEditType.description.validator)] +PaperDocEditType._all_field_names_ = set(['description']) +PaperDocEditType._all_fields_ = [('description', PaperDocEditType.description.validator)] PaperDocFollowedDetails.event_uuid.validator = bv.String() -PaperDocFollowedDetails._all_field_names_ = set(["event_uuid"]) -PaperDocFollowedDetails._all_fields_ = [ - ("event_uuid", PaperDocFollowedDetails.event_uuid.validator) -] +PaperDocFollowedDetails._all_field_names_ = set(['event_uuid']) +PaperDocFollowedDetails._all_fields_ = [('event_uuid', PaperDocFollowedDetails.event_uuid.validator)] PaperDocFollowedType.description.validator = bv.String() -PaperDocFollowedType._all_field_names_ = set(["description"]) -PaperDocFollowedType._all_fields_ = [("description", PaperDocFollowedType.description.validator)] +PaperDocFollowedType._all_field_names_ = set(['description']) +PaperDocFollowedType._all_fields_ = [('description', PaperDocFollowedType.description.validator)] PaperDocMentionDetails.event_uuid.validator = bv.String() -PaperDocMentionDetails._all_field_names_ = set(["event_uuid"]) -PaperDocMentionDetails._all_fields_ = [("event_uuid", PaperDocMentionDetails.event_uuid.validator)] +PaperDocMentionDetails._all_field_names_ = set(['event_uuid']) +PaperDocMentionDetails._all_fields_ = [('event_uuid', PaperDocMentionDetails.event_uuid.validator)] PaperDocMentionType.description.validator = bv.String() -PaperDocMentionType._all_field_names_ = set(["description"]) -PaperDocMentionType._all_fields_ = [("description", PaperDocMentionType.description.validator)] +PaperDocMentionType._all_field_names_ = set(['description']) +PaperDocMentionType._all_fields_ = [('description', PaperDocMentionType.description.validator)] PaperDocOwnershipChangedDetails.event_uuid.validator = bv.String() -PaperDocOwnershipChangedDetails.old_owner_user_id.validator = bv.Nullable( - users_common.AccountId_validator -) +PaperDocOwnershipChangedDetails.old_owner_user_id.validator = bv.Nullable(users_common.AccountId_validator) PaperDocOwnershipChangedDetails.new_owner_user_id.validator = users_common.AccountId_validator -PaperDocOwnershipChangedDetails._all_field_names_ = set( - [ - "event_uuid", - "old_owner_user_id", - "new_owner_user_id", - ] -) +PaperDocOwnershipChangedDetails._all_field_names_ = set([ + 'event_uuid', + 'old_owner_user_id', + 'new_owner_user_id', +]) PaperDocOwnershipChangedDetails._all_fields_ = [ - ("event_uuid", PaperDocOwnershipChangedDetails.event_uuid.validator), - ("old_owner_user_id", PaperDocOwnershipChangedDetails.old_owner_user_id.validator), - ("new_owner_user_id", PaperDocOwnershipChangedDetails.new_owner_user_id.validator), + ('event_uuid', PaperDocOwnershipChangedDetails.event_uuid.validator), + ('old_owner_user_id', PaperDocOwnershipChangedDetails.old_owner_user_id.validator), + ('new_owner_user_id', PaperDocOwnershipChangedDetails.new_owner_user_id.validator), ] PaperDocOwnershipChangedType.description.validator = bv.String() -PaperDocOwnershipChangedType._all_field_names_ = set(["description"]) -PaperDocOwnershipChangedType._all_fields_ = [ - ("description", PaperDocOwnershipChangedType.description.validator) -] +PaperDocOwnershipChangedType._all_field_names_ = set(['description']) +PaperDocOwnershipChangedType._all_fields_ = [('description', PaperDocOwnershipChangedType.description.validator)] PaperDocRequestAccessDetails.event_uuid.validator = bv.String() -PaperDocRequestAccessDetails._all_field_names_ = set(["event_uuid"]) -PaperDocRequestAccessDetails._all_fields_ = [ - ("event_uuid", PaperDocRequestAccessDetails.event_uuid.validator) -] +PaperDocRequestAccessDetails._all_field_names_ = set(['event_uuid']) +PaperDocRequestAccessDetails._all_fields_ = [('event_uuid', PaperDocRequestAccessDetails.event_uuid.validator)] PaperDocRequestAccessType.description.validator = bv.String() -PaperDocRequestAccessType._all_field_names_ = set(["description"]) -PaperDocRequestAccessType._all_fields_ = [ - ("description", PaperDocRequestAccessType.description.validator) -] +PaperDocRequestAccessType._all_field_names_ = set(['description']) +PaperDocRequestAccessType._all_fields_ = [('description', PaperDocRequestAccessType.description.validator)] PaperDocResolveCommentDetails.event_uuid.validator = bv.String() PaperDocResolveCommentDetails.comment_text.validator = bv.Nullable(bv.String()) -PaperDocResolveCommentDetails._all_field_names_ = set( - [ - "event_uuid", - "comment_text", - ] -) +PaperDocResolveCommentDetails._all_field_names_ = set([ + 'event_uuid', + 'comment_text', +]) PaperDocResolveCommentDetails._all_fields_ = [ - ("event_uuid", PaperDocResolveCommentDetails.event_uuid.validator), - ("comment_text", PaperDocResolveCommentDetails.comment_text.validator), + ('event_uuid', PaperDocResolveCommentDetails.event_uuid.validator), + ('comment_text', PaperDocResolveCommentDetails.comment_text.validator), ] PaperDocResolveCommentType.description.validator = bv.String() -PaperDocResolveCommentType._all_field_names_ = set(["description"]) -PaperDocResolveCommentType._all_fields_ = [ - ("description", PaperDocResolveCommentType.description.validator) -] +PaperDocResolveCommentType._all_field_names_ = set(['description']) +PaperDocResolveCommentType._all_fields_ = [('description', PaperDocResolveCommentType.description.validator)] PaperDocRevertDetails.event_uuid.validator = bv.String() -PaperDocRevertDetails._all_field_names_ = set(["event_uuid"]) -PaperDocRevertDetails._all_fields_ = [("event_uuid", PaperDocRevertDetails.event_uuid.validator)] +PaperDocRevertDetails._all_field_names_ = set(['event_uuid']) +PaperDocRevertDetails._all_fields_ = [('event_uuid', PaperDocRevertDetails.event_uuid.validator)] PaperDocRevertType.description.validator = bv.String() -PaperDocRevertType._all_field_names_ = set(["description"]) -PaperDocRevertType._all_fields_ = [("description", PaperDocRevertType.description.validator)] +PaperDocRevertType._all_field_names_ = set(['description']) +PaperDocRevertType._all_fields_ = [('description', PaperDocRevertType.description.validator)] PaperDocSlackShareDetails.event_uuid.validator = bv.String() -PaperDocSlackShareDetails._all_field_names_ = set(["event_uuid"]) -PaperDocSlackShareDetails._all_fields_ = [ - ("event_uuid", PaperDocSlackShareDetails.event_uuid.validator) -] +PaperDocSlackShareDetails._all_field_names_ = set(['event_uuid']) +PaperDocSlackShareDetails._all_fields_ = [('event_uuid', PaperDocSlackShareDetails.event_uuid.validator)] PaperDocSlackShareType.description.validator = bv.String() -PaperDocSlackShareType._all_field_names_ = set(["description"]) -PaperDocSlackShareType._all_fields_ = [ - ("description", PaperDocSlackShareType.description.validator) -] +PaperDocSlackShareType._all_field_names_ = set(['description']) +PaperDocSlackShareType._all_fields_ = [('description', PaperDocSlackShareType.description.validator)] PaperDocTeamInviteDetails.event_uuid.validator = bv.String() -PaperDocTeamInviteDetails._all_field_names_ = set(["event_uuid"]) -PaperDocTeamInviteDetails._all_fields_ = [ - ("event_uuid", PaperDocTeamInviteDetails.event_uuid.validator) -] +PaperDocTeamInviteDetails._all_field_names_ = set(['event_uuid']) +PaperDocTeamInviteDetails._all_fields_ = [('event_uuid', PaperDocTeamInviteDetails.event_uuid.validator)] PaperDocTeamInviteType.description.validator = bv.String() -PaperDocTeamInviteType._all_field_names_ = set(["description"]) -PaperDocTeamInviteType._all_fields_ = [ - ("description", PaperDocTeamInviteType.description.validator) -] +PaperDocTeamInviteType._all_field_names_ = set(['description']) +PaperDocTeamInviteType._all_fields_ = [('description', PaperDocTeamInviteType.description.validator)] PaperDocTrashedDetails.event_uuid.validator = bv.String() -PaperDocTrashedDetails._all_field_names_ = set(["event_uuid"]) -PaperDocTrashedDetails._all_fields_ = [("event_uuid", PaperDocTrashedDetails.event_uuid.validator)] +PaperDocTrashedDetails._all_field_names_ = set(['event_uuid']) +PaperDocTrashedDetails._all_fields_ = [('event_uuid', PaperDocTrashedDetails.event_uuid.validator)] PaperDocTrashedType.description.validator = bv.String() -PaperDocTrashedType._all_field_names_ = set(["description"]) -PaperDocTrashedType._all_fields_ = [("description", PaperDocTrashedType.description.validator)] +PaperDocTrashedType._all_field_names_ = set(['description']) +PaperDocTrashedType._all_fields_ = [('description', PaperDocTrashedType.description.validator)] PaperDocUnresolveCommentDetails.event_uuid.validator = bv.String() PaperDocUnresolveCommentDetails.comment_text.validator = bv.Nullable(bv.String()) -PaperDocUnresolveCommentDetails._all_field_names_ = set( - [ - "event_uuid", - "comment_text", - ] -) +PaperDocUnresolveCommentDetails._all_field_names_ = set([ + 'event_uuid', + 'comment_text', +]) PaperDocUnresolveCommentDetails._all_fields_ = [ - ("event_uuid", PaperDocUnresolveCommentDetails.event_uuid.validator), - ("comment_text", PaperDocUnresolveCommentDetails.comment_text.validator), + ('event_uuid', PaperDocUnresolveCommentDetails.event_uuid.validator), + ('comment_text', PaperDocUnresolveCommentDetails.comment_text.validator), ] PaperDocUnresolveCommentType.description.validator = bv.String() -PaperDocUnresolveCommentType._all_field_names_ = set(["description"]) -PaperDocUnresolveCommentType._all_fields_ = [ - ("description", PaperDocUnresolveCommentType.description.validator) -] +PaperDocUnresolveCommentType._all_field_names_ = set(['description']) +PaperDocUnresolveCommentType._all_fields_ = [('description', PaperDocUnresolveCommentType.description.validator)] PaperDocUntrashedDetails.event_uuid.validator = bv.String() -PaperDocUntrashedDetails._all_field_names_ = set(["event_uuid"]) -PaperDocUntrashedDetails._all_fields_ = [ - ("event_uuid", PaperDocUntrashedDetails.event_uuid.validator) -] +PaperDocUntrashedDetails._all_field_names_ = set(['event_uuid']) +PaperDocUntrashedDetails._all_fields_ = [('event_uuid', PaperDocUntrashedDetails.event_uuid.validator)] PaperDocUntrashedType.description.validator = bv.String() -PaperDocUntrashedType._all_field_names_ = set(["description"]) -PaperDocUntrashedType._all_fields_ = [("description", PaperDocUntrashedType.description.validator)] +PaperDocUntrashedType._all_field_names_ = set(['description']) +PaperDocUntrashedType._all_fields_ = [('description', PaperDocUntrashedType.description.validator)] PaperDocViewDetails.event_uuid.validator = bv.String() -PaperDocViewDetails._all_field_names_ = set(["event_uuid"]) -PaperDocViewDetails._all_fields_ = [("event_uuid", PaperDocViewDetails.event_uuid.validator)] +PaperDocViewDetails._all_field_names_ = set(['event_uuid']) +PaperDocViewDetails._all_fields_ = [('event_uuid', PaperDocViewDetails.event_uuid.validator)] PaperDocViewType.description.validator = bv.String() -PaperDocViewType._all_field_names_ = set(["description"]) -PaperDocViewType._all_fields_ = [("description", PaperDocViewType.description.validator)] +PaperDocViewType._all_field_names_ = set(['description']) +PaperDocViewType._all_fields_ = [('description', PaperDocViewType.description.validator)] PaperDocumentLogInfo.doc_id.validator = bv.String() PaperDocumentLogInfo.doc_title.validator = bv.String() -PaperDocumentLogInfo._all_field_names_ = set( - [ - "doc_id", - "doc_title", - ] -) +PaperDocumentLogInfo._all_field_names_ = set([ + 'doc_id', + 'doc_title', +]) PaperDocumentLogInfo._all_fields_ = [ - ("doc_id", PaperDocumentLogInfo.doc_id.validator), - ("doc_title", PaperDocumentLogInfo.doc_title.validator), + ('doc_id', PaperDocumentLogInfo.doc_id.validator), + ('doc_title', PaperDocumentLogInfo.doc_title.validator), ] PaperDownloadFormat._docx_validator = bv.Void() @@ -111568,402 +104644,309 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): PaperDownloadFormat._pdf_validator = bv.Void() PaperDownloadFormat._other_validator = bv.Void() PaperDownloadFormat._tagmap = { - "docx": PaperDownloadFormat._docx_validator, - "html": PaperDownloadFormat._html_validator, - "markdown": PaperDownloadFormat._markdown_validator, - "pdf": PaperDownloadFormat._pdf_validator, - "other": PaperDownloadFormat._other_validator, + 'docx': PaperDownloadFormat._docx_validator, + 'html': PaperDownloadFormat._html_validator, + 'markdown': PaperDownloadFormat._markdown_validator, + 'pdf': PaperDownloadFormat._pdf_validator, + 'other': PaperDownloadFormat._other_validator, } -PaperDownloadFormat.docx = PaperDownloadFormat("docx") -PaperDownloadFormat.html = PaperDownloadFormat("html") -PaperDownloadFormat.markdown = PaperDownloadFormat("markdown") -PaperDownloadFormat.pdf = PaperDownloadFormat("pdf") -PaperDownloadFormat.other = PaperDownloadFormat("other") +PaperDownloadFormat.docx = PaperDownloadFormat('docx') +PaperDownloadFormat.html = PaperDownloadFormat('html') +PaperDownloadFormat.markdown = PaperDownloadFormat('markdown') +PaperDownloadFormat.pdf = PaperDownloadFormat('pdf') +PaperDownloadFormat.other = PaperDownloadFormat('other') PaperEnabledUsersGroupAdditionDetails._all_field_names_ = set([]) PaperEnabledUsersGroupAdditionDetails._all_fields_ = [] PaperEnabledUsersGroupAdditionType.description.validator = bv.String() -PaperEnabledUsersGroupAdditionType._all_field_names_ = set(["description"]) -PaperEnabledUsersGroupAdditionType._all_fields_ = [ - ("description", PaperEnabledUsersGroupAdditionType.description.validator) -] +PaperEnabledUsersGroupAdditionType._all_field_names_ = set(['description']) +PaperEnabledUsersGroupAdditionType._all_fields_ = [('description', PaperEnabledUsersGroupAdditionType.description.validator)] PaperEnabledUsersGroupRemovalDetails._all_field_names_ = set([]) PaperEnabledUsersGroupRemovalDetails._all_fields_ = [] PaperEnabledUsersGroupRemovalType.description.validator = bv.String() -PaperEnabledUsersGroupRemovalType._all_field_names_ = set(["description"]) -PaperEnabledUsersGroupRemovalType._all_fields_ = [ - ("description", PaperEnabledUsersGroupRemovalType.description.validator) -] +PaperEnabledUsersGroupRemovalType._all_field_names_ = set(['description']) +PaperEnabledUsersGroupRemovalType._all_fields_ = [('description', PaperEnabledUsersGroupRemovalType.description.validator)] PaperExternalViewAllowDetails.event_uuid.validator = bv.String() -PaperExternalViewAllowDetails._all_field_names_ = set(["event_uuid"]) -PaperExternalViewAllowDetails._all_fields_ = [ - ("event_uuid", PaperExternalViewAllowDetails.event_uuid.validator) -] +PaperExternalViewAllowDetails._all_field_names_ = set(['event_uuid']) +PaperExternalViewAllowDetails._all_fields_ = [('event_uuid', PaperExternalViewAllowDetails.event_uuid.validator)] PaperExternalViewAllowType.description.validator = bv.String() -PaperExternalViewAllowType._all_field_names_ = set(["description"]) -PaperExternalViewAllowType._all_fields_ = [ - ("description", PaperExternalViewAllowType.description.validator) -] +PaperExternalViewAllowType._all_field_names_ = set(['description']) +PaperExternalViewAllowType._all_fields_ = [('description', PaperExternalViewAllowType.description.validator)] PaperExternalViewDefaultTeamDetails.event_uuid.validator = bv.String() -PaperExternalViewDefaultTeamDetails._all_field_names_ = set(["event_uuid"]) -PaperExternalViewDefaultTeamDetails._all_fields_ = [ - ("event_uuid", PaperExternalViewDefaultTeamDetails.event_uuid.validator) -] +PaperExternalViewDefaultTeamDetails._all_field_names_ = set(['event_uuid']) +PaperExternalViewDefaultTeamDetails._all_fields_ = [('event_uuid', PaperExternalViewDefaultTeamDetails.event_uuid.validator)] PaperExternalViewDefaultTeamType.description.validator = bv.String() -PaperExternalViewDefaultTeamType._all_field_names_ = set(["description"]) -PaperExternalViewDefaultTeamType._all_fields_ = [ - ("description", PaperExternalViewDefaultTeamType.description.validator) -] +PaperExternalViewDefaultTeamType._all_field_names_ = set(['description']) +PaperExternalViewDefaultTeamType._all_fields_ = [('description', PaperExternalViewDefaultTeamType.description.validator)] PaperExternalViewForbidDetails.event_uuid.validator = bv.String() -PaperExternalViewForbidDetails._all_field_names_ = set(["event_uuid"]) -PaperExternalViewForbidDetails._all_fields_ = [ - ("event_uuid", PaperExternalViewForbidDetails.event_uuid.validator) -] +PaperExternalViewForbidDetails._all_field_names_ = set(['event_uuid']) +PaperExternalViewForbidDetails._all_fields_ = [('event_uuid', PaperExternalViewForbidDetails.event_uuid.validator)] PaperExternalViewForbidType.description.validator = bv.String() -PaperExternalViewForbidType._all_field_names_ = set(["description"]) -PaperExternalViewForbidType._all_fields_ = [ - ("description", PaperExternalViewForbidType.description.validator) -] +PaperExternalViewForbidType._all_field_names_ = set(['description']) +PaperExternalViewForbidType._all_fields_ = [('description', PaperExternalViewForbidType.description.validator)] PaperFolderChangeSubscriptionDetails.event_uuid.validator = bv.String() PaperFolderChangeSubscriptionDetails.new_subscription_level.validator = bv.String() -PaperFolderChangeSubscriptionDetails.previous_subscription_level.validator = bv.Nullable( - bv.String() -) -PaperFolderChangeSubscriptionDetails._all_field_names_ = set( - [ - "event_uuid", - "new_subscription_level", - "previous_subscription_level", - ] -) +PaperFolderChangeSubscriptionDetails.previous_subscription_level.validator = bv.Nullable(bv.String()) +PaperFolderChangeSubscriptionDetails._all_field_names_ = set([ + 'event_uuid', + 'new_subscription_level', + 'previous_subscription_level', +]) PaperFolderChangeSubscriptionDetails._all_fields_ = [ - ("event_uuid", PaperFolderChangeSubscriptionDetails.event_uuid.validator), - ( - "new_subscription_level", - PaperFolderChangeSubscriptionDetails.new_subscription_level.validator, - ), - ( - "previous_subscription_level", - PaperFolderChangeSubscriptionDetails.previous_subscription_level.validator, - ), + ('event_uuid', PaperFolderChangeSubscriptionDetails.event_uuid.validator), + ('new_subscription_level', PaperFolderChangeSubscriptionDetails.new_subscription_level.validator), + ('previous_subscription_level', PaperFolderChangeSubscriptionDetails.previous_subscription_level.validator), ] PaperFolderChangeSubscriptionType.description.validator = bv.String() -PaperFolderChangeSubscriptionType._all_field_names_ = set(["description"]) -PaperFolderChangeSubscriptionType._all_fields_ = [ - ("description", PaperFolderChangeSubscriptionType.description.validator) -] +PaperFolderChangeSubscriptionType._all_field_names_ = set(['description']) +PaperFolderChangeSubscriptionType._all_fields_ = [('description', PaperFolderChangeSubscriptionType.description.validator)] PaperFolderDeletedDetails.event_uuid.validator = bv.String() -PaperFolderDeletedDetails._all_field_names_ = set(["event_uuid"]) -PaperFolderDeletedDetails._all_fields_ = [ - ("event_uuid", PaperFolderDeletedDetails.event_uuid.validator) -] +PaperFolderDeletedDetails._all_field_names_ = set(['event_uuid']) +PaperFolderDeletedDetails._all_fields_ = [('event_uuid', PaperFolderDeletedDetails.event_uuid.validator)] PaperFolderDeletedType.description.validator = bv.String() -PaperFolderDeletedType._all_field_names_ = set(["description"]) -PaperFolderDeletedType._all_fields_ = [ - ("description", PaperFolderDeletedType.description.validator) -] +PaperFolderDeletedType._all_field_names_ = set(['description']) +PaperFolderDeletedType._all_fields_ = [('description', PaperFolderDeletedType.description.validator)] PaperFolderFollowedDetails.event_uuid.validator = bv.String() -PaperFolderFollowedDetails._all_field_names_ = set(["event_uuid"]) -PaperFolderFollowedDetails._all_fields_ = [ - ("event_uuid", PaperFolderFollowedDetails.event_uuid.validator) -] +PaperFolderFollowedDetails._all_field_names_ = set(['event_uuid']) +PaperFolderFollowedDetails._all_fields_ = [('event_uuid', PaperFolderFollowedDetails.event_uuid.validator)] PaperFolderFollowedType.description.validator = bv.String() -PaperFolderFollowedType._all_field_names_ = set(["description"]) -PaperFolderFollowedType._all_fields_ = [ - ("description", PaperFolderFollowedType.description.validator) -] +PaperFolderFollowedType._all_field_names_ = set(['description']) +PaperFolderFollowedType._all_fields_ = [('description', PaperFolderFollowedType.description.validator)] PaperFolderLogInfo.folder_id.validator = bv.String() PaperFolderLogInfo.folder_name.validator = bv.String() -PaperFolderLogInfo._all_field_names_ = set( - [ - "folder_id", - "folder_name", - ] -) +PaperFolderLogInfo._all_field_names_ = set([ + 'folder_id', + 'folder_name', +]) PaperFolderLogInfo._all_fields_ = [ - ("folder_id", PaperFolderLogInfo.folder_id.validator), - ("folder_name", PaperFolderLogInfo.folder_name.validator), + ('folder_id', PaperFolderLogInfo.folder_id.validator), + ('folder_name', PaperFolderLogInfo.folder_name.validator), ] PaperFolderTeamInviteDetails.event_uuid.validator = bv.String() -PaperFolderTeamInviteDetails._all_field_names_ = set(["event_uuid"]) -PaperFolderTeamInviteDetails._all_fields_ = [ - ("event_uuid", PaperFolderTeamInviteDetails.event_uuid.validator) -] +PaperFolderTeamInviteDetails._all_field_names_ = set(['event_uuid']) +PaperFolderTeamInviteDetails._all_fields_ = [('event_uuid', PaperFolderTeamInviteDetails.event_uuid.validator)] PaperFolderTeamInviteType.description.validator = bv.String() -PaperFolderTeamInviteType._all_field_names_ = set(["description"]) -PaperFolderTeamInviteType._all_fields_ = [ - ("description", PaperFolderTeamInviteType.description.validator) -] +PaperFolderTeamInviteType._all_field_names_ = set(['description']) +PaperFolderTeamInviteType._all_fields_ = [('description', PaperFolderTeamInviteType.description.validator)] PaperMemberPolicy._anyone_with_link_validator = bv.Void() PaperMemberPolicy._only_team_validator = bv.Void() PaperMemberPolicy._team_and_explicitly_shared_validator = bv.Void() PaperMemberPolicy._other_validator = bv.Void() PaperMemberPolicy._tagmap = { - "anyone_with_link": PaperMemberPolicy._anyone_with_link_validator, - "only_team": PaperMemberPolicy._only_team_validator, - "team_and_explicitly_shared": PaperMemberPolicy._team_and_explicitly_shared_validator, - "other": PaperMemberPolicy._other_validator, + 'anyone_with_link': PaperMemberPolicy._anyone_with_link_validator, + 'only_team': PaperMemberPolicy._only_team_validator, + 'team_and_explicitly_shared': PaperMemberPolicy._team_and_explicitly_shared_validator, + 'other': PaperMemberPolicy._other_validator, } -PaperMemberPolicy.anyone_with_link = PaperMemberPolicy("anyone_with_link") -PaperMemberPolicy.only_team = PaperMemberPolicy("only_team") -PaperMemberPolicy.team_and_explicitly_shared = PaperMemberPolicy("team_and_explicitly_shared") -PaperMemberPolicy.other = PaperMemberPolicy("other") +PaperMemberPolicy.anyone_with_link = PaperMemberPolicy('anyone_with_link') +PaperMemberPolicy.only_team = PaperMemberPolicy('only_team') +PaperMemberPolicy.team_and_explicitly_shared = PaperMemberPolicy('team_and_explicitly_shared') +PaperMemberPolicy.other = PaperMemberPolicy('other') PaperPublishedLinkChangePermissionDetails.event_uuid.validator = bv.String() PaperPublishedLinkChangePermissionDetails.new_permission_level.validator = bv.String() PaperPublishedLinkChangePermissionDetails.previous_permission_level.validator = bv.String() -PaperPublishedLinkChangePermissionDetails._all_field_names_ = set( - [ - "event_uuid", - "new_permission_level", - "previous_permission_level", - ] -) +PaperPublishedLinkChangePermissionDetails._all_field_names_ = set([ + 'event_uuid', + 'new_permission_level', + 'previous_permission_level', +]) PaperPublishedLinkChangePermissionDetails._all_fields_ = [ - ("event_uuid", PaperPublishedLinkChangePermissionDetails.event_uuid.validator), - ( - "new_permission_level", - PaperPublishedLinkChangePermissionDetails.new_permission_level.validator, - ), - ( - "previous_permission_level", - PaperPublishedLinkChangePermissionDetails.previous_permission_level.validator, - ), + ('event_uuid', PaperPublishedLinkChangePermissionDetails.event_uuid.validator), + ('new_permission_level', PaperPublishedLinkChangePermissionDetails.new_permission_level.validator), + ('previous_permission_level', PaperPublishedLinkChangePermissionDetails.previous_permission_level.validator), ] PaperPublishedLinkChangePermissionType.description.validator = bv.String() -PaperPublishedLinkChangePermissionType._all_field_names_ = set(["description"]) -PaperPublishedLinkChangePermissionType._all_fields_ = [ - ("description", PaperPublishedLinkChangePermissionType.description.validator) -] +PaperPublishedLinkChangePermissionType._all_field_names_ = set(['description']) +PaperPublishedLinkChangePermissionType._all_fields_ = [('description', PaperPublishedLinkChangePermissionType.description.validator)] PaperPublishedLinkCreateDetails.event_uuid.validator = bv.String() -PaperPublishedLinkCreateDetails._all_field_names_ = set(["event_uuid"]) -PaperPublishedLinkCreateDetails._all_fields_ = [ - ("event_uuid", PaperPublishedLinkCreateDetails.event_uuid.validator) -] +PaperPublishedLinkCreateDetails._all_field_names_ = set(['event_uuid']) +PaperPublishedLinkCreateDetails._all_fields_ = [('event_uuid', PaperPublishedLinkCreateDetails.event_uuid.validator)] PaperPublishedLinkCreateType.description.validator = bv.String() -PaperPublishedLinkCreateType._all_field_names_ = set(["description"]) -PaperPublishedLinkCreateType._all_fields_ = [ - ("description", PaperPublishedLinkCreateType.description.validator) -] +PaperPublishedLinkCreateType._all_field_names_ = set(['description']) +PaperPublishedLinkCreateType._all_fields_ = [('description', PaperPublishedLinkCreateType.description.validator)] PaperPublishedLinkDisabledDetails.event_uuid.validator = bv.String() -PaperPublishedLinkDisabledDetails._all_field_names_ = set(["event_uuid"]) -PaperPublishedLinkDisabledDetails._all_fields_ = [ - ("event_uuid", PaperPublishedLinkDisabledDetails.event_uuid.validator) -] +PaperPublishedLinkDisabledDetails._all_field_names_ = set(['event_uuid']) +PaperPublishedLinkDisabledDetails._all_fields_ = [('event_uuid', PaperPublishedLinkDisabledDetails.event_uuid.validator)] PaperPublishedLinkDisabledType.description.validator = bv.String() -PaperPublishedLinkDisabledType._all_field_names_ = set(["description"]) -PaperPublishedLinkDisabledType._all_fields_ = [ - ("description", PaperPublishedLinkDisabledType.description.validator) -] +PaperPublishedLinkDisabledType._all_field_names_ = set(['description']) +PaperPublishedLinkDisabledType._all_fields_ = [('description', PaperPublishedLinkDisabledType.description.validator)] PaperPublishedLinkViewDetails.event_uuid.validator = bv.String() -PaperPublishedLinkViewDetails._all_field_names_ = set(["event_uuid"]) -PaperPublishedLinkViewDetails._all_fields_ = [ - ("event_uuid", PaperPublishedLinkViewDetails.event_uuid.validator) -] +PaperPublishedLinkViewDetails._all_field_names_ = set(['event_uuid']) +PaperPublishedLinkViewDetails._all_fields_ = [('event_uuid', PaperPublishedLinkViewDetails.event_uuid.validator)] PaperPublishedLinkViewType.description.validator = bv.String() -PaperPublishedLinkViewType._all_field_names_ = set(["description"]) -PaperPublishedLinkViewType._all_fields_ = [ - ("description", PaperPublishedLinkViewType.description.validator) -] +PaperPublishedLinkViewType._all_field_names_ = set(['description']) +PaperPublishedLinkViewType._all_fields_ = [('description', PaperPublishedLinkViewType.description.validator)] ParticipantLogInfo._group_validator = GroupLogInfo_validator ParticipantLogInfo._user_validator = UserLogInfo_validator ParticipantLogInfo._other_validator = bv.Void() ParticipantLogInfo._tagmap = { - "group": ParticipantLogInfo._group_validator, - "user": ParticipantLogInfo._user_validator, - "other": ParticipantLogInfo._other_validator, + 'group': ParticipantLogInfo._group_validator, + 'user': ParticipantLogInfo._user_validator, + 'other': ParticipantLogInfo._other_validator, } -ParticipantLogInfo.other = ParticipantLogInfo("other") +ParticipantLogInfo.other = ParticipantLogInfo('other') PassPolicy._allow_validator = bv.Void() PassPolicy._disabled_validator = bv.Void() PassPolicy._enabled_validator = bv.Void() PassPolicy._other_validator = bv.Void() PassPolicy._tagmap = { - "allow": PassPolicy._allow_validator, - "disabled": PassPolicy._disabled_validator, - "enabled": PassPolicy._enabled_validator, - "other": PassPolicy._other_validator, + 'allow': PassPolicy._allow_validator, + 'disabled': PassPolicy._disabled_validator, + 'enabled': PassPolicy._enabled_validator, + 'other': PassPolicy._other_validator, } -PassPolicy.allow = PassPolicy("allow") -PassPolicy.disabled = PassPolicy("disabled") -PassPolicy.enabled = PassPolicy("enabled") -PassPolicy.other = PassPolicy("other") +PassPolicy.allow = PassPolicy('allow') +PassPolicy.disabled = PassPolicy('disabled') +PassPolicy.enabled = PassPolicy('enabled') +PassPolicy.other = PassPolicy('other') PasskeyAddDetails._all_field_names_ = set([]) PasskeyAddDetails._all_fields_ = [] PasskeyAddType.description.validator = bv.String() -PasskeyAddType._all_field_names_ = set(["description"]) -PasskeyAddType._all_fields_ = [("description", PasskeyAddType.description.validator)] +PasskeyAddType._all_field_names_ = set(['description']) +PasskeyAddType._all_fields_ = [('description', PasskeyAddType.description.validator)] PasskeyLoginPolicy._default_validator = bv.Void() PasskeyLoginPolicy._disabled_validator = bv.Void() PasskeyLoginPolicy._enabled_validator = bv.Void() PasskeyLoginPolicy._other_validator = bv.Void() PasskeyLoginPolicy._tagmap = { - "default": PasskeyLoginPolicy._default_validator, - "disabled": PasskeyLoginPolicy._disabled_validator, - "enabled": PasskeyLoginPolicy._enabled_validator, - "other": PasskeyLoginPolicy._other_validator, + 'default': PasskeyLoginPolicy._default_validator, + 'disabled': PasskeyLoginPolicy._disabled_validator, + 'enabled': PasskeyLoginPolicy._enabled_validator, + 'other': PasskeyLoginPolicy._other_validator, } -PasskeyLoginPolicy.default = PasskeyLoginPolicy("default") -PasskeyLoginPolicy.disabled = PasskeyLoginPolicy("disabled") -PasskeyLoginPolicy.enabled = PasskeyLoginPolicy("enabled") -PasskeyLoginPolicy.other = PasskeyLoginPolicy("other") +PasskeyLoginPolicy.default = PasskeyLoginPolicy('default') +PasskeyLoginPolicy.disabled = PasskeyLoginPolicy('disabled') +PasskeyLoginPolicy.enabled = PasskeyLoginPolicy('enabled') +PasskeyLoginPolicy.other = PasskeyLoginPolicy('other') PasskeyLoginPolicyChangedDetails.new_value.validator = PasskeyLoginPolicy_validator -PasskeyLoginPolicyChangedDetails.previous_value.validator = bv.Nullable( - PasskeyLoginPolicy_validator -) -PasskeyLoginPolicyChangedDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +PasskeyLoginPolicyChangedDetails.previous_value.validator = bv.Nullable(PasskeyLoginPolicy_validator) +PasskeyLoginPolicyChangedDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) PasskeyLoginPolicyChangedDetails._all_fields_ = [ - ("new_value", PasskeyLoginPolicyChangedDetails.new_value.validator), - ("previous_value", PasskeyLoginPolicyChangedDetails.previous_value.validator), + ('new_value', PasskeyLoginPolicyChangedDetails.new_value.validator), + ('previous_value', PasskeyLoginPolicyChangedDetails.previous_value.validator), ] PasskeyLoginPolicyChangedType.description.validator = bv.String() -PasskeyLoginPolicyChangedType._all_field_names_ = set(["description"]) -PasskeyLoginPolicyChangedType._all_fields_ = [ - ("description", PasskeyLoginPolicyChangedType.description.validator) -] +PasskeyLoginPolicyChangedType._all_field_names_ = set(['description']) +PasskeyLoginPolicyChangedType._all_fields_ = [('description', PasskeyLoginPolicyChangedType.description.validator)] PasskeyRemoveDetails._all_field_names_ = set([]) PasskeyRemoveDetails._all_fields_ = [] PasskeyRemoveType.description.validator = bv.String() -PasskeyRemoveType._all_field_names_ = set(["description"]) -PasskeyRemoveType._all_fields_ = [("description", PasskeyRemoveType.description.validator)] +PasskeyRemoveType._all_field_names_ = set(['description']) +PasskeyRemoveType._all_fields_ = [('description', PasskeyRemoveType.description.validator)] PasswordChangeDetails._all_field_names_ = set([]) PasswordChangeDetails._all_fields_ = [] PasswordChangeType.description.validator = bv.String() -PasswordChangeType._all_field_names_ = set(["description"]) -PasswordChangeType._all_fields_ = [("description", PasswordChangeType.description.validator)] +PasswordChangeType._all_field_names_ = set(['description']) +PasswordChangeType._all_fields_ = [('description', PasswordChangeType.description.validator)] PasswordResetAllDetails._all_field_names_ = set([]) PasswordResetAllDetails._all_fields_ = [] PasswordResetAllType.description.validator = bv.String() -PasswordResetAllType._all_field_names_ = set(["description"]) -PasswordResetAllType._all_fields_ = [("description", PasswordResetAllType.description.validator)] +PasswordResetAllType._all_field_names_ = set(['description']) +PasswordResetAllType._all_fields_ = [('description', PasswordResetAllType.description.validator)] PasswordResetDetails._all_field_names_ = set([]) PasswordResetDetails._all_fields_ = [] PasswordResetType.description.validator = bv.String() -PasswordResetType._all_field_names_ = set(["description"]) -PasswordResetType._all_fields_ = [("description", PasswordResetType.description.validator)] - -PasswordStrengthRequirementsChangePolicyDetails.previous_value.validator = ( - team_policies.PasswordStrengthPolicy_validator -) -PasswordStrengthRequirementsChangePolicyDetails.new_value.validator = ( - team_policies.PasswordStrengthPolicy_validator -) -PasswordStrengthRequirementsChangePolicyDetails._all_field_names_ = set( - [ - "previous_value", - "new_value", - ] -) +PasswordResetType._all_field_names_ = set(['description']) +PasswordResetType._all_fields_ = [('description', PasswordResetType.description.validator)] + +PasswordStrengthRequirementsChangePolicyDetails.previous_value.validator = team_policies.PasswordStrengthPolicy_validator +PasswordStrengthRequirementsChangePolicyDetails.new_value.validator = team_policies.PasswordStrengthPolicy_validator +PasswordStrengthRequirementsChangePolicyDetails._all_field_names_ = set([ + 'previous_value', + 'new_value', +]) PasswordStrengthRequirementsChangePolicyDetails._all_fields_ = [ - ( - "previous_value", - PasswordStrengthRequirementsChangePolicyDetails.previous_value.validator, - ), - ("new_value", PasswordStrengthRequirementsChangePolicyDetails.new_value.validator), + ('previous_value', PasswordStrengthRequirementsChangePolicyDetails.previous_value.validator), + ('new_value', PasswordStrengthRequirementsChangePolicyDetails.new_value.validator), ] PasswordStrengthRequirementsChangePolicyType.description.validator = bv.String() -PasswordStrengthRequirementsChangePolicyType._all_field_names_ = set(["description"]) -PasswordStrengthRequirementsChangePolicyType._all_fields_ = [ - ("description", PasswordStrengthRequirementsChangePolicyType.description.validator) -] +PasswordStrengthRequirementsChangePolicyType._all_field_names_ = set(['description']) +PasswordStrengthRequirementsChangePolicyType._all_fields_ = [('description', PasswordStrengthRequirementsChangePolicyType.description.validator)] PathLogInfo.contextual.validator = bv.Nullable(FilePath_validator) PathLogInfo.namespace_relative.validator = NamespaceRelativePathLogInfo_validator -PathLogInfo._all_field_names_ = set( - [ - "contextual", - "namespace_relative", - ] -) +PathLogInfo._all_field_names_ = set([ + 'contextual', + 'namespace_relative', +]) PathLogInfo._all_fields_ = [ - ("contextual", PathLogInfo.contextual.validator), - ("namespace_relative", PathLogInfo.namespace_relative.validator), + ('contextual', PathLogInfo.contextual.validator), + ('namespace_relative', PathLogInfo.namespace_relative.validator), ] PendingSecondaryEmailAddedDetails.secondary_email.validator = EmailAddress_validator -PendingSecondaryEmailAddedDetails._all_field_names_ = set(["secondary_email"]) -PendingSecondaryEmailAddedDetails._all_fields_ = [ - ("secondary_email", PendingSecondaryEmailAddedDetails.secondary_email.validator) -] +PendingSecondaryEmailAddedDetails._all_field_names_ = set(['secondary_email']) +PendingSecondaryEmailAddedDetails._all_fields_ = [('secondary_email', PendingSecondaryEmailAddedDetails.secondary_email.validator)] PendingSecondaryEmailAddedType.description.validator = bv.String() -PendingSecondaryEmailAddedType._all_field_names_ = set(["description"]) -PendingSecondaryEmailAddedType._all_fields_ = [ - ("description", PendingSecondaryEmailAddedType.description.validator) -] +PendingSecondaryEmailAddedType._all_field_names_ = set(['description']) +PendingSecondaryEmailAddedType._all_fields_ = [('description', PendingSecondaryEmailAddedType.description.validator)] PermanentDeleteChangePolicyDetails.new_value.validator = ContentPermanentDeletePolicy_validator -PermanentDeleteChangePolicyDetails.previous_value.validator = bv.Nullable( - ContentPermanentDeletePolicy_validator -) -PermanentDeleteChangePolicyDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +PermanentDeleteChangePolicyDetails.previous_value.validator = bv.Nullable(ContentPermanentDeletePolicy_validator) +PermanentDeleteChangePolicyDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) PermanentDeleteChangePolicyDetails._all_fields_ = [ - ("new_value", PermanentDeleteChangePolicyDetails.new_value.validator), - ("previous_value", PermanentDeleteChangePolicyDetails.previous_value.validator), + ('new_value', PermanentDeleteChangePolicyDetails.new_value.validator), + ('previous_value', PermanentDeleteChangePolicyDetails.previous_value.validator), ] PermanentDeleteChangePolicyType.description.validator = bv.String() -PermanentDeleteChangePolicyType._all_field_names_ = set(["description"]) -PermanentDeleteChangePolicyType._all_fields_ = [ - ("description", PermanentDeleteChangePolicyType.description.validator) -] +PermanentDeleteChangePolicyType._all_field_names_ = set(['description']) +PermanentDeleteChangePolicyType._all_fields_ = [('description', PermanentDeleteChangePolicyType.description.validator)] PlacementRestriction._australia_only_validator = bv.Void() PlacementRestriction._canada_only_validator = bv.Void() @@ -111974,185 +104957,161 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): PlacementRestriction._us_s3_only_validator = bv.Void() PlacementRestriction._other_validator = bv.Void() PlacementRestriction._tagmap = { - "australia_only": PlacementRestriction._australia_only_validator, - "canada_only": PlacementRestriction._canada_only_validator, - "europe_only": PlacementRestriction._europe_only_validator, - "japan_only": PlacementRestriction._japan_only_validator, - "none": PlacementRestriction._none_validator, - "uk_only": PlacementRestriction._uk_only_validator, - "us_s3_only": PlacementRestriction._us_s3_only_validator, - "other": PlacementRestriction._other_validator, + 'australia_only': PlacementRestriction._australia_only_validator, + 'canada_only': PlacementRestriction._canada_only_validator, + 'europe_only': PlacementRestriction._europe_only_validator, + 'japan_only': PlacementRestriction._japan_only_validator, + 'none': PlacementRestriction._none_validator, + 'uk_only': PlacementRestriction._uk_only_validator, + 'us_s3_only': PlacementRestriction._us_s3_only_validator, + 'other': PlacementRestriction._other_validator, } -PlacementRestriction.australia_only = PlacementRestriction("australia_only") -PlacementRestriction.canada_only = PlacementRestriction("canada_only") -PlacementRestriction.europe_only = PlacementRestriction("europe_only") -PlacementRestriction.japan_only = PlacementRestriction("japan_only") -PlacementRestriction.none = PlacementRestriction("none") -PlacementRestriction.uk_only = PlacementRestriction("uk_only") -PlacementRestriction.us_s3_only = PlacementRestriction("us_s3_only") -PlacementRestriction.other = PlacementRestriction("other") +PlacementRestriction.australia_only = PlacementRestriction('australia_only') +PlacementRestriction.canada_only = PlacementRestriction('canada_only') +PlacementRestriction.europe_only = PlacementRestriction('europe_only') +PlacementRestriction.japan_only = PlacementRestriction('japan_only') +PlacementRestriction.none = PlacementRestriction('none') +PlacementRestriction.uk_only = PlacementRestriction('uk_only') +PlacementRestriction.us_s3_only = PlacementRestriction('us_s3_only') +PlacementRestriction.other = PlacementRestriction('other') PolicyType._disposition_validator = bv.Void() PolicyType._retention_validator = bv.Void() PolicyType._other_validator = bv.Void() PolicyType._tagmap = { - "disposition": PolicyType._disposition_validator, - "retention": PolicyType._retention_validator, - "other": PolicyType._other_validator, + 'disposition': PolicyType._disposition_validator, + 'retention': PolicyType._retention_validator, + 'other': PolicyType._other_validator, } -PolicyType.disposition = PolicyType("disposition") -PolicyType.retention = PolicyType("retention") -PolicyType.other = PolicyType("other") +PolicyType.disposition = PolicyType('disposition') +PolicyType.retention = PolicyType('retention') +PolicyType.other = PolicyType('other') PreviewsAiPolicy._default_validator = bv.Void() PreviewsAiPolicy._disabled_validator = bv.Void() PreviewsAiPolicy._enabled_validator = bv.Void() PreviewsAiPolicy._other_validator = bv.Void() PreviewsAiPolicy._tagmap = { - "default": PreviewsAiPolicy._default_validator, - "disabled": PreviewsAiPolicy._disabled_validator, - "enabled": PreviewsAiPolicy._enabled_validator, - "other": PreviewsAiPolicy._other_validator, + 'default': PreviewsAiPolicy._default_validator, + 'disabled': PreviewsAiPolicy._disabled_validator, + 'enabled': PreviewsAiPolicy._enabled_validator, + 'other': PreviewsAiPolicy._other_validator, } -PreviewsAiPolicy.default = PreviewsAiPolicy("default") -PreviewsAiPolicy.disabled = PreviewsAiPolicy("disabled") -PreviewsAiPolicy.enabled = PreviewsAiPolicy("enabled") -PreviewsAiPolicy.other = PreviewsAiPolicy("other") +PreviewsAiPolicy.default = PreviewsAiPolicy('default') +PreviewsAiPolicy.disabled = PreviewsAiPolicy('disabled') +PreviewsAiPolicy.enabled = PreviewsAiPolicy('enabled') +PreviewsAiPolicy.other = PreviewsAiPolicy('other') PreviewsAiPolicyChangedDetails.new_value.validator = PreviewsAiPolicy_validator PreviewsAiPolicyChangedDetails.previous_value.validator = PreviewsAiPolicy_validator -PreviewsAiPolicyChangedDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +PreviewsAiPolicyChangedDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) PreviewsAiPolicyChangedDetails._all_fields_ = [ - ("new_value", PreviewsAiPolicyChangedDetails.new_value.validator), - ("previous_value", PreviewsAiPolicyChangedDetails.previous_value.validator), + ('new_value', PreviewsAiPolicyChangedDetails.new_value.validator), + ('previous_value', PreviewsAiPolicyChangedDetails.previous_value.validator), ] PreviewsAiPolicyChangedType.description.validator = bv.String() -PreviewsAiPolicyChangedType._all_field_names_ = set(["description"]) -PreviewsAiPolicyChangedType._all_fields_ = [ - ("description", PreviewsAiPolicyChangedType.description.validator) -] +PreviewsAiPolicyChangedType._all_field_names_ = set(['description']) +PreviewsAiPolicyChangedType._all_fields_ = [('description', PreviewsAiPolicyChangedType.description.validator)] PrimaryTeamRequestAcceptedDetails.secondary_team.validator = bv.String() PrimaryTeamRequestAcceptedDetails.sent_by.validator = bv.String() -PrimaryTeamRequestAcceptedDetails._all_field_names_ = set( - [ - "secondary_team", - "sent_by", - ] -) +PrimaryTeamRequestAcceptedDetails._all_field_names_ = set([ + 'secondary_team', + 'sent_by', +]) PrimaryTeamRequestAcceptedDetails._all_fields_ = [ - ("secondary_team", PrimaryTeamRequestAcceptedDetails.secondary_team.validator), - ("sent_by", PrimaryTeamRequestAcceptedDetails.sent_by.validator), + ('secondary_team', PrimaryTeamRequestAcceptedDetails.secondary_team.validator), + ('sent_by', PrimaryTeamRequestAcceptedDetails.sent_by.validator), ] PrimaryTeamRequestCanceledDetails.secondary_team.validator = bv.String() PrimaryTeamRequestCanceledDetails.sent_by.validator = bv.String() -PrimaryTeamRequestCanceledDetails._all_field_names_ = set( - [ - "secondary_team", - "sent_by", - ] -) +PrimaryTeamRequestCanceledDetails._all_field_names_ = set([ + 'secondary_team', + 'sent_by', +]) PrimaryTeamRequestCanceledDetails._all_fields_ = [ - ("secondary_team", PrimaryTeamRequestCanceledDetails.secondary_team.validator), - ("sent_by", PrimaryTeamRequestCanceledDetails.sent_by.validator), + ('secondary_team', PrimaryTeamRequestCanceledDetails.secondary_team.validator), + ('sent_by', PrimaryTeamRequestCanceledDetails.sent_by.validator), ] PrimaryTeamRequestExpiredDetails.secondary_team.validator = bv.String() PrimaryTeamRequestExpiredDetails.sent_by.validator = bv.String() -PrimaryTeamRequestExpiredDetails._all_field_names_ = set( - [ - "secondary_team", - "sent_by", - ] -) +PrimaryTeamRequestExpiredDetails._all_field_names_ = set([ + 'secondary_team', + 'sent_by', +]) PrimaryTeamRequestExpiredDetails._all_fields_ = [ - ("secondary_team", PrimaryTeamRequestExpiredDetails.secondary_team.validator), - ("sent_by", PrimaryTeamRequestExpiredDetails.sent_by.validator), + ('secondary_team', PrimaryTeamRequestExpiredDetails.secondary_team.validator), + ('sent_by', PrimaryTeamRequestExpiredDetails.sent_by.validator), ] PrimaryTeamRequestReminderDetails.secondary_team.validator = bv.String() PrimaryTeamRequestReminderDetails.sent_to.validator = bv.String() -PrimaryTeamRequestReminderDetails._all_field_names_ = set( - [ - "secondary_team", - "sent_to", - ] -) +PrimaryTeamRequestReminderDetails._all_field_names_ = set([ + 'secondary_team', + 'sent_to', +]) PrimaryTeamRequestReminderDetails._all_fields_ = [ - ("secondary_team", PrimaryTeamRequestReminderDetails.secondary_team.validator), - ("sent_to", PrimaryTeamRequestReminderDetails.sent_to.validator), + ('secondary_team', PrimaryTeamRequestReminderDetails.secondary_team.validator), + ('sent_to', PrimaryTeamRequestReminderDetails.sent_to.validator), ] ProductAssignedToMemberDetails.user_name.validator = UserNameLogInfo_validator ProductAssignedToMemberDetails.product_name.validator = ProductLogInfo_validator -ProductAssignedToMemberDetails._all_field_names_ = set( - [ - "user_name", - "product_name", - ] -) +ProductAssignedToMemberDetails._all_field_names_ = set([ + 'user_name', + 'product_name', +]) ProductAssignedToMemberDetails._all_fields_ = [ - ("user_name", ProductAssignedToMemberDetails.user_name.validator), - ("product_name", ProductAssignedToMemberDetails.product_name.validator), + ('user_name', ProductAssignedToMemberDetails.user_name.validator), + ('product_name', ProductAssignedToMemberDetails.product_name.validator), ] ProductAssignedToMemberType.description.validator = bv.String() -ProductAssignedToMemberType._all_field_names_ = set(["description"]) -ProductAssignedToMemberType._all_fields_ = [ - ("description", ProductAssignedToMemberType.description.validator) -] +ProductAssignedToMemberType._all_field_names_ = set(['description']) +ProductAssignedToMemberType._all_fields_ = [('description', ProductAssignedToMemberType.description.validator)] ProductLogInfo.product_name.validator = bv.String() -ProductLogInfo._all_field_names_ = set(["product_name"]) -ProductLogInfo._all_fields_ = [("product_name", ProductLogInfo.product_name.validator)] +ProductLogInfo._all_field_names_ = set(['product_name']) +ProductLogInfo._all_fields_ = [('product_name', ProductLogInfo.product_name.validator)] ProductRemovedFromMemberDetails.user_name.validator = UserNameLogInfo_validator ProductRemovedFromMemberDetails.product_name.validator = ProductLogInfo_validator -ProductRemovedFromMemberDetails._all_field_names_ = set( - [ - "user_name", - "product_name", - ] -) +ProductRemovedFromMemberDetails._all_field_names_ = set([ + 'user_name', + 'product_name', +]) ProductRemovedFromMemberDetails._all_fields_ = [ - ("user_name", ProductRemovedFromMemberDetails.user_name.validator), - ("product_name", ProductRemovedFromMemberDetails.product_name.validator), + ('user_name', ProductRemovedFromMemberDetails.user_name.validator), + ('product_name', ProductRemovedFromMemberDetails.product_name.validator), ] ProductRemovedFromMemberType.description.validator = bv.String() -ProductRemovedFromMemberType._all_field_names_ = set(["description"]) -ProductRemovedFromMemberType._all_fields_ = [ - ("description", ProductRemovedFromMemberType.description.validator) -] +ProductRemovedFromMemberType._all_field_names_ = set(['description']) +ProductRemovedFromMemberType._all_fields_ = [('description', ProductRemovedFromMemberType.description.validator)] ProtectInternalDomainsChangedDetails.domains_added.validator = bv.Nullable(bv.List(bv.String())) ProtectInternalDomainsChangedDetails.domains_removed.validator = bv.Nullable(bv.List(bv.String())) -ProtectInternalDomainsChangedDetails._all_field_names_ = set( - [ - "domains_added", - "domains_removed", - ] -) +ProtectInternalDomainsChangedDetails._all_field_names_ = set([ + 'domains_added', + 'domains_removed', +]) ProtectInternalDomainsChangedDetails._all_fields_ = [ - ("domains_added", ProtectInternalDomainsChangedDetails.domains_added.validator), - ("domains_removed", ProtectInternalDomainsChangedDetails.domains_removed.validator), + ('domains_added', ProtectInternalDomainsChangedDetails.domains_added.validator), + ('domains_removed', ProtectInternalDomainsChangedDetails.domains_removed.validator), ] ProtectInternalDomainsChangedType.description.validator = bv.String() -ProtectInternalDomainsChangedType._all_field_names_ = set(["description"]) -ProtectInternalDomainsChangedType._all_fields_ = [ - ("description", ProtectInternalDomainsChangedType.description.validator) -] +ProtectInternalDomainsChangedType._all_field_names_ = set(['description']) +ProtectInternalDomainsChangedType._all_fields_ = [('description', ProtectInternalDomainsChangedType.description.validator)] QuickActionType._delete_shared_link_validator = bv.Void() QuickActionType._reset_password_validator = bv.Void() @@ -112162,121 +105121,87 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): QuickActionType._unlink_session_validator = bv.Void() QuickActionType._other_validator = bv.Void() QuickActionType._tagmap = { - "delete_shared_link": QuickActionType._delete_shared_link_validator, - "reset_password": QuickActionType._reset_password_validator, - "restore_file_or_folder": QuickActionType._restore_file_or_folder_validator, - "unlink_app": QuickActionType._unlink_app_validator, - "unlink_device": QuickActionType._unlink_device_validator, - "unlink_session": QuickActionType._unlink_session_validator, - "other": QuickActionType._other_validator, + 'delete_shared_link': QuickActionType._delete_shared_link_validator, + 'reset_password': QuickActionType._reset_password_validator, + 'restore_file_or_folder': QuickActionType._restore_file_or_folder_validator, + 'unlink_app': QuickActionType._unlink_app_validator, + 'unlink_device': QuickActionType._unlink_device_validator, + 'unlink_session': QuickActionType._unlink_session_validator, + 'other': QuickActionType._other_validator, } -QuickActionType.delete_shared_link = QuickActionType("delete_shared_link") -QuickActionType.reset_password = QuickActionType("reset_password") -QuickActionType.restore_file_or_folder = QuickActionType("restore_file_or_folder") -QuickActionType.unlink_app = QuickActionType("unlink_app") -QuickActionType.unlink_device = QuickActionType("unlink_device") -QuickActionType.unlink_session = QuickActionType("unlink_session") -QuickActionType.other = QuickActionType("other") +QuickActionType.delete_shared_link = QuickActionType('delete_shared_link') +QuickActionType.reset_password = QuickActionType('reset_password') +QuickActionType.restore_file_or_folder = QuickActionType('restore_file_or_folder') +QuickActionType.unlink_app = QuickActionType('unlink_app') +QuickActionType.unlink_device = QuickActionType('unlink_device') +QuickActionType.unlink_session = QuickActionType('unlink_session') +QuickActionType.other = QuickActionType('other') RansomwareAlertCreateReportDetails._all_field_names_ = set([]) RansomwareAlertCreateReportDetails._all_fields_ = [] -RansomwareAlertCreateReportFailedDetails.failure_reason.validator = ( - team.TeamReportFailureReason_validator -) -RansomwareAlertCreateReportFailedDetails._all_field_names_ = set(["failure_reason"]) -RansomwareAlertCreateReportFailedDetails._all_fields_ = [ - ( - "failure_reason", - RansomwareAlertCreateReportFailedDetails.failure_reason.validator, - ) -] +RansomwareAlertCreateReportFailedDetails.failure_reason.validator = team.TeamReportFailureReason_validator +RansomwareAlertCreateReportFailedDetails._all_field_names_ = set(['failure_reason']) +RansomwareAlertCreateReportFailedDetails._all_fields_ = [('failure_reason', RansomwareAlertCreateReportFailedDetails.failure_reason.validator)] RansomwareAlertCreateReportFailedType.description.validator = bv.String() -RansomwareAlertCreateReportFailedType._all_field_names_ = set(["description"]) -RansomwareAlertCreateReportFailedType._all_fields_ = [ - ("description", RansomwareAlertCreateReportFailedType.description.validator) -] +RansomwareAlertCreateReportFailedType._all_field_names_ = set(['description']) +RansomwareAlertCreateReportFailedType._all_fields_ = [('description', RansomwareAlertCreateReportFailedType.description.validator)] RansomwareAlertCreateReportType.description.validator = bv.String() -RansomwareAlertCreateReportType._all_field_names_ = set(["description"]) -RansomwareAlertCreateReportType._all_fields_ = [ - ("description", RansomwareAlertCreateReportType.description.validator) -] +RansomwareAlertCreateReportType._all_field_names_ = set(['description']) +RansomwareAlertCreateReportType._all_fields_ = [('description', RansomwareAlertCreateReportType.description.validator)] RansomwareRestoreProcessCompletedDetails.status.validator = bv.String() RansomwareRestoreProcessCompletedDetails.restored_files_count.validator = bv.Int64() RansomwareRestoreProcessCompletedDetails.restored_files_failed_count.validator = bv.Int64() -RansomwareRestoreProcessCompletedDetails._all_field_names_ = set( - [ - "status", - "restored_files_count", - "restored_files_failed_count", - ] -) +RansomwareRestoreProcessCompletedDetails._all_field_names_ = set([ + 'status', + 'restored_files_count', + 'restored_files_failed_count', +]) RansomwareRestoreProcessCompletedDetails._all_fields_ = [ - ("status", RansomwareRestoreProcessCompletedDetails.status.validator), - ( - "restored_files_count", - RansomwareRestoreProcessCompletedDetails.restored_files_count.validator, - ), - ( - "restored_files_failed_count", - RansomwareRestoreProcessCompletedDetails.restored_files_failed_count.validator, - ), + ('status', RansomwareRestoreProcessCompletedDetails.status.validator), + ('restored_files_count', RansomwareRestoreProcessCompletedDetails.restored_files_count.validator), + ('restored_files_failed_count', RansomwareRestoreProcessCompletedDetails.restored_files_failed_count.validator), ] RansomwareRestoreProcessCompletedType.description.validator = bv.String() -RansomwareRestoreProcessCompletedType._all_field_names_ = set(["description"]) -RansomwareRestoreProcessCompletedType._all_fields_ = [ - ("description", RansomwareRestoreProcessCompletedType.description.validator) -] +RansomwareRestoreProcessCompletedType._all_field_names_ = set(['description']) +RansomwareRestoreProcessCompletedType._all_fields_ = [('description', RansomwareRestoreProcessCompletedType.description.validator)] RansomwareRestoreProcessStartedDetails.extension.validator = bv.String() -RansomwareRestoreProcessStartedDetails._all_field_names_ = set(["extension"]) -RansomwareRestoreProcessStartedDetails._all_fields_ = [ - ("extension", RansomwareRestoreProcessStartedDetails.extension.validator) -] +RansomwareRestoreProcessStartedDetails._all_field_names_ = set(['extension']) +RansomwareRestoreProcessStartedDetails._all_fields_ = [('extension', RansomwareRestoreProcessStartedDetails.extension.validator)] RansomwareRestoreProcessStartedType.description.validator = bv.String() -RansomwareRestoreProcessStartedType._all_field_names_ = set(["description"]) -RansomwareRestoreProcessStartedType._all_fields_ = [ - ("description", RansomwareRestoreProcessStartedType.description.validator) -] +RansomwareRestoreProcessStartedType._all_field_names_ = set(['description']) +RansomwareRestoreProcessStartedType._all_fields_ = [('description', RansomwareRestoreProcessStartedType.description.validator)] -RecipientsConfiguration.recipient_setting_type.validator = bv.Nullable( - AlertRecipientsSettingType_validator -) +RecipientsConfiguration.recipient_setting_type.validator = bv.Nullable(AlertRecipientsSettingType_validator) RecipientsConfiguration.emails.validator = bv.Nullable(bv.List(EmailAddress_validator)) RecipientsConfiguration.groups.validator = bv.Nullable(bv.List(bv.String())) -RecipientsConfiguration._all_field_names_ = set( - [ - "recipient_setting_type", - "emails", - "groups", - ] -) +RecipientsConfiguration._all_field_names_ = set([ + 'recipient_setting_type', + 'emails', + 'groups', +]) RecipientsConfiguration._all_fields_ = [ - ( - "recipient_setting_type", - RecipientsConfiguration.recipient_setting_type.validator, - ), - ("emails", RecipientsConfiguration.emails.validator), - ("groups", RecipientsConfiguration.groups.validator), + ('recipient_setting_type', RecipientsConfiguration.recipient_setting_type.validator), + ('emails', RecipientsConfiguration.emails.validator), + ('groups', RecipientsConfiguration.groups.validator), ] RelocateAssetReferencesLogInfo.src_asset_index.validator = bv.UInt64() RelocateAssetReferencesLogInfo.dest_asset_index.validator = bv.UInt64() -RelocateAssetReferencesLogInfo._all_field_names_ = set( - [ - "src_asset_index", - "dest_asset_index", - ] -) +RelocateAssetReferencesLogInfo._all_field_names_ = set([ + 'src_asset_index', + 'dest_asset_index', +]) RelocateAssetReferencesLogInfo._all_fields_ = [ - ("src_asset_index", RelocateAssetReferencesLogInfo.src_asset_index.validator), - ("dest_asset_index", RelocateAssetReferencesLogInfo.dest_asset_index.validator), + ('src_asset_index', RelocateAssetReferencesLogInfo.src_asset_index.validator), + ('dest_asset_index', RelocateAssetReferencesLogInfo.dest_asset_index.validator), ] ReplayAddingPeoplePolicy._anyone_validator = bv.Void() @@ -112284,89 +105209,75 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ReplayAddingPeoplePolicy._team_only_validator = bv.Void() ReplayAddingPeoplePolicy._other_validator = bv.Void() ReplayAddingPeoplePolicy._tagmap = { - "anyone": ReplayAddingPeoplePolicy._anyone_validator, - "team_and_allowlist": ReplayAddingPeoplePolicy._team_and_allowlist_validator, - "team_only": ReplayAddingPeoplePolicy._team_only_validator, - "other": ReplayAddingPeoplePolicy._other_validator, + 'anyone': ReplayAddingPeoplePolicy._anyone_validator, + 'team_and_allowlist': ReplayAddingPeoplePolicy._team_and_allowlist_validator, + 'team_only': ReplayAddingPeoplePolicy._team_only_validator, + 'other': ReplayAddingPeoplePolicy._other_validator, } -ReplayAddingPeoplePolicy.anyone = ReplayAddingPeoplePolicy("anyone") -ReplayAddingPeoplePolicy.team_and_allowlist = ReplayAddingPeoplePolicy("team_and_allowlist") -ReplayAddingPeoplePolicy.team_only = ReplayAddingPeoplePolicy("team_only") -ReplayAddingPeoplePolicy.other = ReplayAddingPeoplePolicy("other") +ReplayAddingPeoplePolicy.anyone = ReplayAddingPeoplePolicy('anyone') +ReplayAddingPeoplePolicy.team_and_allowlist = ReplayAddingPeoplePolicy('team_and_allowlist') +ReplayAddingPeoplePolicy.team_only = ReplayAddingPeoplePolicy('team_only') +ReplayAddingPeoplePolicy.other = ReplayAddingPeoplePolicy('other') ReplayAddingPeoplePolicyChangedDetails.new_value.validator = ReplayAddingPeoplePolicy_validator ReplayAddingPeoplePolicyChangedDetails.previous_value.validator = ReplayAddingPeoplePolicy_validator -ReplayAddingPeoplePolicyChangedDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +ReplayAddingPeoplePolicyChangedDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) ReplayAddingPeoplePolicyChangedDetails._all_fields_ = [ - ("new_value", ReplayAddingPeoplePolicyChangedDetails.new_value.validator), - ("previous_value", ReplayAddingPeoplePolicyChangedDetails.previous_value.validator), + ('new_value', ReplayAddingPeoplePolicyChangedDetails.new_value.validator), + ('previous_value', ReplayAddingPeoplePolicyChangedDetails.previous_value.validator), ] ReplayAddingPeoplePolicyChangedType.description.validator = bv.String() -ReplayAddingPeoplePolicyChangedType._all_field_names_ = set(["description"]) -ReplayAddingPeoplePolicyChangedType._all_fields_ = [ - ("description", ReplayAddingPeoplePolicyChangedType.description.validator) -] +ReplayAddingPeoplePolicyChangedType._all_field_names_ = set(['description']) +ReplayAddingPeoplePolicyChangedType._all_fields_ = [('description', ReplayAddingPeoplePolicyChangedType.description.validator)] ReplayFileDeleteDetails._all_field_names_ = set([]) ReplayFileDeleteDetails._all_fields_ = [] ReplayFileDeleteType.description.validator = bv.String() -ReplayFileDeleteType._all_field_names_ = set(["description"]) -ReplayFileDeleteType._all_fields_ = [("description", ReplayFileDeleteType.description.validator)] +ReplayFileDeleteType._all_field_names_ = set(['description']) +ReplayFileDeleteType._all_fields_ = [('description', ReplayFileDeleteType.description.validator)] ReplayFileDownloadedDetails._all_field_names_ = set([]) ReplayFileDownloadedDetails._all_fields_ = [] ReplayFileDownloadedType.description.validator = bv.String() -ReplayFileDownloadedType._all_field_names_ = set(["description"]) -ReplayFileDownloadedType._all_fields_ = [ - ("description", ReplayFileDownloadedType.description.validator) -] +ReplayFileDownloadedType._all_field_names_ = set(['description']) +ReplayFileDownloadedType._all_fields_ = [('description', ReplayFileDownloadedType.description.validator)] ReplayFileSharedLinkCreatedDetails.is_watermarked.validator = bv.Nullable(bv.Boolean()) ReplayFileSharedLinkCreatedDetails.access.validator = bv.Nullable(ReplayLinkAccess_validator) -ReplayFileSharedLinkCreatedDetails._all_field_names_ = set( - [ - "is_watermarked", - "access", - ] -) +ReplayFileSharedLinkCreatedDetails._all_field_names_ = set([ + 'is_watermarked', + 'access', +]) ReplayFileSharedLinkCreatedDetails._all_fields_ = [ - ("is_watermarked", ReplayFileSharedLinkCreatedDetails.is_watermarked.validator), - ("access", ReplayFileSharedLinkCreatedDetails.access.validator), + ('is_watermarked', ReplayFileSharedLinkCreatedDetails.is_watermarked.validator), + ('access', ReplayFileSharedLinkCreatedDetails.access.validator), ] ReplayFileSharedLinkCreatedType.description.validator = bv.String() -ReplayFileSharedLinkCreatedType._all_field_names_ = set(["description"]) -ReplayFileSharedLinkCreatedType._all_fields_ = [ - ("description", ReplayFileSharedLinkCreatedType.description.validator) -] +ReplayFileSharedLinkCreatedType._all_field_names_ = set(['description']) +ReplayFileSharedLinkCreatedType._all_fields_ = [('description', ReplayFileSharedLinkCreatedType.description.validator)] ReplayFileSharedLinkModifiedDetails.is_watermarked.validator = bv.Nullable(bv.Boolean()) ReplayFileSharedLinkModifiedDetails.access.validator = bv.Nullable(ReplayLinkAccess_validator) -ReplayFileSharedLinkModifiedDetails._all_field_names_ = set( - [ - "is_watermarked", - "access", - ] -) +ReplayFileSharedLinkModifiedDetails._all_field_names_ = set([ + 'is_watermarked', + 'access', +]) ReplayFileSharedLinkModifiedDetails._all_fields_ = [ - ("is_watermarked", ReplayFileSharedLinkModifiedDetails.is_watermarked.validator), - ("access", ReplayFileSharedLinkModifiedDetails.access.validator), + ('is_watermarked', ReplayFileSharedLinkModifiedDetails.is_watermarked.validator), + ('access', ReplayFileSharedLinkModifiedDetails.access.validator), ] ReplayFileSharedLinkModifiedType.description.validator = bv.String() -ReplayFileSharedLinkModifiedType._all_field_names_ = set(["description"]) -ReplayFileSharedLinkModifiedType._all_fields_ = [ - ("description", ReplayFileSharedLinkModifiedType.description.validator) -] +ReplayFileSharedLinkModifiedType._all_field_names_ = set(['description']) +ReplayFileSharedLinkModifiedType._all_fields_ = [('description', ReplayFileSharedLinkModifiedType.description.validator)] ReplayLinkAccess._anyone_logged_in_validator = bv.Void() ReplayLinkAccess._no_login_required_validator = bv.Void() @@ -112374,2013 +105285,1413 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ReplayLinkAccess._team_only_validator = bv.Void() ReplayLinkAccess._other_validator = bv.Void() ReplayLinkAccess._tagmap = { - "anyone_logged_in": ReplayLinkAccess._anyone_logged_in_validator, - "no_login_required": ReplayLinkAccess._no_login_required_validator, - "team_and_approved": ReplayLinkAccess._team_and_approved_validator, - "team_only": ReplayLinkAccess._team_only_validator, - "other": ReplayLinkAccess._other_validator, + 'anyone_logged_in': ReplayLinkAccess._anyone_logged_in_validator, + 'no_login_required': ReplayLinkAccess._no_login_required_validator, + 'team_and_approved': ReplayLinkAccess._team_and_approved_validator, + 'team_only': ReplayLinkAccess._team_only_validator, + 'other': ReplayLinkAccess._other_validator, } -ReplayLinkAccess.anyone_logged_in = ReplayLinkAccess("anyone_logged_in") -ReplayLinkAccess.no_login_required = ReplayLinkAccess("no_login_required") -ReplayLinkAccess.team_and_approved = ReplayLinkAccess("team_and_approved") -ReplayLinkAccess.team_only = ReplayLinkAccess("team_only") -ReplayLinkAccess.other = ReplayLinkAccess("other") +ReplayLinkAccess.anyone_logged_in = ReplayLinkAccess('anyone_logged_in') +ReplayLinkAccess.no_login_required = ReplayLinkAccess('no_login_required') +ReplayLinkAccess.team_and_approved = ReplayLinkAccess('team_and_approved') +ReplayLinkAccess.team_only = ReplayLinkAccess('team_only') +ReplayLinkAccess.other = ReplayLinkAccess('other') ReplayProjectTeamAddDetails._all_field_names_ = set([]) ReplayProjectTeamAddDetails._all_fields_ = [] ReplayProjectTeamAddType.description.validator = bv.String() -ReplayProjectTeamAddType._all_field_names_ = set(["description"]) -ReplayProjectTeamAddType._all_fields_ = [ - ("description", ReplayProjectTeamAddType.description.validator) -] +ReplayProjectTeamAddType._all_field_names_ = set(['description']) +ReplayProjectTeamAddType._all_fields_ = [('description', ReplayProjectTeamAddType.description.validator)] ReplayProjectTeamDeleteDetails._all_field_names_ = set([]) ReplayProjectTeamDeleteDetails._all_fields_ = [] ReplayProjectTeamDeleteType.description.validator = bv.String() -ReplayProjectTeamDeleteType._all_field_names_ = set(["description"]) -ReplayProjectTeamDeleteType._all_fields_ = [ - ("description", ReplayProjectTeamDeleteType.description.validator) -] +ReplayProjectTeamDeleteType._all_field_names_ = set(['description']) +ReplayProjectTeamDeleteType._all_fields_ = [('description', ReplayProjectTeamDeleteType.description.validator)] ReplaySharingPolicy._anyone_validator = bv.Void() ReplaySharingPolicy._team_and_allowlist_validator = bv.Void() ReplaySharingPolicy._team_only_validator = bv.Void() ReplaySharingPolicy._other_validator = bv.Void() ReplaySharingPolicy._tagmap = { - "anyone": ReplaySharingPolicy._anyone_validator, - "team_and_allowlist": ReplaySharingPolicy._team_and_allowlist_validator, - "team_only": ReplaySharingPolicy._team_only_validator, - "other": ReplaySharingPolicy._other_validator, + 'anyone': ReplaySharingPolicy._anyone_validator, + 'team_and_allowlist': ReplaySharingPolicy._team_and_allowlist_validator, + 'team_only': ReplaySharingPolicy._team_only_validator, + 'other': ReplaySharingPolicy._other_validator, } -ReplaySharingPolicy.anyone = ReplaySharingPolicy("anyone") -ReplaySharingPolicy.team_and_allowlist = ReplaySharingPolicy("team_and_allowlist") -ReplaySharingPolicy.team_only = ReplaySharingPolicy("team_only") -ReplaySharingPolicy.other = ReplaySharingPolicy("other") +ReplaySharingPolicy.anyone = ReplaySharingPolicy('anyone') +ReplaySharingPolicy.team_and_allowlist = ReplaySharingPolicy('team_and_allowlist') +ReplaySharingPolicy.team_only = ReplaySharingPolicy('team_only') +ReplaySharingPolicy.other = ReplaySharingPolicy('other') ReplaySharingPolicyChangedDetails.new_value.validator = ReplaySharingPolicy_validator ReplaySharingPolicyChangedDetails.previous_value.validator = ReplaySharingPolicy_validator -ReplaySharingPolicyChangedDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +ReplaySharingPolicyChangedDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) ReplaySharingPolicyChangedDetails._all_fields_ = [ - ("new_value", ReplaySharingPolicyChangedDetails.new_value.validator), - ("previous_value", ReplaySharingPolicyChangedDetails.previous_value.validator), + ('new_value', ReplaySharingPolicyChangedDetails.new_value.validator), + ('previous_value', ReplaySharingPolicyChangedDetails.previous_value.validator), ] ReplaySharingPolicyChangedType.description.validator = bv.String() -ReplaySharingPolicyChangedType._all_field_names_ = set(["description"]) -ReplaySharingPolicyChangedType._all_fields_ = [ - ("description", ReplaySharingPolicyChangedType.description.validator) -] +ReplaySharingPolicyChangedType._all_field_names_ = set(['description']) +ReplaySharingPolicyChangedType._all_fields_ = [('description', ReplaySharingPolicyChangedType.description.validator)] ReplayTeamProjectCreatedDetails.name.validator = bv.String() -ReplayTeamProjectCreatedDetails._all_field_names_ = set(["name"]) -ReplayTeamProjectCreatedDetails._all_fields_ = [ - ("name", ReplayTeamProjectCreatedDetails.name.validator) -] +ReplayTeamProjectCreatedDetails._all_field_names_ = set(['name']) +ReplayTeamProjectCreatedDetails._all_fields_ = [('name', ReplayTeamProjectCreatedDetails.name.validator)] ReplayTeamProjectCreatedType.description.validator = bv.String() -ReplayTeamProjectCreatedType._all_field_names_ = set(["description"]) -ReplayTeamProjectCreatedType._all_fields_ = [ - ("description", ReplayTeamProjectCreatedType.description.validator) -] +ReplayTeamProjectCreatedType._all_field_names_ = set(['description']) +ReplayTeamProjectCreatedType._all_fields_ = [('description', ReplayTeamProjectCreatedType.description.validator)] ResellerLogInfo.reseller_name.validator = bv.String() ResellerLogInfo.reseller_email.validator = EmailAddress_validator -ResellerLogInfo._all_field_names_ = set( - [ - "reseller_name", - "reseller_email", - ] -) +ResellerLogInfo._all_field_names_ = set([ + 'reseller_name', + 'reseller_email', +]) ResellerLogInfo._all_fields_ = [ - ("reseller_name", ResellerLogInfo.reseller_name.validator), - ("reseller_email", ResellerLogInfo.reseller_email.validator), + ('reseller_name', ResellerLogInfo.reseller_name.validator), + ('reseller_email', ResellerLogInfo.reseller_email.validator), ] ResellerRole._not_reseller_validator = bv.Void() ResellerRole._reseller_admin_validator = bv.Void() ResellerRole._other_validator = bv.Void() ResellerRole._tagmap = { - "not_reseller": ResellerRole._not_reseller_validator, - "reseller_admin": ResellerRole._reseller_admin_validator, - "other": ResellerRole._other_validator, + 'not_reseller': ResellerRole._not_reseller_validator, + 'reseller_admin': ResellerRole._reseller_admin_validator, + 'other': ResellerRole._other_validator, } -ResellerRole.not_reseller = ResellerRole("not_reseller") -ResellerRole.reseller_admin = ResellerRole("reseller_admin") -ResellerRole.other = ResellerRole("other") +ResellerRole.not_reseller = ResellerRole('not_reseller') +ResellerRole.reseller_admin = ResellerRole('reseller_admin') +ResellerRole.other = ResellerRole('other') ResellerSupportChangePolicyDetails.new_value.validator = ResellerSupportPolicy_validator ResellerSupportChangePolicyDetails.previous_value.validator = ResellerSupportPolicy_validator -ResellerSupportChangePolicyDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +ResellerSupportChangePolicyDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) ResellerSupportChangePolicyDetails._all_fields_ = [ - ("new_value", ResellerSupportChangePolicyDetails.new_value.validator), - ("previous_value", ResellerSupportChangePolicyDetails.previous_value.validator), + ('new_value', ResellerSupportChangePolicyDetails.new_value.validator), + ('previous_value', ResellerSupportChangePolicyDetails.previous_value.validator), ] ResellerSupportChangePolicyType.description.validator = bv.String() -ResellerSupportChangePolicyType._all_field_names_ = set(["description"]) -ResellerSupportChangePolicyType._all_fields_ = [ - ("description", ResellerSupportChangePolicyType.description.validator) -] +ResellerSupportChangePolicyType._all_field_names_ = set(['description']) +ResellerSupportChangePolicyType._all_fields_ = [('description', ResellerSupportChangePolicyType.description.validator)] ResellerSupportPolicy._disabled_validator = bv.Void() ResellerSupportPolicy._enabled_validator = bv.Void() ResellerSupportPolicy._other_validator = bv.Void() ResellerSupportPolicy._tagmap = { - "disabled": ResellerSupportPolicy._disabled_validator, - "enabled": ResellerSupportPolicy._enabled_validator, - "other": ResellerSupportPolicy._other_validator, + 'disabled': ResellerSupportPolicy._disabled_validator, + 'enabled': ResellerSupportPolicy._enabled_validator, + 'other': ResellerSupportPolicy._other_validator, } -ResellerSupportPolicy.disabled = ResellerSupportPolicy("disabled") -ResellerSupportPolicy.enabled = ResellerSupportPolicy("enabled") -ResellerSupportPolicy.other = ResellerSupportPolicy("other") +ResellerSupportPolicy.disabled = ResellerSupportPolicy('disabled') +ResellerSupportPolicy.enabled = ResellerSupportPolicy('enabled') +ResellerSupportPolicy.other = ResellerSupportPolicy('other') ResellerSupportSessionEndDetails._all_field_names_ = set([]) ResellerSupportSessionEndDetails._all_fields_ = [] ResellerSupportSessionEndType.description.validator = bv.String() -ResellerSupportSessionEndType._all_field_names_ = set(["description"]) -ResellerSupportSessionEndType._all_fields_ = [ - ("description", ResellerSupportSessionEndType.description.validator) -] +ResellerSupportSessionEndType._all_field_names_ = set(['description']) +ResellerSupportSessionEndType._all_fields_ = [('description', ResellerSupportSessionEndType.description.validator)] ResellerSupportSessionStartDetails._all_field_names_ = set([]) ResellerSupportSessionStartDetails._all_fields_ = [] ResellerSupportSessionStartType.description.validator = bv.String() -ResellerSupportSessionStartType._all_field_names_ = set(["description"]) -ResellerSupportSessionStartType._all_fields_ = [ - ("description", ResellerSupportSessionStartType.description.validator) -] +ResellerSupportSessionStartType._all_field_names_ = set(['description']) +ResellerSupportSessionStartType._all_fields_ = [('description', ResellerSupportSessionStartType.description.validator)] RewindFolderDetails.rewind_folder_target_ts_ms.validator = common.DropboxTimestamp_validator -RewindFolderDetails._all_field_names_ = set(["rewind_folder_target_ts_ms"]) -RewindFolderDetails._all_fields_ = [ - ( - "rewind_folder_target_ts_ms", - RewindFolderDetails.rewind_folder_target_ts_ms.validator, - ) -] +RewindFolderDetails._all_field_names_ = set(['rewind_folder_target_ts_ms']) +RewindFolderDetails._all_fields_ = [('rewind_folder_target_ts_ms', RewindFolderDetails.rewind_folder_target_ts_ms.validator)] RewindFolderType.description.validator = bv.String() -RewindFolderType._all_field_names_ = set(["description"]) -RewindFolderType._all_fields_ = [("description", RewindFolderType.description.validator)] +RewindFolderType._all_field_names_ = set(['description']) +RewindFolderType._all_fields_ = [('description', RewindFolderType.description.validator)] RewindPolicy._admins_only_validator = bv.Void() RewindPolicy._everyone_validator = bv.Void() RewindPolicy._other_validator = bv.Void() RewindPolicy._tagmap = { - "admins_only": RewindPolicy._admins_only_validator, - "everyone": RewindPolicy._everyone_validator, - "other": RewindPolicy._other_validator, + 'admins_only': RewindPolicy._admins_only_validator, + 'everyone': RewindPolicy._everyone_validator, + 'other': RewindPolicy._other_validator, } -RewindPolicy.admins_only = RewindPolicy("admins_only") -RewindPolicy.everyone = RewindPolicy("everyone") -RewindPolicy.other = RewindPolicy("other") +RewindPolicy.admins_only = RewindPolicy('admins_only') +RewindPolicy.everyone = RewindPolicy('everyone') +RewindPolicy.other = RewindPolicy('other') RewindPolicyChangedDetails.new_value.validator = RewindPolicy_validator RewindPolicyChangedDetails.previous_value.validator = RewindPolicy_validator -RewindPolicyChangedDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +RewindPolicyChangedDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) RewindPolicyChangedDetails._all_fields_ = [ - ("new_value", RewindPolicyChangedDetails.new_value.validator), - ("previous_value", RewindPolicyChangedDetails.previous_value.validator), + ('new_value', RewindPolicyChangedDetails.new_value.validator), + ('previous_value', RewindPolicyChangedDetails.previous_value.validator), ] RewindPolicyChangedType.description.validator = bv.String() -RewindPolicyChangedType._all_field_names_ = set(["description"]) -RewindPolicyChangedType._all_fields_ = [ - ("description", RewindPolicyChangedType.description.validator) -] +RewindPolicyChangedType._all_field_names_ = set(['description']) +RewindPolicyChangedType._all_fields_ = [('description', RewindPolicyChangedType.description.validator)] RiscSecurityEventDetails.event_type.validator = bv.String() RiscSecurityEventDetails.reason.validator = bv.String() RiscSecurityEventDetails.issuer.validator = bv.String() -RiscSecurityEventDetails._all_field_names_ = set( - [ - "event_type", - "reason", - "issuer", - ] -) +RiscSecurityEventDetails._all_field_names_ = set([ + 'event_type', + 'reason', + 'issuer', +]) RiscSecurityEventDetails._all_fields_ = [ - ("event_type", RiscSecurityEventDetails.event_type.validator), - ("reason", RiscSecurityEventDetails.reason.validator), - ("issuer", RiscSecurityEventDetails.issuer.validator), + ('event_type', RiscSecurityEventDetails.event_type.validator), + ('reason', RiscSecurityEventDetails.reason.validator), + ('issuer', RiscSecurityEventDetails.issuer.validator), ] RiscSecurityEventType.description.validator = bv.String() -RiscSecurityEventType._all_field_names_ = set(["description"]) -RiscSecurityEventType._all_fields_ = [("description", RiscSecurityEventType.description.validator)] +RiscSecurityEventType._all_field_names_ = set(['description']) +RiscSecurityEventType._all_fields_ = [('description', RiscSecurityEventType.description.validator)] SecondaryEmailDeletedDetails.secondary_email.validator = EmailAddress_validator -SecondaryEmailDeletedDetails._all_field_names_ = set(["secondary_email"]) -SecondaryEmailDeletedDetails._all_fields_ = [ - ("secondary_email", SecondaryEmailDeletedDetails.secondary_email.validator) -] +SecondaryEmailDeletedDetails._all_field_names_ = set(['secondary_email']) +SecondaryEmailDeletedDetails._all_fields_ = [('secondary_email', SecondaryEmailDeletedDetails.secondary_email.validator)] SecondaryEmailDeletedType.description.validator = bv.String() -SecondaryEmailDeletedType._all_field_names_ = set(["description"]) -SecondaryEmailDeletedType._all_fields_ = [ - ("description", SecondaryEmailDeletedType.description.validator) -] +SecondaryEmailDeletedType._all_field_names_ = set(['description']) +SecondaryEmailDeletedType._all_fields_ = [('description', SecondaryEmailDeletedType.description.validator)] SecondaryEmailVerifiedDetails.secondary_email.validator = EmailAddress_validator -SecondaryEmailVerifiedDetails._all_field_names_ = set(["secondary_email"]) -SecondaryEmailVerifiedDetails._all_fields_ = [ - ("secondary_email", SecondaryEmailVerifiedDetails.secondary_email.validator) -] +SecondaryEmailVerifiedDetails._all_field_names_ = set(['secondary_email']) +SecondaryEmailVerifiedDetails._all_fields_ = [('secondary_email', SecondaryEmailVerifiedDetails.secondary_email.validator)] SecondaryEmailVerifiedType.description.validator = bv.String() -SecondaryEmailVerifiedType._all_field_names_ = set(["description"]) -SecondaryEmailVerifiedType._all_fields_ = [ - ("description", SecondaryEmailVerifiedType.description.validator) -] +SecondaryEmailVerifiedType._all_field_names_ = set(['description']) +SecondaryEmailVerifiedType._all_fields_ = [('description', SecondaryEmailVerifiedType.description.validator)] SecondaryMailsPolicy._disabled_validator = bv.Void() SecondaryMailsPolicy._enabled_validator = bv.Void() SecondaryMailsPolicy._other_validator = bv.Void() SecondaryMailsPolicy._tagmap = { - "disabled": SecondaryMailsPolicy._disabled_validator, - "enabled": SecondaryMailsPolicy._enabled_validator, - "other": SecondaryMailsPolicy._other_validator, + 'disabled': SecondaryMailsPolicy._disabled_validator, + 'enabled': SecondaryMailsPolicy._enabled_validator, + 'other': SecondaryMailsPolicy._other_validator, } -SecondaryMailsPolicy.disabled = SecondaryMailsPolicy("disabled") -SecondaryMailsPolicy.enabled = SecondaryMailsPolicy("enabled") -SecondaryMailsPolicy.other = SecondaryMailsPolicy("other") +SecondaryMailsPolicy.disabled = SecondaryMailsPolicy('disabled') +SecondaryMailsPolicy.enabled = SecondaryMailsPolicy('enabled') +SecondaryMailsPolicy.other = SecondaryMailsPolicy('other') SecondaryMailsPolicyChangedDetails.previous_value.validator = SecondaryMailsPolicy_validator SecondaryMailsPolicyChangedDetails.new_value.validator = SecondaryMailsPolicy_validator -SecondaryMailsPolicyChangedDetails._all_field_names_ = set( - [ - "previous_value", - "new_value", - ] -) +SecondaryMailsPolicyChangedDetails._all_field_names_ = set([ + 'previous_value', + 'new_value', +]) SecondaryMailsPolicyChangedDetails._all_fields_ = [ - ("previous_value", SecondaryMailsPolicyChangedDetails.previous_value.validator), - ("new_value", SecondaryMailsPolicyChangedDetails.new_value.validator), + ('previous_value', SecondaryMailsPolicyChangedDetails.previous_value.validator), + ('new_value', SecondaryMailsPolicyChangedDetails.new_value.validator), ] SecondaryMailsPolicyChangedType.description.validator = bv.String() -SecondaryMailsPolicyChangedType._all_field_names_ = set(["description"]) -SecondaryMailsPolicyChangedType._all_fields_ = [ - ("description", SecondaryMailsPolicyChangedType.description.validator) -] +SecondaryMailsPolicyChangedType._all_field_names_ = set(['description']) +SecondaryMailsPolicyChangedType._all_fields_ = [('description', SecondaryMailsPolicyChangedType.description.validator)] SecondaryTeamRequestAcceptedDetails.primary_team.validator = bv.String() SecondaryTeamRequestAcceptedDetails.sent_by.validator = bv.String() -SecondaryTeamRequestAcceptedDetails._all_field_names_ = set( - [ - "primary_team", - "sent_by", - ] -) +SecondaryTeamRequestAcceptedDetails._all_field_names_ = set([ + 'primary_team', + 'sent_by', +]) SecondaryTeamRequestAcceptedDetails._all_fields_ = [ - ("primary_team", SecondaryTeamRequestAcceptedDetails.primary_team.validator), - ("sent_by", SecondaryTeamRequestAcceptedDetails.sent_by.validator), + ('primary_team', SecondaryTeamRequestAcceptedDetails.primary_team.validator), + ('sent_by', SecondaryTeamRequestAcceptedDetails.sent_by.validator), ] SecondaryTeamRequestCanceledDetails.sent_to.validator = bv.String() SecondaryTeamRequestCanceledDetails.sent_by.validator = bv.String() -SecondaryTeamRequestCanceledDetails._all_field_names_ = set( - [ - "sent_to", - "sent_by", - ] -) +SecondaryTeamRequestCanceledDetails._all_field_names_ = set([ + 'sent_to', + 'sent_by', +]) SecondaryTeamRequestCanceledDetails._all_fields_ = [ - ("sent_to", SecondaryTeamRequestCanceledDetails.sent_to.validator), - ("sent_by", SecondaryTeamRequestCanceledDetails.sent_by.validator), + ('sent_to', SecondaryTeamRequestCanceledDetails.sent_to.validator), + ('sent_by', SecondaryTeamRequestCanceledDetails.sent_by.validator), ] SecondaryTeamRequestExpiredDetails.sent_to.validator = bv.String() -SecondaryTeamRequestExpiredDetails._all_field_names_ = set(["sent_to"]) -SecondaryTeamRequestExpiredDetails._all_fields_ = [ - ("sent_to", SecondaryTeamRequestExpiredDetails.sent_to.validator) -] +SecondaryTeamRequestExpiredDetails._all_field_names_ = set(['sent_to']) +SecondaryTeamRequestExpiredDetails._all_fields_ = [('sent_to', SecondaryTeamRequestExpiredDetails.sent_to.validator)] SecondaryTeamRequestReminderDetails.sent_to.validator = bv.String() -SecondaryTeamRequestReminderDetails._all_field_names_ = set(["sent_to"]) -SecondaryTeamRequestReminderDetails._all_fields_ = [ - ("sent_to", SecondaryTeamRequestReminderDetails.sent_to.validator) -] +SecondaryTeamRequestReminderDetails._all_field_names_ = set(['sent_to']) +SecondaryTeamRequestReminderDetails._all_fields_ = [('sent_to', SecondaryTeamRequestReminderDetails.sent_to.validator)] SendAndTrackFileAddedDetails._all_field_names_ = set([]) SendAndTrackFileAddedDetails._all_fields_ = [] SendAndTrackFileAddedType.description.validator = bv.String() -SendAndTrackFileAddedType._all_field_names_ = set(["description"]) -SendAndTrackFileAddedType._all_fields_ = [ - ("description", SendAndTrackFileAddedType.description.validator) -] +SendAndTrackFileAddedType._all_field_names_ = set(['description']) +SendAndTrackFileAddedType._all_fields_ = [('description', SendAndTrackFileAddedType.description.validator)] SendAndTrackFileRenamedDetails.previous_value.validator = bv.Nullable(bv.String()) -SendAndTrackFileRenamedDetails._all_field_names_ = set(["previous_value"]) -SendAndTrackFileRenamedDetails._all_fields_ = [ - ("previous_value", SendAndTrackFileRenamedDetails.previous_value.validator) -] +SendAndTrackFileRenamedDetails._all_field_names_ = set(['previous_value']) +SendAndTrackFileRenamedDetails._all_fields_ = [('previous_value', SendAndTrackFileRenamedDetails.previous_value.validator)] SendAndTrackFileRenamedType.description.validator = bv.String() -SendAndTrackFileRenamedType._all_field_names_ = set(["description"]) -SendAndTrackFileRenamedType._all_fields_ = [ - ("description", SendAndTrackFileRenamedType.description.validator) -] +SendAndTrackFileRenamedType._all_field_names_ = set(['description']) +SendAndTrackFileRenamedType._all_fields_ = [('description', SendAndTrackFileRenamedType.description.validator)] SendAndTrackFileUpdatedDetails._all_field_names_ = set([]) SendAndTrackFileUpdatedDetails._all_fields_ = [] SendAndTrackFileUpdatedType.description.validator = bv.String() -SendAndTrackFileUpdatedType._all_field_names_ = set(["description"]) -SendAndTrackFileUpdatedType._all_fields_ = [ - ("description", SendAndTrackFileUpdatedType.description.validator) -] +SendAndTrackFileUpdatedType._all_field_names_ = set(['description']) +SendAndTrackFileUpdatedType._all_fields_ = [('description', SendAndTrackFileUpdatedType.description.validator)] SendAndTrackLinkCreatedDetails.link_settings.validator = LinkSettingsLogInfo_validator -SendAndTrackLinkCreatedDetails._all_field_names_ = set(["link_settings"]) -SendAndTrackLinkCreatedDetails._all_fields_ = [ - ("link_settings", SendAndTrackLinkCreatedDetails.link_settings.validator) -] +SendAndTrackLinkCreatedDetails._all_field_names_ = set(['link_settings']) +SendAndTrackLinkCreatedDetails._all_fields_ = [('link_settings', SendAndTrackLinkCreatedDetails.link_settings.validator)] SendAndTrackLinkCreatedType.description.validator = bv.String() -SendAndTrackLinkCreatedType._all_field_names_ = set(["description"]) -SendAndTrackLinkCreatedType._all_fields_ = [ - ("description", SendAndTrackLinkCreatedType.description.validator) -] +SendAndTrackLinkCreatedType._all_field_names_ = set(['description']) +SendAndTrackLinkCreatedType._all_fields_ = [('description', SendAndTrackLinkCreatedType.description.validator)] SendAndTrackLinkDeletedDetails.shared_content_link.validator = bv.String() -SendAndTrackLinkDeletedDetails._all_field_names_ = set(["shared_content_link"]) -SendAndTrackLinkDeletedDetails._all_fields_ = [ - ( - "shared_content_link", - SendAndTrackLinkDeletedDetails.shared_content_link.validator, - ) -] +SendAndTrackLinkDeletedDetails._all_field_names_ = set(['shared_content_link']) +SendAndTrackLinkDeletedDetails._all_fields_ = [('shared_content_link', SendAndTrackLinkDeletedDetails.shared_content_link.validator)] SendAndTrackLinkDeletedType.description.validator = bv.String() -SendAndTrackLinkDeletedType._all_field_names_ = set(["description"]) -SendAndTrackLinkDeletedType._all_fields_ = [ - ("description", SendAndTrackLinkDeletedType.description.validator) -] +SendAndTrackLinkDeletedType._all_field_names_ = set(['description']) +SendAndTrackLinkDeletedType._all_fields_ = [('description', SendAndTrackLinkDeletedType.description.validator)] SendAndTrackLinkUpdatedDetails.link_settings.validator = LinkSettingsLogInfo_validator SendAndTrackLinkUpdatedDetails.previous_link_name.validator = bv.Nullable(bv.String()) -SendAndTrackLinkUpdatedDetails._all_field_names_ = set( - [ - "link_settings", - "previous_link_name", - ] -) +SendAndTrackLinkUpdatedDetails._all_field_names_ = set([ + 'link_settings', + 'previous_link_name', +]) SendAndTrackLinkUpdatedDetails._all_fields_ = [ - ("link_settings", SendAndTrackLinkUpdatedDetails.link_settings.validator), - ("previous_link_name", SendAndTrackLinkUpdatedDetails.previous_link_name.validator), + ('link_settings', SendAndTrackLinkUpdatedDetails.link_settings.validator), + ('previous_link_name', SendAndTrackLinkUpdatedDetails.previous_link_name.validator), ] SendAndTrackLinkUpdatedType.description.validator = bv.String() -SendAndTrackLinkUpdatedType._all_field_names_ = set(["description"]) -SendAndTrackLinkUpdatedType._all_fields_ = [ - ("description", SendAndTrackLinkUpdatedType.description.validator) -] +SendAndTrackLinkUpdatedType._all_field_names_ = set(['description']) +SendAndTrackLinkUpdatedType._all_fields_ = [('description', SendAndTrackLinkUpdatedType.description.validator)] SendAndTrackLinkViewedDetails.link_settings.validator = LinkSettingsLogInfo_validator SendAndTrackLinkViewedDetails.email_address.validator = bv.Nullable(bv.String()) SendAndTrackLinkViewedDetails.link_owner.validator = bv.Nullable(bv.String()) -SendAndTrackLinkViewedDetails._all_field_names_ = set( - [ - "link_settings", - "email_address", - "link_owner", - ] -) +SendAndTrackLinkViewedDetails._all_field_names_ = set([ + 'link_settings', + 'email_address', + 'link_owner', +]) SendAndTrackLinkViewedDetails._all_fields_ = [ - ("link_settings", SendAndTrackLinkViewedDetails.link_settings.validator), - ("email_address", SendAndTrackLinkViewedDetails.email_address.validator), - ("link_owner", SendAndTrackLinkViewedDetails.link_owner.validator), + ('link_settings', SendAndTrackLinkViewedDetails.link_settings.validator), + ('email_address', SendAndTrackLinkViewedDetails.email_address.validator), + ('link_owner', SendAndTrackLinkViewedDetails.link_owner.validator), ] SendAndTrackLinkViewedType.description.validator = bv.String() -SendAndTrackLinkViewedType._all_field_names_ = set(["description"]) -SendAndTrackLinkViewedType._all_fields_ = [ - ("description", SendAndTrackLinkViewedType.description.validator) -] +SendAndTrackLinkViewedType._all_field_names_ = set(['description']) +SendAndTrackLinkViewedType._all_fields_ = [('description', SendAndTrackLinkViewedType.description.validator)] SendAndTrackPolicy._default_validator = bv.Void() SendAndTrackPolicy._disabled_validator = bv.Void() SendAndTrackPolicy._enabled_validator = bv.Void() SendAndTrackPolicy._other_validator = bv.Void() SendAndTrackPolicy._tagmap = { - "default": SendAndTrackPolicy._default_validator, - "disabled": SendAndTrackPolicy._disabled_validator, - "enabled": SendAndTrackPolicy._enabled_validator, - "other": SendAndTrackPolicy._other_validator, + 'default': SendAndTrackPolicy._default_validator, + 'disabled': SendAndTrackPolicy._disabled_validator, + 'enabled': SendAndTrackPolicy._enabled_validator, + 'other': SendAndTrackPolicy._other_validator, } -SendAndTrackPolicy.default = SendAndTrackPolicy("default") -SendAndTrackPolicy.disabled = SendAndTrackPolicy("disabled") -SendAndTrackPolicy.enabled = SendAndTrackPolicy("enabled") -SendAndTrackPolicy.other = SendAndTrackPolicy("other") +SendAndTrackPolicy.default = SendAndTrackPolicy('default') +SendAndTrackPolicy.disabled = SendAndTrackPolicy('disabled') +SendAndTrackPolicy.enabled = SendAndTrackPolicy('enabled') +SendAndTrackPolicy.other = SendAndTrackPolicy('other') SendAndTrackPolicyChangedDetails.new_value.validator = SendAndTrackPolicy_validator SendAndTrackPolicyChangedDetails.previous_value.validator = SendAndTrackPolicy_validator -SendAndTrackPolicyChangedDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +SendAndTrackPolicyChangedDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) SendAndTrackPolicyChangedDetails._all_fields_ = [ - ("new_value", SendAndTrackPolicyChangedDetails.new_value.validator), - ("previous_value", SendAndTrackPolicyChangedDetails.previous_value.validator), + ('new_value', SendAndTrackPolicyChangedDetails.new_value.validator), + ('previous_value', SendAndTrackPolicyChangedDetails.previous_value.validator), ] SendAndTrackPolicyChangedType.description.validator = bv.String() -SendAndTrackPolicyChangedType._all_field_names_ = set(["description"]) -SendAndTrackPolicyChangedType._all_fields_ = [ - ("description", SendAndTrackPolicyChangedType.description.validator) -] +SendAndTrackPolicyChangedType._all_field_names_ = set(['description']) +SendAndTrackPolicyChangedType._all_fields_ = [('description', SendAndTrackPolicyChangedType.description.validator)] SendAndTrackRemovedFileAndAssociatedLinksDetails._all_field_names_ = set([]) SendAndTrackRemovedFileAndAssociatedLinksDetails._all_fields_ = [] SendAndTrackRemovedFileAndAssociatedLinksType.description.validator = bv.String() -SendAndTrackRemovedFileAndAssociatedLinksType._all_field_names_ = set(["description"]) -SendAndTrackRemovedFileAndAssociatedLinksType._all_fields_ = [ - ("description", SendAndTrackRemovedFileAndAssociatedLinksType.description.validator) -] +SendAndTrackRemovedFileAndAssociatedLinksType._all_field_names_ = set(['description']) +SendAndTrackRemovedFileAndAssociatedLinksType._all_fields_ = [('description', SendAndTrackRemovedFileAndAssociatedLinksType.description.validator)] SendExternalSharingPolicy._default_validator = bv.Void() SendExternalSharingPolicy._disabled_validator = bv.Void() SendExternalSharingPolicy._enabled_validator = bv.Void() SendExternalSharingPolicy._other_validator = bv.Void() SendExternalSharingPolicy._tagmap = { - "default": SendExternalSharingPolicy._default_validator, - "disabled": SendExternalSharingPolicy._disabled_validator, - "enabled": SendExternalSharingPolicy._enabled_validator, - "other": SendExternalSharingPolicy._other_validator, + 'default': SendExternalSharingPolicy._default_validator, + 'disabled': SendExternalSharingPolicy._disabled_validator, + 'enabled': SendExternalSharingPolicy._enabled_validator, + 'other': SendExternalSharingPolicy._other_validator, } -SendExternalSharingPolicy.default = SendExternalSharingPolicy("default") -SendExternalSharingPolicy.disabled = SendExternalSharingPolicy("disabled") -SendExternalSharingPolicy.enabled = SendExternalSharingPolicy("enabled") -SendExternalSharingPolicy.other = SendExternalSharingPolicy("other") +SendExternalSharingPolicy.default = SendExternalSharingPolicy('default') +SendExternalSharingPolicy.disabled = SendExternalSharingPolicy('disabled') +SendExternalSharingPolicy.enabled = SendExternalSharingPolicy('enabled') +SendExternalSharingPolicy.other = SendExternalSharingPolicy('other') SendExternalSharingPolicyChangedDetails.new_value.validator = SendExternalSharingPolicy_validator -SendExternalSharingPolicyChangedDetails.previous_value.validator = ( - SendExternalSharingPolicy_validator -) -SendExternalSharingPolicyChangedDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +SendExternalSharingPolicyChangedDetails.previous_value.validator = SendExternalSharingPolicy_validator +SendExternalSharingPolicyChangedDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) SendExternalSharingPolicyChangedDetails._all_fields_ = [ - ("new_value", SendExternalSharingPolicyChangedDetails.new_value.validator), - ( - "previous_value", - SendExternalSharingPolicyChangedDetails.previous_value.validator, - ), + ('new_value', SendExternalSharingPolicyChangedDetails.new_value.validator), + ('previous_value', SendExternalSharingPolicyChangedDetails.previous_value.validator), ] SendExternalSharingPolicyChangedType.description.validator = bv.String() -SendExternalSharingPolicyChangedType._all_field_names_ = set(["description"]) -SendExternalSharingPolicyChangedType._all_fields_ = [ - ("description", SendExternalSharingPolicyChangedType.description.validator) -] +SendExternalSharingPolicyChangedType._all_field_names_ = set(['description']) +SendExternalSharingPolicyChangedType._all_fields_ = [('description', SendExternalSharingPolicyChangedType.description.validator)] SendForSignaturePolicy._disabled_validator = bv.Void() SendForSignaturePolicy._enabled_validator = bv.Void() SendForSignaturePolicy._other_validator = bv.Void() SendForSignaturePolicy._tagmap = { - "disabled": SendForSignaturePolicy._disabled_validator, - "enabled": SendForSignaturePolicy._enabled_validator, - "other": SendForSignaturePolicy._other_validator, + 'disabled': SendForSignaturePolicy._disabled_validator, + 'enabled': SendForSignaturePolicy._enabled_validator, + 'other': SendForSignaturePolicy._other_validator, } -SendForSignaturePolicy.disabled = SendForSignaturePolicy("disabled") -SendForSignaturePolicy.enabled = SendForSignaturePolicy("enabled") -SendForSignaturePolicy.other = SendForSignaturePolicy("other") +SendForSignaturePolicy.disabled = SendForSignaturePolicy('disabled') +SendForSignaturePolicy.enabled = SendForSignaturePolicy('enabled') +SendForSignaturePolicy.other = SendForSignaturePolicy('other') SendForSignaturePolicyChangedDetails.new_value.validator = SendForSignaturePolicy_validator SendForSignaturePolicyChangedDetails.previous_value.validator = SendForSignaturePolicy_validator -SendForSignaturePolicyChangedDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +SendForSignaturePolicyChangedDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) SendForSignaturePolicyChangedDetails._all_fields_ = [ - ("new_value", SendForSignaturePolicyChangedDetails.new_value.validator), - ("previous_value", SendForSignaturePolicyChangedDetails.previous_value.validator), + ('new_value', SendForSignaturePolicyChangedDetails.new_value.validator), + ('previous_value', SendForSignaturePolicyChangedDetails.previous_value.validator), ] SendForSignaturePolicyChangedType.description.validator = bv.String() -SendForSignaturePolicyChangedType._all_field_names_ = set(["description"]) -SendForSignaturePolicyChangedType._all_fields_ = [ - ("description", SendForSignaturePolicyChangedType.description.validator) -] +SendForSignaturePolicyChangedType._all_field_names_ = set(['description']) +SendForSignaturePolicyChangedType._all_fields_ = [('description', SendForSignaturePolicyChangedType.description.validator)] SfAddGroupDetails.target_asset_index.validator = bv.UInt64() SfAddGroupDetails.original_folder_name.validator = bv.String() SfAddGroupDetails.sharing_permission.validator = bv.Nullable(bv.String()) SfAddGroupDetails.team_name.validator = bv.String() -SfAddGroupDetails._all_field_names_ = set( - [ - "target_asset_index", - "original_folder_name", - "sharing_permission", - "team_name", - ] -) +SfAddGroupDetails._all_field_names_ = set([ + 'target_asset_index', + 'original_folder_name', + 'sharing_permission', + 'team_name', +]) SfAddGroupDetails._all_fields_ = [ - ("target_asset_index", SfAddGroupDetails.target_asset_index.validator), - ("original_folder_name", SfAddGroupDetails.original_folder_name.validator), - ("sharing_permission", SfAddGroupDetails.sharing_permission.validator), - ("team_name", SfAddGroupDetails.team_name.validator), + ('target_asset_index', SfAddGroupDetails.target_asset_index.validator), + ('original_folder_name', SfAddGroupDetails.original_folder_name.validator), + ('sharing_permission', SfAddGroupDetails.sharing_permission.validator), + ('team_name', SfAddGroupDetails.team_name.validator), ] SfAddGroupType.description.validator = bv.String() -SfAddGroupType._all_field_names_ = set(["description"]) -SfAddGroupType._all_fields_ = [("description", SfAddGroupType.description.validator)] +SfAddGroupType._all_field_names_ = set(['description']) +SfAddGroupType._all_fields_ = [('description', SfAddGroupType.description.validator)] SfAllowNonMembersToViewSharedLinksDetails.target_asset_index.validator = bv.UInt64() SfAllowNonMembersToViewSharedLinksDetails.original_folder_name.validator = bv.String() SfAllowNonMembersToViewSharedLinksDetails.shared_folder_type.validator = bv.Nullable(bv.String()) -SfAllowNonMembersToViewSharedLinksDetails._all_field_names_ = set( - [ - "target_asset_index", - "original_folder_name", - "shared_folder_type", - ] -) +SfAllowNonMembersToViewSharedLinksDetails._all_field_names_ = set([ + 'target_asset_index', + 'original_folder_name', + 'shared_folder_type', +]) SfAllowNonMembersToViewSharedLinksDetails._all_fields_ = [ - ( - "target_asset_index", - SfAllowNonMembersToViewSharedLinksDetails.target_asset_index.validator, - ), - ( - "original_folder_name", - SfAllowNonMembersToViewSharedLinksDetails.original_folder_name.validator, - ), - ( - "shared_folder_type", - SfAllowNonMembersToViewSharedLinksDetails.shared_folder_type.validator, - ), + ('target_asset_index', SfAllowNonMembersToViewSharedLinksDetails.target_asset_index.validator), + ('original_folder_name', SfAllowNonMembersToViewSharedLinksDetails.original_folder_name.validator), + ('shared_folder_type', SfAllowNonMembersToViewSharedLinksDetails.shared_folder_type.validator), ] SfAllowNonMembersToViewSharedLinksType.description.validator = bv.String() -SfAllowNonMembersToViewSharedLinksType._all_field_names_ = set(["description"]) -SfAllowNonMembersToViewSharedLinksType._all_fields_ = [ - ("description", SfAllowNonMembersToViewSharedLinksType.description.validator) -] +SfAllowNonMembersToViewSharedLinksType._all_field_names_ = set(['description']) +SfAllowNonMembersToViewSharedLinksType._all_fields_ = [('description', SfAllowNonMembersToViewSharedLinksType.description.validator)] SfExternalInviteWarnDetails.target_asset_index.validator = bv.UInt64() SfExternalInviteWarnDetails.original_folder_name.validator = bv.String() SfExternalInviteWarnDetails.new_sharing_permission.validator = bv.Nullable(bv.String()) SfExternalInviteWarnDetails.previous_sharing_permission.validator = bv.Nullable(bv.String()) -SfExternalInviteWarnDetails._all_field_names_ = set( - [ - "target_asset_index", - "original_folder_name", - "new_sharing_permission", - "previous_sharing_permission", - ] -) +SfExternalInviteWarnDetails._all_field_names_ = set([ + 'target_asset_index', + 'original_folder_name', + 'new_sharing_permission', + 'previous_sharing_permission', +]) SfExternalInviteWarnDetails._all_fields_ = [ - ("target_asset_index", SfExternalInviteWarnDetails.target_asset_index.validator), - ( - "original_folder_name", - SfExternalInviteWarnDetails.original_folder_name.validator, - ), - ( - "new_sharing_permission", - SfExternalInviteWarnDetails.new_sharing_permission.validator, - ), - ( - "previous_sharing_permission", - SfExternalInviteWarnDetails.previous_sharing_permission.validator, - ), + ('target_asset_index', SfExternalInviteWarnDetails.target_asset_index.validator), + ('original_folder_name', SfExternalInviteWarnDetails.original_folder_name.validator), + ('new_sharing_permission', SfExternalInviteWarnDetails.new_sharing_permission.validator), + ('previous_sharing_permission', SfExternalInviteWarnDetails.previous_sharing_permission.validator), ] SfExternalInviteWarnType.description.validator = bv.String() -SfExternalInviteWarnType._all_field_names_ = set(["description"]) -SfExternalInviteWarnType._all_fields_ = [ - ("description", SfExternalInviteWarnType.description.validator) -] +SfExternalInviteWarnType._all_field_names_ = set(['description']) +SfExternalInviteWarnType._all_fields_ = [('description', SfExternalInviteWarnType.description.validator)] SfFbInviteChangeRoleDetails.target_asset_index.validator = bv.UInt64() SfFbInviteChangeRoleDetails.original_folder_name.validator = bv.String() SfFbInviteChangeRoleDetails.previous_sharing_permission.validator = bv.Nullable(bv.String()) SfFbInviteChangeRoleDetails.new_sharing_permission.validator = bv.Nullable(bv.String()) -SfFbInviteChangeRoleDetails._all_field_names_ = set( - [ - "target_asset_index", - "original_folder_name", - "previous_sharing_permission", - "new_sharing_permission", - ] -) +SfFbInviteChangeRoleDetails._all_field_names_ = set([ + 'target_asset_index', + 'original_folder_name', + 'previous_sharing_permission', + 'new_sharing_permission', +]) SfFbInviteChangeRoleDetails._all_fields_ = [ - ("target_asset_index", SfFbInviteChangeRoleDetails.target_asset_index.validator), - ( - "original_folder_name", - SfFbInviteChangeRoleDetails.original_folder_name.validator, - ), - ( - "previous_sharing_permission", - SfFbInviteChangeRoleDetails.previous_sharing_permission.validator, - ), - ( - "new_sharing_permission", - SfFbInviteChangeRoleDetails.new_sharing_permission.validator, - ), + ('target_asset_index', SfFbInviteChangeRoleDetails.target_asset_index.validator), + ('original_folder_name', SfFbInviteChangeRoleDetails.original_folder_name.validator), + ('previous_sharing_permission', SfFbInviteChangeRoleDetails.previous_sharing_permission.validator), + ('new_sharing_permission', SfFbInviteChangeRoleDetails.new_sharing_permission.validator), ] SfFbInviteChangeRoleType.description.validator = bv.String() -SfFbInviteChangeRoleType._all_field_names_ = set(["description"]) -SfFbInviteChangeRoleType._all_fields_ = [ - ("description", SfFbInviteChangeRoleType.description.validator) -] +SfFbInviteChangeRoleType._all_field_names_ = set(['description']) +SfFbInviteChangeRoleType._all_fields_ = [('description', SfFbInviteChangeRoleType.description.validator)] SfFbInviteDetails.target_asset_index.validator = bv.UInt64() SfFbInviteDetails.original_folder_name.validator = bv.String() SfFbInviteDetails.sharing_permission.validator = bv.Nullable(bv.String()) -SfFbInviteDetails._all_field_names_ = set( - [ - "target_asset_index", - "original_folder_name", - "sharing_permission", - ] -) +SfFbInviteDetails._all_field_names_ = set([ + 'target_asset_index', + 'original_folder_name', + 'sharing_permission', +]) SfFbInviteDetails._all_fields_ = [ - ("target_asset_index", SfFbInviteDetails.target_asset_index.validator), - ("original_folder_name", SfFbInviteDetails.original_folder_name.validator), - ("sharing_permission", SfFbInviteDetails.sharing_permission.validator), + ('target_asset_index', SfFbInviteDetails.target_asset_index.validator), + ('original_folder_name', SfFbInviteDetails.original_folder_name.validator), + ('sharing_permission', SfFbInviteDetails.sharing_permission.validator), ] SfFbInviteType.description.validator = bv.String() -SfFbInviteType._all_field_names_ = set(["description"]) -SfFbInviteType._all_fields_ = [("description", SfFbInviteType.description.validator)] +SfFbInviteType._all_field_names_ = set(['description']) +SfFbInviteType._all_fields_ = [('description', SfFbInviteType.description.validator)] SfFbUninviteDetails.target_asset_index.validator = bv.UInt64() SfFbUninviteDetails.original_folder_name.validator = bv.String() -SfFbUninviteDetails._all_field_names_ = set( - [ - "target_asset_index", - "original_folder_name", - ] -) +SfFbUninviteDetails._all_field_names_ = set([ + 'target_asset_index', + 'original_folder_name', +]) SfFbUninviteDetails._all_fields_ = [ - ("target_asset_index", SfFbUninviteDetails.target_asset_index.validator), - ("original_folder_name", SfFbUninviteDetails.original_folder_name.validator), + ('target_asset_index', SfFbUninviteDetails.target_asset_index.validator), + ('original_folder_name', SfFbUninviteDetails.original_folder_name.validator), ] SfFbUninviteType.description.validator = bv.String() -SfFbUninviteType._all_field_names_ = set(["description"]) -SfFbUninviteType._all_fields_ = [("description", SfFbUninviteType.description.validator)] +SfFbUninviteType._all_field_names_ = set(['description']) +SfFbUninviteType._all_fields_ = [('description', SfFbUninviteType.description.validator)] SfInviteGroupDetails.target_asset_index.validator = bv.UInt64() -SfInviteGroupDetails._all_field_names_ = set(["target_asset_index"]) -SfInviteGroupDetails._all_fields_ = [ - ("target_asset_index", SfInviteGroupDetails.target_asset_index.validator) -] +SfInviteGroupDetails._all_field_names_ = set(['target_asset_index']) +SfInviteGroupDetails._all_fields_ = [('target_asset_index', SfInviteGroupDetails.target_asset_index.validator)] SfInviteGroupType.description.validator = bv.String() -SfInviteGroupType._all_field_names_ = set(["description"]) -SfInviteGroupType._all_fields_ = [("description", SfInviteGroupType.description.validator)] +SfInviteGroupType._all_field_names_ = set(['description']) +SfInviteGroupType._all_fields_ = [('description', SfInviteGroupType.description.validator)] SfTeamGrantAccessDetails.target_asset_index.validator = bv.UInt64() SfTeamGrantAccessDetails.original_folder_name.validator = bv.String() -SfTeamGrantAccessDetails._all_field_names_ = set( - [ - "target_asset_index", - "original_folder_name", - ] -) +SfTeamGrantAccessDetails._all_field_names_ = set([ + 'target_asset_index', + 'original_folder_name', +]) SfTeamGrantAccessDetails._all_fields_ = [ - ("target_asset_index", SfTeamGrantAccessDetails.target_asset_index.validator), - ("original_folder_name", SfTeamGrantAccessDetails.original_folder_name.validator), + ('target_asset_index', SfTeamGrantAccessDetails.target_asset_index.validator), + ('original_folder_name', SfTeamGrantAccessDetails.original_folder_name.validator), ] SfTeamGrantAccessType.description.validator = bv.String() -SfTeamGrantAccessType._all_field_names_ = set(["description"]) -SfTeamGrantAccessType._all_fields_ = [("description", SfTeamGrantAccessType.description.validator)] +SfTeamGrantAccessType._all_field_names_ = set(['description']) +SfTeamGrantAccessType._all_fields_ = [('description', SfTeamGrantAccessType.description.validator)] SfTeamInviteChangeRoleDetails.target_asset_index.validator = bv.UInt64() SfTeamInviteChangeRoleDetails.original_folder_name.validator = bv.String() SfTeamInviteChangeRoleDetails.new_sharing_permission.validator = bv.Nullable(bv.String()) SfTeamInviteChangeRoleDetails.previous_sharing_permission.validator = bv.Nullable(bv.String()) -SfTeamInviteChangeRoleDetails._all_field_names_ = set( - [ - "target_asset_index", - "original_folder_name", - "new_sharing_permission", - "previous_sharing_permission", - ] -) +SfTeamInviteChangeRoleDetails._all_field_names_ = set([ + 'target_asset_index', + 'original_folder_name', + 'new_sharing_permission', + 'previous_sharing_permission', +]) SfTeamInviteChangeRoleDetails._all_fields_ = [ - ("target_asset_index", SfTeamInviteChangeRoleDetails.target_asset_index.validator), - ( - "original_folder_name", - SfTeamInviteChangeRoleDetails.original_folder_name.validator, - ), - ( - "new_sharing_permission", - SfTeamInviteChangeRoleDetails.new_sharing_permission.validator, - ), - ( - "previous_sharing_permission", - SfTeamInviteChangeRoleDetails.previous_sharing_permission.validator, - ), + ('target_asset_index', SfTeamInviteChangeRoleDetails.target_asset_index.validator), + ('original_folder_name', SfTeamInviteChangeRoleDetails.original_folder_name.validator), + ('new_sharing_permission', SfTeamInviteChangeRoleDetails.new_sharing_permission.validator), + ('previous_sharing_permission', SfTeamInviteChangeRoleDetails.previous_sharing_permission.validator), ] SfTeamInviteChangeRoleType.description.validator = bv.String() -SfTeamInviteChangeRoleType._all_field_names_ = set(["description"]) -SfTeamInviteChangeRoleType._all_fields_ = [ - ("description", SfTeamInviteChangeRoleType.description.validator) -] +SfTeamInviteChangeRoleType._all_field_names_ = set(['description']) +SfTeamInviteChangeRoleType._all_fields_ = [('description', SfTeamInviteChangeRoleType.description.validator)] SfTeamInviteDetails.target_asset_index.validator = bv.UInt64() SfTeamInviteDetails.original_folder_name.validator = bv.String() SfTeamInviteDetails.sharing_permission.validator = bv.Nullable(bv.String()) -SfTeamInviteDetails._all_field_names_ = set( - [ - "target_asset_index", - "original_folder_name", - "sharing_permission", - ] -) +SfTeamInviteDetails._all_field_names_ = set([ + 'target_asset_index', + 'original_folder_name', + 'sharing_permission', +]) SfTeamInviteDetails._all_fields_ = [ - ("target_asset_index", SfTeamInviteDetails.target_asset_index.validator), - ("original_folder_name", SfTeamInviteDetails.original_folder_name.validator), - ("sharing_permission", SfTeamInviteDetails.sharing_permission.validator), + ('target_asset_index', SfTeamInviteDetails.target_asset_index.validator), + ('original_folder_name', SfTeamInviteDetails.original_folder_name.validator), + ('sharing_permission', SfTeamInviteDetails.sharing_permission.validator), ] SfTeamInviteType.description.validator = bv.String() -SfTeamInviteType._all_field_names_ = set(["description"]) -SfTeamInviteType._all_fields_ = [("description", SfTeamInviteType.description.validator)] +SfTeamInviteType._all_field_names_ = set(['description']) +SfTeamInviteType._all_fields_ = [('description', SfTeamInviteType.description.validator)] SfTeamJoinDetails.target_asset_index.validator = bv.UInt64() SfTeamJoinDetails.original_folder_name.validator = bv.String() -SfTeamJoinDetails._all_field_names_ = set( - [ - "target_asset_index", - "original_folder_name", - ] -) +SfTeamJoinDetails._all_field_names_ = set([ + 'target_asset_index', + 'original_folder_name', +]) SfTeamJoinDetails._all_fields_ = [ - ("target_asset_index", SfTeamJoinDetails.target_asset_index.validator), - ("original_folder_name", SfTeamJoinDetails.original_folder_name.validator), + ('target_asset_index', SfTeamJoinDetails.target_asset_index.validator), + ('original_folder_name', SfTeamJoinDetails.original_folder_name.validator), ] SfTeamJoinFromOobLinkDetails.target_asset_index.validator = bv.UInt64() SfTeamJoinFromOobLinkDetails.original_folder_name.validator = bv.String() SfTeamJoinFromOobLinkDetails.token_key.validator = bv.Nullable(bv.String()) SfTeamJoinFromOobLinkDetails.sharing_permission.validator = bv.Nullable(bv.String()) -SfTeamJoinFromOobLinkDetails._all_field_names_ = set( - [ - "target_asset_index", - "original_folder_name", - "token_key", - "sharing_permission", - ] -) +SfTeamJoinFromOobLinkDetails._all_field_names_ = set([ + 'target_asset_index', + 'original_folder_name', + 'token_key', + 'sharing_permission', +]) SfTeamJoinFromOobLinkDetails._all_fields_ = [ - ("target_asset_index", SfTeamJoinFromOobLinkDetails.target_asset_index.validator), - ( - "original_folder_name", - SfTeamJoinFromOobLinkDetails.original_folder_name.validator, - ), - ("token_key", SfTeamJoinFromOobLinkDetails.token_key.validator), - ("sharing_permission", SfTeamJoinFromOobLinkDetails.sharing_permission.validator), + ('target_asset_index', SfTeamJoinFromOobLinkDetails.target_asset_index.validator), + ('original_folder_name', SfTeamJoinFromOobLinkDetails.original_folder_name.validator), + ('token_key', SfTeamJoinFromOobLinkDetails.token_key.validator), + ('sharing_permission', SfTeamJoinFromOobLinkDetails.sharing_permission.validator), ] SfTeamJoinFromOobLinkType.description.validator = bv.String() -SfTeamJoinFromOobLinkType._all_field_names_ = set(["description"]) -SfTeamJoinFromOobLinkType._all_fields_ = [ - ("description", SfTeamJoinFromOobLinkType.description.validator) -] +SfTeamJoinFromOobLinkType._all_field_names_ = set(['description']) +SfTeamJoinFromOobLinkType._all_fields_ = [('description', SfTeamJoinFromOobLinkType.description.validator)] SfTeamJoinType.description.validator = bv.String() -SfTeamJoinType._all_field_names_ = set(["description"]) -SfTeamJoinType._all_fields_ = [("description", SfTeamJoinType.description.validator)] +SfTeamJoinType._all_field_names_ = set(['description']) +SfTeamJoinType._all_fields_ = [('description', SfTeamJoinType.description.validator)] SfTeamUninviteDetails.target_asset_index.validator = bv.UInt64() SfTeamUninviteDetails.original_folder_name.validator = bv.String() -SfTeamUninviteDetails._all_field_names_ = set( - [ - "target_asset_index", - "original_folder_name", - ] -) +SfTeamUninviteDetails._all_field_names_ = set([ + 'target_asset_index', + 'original_folder_name', +]) SfTeamUninviteDetails._all_fields_ = [ - ("target_asset_index", SfTeamUninviteDetails.target_asset_index.validator), - ("original_folder_name", SfTeamUninviteDetails.original_folder_name.validator), + ('target_asset_index', SfTeamUninviteDetails.target_asset_index.validator), + ('original_folder_name', SfTeamUninviteDetails.original_folder_name.validator), ] SfTeamUninviteType.description.validator = bv.String() -SfTeamUninviteType._all_field_names_ = set(["description"]) -SfTeamUninviteType._all_fields_ = [("description", SfTeamUninviteType.description.validator)] +SfTeamUninviteType._all_field_names_ = set(['description']) +SfTeamUninviteType._all_fields_ = [('description', SfTeamUninviteType.description.validator)] -SharedContentAddInviteesDetails.shared_content_access_level.validator = ( - sharing.AccessLevel_validator -) +SharedContentAddInviteesDetails.shared_content_access_level.validator = sharing.AccessLevel_validator SharedContentAddInviteesDetails.invitees.validator = bv.List(EmailAddress_validator) -SharedContentAddInviteesDetails._all_field_names_ = set( - [ - "shared_content_access_level", - "invitees", - ] -) +SharedContentAddInviteesDetails._all_field_names_ = set([ + 'shared_content_access_level', + 'invitees', +]) SharedContentAddInviteesDetails._all_fields_ = [ - ( - "shared_content_access_level", - SharedContentAddInviteesDetails.shared_content_access_level.validator, - ), - ("invitees", SharedContentAddInviteesDetails.invitees.validator), + ('shared_content_access_level', SharedContentAddInviteesDetails.shared_content_access_level.validator), + ('invitees', SharedContentAddInviteesDetails.invitees.validator), ] SharedContentAddInviteesType.description.validator = bv.String() -SharedContentAddInviteesType._all_field_names_ = set(["description"]) -SharedContentAddInviteesType._all_fields_ = [ - ("description", SharedContentAddInviteesType.description.validator) -] +SharedContentAddInviteesType._all_field_names_ = set(['description']) +SharedContentAddInviteesType._all_fields_ = [('description', SharedContentAddInviteesType.description.validator)] -SharedContentAddLinkExpiryDetails.new_value.validator = bv.Nullable( - common.DropboxTimestamp_validator -) -SharedContentAddLinkExpiryDetails._all_field_names_ = set(["new_value"]) -SharedContentAddLinkExpiryDetails._all_fields_ = [ - ("new_value", SharedContentAddLinkExpiryDetails.new_value.validator) -] +SharedContentAddLinkExpiryDetails.new_value.validator = bv.Nullable(common.DropboxTimestamp_validator) +SharedContentAddLinkExpiryDetails._all_field_names_ = set(['new_value']) +SharedContentAddLinkExpiryDetails._all_fields_ = [('new_value', SharedContentAddLinkExpiryDetails.new_value.validator)] SharedContentAddLinkExpiryType.description.validator = bv.String() -SharedContentAddLinkExpiryType._all_field_names_ = set(["description"]) -SharedContentAddLinkExpiryType._all_fields_ = [ - ("description", SharedContentAddLinkExpiryType.description.validator) -] +SharedContentAddLinkExpiryType._all_field_names_ = set(['description']) +SharedContentAddLinkExpiryType._all_fields_ = [('description', SharedContentAddLinkExpiryType.description.validator)] SharedContentAddLinkPasswordDetails._all_field_names_ = set([]) SharedContentAddLinkPasswordDetails._all_fields_ = [] SharedContentAddLinkPasswordType.description.validator = bv.String() -SharedContentAddLinkPasswordType._all_field_names_ = set(["description"]) -SharedContentAddLinkPasswordType._all_fields_ = [ - ("description", SharedContentAddLinkPasswordType.description.validator) -] +SharedContentAddLinkPasswordType._all_field_names_ = set(['description']) +SharedContentAddLinkPasswordType._all_fields_ = [('description', SharedContentAddLinkPasswordType.description.validator)] SharedContentAddMemberDetails.shared_content_access_level.validator = sharing.AccessLevel_validator -SharedContentAddMemberDetails._all_field_names_ = set(["shared_content_access_level"]) -SharedContentAddMemberDetails._all_fields_ = [ - ( - "shared_content_access_level", - SharedContentAddMemberDetails.shared_content_access_level.validator, - ) -] +SharedContentAddMemberDetails._all_field_names_ = set(['shared_content_access_level']) +SharedContentAddMemberDetails._all_fields_ = [('shared_content_access_level', SharedContentAddMemberDetails.shared_content_access_level.validator)] SharedContentAddMemberType.description.validator = bv.String() -SharedContentAddMemberType._all_field_names_ = set(["description"]) -SharedContentAddMemberType._all_fields_ = [ - ("description", SharedContentAddMemberType.description.validator) -] +SharedContentAddMemberType._all_field_names_ = set(['description']) +SharedContentAddMemberType._all_fields_ = [('description', SharedContentAddMemberType.description.validator)] SharedContentChangeDownloadsPolicyDetails.new_value.validator = DownloadPolicyType_validator -SharedContentChangeDownloadsPolicyDetails.previous_value.validator = bv.Nullable( - DownloadPolicyType_validator -) -SharedContentChangeDownloadsPolicyDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +SharedContentChangeDownloadsPolicyDetails.previous_value.validator = bv.Nullable(DownloadPolicyType_validator) +SharedContentChangeDownloadsPolicyDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) SharedContentChangeDownloadsPolicyDetails._all_fields_ = [ - ("new_value", SharedContentChangeDownloadsPolicyDetails.new_value.validator), - ( - "previous_value", - SharedContentChangeDownloadsPolicyDetails.previous_value.validator, - ), + ('new_value', SharedContentChangeDownloadsPolicyDetails.new_value.validator), + ('previous_value', SharedContentChangeDownloadsPolicyDetails.previous_value.validator), ] SharedContentChangeDownloadsPolicyType.description.validator = bv.String() -SharedContentChangeDownloadsPolicyType._all_field_names_ = set(["description"]) -SharedContentChangeDownloadsPolicyType._all_fields_ = [ - ("description", SharedContentChangeDownloadsPolicyType.description.validator) -] +SharedContentChangeDownloadsPolicyType._all_field_names_ = set(['description']) +SharedContentChangeDownloadsPolicyType._all_fields_ = [('description', SharedContentChangeDownloadsPolicyType.description.validator)] -SharedContentChangeInviteeRoleDetails.previous_access_level.validator = bv.Nullable( - sharing.AccessLevel_validator -) +SharedContentChangeInviteeRoleDetails.previous_access_level.validator = bv.Nullable(sharing.AccessLevel_validator) SharedContentChangeInviteeRoleDetails.new_access_level.validator = sharing.AccessLevel_validator SharedContentChangeInviteeRoleDetails.invitee.validator = EmailAddress_validator -SharedContentChangeInviteeRoleDetails._all_field_names_ = set( - [ - "previous_access_level", - "new_access_level", - "invitee", - ] -) +SharedContentChangeInviteeRoleDetails._all_field_names_ = set([ + 'previous_access_level', + 'new_access_level', + 'invitee', +]) SharedContentChangeInviteeRoleDetails._all_fields_ = [ - ( - "previous_access_level", - SharedContentChangeInviteeRoleDetails.previous_access_level.validator, - ), - ( - "new_access_level", - SharedContentChangeInviteeRoleDetails.new_access_level.validator, - ), - ("invitee", SharedContentChangeInviteeRoleDetails.invitee.validator), + ('previous_access_level', SharedContentChangeInviteeRoleDetails.previous_access_level.validator), + ('new_access_level', SharedContentChangeInviteeRoleDetails.new_access_level.validator), + ('invitee', SharedContentChangeInviteeRoleDetails.invitee.validator), ] SharedContentChangeInviteeRoleType.description.validator = bv.String() -SharedContentChangeInviteeRoleType._all_field_names_ = set(["description"]) -SharedContentChangeInviteeRoleType._all_fields_ = [ - ("description", SharedContentChangeInviteeRoleType.description.validator) -] +SharedContentChangeInviteeRoleType._all_field_names_ = set(['description']) +SharedContentChangeInviteeRoleType._all_fields_ = [('description', SharedContentChangeInviteeRoleType.description.validator)] SharedContentChangeLinkAudienceDetails.new_value.validator = sharing.LinkAudience_validator -SharedContentChangeLinkAudienceDetails.previous_value.validator = bv.Nullable( - sharing.LinkAudience_validator -) -SharedContentChangeLinkAudienceDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +SharedContentChangeLinkAudienceDetails.previous_value.validator = bv.Nullable(sharing.LinkAudience_validator) +SharedContentChangeLinkAudienceDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) SharedContentChangeLinkAudienceDetails._all_fields_ = [ - ("new_value", SharedContentChangeLinkAudienceDetails.new_value.validator), - ("previous_value", SharedContentChangeLinkAudienceDetails.previous_value.validator), + ('new_value', SharedContentChangeLinkAudienceDetails.new_value.validator), + ('previous_value', SharedContentChangeLinkAudienceDetails.previous_value.validator), ] SharedContentChangeLinkAudienceType.description.validator = bv.String() -SharedContentChangeLinkAudienceType._all_field_names_ = set(["description"]) -SharedContentChangeLinkAudienceType._all_fields_ = [ - ("description", SharedContentChangeLinkAudienceType.description.validator) -] - -SharedContentChangeLinkExpiryDetails.new_value.validator = bv.Nullable( - common.DropboxTimestamp_validator -) -SharedContentChangeLinkExpiryDetails.previous_value.validator = bv.Nullable( - common.DropboxTimestamp_validator -) -SharedContentChangeLinkExpiryDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +SharedContentChangeLinkAudienceType._all_field_names_ = set(['description']) +SharedContentChangeLinkAudienceType._all_fields_ = [('description', SharedContentChangeLinkAudienceType.description.validator)] + +SharedContentChangeLinkExpiryDetails.new_value.validator = bv.Nullable(common.DropboxTimestamp_validator) +SharedContentChangeLinkExpiryDetails.previous_value.validator = bv.Nullable(common.DropboxTimestamp_validator) +SharedContentChangeLinkExpiryDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) SharedContentChangeLinkExpiryDetails._all_fields_ = [ - ("new_value", SharedContentChangeLinkExpiryDetails.new_value.validator), - ("previous_value", SharedContentChangeLinkExpiryDetails.previous_value.validator), + ('new_value', SharedContentChangeLinkExpiryDetails.new_value.validator), + ('previous_value', SharedContentChangeLinkExpiryDetails.previous_value.validator), ] SharedContentChangeLinkExpiryType.description.validator = bv.String() -SharedContentChangeLinkExpiryType._all_field_names_ = set(["description"]) -SharedContentChangeLinkExpiryType._all_fields_ = [ - ("description", SharedContentChangeLinkExpiryType.description.validator) -] +SharedContentChangeLinkExpiryType._all_field_names_ = set(['description']) +SharedContentChangeLinkExpiryType._all_fields_ = [('description', SharedContentChangeLinkExpiryType.description.validator)] SharedContentChangeLinkPasswordDetails._all_field_names_ = set([]) SharedContentChangeLinkPasswordDetails._all_fields_ = [] SharedContentChangeLinkPasswordType.description.validator = bv.String() -SharedContentChangeLinkPasswordType._all_field_names_ = set(["description"]) -SharedContentChangeLinkPasswordType._all_fields_ = [ - ("description", SharedContentChangeLinkPasswordType.description.validator) -] +SharedContentChangeLinkPasswordType._all_field_names_ = set(['description']) +SharedContentChangeLinkPasswordType._all_fields_ = [('description', SharedContentChangeLinkPasswordType.description.validator)] -SharedContentChangeMemberRoleDetails.previous_access_level.validator = bv.Nullable( - sharing.AccessLevel_validator -) +SharedContentChangeMemberRoleDetails.previous_access_level.validator = bv.Nullable(sharing.AccessLevel_validator) SharedContentChangeMemberRoleDetails.new_access_level.validator = sharing.AccessLevel_validator -SharedContentChangeMemberRoleDetails._all_field_names_ = set( - [ - "previous_access_level", - "new_access_level", - ] -) +SharedContentChangeMemberRoleDetails._all_field_names_ = set([ + 'previous_access_level', + 'new_access_level', +]) SharedContentChangeMemberRoleDetails._all_fields_ = [ - ( - "previous_access_level", - SharedContentChangeMemberRoleDetails.previous_access_level.validator, - ), - ( - "new_access_level", - SharedContentChangeMemberRoleDetails.new_access_level.validator, - ), + ('previous_access_level', SharedContentChangeMemberRoleDetails.previous_access_level.validator), + ('new_access_level', SharedContentChangeMemberRoleDetails.new_access_level.validator), ] SharedContentChangeMemberRoleType.description.validator = bv.String() -SharedContentChangeMemberRoleType._all_field_names_ = set(["description"]) -SharedContentChangeMemberRoleType._all_fields_ = [ - ("description", SharedContentChangeMemberRoleType.description.validator) -] +SharedContentChangeMemberRoleType._all_field_names_ = set(['description']) +SharedContentChangeMemberRoleType._all_fields_ = [('description', SharedContentChangeMemberRoleType.description.validator)] SharedContentChangeViewerInfoPolicyDetails.new_value.validator = sharing.ViewerInfoPolicy_validator -SharedContentChangeViewerInfoPolicyDetails.previous_value.validator = bv.Nullable( - sharing.ViewerInfoPolicy_validator -) -SharedContentChangeViewerInfoPolicyDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +SharedContentChangeViewerInfoPolicyDetails.previous_value.validator = bv.Nullable(sharing.ViewerInfoPolicy_validator) +SharedContentChangeViewerInfoPolicyDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) SharedContentChangeViewerInfoPolicyDetails._all_fields_ = [ - ("new_value", SharedContentChangeViewerInfoPolicyDetails.new_value.validator), - ( - "previous_value", - SharedContentChangeViewerInfoPolicyDetails.previous_value.validator, - ), + ('new_value', SharedContentChangeViewerInfoPolicyDetails.new_value.validator), + ('previous_value', SharedContentChangeViewerInfoPolicyDetails.previous_value.validator), ] SharedContentChangeViewerInfoPolicyType.description.validator = bv.String() -SharedContentChangeViewerInfoPolicyType._all_field_names_ = set(["description"]) -SharedContentChangeViewerInfoPolicyType._all_fields_ = [ - ("description", SharedContentChangeViewerInfoPolicyType.description.validator) -] +SharedContentChangeViewerInfoPolicyType._all_field_names_ = set(['description']) +SharedContentChangeViewerInfoPolicyType._all_fields_ = [('description', SharedContentChangeViewerInfoPolicyType.description.validator)] SharedContentClaimInvitationDetails.shared_content_link.validator = bv.Nullable(bv.String()) -SharedContentClaimInvitationDetails._all_field_names_ = set(["shared_content_link"]) -SharedContentClaimInvitationDetails._all_fields_ = [ - ( - "shared_content_link", - SharedContentClaimInvitationDetails.shared_content_link.validator, - ) -] +SharedContentClaimInvitationDetails._all_field_names_ = set(['shared_content_link']) +SharedContentClaimInvitationDetails._all_fields_ = [('shared_content_link', SharedContentClaimInvitationDetails.shared_content_link.validator)] SharedContentClaimInvitationType.description.validator = bv.String() -SharedContentClaimInvitationType._all_field_names_ = set(["description"]) -SharedContentClaimInvitationType._all_fields_ = [ - ("description", SharedContentClaimInvitationType.description.validator) -] +SharedContentClaimInvitationType._all_field_names_ = set(['description']) +SharedContentClaimInvitationType._all_fields_ = [('description', SharedContentClaimInvitationType.description.validator)] SharedContentCopyDetails.shared_content_link.validator = bv.String() SharedContentCopyDetails.shared_content_owner.validator = bv.Nullable(UserLogInfo_validator) SharedContentCopyDetails.shared_content_access_level.validator = sharing.AccessLevel_validator SharedContentCopyDetails.destination_path.validator = FilePath_validator -SharedContentCopyDetails._all_field_names_ = set( - [ - "shared_content_link", - "shared_content_owner", - "shared_content_access_level", - "destination_path", - ] -) +SharedContentCopyDetails._all_field_names_ = set([ + 'shared_content_link', + 'shared_content_owner', + 'shared_content_access_level', + 'destination_path', +]) SharedContentCopyDetails._all_fields_ = [ - ("shared_content_link", SharedContentCopyDetails.shared_content_link.validator), - ("shared_content_owner", SharedContentCopyDetails.shared_content_owner.validator), - ( - "shared_content_access_level", - SharedContentCopyDetails.shared_content_access_level.validator, - ), - ("destination_path", SharedContentCopyDetails.destination_path.validator), + ('shared_content_link', SharedContentCopyDetails.shared_content_link.validator), + ('shared_content_owner', SharedContentCopyDetails.shared_content_owner.validator), + ('shared_content_access_level', SharedContentCopyDetails.shared_content_access_level.validator), + ('destination_path', SharedContentCopyDetails.destination_path.validator), ] SharedContentCopyType.description.validator = bv.String() -SharedContentCopyType._all_field_names_ = set(["description"]) -SharedContentCopyType._all_fields_ = [("description", SharedContentCopyType.description.validator)] +SharedContentCopyType._all_field_names_ = set(['description']) +SharedContentCopyType._all_fields_ = [('description', SharedContentCopyType.description.validator)] SharedContentDownloadDetails.shared_content_link.validator = bv.String() SharedContentDownloadDetails.shared_content_owner.validator = bv.Nullable(UserLogInfo_validator) SharedContentDownloadDetails.shared_content_access_level.validator = sharing.AccessLevel_validator -SharedContentDownloadDetails._all_field_names_ = set( - [ - "shared_content_link", - "shared_content_owner", - "shared_content_access_level", - ] -) +SharedContentDownloadDetails._all_field_names_ = set([ + 'shared_content_link', + 'shared_content_owner', + 'shared_content_access_level', +]) SharedContentDownloadDetails._all_fields_ = [ - ("shared_content_link", SharedContentDownloadDetails.shared_content_link.validator), - ( - "shared_content_owner", - SharedContentDownloadDetails.shared_content_owner.validator, - ), - ( - "shared_content_access_level", - SharedContentDownloadDetails.shared_content_access_level.validator, - ), + ('shared_content_link', SharedContentDownloadDetails.shared_content_link.validator), + ('shared_content_owner', SharedContentDownloadDetails.shared_content_owner.validator), + ('shared_content_access_level', SharedContentDownloadDetails.shared_content_access_level.validator), ] SharedContentDownloadType.description.validator = bv.String() -SharedContentDownloadType._all_field_names_ = set(["description"]) -SharedContentDownloadType._all_fields_ = [ - ("description", SharedContentDownloadType.description.validator) -] +SharedContentDownloadType._all_field_names_ = set(['description']) +SharedContentDownloadType._all_fields_ = [('description', SharedContentDownloadType.description.validator)] SharedContentRelinquishMembershipDetails._all_field_names_ = set([]) SharedContentRelinquishMembershipDetails._all_fields_ = [] SharedContentRelinquishMembershipType.description.validator = bv.String() -SharedContentRelinquishMembershipType._all_field_names_ = set(["description"]) -SharedContentRelinquishMembershipType._all_fields_ = [ - ("description", SharedContentRelinquishMembershipType.description.validator) -] +SharedContentRelinquishMembershipType._all_field_names_ = set(['description']) +SharedContentRelinquishMembershipType._all_fields_ = [('description', SharedContentRelinquishMembershipType.description.validator)] SharedContentRemoveInviteesDetails.invitees.validator = bv.List(EmailAddress_validator) -SharedContentRemoveInviteesDetails._all_field_names_ = set(["invitees"]) -SharedContentRemoveInviteesDetails._all_fields_ = [ - ("invitees", SharedContentRemoveInviteesDetails.invitees.validator) -] +SharedContentRemoveInviteesDetails._all_field_names_ = set(['invitees']) +SharedContentRemoveInviteesDetails._all_fields_ = [('invitees', SharedContentRemoveInviteesDetails.invitees.validator)] SharedContentRemoveInviteesType.description.validator = bv.String() -SharedContentRemoveInviteesType._all_field_names_ = set(["description"]) -SharedContentRemoveInviteesType._all_fields_ = [ - ("description", SharedContentRemoveInviteesType.description.validator) -] +SharedContentRemoveInviteesType._all_field_names_ = set(['description']) +SharedContentRemoveInviteesType._all_fields_ = [('description', SharedContentRemoveInviteesType.description.validator)] -SharedContentRemoveLinkExpiryDetails.previous_value.validator = bv.Nullable( - common.DropboxTimestamp_validator -) -SharedContentRemoveLinkExpiryDetails._all_field_names_ = set(["previous_value"]) -SharedContentRemoveLinkExpiryDetails._all_fields_ = [ - ("previous_value", SharedContentRemoveLinkExpiryDetails.previous_value.validator) -] +SharedContentRemoveLinkExpiryDetails.previous_value.validator = bv.Nullable(common.DropboxTimestamp_validator) +SharedContentRemoveLinkExpiryDetails._all_field_names_ = set(['previous_value']) +SharedContentRemoveLinkExpiryDetails._all_fields_ = [('previous_value', SharedContentRemoveLinkExpiryDetails.previous_value.validator)] SharedContentRemoveLinkExpiryType.description.validator = bv.String() -SharedContentRemoveLinkExpiryType._all_field_names_ = set(["description"]) -SharedContentRemoveLinkExpiryType._all_fields_ = [ - ("description", SharedContentRemoveLinkExpiryType.description.validator) -] +SharedContentRemoveLinkExpiryType._all_field_names_ = set(['description']) +SharedContentRemoveLinkExpiryType._all_fields_ = [('description', SharedContentRemoveLinkExpiryType.description.validator)] SharedContentRemoveLinkPasswordDetails._all_field_names_ = set([]) SharedContentRemoveLinkPasswordDetails._all_fields_ = [] SharedContentRemoveLinkPasswordType.description.validator = bv.String() -SharedContentRemoveLinkPasswordType._all_field_names_ = set(["description"]) -SharedContentRemoveLinkPasswordType._all_fields_ = [ - ("description", SharedContentRemoveLinkPasswordType.description.validator) -] +SharedContentRemoveLinkPasswordType._all_field_names_ = set(['description']) +SharedContentRemoveLinkPasswordType._all_fields_ = [('description', SharedContentRemoveLinkPasswordType.description.validator)] -SharedContentRemoveMemberDetails.shared_content_access_level.validator = bv.Nullable( - sharing.AccessLevel_validator -) -SharedContentRemoveMemberDetails._all_field_names_ = set(["shared_content_access_level"]) -SharedContentRemoveMemberDetails._all_fields_ = [ - ( - "shared_content_access_level", - SharedContentRemoveMemberDetails.shared_content_access_level.validator, - ) -] +SharedContentRemoveMemberDetails.shared_content_access_level.validator = bv.Nullable(sharing.AccessLevel_validator) +SharedContentRemoveMemberDetails._all_field_names_ = set(['shared_content_access_level']) +SharedContentRemoveMemberDetails._all_fields_ = [('shared_content_access_level', SharedContentRemoveMemberDetails.shared_content_access_level.validator)] SharedContentRemoveMemberType.description.validator = bv.String() -SharedContentRemoveMemberType._all_field_names_ = set(["description"]) -SharedContentRemoveMemberType._all_fields_ = [ - ("description", SharedContentRemoveMemberType.description.validator) -] +SharedContentRemoveMemberType._all_field_names_ = set(['description']) +SharedContentRemoveMemberType._all_fields_ = [('description', SharedContentRemoveMemberType.description.validator)] SharedContentRequestAccessDetails.shared_content_link.validator = bv.Nullable(bv.String()) -SharedContentRequestAccessDetails._all_field_names_ = set(["shared_content_link"]) -SharedContentRequestAccessDetails._all_fields_ = [ - ( - "shared_content_link", - SharedContentRequestAccessDetails.shared_content_link.validator, - ) -] +SharedContentRequestAccessDetails._all_field_names_ = set(['shared_content_link']) +SharedContentRequestAccessDetails._all_fields_ = [('shared_content_link', SharedContentRequestAccessDetails.shared_content_link.validator)] SharedContentRequestAccessType.description.validator = bv.String() -SharedContentRequestAccessType._all_field_names_ = set(["description"]) -SharedContentRequestAccessType._all_fields_ = [ - ("description", SharedContentRequestAccessType.description.validator) -] +SharedContentRequestAccessType._all_field_names_ = set(['description']) +SharedContentRequestAccessType._all_fields_ = [('description', SharedContentRequestAccessType.description.validator)] -SharedContentRestoreInviteesDetails.shared_content_access_level.validator = ( - sharing.AccessLevel_validator -) +SharedContentRestoreInviteesDetails.shared_content_access_level.validator = sharing.AccessLevel_validator SharedContentRestoreInviteesDetails.invitees.validator = bv.List(EmailAddress_validator) -SharedContentRestoreInviteesDetails._all_field_names_ = set( - [ - "shared_content_access_level", - "invitees", - ] -) +SharedContentRestoreInviteesDetails._all_field_names_ = set([ + 'shared_content_access_level', + 'invitees', +]) SharedContentRestoreInviteesDetails._all_fields_ = [ - ( - "shared_content_access_level", - SharedContentRestoreInviteesDetails.shared_content_access_level.validator, - ), - ("invitees", SharedContentRestoreInviteesDetails.invitees.validator), + ('shared_content_access_level', SharedContentRestoreInviteesDetails.shared_content_access_level.validator), + ('invitees', SharedContentRestoreInviteesDetails.invitees.validator), ] SharedContentRestoreInviteesType.description.validator = bv.String() -SharedContentRestoreInviteesType._all_field_names_ = set(["description"]) -SharedContentRestoreInviteesType._all_fields_ = [ - ("description", SharedContentRestoreInviteesType.description.validator) -] +SharedContentRestoreInviteesType._all_field_names_ = set(['description']) +SharedContentRestoreInviteesType._all_fields_ = [('description', SharedContentRestoreInviteesType.description.validator)] -SharedContentRestoreMemberDetails.shared_content_access_level.validator = ( - sharing.AccessLevel_validator -) -SharedContentRestoreMemberDetails._all_field_names_ = set(["shared_content_access_level"]) -SharedContentRestoreMemberDetails._all_fields_ = [ - ( - "shared_content_access_level", - SharedContentRestoreMemberDetails.shared_content_access_level.validator, - ) -] +SharedContentRestoreMemberDetails.shared_content_access_level.validator = sharing.AccessLevel_validator +SharedContentRestoreMemberDetails._all_field_names_ = set(['shared_content_access_level']) +SharedContentRestoreMemberDetails._all_fields_ = [('shared_content_access_level', SharedContentRestoreMemberDetails.shared_content_access_level.validator)] SharedContentRestoreMemberType.description.validator = bv.String() -SharedContentRestoreMemberType._all_field_names_ = set(["description"]) -SharedContentRestoreMemberType._all_fields_ = [ - ("description", SharedContentRestoreMemberType.description.validator) -] +SharedContentRestoreMemberType._all_field_names_ = set(['description']) +SharedContentRestoreMemberType._all_fields_ = [('description', SharedContentRestoreMemberType.description.validator)] SharedContentUnshareDetails._all_field_names_ = set([]) SharedContentUnshareDetails._all_fields_ = [] SharedContentUnshareType.description.validator = bv.String() -SharedContentUnshareType._all_field_names_ = set(["description"]) -SharedContentUnshareType._all_fields_ = [ - ("description", SharedContentUnshareType.description.validator) -] +SharedContentUnshareType._all_field_names_ = set(['description']) +SharedContentUnshareType._all_fields_ = [('description', SharedContentUnshareType.description.validator)] SharedContentViewDetails.shared_content_link.validator = bv.String() SharedContentViewDetails.shared_content_owner.validator = bv.Nullable(UserLogInfo_validator) SharedContentViewDetails.shared_content_access_level.validator = sharing.AccessLevel_validator -SharedContentViewDetails._all_field_names_ = set( - [ - "shared_content_link", - "shared_content_owner", - "shared_content_access_level", - ] -) +SharedContentViewDetails._all_field_names_ = set([ + 'shared_content_link', + 'shared_content_owner', + 'shared_content_access_level', +]) SharedContentViewDetails._all_fields_ = [ - ("shared_content_link", SharedContentViewDetails.shared_content_link.validator), - ("shared_content_owner", SharedContentViewDetails.shared_content_owner.validator), - ( - "shared_content_access_level", - SharedContentViewDetails.shared_content_access_level.validator, - ), + ('shared_content_link', SharedContentViewDetails.shared_content_link.validator), + ('shared_content_owner', SharedContentViewDetails.shared_content_owner.validator), + ('shared_content_access_level', SharedContentViewDetails.shared_content_access_level.validator), ] SharedContentViewType.description.validator = bv.String() -SharedContentViewType._all_field_names_ = set(["description"]) -SharedContentViewType._all_fields_ = [("description", SharedContentViewType.description.validator)] +SharedContentViewType._all_field_names_ = set(['description']) +SharedContentViewType._all_fields_ = [('description', SharedContentViewType.description.validator)] SharedFolderChangeLinkPolicyDetails.new_value.validator = sharing.SharedLinkPolicy_validator -SharedFolderChangeLinkPolicyDetails.previous_value.validator = bv.Nullable( - sharing.SharedLinkPolicy_validator -) -SharedFolderChangeLinkPolicyDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +SharedFolderChangeLinkPolicyDetails.previous_value.validator = bv.Nullable(sharing.SharedLinkPolicy_validator) +SharedFolderChangeLinkPolicyDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) SharedFolderChangeLinkPolicyDetails._all_fields_ = [ - ("new_value", SharedFolderChangeLinkPolicyDetails.new_value.validator), - ("previous_value", SharedFolderChangeLinkPolicyDetails.previous_value.validator), + ('new_value', SharedFolderChangeLinkPolicyDetails.new_value.validator), + ('previous_value', SharedFolderChangeLinkPolicyDetails.previous_value.validator), ] SharedFolderChangeLinkPolicyType.description.validator = bv.String() -SharedFolderChangeLinkPolicyType._all_field_names_ = set(["description"]) -SharedFolderChangeLinkPolicyType._all_fields_ = [ - ("description", SharedFolderChangeLinkPolicyType.description.validator) -] - -SharedFolderChangeMembersInheritancePolicyDetails.new_value.validator = ( - SharedFolderMembersInheritancePolicy_validator -) -SharedFolderChangeMembersInheritancePolicyDetails.previous_value.validator = bv.Nullable( - SharedFolderMembersInheritancePolicy_validator -) -SharedFolderChangeMembersInheritancePolicyDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +SharedFolderChangeLinkPolicyType._all_field_names_ = set(['description']) +SharedFolderChangeLinkPolicyType._all_fields_ = [('description', SharedFolderChangeLinkPolicyType.description.validator)] + +SharedFolderChangeMembersInheritancePolicyDetails.new_value.validator = SharedFolderMembersInheritancePolicy_validator +SharedFolderChangeMembersInheritancePolicyDetails.previous_value.validator = bv.Nullable(SharedFolderMembersInheritancePolicy_validator) +SharedFolderChangeMembersInheritancePolicyDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) SharedFolderChangeMembersInheritancePolicyDetails._all_fields_ = [ - ( - "new_value", - SharedFolderChangeMembersInheritancePolicyDetails.new_value.validator, - ), - ( - "previous_value", - SharedFolderChangeMembersInheritancePolicyDetails.previous_value.validator, - ), + ('new_value', SharedFolderChangeMembersInheritancePolicyDetails.new_value.validator), + ('previous_value', SharedFolderChangeMembersInheritancePolicyDetails.previous_value.validator), ] SharedFolderChangeMembersInheritancePolicyType.description.validator = bv.String() -SharedFolderChangeMembersInheritancePolicyType._all_field_names_ = set(["description"]) -SharedFolderChangeMembersInheritancePolicyType._all_fields_ = [ - ( - "description", - SharedFolderChangeMembersInheritancePolicyType.description.validator, - ) -] - -SharedFolderChangeMembersManagementPolicyDetails.new_value.validator = ( - sharing.AclUpdatePolicy_validator -) -SharedFolderChangeMembersManagementPolicyDetails.previous_value.validator = bv.Nullable( - sharing.AclUpdatePolicy_validator -) -SharedFolderChangeMembersManagementPolicyDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +SharedFolderChangeMembersInheritancePolicyType._all_field_names_ = set(['description']) +SharedFolderChangeMembersInheritancePolicyType._all_fields_ = [('description', SharedFolderChangeMembersInheritancePolicyType.description.validator)] + +SharedFolderChangeMembersManagementPolicyDetails.new_value.validator = sharing.AclUpdatePolicy_validator +SharedFolderChangeMembersManagementPolicyDetails.previous_value.validator = bv.Nullable(sharing.AclUpdatePolicy_validator) +SharedFolderChangeMembersManagementPolicyDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) SharedFolderChangeMembersManagementPolicyDetails._all_fields_ = [ - ("new_value", SharedFolderChangeMembersManagementPolicyDetails.new_value.validator), - ( - "previous_value", - SharedFolderChangeMembersManagementPolicyDetails.previous_value.validator, - ), + ('new_value', SharedFolderChangeMembersManagementPolicyDetails.new_value.validator), + ('previous_value', SharedFolderChangeMembersManagementPolicyDetails.previous_value.validator), ] SharedFolderChangeMembersManagementPolicyType.description.validator = bv.String() -SharedFolderChangeMembersManagementPolicyType._all_field_names_ = set(["description"]) -SharedFolderChangeMembersManagementPolicyType._all_fields_ = [ - ("description", SharedFolderChangeMembersManagementPolicyType.description.validator) -] +SharedFolderChangeMembersManagementPolicyType._all_field_names_ = set(['description']) +SharedFolderChangeMembersManagementPolicyType._all_fields_ = [('description', SharedFolderChangeMembersManagementPolicyType.description.validator)] SharedFolderChangeMembersPolicyDetails.new_value.validator = sharing.MemberPolicy_validator -SharedFolderChangeMembersPolicyDetails.previous_value.validator = bv.Nullable( - sharing.MemberPolicy_validator -) -SharedFolderChangeMembersPolicyDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +SharedFolderChangeMembersPolicyDetails.previous_value.validator = bv.Nullable(sharing.MemberPolicy_validator) +SharedFolderChangeMembersPolicyDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) SharedFolderChangeMembersPolicyDetails._all_fields_ = [ - ("new_value", SharedFolderChangeMembersPolicyDetails.new_value.validator), - ("previous_value", SharedFolderChangeMembersPolicyDetails.previous_value.validator), + ('new_value', SharedFolderChangeMembersPolicyDetails.new_value.validator), + ('previous_value', SharedFolderChangeMembersPolicyDetails.previous_value.validator), ] SharedFolderChangeMembersPolicyType.description.validator = bv.String() -SharedFolderChangeMembersPolicyType._all_field_names_ = set(["description"]) -SharedFolderChangeMembersPolicyType._all_fields_ = [ - ("description", SharedFolderChangeMembersPolicyType.description.validator) -] +SharedFolderChangeMembersPolicyType._all_field_names_ = set(['description']) +SharedFolderChangeMembersPolicyType._all_fields_ = [('description', SharedFolderChangeMembersPolicyType.description.validator)] SharedFolderCreateDetails.target_ns_id.validator = bv.Nullable(NamespaceId_validator) -SharedFolderCreateDetails._all_field_names_ = set(["target_ns_id"]) -SharedFolderCreateDetails._all_fields_ = [ - ("target_ns_id", SharedFolderCreateDetails.target_ns_id.validator) -] +SharedFolderCreateDetails._all_field_names_ = set(['target_ns_id']) +SharedFolderCreateDetails._all_fields_ = [('target_ns_id', SharedFolderCreateDetails.target_ns_id.validator)] SharedFolderCreateType.description.validator = bv.String() -SharedFolderCreateType._all_field_names_ = set(["description"]) -SharedFolderCreateType._all_fields_ = [ - ("description", SharedFolderCreateType.description.validator) -] +SharedFolderCreateType._all_field_names_ = set(['description']) +SharedFolderCreateType._all_fields_ = [('description', SharedFolderCreateType.description.validator)] SharedFolderDeclineInvitationDetails._all_field_names_ = set([]) SharedFolderDeclineInvitationDetails._all_fields_ = [] SharedFolderDeclineInvitationType.description.validator = bv.String() -SharedFolderDeclineInvitationType._all_field_names_ = set(["description"]) -SharedFolderDeclineInvitationType._all_fields_ = [ - ("description", SharedFolderDeclineInvitationType.description.validator) -] +SharedFolderDeclineInvitationType._all_field_names_ = set(['description']) +SharedFolderDeclineInvitationType._all_fields_ = [('description', SharedFolderDeclineInvitationType.description.validator)] SharedFolderMembersInheritancePolicy._dont_inherit_members_validator = bv.Void() SharedFolderMembersInheritancePolicy._inherit_members_validator = bv.Void() SharedFolderMembersInheritancePolicy._other_validator = bv.Void() SharedFolderMembersInheritancePolicy._tagmap = { - "dont_inherit_members": SharedFolderMembersInheritancePolicy._dont_inherit_members_validator, - "inherit_members": SharedFolderMembersInheritancePolicy._inherit_members_validator, - "other": SharedFolderMembersInheritancePolicy._other_validator, + 'dont_inherit_members': SharedFolderMembersInheritancePolicy._dont_inherit_members_validator, + 'inherit_members': SharedFolderMembersInheritancePolicy._inherit_members_validator, + 'other': SharedFolderMembersInheritancePolicy._other_validator, } -SharedFolderMembersInheritancePolicy.dont_inherit_members = SharedFolderMembersInheritancePolicy( - "dont_inherit_members" -) -SharedFolderMembersInheritancePolicy.inherit_members = SharedFolderMembersInheritancePolicy( - "inherit_members" -) -SharedFolderMembersInheritancePolicy.other = SharedFolderMembersInheritancePolicy("other") +SharedFolderMembersInheritancePolicy.dont_inherit_members = SharedFolderMembersInheritancePolicy('dont_inherit_members') +SharedFolderMembersInheritancePolicy.inherit_members = SharedFolderMembersInheritancePolicy('inherit_members') +SharedFolderMembersInheritancePolicy.other = SharedFolderMembersInheritancePolicy('other') SharedFolderMountDetails._all_field_names_ = set([]) SharedFolderMountDetails._all_fields_ = [] SharedFolderMountType.description.validator = bv.String() -SharedFolderMountType._all_field_names_ = set(["description"]) -SharedFolderMountType._all_fields_ = [("description", SharedFolderMountType.description.validator)] +SharedFolderMountType._all_field_names_ = set(['description']) +SharedFolderMountType._all_fields_ = [('description', SharedFolderMountType.description.validator)] SharedFolderNestDetails.previous_parent_ns_id.validator = bv.Nullable(NamespaceId_validator) SharedFolderNestDetails.new_parent_ns_id.validator = bv.Nullable(NamespaceId_validator) SharedFolderNestDetails.previous_ns_path.validator = bv.Nullable(FilePath_validator) SharedFolderNestDetails.new_ns_path.validator = bv.Nullable(FilePath_validator) -SharedFolderNestDetails._all_field_names_ = set( - [ - "previous_parent_ns_id", - "new_parent_ns_id", - "previous_ns_path", - "new_ns_path", - ] -) +SharedFolderNestDetails._all_field_names_ = set([ + 'previous_parent_ns_id', + 'new_parent_ns_id', + 'previous_ns_path', + 'new_ns_path', +]) SharedFolderNestDetails._all_fields_ = [ - ("previous_parent_ns_id", SharedFolderNestDetails.previous_parent_ns_id.validator), - ("new_parent_ns_id", SharedFolderNestDetails.new_parent_ns_id.validator), - ("previous_ns_path", SharedFolderNestDetails.previous_ns_path.validator), - ("new_ns_path", SharedFolderNestDetails.new_ns_path.validator), + ('previous_parent_ns_id', SharedFolderNestDetails.previous_parent_ns_id.validator), + ('new_parent_ns_id', SharedFolderNestDetails.new_parent_ns_id.validator), + ('previous_ns_path', SharedFolderNestDetails.previous_ns_path.validator), + ('new_ns_path', SharedFolderNestDetails.new_ns_path.validator), ] SharedFolderNestType.description.validator = bv.String() -SharedFolderNestType._all_field_names_ = set(["description"]) -SharedFolderNestType._all_fields_ = [("description", SharedFolderNestType.description.validator)] +SharedFolderNestType._all_field_names_ = set(['description']) +SharedFolderNestType._all_fields_ = [('description', SharedFolderNestType.description.validator)] -SharedFolderTransferOwnershipDetails.previous_owner_email.validator = bv.Nullable( - EmailAddress_validator -) +SharedFolderTransferOwnershipDetails.previous_owner_email.validator = bv.Nullable(EmailAddress_validator) SharedFolderTransferOwnershipDetails.new_owner_email.validator = EmailAddress_validator -SharedFolderTransferOwnershipDetails._all_field_names_ = set( - [ - "previous_owner_email", - "new_owner_email", - ] -) +SharedFolderTransferOwnershipDetails._all_field_names_ = set([ + 'previous_owner_email', + 'new_owner_email', +]) SharedFolderTransferOwnershipDetails._all_fields_ = [ - ( - "previous_owner_email", - SharedFolderTransferOwnershipDetails.previous_owner_email.validator, - ), - ("new_owner_email", SharedFolderTransferOwnershipDetails.new_owner_email.validator), + ('previous_owner_email', SharedFolderTransferOwnershipDetails.previous_owner_email.validator), + ('new_owner_email', SharedFolderTransferOwnershipDetails.new_owner_email.validator), ] SharedFolderTransferOwnershipType.description.validator = bv.String() -SharedFolderTransferOwnershipType._all_field_names_ = set(["description"]) -SharedFolderTransferOwnershipType._all_fields_ = [ - ("description", SharedFolderTransferOwnershipType.description.validator) -] +SharedFolderTransferOwnershipType._all_field_names_ = set(['description']) +SharedFolderTransferOwnershipType._all_fields_ = [('description', SharedFolderTransferOwnershipType.description.validator)] SharedFolderUnmountDetails._all_field_names_ = set([]) SharedFolderUnmountDetails._all_fields_ = [] SharedFolderUnmountType.description.validator = bv.String() -SharedFolderUnmountType._all_field_names_ = set(["description"]) -SharedFolderUnmountType._all_fields_ = [ - ("description", SharedFolderUnmountType.description.validator) -] +SharedFolderUnmountType._all_field_names_ = set(['description']) +SharedFolderUnmountType._all_fields_ = [('description', SharedFolderUnmountType.description.validator)] SharedFoldersCreateReportDetails._all_field_names_ = set([]) SharedFoldersCreateReportDetails._all_fields_ = [] -SharedFoldersCreateReportFailedDetails.failure_reason.validator = ( - team.TeamReportFailureReason_validator -) -SharedFoldersCreateReportFailedDetails._all_field_names_ = set(["failure_reason"]) -SharedFoldersCreateReportFailedDetails._all_fields_ = [ - ("failure_reason", SharedFoldersCreateReportFailedDetails.failure_reason.validator) -] +SharedFoldersCreateReportFailedDetails.failure_reason.validator = team.TeamReportFailureReason_validator +SharedFoldersCreateReportFailedDetails._all_field_names_ = set(['failure_reason']) +SharedFoldersCreateReportFailedDetails._all_fields_ = [('failure_reason', SharedFoldersCreateReportFailedDetails.failure_reason.validator)] SharedFoldersCreateReportFailedType.description.validator = bv.String() -SharedFoldersCreateReportFailedType._all_field_names_ = set(["description"]) -SharedFoldersCreateReportFailedType._all_fields_ = [ - ("description", SharedFoldersCreateReportFailedType.description.validator) -] +SharedFoldersCreateReportFailedType._all_field_names_ = set(['description']) +SharedFoldersCreateReportFailedType._all_fields_ = [('description', SharedFoldersCreateReportFailedType.description.validator)] SharedFoldersCreateReportType.description.validator = bv.String() -SharedFoldersCreateReportType._all_field_names_ = set(["description"]) -SharedFoldersCreateReportType._all_fields_ = [ - ("description", SharedFoldersCreateReportType.description.validator) -] +SharedFoldersCreateReportType._all_field_names_ = set(['description']) +SharedFoldersCreateReportType._all_fields_ = [('description', SharedFoldersCreateReportType.description.validator)] SharedLinkAccessLevel._none_validator = bv.Void() SharedLinkAccessLevel._reader_validator = bv.Void() SharedLinkAccessLevel._writer_validator = bv.Void() SharedLinkAccessLevel._other_validator = bv.Void() SharedLinkAccessLevel._tagmap = { - "none": SharedLinkAccessLevel._none_validator, - "reader": SharedLinkAccessLevel._reader_validator, - "writer": SharedLinkAccessLevel._writer_validator, - "other": SharedLinkAccessLevel._other_validator, + 'none': SharedLinkAccessLevel._none_validator, + 'reader': SharedLinkAccessLevel._reader_validator, + 'writer': SharedLinkAccessLevel._writer_validator, + 'other': SharedLinkAccessLevel._other_validator, } -SharedLinkAccessLevel.none = SharedLinkAccessLevel("none") -SharedLinkAccessLevel.reader = SharedLinkAccessLevel("reader") -SharedLinkAccessLevel.writer = SharedLinkAccessLevel("writer") -SharedLinkAccessLevel.other = SharedLinkAccessLevel("other") +SharedLinkAccessLevel.none = SharedLinkAccessLevel('none') +SharedLinkAccessLevel.reader = SharedLinkAccessLevel('reader') +SharedLinkAccessLevel.writer = SharedLinkAccessLevel('writer') +SharedLinkAccessLevel.other = SharedLinkAccessLevel('other') SharedLinkAddExpiryDetails.new_value.validator = common.DropboxTimestamp_validator SharedLinkAddExpiryDetails.is_consolidation_action.validator = bv.Nullable(bv.Boolean()) -SharedLinkAddExpiryDetails._all_field_names_ = set( - [ - "new_value", - "is_consolidation_action", - ] -) +SharedLinkAddExpiryDetails._all_field_names_ = set([ + 'new_value', + 'is_consolidation_action', +]) SharedLinkAddExpiryDetails._all_fields_ = [ - ("new_value", SharedLinkAddExpiryDetails.new_value.validator), - ( - "is_consolidation_action", - SharedLinkAddExpiryDetails.is_consolidation_action.validator, - ), + ('new_value', SharedLinkAddExpiryDetails.new_value.validator), + ('is_consolidation_action', SharedLinkAddExpiryDetails.is_consolidation_action.validator), ] SharedLinkAddExpiryType.description.validator = bv.String() -SharedLinkAddExpiryType._all_field_names_ = set(["description"]) -SharedLinkAddExpiryType._all_fields_ = [ - ("description", SharedLinkAddExpiryType.description.validator) -] +SharedLinkAddExpiryType._all_field_names_ = set(['description']) +SharedLinkAddExpiryType._all_fields_ = [('description', SharedLinkAddExpiryType.description.validator)] SharedLinkChangeExpiryDetails.new_value.validator = bv.Nullable(common.DropboxTimestamp_validator) -SharedLinkChangeExpiryDetails.previous_value.validator = bv.Nullable( - common.DropboxTimestamp_validator -) +SharedLinkChangeExpiryDetails.previous_value.validator = bv.Nullable(common.DropboxTimestamp_validator) SharedLinkChangeExpiryDetails.is_consolidation_action.validator = bv.Nullable(bv.Boolean()) -SharedLinkChangeExpiryDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - "is_consolidation_action", - ] -) +SharedLinkChangeExpiryDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', + 'is_consolidation_action', +]) SharedLinkChangeExpiryDetails._all_fields_ = [ - ("new_value", SharedLinkChangeExpiryDetails.new_value.validator), - ("previous_value", SharedLinkChangeExpiryDetails.previous_value.validator), - ( - "is_consolidation_action", - SharedLinkChangeExpiryDetails.is_consolidation_action.validator, - ), + ('new_value', SharedLinkChangeExpiryDetails.new_value.validator), + ('previous_value', SharedLinkChangeExpiryDetails.previous_value.validator), + ('is_consolidation_action', SharedLinkChangeExpiryDetails.is_consolidation_action.validator), ] SharedLinkChangeExpiryType.description.validator = bv.String() -SharedLinkChangeExpiryType._all_field_names_ = set(["description"]) -SharedLinkChangeExpiryType._all_fields_ = [ - ("description", SharedLinkChangeExpiryType.description.validator) -] +SharedLinkChangeExpiryType._all_field_names_ = set(['description']) +SharedLinkChangeExpiryType._all_fields_ = [('description', SharedLinkChangeExpiryType.description.validator)] SharedLinkChangeVisibilityDetails.new_value.validator = SharedLinkVisibility_validator -SharedLinkChangeVisibilityDetails.previous_value.validator = bv.Nullable( - SharedLinkVisibility_validator -) +SharedLinkChangeVisibilityDetails.previous_value.validator = bv.Nullable(SharedLinkVisibility_validator) SharedLinkChangeVisibilityDetails.is_consolidation_action.validator = bv.Nullable(bv.Boolean()) -SharedLinkChangeVisibilityDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - "is_consolidation_action", - ] -) +SharedLinkChangeVisibilityDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', + 'is_consolidation_action', +]) SharedLinkChangeVisibilityDetails._all_fields_ = [ - ("new_value", SharedLinkChangeVisibilityDetails.new_value.validator), - ("previous_value", SharedLinkChangeVisibilityDetails.previous_value.validator), - ( - "is_consolidation_action", - SharedLinkChangeVisibilityDetails.is_consolidation_action.validator, - ), + ('new_value', SharedLinkChangeVisibilityDetails.new_value.validator), + ('previous_value', SharedLinkChangeVisibilityDetails.previous_value.validator), + ('is_consolidation_action', SharedLinkChangeVisibilityDetails.is_consolidation_action.validator), ] SharedLinkChangeVisibilityType.description.validator = bv.String() -SharedLinkChangeVisibilityType._all_field_names_ = set(["description"]) -SharedLinkChangeVisibilityType._all_fields_ = [ - ("description", SharedLinkChangeVisibilityType.description.validator) -] +SharedLinkChangeVisibilityType._all_field_names_ = set(['description']) +SharedLinkChangeVisibilityType._all_fields_ = [('description', SharedLinkChangeVisibilityType.description.validator)] SharedLinkCopyDetails.shared_link_owner.validator = bv.Nullable(UserLogInfo_validator) -SharedLinkCopyDetails._all_field_names_ = set(["shared_link_owner"]) -SharedLinkCopyDetails._all_fields_ = [ - ("shared_link_owner", SharedLinkCopyDetails.shared_link_owner.validator) -] +SharedLinkCopyDetails._all_field_names_ = set(['shared_link_owner']) +SharedLinkCopyDetails._all_fields_ = [('shared_link_owner', SharedLinkCopyDetails.shared_link_owner.validator)] SharedLinkCopyType.description.validator = bv.String() -SharedLinkCopyType._all_field_names_ = set(["description"]) -SharedLinkCopyType._all_fields_ = [("description", SharedLinkCopyType.description.validator)] +SharedLinkCopyType._all_field_names_ = set(['description']) +SharedLinkCopyType._all_fields_ = [('description', SharedLinkCopyType.description.validator)] -SharedLinkCreateDetails.shared_link_access_level.validator = bv.Nullable( - SharedLinkAccessLevel_validator -) -SharedLinkCreateDetails._all_field_names_ = set(["shared_link_access_level"]) -SharedLinkCreateDetails._all_fields_ = [ - ( - "shared_link_access_level", - SharedLinkCreateDetails.shared_link_access_level.validator, - ) -] +SharedLinkCreateDetails.shared_link_access_level.validator = bv.Nullable(SharedLinkAccessLevel_validator) +SharedLinkCreateDetails._all_field_names_ = set(['shared_link_access_level']) +SharedLinkCreateDetails._all_fields_ = [('shared_link_access_level', SharedLinkCreateDetails.shared_link_access_level.validator)] SharedLinkCreateType.description.validator = bv.String() -SharedLinkCreateType._all_field_names_ = set(["description"]) -SharedLinkCreateType._all_fields_ = [("description", SharedLinkCreateType.description.validator)] +SharedLinkCreateType._all_field_names_ = set(['description']) +SharedLinkCreateType._all_fields_ = [('description', SharedLinkCreateType.description.validator)] SharedLinkDefaultPermissionsPolicy._default_validator = bv.Void() SharedLinkDefaultPermissionsPolicy._edit_validator = bv.Void() SharedLinkDefaultPermissionsPolicy._view_validator = bv.Void() SharedLinkDefaultPermissionsPolicy._other_validator = bv.Void() SharedLinkDefaultPermissionsPolicy._tagmap = { - "default": SharedLinkDefaultPermissionsPolicy._default_validator, - "edit": SharedLinkDefaultPermissionsPolicy._edit_validator, - "view": SharedLinkDefaultPermissionsPolicy._view_validator, - "other": SharedLinkDefaultPermissionsPolicy._other_validator, + 'default': SharedLinkDefaultPermissionsPolicy._default_validator, + 'edit': SharedLinkDefaultPermissionsPolicy._edit_validator, + 'view': SharedLinkDefaultPermissionsPolicy._view_validator, + 'other': SharedLinkDefaultPermissionsPolicy._other_validator, } -SharedLinkDefaultPermissionsPolicy.default = SharedLinkDefaultPermissionsPolicy("default") -SharedLinkDefaultPermissionsPolicy.edit = SharedLinkDefaultPermissionsPolicy("edit") -SharedLinkDefaultPermissionsPolicy.view = SharedLinkDefaultPermissionsPolicy("view") -SharedLinkDefaultPermissionsPolicy.other = SharedLinkDefaultPermissionsPolicy("other") - -SharedLinkDefaultPermissionsPolicyChangedDetails.new_value.validator = ( - SharedLinkDefaultPermissionsPolicy_validator -) -SharedLinkDefaultPermissionsPolicyChangedDetails.previous_value.validator = ( - SharedLinkDefaultPermissionsPolicy_validator -) -SharedLinkDefaultPermissionsPolicyChangedDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +SharedLinkDefaultPermissionsPolicy.default = SharedLinkDefaultPermissionsPolicy('default') +SharedLinkDefaultPermissionsPolicy.edit = SharedLinkDefaultPermissionsPolicy('edit') +SharedLinkDefaultPermissionsPolicy.view = SharedLinkDefaultPermissionsPolicy('view') +SharedLinkDefaultPermissionsPolicy.other = SharedLinkDefaultPermissionsPolicy('other') + +SharedLinkDefaultPermissionsPolicyChangedDetails.new_value.validator = SharedLinkDefaultPermissionsPolicy_validator +SharedLinkDefaultPermissionsPolicyChangedDetails.previous_value.validator = SharedLinkDefaultPermissionsPolicy_validator +SharedLinkDefaultPermissionsPolicyChangedDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) SharedLinkDefaultPermissionsPolicyChangedDetails._all_fields_ = [ - ("new_value", SharedLinkDefaultPermissionsPolicyChangedDetails.new_value.validator), - ( - "previous_value", - SharedLinkDefaultPermissionsPolicyChangedDetails.previous_value.validator, - ), + ('new_value', SharedLinkDefaultPermissionsPolicyChangedDetails.new_value.validator), + ('previous_value', SharedLinkDefaultPermissionsPolicyChangedDetails.previous_value.validator), ] SharedLinkDefaultPermissionsPolicyChangedType.description.validator = bv.String() -SharedLinkDefaultPermissionsPolicyChangedType._all_field_names_ = set(["description"]) -SharedLinkDefaultPermissionsPolicyChangedType._all_fields_ = [ - ("description", SharedLinkDefaultPermissionsPolicyChangedType.description.validator) -] +SharedLinkDefaultPermissionsPolicyChangedType._all_field_names_ = set(['description']) +SharedLinkDefaultPermissionsPolicyChangedType._all_fields_ = [('description', SharedLinkDefaultPermissionsPolicyChangedType.description.validator)] SharedLinkDisableDetails.shared_link_owner.validator = bv.Nullable(UserLogInfo_validator) -SharedLinkDisableDetails._all_field_names_ = set(["shared_link_owner"]) -SharedLinkDisableDetails._all_fields_ = [ - ("shared_link_owner", SharedLinkDisableDetails.shared_link_owner.validator) -] +SharedLinkDisableDetails._all_field_names_ = set(['shared_link_owner']) +SharedLinkDisableDetails._all_fields_ = [('shared_link_owner', SharedLinkDisableDetails.shared_link_owner.validator)] SharedLinkDisableType.description.validator = bv.String() -SharedLinkDisableType._all_field_names_ = set(["description"]) -SharedLinkDisableType._all_fields_ = [("description", SharedLinkDisableType.description.validator)] +SharedLinkDisableType._all_field_names_ = set(['description']) +SharedLinkDisableType._all_fields_ = [('description', SharedLinkDisableType.description.validator)] SharedLinkDownloadDetails.shared_link_owner.validator = bv.Nullable(UserLogInfo_validator) -SharedLinkDownloadDetails._all_field_names_ = set(["shared_link_owner"]) -SharedLinkDownloadDetails._all_fields_ = [ - ("shared_link_owner", SharedLinkDownloadDetails.shared_link_owner.validator) -] +SharedLinkDownloadDetails._all_field_names_ = set(['shared_link_owner']) +SharedLinkDownloadDetails._all_fields_ = [('shared_link_owner', SharedLinkDownloadDetails.shared_link_owner.validator)] SharedLinkDownloadType.description.validator = bv.String() -SharedLinkDownloadType._all_field_names_ = set(["description"]) -SharedLinkDownloadType._all_fields_ = [ - ("description", SharedLinkDownloadType.description.validator) -] +SharedLinkDownloadType._all_field_names_ = set(['description']) +SharedLinkDownloadType._all_fields_ = [('description', SharedLinkDownloadType.description.validator)] -SharedLinkRemoveExpiryDetails.previous_value.validator = bv.Nullable( - common.DropboxTimestamp_validator -) -SharedLinkRemoveExpiryDetails._all_field_names_ = set(["previous_value"]) -SharedLinkRemoveExpiryDetails._all_fields_ = [ - ("previous_value", SharedLinkRemoveExpiryDetails.previous_value.validator) -] +SharedLinkRemoveExpiryDetails.previous_value.validator = bv.Nullable(common.DropboxTimestamp_validator) +SharedLinkRemoveExpiryDetails._all_field_names_ = set(['previous_value']) +SharedLinkRemoveExpiryDetails._all_fields_ = [('previous_value', SharedLinkRemoveExpiryDetails.previous_value.validator)] SharedLinkRemoveExpiryType.description.validator = bv.String() -SharedLinkRemoveExpiryType._all_field_names_ = set(["description"]) -SharedLinkRemoveExpiryType._all_fields_ = [ - ("description", SharedLinkRemoveExpiryType.description.validator) -] +SharedLinkRemoveExpiryType._all_field_names_ = set(['description']) +SharedLinkRemoveExpiryType._all_fields_ = [('description', SharedLinkRemoveExpiryType.description.validator)] SharedLinkRemoveVisitorDetails._all_field_names_ = set([]) SharedLinkRemoveVisitorDetails._all_fields_ = [] SharedLinkRemoveVisitorType.description.validator = bv.String() -SharedLinkRemoveVisitorType._all_field_names_ = set(["description"]) -SharedLinkRemoveVisitorType._all_fields_ = [ - ("description", SharedLinkRemoveVisitorType.description.validator) -] +SharedLinkRemoveVisitorType._all_field_names_ = set(['description']) +SharedLinkRemoveVisitorType._all_fields_ = [('description', SharedLinkRemoveVisitorType.description.validator)] -SharedLinkSettingsAddExpirationDetails.shared_content_access_level.validator = ( - sharing.AccessLevel_validator -) +SharedLinkSettingsAddExpirationDetails.shared_content_access_level.validator = sharing.AccessLevel_validator SharedLinkSettingsAddExpirationDetails.shared_content_link.validator = bv.Nullable(bv.String()) -SharedLinkSettingsAddExpirationDetails.new_value.validator = bv.Nullable( - common.DropboxTimestamp_validator -) -SharedLinkSettingsAddExpirationDetails._all_field_names_ = set( - [ - "shared_content_access_level", - "shared_content_link", - "new_value", - ] -) +SharedLinkSettingsAddExpirationDetails.new_value.validator = bv.Nullable(common.DropboxTimestamp_validator) +SharedLinkSettingsAddExpirationDetails._all_field_names_ = set([ + 'shared_content_access_level', + 'shared_content_link', + 'new_value', +]) SharedLinkSettingsAddExpirationDetails._all_fields_ = [ - ( - "shared_content_access_level", - SharedLinkSettingsAddExpirationDetails.shared_content_access_level.validator, - ), - ( - "shared_content_link", - SharedLinkSettingsAddExpirationDetails.shared_content_link.validator, - ), - ("new_value", SharedLinkSettingsAddExpirationDetails.new_value.validator), + ('shared_content_access_level', SharedLinkSettingsAddExpirationDetails.shared_content_access_level.validator), + ('shared_content_link', SharedLinkSettingsAddExpirationDetails.shared_content_link.validator), + ('new_value', SharedLinkSettingsAddExpirationDetails.new_value.validator), ] SharedLinkSettingsAddExpirationType.description.validator = bv.String() -SharedLinkSettingsAddExpirationType._all_field_names_ = set(["description"]) -SharedLinkSettingsAddExpirationType._all_fields_ = [ - ("description", SharedLinkSettingsAddExpirationType.description.validator) -] +SharedLinkSettingsAddExpirationType._all_field_names_ = set(['description']) +SharedLinkSettingsAddExpirationType._all_fields_ = [('description', SharedLinkSettingsAddExpirationType.description.validator)] -SharedLinkSettingsAddPasswordDetails.shared_content_access_level.validator = ( - sharing.AccessLevel_validator -) +SharedLinkSettingsAddPasswordDetails.shared_content_access_level.validator = sharing.AccessLevel_validator SharedLinkSettingsAddPasswordDetails.shared_content_link.validator = bv.Nullable(bv.String()) -SharedLinkSettingsAddPasswordDetails._all_field_names_ = set( - [ - "shared_content_access_level", - "shared_content_link", - ] -) +SharedLinkSettingsAddPasswordDetails._all_field_names_ = set([ + 'shared_content_access_level', + 'shared_content_link', +]) SharedLinkSettingsAddPasswordDetails._all_fields_ = [ - ( - "shared_content_access_level", - SharedLinkSettingsAddPasswordDetails.shared_content_access_level.validator, - ), - ( - "shared_content_link", - SharedLinkSettingsAddPasswordDetails.shared_content_link.validator, - ), + ('shared_content_access_level', SharedLinkSettingsAddPasswordDetails.shared_content_access_level.validator), + ('shared_content_link', SharedLinkSettingsAddPasswordDetails.shared_content_link.validator), ] SharedLinkSettingsAddPasswordType.description.validator = bv.String() -SharedLinkSettingsAddPasswordType._all_field_names_ = set(["description"]) -SharedLinkSettingsAddPasswordType._all_fields_ = [ - ("description", SharedLinkSettingsAddPasswordType.description.validator) -] - -SharedLinkSettingsAllowDownloadDisabledDetails.shared_content_access_level.validator = ( - sharing.AccessLevel_validator -) -SharedLinkSettingsAllowDownloadDisabledDetails.shared_content_link.validator = bv.Nullable( - bv.String() -) -SharedLinkSettingsAllowDownloadDisabledDetails._all_field_names_ = set( - [ - "shared_content_access_level", - "shared_content_link", - ] -) +SharedLinkSettingsAddPasswordType._all_field_names_ = set(['description']) +SharedLinkSettingsAddPasswordType._all_fields_ = [('description', SharedLinkSettingsAddPasswordType.description.validator)] + +SharedLinkSettingsAllowDownloadDisabledDetails.shared_content_access_level.validator = sharing.AccessLevel_validator +SharedLinkSettingsAllowDownloadDisabledDetails.shared_content_link.validator = bv.Nullable(bv.String()) +SharedLinkSettingsAllowDownloadDisabledDetails._all_field_names_ = set([ + 'shared_content_access_level', + 'shared_content_link', +]) SharedLinkSettingsAllowDownloadDisabledDetails._all_fields_ = [ - ( - "shared_content_access_level", - SharedLinkSettingsAllowDownloadDisabledDetails.shared_content_access_level.validator, - ), - ( - "shared_content_link", - SharedLinkSettingsAllowDownloadDisabledDetails.shared_content_link.validator, - ), + ('shared_content_access_level', SharedLinkSettingsAllowDownloadDisabledDetails.shared_content_access_level.validator), + ('shared_content_link', SharedLinkSettingsAllowDownloadDisabledDetails.shared_content_link.validator), ] SharedLinkSettingsAllowDownloadDisabledType.description.validator = bv.String() -SharedLinkSettingsAllowDownloadDisabledType._all_field_names_ = set(["description"]) -SharedLinkSettingsAllowDownloadDisabledType._all_fields_ = [ - ("description", SharedLinkSettingsAllowDownloadDisabledType.description.validator) -] - -SharedLinkSettingsAllowDownloadEnabledDetails.shared_content_access_level.validator = ( - sharing.AccessLevel_validator -) -SharedLinkSettingsAllowDownloadEnabledDetails.shared_content_link.validator = bv.Nullable( - bv.String() -) -SharedLinkSettingsAllowDownloadEnabledDetails._all_field_names_ = set( - [ - "shared_content_access_level", - "shared_content_link", - ] -) +SharedLinkSettingsAllowDownloadDisabledType._all_field_names_ = set(['description']) +SharedLinkSettingsAllowDownloadDisabledType._all_fields_ = [('description', SharedLinkSettingsAllowDownloadDisabledType.description.validator)] + +SharedLinkSettingsAllowDownloadEnabledDetails.shared_content_access_level.validator = sharing.AccessLevel_validator +SharedLinkSettingsAllowDownloadEnabledDetails.shared_content_link.validator = bv.Nullable(bv.String()) +SharedLinkSettingsAllowDownloadEnabledDetails._all_field_names_ = set([ + 'shared_content_access_level', + 'shared_content_link', +]) SharedLinkSettingsAllowDownloadEnabledDetails._all_fields_ = [ - ( - "shared_content_access_level", - SharedLinkSettingsAllowDownloadEnabledDetails.shared_content_access_level.validator, - ), - ( - "shared_content_link", - SharedLinkSettingsAllowDownloadEnabledDetails.shared_content_link.validator, - ), + ('shared_content_access_level', SharedLinkSettingsAllowDownloadEnabledDetails.shared_content_access_level.validator), + ('shared_content_link', SharedLinkSettingsAllowDownloadEnabledDetails.shared_content_link.validator), ] SharedLinkSettingsAllowDownloadEnabledType.description.validator = bv.String() -SharedLinkSettingsAllowDownloadEnabledType._all_field_names_ = set(["description"]) -SharedLinkSettingsAllowDownloadEnabledType._all_fields_ = [ - ("description", SharedLinkSettingsAllowDownloadEnabledType.description.validator) -] +SharedLinkSettingsAllowDownloadEnabledType._all_field_names_ = set(['description']) +SharedLinkSettingsAllowDownloadEnabledType._all_fields_ = [('description', SharedLinkSettingsAllowDownloadEnabledType.description.validator)] -SharedLinkSettingsChangeAudienceDetails.shared_content_access_level.validator = ( - sharing.AccessLevel_validator -) +SharedLinkSettingsChangeAudienceDetails.shared_content_access_level.validator = sharing.AccessLevel_validator SharedLinkSettingsChangeAudienceDetails.shared_content_link.validator = bv.Nullable(bv.String()) SharedLinkSettingsChangeAudienceDetails.new_value.validator = sharing.LinkAudience_validator -SharedLinkSettingsChangeAudienceDetails.previous_value.validator = bv.Nullable( - sharing.LinkAudience_validator -) -SharedLinkSettingsChangeAudienceDetails._all_field_names_ = set( - [ - "shared_content_access_level", - "shared_content_link", - "new_value", - "previous_value", - ] -) +SharedLinkSettingsChangeAudienceDetails.previous_value.validator = bv.Nullable(sharing.LinkAudience_validator) +SharedLinkSettingsChangeAudienceDetails._all_field_names_ = set([ + 'shared_content_access_level', + 'shared_content_link', + 'new_value', + 'previous_value', +]) SharedLinkSettingsChangeAudienceDetails._all_fields_ = [ - ( - "shared_content_access_level", - SharedLinkSettingsChangeAudienceDetails.shared_content_access_level.validator, - ), - ( - "shared_content_link", - SharedLinkSettingsChangeAudienceDetails.shared_content_link.validator, - ), - ("new_value", SharedLinkSettingsChangeAudienceDetails.new_value.validator), - ( - "previous_value", - SharedLinkSettingsChangeAudienceDetails.previous_value.validator, - ), + ('shared_content_access_level', SharedLinkSettingsChangeAudienceDetails.shared_content_access_level.validator), + ('shared_content_link', SharedLinkSettingsChangeAudienceDetails.shared_content_link.validator), + ('new_value', SharedLinkSettingsChangeAudienceDetails.new_value.validator), + ('previous_value', SharedLinkSettingsChangeAudienceDetails.previous_value.validator), ] SharedLinkSettingsChangeAudienceType.description.validator = bv.String() -SharedLinkSettingsChangeAudienceType._all_field_names_ = set(["description"]) -SharedLinkSettingsChangeAudienceType._all_fields_ = [ - ("description", SharedLinkSettingsChangeAudienceType.description.validator) -] +SharedLinkSettingsChangeAudienceType._all_field_names_ = set(['description']) +SharedLinkSettingsChangeAudienceType._all_fields_ = [('description', SharedLinkSettingsChangeAudienceType.description.validator)] -SharedLinkSettingsChangeExpirationDetails.shared_content_access_level.validator = ( - sharing.AccessLevel_validator -) +SharedLinkSettingsChangeExpirationDetails.shared_content_access_level.validator = sharing.AccessLevel_validator SharedLinkSettingsChangeExpirationDetails.shared_content_link.validator = bv.Nullable(bv.String()) -SharedLinkSettingsChangeExpirationDetails.new_value.validator = bv.Nullable( - common.DropboxTimestamp_validator -) -SharedLinkSettingsChangeExpirationDetails.previous_value.validator = bv.Nullable( - common.DropboxTimestamp_validator -) -SharedLinkSettingsChangeExpirationDetails._all_field_names_ = set( - [ - "shared_content_access_level", - "shared_content_link", - "new_value", - "previous_value", - ] -) +SharedLinkSettingsChangeExpirationDetails.new_value.validator = bv.Nullable(common.DropboxTimestamp_validator) +SharedLinkSettingsChangeExpirationDetails.previous_value.validator = bv.Nullable(common.DropboxTimestamp_validator) +SharedLinkSettingsChangeExpirationDetails._all_field_names_ = set([ + 'shared_content_access_level', + 'shared_content_link', + 'new_value', + 'previous_value', +]) SharedLinkSettingsChangeExpirationDetails._all_fields_ = [ - ( - "shared_content_access_level", - SharedLinkSettingsChangeExpirationDetails.shared_content_access_level.validator, - ), - ( - "shared_content_link", - SharedLinkSettingsChangeExpirationDetails.shared_content_link.validator, - ), - ("new_value", SharedLinkSettingsChangeExpirationDetails.new_value.validator), - ( - "previous_value", - SharedLinkSettingsChangeExpirationDetails.previous_value.validator, - ), + ('shared_content_access_level', SharedLinkSettingsChangeExpirationDetails.shared_content_access_level.validator), + ('shared_content_link', SharedLinkSettingsChangeExpirationDetails.shared_content_link.validator), + ('new_value', SharedLinkSettingsChangeExpirationDetails.new_value.validator), + ('previous_value', SharedLinkSettingsChangeExpirationDetails.previous_value.validator), ] SharedLinkSettingsChangeExpirationType.description.validator = bv.String() -SharedLinkSettingsChangeExpirationType._all_field_names_ = set(["description"]) -SharedLinkSettingsChangeExpirationType._all_fields_ = [ - ("description", SharedLinkSettingsChangeExpirationType.description.validator) -] +SharedLinkSettingsChangeExpirationType._all_field_names_ = set(['description']) +SharedLinkSettingsChangeExpirationType._all_fields_ = [('description', SharedLinkSettingsChangeExpirationType.description.validator)] -SharedLinkSettingsChangePasswordDetails.shared_content_access_level.validator = ( - sharing.AccessLevel_validator -) +SharedLinkSettingsChangePasswordDetails.shared_content_access_level.validator = sharing.AccessLevel_validator SharedLinkSettingsChangePasswordDetails.shared_content_link.validator = bv.Nullable(bv.String()) -SharedLinkSettingsChangePasswordDetails._all_field_names_ = set( - [ - "shared_content_access_level", - "shared_content_link", - ] -) +SharedLinkSettingsChangePasswordDetails._all_field_names_ = set([ + 'shared_content_access_level', + 'shared_content_link', +]) SharedLinkSettingsChangePasswordDetails._all_fields_ = [ - ( - "shared_content_access_level", - SharedLinkSettingsChangePasswordDetails.shared_content_access_level.validator, - ), - ( - "shared_content_link", - SharedLinkSettingsChangePasswordDetails.shared_content_link.validator, - ), + ('shared_content_access_level', SharedLinkSettingsChangePasswordDetails.shared_content_access_level.validator), + ('shared_content_link', SharedLinkSettingsChangePasswordDetails.shared_content_link.validator), ] SharedLinkSettingsChangePasswordType.description.validator = bv.String() -SharedLinkSettingsChangePasswordType._all_field_names_ = set(["description"]) -SharedLinkSettingsChangePasswordType._all_fields_ = [ - ("description", SharedLinkSettingsChangePasswordType.description.validator) -] +SharedLinkSettingsChangePasswordType._all_field_names_ = set(['description']) +SharedLinkSettingsChangePasswordType._all_fields_ = [('description', SharedLinkSettingsChangePasswordType.description.validator)] -SharedLinkSettingsRemoveExpirationDetails.shared_content_access_level.validator = ( - sharing.AccessLevel_validator -) +SharedLinkSettingsRemoveExpirationDetails.shared_content_access_level.validator = sharing.AccessLevel_validator SharedLinkSettingsRemoveExpirationDetails.shared_content_link.validator = bv.Nullable(bv.String()) -SharedLinkSettingsRemoveExpirationDetails.previous_value.validator = bv.Nullable( - common.DropboxTimestamp_validator -) -SharedLinkSettingsRemoveExpirationDetails._all_field_names_ = set( - [ - "shared_content_access_level", - "shared_content_link", - "previous_value", - ] -) +SharedLinkSettingsRemoveExpirationDetails.previous_value.validator = bv.Nullable(common.DropboxTimestamp_validator) +SharedLinkSettingsRemoveExpirationDetails._all_field_names_ = set([ + 'shared_content_access_level', + 'shared_content_link', + 'previous_value', +]) SharedLinkSettingsRemoveExpirationDetails._all_fields_ = [ - ( - "shared_content_access_level", - SharedLinkSettingsRemoveExpirationDetails.shared_content_access_level.validator, - ), - ( - "shared_content_link", - SharedLinkSettingsRemoveExpirationDetails.shared_content_link.validator, - ), - ( - "previous_value", - SharedLinkSettingsRemoveExpirationDetails.previous_value.validator, - ), + ('shared_content_access_level', SharedLinkSettingsRemoveExpirationDetails.shared_content_access_level.validator), + ('shared_content_link', SharedLinkSettingsRemoveExpirationDetails.shared_content_link.validator), + ('previous_value', SharedLinkSettingsRemoveExpirationDetails.previous_value.validator), ] SharedLinkSettingsRemoveExpirationType.description.validator = bv.String() -SharedLinkSettingsRemoveExpirationType._all_field_names_ = set(["description"]) -SharedLinkSettingsRemoveExpirationType._all_fields_ = [ - ("description", SharedLinkSettingsRemoveExpirationType.description.validator) -] +SharedLinkSettingsRemoveExpirationType._all_field_names_ = set(['description']) +SharedLinkSettingsRemoveExpirationType._all_fields_ = [('description', SharedLinkSettingsRemoveExpirationType.description.validator)] -SharedLinkSettingsRemovePasswordDetails.shared_content_access_level.validator = ( - sharing.AccessLevel_validator -) +SharedLinkSettingsRemovePasswordDetails.shared_content_access_level.validator = sharing.AccessLevel_validator SharedLinkSettingsRemovePasswordDetails.shared_content_link.validator = bv.Nullable(bv.String()) -SharedLinkSettingsRemovePasswordDetails._all_field_names_ = set( - [ - "shared_content_access_level", - "shared_content_link", - ] -) +SharedLinkSettingsRemovePasswordDetails._all_field_names_ = set([ + 'shared_content_access_level', + 'shared_content_link', +]) SharedLinkSettingsRemovePasswordDetails._all_fields_ = [ - ( - "shared_content_access_level", - SharedLinkSettingsRemovePasswordDetails.shared_content_access_level.validator, - ), - ( - "shared_content_link", - SharedLinkSettingsRemovePasswordDetails.shared_content_link.validator, - ), + ('shared_content_access_level', SharedLinkSettingsRemovePasswordDetails.shared_content_access_level.validator), + ('shared_content_link', SharedLinkSettingsRemovePasswordDetails.shared_content_link.validator), ] SharedLinkSettingsRemovePasswordType.description.validator = bv.String() -SharedLinkSettingsRemovePasswordType._all_field_names_ = set(["description"]) -SharedLinkSettingsRemovePasswordType._all_fields_ = [ - ("description", SharedLinkSettingsRemovePasswordType.description.validator) -] +SharedLinkSettingsRemovePasswordType._all_field_names_ = set(['description']) +SharedLinkSettingsRemovePasswordType._all_fields_ = [('description', SharedLinkSettingsRemovePasswordType.description.validator)] SharedLinkShareDetails.shared_link_owner.validator = bv.Nullable(UserLogInfo_validator) -SharedLinkShareDetails.external_users.validator = bv.Nullable( - bv.List(ExternalUserLogInfo_validator) -) -SharedLinkShareDetails._all_field_names_ = set( - [ - "shared_link_owner", - "external_users", - ] -) +SharedLinkShareDetails.external_users.validator = bv.Nullable(bv.List(ExternalUserLogInfo_validator)) +SharedLinkShareDetails._all_field_names_ = set([ + 'shared_link_owner', + 'external_users', +]) SharedLinkShareDetails._all_fields_ = [ - ("shared_link_owner", SharedLinkShareDetails.shared_link_owner.validator), - ("external_users", SharedLinkShareDetails.external_users.validator), + ('shared_link_owner', SharedLinkShareDetails.shared_link_owner.validator), + ('external_users', SharedLinkShareDetails.external_users.validator), ] SharedLinkShareType.description.validator = bv.String() -SharedLinkShareType._all_field_names_ = set(["description"]) -SharedLinkShareType._all_fields_ = [("description", SharedLinkShareType.description.validator)] +SharedLinkShareType._all_field_names_ = set(['description']) +SharedLinkShareType._all_fields_ = [('description', SharedLinkShareType.description.validator)] SharedLinkViewDetails.shared_link_owner.validator = bv.Nullable(UserLogInfo_validator) -SharedLinkViewDetails._all_field_names_ = set(["shared_link_owner"]) -SharedLinkViewDetails._all_fields_ = [ - ("shared_link_owner", SharedLinkViewDetails.shared_link_owner.validator) -] +SharedLinkViewDetails._all_field_names_ = set(['shared_link_owner']) +SharedLinkViewDetails._all_fields_ = [('shared_link_owner', SharedLinkViewDetails.shared_link_owner.validator)] SharedLinkViewType.description.validator = bv.String() -SharedLinkViewType._all_field_names_ = set(["description"]) -SharedLinkViewType._all_fields_ = [("description", SharedLinkViewType.description.validator)] +SharedLinkViewType._all_field_names_ = set(['description']) +SharedLinkViewType._all_fields_ = [('description', SharedLinkViewType.description.validator)] SharedLinkVisibility._no_one_validator = bv.Void() SharedLinkVisibility._password_validator = bv.Void() @@ -114388,183 +106699,128 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): SharedLinkVisibility._team_only_validator = bv.Void() SharedLinkVisibility._other_validator = bv.Void() SharedLinkVisibility._tagmap = { - "no_one": SharedLinkVisibility._no_one_validator, - "password": SharedLinkVisibility._password_validator, - "public": SharedLinkVisibility._public_validator, - "team_only": SharedLinkVisibility._team_only_validator, - "other": SharedLinkVisibility._other_validator, + 'no_one': SharedLinkVisibility._no_one_validator, + 'password': SharedLinkVisibility._password_validator, + 'public': SharedLinkVisibility._public_validator, + 'team_only': SharedLinkVisibility._team_only_validator, + 'other': SharedLinkVisibility._other_validator, } -SharedLinkVisibility.no_one = SharedLinkVisibility("no_one") -SharedLinkVisibility.password = SharedLinkVisibility("password") -SharedLinkVisibility.public = SharedLinkVisibility("public") -SharedLinkVisibility.team_only = SharedLinkVisibility("team_only") -SharedLinkVisibility.other = SharedLinkVisibility("other") +SharedLinkVisibility.no_one = SharedLinkVisibility('no_one') +SharedLinkVisibility.password = SharedLinkVisibility('password') +SharedLinkVisibility.public = SharedLinkVisibility('public') +SharedLinkVisibility.team_only = SharedLinkVisibility('team_only') +SharedLinkVisibility.other = SharedLinkVisibility('other') SharedNoteOpenedDetails._all_field_names_ = set([]) SharedNoteOpenedDetails._all_fields_ = [] SharedNoteOpenedType.description.validator = bv.String() -SharedNoteOpenedType._all_field_names_ = set(["description"]) -SharedNoteOpenedType._all_fields_ = [("description", SharedNoteOpenedType.description.validator)] +SharedNoteOpenedType._all_field_names_ = set(['description']) +SharedNoteOpenedType._all_fields_ = [('description', SharedNoteOpenedType.description.validator)] SharingChangeFolderJoinPolicyDetails.new_value.validator = SharingFolderJoinPolicy_validator -SharingChangeFolderJoinPolicyDetails.previous_value.validator = bv.Nullable( - SharingFolderJoinPolicy_validator -) -SharingChangeFolderJoinPolicyDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +SharingChangeFolderJoinPolicyDetails.previous_value.validator = bv.Nullable(SharingFolderJoinPolicy_validator) +SharingChangeFolderJoinPolicyDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) SharingChangeFolderJoinPolicyDetails._all_fields_ = [ - ("new_value", SharingChangeFolderJoinPolicyDetails.new_value.validator), - ("previous_value", SharingChangeFolderJoinPolicyDetails.previous_value.validator), + ('new_value', SharingChangeFolderJoinPolicyDetails.new_value.validator), + ('previous_value', SharingChangeFolderJoinPolicyDetails.previous_value.validator), ] SharingChangeFolderJoinPolicyType.description.validator = bv.String() -SharingChangeFolderJoinPolicyType._all_field_names_ = set(["description"]) -SharingChangeFolderJoinPolicyType._all_fields_ = [ - ("description", SharingChangeFolderJoinPolicyType.description.validator) -] - -SharingChangeLinkAllowChangeExpirationPolicyDetails.new_value.validator = ( - EnforceLinkPasswordPolicy_validator -) -SharingChangeLinkAllowChangeExpirationPolicyDetails.previous_value.validator = bv.Nullable( - EnforceLinkPasswordPolicy_validator -) -SharingChangeLinkAllowChangeExpirationPolicyDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +SharingChangeFolderJoinPolicyType._all_field_names_ = set(['description']) +SharingChangeFolderJoinPolicyType._all_fields_ = [('description', SharingChangeFolderJoinPolicyType.description.validator)] + +SharingChangeLinkAllowChangeExpirationPolicyDetails.new_value.validator = EnforceLinkPasswordPolicy_validator +SharingChangeLinkAllowChangeExpirationPolicyDetails.previous_value.validator = bv.Nullable(EnforceLinkPasswordPolicy_validator) +SharingChangeLinkAllowChangeExpirationPolicyDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) SharingChangeLinkAllowChangeExpirationPolicyDetails._all_fields_ = [ - ( - "new_value", - SharingChangeLinkAllowChangeExpirationPolicyDetails.new_value.validator, - ), - ( - "previous_value", - SharingChangeLinkAllowChangeExpirationPolicyDetails.previous_value.validator, - ), + ('new_value', SharingChangeLinkAllowChangeExpirationPolicyDetails.new_value.validator), + ('previous_value', SharingChangeLinkAllowChangeExpirationPolicyDetails.previous_value.validator), ] SharingChangeLinkAllowChangeExpirationPolicyType.description.validator = bv.String() -SharingChangeLinkAllowChangeExpirationPolicyType._all_field_names_ = set(["description"]) -SharingChangeLinkAllowChangeExpirationPolicyType._all_fields_ = [ - ( - "description", - SharingChangeLinkAllowChangeExpirationPolicyType.description.validator, - ) -] - -SharingChangeLinkDefaultExpirationPolicyDetails.new_value.validator = ( - DefaultLinkExpirationDaysPolicy_validator -) -SharingChangeLinkDefaultExpirationPolicyDetails.previous_value.validator = bv.Nullable( - DefaultLinkExpirationDaysPolicy_validator -) -SharingChangeLinkDefaultExpirationPolicyDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +SharingChangeLinkAllowChangeExpirationPolicyType._all_field_names_ = set(['description']) +SharingChangeLinkAllowChangeExpirationPolicyType._all_fields_ = [('description', SharingChangeLinkAllowChangeExpirationPolicyType.description.validator)] + +SharingChangeLinkDefaultExpirationPolicyDetails.new_value.validator = DefaultLinkExpirationDaysPolicy_validator +SharingChangeLinkDefaultExpirationPolicyDetails.previous_value.validator = bv.Nullable(DefaultLinkExpirationDaysPolicy_validator) +SharingChangeLinkDefaultExpirationPolicyDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) SharingChangeLinkDefaultExpirationPolicyDetails._all_fields_ = [ - ("new_value", SharingChangeLinkDefaultExpirationPolicyDetails.new_value.validator), - ( - "previous_value", - SharingChangeLinkDefaultExpirationPolicyDetails.previous_value.validator, - ), + ('new_value', SharingChangeLinkDefaultExpirationPolicyDetails.new_value.validator), + ('previous_value', SharingChangeLinkDefaultExpirationPolicyDetails.previous_value.validator), ] SharingChangeLinkDefaultExpirationPolicyType.description.validator = bv.String() -SharingChangeLinkDefaultExpirationPolicyType._all_field_names_ = set(["description"]) -SharingChangeLinkDefaultExpirationPolicyType._all_fields_ = [ - ("description", SharingChangeLinkDefaultExpirationPolicyType.description.validator) -] - -SharingChangeLinkEnforcePasswordPolicyDetails.new_value.validator = ( - ChangeLinkExpirationPolicy_validator -) -SharingChangeLinkEnforcePasswordPolicyDetails.previous_value.validator = bv.Nullable( - ChangeLinkExpirationPolicy_validator -) -SharingChangeLinkEnforcePasswordPolicyDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +SharingChangeLinkDefaultExpirationPolicyType._all_field_names_ = set(['description']) +SharingChangeLinkDefaultExpirationPolicyType._all_fields_ = [('description', SharingChangeLinkDefaultExpirationPolicyType.description.validator)] + +SharingChangeLinkEnforcePasswordPolicyDetails.new_value.validator = ChangeLinkExpirationPolicy_validator +SharingChangeLinkEnforcePasswordPolicyDetails.previous_value.validator = bv.Nullable(ChangeLinkExpirationPolicy_validator) +SharingChangeLinkEnforcePasswordPolicyDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) SharingChangeLinkEnforcePasswordPolicyDetails._all_fields_ = [ - ("new_value", SharingChangeLinkEnforcePasswordPolicyDetails.new_value.validator), - ( - "previous_value", - SharingChangeLinkEnforcePasswordPolicyDetails.previous_value.validator, - ), + ('new_value', SharingChangeLinkEnforcePasswordPolicyDetails.new_value.validator), + ('previous_value', SharingChangeLinkEnforcePasswordPolicyDetails.previous_value.validator), ] SharingChangeLinkEnforcePasswordPolicyType.description.validator = bv.String() -SharingChangeLinkEnforcePasswordPolicyType._all_field_names_ = set(["description"]) -SharingChangeLinkEnforcePasswordPolicyType._all_fields_ = [ - ("description", SharingChangeLinkEnforcePasswordPolicyType.description.validator) -] +SharingChangeLinkEnforcePasswordPolicyType._all_field_names_ = set(['description']) +SharingChangeLinkEnforcePasswordPolicyType._all_fields_ = [('description', SharingChangeLinkEnforcePasswordPolicyType.description.validator)] SharingChangeLinkPolicyDetails.new_value.validator = SharingLinkPolicy_validator SharingChangeLinkPolicyDetails.previous_value.validator = bv.Nullable(SharingLinkPolicy_validator) -SharingChangeLinkPolicyDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +SharingChangeLinkPolicyDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) SharingChangeLinkPolicyDetails._all_fields_ = [ - ("new_value", SharingChangeLinkPolicyDetails.new_value.validator), - ("previous_value", SharingChangeLinkPolicyDetails.previous_value.validator), + ('new_value', SharingChangeLinkPolicyDetails.new_value.validator), + ('previous_value', SharingChangeLinkPolicyDetails.previous_value.validator), ] SharingChangeLinkPolicyType.description.validator = bv.String() -SharingChangeLinkPolicyType._all_field_names_ = set(["description"]) -SharingChangeLinkPolicyType._all_fields_ = [ - ("description", SharingChangeLinkPolicyType.description.validator) -] +SharingChangeLinkPolicyType._all_field_names_ = set(['description']) +SharingChangeLinkPolicyType._all_fields_ = [('description', SharingChangeLinkPolicyType.description.validator)] SharingChangeMemberPolicyDetails.new_value.validator = SharingMemberPolicy_validator -SharingChangeMemberPolicyDetails.previous_value.validator = bv.Nullable( - SharingMemberPolicy_validator -) -SharingChangeMemberPolicyDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +SharingChangeMemberPolicyDetails.previous_value.validator = bv.Nullable(SharingMemberPolicy_validator) +SharingChangeMemberPolicyDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) SharingChangeMemberPolicyDetails._all_fields_ = [ - ("new_value", SharingChangeMemberPolicyDetails.new_value.validator), - ("previous_value", SharingChangeMemberPolicyDetails.previous_value.validator), + ('new_value', SharingChangeMemberPolicyDetails.new_value.validator), + ('previous_value', SharingChangeMemberPolicyDetails.previous_value.validator), ] SharingChangeMemberPolicyType.description.validator = bv.String() -SharingChangeMemberPolicyType._all_field_names_ = set(["description"]) -SharingChangeMemberPolicyType._all_fields_ = [ - ("description", SharingChangeMemberPolicyType.description.validator) -] +SharingChangeMemberPolicyType._all_field_names_ = set(['description']) +SharingChangeMemberPolicyType._all_fields_ = [('description', SharingChangeMemberPolicyType.description.validator)] SharingFolderJoinPolicy._from_anyone_validator = bv.Void() SharingFolderJoinPolicy._from_team_only_validator = bv.Void() SharingFolderJoinPolicy._other_validator = bv.Void() SharingFolderJoinPolicy._tagmap = { - "from_anyone": SharingFolderJoinPolicy._from_anyone_validator, - "from_team_only": SharingFolderJoinPolicy._from_team_only_validator, - "other": SharingFolderJoinPolicy._other_validator, + 'from_anyone': SharingFolderJoinPolicy._from_anyone_validator, + 'from_team_only': SharingFolderJoinPolicy._from_team_only_validator, + 'other': SharingFolderJoinPolicy._other_validator, } -SharingFolderJoinPolicy.from_anyone = SharingFolderJoinPolicy("from_anyone") -SharingFolderJoinPolicy.from_team_only = SharingFolderJoinPolicy("from_team_only") -SharingFolderJoinPolicy.other = SharingFolderJoinPolicy("other") +SharingFolderJoinPolicy.from_anyone = SharingFolderJoinPolicy('from_anyone') +SharingFolderJoinPolicy.from_team_only = SharingFolderJoinPolicy('from_team_only') +SharingFolderJoinPolicy.other = SharingFolderJoinPolicy('other') SharingLinkPolicy._default_no_one_validator = bv.Void() SharingLinkPolicy._default_private_validator = bv.Void() @@ -114572,1230 +106828,979 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): SharingLinkPolicy._only_private_validator = bv.Void() SharingLinkPolicy._other_validator = bv.Void() SharingLinkPolicy._tagmap = { - "default_no_one": SharingLinkPolicy._default_no_one_validator, - "default_private": SharingLinkPolicy._default_private_validator, - "default_public": SharingLinkPolicy._default_public_validator, - "only_private": SharingLinkPolicy._only_private_validator, - "other": SharingLinkPolicy._other_validator, + 'default_no_one': SharingLinkPolicy._default_no_one_validator, + 'default_private': SharingLinkPolicy._default_private_validator, + 'default_public': SharingLinkPolicy._default_public_validator, + 'only_private': SharingLinkPolicy._only_private_validator, + 'other': SharingLinkPolicy._other_validator, } -SharingLinkPolicy.default_no_one = SharingLinkPolicy("default_no_one") -SharingLinkPolicy.default_private = SharingLinkPolicy("default_private") -SharingLinkPolicy.default_public = SharingLinkPolicy("default_public") -SharingLinkPolicy.only_private = SharingLinkPolicy("only_private") -SharingLinkPolicy.other = SharingLinkPolicy("other") +SharingLinkPolicy.default_no_one = SharingLinkPolicy('default_no_one') +SharingLinkPolicy.default_private = SharingLinkPolicy('default_private') +SharingLinkPolicy.default_public = SharingLinkPolicy('default_public') +SharingLinkPolicy.only_private = SharingLinkPolicy('only_private') +SharingLinkPolicy.other = SharingLinkPolicy('other') SharingMemberPolicy._allow_validator = bv.Void() SharingMemberPolicy._forbid_validator = bv.Void() SharingMemberPolicy._forbid_with_exclusions_validator = bv.Void() SharingMemberPolicy._other_validator = bv.Void() SharingMemberPolicy._tagmap = { - "allow": SharingMemberPolicy._allow_validator, - "forbid": SharingMemberPolicy._forbid_validator, - "forbid_with_exclusions": SharingMemberPolicy._forbid_with_exclusions_validator, - "other": SharingMemberPolicy._other_validator, + 'allow': SharingMemberPolicy._allow_validator, + 'forbid': SharingMemberPolicy._forbid_validator, + 'forbid_with_exclusions': SharingMemberPolicy._forbid_with_exclusions_validator, + 'other': SharingMemberPolicy._other_validator, } -SharingMemberPolicy.allow = SharingMemberPolicy("allow") -SharingMemberPolicy.forbid = SharingMemberPolicy("forbid") -SharingMemberPolicy.forbid_with_exclusions = SharingMemberPolicy("forbid_with_exclusions") -SharingMemberPolicy.other = SharingMemberPolicy("other") +SharingMemberPolicy.allow = SharingMemberPolicy('allow') +SharingMemberPolicy.forbid = SharingMemberPolicy('forbid') +SharingMemberPolicy.forbid_with_exclusions = SharingMemberPolicy('forbid_with_exclusions') +SharingMemberPolicy.other = SharingMemberPolicy('other') ShmodelDisableDownloadsDetails.shared_link_owner.validator = bv.Nullable(UserLogInfo_validator) -ShmodelDisableDownloadsDetails._all_field_names_ = set(["shared_link_owner"]) -ShmodelDisableDownloadsDetails._all_fields_ = [ - ("shared_link_owner", ShmodelDisableDownloadsDetails.shared_link_owner.validator) -] +ShmodelDisableDownloadsDetails._all_field_names_ = set(['shared_link_owner']) +ShmodelDisableDownloadsDetails._all_fields_ = [('shared_link_owner', ShmodelDisableDownloadsDetails.shared_link_owner.validator)] ShmodelDisableDownloadsType.description.validator = bv.String() -ShmodelDisableDownloadsType._all_field_names_ = set(["description"]) -ShmodelDisableDownloadsType._all_fields_ = [ - ("description", ShmodelDisableDownloadsType.description.validator) -] +ShmodelDisableDownloadsType._all_field_names_ = set(['description']) +ShmodelDisableDownloadsType._all_fields_ = [('description', ShmodelDisableDownloadsType.description.validator)] ShmodelEnableDownloadsDetails.shared_link_owner.validator = bv.Nullable(UserLogInfo_validator) -ShmodelEnableDownloadsDetails._all_field_names_ = set(["shared_link_owner"]) -ShmodelEnableDownloadsDetails._all_fields_ = [ - ("shared_link_owner", ShmodelEnableDownloadsDetails.shared_link_owner.validator) -] +ShmodelEnableDownloadsDetails._all_field_names_ = set(['shared_link_owner']) +ShmodelEnableDownloadsDetails._all_fields_ = [('shared_link_owner', ShmodelEnableDownloadsDetails.shared_link_owner.validator)] ShmodelEnableDownloadsType.description.validator = bv.String() -ShmodelEnableDownloadsType._all_field_names_ = set(["description"]) -ShmodelEnableDownloadsType._all_fields_ = [ - ("description", ShmodelEnableDownloadsType.description.validator) -] +ShmodelEnableDownloadsType._all_field_names_ = set(['description']) +ShmodelEnableDownloadsType._all_fields_ = [('description', ShmodelEnableDownloadsType.description.validator)] ShmodelGroupShareDetails._all_field_names_ = set([]) ShmodelGroupShareDetails._all_fields_ = [] ShmodelGroupShareType.description.validator = bv.String() -ShmodelGroupShareType._all_field_names_ = set(["description"]) -ShmodelGroupShareType._all_fields_ = [("description", ShmodelGroupShareType.description.validator)] +ShmodelGroupShareType._all_field_names_ = set(['description']) +ShmodelGroupShareType._all_fields_ = [('description', ShmodelGroupShareType.description.validator)] ShowcaseAccessGrantedDetails.event_uuid.validator = bv.String() -ShowcaseAccessGrantedDetails._all_field_names_ = set(["event_uuid"]) -ShowcaseAccessGrantedDetails._all_fields_ = [ - ("event_uuid", ShowcaseAccessGrantedDetails.event_uuid.validator) -] +ShowcaseAccessGrantedDetails._all_field_names_ = set(['event_uuid']) +ShowcaseAccessGrantedDetails._all_fields_ = [('event_uuid', ShowcaseAccessGrantedDetails.event_uuid.validator)] ShowcaseAccessGrantedType.description.validator = bv.String() -ShowcaseAccessGrantedType._all_field_names_ = set(["description"]) -ShowcaseAccessGrantedType._all_fields_ = [ - ("description", ShowcaseAccessGrantedType.description.validator) -] +ShowcaseAccessGrantedType._all_field_names_ = set(['description']) +ShowcaseAccessGrantedType._all_fields_ = [('description', ShowcaseAccessGrantedType.description.validator)] ShowcaseAddMemberDetails.event_uuid.validator = bv.String() -ShowcaseAddMemberDetails._all_field_names_ = set(["event_uuid"]) -ShowcaseAddMemberDetails._all_fields_ = [ - ("event_uuid", ShowcaseAddMemberDetails.event_uuid.validator) -] +ShowcaseAddMemberDetails._all_field_names_ = set(['event_uuid']) +ShowcaseAddMemberDetails._all_fields_ = [('event_uuid', ShowcaseAddMemberDetails.event_uuid.validator)] ShowcaseAddMemberType.description.validator = bv.String() -ShowcaseAddMemberType._all_field_names_ = set(["description"]) -ShowcaseAddMemberType._all_fields_ = [("description", ShowcaseAddMemberType.description.validator)] +ShowcaseAddMemberType._all_field_names_ = set(['description']) +ShowcaseAddMemberType._all_fields_ = [('description', ShowcaseAddMemberType.description.validator)] ShowcaseArchivedDetails.event_uuid.validator = bv.String() -ShowcaseArchivedDetails._all_field_names_ = set(["event_uuid"]) -ShowcaseArchivedDetails._all_fields_ = [ - ("event_uuid", ShowcaseArchivedDetails.event_uuid.validator) -] +ShowcaseArchivedDetails._all_field_names_ = set(['event_uuid']) +ShowcaseArchivedDetails._all_fields_ = [('event_uuid', ShowcaseArchivedDetails.event_uuid.validator)] ShowcaseArchivedType.description.validator = bv.String() -ShowcaseArchivedType._all_field_names_ = set(["description"]) -ShowcaseArchivedType._all_fields_ = [("description", ShowcaseArchivedType.description.validator)] +ShowcaseArchivedType._all_field_names_ = set(['description']) +ShowcaseArchivedType._all_fields_ = [('description', ShowcaseArchivedType.description.validator)] ShowcaseChangeDownloadPolicyDetails.new_value.validator = ShowcaseDownloadPolicy_validator ShowcaseChangeDownloadPolicyDetails.previous_value.validator = ShowcaseDownloadPolicy_validator -ShowcaseChangeDownloadPolicyDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +ShowcaseChangeDownloadPolicyDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) ShowcaseChangeDownloadPolicyDetails._all_fields_ = [ - ("new_value", ShowcaseChangeDownloadPolicyDetails.new_value.validator), - ("previous_value", ShowcaseChangeDownloadPolicyDetails.previous_value.validator), + ('new_value', ShowcaseChangeDownloadPolicyDetails.new_value.validator), + ('previous_value', ShowcaseChangeDownloadPolicyDetails.previous_value.validator), ] ShowcaseChangeDownloadPolicyType.description.validator = bv.String() -ShowcaseChangeDownloadPolicyType._all_field_names_ = set(["description"]) -ShowcaseChangeDownloadPolicyType._all_fields_ = [ - ("description", ShowcaseChangeDownloadPolicyType.description.validator) -] +ShowcaseChangeDownloadPolicyType._all_field_names_ = set(['description']) +ShowcaseChangeDownloadPolicyType._all_fields_ = [('description', ShowcaseChangeDownloadPolicyType.description.validator)] ShowcaseChangeEnabledPolicyDetails.new_value.validator = ShowcaseEnabledPolicy_validator ShowcaseChangeEnabledPolicyDetails.previous_value.validator = ShowcaseEnabledPolicy_validator -ShowcaseChangeEnabledPolicyDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +ShowcaseChangeEnabledPolicyDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) ShowcaseChangeEnabledPolicyDetails._all_fields_ = [ - ("new_value", ShowcaseChangeEnabledPolicyDetails.new_value.validator), - ("previous_value", ShowcaseChangeEnabledPolicyDetails.previous_value.validator), + ('new_value', ShowcaseChangeEnabledPolicyDetails.new_value.validator), + ('previous_value', ShowcaseChangeEnabledPolicyDetails.previous_value.validator), ] ShowcaseChangeEnabledPolicyType.description.validator = bv.String() -ShowcaseChangeEnabledPolicyType._all_field_names_ = set(["description"]) -ShowcaseChangeEnabledPolicyType._all_fields_ = [ - ("description", ShowcaseChangeEnabledPolicyType.description.validator) -] - -ShowcaseChangeExternalSharingPolicyDetails.new_value.validator = ( - ShowcaseExternalSharingPolicy_validator -) -ShowcaseChangeExternalSharingPolicyDetails.previous_value.validator = ( - ShowcaseExternalSharingPolicy_validator -) -ShowcaseChangeExternalSharingPolicyDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +ShowcaseChangeEnabledPolicyType._all_field_names_ = set(['description']) +ShowcaseChangeEnabledPolicyType._all_fields_ = [('description', ShowcaseChangeEnabledPolicyType.description.validator)] + +ShowcaseChangeExternalSharingPolicyDetails.new_value.validator = ShowcaseExternalSharingPolicy_validator +ShowcaseChangeExternalSharingPolicyDetails.previous_value.validator = ShowcaseExternalSharingPolicy_validator +ShowcaseChangeExternalSharingPolicyDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) ShowcaseChangeExternalSharingPolicyDetails._all_fields_ = [ - ("new_value", ShowcaseChangeExternalSharingPolicyDetails.new_value.validator), - ( - "previous_value", - ShowcaseChangeExternalSharingPolicyDetails.previous_value.validator, - ), + ('new_value', ShowcaseChangeExternalSharingPolicyDetails.new_value.validator), + ('previous_value', ShowcaseChangeExternalSharingPolicyDetails.previous_value.validator), ] ShowcaseChangeExternalSharingPolicyType.description.validator = bv.String() -ShowcaseChangeExternalSharingPolicyType._all_field_names_ = set(["description"]) -ShowcaseChangeExternalSharingPolicyType._all_fields_ = [ - ("description", ShowcaseChangeExternalSharingPolicyType.description.validator) -] +ShowcaseChangeExternalSharingPolicyType._all_field_names_ = set(['description']) +ShowcaseChangeExternalSharingPolicyType._all_fields_ = [('description', ShowcaseChangeExternalSharingPolicyType.description.validator)] ShowcaseCreatedDetails.event_uuid.validator = bv.String() -ShowcaseCreatedDetails._all_field_names_ = set(["event_uuid"]) -ShowcaseCreatedDetails._all_fields_ = [("event_uuid", ShowcaseCreatedDetails.event_uuid.validator)] +ShowcaseCreatedDetails._all_field_names_ = set(['event_uuid']) +ShowcaseCreatedDetails._all_fields_ = [('event_uuid', ShowcaseCreatedDetails.event_uuid.validator)] ShowcaseCreatedType.description.validator = bv.String() -ShowcaseCreatedType._all_field_names_ = set(["description"]) -ShowcaseCreatedType._all_fields_ = [("description", ShowcaseCreatedType.description.validator)] +ShowcaseCreatedType._all_field_names_ = set(['description']) +ShowcaseCreatedType._all_fields_ = [('description', ShowcaseCreatedType.description.validator)] ShowcaseDeleteCommentDetails.event_uuid.validator = bv.String() ShowcaseDeleteCommentDetails.comment_text.validator = bv.Nullable(bv.String()) -ShowcaseDeleteCommentDetails._all_field_names_ = set( - [ - "event_uuid", - "comment_text", - ] -) +ShowcaseDeleteCommentDetails._all_field_names_ = set([ + 'event_uuid', + 'comment_text', +]) ShowcaseDeleteCommentDetails._all_fields_ = [ - ("event_uuid", ShowcaseDeleteCommentDetails.event_uuid.validator), - ("comment_text", ShowcaseDeleteCommentDetails.comment_text.validator), + ('event_uuid', ShowcaseDeleteCommentDetails.event_uuid.validator), + ('comment_text', ShowcaseDeleteCommentDetails.comment_text.validator), ] ShowcaseDeleteCommentType.description.validator = bv.String() -ShowcaseDeleteCommentType._all_field_names_ = set(["description"]) -ShowcaseDeleteCommentType._all_fields_ = [ - ("description", ShowcaseDeleteCommentType.description.validator) -] +ShowcaseDeleteCommentType._all_field_names_ = set(['description']) +ShowcaseDeleteCommentType._all_fields_ = [('description', ShowcaseDeleteCommentType.description.validator)] ShowcaseDocumentLogInfo.showcase_id.validator = bv.String() ShowcaseDocumentLogInfo.showcase_title.validator = bv.String() -ShowcaseDocumentLogInfo._all_field_names_ = set( - [ - "showcase_id", - "showcase_title", - ] -) +ShowcaseDocumentLogInfo._all_field_names_ = set([ + 'showcase_id', + 'showcase_title', +]) ShowcaseDocumentLogInfo._all_fields_ = [ - ("showcase_id", ShowcaseDocumentLogInfo.showcase_id.validator), - ("showcase_title", ShowcaseDocumentLogInfo.showcase_title.validator), + ('showcase_id', ShowcaseDocumentLogInfo.showcase_id.validator), + ('showcase_title', ShowcaseDocumentLogInfo.showcase_title.validator), ] ShowcaseDownloadPolicy._disabled_validator = bv.Void() ShowcaseDownloadPolicy._enabled_validator = bv.Void() ShowcaseDownloadPolicy._other_validator = bv.Void() ShowcaseDownloadPolicy._tagmap = { - "disabled": ShowcaseDownloadPolicy._disabled_validator, - "enabled": ShowcaseDownloadPolicy._enabled_validator, - "other": ShowcaseDownloadPolicy._other_validator, + 'disabled': ShowcaseDownloadPolicy._disabled_validator, + 'enabled': ShowcaseDownloadPolicy._enabled_validator, + 'other': ShowcaseDownloadPolicy._other_validator, } -ShowcaseDownloadPolicy.disabled = ShowcaseDownloadPolicy("disabled") -ShowcaseDownloadPolicy.enabled = ShowcaseDownloadPolicy("enabled") -ShowcaseDownloadPolicy.other = ShowcaseDownloadPolicy("other") +ShowcaseDownloadPolicy.disabled = ShowcaseDownloadPolicy('disabled') +ShowcaseDownloadPolicy.enabled = ShowcaseDownloadPolicy('enabled') +ShowcaseDownloadPolicy.other = ShowcaseDownloadPolicy('other') ShowcaseEditCommentDetails.event_uuid.validator = bv.String() ShowcaseEditCommentDetails.comment_text.validator = bv.Nullable(bv.String()) -ShowcaseEditCommentDetails._all_field_names_ = set( - [ - "event_uuid", - "comment_text", - ] -) +ShowcaseEditCommentDetails._all_field_names_ = set([ + 'event_uuid', + 'comment_text', +]) ShowcaseEditCommentDetails._all_fields_ = [ - ("event_uuid", ShowcaseEditCommentDetails.event_uuid.validator), - ("comment_text", ShowcaseEditCommentDetails.comment_text.validator), + ('event_uuid', ShowcaseEditCommentDetails.event_uuid.validator), + ('comment_text', ShowcaseEditCommentDetails.comment_text.validator), ] ShowcaseEditCommentType.description.validator = bv.String() -ShowcaseEditCommentType._all_field_names_ = set(["description"]) -ShowcaseEditCommentType._all_fields_ = [ - ("description", ShowcaseEditCommentType.description.validator) -] +ShowcaseEditCommentType._all_field_names_ = set(['description']) +ShowcaseEditCommentType._all_fields_ = [('description', ShowcaseEditCommentType.description.validator)] ShowcaseEditedDetails.event_uuid.validator = bv.String() -ShowcaseEditedDetails._all_field_names_ = set(["event_uuid"]) -ShowcaseEditedDetails._all_fields_ = [("event_uuid", ShowcaseEditedDetails.event_uuid.validator)] +ShowcaseEditedDetails._all_field_names_ = set(['event_uuid']) +ShowcaseEditedDetails._all_fields_ = [('event_uuid', ShowcaseEditedDetails.event_uuid.validator)] ShowcaseEditedType.description.validator = bv.String() -ShowcaseEditedType._all_field_names_ = set(["description"]) -ShowcaseEditedType._all_fields_ = [("description", ShowcaseEditedType.description.validator)] +ShowcaseEditedType._all_field_names_ = set(['description']) +ShowcaseEditedType._all_fields_ = [('description', ShowcaseEditedType.description.validator)] ShowcaseEnabledPolicy._disabled_validator = bv.Void() ShowcaseEnabledPolicy._enabled_validator = bv.Void() ShowcaseEnabledPolicy._other_validator = bv.Void() ShowcaseEnabledPolicy._tagmap = { - "disabled": ShowcaseEnabledPolicy._disabled_validator, - "enabled": ShowcaseEnabledPolicy._enabled_validator, - "other": ShowcaseEnabledPolicy._other_validator, + 'disabled': ShowcaseEnabledPolicy._disabled_validator, + 'enabled': ShowcaseEnabledPolicy._enabled_validator, + 'other': ShowcaseEnabledPolicy._other_validator, } -ShowcaseEnabledPolicy.disabled = ShowcaseEnabledPolicy("disabled") -ShowcaseEnabledPolicy.enabled = ShowcaseEnabledPolicy("enabled") -ShowcaseEnabledPolicy.other = ShowcaseEnabledPolicy("other") +ShowcaseEnabledPolicy.disabled = ShowcaseEnabledPolicy('disabled') +ShowcaseEnabledPolicy.enabled = ShowcaseEnabledPolicy('enabled') +ShowcaseEnabledPolicy.other = ShowcaseEnabledPolicy('other') ShowcaseExternalSharingPolicy._disabled_validator = bv.Void() ShowcaseExternalSharingPolicy._enabled_validator = bv.Void() ShowcaseExternalSharingPolicy._other_validator = bv.Void() ShowcaseExternalSharingPolicy._tagmap = { - "disabled": ShowcaseExternalSharingPolicy._disabled_validator, - "enabled": ShowcaseExternalSharingPolicy._enabled_validator, - "other": ShowcaseExternalSharingPolicy._other_validator, + 'disabled': ShowcaseExternalSharingPolicy._disabled_validator, + 'enabled': ShowcaseExternalSharingPolicy._enabled_validator, + 'other': ShowcaseExternalSharingPolicy._other_validator, } -ShowcaseExternalSharingPolicy.disabled = ShowcaseExternalSharingPolicy("disabled") -ShowcaseExternalSharingPolicy.enabled = ShowcaseExternalSharingPolicy("enabled") -ShowcaseExternalSharingPolicy.other = ShowcaseExternalSharingPolicy("other") +ShowcaseExternalSharingPolicy.disabled = ShowcaseExternalSharingPolicy('disabled') +ShowcaseExternalSharingPolicy.enabled = ShowcaseExternalSharingPolicy('enabled') +ShowcaseExternalSharingPolicy.other = ShowcaseExternalSharingPolicy('other') ShowcaseFileAddedDetails.event_uuid.validator = bv.String() -ShowcaseFileAddedDetails._all_field_names_ = set(["event_uuid"]) -ShowcaseFileAddedDetails._all_fields_ = [ - ("event_uuid", ShowcaseFileAddedDetails.event_uuid.validator) -] +ShowcaseFileAddedDetails._all_field_names_ = set(['event_uuid']) +ShowcaseFileAddedDetails._all_fields_ = [('event_uuid', ShowcaseFileAddedDetails.event_uuid.validator)] ShowcaseFileAddedType.description.validator = bv.String() -ShowcaseFileAddedType._all_field_names_ = set(["description"]) -ShowcaseFileAddedType._all_fields_ = [("description", ShowcaseFileAddedType.description.validator)] +ShowcaseFileAddedType._all_field_names_ = set(['description']) +ShowcaseFileAddedType._all_fields_ = [('description', ShowcaseFileAddedType.description.validator)] ShowcaseFileDownloadDetails.event_uuid.validator = bv.String() ShowcaseFileDownloadDetails.download_type.validator = bv.String() -ShowcaseFileDownloadDetails._all_field_names_ = set( - [ - "event_uuid", - "download_type", - ] -) +ShowcaseFileDownloadDetails._all_field_names_ = set([ + 'event_uuid', + 'download_type', +]) ShowcaseFileDownloadDetails._all_fields_ = [ - ("event_uuid", ShowcaseFileDownloadDetails.event_uuid.validator), - ("download_type", ShowcaseFileDownloadDetails.download_type.validator), + ('event_uuid', ShowcaseFileDownloadDetails.event_uuid.validator), + ('download_type', ShowcaseFileDownloadDetails.download_type.validator), ] ShowcaseFileDownloadType.description.validator = bv.String() -ShowcaseFileDownloadType._all_field_names_ = set(["description"]) -ShowcaseFileDownloadType._all_fields_ = [ - ("description", ShowcaseFileDownloadType.description.validator) -] +ShowcaseFileDownloadType._all_field_names_ = set(['description']) +ShowcaseFileDownloadType._all_fields_ = [('description', ShowcaseFileDownloadType.description.validator)] ShowcaseFileRemovedDetails.event_uuid.validator = bv.String() -ShowcaseFileRemovedDetails._all_field_names_ = set(["event_uuid"]) -ShowcaseFileRemovedDetails._all_fields_ = [ - ("event_uuid", ShowcaseFileRemovedDetails.event_uuid.validator) -] +ShowcaseFileRemovedDetails._all_field_names_ = set(['event_uuid']) +ShowcaseFileRemovedDetails._all_fields_ = [('event_uuid', ShowcaseFileRemovedDetails.event_uuid.validator)] ShowcaseFileRemovedType.description.validator = bv.String() -ShowcaseFileRemovedType._all_field_names_ = set(["description"]) -ShowcaseFileRemovedType._all_fields_ = [ - ("description", ShowcaseFileRemovedType.description.validator) -] +ShowcaseFileRemovedType._all_field_names_ = set(['description']) +ShowcaseFileRemovedType._all_fields_ = [('description', ShowcaseFileRemovedType.description.validator)] ShowcaseFileViewDetails.event_uuid.validator = bv.String() -ShowcaseFileViewDetails._all_field_names_ = set(["event_uuid"]) -ShowcaseFileViewDetails._all_fields_ = [ - ("event_uuid", ShowcaseFileViewDetails.event_uuid.validator) -] +ShowcaseFileViewDetails._all_field_names_ = set(['event_uuid']) +ShowcaseFileViewDetails._all_fields_ = [('event_uuid', ShowcaseFileViewDetails.event_uuid.validator)] ShowcaseFileViewType.description.validator = bv.String() -ShowcaseFileViewType._all_field_names_ = set(["description"]) -ShowcaseFileViewType._all_fields_ = [("description", ShowcaseFileViewType.description.validator)] +ShowcaseFileViewType._all_field_names_ = set(['description']) +ShowcaseFileViewType._all_fields_ = [('description', ShowcaseFileViewType.description.validator)] ShowcasePermanentlyDeletedDetails.event_uuid.validator = bv.String() -ShowcasePermanentlyDeletedDetails._all_field_names_ = set(["event_uuid"]) -ShowcasePermanentlyDeletedDetails._all_fields_ = [ - ("event_uuid", ShowcasePermanentlyDeletedDetails.event_uuid.validator) -] +ShowcasePermanentlyDeletedDetails._all_field_names_ = set(['event_uuid']) +ShowcasePermanentlyDeletedDetails._all_fields_ = [('event_uuid', ShowcasePermanentlyDeletedDetails.event_uuid.validator)] ShowcasePermanentlyDeletedType.description.validator = bv.String() -ShowcasePermanentlyDeletedType._all_field_names_ = set(["description"]) -ShowcasePermanentlyDeletedType._all_fields_ = [ - ("description", ShowcasePermanentlyDeletedType.description.validator) -] +ShowcasePermanentlyDeletedType._all_field_names_ = set(['description']) +ShowcasePermanentlyDeletedType._all_fields_ = [('description', ShowcasePermanentlyDeletedType.description.validator)] ShowcasePostCommentDetails.event_uuid.validator = bv.String() ShowcasePostCommentDetails.comment_text.validator = bv.Nullable(bv.String()) -ShowcasePostCommentDetails._all_field_names_ = set( - [ - "event_uuid", - "comment_text", - ] -) +ShowcasePostCommentDetails._all_field_names_ = set([ + 'event_uuid', + 'comment_text', +]) ShowcasePostCommentDetails._all_fields_ = [ - ("event_uuid", ShowcasePostCommentDetails.event_uuid.validator), - ("comment_text", ShowcasePostCommentDetails.comment_text.validator), + ('event_uuid', ShowcasePostCommentDetails.event_uuid.validator), + ('comment_text', ShowcasePostCommentDetails.comment_text.validator), ] ShowcasePostCommentType.description.validator = bv.String() -ShowcasePostCommentType._all_field_names_ = set(["description"]) -ShowcasePostCommentType._all_fields_ = [ - ("description", ShowcasePostCommentType.description.validator) -] +ShowcasePostCommentType._all_field_names_ = set(['description']) +ShowcasePostCommentType._all_fields_ = [('description', ShowcasePostCommentType.description.validator)] ShowcaseRemoveMemberDetails.event_uuid.validator = bv.String() -ShowcaseRemoveMemberDetails._all_field_names_ = set(["event_uuid"]) -ShowcaseRemoveMemberDetails._all_fields_ = [ - ("event_uuid", ShowcaseRemoveMemberDetails.event_uuid.validator) -] +ShowcaseRemoveMemberDetails._all_field_names_ = set(['event_uuid']) +ShowcaseRemoveMemberDetails._all_fields_ = [('event_uuid', ShowcaseRemoveMemberDetails.event_uuid.validator)] ShowcaseRemoveMemberType.description.validator = bv.String() -ShowcaseRemoveMemberType._all_field_names_ = set(["description"]) -ShowcaseRemoveMemberType._all_fields_ = [ - ("description", ShowcaseRemoveMemberType.description.validator) -] +ShowcaseRemoveMemberType._all_field_names_ = set(['description']) +ShowcaseRemoveMemberType._all_fields_ = [('description', ShowcaseRemoveMemberType.description.validator)] ShowcaseRenamedDetails.event_uuid.validator = bv.String() -ShowcaseRenamedDetails._all_field_names_ = set(["event_uuid"]) -ShowcaseRenamedDetails._all_fields_ = [("event_uuid", ShowcaseRenamedDetails.event_uuid.validator)] +ShowcaseRenamedDetails._all_field_names_ = set(['event_uuid']) +ShowcaseRenamedDetails._all_fields_ = [('event_uuid', ShowcaseRenamedDetails.event_uuid.validator)] ShowcaseRenamedType.description.validator = bv.String() -ShowcaseRenamedType._all_field_names_ = set(["description"]) -ShowcaseRenamedType._all_fields_ = [("description", ShowcaseRenamedType.description.validator)] +ShowcaseRenamedType._all_field_names_ = set(['description']) +ShowcaseRenamedType._all_fields_ = [('description', ShowcaseRenamedType.description.validator)] ShowcaseRequestAccessDetails.event_uuid.validator = bv.String() -ShowcaseRequestAccessDetails._all_field_names_ = set(["event_uuid"]) -ShowcaseRequestAccessDetails._all_fields_ = [ - ("event_uuid", ShowcaseRequestAccessDetails.event_uuid.validator) -] +ShowcaseRequestAccessDetails._all_field_names_ = set(['event_uuid']) +ShowcaseRequestAccessDetails._all_fields_ = [('event_uuid', ShowcaseRequestAccessDetails.event_uuid.validator)] ShowcaseRequestAccessType.description.validator = bv.String() -ShowcaseRequestAccessType._all_field_names_ = set(["description"]) -ShowcaseRequestAccessType._all_fields_ = [ - ("description", ShowcaseRequestAccessType.description.validator) -] +ShowcaseRequestAccessType._all_field_names_ = set(['description']) +ShowcaseRequestAccessType._all_fields_ = [('description', ShowcaseRequestAccessType.description.validator)] ShowcaseResolveCommentDetails.event_uuid.validator = bv.String() ShowcaseResolveCommentDetails.comment_text.validator = bv.Nullable(bv.String()) -ShowcaseResolveCommentDetails._all_field_names_ = set( - [ - "event_uuid", - "comment_text", - ] -) +ShowcaseResolveCommentDetails._all_field_names_ = set([ + 'event_uuid', + 'comment_text', +]) ShowcaseResolveCommentDetails._all_fields_ = [ - ("event_uuid", ShowcaseResolveCommentDetails.event_uuid.validator), - ("comment_text", ShowcaseResolveCommentDetails.comment_text.validator), + ('event_uuid', ShowcaseResolveCommentDetails.event_uuid.validator), + ('comment_text', ShowcaseResolveCommentDetails.comment_text.validator), ] ShowcaseResolveCommentType.description.validator = bv.String() -ShowcaseResolveCommentType._all_field_names_ = set(["description"]) -ShowcaseResolveCommentType._all_fields_ = [ - ("description", ShowcaseResolveCommentType.description.validator) -] +ShowcaseResolveCommentType._all_field_names_ = set(['description']) +ShowcaseResolveCommentType._all_fields_ = [('description', ShowcaseResolveCommentType.description.validator)] ShowcaseRestoredDetails.event_uuid.validator = bv.String() -ShowcaseRestoredDetails._all_field_names_ = set(["event_uuid"]) -ShowcaseRestoredDetails._all_fields_ = [ - ("event_uuid", ShowcaseRestoredDetails.event_uuid.validator) -] +ShowcaseRestoredDetails._all_field_names_ = set(['event_uuid']) +ShowcaseRestoredDetails._all_fields_ = [('event_uuid', ShowcaseRestoredDetails.event_uuid.validator)] ShowcaseRestoredType.description.validator = bv.String() -ShowcaseRestoredType._all_field_names_ = set(["description"]) -ShowcaseRestoredType._all_fields_ = [("description", ShowcaseRestoredType.description.validator)] +ShowcaseRestoredType._all_field_names_ = set(['description']) +ShowcaseRestoredType._all_fields_ = [('description', ShowcaseRestoredType.description.validator)] ShowcaseTrashedDeprecatedDetails.event_uuid.validator = bv.String() -ShowcaseTrashedDeprecatedDetails._all_field_names_ = set(["event_uuid"]) -ShowcaseTrashedDeprecatedDetails._all_fields_ = [ - ("event_uuid", ShowcaseTrashedDeprecatedDetails.event_uuid.validator) -] +ShowcaseTrashedDeprecatedDetails._all_field_names_ = set(['event_uuid']) +ShowcaseTrashedDeprecatedDetails._all_fields_ = [('event_uuid', ShowcaseTrashedDeprecatedDetails.event_uuid.validator)] ShowcaseTrashedDeprecatedType.description.validator = bv.String() -ShowcaseTrashedDeprecatedType._all_field_names_ = set(["description"]) -ShowcaseTrashedDeprecatedType._all_fields_ = [ - ("description", ShowcaseTrashedDeprecatedType.description.validator) -] +ShowcaseTrashedDeprecatedType._all_field_names_ = set(['description']) +ShowcaseTrashedDeprecatedType._all_fields_ = [('description', ShowcaseTrashedDeprecatedType.description.validator)] ShowcaseTrashedDetails.event_uuid.validator = bv.String() -ShowcaseTrashedDetails._all_field_names_ = set(["event_uuid"]) -ShowcaseTrashedDetails._all_fields_ = [("event_uuid", ShowcaseTrashedDetails.event_uuid.validator)] +ShowcaseTrashedDetails._all_field_names_ = set(['event_uuid']) +ShowcaseTrashedDetails._all_fields_ = [('event_uuid', ShowcaseTrashedDetails.event_uuid.validator)] ShowcaseTrashedType.description.validator = bv.String() -ShowcaseTrashedType._all_field_names_ = set(["description"]) -ShowcaseTrashedType._all_fields_ = [("description", ShowcaseTrashedType.description.validator)] +ShowcaseTrashedType._all_field_names_ = set(['description']) +ShowcaseTrashedType._all_fields_ = [('description', ShowcaseTrashedType.description.validator)] ShowcaseUnresolveCommentDetails.event_uuid.validator = bv.String() ShowcaseUnresolveCommentDetails.comment_text.validator = bv.Nullable(bv.String()) -ShowcaseUnresolveCommentDetails._all_field_names_ = set( - [ - "event_uuid", - "comment_text", - ] -) +ShowcaseUnresolveCommentDetails._all_field_names_ = set([ + 'event_uuid', + 'comment_text', +]) ShowcaseUnresolveCommentDetails._all_fields_ = [ - ("event_uuid", ShowcaseUnresolveCommentDetails.event_uuid.validator), - ("comment_text", ShowcaseUnresolveCommentDetails.comment_text.validator), + ('event_uuid', ShowcaseUnresolveCommentDetails.event_uuid.validator), + ('comment_text', ShowcaseUnresolveCommentDetails.comment_text.validator), ] ShowcaseUnresolveCommentType.description.validator = bv.String() -ShowcaseUnresolveCommentType._all_field_names_ = set(["description"]) -ShowcaseUnresolveCommentType._all_fields_ = [ - ("description", ShowcaseUnresolveCommentType.description.validator) -] +ShowcaseUnresolveCommentType._all_field_names_ = set(['description']) +ShowcaseUnresolveCommentType._all_fields_ = [('description', ShowcaseUnresolveCommentType.description.validator)] ShowcaseUntrashedDeprecatedDetails.event_uuid.validator = bv.String() -ShowcaseUntrashedDeprecatedDetails._all_field_names_ = set(["event_uuid"]) -ShowcaseUntrashedDeprecatedDetails._all_fields_ = [ - ("event_uuid", ShowcaseUntrashedDeprecatedDetails.event_uuid.validator) -] +ShowcaseUntrashedDeprecatedDetails._all_field_names_ = set(['event_uuid']) +ShowcaseUntrashedDeprecatedDetails._all_fields_ = [('event_uuid', ShowcaseUntrashedDeprecatedDetails.event_uuid.validator)] ShowcaseUntrashedDeprecatedType.description.validator = bv.String() -ShowcaseUntrashedDeprecatedType._all_field_names_ = set(["description"]) -ShowcaseUntrashedDeprecatedType._all_fields_ = [ - ("description", ShowcaseUntrashedDeprecatedType.description.validator) -] +ShowcaseUntrashedDeprecatedType._all_field_names_ = set(['description']) +ShowcaseUntrashedDeprecatedType._all_fields_ = [('description', ShowcaseUntrashedDeprecatedType.description.validator)] ShowcaseUntrashedDetails.event_uuid.validator = bv.String() -ShowcaseUntrashedDetails._all_field_names_ = set(["event_uuid"]) -ShowcaseUntrashedDetails._all_fields_ = [ - ("event_uuid", ShowcaseUntrashedDetails.event_uuid.validator) -] +ShowcaseUntrashedDetails._all_field_names_ = set(['event_uuid']) +ShowcaseUntrashedDetails._all_fields_ = [('event_uuid', ShowcaseUntrashedDetails.event_uuid.validator)] ShowcaseUntrashedType.description.validator = bv.String() -ShowcaseUntrashedType._all_field_names_ = set(["description"]) -ShowcaseUntrashedType._all_fields_ = [("description", ShowcaseUntrashedType.description.validator)] +ShowcaseUntrashedType._all_field_names_ = set(['description']) +ShowcaseUntrashedType._all_fields_ = [('description', ShowcaseUntrashedType.description.validator)] ShowcaseViewDetails.event_uuid.validator = bv.String() -ShowcaseViewDetails._all_field_names_ = set(["event_uuid"]) -ShowcaseViewDetails._all_fields_ = [("event_uuid", ShowcaseViewDetails.event_uuid.validator)] +ShowcaseViewDetails._all_field_names_ = set(['event_uuid']) +ShowcaseViewDetails._all_fields_ = [('event_uuid', ShowcaseViewDetails.event_uuid.validator)] ShowcaseViewType.description.validator = bv.String() -ShowcaseViewType._all_field_names_ = set(["description"]) -ShowcaseViewType._all_fields_ = [("description", ShowcaseViewType.description.validator)] +ShowcaseViewType._all_field_names_ = set(['description']) +ShowcaseViewType._all_fields_ = [('description', ShowcaseViewType.description.validator)] SignExternalSharingPolicy._default_validator = bv.Void() SignExternalSharingPolicy._disabled_validator = bv.Void() SignExternalSharingPolicy._enabled_validator = bv.Void() SignExternalSharingPolicy._other_validator = bv.Void() SignExternalSharingPolicy._tagmap = { - "default": SignExternalSharingPolicy._default_validator, - "disabled": SignExternalSharingPolicy._disabled_validator, - "enabled": SignExternalSharingPolicy._enabled_validator, - "other": SignExternalSharingPolicy._other_validator, + 'default': SignExternalSharingPolicy._default_validator, + 'disabled': SignExternalSharingPolicy._disabled_validator, + 'enabled': SignExternalSharingPolicy._enabled_validator, + 'other': SignExternalSharingPolicy._other_validator, } -SignExternalSharingPolicy.default = SignExternalSharingPolicy("default") -SignExternalSharingPolicy.disabled = SignExternalSharingPolicy("disabled") -SignExternalSharingPolicy.enabled = SignExternalSharingPolicy("enabled") -SignExternalSharingPolicy.other = SignExternalSharingPolicy("other") +SignExternalSharingPolicy.default = SignExternalSharingPolicy('default') +SignExternalSharingPolicy.disabled = SignExternalSharingPolicy('disabled') +SignExternalSharingPolicy.enabled = SignExternalSharingPolicy('enabled') +SignExternalSharingPolicy.other = SignExternalSharingPolicy('other') SignExternalSharingPolicyChangedDetails.new_value.validator = SignExternalSharingPolicy_validator -SignExternalSharingPolicyChangedDetails.previous_value.validator = ( - SignExternalSharingPolicy_validator -) -SignExternalSharingPolicyChangedDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +SignExternalSharingPolicyChangedDetails.previous_value.validator = SignExternalSharingPolicy_validator +SignExternalSharingPolicyChangedDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) SignExternalSharingPolicyChangedDetails._all_fields_ = [ - ("new_value", SignExternalSharingPolicyChangedDetails.new_value.validator), - ( - "previous_value", - SignExternalSharingPolicyChangedDetails.previous_value.validator, - ), + ('new_value', SignExternalSharingPolicyChangedDetails.new_value.validator), + ('previous_value', SignExternalSharingPolicyChangedDetails.previous_value.validator), ] SignExternalSharingPolicyChangedType.description.validator = bv.String() -SignExternalSharingPolicyChangedType._all_field_names_ = set(["description"]) -SignExternalSharingPolicyChangedType._all_fields_ = [ - ("description", SignExternalSharingPolicyChangedType.description.validator) -] +SignExternalSharingPolicyChangedType._all_field_names_ = set(['description']) +SignExternalSharingPolicyChangedType._all_fields_ = [('description', SignExternalSharingPolicyChangedType.description.validator)] SignInAsSessionEndDetails._all_field_names_ = set([]) SignInAsSessionEndDetails._all_fields_ = [] SignInAsSessionEndType.description.validator = bv.String() -SignInAsSessionEndType._all_field_names_ = set(["description"]) -SignInAsSessionEndType._all_fields_ = [ - ("description", SignInAsSessionEndType.description.validator) -] +SignInAsSessionEndType._all_field_names_ = set(['description']) +SignInAsSessionEndType._all_fields_ = [('description', SignInAsSessionEndType.description.validator)] SignInAsSessionStartDetails._all_field_names_ = set([]) SignInAsSessionStartDetails._all_fields_ = [] SignInAsSessionStartType.description.validator = bv.String() -SignInAsSessionStartType._all_field_names_ = set(["description"]) -SignInAsSessionStartType._all_fields_ = [ - ("description", SignInAsSessionStartType.description.validator) -] +SignInAsSessionStartType._all_field_names_ = set(['description']) +SignInAsSessionStartType._all_fields_ = [('description', SignInAsSessionStartType.description.validator)] SignSignatureRequestCanceledDetails.recipient.validator = bv.String() SignSignatureRequestCanceledDetails.file_name.validator = bv.String() -SignSignatureRequestCanceledDetails._all_field_names_ = set( - [ - "recipient", - "file_name", - ] -) +SignSignatureRequestCanceledDetails._all_field_names_ = set([ + 'recipient', + 'file_name', +]) SignSignatureRequestCanceledDetails._all_fields_ = [ - ("recipient", SignSignatureRequestCanceledDetails.recipient.validator), - ("file_name", SignSignatureRequestCanceledDetails.file_name.validator), + ('recipient', SignSignatureRequestCanceledDetails.recipient.validator), + ('file_name', SignSignatureRequestCanceledDetails.file_name.validator), ] SignSignatureRequestCanceledType.description.validator = bv.String() -SignSignatureRequestCanceledType._all_field_names_ = set(["description"]) -SignSignatureRequestCanceledType._all_fields_ = [ - ("description", SignSignatureRequestCanceledType.description.validator) -] +SignSignatureRequestCanceledType._all_field_names_ = set(['description']) +SignSignatureRequestCanceledType._all_fields_ = [('description', SignSignatureRequestCanceledType.description.validator)] SignSignatureRequestCompletedDetails.recipient.validator = bv.String() SignSignatureRequestCompletedDetails.file_name.validator = bv.String() -SignSignatureRequestCompletedDetails._all_field_names_ = set( - [ - "recipient", - "file_name", - ] -) +SignSignatureRequestCompletedDetails._all_field_names_ = set([ + 'recipient', + 'file_name', +]) SignSignatureRequestCompletedDetails._all_fields_ = [ - ("recipient", SignSignatureRequestCompletedDetails.recipient.validator), - ("file_name", SignSignatureRequestCompletedDetails.file_name.validator), + ('recipient', SignSignatureRequestCompletedDetails.recipient.validator), + ('file_name', SignSignatureRequestCompletedDetails.file_name.validator), ] SignSignatureRequestCompletedType.description.validator = bv.String() -SignSignatureRequestCompletedType._all_field_names_ = set(["description"]) -SignSignatureRequestCompletedType._all_fields_ = [ - ("description", SignSignatureRequestCompletedType.description.validator) -] +SignSignatureRequestCompletedType._all_field_names_ = set(['description']) +SignSignatureRequestCompletedType._all_fields_ = [('description', SignSignatureRequestCompletedType.description.validator)] SignSignatureRequestDeclinedDetails.recipient.validator = bv.String() SignSignatureRequestDeclinedDetails.file_name.validator = bv.String() -SignSignatureRequestDeclinedDetails._all_field_names_ = set( - [ - "recipient", - "file_name", - ] -) +SignSignatureRequestDeclinedDetails._all_field_names_ = set([ + 'recipient', + 'file_name', +]) SignSignatureRequestDeclinedDetails._all_fields_ = [ - ("recipient", SignSignatureRequestDeclinedDetails.recipient.validator), - ("file_name", SignSignatureRequestDeclinedDetails.file_name.validator), + ('recipient', SignSignatureRequestDeclinedDetails.recipient.validator), + ('file_name', SignSignatureRequestDeclinedDetails.file_name.validator), ] SignSignatureRequestDeclinedType.description.validator = bv.String() -SignSignatureRequestDeclinedType._all_field_names_ = set(["description"]) -SignSignatureRequestDeclinedType._all_fields_ = [ - ("description", SignSignatureRequestDeclinedType.description.validator) -] +SignSignatureRequestDeclinedType._all_field_names_ = set(['description']) +SignSignatureRequestDeclinedType._all_fields_ = [('description', SignSignatureRequestDeclinedType.description.validator)] SignSignatureRequestOpenedDetails.recipient.validator = bv.String() SignSignatureRequestOpenedDetails.file_name.validator = bv.String() -SignSignatureRequestOpenedDetails._all_field_names_ = set( - [ - "recipient", - "file_name", - ] -) +SignSignatureRequestOpenedDetails._all_field_names_ = set([ + 'recipient', + 'file_name', +]) SignSignatureRequestOpenedDetails._all_fields_ = [ - ("recipient", SignSignatureRequestOpenedDetails.recipient.validator), - ("file_name", SignSignatureRequestOpenedDetails.file_name.validator), + ('recipient', SignSignatureRequestOpenedDetails.recipient.validator), + ('file_name', SignSignatureRequestOpenedDetails.file_name.validator), ] SignSignatureRequestOpenedType.description.validator = bv.String() -SignSignatureRequestOpenedType._all_field_names_ = set(["description"]) -SignSignatureRequestOpenedType._all_fields_ = [ - ("description", SignSignatureRequestOpenedType.description.validator) -] +SignSignatureRequestOpenedType._all_field_names_ = set(['description']) +SignSignatureRequestOpenedType._all_fields_ = [('description', SignSignatureRequestOpenedType.description.validator)] SignSignatureRequestReminderSentDetails.recipient.validator = bv.String() SignSignatureRequestReminderSentDetails.file_name.validator = bv.String() -SignSignatureRequestReminderSentDetails._all_field_names_ = set( - [ - "recipient", - "file_name", - ] -) +SignSignatureRequestReminderSentDetails._all_field_names_ = set([ + 'recipient', + 'file_name', +]) SignSignatureRequestReminderSentDetails._all_fields_ = [ - ("recipient", SignSignatureRequestReminderSentDetails.recipient.validator), - ("file_name", SignSignatureRequestReminderSentDetails.file_name.validator), + ('recipient', SignSignatureRequestReminderSentDetails.recipient.validator), + ('file_name', SignSignatureRequestReminderSentDetails.file_name.validator), ] SignSignatureRequestReminderSentType.description.validator = bv.String() -SignSignatureRequestReminderSentType._all_field_names_ = set(["description"]) -SignSignatureRequestReminderSentType._all_fields_ = [ - ("description", SignSignatureRequestReminderSentType.description.validator) -] +SignSignatureRequestReminderSentType._all_field_names_ = set(['description']) +SignSignatureRequestReminderSentType._all_fields_ = [('description', SignSignatureRequestReminderSentType.description.validator)] SignSignatureRequestSentDetails.recipient.validator = bv.String() SignSignatureRequestSentDetails.file_name.validator = bv.String() -SignSignatureRequestSentDetails._all_field_names_ = set( - [ - "recipient", - "file_name", - ] -) +SignSignatureRequestSentDetails._all_field_names_ = set([ + 'recipient', + 'file_name', +]) SignSignatureRequestSentDetails._all_fields_ = [ - ("recipient", SignSignatureRequestSentDetails.recipient.validator), - ("file_name", SignSignatureRequestSentDetails.file_name.validator), + ('recipient', SignSignatureRequestSentDetails.recipient.validator), + ('file_name', SignSignatureRequestSentDetails.file_name.validator), ] SignSignatureRequestSentType.description.validator = bv.String() -SignSignatureRequestSentType._all_field_names_ = set(["description"]) -SignSignatureRequestSentType._all_fields_ = [ - ("description", SignSignatureRequestSentType.description.validator) -] +SignSignatureRequestSentType._all_field_names_ = set(['description']) +SignSignatureRequestSentType._all_fields_ = [('description', SignSignatureRequestSentType.description.validator)] SignTemplateCreatedDetails.access_level.validator = bv.String() SignTemplateCreatedDetails.file_name.validator = bv.String() -SignTemplateCreatedDetails._all_field_names_ = set( - [ - "access_level", - "file_name", - ] -) +SignTemplateCreatedDetails._all_field_names_ = set([ + 'access_level', + 'file_name', +]) SignTemplateCreatedDetails._all_fields_ = [ - ("access_level", SignTemplateCreatedDetails.access_level.validator), - ("file_name", SignTemplateCreatedDetails.file_name.validator), + ('access_level', SignTemplateCreatedDetails.access_level.validator), + ('file_name', SignTemplateCreatedDetails.file_name.validator), ] SignTemplateCreatedType.description.validator = bv.String() -SignTemplateCreatedType._all_field_names_ = set(["description"]) -SignTemplateCreatedType._all_fields_ = [ - ("description", SignTemplateCreatedType.description.validator) -] - -SignTemplateCreationPermissionChangedDetails.new_value.validator = ( - SignTemplateCreationPermissionPolicy_validator -) -SignTemplateCreationPermissionChangedDetails.previous_value.validator = ( - SignTemplateCreationPermissionPolicy_validator -) -SignTemplateCreationPermissionChangedDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +SignTemplateCreatedType._all_field_names_ = set(['description']) +SignTemplateCreatedType._all_fields_ = [('description', SignTemplateCreatedType.description.validator)] + +SignTemplateCreationPermissionChangedDetails.new_value.validator = SignTemplateCreationPermissionPolicy_validator +SignTemplateCreationPermissionChangedDetails.previous_value.validator = SignTemplateCreationPermissionPolicy_validator +SignTemplateCreationPermissionChangedDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) SignTemplateCreationPermissionChangedDetails._all_fields_ = [ - ("new_value", SignTemplateCreationPermissionChangedDetails.new_value.validator), - ( - "previous_value", - SignTemplateCreationPermissionChangedDetails.previous_value.validator, - ), + ('new_value', SignTemplateCreationPermissionChangedDetails.new_value.validator), + ('previous_value', SignTemplateCreationPermissionChangedDetails.previous_value.validator), ] SignTemplateCreationPermissionChangedType.description.validator = bv.String() -SignTemplateCreationPermissionChangedType._all_field_names_ = set(["description"]) -SignTemplateCreationPermissionChangedType._all_fields_ = [ - ("description", SignTemplateCreationPermissionChangedType.description.validator) -] +SignTemplateCreationPermissionChangedType._all_field_names_ = set(['description']) +SignTemplateCreationPermissionChangedType._all_fields_ = [('description', SignTemplateCreationPermissionChangedType.description.validator)] SignTemplateCreationPermissionPolicy._disabled_validator = bv.Void() SignTemplateCreationPermissionPolicy._enabled_validator = bv.Void() SignTemplateCreationPermissionPolicy._other_validator = bv.Void() SignTemplateCreationPermissionPolicy._tagmap = { - "disabled": SignTemplateCreationPermissionPolicy._disabled_validator, - "enabled": SignTemplateCreationPermissionPolicy._enabled_validator, - "other": SignTemplateCreationPermissionPolicy._other_validator, + 'disabled': SignTemplateCreationPermissionPolicy._disabled_validator, + 'enabled': SignTemplateCreationPermissionPolicy._enabled_validator, + 'other': SignTemplateCreationPermissionPolicy._other_validator, } -SignTemplateCreationPermissionPolicy.disabled = SignTemplateCreationPermissionPolicy("disabled") -SignTemplateCreationPermissionPolicy.enabled = SignTemplateCreationPermissionPolicy("enabled") -SignTemplateCreationPermissionPolicy.other = SignTemplateCreationPermissionPolicy("other") +SignTemplateCreationPermissionPolicy.disabled = SignTemplateCreationPermissionPolicy('disabled') +SignTemplateCreationPermissionPolicy.enabled = SignTemplateCreationPermissionPolicy('enabled') +SignTemplateCreationPermissionPolicy.other = SignTemplateCreationPermissionPolicy('other') SignTemplateSharedDetails.access_level.validator = bv.String() SignTemplateSharedDetails.file_name.validator = bv.String() -SignTemplateSharedDetails._all_field_names_ = set( - [ - "access_level", - "file_name", - ] -) +SignTemplateSharedDetails._all_field_names_ = set([ + 'access_level', + 'file_name', +]) SignTemplateSharedDetails._all_fields_ = [ - ("access_level", SignTemplateSharedDetails.access_level.validator), - ("file_name", SignTemplateSharedDetails.file_name.validator), + ('access_level', SignTemplateSharedDetails.access_level.validator), + ('file_name', SignTemplateSharedDetails.file_name.validator), ] SignTemplateSharedType.description.validator = bv.String() -SignTemplateSharedType._all_field_names_ = set(["description"]) -SignTemplateSharedType._all_fields_ = [ - ("description", SignTemplateSharedType.description.validator) -] - -SmartSyncChangePolicyDetails.new_value.validator = bv.Nullable( - team_policies.SmartSyncPolicy_validator -) -SmartSyncChangePolicyDetails.previous_value.validator = bv.Nullable( - team_policies.SmartSyncPolicy_validator -) -SmartSyncChangePolicyDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +SignTemplateSharedType._all_field_names_ = set(['description']) +SignTemplateSharedType._all_fields_ = [('description', SignTemplateSharedType.description.validator)] + +SmartSyncChangePolicyDetails.new_value.validator = bv.Nullable(team_policies.SmartSyncPolicy_validator) +SmartSyncChangePolicyDetails.previous_value.validator = bv.Nullable(team_policies.SmartSyncPolicy_validator) +SmartSyncChangePolicyDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) SmartSyncChangePolicyDetails._all_fields_ = [ - ("new_value", SmartSyncChangePolicyDetails.new_value.validator), - ("previous_value", SmartSyncChangePolicyDetails.previous_value.validator), + ('new_value', SmartSyncChangePolicyDetails.new_value.validator), + ('previous_value', SmartSyncChangePolicyDetails.previous_value.validator), ] SmartSyncChangePolicyType.description.validator = bv.String() -SmartSyncChangePolicyType._all_field_names_ = set(["description"]) -SmartSyncChangePolicyType._all_fields_ = [ - ("description", SmartSyncChangePolicyType.description.validator) -] +SmartSyncChangePolicyType._all_field_names_ = set(['description']) +SmartSyncChangePolicyType._all_fields_ = [('description', SmartSyncChangePolicyType.description.validator)] SmartSyncCreateAdminPrivilegeReportDetails._all_field_names_ = set([]) SmartSyncCreateAdminPrivilegeReportDetails._all_fields_ = [] SmartSyncCreateAdminPrivilegeReportType.description.validator = bv.String() -SmartSyncCreateAdminPrivilegeReportType._all_field_names_ = set(["description"]) -SmartSyncCreateAdminPrivilegeReportType._all_fields_ = [ - ("description", SmartSyncCreateAdminPrivilegeReportType.description.validator) -] +SmartSyncCreateAdminPrivilegeReportType._all_field_names_ = set(['description']) +SmartSyncCreateAdminPrivilegeReportType._all_fields_ = [('description', SmartSyncCreateAdminPrivilegeReportType.description.validator)] SmartSyncNotOptOutDetails.previous_value.validator = SmartSyncOptOutPolicy_validator SmartSyncNotOptOutDetails.new_value.validator = SmartSyncOptOutPolicy_validator -SmartSyncNotOptOutDetails._all_field_names_ = set( - [ - "previous_value", - "new_value", - ] -) +SmartSyncNotOptOutDetails._all_field_names_ = set([ + 'previous_value', + 'new_value', +]) SmartSyncNotOptOutDetails._all_fields_ = [ - ("previous_value", SmartSyncNotOptOutDetails.previous_value.validator), - ("new_value", SmartSyncNotOptOutDetails.new_value.validator), + ('previous_value', SmartSyncNotOptOutDetails.previous_value.validator), + ('new_value', SmartSyncNotOptOutDetails.new_value.validator), ] SmartSyncNotOptOutType.description.validator = bv.String() -SmartSyncNotOptOutType._all_field_names_ = set(["description"]) -SmartSyncNotOptOutType._all_fields_ = [ - ("description", SmartSyncNotOptOutType.description.validator) -] +SmartSyncNotOptOutType._all_field_names_ = set(['description']) +SmartSyncNotOptOutType._all_fields_ = [('description', SmartSyncNotOptOutType.description.validator)] SmartSyncOptOutDetails.previous_value.validator = SmartSyncOptOutPolicy_validator SmartSyncOptOutDetails.new_value.validator = SmartSyncOptOutPolicy_validator -SmartSyncOptOutDetails._all_field_names_ = set( - [ - "previous_value", - "new_value", - ] -) +SmartSyncOptOutDetails._all_field_names_ = set([ + 'previous_value', + 'new_value', +]) SmartSyncOptOutDetails._all_fields_ = [ - ("previous_value", SmartSyncOptOutDetails.previous_value.validator), - ("new_value", SmartSyncOptOutDetails.new_value.validator), + ('previous_value', SmartSyncOptOutDetails.previous_value.validator), + ('new_value', SmartSyncOptOutDetails.new_value.validator), ] SmartSyncOptOutPolicy._default_validator = bv.Void() SmartSyncOptOutPolicy._opted_out_validator = bv.Void() SmartSyncOptOutPolicy._other_validator = bv.Void() SmartSyncOptOutPolicy._tagmap = { - "default": SmartSyncOptOutPolicy._default_validator, - "opted_out": SmartSyncOptOutPolicy._opted_out_validator, - "other": SmartSyncOptOutPolicy._other_validator, + 'default': SmartSyncOptOutPolicy._default_validator, + 'opted_out': SmartSyncOptOutPolicy._opted_out_validator, + 'other': SmartSyncOptOutPolicy._other_validator, } -SmartSyncOptOutPolicy.default = SmartSyncOptOutPolicy("default") -SmartSyncOptOutPolicy.opted_out = SmartSyncOptOutPolicy("opted_out") -SmartSyncOptOutPolicy.other = SmartSyncOptOutPolicy("other") +SmartSyncOptOutPolicy.default = SmartSyncOptOutPolicy('default') +SmartSyncOptOutPolicy.opted_out = SmartSyncOptOutPolicy('opted_out') +SmartSyncOptOutPolicy.other = SmartSyncOptOutPolicy('other') SmartSyncOptOutType.description.validator = bv.String() -SmartSyncOptOutType._all_field_names_ = set(["description"]) -SmartSyncOptOutType._all_fields_ = [("description", SmartSyncOptOutType.description.validator)] - -SmarterSmartSyncPolicyChangedDetails.previous_value.validator = ( - team_policies.SmarterSmartSyncPolicyState_validator -) -SmarterSmartSyncPolicyChangedDetails.new_value.validator = ( - team_policies.SmarterSmartSyncPolicyState_validator -) -SmarterSmartSyncPolicyChangedDetails._all_field_names_ = set( - [ - "previous_value", - "new_value", - ] -) +SmartSyncOptOutType._all_field_names_ = set(['description']) +SmartSyncOptOutType._all_fields_ = [('description', SmartSyncOptOutType.description.validator)] + +SmarterSmartSyncPolicyChangedDetails.previous_value.validator = team_policies.SmarterSmartSyncPolicyState_validator +SmarterSmartSyncPolicyChangedDetails.new_value.validator = team_policies.SmarterSmartSyncPolicyState_validator +SmarterSmartSyncPolicyChangedDetails._all_field_names_ = set([ + 'previous_value', + 'new_value', +]) SmarterSmartSyncPolicyChangedDetails._all_fields_ = [ - ("previous_value", SmarterSmartSyncPolicyChangedDetails.previous_value.validator), - ("new_value", SmarterSmartSyncPolicyChangedDetails.new_value.validator), + ('previous_value', SmarterSmartSyncPolicyChangedDetails.previous_value.validator), + ('new_value', SmarterSmartSyncPolicyChangedDetails.new_value.validator), ] SmarterSmartSyncPolicyChangedType.description.validator = bv.String() -SmarterSmartSyncPolicyChangedType._all_field_names_ = set(["description"]) -SmarterSmartSyncPolicyChangedType._all_fields_ = [ - ("description", SmarterSmartSyncPolicyChangedType.description.validator) -] +SmarterSmartSyncPolicyChangedType._all_field_names_ = set(['description']) +SmarterSmartSyncPolicyChangedType._all_fields_ = [('description', SmarterSmartSyncPolicyChangedType.description.validator)] SpaceCapsType._hard_validator = bv.Void() SpaceCapsType._off_validator = bv.Void() SpaceCapsType._soft_validator = bv.Void() SpaceCapsType._other_validator = bv.Void() SpaceCapsType._tagmap = { - "hard": SpaceCapsType._hard_validator, - "off": SpaceCapsType._off_validator, - "soft": SpaceCapsType._soft_validator, - "other": SpaceCapsType._other_validator, + 'hard': SpaceCapsType._hard_validator, + 'off': SpaceCapsType._off_validator, + 'soft': SpaceCapsType._soft_validator, + 'other': SpaceCapsType._other_validator, } -SpaceCapsType.hard = SpaceCapsType("hard") -SpaceCapsType.off = SpaceCapsType("off") -SpaceCapsType.soft = SpaceCapsType("soft") -SpaceCapsType.other = SpaceCapsType("other") +SpaceCapsType.hard = SpaceCapsType('hard') +SpaceCapsType.off = SpaceCapsType('off') +SpaceCapsType.soft = SpaceCapsType('soft') +SpaceCapsType.other = SpaceCapsType('other') SpaceLimitsStatus._near_quota_validator = bv.Void() SpaceLimitsStatus._over_quota_validator = bv.Void() SpaceLimitsStatus._within_quota_validator = bv.Void() SpaceLimitsStatus._other_validator = bv.Void() SpaceLimitsStatus._tagmap = { - "near_quota": SpaceLimitsStatus._near_quota_validator, - "over_quota": SpaceLimitsStatus._over_quota_validator, - "within_quota": SpaceLimitsStatus._within_quota_validator, - "other": SpaceLimitsStatus._other_validator, + 'near_quota': SpaceLimitsStatus._near_quota_validator, + 'over_quota': SpaceLimitsStatus._over_quota_validator, + 'within_quota': SpaceLimitsStatus._within_quota_validator, + 'other': SpaceLimitsStatus._other_validator, } -SpaceLimitsStatus.near_quota = SpaceLimitsStatus("near_quota") -SpaceLimitsStatus.over_quota = SpaceLimitsStatus("over_quota") -SpaceLimitsStatus.within_quota = SpaceLimitsStatus("within_quota") -SpaceLimitsStatus.other = SpaceLimitsStatus("other") +SpaceLimitsStatus.near_quota = SpaceLimitsStatus('near_quota') +SpaceLimitsStatus.over_quota = SpaceLimitsStatus('over_quota') +SpaceLimitsStatus.within_quota = SpaceLimitsStatus('within_quota') +SpaceLimitsStatus.other = SpaceLimitsStatus('other') SsoAddCertDetails.certificate_details.validator = Certificate_validator -SsoAddCertDetails._all_field_names_ = set(["certificate_details"]) -SsoAddCertDetails._all_fields_ = [ - ("certificate_details", SsoAddCertDetails.certificate_details.validator) -] +SsoAddCertDetails._all_field_names_ = set(['certificate_details']) +SsoAddCertDetails._all_fields_ = [('certificate_details', SsoAddCertDetails.certificate_details.validator)] SsoAddCertType.description.validator = bv.String() -SsoAddCertType._all_field_names_ = set(["description"]) -SsoAddCertType._all_fields_ = [("description", SsoAddCertType.description.validator)] +SsoAddCertType._all_field_names_ = set(['description']) +SsoAddCertType._all_fields_ = [('description', SsoAddCertType.description.validator)] SsoAddLoginUrlDetails.new_value.validator = bv.String() -SsoAddLoginUrlDetails._all_field_names_ = set(["new_value"]) -SsoAddLoginUrlDetails._all_fields_ = [("new_value", SsoAddLoginUrlDetails.new_value.validator)] +SsoAddLoginUrlDetails._all_field_names_ = set(['new_value']) +SsoAddLoginUrlDetails._all_fields_ = [('new_value', SsoAddLoginUrlDetails.new_value.validator)] SsoAddLoginUrlType.description.validator = bv.String() -SsoAddLoginUrlType._all_field_names_ = set(["description"]) -SsoAddLoginUrlType._all_fields_ = [("description", SsoAddLoginUrlType.description.validator)] +SsoAddLoginUrlType._all_field_names_ = set(['description']) +SsoAddLoginUrlType._all_fields_ = [('description', SsoAddLoginUrlType.description.validator)] SsoAddLogoutUrlDetails.new_value.validator = bv.Nullable(bv.String()) -SsoAddLogoutUrlDetails._all_field_names_ = set(["new_value"]) -SsoAddLogoutUrlDetails._all_fields_ = [("new_value", SsoAddLogoutUrlDetails.new_value.validator)] +SsoAddLogoutUrlDetails._all_field_names_ = set(['new_value']) +SsoAddLogoutUrlDetails._all_fields_ = [('new_value', SsoAddLogoutUrlDetails.new_value.validator)] SsoAddLogoutUrlType.description.validator = bv.String() -SsoAddLogoutUrlType._all_field_names_ = set(["description"]) -SsoAddLogoutUrlType._all_fields_ = [("description", SsoAddLogoutUrlType.description.validator)] +SsoAddLogoutUrlType._all_field_names_ = set(['description']) +SsoAddLogoutUrlType._all_fields_ = [('description', SsoAddLogoutUrlType.description.validator)] SsoChangeCertDetails.previous_certificate_details.validator = bv.Nullable(Certificate_validator) SsoChangeCertDetails.new_certificate_details.validator = Certificate_validator -SsoChangeCertDetails._all_field_names_ = set( - [ - "previous_certificate_details", - "new_certificate_details", - ] -) +SsoChangeCertDetails._all_field_names_ = set([ + 'previous_certificate_details', + 'new_certificate_details', +]) SsoChangeCertDetails._all_fields_ = [ - ( - "previous_certificate_details", - SsoChangeCertDetails.previous_certificate_details.validator, - ), - ("new_certificate_details", SsoChangeCertDetails.new_certificate_details.validator), + ('previous_certificate_details', SsoChangeCertDetails.previous_certificate_details.validator), + ('new_certificate_details', SsoChangeCertDetails.new_certificate_details.validator), ] SsoChangeCertType.description.validator = bv.String() -SsoChangeCertType._all_field_names_ = set(["description"]) -SsoChangeCertType._all_fields_ = [("description", SsoChangeCertType.description.validator)] +SsoChangeCertType._all_field_names_ = set(['description']) +SsoChangeCertType._all_fields_ = [('description', SsoChangeCertType.description.validator)] SsoChangeLoginUrlDetails.previous_value.validator = bv.String() SsoChangeLoginUrlDetails.new_value.validator = bv.String() -SsoChangeLoginUrlDetails._all_field_names_ = set( - [ - "previous_value", - "new_value", - ] -) +SsoChangeLoginUrlDetails._all_field_names_ = set([ + 'previous_value', + 'new_value', +]) SsoChangeLoginUrlDetails._all_fields_ = [ - ("previous_value", SsoChangeLoginUrlDetails.previous_value.validator), - ("new_value", SsoChangeLoginUrlDetails.new_value.validator), + ('previous_value', SsoChangeLoginUrlDetails.previous_value.validator), + ('new_value', SsoChangeLoginUrlDetails.new_value.validator), ] SsoChangeLoginUrlType.description.validator = bv.String() -SsoChangeLoginUrlType._all_field_names_ = set(["description"]) -SsoChangeLoginUrlType._all_fields_ = [("description", SsoChangeLoginUrlType.description.validator)] +SsoChangeLoginUrlType._all_field_names_ = set(['description']) +SsoChangeLoginUrlType._all_fields_ = [('description', SsoChangeLoginUrlType.description.validator)] SsoChangeLogoutUrlDetails.previous_value.validator = bv.Nullable(bv.String()) SsoChangeLogoutUrlDetails.new_value.validator = bv.Nullable(bv.String()) -SsoChangeLogoutUrlDetails._all_field_names_ = set( - [ - "previous_value", - "new_value", - ] -) +SsoChangeLogoutUrlDetails._all_field_names_ = set([ + 'previous_value', + 'new_value', +]) SsoChangeLogoutUrlDetails._all_fields_ = [ - ("previous_value", SsoChangeLogoutUrlDetails.previous_value.validator), - ("new_value", SsoChangeLogoutUrlDetails.new_value.validator), + ('previous_value', SsoChangeLogoutUrlDetails.previous_value.validator), + ('new_value', SsoChangeLogoutUrlDetails.new_value.validator), ] SsoChangeLogoutUrlType.description.validator = bv.String() -SsoChangeLogoutUrlType._all_field_names_ = set(["description"]) -SsoChangeLogoutUrlType._all_fields_ = [ - ("description", SsoChangeLogoutUrlType.description.validator) -] +SsoChangeLogoutUrlType._all_field_names_ = set(['description']) +SsoChangeLogoutUrlType._all_fields_ = [('description', SsoChangeLogoutUrlType.description.validator)] SsoChangePolicyDetails.new_value.validator = team_policies.SsoPolicy_validator SsoChangePolicyDetails.previous_value.validator = bv.Nullable(team_policies.SsoPolicy_validator) -SsoChangePolicyDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +SsoChangePolicyDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) SsoChangePolicyDetails._all_fields_ = [ - ("new_value", SsoChangePolicyDetails.new_value.validator), - ("previous_value", SsoChangePolicyDetails.previous_value.validator), + ('new_value', SsoChangePolicyDetails.new_value.validator), + ('previous_value', SsoChangePolicyDetails.previous_value.validator), ] SsoChangePolicyType.description.validator = bv.String() -SsoChangePolicyType._all_field_names_ = set(["description"]) -SsoChangePolicyType._all_fields_ = [("description", SsoChangePolicyType.description.validator)] +SsoChangePolicyType._all_field_names_ = set(['description']) +SsoChangePolicyType._all_fields_ = [('description', SsoChangePolicyType.description.validator)] SsoChangeSamlIdentityModeDetails.previous_value.validator = bv.Int64() SsoChangeSamlIdentityModeDetails.new_value.validator = bv.Int64() -SsoChangeSamlIdentityModeDetails._all_field_names_ = set( - [ - "previous_value", - "new_value", - ] -) +SsoChangeSamlIdentityModeDetails._all_field_names_ = set([ + 'previous_value', + 'new_value', +]) SsoChangeSamlIdentityModeDetails._all_fields_ = [ - ("previous_value", SsoChangeSamlIdentityModeDetails.previous_value.validator), - ("new_value", SsoChangeSamlIdentityModeDetails.new_value.validator), + ('previous_value', SsoChangeSamlIdentityModeDetails.previous_value.validator), + ('new_value', SsoChangeSamlIdentityModeDetails.new_value.validator), ] SsoChangeSamlIdentityModeType.description.validator = bv.String() -SsoChangeSamlIdentityModeType._all_field_names_ = set(["description"]) -SsoChangeSamlIdentityModeType._all_fields_ = [ - ("description", SsoChangeSamlIdentityModeType.description.validator) -] +SsoChangeSamlIdentityModeType._all_field_names_ = set(['description']) +SsoChangeSamlIdentityModeType._all_fields_ = [('description', SsoChangeSamlIdentityModeType.description.validator)] SsoErrorDetails.error_details.validator = FailureDetailsLogInfo_validator -SsoErrorDetails._all_field_names_ = set(["error_details"]) -SsoErrorDetails._all_fields_ = [("error_details", SsoErrorDetails.error_details.validator)] +SsoErrorDetails._all_field_names_ = set(['error_details']) +SsoErrorDetails._all_fields_ = [('error_details', SsoErrorDetails.error_details.validator)] SsoErrorType.description.validator = bv.String() -SsoErrorType._all_field_names_ = set(["description"]) -SsoErrorType._all_fields_ = [("description", SsoErrorType.description.validator)] +SsoErrorType._all_field_names_ = set(['description']) +SsoErrorType._all_fields_ = [('description', SsoErrorType.description.validator)] SsoRemoveCertDetails._all_field_names_ = set([]) SsoRemoveCertDetails._all_fields_ = [] SsoRemoveCertType.description.validator = bv.String() -SsoRemoveCertType._all_field_names_ = set(["description"]) -SsoRemoveCertType._all_fields_ = [("description", SsoRemoveCertType.description.validator)] +SsoRemoveCertType._all_field_names_ = set(['description']) +SsoRemoveCertType._all_fields_ = [('description', SsoRemoveCertType.description.validator)] SsoRemoveLoginUrlDetails.previous_value.validator = bv.String() -SsoRemoveLoginUrlDetails._all_field_names_ = set(["previous_value"]) -SsoRemoveLoginUrlDetails._all_fields_ = [ - ("previous_value", SsoRemoveLoginUrlDetails.previous_value.validator) -] +SsoRemoveLoginUrlDetails._all_field_names_ = set(['previous_value']) +SsoRemoveLoginUrlDetails._all_fields_ = [('previous_value', SsoRemoveLoginUrlDetails.previous_value.validator)] SsoRemoveLoginUrlType.description.validator = bv.String() -SsoRemoveLoginUrlType._all_field_names_ = set(["description"]) -SsoRemoveLoginUrlType._all_fields_ = [("description", SsoRemoveLoginUrlType.description.validator)] +SsoRemoveLoginUrlType._all_field_names_ = set(['description']) +SsoRemoveLoginUrlType._all_fields_ = [('description', SsoRemoveLoginUrlType.description.validator)] SsoRemoveLogoutUrlDetails.previous_value.validator = bv.String() -SsoRemoveLogoutUrlDetails._all_field_names_ = set(["previous_value"]) -SsoRemoveLogoutUrlDetails._all_fields_ = [ - ("previous_value", SsoRemoveLogoutUrlDetails.previous_value.validator) -] +SsoRemoveLogoutUrlDetails._all_field_names_ = set(['previous_value']) +SsoRemoveLogoutUrlDetails._all_fields_ = [('previous_value', SsoRemoveLogoutUrlDetails.previous_value.validator)] SsoRemoveLogoutUrlType.description.validator = bv.String() -SsoRemoveLogoutUrlType._all_field_names_ = set(["description"]) -SsoRemoveLogoutUrlType._all_fields_ = [ - ("description", SsoRemoveLogoutUrlType.description.validator) -] +SsoRemoveLogoutUrlType._all_field_names_ = set(['description']) +SsoRemoveLogoutUrlType._all_fields_ = [('description', SsoRemoveLogoutUrlType.description.validator)] StackCrossTeamAccessPolicy._allowed_validator = bv.Void() StackCrossTeamAccessPolicy._default_validator = bv.Void() StackCrossTeamAccessPolicy._disallowed_validator = bv.Void() StackCrossTeamAccessPolicy._other_validator = bv.Void() StackCrossTeamAccessPolicy._tagmap = { - "allowed": StackCrossTeamAccessPolicy._allowed_validator, - "default": StackCrossTeamAccessPolicy._default_validator, - "disallowed": StackCrossTeamAccessPolicy._disallowed_validator, - "other": StackCrossTeamAccessPolicy._other_validator, + 'allowed': StackCrossTeamAccessPolicy._allowed_validator, + 'default': StackCrossTeamAccessPolicy._default_validator, + 'disallowed': StackCrossTeamAccessPolicy._disallowed_validator, + 'other': StackCrossTeamAccessPolicy._other_validator, } -StackCrossTeamAccessPolicy.allowed = StackCrossTeamAccessPolicy("allowed") -StackCrossTeamAccessPolicy.default = StackCrossTeamAccessPolicy("default") -StackCrossTeamAccessPolicy.disallowed = StackCrossTeamAccessPolicy("disallowed") -StackCrossTeamAccessPolicy.other = StackCrossTeamAccessPolicy("other") +StackCrossTeamAccessPolicy.allowed = StackCrossTeamAccessPolicy('allowed') +StackCrossTeamAccessPolicy.default = StackCrossTeamAccessPolicy('default') +StackCrossTeamAccessPolicy.disallowed = StackCrossTeamAccessPolicy('disallowed') +StackCrossTeamAccessPolicy.other = StackCrossTeamAccessPolicy('other') StackCrossTeamAccessPolicyChangedDetails.new_value.validator = StackCrossTeamAccessPolicy_validator -StackCrossTeamAccessPolicyChangedDetails.previous_value.validator = bv.Nullable( - StackCrossTeamAccessPolicy_validator -) -StackCrossTeamAccessPolicyChangedDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +StackCrossTeamAccessPolicyChangedDetails.previous_value.validator = bv.Nullable(StackCrossTeamAccessPolicy_validator) +StackCrossTeamAccessPolicyChangedDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) StackCrossTeamAccessPolicyChangedDetails._all_fields_ = [ - ("new_value", StackCrossTeamAccessPolicyChangedDetails.new_value.validator), - ( - "previous_value", - StackCrossTeamAccessPolicyChangedDetails.previous_value.validator, - ), + ('new_value', StackCrossTeamAccessPolicyChangedDetails.new_value.validator), + ('previous_value', StackCrossTeamAccessPolicyChangedDetails.previous_value.validator), ] StackCrossTeamAccessPolicyChangedType.description.validator = bv.String() -StackCrossTeamAccessPolicyChangedType._all_field_names_ = set(["description"]) -StackCrossTeamAccessPolicyChangedType._all_fields_ = [ - ("description", StackCrossTeamAccessPolicyChangedType.description.validator) -] +StackCrossTeamAccessPolicyChangedType._all_field_names_ = set(['description']) +StackCrossTeamAccessPolicyChangedType._all_fields_ = [('description', StackCrossTeamAccessPolicyChangedType.description.validator)] StartedEnterpriseAdminSessionDetails.federation_extra_details.validator = FedExtraDetails_validator -StartedEnterpriseAdminSessionDetails._all_field_names_ = set(["federation_extra_details"]) -StartedEnterpriseAdminSessionDetails._all_fields_ = [ - ( - "federation_extra_details", - StartedEnterpriseAdminSessionDetails.federation_extra_details.validator, - ) -] +StartedEnterpriseAdminSessionDetails._all_field_names_ = set(['federation_extra_details']) +StartedEnterpriseAdminSessionDetails._all_fields_ = [('federation_extra_details', StartedEnterpriseAdminSessionDetails.federation_extra_details.validator)] StartedEnterpriseAdminSessionType.description.validator = bv.String() -StartedEnterpriseAdminSessionType._all_field_names_ = set(["description"]) -StartedEnterpriseAdminSessionType._all_fields_ = [ - ("description", StartedEnterpriseAdminSessionType.description.validator) -] +StartedEnterpriseAdminSessionType._all_field_names_ = set(['description']) +StartedEnterpriseAdminSessionType._all_fields_ = [('description', StartedEnterpriseAdminSessionType.description.validator)] TeamActivityCreateReportDetails.start_date.validator = common.DropboxTimestamp_validator TeamActivityCreateReportDetails.end_date.validator = common.DropboxTimestamp_validator -TeamActivityCreateReportDetails._all_field_names_ = set( - [ - "start_date", - "end_date", - ] -) +TeamActivityCreateReportDetails._all_field_names_ = set([ + 'start_date', + 'end_date', +]) TeamActivityCreateReportDetails._all_fields_ = [ - ("start_date", TeamActivityCreateReportDetails.start_date.validator), - ("end_date", TeamActivityCreateReportDetails.end_date.validator), + ('start_date', TeamActivityCreateReportDetails.start_date.validator), + ('end_date', TeamActivityCreateReportDetails.end_date.validator), ] -TeamActivityCreateReportFailDetails.failure_reason.validator = ( - team.TeamReportFailureReason_validator -) -TeamActivityCreateReportFailDetails._all_field_names_ = set(["failure_reason"]) -TeamActivityCreateReportFailDetails._all_fields_ = [ - ("failure_reason", TeamActivityCreateReportFailDetails.failure_reason.validator) -] +TeamActivityCreateReportFailDetails.failure_reason.validator = team.TeamReportFailureReason_validator +TeamActivityCreateReportFailDetails._all_field_names_ = set(['failure_reason']) +TeamActivityCreateReportFailDetails._all_fields_ = [('failure_reason', TeamActivityCreateReportFailDetails.failure_reason.validator)] TeamActivityCreateReportFailType.description.validator = bv.String() -TeamActivityCreateReportFailType._all_field_names_ = set(["description"]) -TeamActivityCreateReportFailType._all_fields_ = [ - ("description", TeamActivityCreateReportFailType.description.validator) -] +TeamActivityCreateReportFailType._all_field_names_ = set(['description']) +TeamActivityCreateReportFailType._all_fields_ = [('description', TeamActivityCreateReportFailType.description.validator)] TeamActivityCreateReportType.description.validator = bv.String() -TeamActivityCreateReportType._all_field_names_ = set(["description"]) -TeamActivityCreateReportType._all_fields_ = [ - ("description", TeamActivityCreateReportType.description.validator) -] +TeamActivityCreateReportType._all_field_names_ = set(['description']) +TeamActivityCreateReportType._all_fields_ = [('description', TeamActivityCreateReportType.description.validator)] TeamBrandingPolicy._disabled_validator = bv.Void() TeamBrandingPolicy._enabled_validator = bv.Void() TeamBrandingPolicy._other_validator = bv.Void() TeamBrandingPolicy._tagmap = { - "disabled": TeamBrandingPolicy._disabled_validator, - "enabled": TeamBrandingPolicy._enabled_validator, - "other": TeamBrandingPolicy._other_validator, + 'disabled': TeamBrandingPolicy._disabled_validator, + 'enabled': TeamBrandingPolicy._enabled_validator, + 'other': TeamBrandingPolicy._other_validator, } -TeamBrandingPolicy.disabled = TeamBrandingPolicy("disabled") -TeamBrandingPolicy.enabled = TeamBrandingPolicy("enabled") -TeamBrandingPolicy.other = TeamBrandingPolicy("other") +TeamBrandingPolicy.disabled = TeamBrandingPolicy('disabled') +TeamBrandingPolicy.enabled = TeamBrandingPolicy('enabled') +TeamBrandingPolicy.other = TeamBrandingPolicy('other') TeamBrandingPolicyChangedDetails.new_value.validator = TeamBrandingPolicy_validator TeamBrandingPolicyChangedDetails.previous_value.validator = TeamBrandingPolicy_validator -TeamBrandingPolicyChangedDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +TeamBrandingPolicyChangedDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) TeamBrandingPolicyChangedDetails._all_fields_ = [ - ("new_value", TeamBrandingPolicyChangedDetails.new_value.validator), - ("previous_value", TeamBrandingPolicyChangedDetails.previous_value.validator), + ('new_value', TeamBrandingPolicyChangedDetails.new_value.validator), + ('previous_value', TeamBrandingPolicyChangedDetails.previous_value.validator), ] TeamBrandingPolicyChangedType.description.validator = bv.String() -TeamBrandingPolicyChangedType._all_field_names_ = set(["description"]) -TeamBrandingPolicyChangedType._all_fields_ = [ - ("description", TeamBrandingPolicyChangedType.description.validator) -] +TeamBrandingPolicyChangedType._all_field_names_ = set(['description']) +TeamBrandingPolicyChangedType._all_fields_ = [('description', TeamBrandingPolicyChangedType.description.validator)] TeamDetails.team.validator = bv.String() -TeamDetails._all_field_names_ = set(["team"]) -TeamDetails._all_fields_ = [("team", TeamDetails.team.validator)] +TeamDetails._all_field_names_ = set(['team']) +TeamDetails._all_fields_ = [('team', TeamDetails.team.validator)] TeamEncryptionKeyActivateKeyDetails.key_management_type.validator = bv.String() -TeamEncryptionKeyActivateKeyDetails._all_field_names_ = set(["key_management_type"]) -TeamEncryptionKeyActivateKeyDetails._all_fields_ = [ - ( - "key_management_type", - TeamEncryptionKeyActivateKeyDetails.key_management_type.validator, - ) -] +TeamEncryptionKeyActivateKeyDetails._all_field_names_ = set(['key_management_type']) +TeamEncryptionKeyActivateKeyDetails._all_fields_ = [('key_management_type', TeamEncryptionKeyActivateKeyDetails.key_management_type.validator)] TeamEncryptionKeyActivateKeyType.description.validator = bv.String() -TeamEncryptionKeyActivateKeyType._all_field_names_ = set(["description"]) -TeamEncryptionKeyActivateKeyType._all_fields_ = [ - ("description", TeamEncryptionKeyActivateKeyType.description.validator) -] +TeamEncryptionKeyActivateKeyType._all_field_names_ = set(['description']) +TeamEncryptionKeyActivateKeyType._all_fields_ = [('description', TeamEncryptionKeyActivateKeyType.description.validator)] TeamEncryptionKeyCancelKeyDeletionDetails._all_field_names_ = set([]) TeamEncryptionKeyCancelKeyDeletionDetails._all_fields_ = [] TeamEncryptionKeyCancelKeyDeletionType.description.validator = bv.String() -TeamEncryptionKeyCancelKeyDeletionType._all_field_names_ = set(["description"]) -TeamEncryptionKeyCancelKeyDeletionType._all_fields_ = [ - ("description", TeamEncryptionKeyCancelKeyDeletionType.description.validator) -] +TeamEncryptionKeyCancelKeyDeletionType._all_field_names_ = set(['description']) +TeamEncryptionKeyCancelKeyDeletionType._all_fields_ = [('description', TeamEncryptionKeyCancelKeyDeletionType.description.validator)] TeamEncryptionKeyCreateKeyDetails._all_field_names_ = set([]) TeamEncryptionKeyCreateKeyDetails._all_fields_ = [] TeamEncryptionKeyCreateKeyType.description.validator = bv.String() -TeamEncryptionKeyCreateKeyType._all_field_names_ = set(["description"]) -TeamEncryptionKeyCreateKeyType._all_fields_ = [ - ("description", TeamEncryptionKeyCreateKeyType.description.validator) -] +TeamEncryptionKeyCreateKeyType._all_field_names_ = set(['description']) +TeamEncryptionKeyCreateKeyType._all_fields_ = [('description', TeamEncryptionKeyCreateKeyType.description.validator)] TeamEncryptionKeyDeactivateKeyDetails._all_field_names_ = set([]) TeamEncryptionKeyDeactivateKeyDetails._all_fields_ = [] TeamEncryptionKeyDeactivateKeyType.description.validator = bv.String() -TeamEncryptionKeyDeactivateKeyType._all_field_names_ = set(["description"]) -TeamEncryptionKeyDeactivateKeyType._all_fields_ = [ - ("description", TeamEncryptionKeyDeactivateKeyType.description.validator) -] +TeamEncryptionKeyDeactivateKeyType._all_field_names_ = set(['description']) +TeamEncryptionKeyDeactivateKeyType._all_fields_ = [('description', TeamEncryptionKeyDeactivateKeyType.description.validator)] TeamEncryptionKeyDeleteKeyDetails._all_field_names_ = set([]) TeamEncryptionKeyDeleteKeyDetails._all_fields_ = [] TeamEncryptionKeyDeleteKeyType.description.validator = bv.String() -TeamEncryptionKeyDeleteKeyType._all_field_names_ = set(["description"]) -TeamEncryptionKeyDeleteKeyType._all_fields_ = [ - ("description", TeamEncryptionKeyDeleteKeyType.description.validator) -] +TeamEncryptionKeyDeleteKeyType._all_field_names_ = set(['description']) +TeamEncryptionKeyDeleteKeyType._all_fields_ = [('description', TeamEncryptionKeyDeleteKeyType.description.validator)] TeamEncryptionKeyDisableKeyDetails._all_field_names_ = set([]) TeamEncryptionKeyDisableKeyDetails._all_fields_ = [] TeamEncryptionKeyDisableKeyType.description.validator = bv.String() -TeamEncryptionKeyDisableKeyType._all_field_names_ = set(["description"]) -TeamEncryptionKeyDisableKeyType._all_fields_ = [ - ("description", TeamEncryptionKeyDisableKeyType.description.validator) -] +TeamEncryptionKeyDisableKeyType._all_field_names_ = set(['description']) +TeamEncryptionKeyDisableKeyType._all_fields_ = [('description', TeamEncryptionKeyDisableKeyType.description.validator)] TeamEncryptionKeyEnableKeyDetails._all_field_names_ = set([]) TeamEncryptionKeyEnableKeyDetails._all_fields_ = [] TeamEncryptionKeyEnableKeyType.description.validator = bv.String() -TeamEncryptionKeyEnableKeyType._all_field_names_ = set(["description"]) -TeamEncryptionKeyEnableKeyType._all_fields_ = [ - ("description", TeamEncryptionKeyEnableKeyType.description.validator) -] +TeamEncryptionKeyEnableKeyType._all_field_names_ = set(['description']) +TeamEncryptionKeyEnableKeyType._all_fields_ = [('description', TeamEncryptionKeyEnableKeyType.description.validator)] TeamEncryptionKeyRotateKeyDetails._all_field_names_ = set([]) TeamEncryptionKeyRotateKeyDetails._all_fields_ = [] TeamEncryptionKeyRotateKeyType.description.validator = bv.String() -TeamEncryptionKeyRotateKeyType._all_field_names_ = set(["description"]) -TeamEncryptionKeyRotateKeyType._all_fields_ = [ - ("description", TeamEncryptionKeyRotateKeyType.description.validator) -] +TeamEncryptionKeyRotateKeyType._all_field_names_ = set(['description']) +TeamEncryptionKeyRotateKeyType._all_fields_ = [('description', TeamEncryptionKeyRotateKeyType.description.validator)] TeamEncryptionKeyScheduleKeyDeletionDetails._all_field_names_ = set([]) TeamEncryptionKeyScheduleKeyDeletionDetails._all_fields_ = [] TeamEncryptionKeyScheduleKeyDeletionType.description.validator = bv.String() -TeamEncryptionKeyScheduleKeyDeletionType._all_field_names_ = set(["description"]) -TeamEncryptionKeyScheduleKeyDeletionType._all_fields_ = [ - ("description", TeamEncryptionKeyScheduleKeyDeletionType.description.validator) -] +TeamEncryptionKeyScheduleKeyDeletionType._all_field_names_ = set(['description']) +TeamEncryptionKeyScheduleKeyDeletionType._all_fields_ = [('description', TeamEncryptionKeyScheduleKeyDeletionType.description.validator)] TeamEvent.timestamp.validator = common.DropboxTimestamp_validator TeamEvent.event_category.validator = EventCategory_validator @@ -115807,104 +107812,88 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): TeamEvent.assets.validator = bv.Nullable(bv.List(AssetLogInfo_validator)) TeamEvent.event_type.validator = EventType_validator TeamEvent.details.validator = EventDetails_validator -TeamEvent._all_field_names_ = set( - [ - "timestamp", - "event_category", - "actor", - "origin", - "involve_non_team_member", - "context", - "participants", - "assets", - "event_type", - "details", - ] -) +TeamEvent._all_field_names_ = set([ + 'timestamp', + 'event_category', + 'actor', + 'origin', + 'involve_non_team_member', + 'context', + 'participants', + 'assets', + 'event_type', + 'details', +]) TeamEvent._all_fields_ = [ - ("timestamp", TeamEvent.timestamp.validator), - ("event_category", TeamEvent.event_category.validator), - ("actor", TeamEvent.actor.validator), - ("origin", TeamEvent.origin.validator), - ("involve_non_team_member", TeamEvent.involve_non_team_member.validator), - ("context", TeamEvent.context.validator), - ("participants", TeamEvent.participants.validator), - ("assets", TeamEvent.assets.validator), - ("event_type", TeamEvent.event_type.validator), - ("details", TeamEvent.details.validator), + ('timestamp', TeamEvent.timestamp.validator), + ('event_category', TeamEvent.event_category.validator), + ('actor', TeamEvent.actor.validator), + ('origin', TeamEvent.origin.validator), + ('involve_non_team_member', TeamEvent.involve_non_team_member.validator), + ('context', TeamEvent.context.validator), + ('participants', TeamEvent.participants.validator), + ('assets', TeamEvent.assets.validator), + ('event_type', TeamEvent.event_type.validator), + ('details', TeamEvent.details.validator), ] TeamExtensionsPolicy._disabled_validator = bv.Void() TeamExtensionsPolicy._enabled_validator = bv.Void() TeamExtensionsPolicy._other_validator = bv.Void() TeamExtensionsPolicy._tagmap = { - "disabled": TeamExtensionsPolicy._disabled_validator, - "enabled": TeamExtensionsPolicy._enabled_validator, - "other": TeamExtensionsPolicy._other_validator, + 'disabled': TeamExtensionsPolicy._disabled_validator, + 'enabled': TeamExtensionsPolicy._enabled_validator, + 'other': TeamExtensionsPolicy._other_validator, } -TeamExtensionsPolicy.disabled = TeamExtensionsPolicy("disabled") -TeamExtensionsPolicy.enabled = TeamExtensionsPolicy("enabled") -TeamExtensionsPolicy.other = TeamExtensionsPolicy("other") +TeamExtensionsPolicy.disabled = TeamExtensionsPolicy('disabled') +TeamExtensionsPolicy.enabled = TeamExtensionsPolicy('enabled') +TeamExtensionsPolicy.other = TeamExtensionsPolicy('other') TeamExtensionsPolicyChangedDetails.new_value.validator = TeamExtensionsPolicy_validator TeamExtensionsPolicyChangedDetails.previous_value.validator = TeamExtensionsPolicy_validator -TeamExtensionsPolicyChangedDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +TeamExtensionsPolicyChangedDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) TeamExtensionsPolicyChangedDetails._all_fields_ = [ - ("new_value", TeamExtensionsPolicyChangedDetails.new_value.validator), - ("previous_value", TeamExtensionsPolicyChangedDetails.previous_value.validator), + ('new_value', TeamExtensionsPolicyChangedDetails.new_value.validator), + ('previous_value', TeamExtensionsPolicyChangedDetails.previous_value.validator), ] TeamExtensionsPolicyChangedType.description.validator = bv.String() -TeamExtensionsPolicyChangedType._all_field_names_ = set(["description"]) -TeamExtensionsPolicyChangedType._all_fields_ = [ - ("description", TeamExtensionsPolicyChangedType.description.validator) -] +TeamExtensionsPolicyChangedType._all_field_names_ = set(['description']) +TeamExtensionsPolicyChangedType._all_fields_ = [('description', TeamExtensionsPolicyChangedType.description.validator)] TeamFolderChangeStatusDetails.new_value.validator = team.TeamFolderStatus_validator -TeamFolderChangeStatusDetails.previous_value.validator = bv.Nullable( - team.TeamFolderStatus_validator -) -TeamFolderChangeStatusDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +TeamFolderChangeStatusDetails.previous_value.validator = bv.Nullable(team.TeamFolderStatus_validator) +TeamFolderChangeStatusDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) TeamFolderChangeStatusDetails._all_fields_ = [ - ("new_value", TeamFolderChangeStatusDetails.new_value.validator), - ("previous_value", TeamFolderChangeStatusDetails.previous_value.validator), + ('new_value', TeamFolderChangeStatusDetails.new_value.validator), + ('previous_value', TeamFolderChangeStatusDetails.previous_value.validator), ] TeamFolderChangeStatusType.description.validator = bv.String() -TeamFolderChangeStatusType._all_field_names_ = set(["description"]) -TeamFolderChangeStatusType._all_fields_ = [ - ("description", TeamFolderChangeStatusType.description.validator) -] +TeamFolderChangeStatusType._all_field_names_ = set(['description']) +TeamFolderChangeStatusType._all_fields_ = [('description', TeamFolderChangeStatusType.description.validator)] TeamFolderCreateDetails._all_field_names_ = set([]) TeamFolderCreateDetails._all_fields_ = [] TeamFolderCreateType.description.validator = bv.String() -TeamFolderCreateType._all_field_names_ = set(["description"]) -TeamFolderCreateType._all_fields_ = [("description", TeamFolderCreateType.description.validator)] +TeamFolderCreateType._all_field_names_ = set(['description']) +TeamFolderCreateType._all_fields_ = [('description', TeamFolderCreateType.description.validator)] TeamFolderDowngradeDetails.target_asset_index.validator = bv.UInt64() -TeamFolderDowngradeDetails._all_field_names_ = set(["target_asset_index"]) -TeamFolderDowngradeDetails._all_fields_ = [ - ("target_asset_index", TeamFolderDowngradeDetails.target_asset_index.validator) -] +TeamFolderDowngradeDetails._all_field_names_ = set(['target_asset_index']) +TeamFolderDowngradeDetails._all_fields_ = [('target_asset_index', TeamFolderDowngradeDetails.target_asset_index.validator)] TeamFolderDowngradeType.description.validator = bv.String() -TeamFolderDowngradeType._all_field_names_ = set(["description"]) -TeamFolderDowngradeType._all_fields_ = [ - ("description", TeamFolderDowngradeType.description.validator) -] +TeamFolderDowngradeType._all_field_names_ = set(['description']) +TeamFolderDowngradeType._all_fields_ = [('description', TeamFolderDowngradeType.description.validator)] TeamFolderNotificationTarget._admins_validator = bv.Void() TeamFolderNotificationTarget._both_validator = bv.Void() @@ -115912,214 +107901,150 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): TeamFolderNotificationTarget._silent_validator = bv.Void() TeamFolderNotificationTarget._other_validator = bv.Void() TeamFolderNotificationTarget._tagmap = { - "admins": TeamFolderNotificationTarget._admins_validator, - "both": TeamFolderNotificationTarget._both_validator, - "editors": TeamFolderNotificationTarget._editors_validator, - "silent": TeamFolderNotificationTarget._silent_validator, - "other": TeamFolderNotificationTarget._other_validator, + 'admins': TeamFolderNotificationTarget._admins_validator, + 'both': TeamFolderNotificationTarget._both_validator, + 'editors': TeamFolderNotificationTarget._editors_validator, + 'silent': TeamFolderNotificationTarget._silent_validator, + 'other': TeamFolderNotificationTarget._other_validator, } -TeamFolderNotificationTarget.admins = TeamFolderNotificationTarget("admins") -TeamFolderNotificationTarget.both = TeamFolderNotificationTarget("both") -TeamFolderNotificationTarget.editors = TeamFolderNotificationTarget("editors") -TeamFolderNotificationTarget.silent = TeamFolderNotificationTarget("silent") -TeamFolderNotificationTarget.other = TeamFolderNotificationTarget("other") +TeamFolderNotificationTarget.admins = TeamFolderNotificationTarget('admins') +TeamFolderNotificationTarget.both = TeamFolderNotificationTarget('both') +TeamFolderNotificationTarget.editors = TeamFolderNotificationTarget('editors') +TeamFolderNotificationTarget.silent = TeamFolderNotificationTarget('silent') +TeamFolderNotificationTarget.other = TeamFolderNotificationTarget('other') TeamFolderPermanentlyDeleteDetails._all_field_names_ = set([]) TeamFolderPermanentlyDeleteDetails._all_fields_ = [] TeamFolderPermanentlyDeleteType.description.validator = bv.String() -TeamFolderPermanentlyDeleteType._all_field_names_ = set(["description"]) -TeamFolderPermanentlyDeleteType._all_fields_ = [ - ("description", TeamFolderPermanentlyDeleteType.description.validator) -] +TeamFolderPermanentlyDeleteType._all_field_names_ = set(['description']) +TeamFolderPermanentlyDeleteType._all_fields_ = [('description', TeamFolderPermanentlyDeleteType.description.validator)] TeamFolderRenameDetails.previous_folder_name.validator = bv.String() TeamFolderRenameDetails.new_folder_name.validator = bv.String() -TeamFolderRenameDetails._all_field_names_ = set( - [ - "previous_folder_name", - "new_folder_name", - ] -) +TeamFolderRenameDetails._all_field_names_ = set([ + 'previous_folder_name', + 'new_folder_name', +]) TeamFolderRenameDetails._all_fields_ = [ - ("previous_folder_name", TeamFolderRenameDetails.previous_folder_name.validator), - ("new_folder_name", TeamFolderRenameDetails.new_folder_name.validator), + ('previous_folder_name', TeamFolderRenameDetails.previous_folder_name.validator), + ('new_folder_name', TeamFolderRenameDetails.new_folder_name.validator), ] TeamFolderRenameType.description.validator = bv.String() -TeamFolderRenameType._all_field_names_ = set(["description"]) -TeamFolderRenameType._all_fields_ = [("description", TeamFolderRenameType.description.validator)] +TeamFolderRenameType._all_field_names_ = set(['description']) +TeamFolderRenameType._all_fields_ = [('description', TeamFolderRenameType.description.validator)] TeamFolderSpaceCapsType._hard_validator = bv.Void() TeamFolderSpaceCapsType._off_validator = bv.Void() TeamFolderSpaceCapsType._soft_validator = bv.Void() TeamFolderSpaceCapsType._other_validator = bv.Void() TeamFolderSpaceCapsType._tagmap = { - "hard": TeamFolderSpaceCapsType._hard_validator, - "off": TeamFolderSpaceCapsType._off_validator, - "soft": TeamFolderSpaceCapsType._soft_validator, - "other": TeamFolderSpaceCapsType._other_validator, + 'hard': TeamFolderSpaceCapsType._hard_validator, + 'off': TeamFolderSpaceCapsType._off_validator, + 'soft': TeamFolderSpaceCapsType._soft_validator, + 'other': TeamFolderSpaceCapsType._other_validator, } -TeamFolderSpaceCapsType.hard = TeamFolderSpaceCapsType("hard") -TeamFolderSpaceCapsType.off = TeamFolderSpaceCapsType("off") -TeamFolderSpaceCapsType.soft = TeamFolderSpaceCapsType("soft") -TeamFolderSpaceCapsType.other = TeamFolderSpaceCapsType("other") - -TeamFolderSpaceLimitsChangeCapsTypeDetails.previous_caps_type.validator = bv.Nullable( - TeamFolderSpaceCapsType_validator -) -TeamFolderSpaceLimitsChangeCapsTypeDetails.new_caps_type.validator = ( - TeamFolderSpaceCapsType_validator -) -TeamFolderSpaceLimitsChangeCapsTypeDetails._all_field_names_ = set( - [ - "previous_caps_type", - "new_caps_type", - ] -) +TeamFolderSpaceCapsType.hard = TeamFolderSpaceCapsType('hard') +TeamFolderSpaceCapsType.off = TeamFolderSpaceCapsType('off') +TeamFolderSpaceCapsType.soft = TeamFolderSpaceCapsType('soft') +TeamFolderSpaceCapsType.other = TeamFolderSpaceCapsType('other') + +TeamFolderSpaceLimitsChangeCapsTypeDetails.previous_caps_type.validator = bv.Nullable(TeamFolderSpaceCapsType_validator) +TeamFolderSpaceLimitsChangeCapsTypeDetails.new_caps_type.validator = TeamFolderSpaceCapsType_validator +TeamFolderSpaceLimitsChangeCapsTypeDetails._all_field_names_ = set([ + 'previous_caps_type', + 'new_caps_type', +]) TeamFolderSpaceLimitsChangeCapsTypeDetails._all_fields_ = [ - ( - "previous_caps_type", - TeamFolderSpaceLimitsChangeCapsTypeDetails.previous_caps_type.validator, - ), - ( - "new_caps_type", - TeamFolderSpaceLimitsChangeCapsTypeDetails.new_caps_type.validator, - ), + ('previous_caps_type', TeamFolderSpaceLimitsChangeCapsTypeDetails.previous_caps_type.validator), + ('new_caps_type', TeamFolderSpaceLimitsChangeCapsTypeDetails.new_caps_type.validator), ] TeamFolderSpaceLimitsChangeCapsTypeType.description.validator = bv.String() -TeamFolderSpaceLimitsChangeCapsTypeType._all_field_names_ = set(["description"]) -TeamFolderSpaceLimitsChangeCapsTypeType._all_fields_ = [ - ("description", TeamFolderSpaceLimitsChangeCapsTypeType.description.validator) -] +TeamFolderSpaceLimitsChangeCapsTypeType._all_field_names_ = set(['description']) +TeamFolderSpaceLimitsChangeCapsTypeType._all_fields_ = [('description', TeamFolderSpaceLimitsChangeCapsTypeType.description.validator)] TeamFolderSpaceLimitsChangeLimitDetails.previous_limit_bytes.validator = bv.Nullable(bv.Int64()) TeamFolderSpaceLimitsChangeLimitDetails.new_limit_bytes.validator = bv.Int64() -TeamFolderSpaceLimitsChangeLimitDetails._all_field_names_ = set( - [ - "previous_limit_bytes", - "new_limit_bytes", - ] -) +TeamFolderSpaceLimitsChangeLimitDetails._all_field_names_ = set([ + 'previous_limit_bytes', + 'new_limit_bytes', +]) TeamFolderSpaceLimitsChangeLimitDetails._all_fields_ = [ - ( - "previous_limit_bytes", - TeamFolderSpaceLimitsChangeLimitDetails.previous_limit_bytes.validator, - ), - ( - "new_limit_bytes", - TeamFolderSpaceLimitsChangeLimitDetails.new_limit_bytes.validator, - ), + ('previous_limit_bytes', TeamFolderSpaceLimitsChangeLimitDetails.previous_limit_bytes.validator), + ('new_limit_bytes', TeamFolderSpaceLimitsChangeLimitDetails.new_limit_bytes.validator), ] TeamFolderSpaceLimitsChangeLimitType.description.validator = bv.String() -TeamFolderSpaceLimitsChangeLimitType._all_field_names_ = set(["description"]) -TeamFolderSpaceLimitsChangeLimitType._all_fields_ = [ - ("description", TeamFolderSpaceLimitsChangeLimitType.description.validator) -] - -TeamFolderSpaceLimitsChangeNotificationTargetDetails.previous_target.validator = bv.Nullable( - TeamFolderNotificationTarget_validator -) -TeamFolderSpaceLimitsChangeNotificationTargetDetails.new_target.validator = ( - TeamFolderNotificationTarget_validator -) -TeamFolderSpaceLimitsChangeNotificationTargetDetails._all_field_names_ = set( - [ - "previous_target", - "new_target", - ] -) +TeamFolderSpaceLimitsChangeLimitType._all_field_names_ = set(['description']) +TeamFolderSpaceLimitsChangeLimitType._all_fields_ = [('description', TeamFolderSpaceLimitsChangeLimitType.description.validator)] + +TeamFolderSpaceLimitsChangeNotificationTargetDetails.previous_target.validator = bv.Nullable(TeamFolderNotificationTarget_validator) +TeamFolderSpaceLimitsChangeNotificationTargetDetails.new_target.validator = TeamFolderNotificationTarget_validator +TeamFolderSpaceLimitsChangeNotificationTargetDetails._all_field_names_ = set([ + 'previous_target', + 'new_target', +]) TeamFolderSpaceLimitsChangeNotificationTargetDetails._all_fields_ = [ - ( - "previous_target", - TeamFolderSpaceLimitsChangeNotificationTargetDetails.previous_target.validator, - ), - ( - "new_target", - TeamFolderSpaceLimitsChangeNotificationTargetDetails.new_target.validator, - ), + ('previous_target', TeamFolderSpaceLimitsChangeNotificationTargetDetails.previous_target.validator), + ('new_target', TeamFolderSpaceLimitsChangeNotificationTargetDetails.new_target.validator), ] TeamFolderSpaceLimitsChangeNotificationTargetType.description.validator = bv.String() -TeamFolderSpaceLimitsChangeNotificationTargetType._all_field_names_ = set(["description"]) -TeamFolderSpaceLimitsChangeNotificationTargetType._all_fields_ = [ - ( - "description", - TeamFolderSpaceLimitsChangeNotificationTargetType.description.validator, - ) -] +TeamFolderSpaceLimitsChangeNotificationTargetType._all_field_names_ = set(['description']) +TeamFolderSpaceLimitsChangeNotificationTargetType._all_fields_ = [('description', TeamFolderSpaceLimitsChangeNotificationTargetType.description.validator)] TeamFoldersCreateReportDetails._all_field_names_ = set([]) TeamFoldersCreateReportDetails._all_fields_ = [] -TeamFoldersCreateReportFailedDetails.failure_reason.validator = ( - team.TeamReportFailureReason_validator -) -TeamFoldersCreateReportFailedDetails._all_field_names_ = set(["failure_reason"]) -TeamFoldersCreateReportFailedDetails._all_fields_ = [ - ("failure_reason", TeamFoldersCreateReportFailedDetails.failure_reason.validator) -] +TeamFoldersCreateReportFailedDetails.failure_reason.validator = team.TeamReportFailureReason_validator +TeamFoldersCreateReportFailedDetails._all_field_names_ = set(['failure_reason']) +TeamFoldersCreateReportFailedDetails._all_fields_ = [('failure_reason', TeamFoldersCreateReportFailedDetails.failure_reason.validator)] TeamFoldersCreateReportFailedType.description.validator = bv.String() -TeamFoldersCreateReportFailedType._all_field_names_ = set(["description"]) -TeamFoldersCreateReportFailedType._all_fields_ = [ - ("description", TeamFoldersCreateReportFailedType.description.validator) -] +TeamFoldersCreateReportFailedType._all_field_names_ = set(['description']) +TeamFoldersCreateReportFailedType._all_fields_ = [('description', TeamFoldersCreateReportFailedType.description.validator)] TeamFoldersCreateReportType.description.validator = bv.String() -TeamFoldersCreateReportType._all_field_names_ = set(["description"]) -TeamFoldersCreateReportType._all_fields_ = [ - ("description", TeamFoldersCreateReportType.description.validator) -] +TeamFoldersCreateReportType._all_field_names_ = set(['description']) +TeamFoldersCreateReportType._all_fields_ = [('description', TeamFoldersCreateReportType.description.validator)] TeamInviteDetails.invite_method.validator = InviteMethod_validator TeamInviteDetails.additional_license_purchase.validator = bv.Nullable(bv.Boolean()) -TeamInviteDetails._all_field_names_ = set( - [ - "invite_method", - "additional_license_purchase", - ] -) +TeamInviteDetails._all_field_names_ = set([ + 'invite_method', + 'additional_license_purchase', +]) TeamInviteDetails._all_fields_ = [ - ("invite_method", TeamInviteDetails.invite_method.validator), - ( - "additional_license_purchase", - TeamInviteDetails.additional_license_purchase.validator, - ), + ('invite_method', TeamInviteDetails.invite_method.validator), + ('additional_license_purchase', TeamInviteDetails.additional_license_purchase.validator), ] TeamLinkedAppLogInfo._field_names_ = set([]) -TeamLinkedAppLogInfo._all_field_names_ = AppLogInfo._all_field_names_.union( - TeamLinkedAppLogInfo._field_names_ -) +TeamLinkedAppLogInfo._all_field_names_ = AppLogInfo._all_field_names_.union(TeamLinkedAppLogInfo._field_names_) TeamLinkedAppLogInfo._fields_ = [] TeamLinkedAppLogInfo._all_fields_ = AppLogInfo._all_fields_ + TeamLinkedAppLogInfo._fields_ TeamLogInfo.display_name.validator = bv.String() -TeamLogInfo._all_field_names_ = set(["display_name"]) -TeamLogInfo._all_fields_ = [("display_name", TeamLogInfo.display_name.validator)] +TeamLogInfo._all_field_names_ = set(['display_name']) +TeamLogInfo._all_fields_ = [('display_name', TeamLogInfo.display_name.validator)] TeamMemberLogInfo.team_member_id.validator = bv.Nullable(team_common.TeamMemberId_validator) TeamMemberLogInfo.member_external_id.validator = bv.Nullable(team_common.MemberExternalId_validator) TeamMemberLogInfo.team.validator = bv.Nullable(TeamLogInfo_validator) -TeamMemberLogInfo._field_names_ = set( - [ - "team_member_id", - "member_external_id", - "team", - ] -) -TeamMemberLogInfo._all_field_names_ = UserLogInfo._all_field_names_.union( - TeamMemberLogInfo._field_names_ -) +TeamMemberLogInfo._field_names_ = set([ + 'team_member_id', + 'member_external_id', + 'team', +]) +TeamMemberLogInfo._all_field_names_ = UserLogInfo._all_field_names_.union(TeamMemberLogInfo._field_names_) TeamMemberLogInfo._fields_ = [ - ("team_member_id", TeamMemberLogInfo.team_member_id.validator), - ("member_external_id", TeamMemberLogInfo.member_external_id.validator), - ("team", TeamMemberLogInfo.team.validator), + ('team_member_id', TeamMemberLogInfo.team_member_id.validator), + ('member_external_id', TeamMemberLogInfo.member_external_id.validator), + ('team', TeamMemberLogInfo.team.validator), ] TeamMemberLogInfo._all_fields_ = UserLogInfo._all_fields_ + TeamMemberLogInfo._fields_ @@ -116128,755 +108053,524 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): TeamMemberStorageRequestPolicy._enabled_validator = bv.Void() TeamMemberStorageRequestPolicy._other_validator = bv.Void() TeamMemberStorageRequestPolicy._tagmap = { - "default": TeamMemberStorageRequestPolicy._default_validator, - "disabled": TeamMemberStorageRequestPolicy._disabled_validator, - "enabled": TeamMemberStorageRequestPolicy._enabled_validator, - "other": TeamMemberStorageRequestPolicy._other_validator, + 'default': TeamMemberStorageRequestPolicy._default_validator, + 'disabled': TeamMemberStorageRequestPolicy._disabled_validator, + 'enabled': TeamMemberStorageRequestPolicy._enabled_validator, + 'other': TeamMemberStorageRequestPolicy._other_validator, } -TeamMemberStorageRequestPolicy.default = TeamMemberStorageRequestPolicy("default") -TeamMemberStorageRequestPolicy.disabled = TeamMemberStorageRequestPolicy("disabled") -TeamMemberStorageRequestPolicy.enabled = TeamMemberStorageRequestPolicy("enabled") -TeamMemberStorageRequestPolicy.other = TeamMemberStorageRequestPolicy("other") - -TeamMemberStorageRequestPolicyChangedDetails.new_value.validator = ( - TeamMemberStorageRequestPolicy_validator -) -TeamMemberStorageRequestPolicyChangedDetails.previous_value.validator = bv.Nullable( - TeamMemberStorageRequestPolicy_validator -) -TeamMemberStorageRequestPolicyChangedDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +TeamMemberStorageRequestPolicy.default = TeamMemberStorageRequestPolicy('default') +TeamMemberStorageRequestPolicy.disabled = TeamMemberStorageRequestPolicy('disabled') +TeamMemberStorageRequestPolicy.enabled = TeamMemberStorageRequestPolicy('enabled') +TeamMemberStorageRequestPolicy.other = TeamMemberStorageRequestPolicy('other') + +TeamMemberStorageRequestPolicyChangedDetails.new_value.validator = TeamMemberStorageRequestPolicy_validator +TeamMemberStorageRequestPolicyChangedDetails.previous_value.validator = bv.Nullable(TeamMemberStorageRequestPolicy_validator) +TeamMemberStorageRequestPolicyChangedDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) TeamMemberStorageRequestPolicyChangedDetails._all_fields_ = [ - ("new_value", TeamMemberStorageRequestPolicyChangedDetails.new_value.validator), - ( - "previous_value", - TeamMemberStorageRequestPolicyChangedDetails.previous_value.validator, - ), + ('new_value', TeamMemberStorageRequestPolicyChangedDetails.new_value.validator), + ('previous_value', TeamMemberStorageRequestPolicyChangedDetails.previous_value.validator), ] TeamMemberStorageRequestPolicyChangedType.description.validator = bv.String() -TeamMemberStorageRequestPolicyChangedType._all_field_names_ = set(["description"]) -TeamMemberStorageRequestPolicyChangedType._all_fields_ = [ - ("description", TeamMemberStorageRequestPolicyChangedType.description.validator) -] +TeamMemberStorageRequestPolicyChangedType._all_field_names_ = set(['description']) +TeamMemberStorageRequestPolicyChangedType._all_fields_ = [('description', TeamMemberStorageRequestPolicyChangedType.description.validator)] TeamMembershipType._free_validator = bv.Void() TeamMembershipType._full_validator = bv.Void() TeamMembershipType._guest_validator = bv.Void() TeamMembershipType._other_validator = bv.Void() TeamMembershipType._tagmap = { - "free": TeamMembershipType._free_validator, - "full": TeamMembershipType._full_validator, - "guest": TeamMembershipType._guest_validator, - "other": TeamMembershipType._other_validator, + 'free': TeamMembershipType._free_validator, + 'full': TeamMembershipType._full_validator, + 'guest': TeamMembershipType._guest_validator, + 'other': TeamMembershipType._other_validator, } -TeamMembershipType.free = TeamMembershipType("free") -TeamMembershipType.full = TeamMembershipType("full") -TeamMembershipType.guest = TeamMembershipType("guest") -TeamMembershipType.other = TeamMembershipType("other") +TeamMembershipType.free = TeamMembershipType('free') +TeamMembershipType.full = TeamMembershipType('full') +TeamMembershipType.guest = TeamMembershipType('guest') +TeamMembershipType.other = TeamMembershipType('other') TeamMergeFromDetails.team_name.validator = bv.String() -TeamMergeFromDetails._all_field_names_ = set(["team_name"]) -TeamMergeFromDetails._all_fields_ = [("team_name", TeamMergeFromDetails.team_name.validator)] +TeamMergeFromDetails._all_field_names_ = set(['team_name']) +TeamMergeFromDetails._all_fields_ = [('team_name', TeamMergeFromDetails.team_name.validator)] TeamMergeFromType.description.validator = bv.String() -TeamMergeFromType._all_field_names_ = set(["description"]) -TeamMergeFromType._all_fields_ = [("description", TeamMergeFromType.description.validator)] +TeamMergeFromType._all_field_names_ = set(['description']) +TeamMergeFromType._all_fields_ = [('description', TeamMergeFromType.description.validator)] -TeamMergeRequestAcceptedDetails.request_accepted_details.validator = ( - TeamMergeRequestAcceptedExtraDetails_validator -) -TeamMergeRequestAcceptedDetails._all_field_names_ = set(["request_accepted_details"]) -TeamMergeRequestAcceptedDetails._all_fields_ = [ - ( - "request_accepted_details", - TeamMergeRequestAcceptedDetails.request_accepted_details.validator, - ) -] +TeamMergeRequestAcceptedDetails.request_accepted_details.validator = TeamMergeRequestAcceptedExtraDetails_validator +TeamMergeRequestAcceptedDetails._all_field_names_ = set(['request_accepted_details']) +TeamMergeRequestAcceptedDetails._all_fields_ = [('request_accepted_details', TeamMergeRequestAcceptedDetails.request_accepted_details.validator)] -TeamMergeRequestAcceptedExtraDetails._primary_team_validator = ( - PrimaryTeamRequestAcceptedDetails_validator -) -TeamMergeRequestAcceptedExtraDetails._secondary_team_validator = ( - SecondaryTeamRequestAcceptedDetails_validator -) +TeamMergeRequestAcceptedExtraDetails._primary_team_validator = PrimaryTeamRequestAcceptedDetails_validator +TeamMergeRequestAcceptedExtraDetails._secondary_team_validator = SecondaryTeamRequestAcceptedDetails_validator TeamMergeRequestAcceptedExtraDetails._other_validator = bv.Void() TeamMergeRequestAcceptedExtraDetails._tagmap = { - "primary_team": TeamMergeRequestAcceptedExtraDetails._primary_team_validator, - "secondary_team": TeamMergeRequestAcceptedExtraDetails._secondary_team_validator, - "other": TeamMergeRequestAcceptedExtraDetails._other_validator, + 'primary_team': TeamMergeRequestAcceptedExtraDetails._primary_team_validator, + 'secondary_team': TeamMergeRequestAcceptedExtraDetails._secondary_team_validator, + 'other': TeamMergeRequestAcceptedExtraDetails._other_validator, } -TeamMergeRequestAcceptedExtraDetails.other = TeamMergeRequestAcceptedExtraDetails("other") +TeamMergeRequestAcceptedExtraDetails.other = TeamMergeRequestAcceptedExtraDetails('other') TeamMergeRequestAcceptedShownToPrimaryTeamDetails.secondary_team.validator = bv.String() TeamMergeRequestAcceptedShownToPrimaryTeamDetails.sent_by.validator = bv.String() -TeamMergeRequestAcceptedShownToPrimaryTeamDetails._all_field_names_ = set( - [ - "secondary_team", - "sent_by", - ] -) +TeamMergeRequestAcceptedShownToPrimaryTeamDetails._all_field_names_ = set([ + 'secondary_team', + 'sent_by', +]) TeamMergeRequestAcceptedShownToPrimaryTeamDetails._all_fields_ = [ - ( - "secondary_team", - TeamMergeRequestAcceptedShownToPrimaryTeamDetails.secondary_team.validator, - ), - ("sent_by", TeamMergeRequestAcceptedShownToPrimaryTeamDetails.sent_by.validator), + ('secondary_team', TeamMergeRequestAcceptedShownToPrimaryTeamDetails.secondary_team.validator), + ('sent_by', TeamMergeRequestAcceptedShownToPrimaryTeamDetails.sent_by.validator), ] TeamMergeRequestAcceptedShownToPrimaryTeamType.description.validator = bv.String() -TeamMergeRequestAcceptedShownToPrimaryTeamType._all_field_names_ = set(["description"]) -TeamMergeRequestAcceptedShownToPrimaryTeamType._all_fields_ = [ - ( - "description", - TeamMergeRequestAcceptedShownToPrimaryTeamType.description.validator, - ) -] +TeamMergeRequestAcceptedShownToPrimaryTeamType._all_field_names_ = set(['description']) +TeamMergeRequestAcceptedShownToPrimaryTeamType._all_fields_ = [('description', TeamMergeRequestAcceptedShownToPrimaryTeamType.description.validator)] TeamMergeRequestAcceptedShownToSecondaryTeamDetails.primary_team.validator = bv.String() TeamMergeRequestAcceptedShownToSecondaryTeamDetails.sent_by.validator = bv.String() -TeamMergeRequestAcceptedShownToSecondaryTeamDetails._all_field_names_ = set( - [ - "primary_team", - "sent_by", - ] -) +TeamMergeRequestAcceptedShownToSecondaryTeamDetails._all_field_names_ = set([ + 'primary_team', + 'sent_by', +]) TeamMergeRequestAcceptedShownToSecondaryTeamDetails._all_fields_ = [ - ( - "primary_team", - TeamMergeRequestAcceptedShownToSecondaryTeamDetails.primary_team.validator, - ), - ("sent_by", TeamMergeRequestAcceptedShownToSecondaryTeamDetails.sent_by.validator), + ('primary_team', TeamMergeRequestAcceptedShownToSecondaryTeamDetails.primary_team.validator), + ('sent_by', TeamMergeRequestAcceptedShownToSecondaryTeamDetails.sent_by.validator), ] TeamMergeRequestAcceptedShownToSecondaryTeamType.description.validator = bv.String() -TeamMergeRequestAcceptedShownToSecondaryTeamType._all_field_names_ = set(["description"]) -TeamMergeRequestAcceptedShownToSecondaryTeamType._all_fields_ = [ - ( - "description", - TeamMergeRequestAcceptedShownToSecondaryTeamType.description.validator, - ) -] +TeamMergeRequestAcceptedShownToSecondaryTeamType._all_field_names_ = set(['description']) +TeamMergeRequestAcceptedShownToSecondaryTeamType._all_fields_ = [('description', TeamMergeRequestAcceptedShownToSecondaryTeamType.description.validator)] TeamMergeRequestAcceptedType.description.validator = bv.String() -TeamMergeRequestAcceptedType._all_field_names_ = set(["description"]) -TeamMergeRequestAcceptedType._all_fields_ = [ - ("description", TeamMergeRequestAcceptedType.description.validator) -] +TeamMergeRequestAcceptedType._all_field_names_ = set(['description']) +TeamMergeRequestAcceptedType._all_fields_ = [('description', TeamMergeRequestAcceptedType.description.validator)] TeamMergeRequestAutoCanceledDetails.details.validator = bv.Nullable(bv.String()) -TeamMergeRequestAutoCanceledDetails._all_field_names_ = set(["details"]) -TeamMergeRequestAutoCanceledDetails._all_fields_ = [ - ("details", TeamMergeRequestAutoCanceledDetails.details.validator) -] +TeamMergeRequestAutoCanceledDetails._all_field_names_ = set(['details']) +TeamMergeRequestAutoCanceledDetails._all_fields_ = [('details', TeamMergeRequestAutoCanceledDetails.details.validator)] TeamMergeRequestAutoCanceledType.description.validator = bv.String() -TeamMergeRequestAutoCanceledType._all_field_names_ = set(["description"]) -TeamMergeRequestAutoCanceledType._all_fields_ = [ - ("description", TeamMergeRequestAutoCanceledType.description.validator) -] +TeamMergeRequestAutoCanceledType._all_field_names_ = set(['description']) +TeamMergeRequestAutoCanceledType._all_fields_ = [('description', TeamMergeRequestAutoCanceledType.description.validator)] -TeamMergeRequestCanceledDetails.request_canceled_details.validator = ( - TeamMergeRequestCanceledExtraDetails_validator -) -TeamMergeRequestCanceledDetails._all_field_names_ = set(["request_canceled_details"]) -TeamMergeRequestCanceledDetails._all_fields_ = [ - ( - "request_canceled_details", - TeamMergeRequestCanceledDetails.request_canceled_details.validator, - ) -] +TeamMergeRequestCanceledDetails.request_canceled_details.validator = TeamMergeRequestCanceledExtraDetails_validator +TeamMergeRequestCanceledDetails._all_field_names_ = set(['request_canceled_details']) +TeamMergeRequestCanceledDetails._all_fields_ = [('request_canceled_details', TeamMergeRequestCanceledDetails.request_canceled_details.validator)] -TeamMergeRequestCanceledExtraDetails._primary_team_validator = ( - PrimaryTeamRequestCanceledDetails_validator -) -TeamMergeRequestCanceledExtraDetails._secondary_team_validator = ( - SecondaryTeamRequestCanceledDetails_validator -) +TeamMergeRequestCanceledExtraDetails._primary_team_validator = PrimaryTeamRequestCanceledDetails_validator +TeamMergeRequestCanceledExtraDetails._secondary_team_validator = SecondaryTeamRequestCanceledDetails_validator TeamMergeRequestCanceledExtraDetails._other_validator = bv.Void() TeamMergeRequestCanceledExtraDetails._tagmap = { - "primary_team": TeamMergeRequestCanceledExtraDetails._primary_team_validator, - "secondary_team": TeamMergeRequestCanceledExtraDetails._secondary_team_validator, - "other": TeamMergeRequestCanceledExtraDetails._other_validator, + 'primary_team': TeamMergeRequestCanceledExtraDetails._primary_team_validator, + 'secondary_team': TeamMergeRequestCanceledExtraDetails._secondary_team_validator, + 'other': TeamMergeRequestCanceledExtraDetails._other_validator, } -TeamMergeRequestCanceledExtraDetails.other = TeamMergeRequestCanceledExtraDetails("other") +TeamMergeRequestCanceledExtraDetails.other = TeamMergeRequestCanceledExtraDetails('other') TeamMergeRequestCanceledShownToPrimaryTeamDetails.secondary_team.validator = bv.String() TeamMergeRequestCanceledShownToPrimaryTeamDetails.sent_by.validator = bv.String() -TeamMergeRequestCanceledShownToPrimaryTeamDetails._all_field_names_ = set( - [ - "secondary_team", - "sent_by", - ] -) +TeamMergeRequestCanceledShownToPrimaryTeamDetails._all_field_names_ = set([ + 'secondary_team', + 'sent_by', +]) TeamMergeRequestCanceledShownToPrimaryTeamDetails._all_fields_ = [ - ( - "secondary_team", - TeamMergeRequestCanceledShownToPrimaryTeamDetails.secondary_team.validator, - ), - ("sent_by", TeamMergeRequestCanceledShownToPrimaryTeamDetails.sent_by.validator), + ('secondary_team', TeamMergeRequestCanceledShownToPrimaryTeamDetails.secondary_team.validator), + ('sent_by', TeamMergeRequestCanceledShownToPrimaryTeamDetails.sent_by.validator), ] TeamMergeRequestCanceledShownToPrimaryTeamType.description.validator = bv.String() -TeamMergeRequestCanceledShownToPrimaryTeamType._all_field_names_ = set(["description"]) -TeamMergeRequestCanceledShownToPrimaryTeamType._all_fields_ = [ - ( - "description", - TeamMergeRequestCanceledShownToPrimaryTeamType.description.validator, - ) -] +TeamMergeRequestCanceledShownToPrimaryTeamType._all_field_names_ = set(['description']) +TeamMergeRequestCanceledShownToPrimaryTeamType._all_fields_ = [('description', TeamMergeRequestCanceledShownToPrimaryTeamType.description.validator)] TeamMergeRequestCanceledShownToSecondaryTeamDetails.sent_to.validator = bv.String() TeamMergeRequestCanceledShownToSecondaryTeamDetails.sent_by.validator = bv.String() -TeamMergeRequestCanceledShownToSecondaryTeamDetails._all_field_names_ = set( - [ - "sent_to", - "sent_by", - ] -) +TeamMergeRequestCanceledShownToSecondaryTeamDetails._all_field_names_ = set([ + 'sent_to', + 'sent_by', +]) TeamMergeRequestCanceledShownToSecondaryTeamDetails._all_fields_ = [ - ("sent_to", TeamMergeRequestCanceledShownToSecondaryTeamDetails.sent_to.validator), - ("sent_by", TeamMergeRequestCanceledShownToSecondaryTeamDetails.sent_by.validator), + ('sent_to', TeamMergeRequestCanceledShownToSecondaryTeamDetails.sent_to.validator), + ('sent_by', TeamMergeRequestCanceledShownToSecondaryTeamDetails.sent_by.validator), ] TeamMergeRequestCanceledShownToSecondaryTeamType.description.validator = bv.String() -TeamMergeRequestCanceledShownToSecondaryTeamType._all_field_names_ = set(["description"]) -TeamMergeRequestCanceledShownToSecondaryTeamType._all_fields_ = [ - ( - "description", - TeamMergeRequestCanceledShownToSecondaryTeamType.description.validator, - ) -] +TeamMergeRequestCanceledShownToSecondaryTeamType._all_field_names_ = set(['description']) +TeamMergeRequestCanceledShownToSecondaryTeamType._all_fields_ = [('description', TeamMergeRequestCanceledShownToSecondaryTeamType.description.validator)] TeamMergeRequestCanceledType.description.validator = bv.String() -TeamMergeRequestCanceledType._all_field_names_ = set(["description"]) -TeamMergeRequestCanceledType._all_fields_ = [ - ("description", TeamMergeRequestCanceledType.description.validator) -] +TeamMergeRequestCanceledType._all_field_names_ = set(['description']) +TeamMergeRequestCanceledType._all_fields_ = [('description', TeamMergeRequestCanceledType.description.validator)] -TeamMergeRequestExpiredDetails.request_expired_details.validator = ( - TeamMergeRequestExpiredExtraDetails_validator -) -TeamMergeRequestExpiredDetails._all_field_names_ = set(["request_expired_details"]) -TeamMergeRequestExpiredDetails._all_fields_ = [ - ( - "request_expired_details", - TeamMergeRequestExpiredDetails.request_expired_details.validator, - ) -] +TeamMergeRequestExpiredDetails.request_expired_details.validator = TeamMergeRequestExpiredExtraDetails_validator +TeamMergeRequestExpiredDetails._all_field_names_ = set(['request_expired_details']) +TeamMergeRequestExpiredDetails._all_fields_ = [('request_expired_details', TeamMergeRequestExpiredDetails.request_expired_details.validator)] -TeamMergeRequestExpiredExtraDetails._primary_team_validator = ( - PrimaryTeamRequestExpiredDetails_validator -) -TeamMergeRequestExpiredExtraDetails._secondary_team_validator = ( - SecondaryTeamRequestExpiredDetails_validator -) +TeamMergeRequestExpiredExtraDetails._primary_team_validator = PrimaryTeamRequestExpiredDetails_validator +TeamMergeRequestExpiredExtraDetails._secondary_team_validator = SecondaryTeamRequestExpiredDetails_validator TeamMergeRequestExpiredExtraDetails._other_validator = bv.Void() TeamMergeRequestExpiredExtraDetails._tagmap = { - "primary_team": TeamMergeRequestExpiredExtraDetails._primary_team_validator, - "secondary_team": TeamMergeRequestExpiredExtraDetails._secondary_team_validator, - "other": TeamMergeRequestExpiredExtraDetails._other_validator, + 'primary_team': TeamMergeRequestExpiredExtraDetails._primary_team_validator, + 'secondary_team': TeamMergeRequestExpiredExtraDetails._secondary_team_validator, + 'other': TeamMergeRequestExpiredExtraDetails._other_validator, } -TeamMergeRequestExpiredExtraDetails.other = TeamMergeRequestExpiredExtraDetails("other") +TeamMergeRequestExpiredExtraDetails.other = TeamMergeRequestExpiredExtraDetails('other') TeamMergeRequestExpiredShownToPrimaryTeamDetails.secondary_team.validator = bv.String() TeamMergeRequestExpiredShownToPrimaryTeamDetails.sent_by.validator = bv.String() -TeamMergeRequestExpiredShownToPrimaryTeamDetails._all_field_names_ = set( - [ - "secondary_team", - "sent_by", - ] -) +TeamMergeRequestExpiredShownToPrimaryTeamDetails._all_field_names_ = set([ + 'secondary_team', + 'sent_by', +]) TeamMergeRequestExpiredShownToPrimaryTeamDetails._all_fields_ = [ - ( - "secondary_team", - TeamMergeRequestExpiredShownToPrimaryTeamDetails.secondary_team.validator, - ), - ("sent_by", TeamMergeRequestExpiredShownToPrimaryTeamDetails.sent_by.validator), + ('secondary_team', TeamMergeRequestExpiredShownToPrimaryTeamDetails.secondary_team.validator), + ('sent_by', TeamMergeRequestExpiredShownToPrimaryTeamDetails.sent_by.validator), ] TeamMergeRequestExpiredShownToPrimaryTeamType.description.validator = bv.String() -TeamMergeRequestExpiredShownToPrimaryTeamType._all_field_names_ = set(["description"]) -TeamMergeRequestExpiredShownToPrimaryTeamType._all_fields_ = [ - ("description", TeamMergeRequestExpiredShownToPrimaryTeamType.description.validator) -] +TeamMergeRequestExpiredShownToPrimaryTeamType._all_field_names_ = set(['description']) +TeamMergeRequestExpiredShownToPrimaryTeamType._all_fields_ = [('description', TeamMergeRequestExpiredShownToPrimaryTeamType.description.validator)] TeamMergeRequestExpiredShownToSecondaryTeamDetails.sent_to.validator = bv.String() -TeamMergeRequestExpiredShownToSecondaryTeamDetails._all_field_names_ = set(["sent_to"]) -TeamMergeRequestExpiredShownToSecondaryTeamDetails._all_fields_ = [ - ("sent_to", TeamMergeRequestExpiredShownToSecondaryTeamDetails.sent_to.validator) -] +TeamMergeRequestExpiredShownToSecondaryTeamDetails._all_field_names_ = set(['sent_to']) +TeamMergeRequestExpiredShownToSecondaryTeamDetails._all_fields_ = [('sent_to', TeamMergeRequestExpiredShownToSecondaryTeamDetails.sent_to.validator)] TeamMergeRequestExpiredShownToSecondaryTeamType.description.validator = bv.String() -TeamMergeRequestExpiredShownToSecondaryTeamType._all_field_names_ = set(["description"]) -TeamMergeRequestExpiredShownToSecondaryTeamType._all_fields_ = [ - ( - "description", - TeamMergeRequestExpiredShownToSecondaryTeamType.description.validator, - ) -] +TeamMergeRequestExpiredShownToSecondaryTeamType._all_field_names_ = set(['description']) +TeamMergeRequestExpiredShownToSecondaryTeamType._all_fields_ = [('description', TeamMergeRequestExpiredShownToSecondaryTeamType.description.validator)] TeamMergeRequestExpiredType.description.validator = bv.String() -TeamMergeRequestExpiredType._all_field_names_ = set(["description"]) -TeamMergeRequestExpiredType._all_fields_ = [ - ("description", TeamMergeRequestExpiredType.description.validator) -] +TeamMergeRequestExpiredType._all_field_names_ = set(['description']) +TeamMergeRequestExpiredType._all_fields_ = [('description', TeamMergeRequestExpiredType.description.validator)] TeamMergeRequestRejectedShownToPrimaryTeamDetails.secondary_team.validator = bv.String() TeamMergeRequestRejectedShownToPrimaryTeamDetails.sent_by.validator = bv.String() -TeamMergeRequestRejectedShownToPrimaryTeamDetails._all_field_names_ = set( - [ - "secondary_team", - "sent_by", - ] -) +TeamMergeRequestRejectedShownToPrimaryTeamDetails._all_field_names_ = set([ + 'secondary_team', + 'sent_by', +]) TeamMergeRequestRejectedShownToPrimaryTeamDetails._all_fields_ = [ - ( - "secondary_team", - TeamMergeRequestRejectedShownToPrimaryTeamDetails.secondary_team.validator, - ), - ("sent_by", TeamMergeRequestRejectedShownToPrimaryTeamDetails.sent_by.validator), + ('secondary_team', TeamMergeRequestRejectedShownToPrimaryTeamDetails.secondary_team.validator), + ('sent_by', TeamMergeRequestRejectedShownToPrimaryTeamDetails.sent_by.validator), ] TeamMergeRequestRejectedShownToPrimaryTeamType.description.validator = bv.String() -TeamMergeRequestRejectedShownToPrimaryTeamType._all_field_names_ = set(["description"]) -TeamMergeRequestRejectedShownToPrimaryTeamType._all_fields_ = [ - ( - "description", - TeamMergeRequestRejectedShownToPrimaryTeamType.description.validator, - ) -] +TeamMergeRequestRejectedShownToPrimaryTeamType._all_field_names_ = set(['description']) +TeamMergeRequestRejectedShownToPrimaryTeamType._all_fields_ = [('description', TeamMergeRequestRejectedShownToPrimaryTeamType.description.validator)] TeamMergeRequestRejectedShownToSecondaryTeamDetails.sent_by.validator = bv.String() -TeamMergeRequestRejectedShownToSecondaryTeamDetails._all_field_names_ = set(["sent_by"]) -TeamMergeRequestRejectedShownToSecondaryTeamDetails._all_fields_ = [ - ("sent_by", TeamMergeRequestRejectedShownToSecondaryTeamDetails.sent_by.validator) -] +TeamMergeRequestRejectedShownToSecondaryTeamDetails._all_field_names_ = set(['sent_by']) +TeamMergeRequestRejectedShownToSecondaryTeamDetails._all_fields_ = [('sent_by', TeamMergeRequestRejectedShownToSecondaryTeamDetails.sent_by.validator)] TeamMergeRequestRejectedShownToSecondaryTeamType.description.validator = bv.String() -TeamMergeRequestRejectedShownToSecondaryTeamType._all_field_names_ = set(["description"]) -TeamMergeRequestRejectedShownToSecondaryTeamType._all_fields_ = [ - ( - "description", - TeamMergeRequestRejectedShownToSecondaryTeamType.description.validator, - ) -] +TeamMergeRequestRejectedShownToSecondaryTeamType._all_field_names_ = set(['description']) +TeamMergeRequestRejectedShownToSecondaryTeamType._all_fields_ = [('description', TeamMergeRequestRejectedShownToSecondaryTeamType.description.validator)] -TeamMergeRequestReminderDetails.request_reminder_details.validator = ( - TeamMergeRequestReminderExtraDetails_validator -) -TeamMergeRequestReminderDetails._all_field_names_ = set(["request_reminder_details"]) -TeamMergeRequestReminderDetails._all_fields_ = [ - ( - "request_reminder_details", - TeamMergeRequestReminderDetails.request_reminder_details.validator, - ) -] +TeamMergeRequestReminderDetails.request_reminder_details.validator = TeamMergeRequestReminderExtraDetails_validator +TeamMergeRequestReminderDetails._all_field_names_ = set(['request_reminder_details']) +TeamMergeRequestReminderDetails._all_fields_ = [('request_reminder_details', TeamMergeRequestReminderDetails.request_reminder_details.validator)] -TeamMergeRequestReminderExtraDetails._primary_team_validator = ( - PrimaryTeamRequestReminderDetails_validator -) -TeamMergeRequestReminderExtraDetails._secondary_team_validator = ( - SecondaryTeamRequestReminderDetails_validator -) +TeamMergeRequestReminderExtraDetails._primary_team_validator = PrimaryTeamRequestReminderDetails_validator +TeamMergeRequestReminderExtraDetails._secondary_team_validator = SecondaryTeamRequestReminderDetails_validator TeamMergeRequestReminderExtraDetails._other_validator = bv.Void() TeamMergeRequestReminderExtraDetails._tagmap = { - "primary_team": TeamMergeRequestReminderExtraDetails._primary_team_validator, - "secondary_team": TeamMergeRequestReminderExtraDetails._secondary_team_validator, - "other": TeamMergeRequestReminderExtraDetails._other_validator, + 'primary_team': TeamMergeRequestReminderExtraDetails._primary_team_validator, + 'secondary_team': TeamMergeRequestReminderExtraDetails._secondary_team_validator, + 'other': TeamMergeRequestReminderExtraDetails._other_validator, } -TeamMergeRequestReminderExtraDetails.other = TeamMergeRequestReminderExtraDetails("other") +TeamMergeRequestReminderExtraDetails.other = TeamMergeRequestReminderExtraDetails('other') TeamMergeRequestReminderShownToPrimaryTeamDetails.secondary_team.validator = bv.String() TeamMergeRequestReminderShownToPrimaryTeamDetails.sent_to.validator = bv.String() -TeamMergeRequestReminderShownToPrimaryTeamDetails._all_field_names_ = set( - [ - "secondary_team", - "sent_to", - ] -) +TeamMergeRequestReminderShownToPrimaryTeamDetails._all_field_names_ = set([ + 'secondary_team', + 'sent_to', +]) TeamMergeRequestReminderShownToPrimaryTeamDetails._all_fields_ = [ - ( - "secondary_team", - TeamMergeRequestReminderShownToPrimaryTeamDetails.secondary_team.validator, - ), - ("sent_to", TeamMergeRequestReminderShownToPrimaryTeamDetails.sent_to.validator), + ('secondary_team', TeamMergeRequestReminderShownToPrimaryTeamDetails.secondary_team.validator), + ('sent_to', TeamMergeRequestReminderShownToPrimaryTeamDetails.sent_to.validator), ] TeamMergeRequestReminderShownToPrimaryTeamType.description.validator = bv.String() -TeamMergeRequestReminderShownToPrimaryTeamType._all_field_names_ = set(["description"]) -TeamMergeRequestReminderShownToPrimaryTeamType._all_fields_ = [ - ( - "description", - TeamMergeRequestReminderShownToPrimaryTeamType.description.validator, - ) -] +TeamMergeRequestReminderShownToPrimaryTeamType._all_field_names_ = set(['description']) +TeamMergeRequestReminderShownToPrimaryTeamType._all_fields_ = [('description', TeamMergeRequestReminderShownToPrimaryTeamType.description.validator)] TeamMergeRequestReminderShownToSecondaryTeamDetails.sent_to.validator = bv.String() -TeamMergeRequestReminderShownToSecondaryTeamDetails._all_field_names_ = set(["sent_to"]) -TeamMergeRequestReminderShownToSecondaryTeamDetails._all_fields_ = [ - ("sent_to", TeamMergeRequestReminderShownToSecondaryTeamDetails.sent_to.validator) -] +TeamMergeRequestReminderShownToSecondaryTeamDetails._all_field_names_ = set(['sent_to']) +TeamMergeRequestReminderShownToSecondaryTeamDetails._all_fields_ = [('sent_to', TeamMergeRequestReminderShownToSecondaryTeamDetails.sent_to.validator)] TeamMergeRequestReminderShownToSecondaryTeamType.description.validator = bv.String() -TeamMergeRequestReminderShownToSecondaryTeamType._all_field_names_ = set(["description"]) -TeamMergeRequestReminderShownToSecondaryTeamType._all_fields_ = [ - ( - "description", - TeamMergeRequestReminderShownToSecondaryTeamType.description.validator, - ) -] +TeamMergeRequestReminderShownToSecondaryTeamType._all_field_names_ = set(['description']) +TeamMergeRequestReminderShownToSecondaryTeamType._all_fields_ = [('description', TeamMergeRequestReminderShownToSecondaryTeamType.description.validator)] TeamMergeRequestReminderType.description.validator = bv.String() -TeamMergeRequestReminderType._all_field_names_ = set(["description"]) -TeamMergeRequestReminderType._all_fields_ = [ - ("description", TeamMergeRequestReminderType.description.validator) -] +TeamMergeRequestReminderType._all_field_names_ = set(['description']) +TeamMergeRequestReminderType._all_fields_ = [('description', TeamMergeRequestReminderType.description.validator)] TeamMergeRequestRevokedDetails.team.validator = bv.String() -TeamMergeRequestRevokedDetails._all_field_names_ = set(["team"]) -TeamMergeRequestRevokedDetails._all_fields_ = [ - ("team", TeamMergeRequestRevokedDetails.team.validator) -] +TeamMergeRequestRevokedDetails._all_field_names_ = set(['team']) +TeamMergeRequestRevokedDetails._all_fields_ = [('team', TeamMergeRequestRevokedDetails.team.validator)] TeamMergeRequestRevokedType.description.validator = bv.String() -TeamMergeRequestRevokedType._all_field_names_ = set(["description"]) -TeamMergeRequestRevokedType._all_fields_ = [ - ("description", TeamMergeRequestRevokedType.description.validator) -] +TeamMergeRequestRevokedType._all_field_names_ = set(['description']) +TeamMergeRequestRevokedType._all_fields_ = [('description', TeamMergeRequestRevokedType.description.validator)] TeamMergeRequestSentShownToPrimaryTeamDetails.secondary_team.validator = bv.String() TeamMergeRequestSentShownToPrimaryTeamDetails.sent_to.validator = bv.String() -TeamMergeRequestSentShownToPrimaryTeamDetails._all_field_names_ = set( - [ - "secondary_team", - "sent_to", - ] -) +TeamMergeRequestSentShownToPrimaryTeamDetails._all_field_names_ = set([ + 'secondary_team', + 'sent_to', +]) TeamMergeRequestSentShownToPrimaryTeamDetails._all_fields_ = [ - ( - "secondary_team", - TeamMergeRequestSentShownToPrimaryTeamDetails.secondary_team.validator, - ), - ("sent_to", TeamMergeRequestSentShownToPrimaryTeamDetails.sent_to.validator), + ('secondary_team', TeamMergeRequestSentShownToPrimaryTeamDetails.secondary_team.validator), + ('sent_to', TeamMergeRequestSentShownToPrimaryTeamDetails.sent_to.validator), ] TeamMergeRequestSentShownToPrimaryTeamType.description.validator = bv.String() -TeamMergeRequestSentShownToPrimaryTeamType._all_field_names_ = set(["description"]) -TeamMergeRequestSentShownToPrimaryTeamType._all_fields_ = [ - ("description", TeamMergeRequestSentShownToPrimaryTeamType.description.validator) -] +TeamMergeRequestSentShownToPrimaryTeamType._all_field_names_ = set(['description']) +TeamMergeRequestSentShownToPrimaryTeamType._all_fields_ = [('description', TeamMergeRequestSentShownToPrimaryTeamType.description.validator)] TeamMergeRequestSentShownToSecondaryTeamDetails.sent_to.validator = bv.String() -TeamMergeRequestSentShownToSecondaryTeamDetails._all_field_names_ = set(["sent_to"]) -TeamMergeRequestSentShownToSecondaryTeamDetails._all_fields_ = [ - ("sent_to", TeamMergeRequestSentShownToSecondaryTeamDetails.sent_to.validator) -] +TeamMergeRequestSentShownToSecondaryTeamDetails._all_field_names_ = set(['sent_to']) +TeamMergeRequestSentShownToSecondaryTeamDetails._all_fields_ = [('sent_to', TeamMergeRequestSentShownToSecondaryTeamDetails.sent_to.validator)] TeamMergeRequestSentShownToSecondaryTeamType.description.validator = bv.String() -TeamMergeRequestSentShownToSecondaryTeamType._all_field_names_ = set(["description"]) -TeamMergeRequestSentShownToSecondaryTeamType._all_fields_ = [ - ("description", TeamMergeRequestSentShownToSecondaryTeamType.description.validator) -] +TeamMergeRequestSentShownToSecondaryTeamType._all_field_names_ = set(['description']) +TeamMergeRequestSentShownToSecondaryTeamType._all_fields_ = [('description', TeamMergeRequestSentShownToSecondaryTeamType.description.validator)] TeamMergeToDetails.team_name.validator = bv.String() -TeamMergeToDetails._all_field_names_ = set(["team_name"]) -TeamMergeToDetails._all_fields_ = [("team_name", TeamMergeToDetails.team_name.validator)] +TeamMergeToDetails._all_field_names_ = set(['team_name']) +TeamMergeToDetails._all_fields_ = [('team_name', TeamMergeToDetails.team_name.validator)] TeamMergeToType.description.validator = bv.String() -TeamMergeToType._all_field_names_ = set(["description"]) -TeamMergeToType._all_fields_ = [("description", TeamMergeToType.description.validator)] +TeamMergeToType._all_field_names_ = set(['description']) +TeamMergeToType._all_fields_ = [('description', TeamMergeToType.description.validator)] TeamName.team_display_name.validator = bv.String() TeamName.team_legal_name.validator = bv.String() -TeamName._all_field_names_ = set( - [ - "team_display_name", - "team_legal_name", - ] -) +TeamName._all_field_names_ = set([ + 'team_display_name', + 'team_legal_name', +]) TeamName._all_fields_ = [ - ("team_display_name", TeamName.team_display_name.validator), - ("team_legal_name", TeamName.team_legal_name.validator), + ('team_display_name', TeamName.team_display_name.validator), + ('team_legal_name', TeamName.team_legal_name.validator), ] TeamProfileAddBackgroundDetails._all_field_names_ = set([]) TeamProfileAddBackgroundDetails._all_fields_ = [] TeamProfileAddBackgroundType.description.validator = bv.String() -TeamProfileAddBackgroundType._all_field_names_ = set(["description"]) -TeamProfileAddBackgroundType._all_fields_ = [ - ("description", TeamProfileAddBackgroundType.description.validator) -] +TeamProfileAddBackgroundType._all_field_names_ = set(['description']) +TeamProfileAddBackgroundType._all_fields_ = [('description', TeamProfileAddBackgroundType.description.validator)] TeamProfileAddLogoDetails._all_field_names_ = set([]) TeamProfileAddLogoDetails._all_fields_ = [] TeamProfileAddLogoType.description.validator = bv.String() -TeamProfileAddLogoType._all_field_names_ = set(["description"]) -TeamProfileAddLogoType._all_fields_ = [ - ("description", TeamProfileAddLogoType.description.validator) -] +TeamProfileAddLogoType._all_field_names_ = set(['description']) +TeamProfileAddLogoType._all_fields_ = [('description', TeamProfileAddLogoType.description.validator)] TeamProfileChangeBackgroundDetails._all_field_names_ = set([]) TeamProfileChangeBackgroundDetails._all_fields_ = [] TeamProfileChangeBackgroundType.description.validator = bv.String() -TeamProfileChangeBackgroundType._all_field_names_ = set(["description"]) -TeamProfileChangeBackgroundType._all_fields_ = [ - ("description", TeamProfileChangeBackgroundType.description.validator) -] +TeamProfileChangeBackgroundType._all_field_names_ = set(['description']) +TeamProfileChangeBackgroundType._all_fields_ = [('description', TeamProfileChangeBackgroundType.description.validator)] TeamProfileChangeDefaultLanguageDetails.new_value.validator = common.LanguageCode_validator TeamProfileChangeDefaultLanguageDetails.previous_value.validator = common.LanguageCode_validator -TeamProfileChangeDefaultLanguageDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +TeamProfileChangeDefaultLanguageDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) TeamProfileChangeDefaultLanguageDetails._all_fields_ = [ - ("new_value", TeamProfileChangeDefaultLanguageDetails.new_value.validator), - ( - "previous_value", - TeamProfileChangeDefaultLanguageDetails.previous_value.validator, - ), + ('new_value', TeamProfileChangeDefaultLanguageDetails.new_value.validator), + ('previous_value', TeamProfileChangeDefaultLanguageDetails.previous_value.validator), ] TeamProfileChangeDefaultLanguageType.description.validator = bv.String() -TeamProfileChangeDefaultLanguageType._all_field_names_ = set(["description"]) -TeamProfileChangeDefaultLanguageType._all_fields_ = [ - ("description", TeamProfileChangeDefaultLanguageType.description.validator) -] +TeamProfileChangeDefaultLanguageType._all_field_names_ = set(['description']) +TeamProfileChangeDefaultLanguageType._all_fields_ = [('description', TeamProfileChangeDefaultLanguageType.description.validator)] TeamProfileChangeLogoDetails._all_field_names_ = set([]) TeamProfileChangeLogoDetails._all_fields_ = [] TeamProfileChangeLogoType.description.validator = bv.String() -TeamProfileChangeLogoType._all_field_names_ = set(["description"]) -TeamProfileChangeLogoType._all_fields_ = [ - ("description", TeamProfileChangeLogoType.description.validator) -] +TeamProfileChangeLogoType._all_field_names_ = set(['description']) +TeamProfileChangeLogoType._all_fields_ = [('description', TeamProfileChangeLogoType.description.validator)] TeamProfileChangeNameDetails.previous_value.validator = bv.Nullable(TeamName_validator) TeamProfileChangeNameDetails.new_value.validator = TeamName_validator -TeamProfileChangeNameDetails._all_field_names_ = set( - [ - "previous_value", - "new_value", - ] -) +TeamProfileChangeNameDetails._all_field_names_ = set([ + 'previous_value', + 'new_value', +]) TeamProfileChangeNameDetails._all_fields_ = [ - ("previous_value", TeamProfileChangeNameDetails.previous_value.validator), - ("new_value", TeamProfileChangeNameDetails.new_value.validator), + ('previous_value', TeamProfileChangeNameDetails.previous_value.validator), + ('new_value', TeamProfileChangeNameDetails.new_value.validator), ] TeamProfileChangeNameType.description.validator = bv.String() -TeamProfileChangeNameType._all_field_names_ = set(["description"]) -TeamProfileChangeNameType._all_fields_ = [ - ("description", TeamProfileChangeNameType.description.validator) -] +TeamProfileChangeNameType._all_field_names_ = set(['description']) +TeamProfileChangeNameType._all_fields_ = [('description', TeamProfileChangeNameType.description.validator)] TeamProfileRemoveBackgroundDetails._all_field_names_ = set([]) TeamProfileRemoveBackgroundDetails._all_fields_ = [] TeamProfileRemoveBackgroundType.description.validator = bv.String() -TeamProfileRemoveBackgroundType._all_field_names_ = set(["description"]) -TeamProfileRemoveBackgroundType._all_fields_ = [ - ("description", TeamProfileRemoveBackgroundType.description.validator) -] +TeamProfileRemoveBackgroundType._all_field_names_ = set(['description']) +TeamProfileRemoveBackgroundType._all_fields_ = [('description', TeamProfileRemoveBackgroundType.description.validator)] TeamProfileRemoveLogoDetails._all_field_names_ = set([]) TeamProfileRemoveLogoDetails._all_fields_ = [] TeamProfileRemoveLogoType.description.validator = bv.String() -TeamProfileRemoveLogoType._all_field_names_ = set(["description"]) -TeamProfileRemoveLogoType._all_fields_ = [ - ("description", TeamProfileRemoveLogoType.description.validator) -] +TeamProfileRemoveLogoType._all_field_names_ = set(['description']) +TeamProfileRemoveLogoType._all_fields_ = [('description', TeamProfileRemoveLogoType.description.validator)] TeamSelectiveSyncPolicy._disabled_validator = bv.Void() TeamSelectiveSyncPolicy._enabled_validator = bv.Void() TeamSelectiveSyncPolicy._other_validator = bv.Void() TeamSelectiveSyncPolicy._tagmap = { - "disabled": TeamSelectiveSyncPolicy._disabled_validator, - "enabled": TeamSelectiveSyncPolicy._enabled_validator, - "other": TeamSelectiveSyncPolicy._other_validator, + 'disabled': TeamSelectiveSyncPolicy._disabled_validator, + 'enabled': TeamSelectiveSyncPolicy._enabled_validator, + 'other': TeamSelectiveSyncPolicy._other_validator, } -TeamSelectiveSyncPolicy.disabled = TeamSelectiveSyncPolicy("disabled") -TeamSelectiveSyncPolicy.enabled = TeamSelectiveSyncPolicy("enabled") -TeamSelectiveSyncPolicy.other = TeamSelectiveSyncPolicy("other") +TeamSelectiveSyncPolicy.disabled = TeamSelectiveSyncPolicy('disabled') +TeamSelectiveSyncPolicy.enabled = TeamSelectiveSyncPolicy('enabled') +TeamSelectiveSyncPolicy.other = TeamSelectiveSyncPolicy('other') TeamSelectiveSyncPolicyChangedDetails.new_value.validator = TeamSelectiveSyncPolicy_validator TeamSelectiveSyncPolicyChangedDetails.previous_value.validator = TeamSelectiveSyncPolicy_validator -TeamSelectiveSyncPolicyChangedDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +TeamSelectiveSyncPolicyChangedDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) TeamSelectiveSyncPolicyChangedDetails._all_fields_ = [ - ("new_value", TeamSelectiveSyncPolicyChangedDetails.new_value.validator), - ("previous_value", TeamSelectiveSyncPolicyChangedDetails.previous_value.validator), + ('new_value', TeamSelectiveSyncPolicyChangedDetails.new_value.validator), + ('previous_value', TeamSelectiveSyncPolicyChangedDetails.previous_value.validator), ] TeamSelectiveSyncPolicyChangedType.description.validator = bv.String() -TeamSelectiveSyncPolicyChangedType._all_field_names_ = set(["description"]) -TeamSelectiveSyncPolicyChangedType._all_fields_ = [ - ("description", TeamSelectiveSyncPolicyChangedType.description.validator) -] +TeamSelectiveSyncPolicyChangedType._all_field_names_ = set(['description']) +TeamSelectiveSyncPolicyChangedType._all_fields_ = [('description', TeamSelectiveSyncPolicyChangedType.description.validator)] TeamSelectiveSyncSettingsChangedDetails.previous_value.validator = files.SyncSetting_validator TeamSelectiveSyncSettingsChangedDetails.new_value.validator = files.SyncSetting_validator -TeamSelectiveSyncSettingsChangedDetails._all_field_names_ = set( - [ - "previous_value", - "new_value", - ] -) +TeamSelectiveSyncSettingsChangedDetails._all_field_names_ = set([ + 'previous_value', + 'new_value', +]) TeamSelectiveSyncSettingsChangedDetails._all_fields_ = [ - ( - "previous_value", - TeamSelectiveSyncSettingsChangedDetails.previous_value.validator, - ), - ("new_value", TeamSelectiveSyncSettingsChangedDetails.new_value.validator), + ('previous_value', TeamSelectiveSyncSettingsChangedDetails.previous_value.validator), + ('new_value', TeamSelectiveSyncSettingsChangedDetails.new_value.validator), ] TeamSelectiveSyncSettingsChangedType.description.validator = bv.String() -TeamSelectiveSyncSettingsChangedType._all_field_names_ = set(["description"]) -TeamSelectiveSyncSettingsChangedType._all_fields_ = [ - ("description", TeamSelectiveSyncSettingsChangedType.description.validator) -] +TeamSelectiveSyncSettingsChangedType._all_field_names_ = set(['description']) +TeamSelectiveSyncSettingsChangedType._all_fields_ = [('description', TeamSelectiveSyncSettingsChangedType.description.validator)] TeamSharingWhitelistSubjectsChangedDetails.added_whitelist_subjects.validator = bv.List(bv.String()) -TeamSharingWhitelistSubjectsChangedDetails.removed_whitelist_subjects.validator = bv.List( - bv.String() -) -TeamSharingWhitelistSubjectsChangedDetails._all_field_names_ = set( - [ - "added_whitelist_subjects", - "removed_whitelist_subjects", - ] -) +TeamSharingWhitelistSubjectsChangedDetails.removed_whitelist_subjects.validator = bv.List(bv.String()) +TeamSharingWhitelistSubjectsChangedDetails._all_field_names_ = set([ + 'added_whitelist_subjects', + 'removed_whitelist_subjects', +]) TeamSharingWhitelistSubjectsChangedDetails._all_fields_ = [ - ( - "added_whitelist_subjects", - TeamSharingWhitelistSubjectsChangedDetails.added_whitelist_subjects.validator, - ), - ( - "removed_whitelist_subjects", - TeamSharingWhitelistSubjectsChangedDetails.removed_whitelist_subjects.validator, - ), + ('added_whitelist_subjects', TeamSharingWhitelistSubjectsChangedDetails.added_whitelist_subjects.validator), + ('removed_whitelist_subjects', TeamSharingWhitelistSubjectsChangedDetails.removed_whitelist_subjects.validator), ] TeamSharingWhitelistSubjectsChangedType.description.validator = bv.String() -TeamSharingWhitelistSubjectsChangedType._all_field_names_ = set(["description"]) -TeamSharingWhitelistSubjectsChangedType._all_fields_ = [ - ("description", TeamSharingWhitelistSubjectsChangedType.description.validator) -] +TeamSharingWhitelistSubjectsChangedType._all_field_names_ = set(['description']) +TeamSharingWhitelistSubjectsChangedType._all_fields_ = [('description', TeamSharingWhitelistSubjectsChangedType.description.validator)] TeamStorageCreateReportDetails._all_field_names_ = set([]) TeamStorageCreateReportDetails._all_fields_ = [] -TeamStorageCreateReportFailedDetails.failure_reason.validator = ( - team.TeamReportFailureReason_validator -) -TeamStorageCreateReportFailedDetails._all_field_names_ = set(["failure_reason"]) -TeamStorageCreateReportFailedDetails._all_fields_ = [ - ("failure_reason", TeamStorageCreateReportFailedDetails.failure_reason.validator) -] +TeamStorageCreateReportFailedDetails.failure_reason.validator = team.TeamReportFailureReason_validator +TeamStorageCreateReportFailedDetails._all_field_names_ = set(['failure_reason']) +TeamStorageCreateReportFailedDetails._all_fields_ = [('failure_reason', TeamStorageCreateReportFailedDetails.failure_reason.validator)] TeamStorageCreateReportFailedType.description.validator = bv.String() -TeamStorageCreateReportFailedType._all_field_names_ = set(["description"]) -TeamStorageCreateReportFailedType._all_fields_ = [ - ("description", TeamStorageCreateReportFailedType.description.validator) -] +TeamStorageCreateReportFailedType._all_field_names_ = set(['description']) +TeamStorageCreateReportFailedType._all_fields_ = [('description', TeamStorageCreateReportFailedType.description.validator)] TeamStorageCreateReportType.description.validator = bv.String() -TeamStorageCreateReportType._all_field_names_ = set(["description"]) -TeamStorageCreateReportType._all_fields_ = [ - ("description", TeamStorageCreateReportType.description.validator) -] +TeamStorageCreateReportType._all_field_names_ = set(['description']) +TeamStorageCreateReportType._all_fields_ = [('description', TeamStorageCreateReportType.description.validator)] TfaAddBackupPhoneDetails._all_field_names_ = set([]) TfaAddBackupPhoneDetails._all_fields_ = [] TfaAddBackupPhoneType.description.validator = bv.String() -TfaAddBackupPhoneType._all_field_names_ = set(["description"]) -TfaAddBackupPhoneType._all_fields_ = [("description", TfaAddBackupPhoneType.description.validator)] +TfaAddBackupPhoneType._all_field_names_ = set(['description']) +TfaAddBackupPhoneType._all_fields_ = [('description', TfaAddBackupPhoneType.description.validator)] TfaAddExceptionDetails._all_field_names_ = set([]) TfaAddExceptionDetails._all_fields_ = [] TfaAddExceptionType.description.validator = bv.String() -TfaAddExceptionType._all_field_names_ = set(["description"]) -TfaAddExceptionType._all_fields_ = [("description", TfaAddExceptionType.description.validator)] +TfaAddExceptionType._all_field_names_ = set(['description']) +TfaAddExceptionType._all_fields_ = [('description', TfaAddExceptionType.description.validator)] TfaAddSecurityKeyDetails._all_field_names_ = set([]) TfaAddSecurityKeyDetails._all_fields_ = [] TfaAddSecurityKeyType.description.validator = bv.String() -TfaAddSecurityKeyType._all_field_names_ = set(["description"]) -TfaAddSecurityKeyType._all_fields_ = [("description", TfaAddSecurityKeyType.description.validator)] +TfaAddSecurityKeyType._all_field_names_ = set(['description']) +TfaAddSecurityKeyType._all_fields_ = [('description', TfaAddSecurityKeyType.description.validator)] TfaChangeBackupPhoneDetails._all_field_names_ = set([]) TfaChangeBackupPhoneDetails._all_fields_ = [] TfaChangeBackupPhoneType.description.validator = bv.String() -TfaChangeBackupPhoneType._all_field_names_ = set(["description"]) -TfaChangeBackupPhoneType._all_fields_ = [ - ("description", TfaChangeBackupPhoneType.description.validator) -] +TfaChangeBackupPhoneType._all_field_names_ = set(['description']) +TfaChangeBackupPhoneType._all_fields_ = [('description', TfaChangeBackupPhoneType.description.validator)] TfaChangePolicyDetails.new_value.validator = team_policies.TwoStepVerificationPolicy_validator -TfaChangePolicyDetails.previous_value.validator = bv.Nullable( - team_policies.TwoStepVerificationPolicy_validator -) -TfaChangePolicyDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +TfaChangePolicyDetails.previous_value.validator = bv.Nullable(team_policies.TwoStepVerificationPolicy_validator) +TfaChangePolicyDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) TfaChangePolicyDetails._all_fields_ = [ - ("new_value", TfaChangePolicyDetails.new_value.validator), - ("previous_value", TfaChangePolicyDetails.previous_value.validator), + ('new_value', TfaChangePolicyDetails.new_value.validator), + ('previous_value', TfaChangePolicyDetails.previous_value.validator), ] TfaChangePolicyType.description.validator = bv.String() -TfaChangePolicyType._all_field_names_ = set(["description"]) -TfaChangePolicyType._all_fields_ = [("description", TfaChangePolicyType.description.validator)] +TfaChangePolicyType._all_field_names_ = set(['description']) +TfaChangePolicyType._all_fields_ = [('description', TfaChangePolicyType.description.validator)] TfaChangeStatusDetails.new_value.validator = TfaConfiguration_validator TfaChangeStatusDetails.previous_value.validator = bv.Nullable(TfaConfiguration_validator) TfaChangeStatusDetails.used_rescue_code.validator = bv.Nullable(bv.Boolean()) -TfaChangeStatusDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - "used_rescue_code", - ] -) +TfaChangeStatusDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', + 'used_rescue_code', +]) TfaChangeStatusDetails._all_fields_ = [ - ("new_value", TfaChangeStatusDetails.new_value.validator), - ("previous_value", TfaChangeStatusDetails.previous_value.validator), - ("used_rescue_code", TfaChangeStatusDetails.used_rescue_code.validator), + ('new_value', TfaChangeStatusDetails.new_value.validator), + ('previous_value', TfaChangeStatusDetails.previous_value.validator), + ('used_rescue_code', TfaChangeStatusDetails.used_rescue_code.validator), ] TfaChangeStatusType.description.validator = bv.String() -TfaChangeStatusType._all_field_names_ = set(["description"]) -TfaChangeStatusType._all_fields_ = [("description", TfaChangeStatusType.description.validator)] +TfaChangeStatusType._all_field_names_ = set(['description']) +TfaChangeStatusType._all_fields_ = [('description', TfaChangeStatusType.description.validator)] TfaConfiguration._authenticator_validator = bv.Void() TfaConfiguration._disabled_validator = bv.Void() @@ -116884,52 +108578,46 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): TfaConfiguration._sms_validator = bv.Void() TfaConfiguration._other_validator = bv.Void() TfaConfiguration._tagmap = { - "authenticator": TfaConfiguration._authenticator_validator, - "disabled": TfaConfiguration._disabled_validator, - "enabled": TfaConfiguration._enabled_validator, - "sms": TfaConfiguration._sms_validator, - "other": TfaConfiguration._other_validator, + 'authenticator': TfaConfiguration._authenticator_validator, + 'disabled': TfaConfiguration._disabled_validator, + 'enabled': TfaConfiguration._enabled_validator, + 'sms': TfaConfiguration._sms_validator, + 'other': TfaConfiguration._other_validator, } -TfaConfiguration.authenticator = TfaConfiguration("authenticator") -TfaConfiguration.disabled = TfaConfiguration("disabled") -TfaConfiguration.enabled = TfaConfiguration("enabled") -TfaConfiguration.sms = TfaConfiguration("sms") -TfaConfiguration.other = TfaConfiguration("other") +TfaConfiguration.authenticator = TfaConfiguration('authenticator') +TfaConfiguration.disabled = TfaConfiguration('disabled') +TfaConfiguration.enabled = TfaConfiguration('enabled') +TfaConfiguration.sms = TfaConfiguration('sms') +TfaConfiguration.other = TfaConfiguration('other') TfaRemoveBackupPhoneDetails._all_field_names_ = set([]) TfaRemoveBackupPhoneDetails._all_fields_ = [] TfaRemoveBackupPhoneType.description.validator = bv.String() -TfaRemoveBackupPhoneType._all_field_names_ = set(["description"]) -TfaRemoveBackupPhoneType._all_fields_ = [ - ("description", TfaRemoveBackupPhoneType.description.validator) -] +TfaRemoveBackupPhoneType._all_field_names_ = set(['description']) +TfaRemoveBackupPhoneType._all_fields_ = [('description', TfaRemoveBackupPhoneType.description.validator)] TfaRemoveExceptionDetails._all_field_names_ = set([]) TfaRemoveExceptionDetails._all_fields_ = [] TfaRemoveExceptionType.description.validator = bv.String() -TfaRemoveExceptionType._all_field_names_ = set(["description"]) -TfaRemoveExceptionType._all_fields_ = [ - ("description", TfaRemoveExceptionType.description.validator) -] +TfaRemoveExceptionType._all_field_names_ = set(['description']) +TfaRemoveExceptionType._all_fields_ = [('description', TfaRemoveExceptionType.description.validator)] TfaRemoveSecurityKeyDetails._all_field_names_ = set([]) TfaRemoveSecurityKeyDetails._all_fields_ = [] TfaRemoveSecurityKeyType.description.validator = bv.String() -TfaRemoveSecurityKeyType._all_field_names_ = set(["description"]) -TfaRemoveSecurityKeyType._all_fields_ = [ - ("description", TfaRemoveSecurityKeyType.description.validator) -] +TfaRemoveSecurityKeyType._all_field_names_ = set(['description']) +TfaRemoveSecurityKeyType._all_fields_ = [('description', TfaRemoveSecurityKeyType.description.validator)] TfaResetDetails._all_field_names_ = set([]) TfaResetDetails._all_fields_ = [] TfaResetType.description.validator = bv.String() -TfaResetType._all_field_names_ = set(["description"]) -TfaResetType._all_fields_ = [("description", TfaResetType.description.validator)] +TfaResetType._all_field_names_ = set(['description']) +TfaResetType._all_fields_ = [('description', TfaResetType.description.validator)] TimeUnit._days_validator = bv.Void() TimeUnit._hours_validator = bv.Void() @@ -116941,95 +108629,80 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): TimeUnit._years_validator = bv.Void() TimeUnit._other_validator = bv.Void() TimeUnit._tagmap = { - "days": TimeUnit._days_validator, - "hours": TimeUnit._hours_validator, - "milliseconds": TimeUnit._milliseconds_validator, - "minutes": TimeUnit._minutes_validator, - "months": TimeUnit._months_validator, - "seconds": TimeUnit._seconds_validator, - "weeks": TimeUnit._weeks_validator, - "years": TimeUnit._years_validator, - "other": TimeUnit._other_validator, + 'days': TimeUnit._days_validator, + 'hours': TimeUnit._hours_validator, + 'milliseconds': TimeUnit._milliseconds_validator, + 'minutes': TimeUnit._minutes_validator, + 'months': TimeUnit._months_validator, + 'seconds': TimeUnit._seconds_validator, + 'weeks': TimeUnit._weeks_validator, + 'years': TimeUnit._years_validator, + 'other': TimeUnit._other_validator, } -TimeUnit.days = TimeUnit("days") -TimeUnit.hours = TimeUnit("hours") -TimeUnit.milliseconds = TimeUnit("milliseconds") -TimeUnit.minutes = TimeUnit("minutes") -TimeUnit.months = TimeUnit("months") -TimeUnit.seconds = TimeUnit("seconds") -TimeUnit.weeks = TimeUnit("weeks") -TimeUnit.years = TimeUnit("years") -TimeUnit.other = TimeUnit("other") +TimeUnit.days = TimeUnit('days') +TimeUnit.hours = TimeUnit('hours') +TimeUnit.milliseconds = TimeUnit('milliseconds') +TimeUnit.minutes = TimeUnit('minutes') +TimeUnit.months = TimeUnit('months') +TimeUnit.seconds = TimeUnit('seconds') +TimeUnit.weeks = TimeUnit('weeks') +TimeUnit.years = TimeUnit('years') +TimeUnit.other = TimeUnit('other') TopLevelContentPolicy._admins_only_validator = bv.Void() TopLevelContentPolicy._everyone_validator = bv.Void() TopLevelContentPolicy._other_validator = bv.Void() TopLevelContentPolicy._tagmap = { - "admins_only": TopLevelContentPolicy._admins_only_validator, - "everyone": TopLevelContentPolicy._everyone_validator, - "other": TopLevelContentPolicy._other_validator, + 'admins_only': TopLevelContentPolicy._admins_only_validator, + 'everyone': TopLevelContentPolicy._everyone_validator, + 'other': TopLevelContentPolicy._other_validator, } -TopLevelContentPolicy.admins_only = TopLevelContentPolicy("admins_only") -TopLevelContentPolicy.everyone = TopLevelContentPolicy("everyone") -TopLevelContentPolicy.other = TopLevelContentPolicy("other") +TopLevelContentPolicy.admins_only = TopLevelContentPolicy('admins_only') +TopLevelContentPolicy.everyone = TopLevelContentPolicy('everyone') +TopLevelContentPolicy.other = TopLevelContentPolicy('other') TopLevelContentPolicyChangedDetails.new_value.validator = TopLevelContentPolicy_validator TopLevelContentPolicyChangedDetails.previous_value.validator = TopLevelContentPolicy_validator -TopLevelContentPolicyChangedDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +TopLevelContentPolicyChangedDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) TopLevelContentPolicyChangedDetails._all_fields_ = [ - ("new_value", TopLevelContentPolicyChangedDetails.new_value.validator), - ("previous_value", TopLevelContentPolicyChangedDetails.previous_value.validator), + ('new_value', TopLevelContentPolicyChangedDetails.new_value.validator), + ('previous_value', TopLevelContentPolicyChangedDetails.previous_value.validator), ] TopLevelContentPolicyChangedType.description.validator = bv.String() -TopLevelContentPolicyChangedType._all_field_names_ = set(["description"]) -TopLevelContentPolicyChangedType._all_fields_ = [ - ("description", TopLevelContentPolicyChangedType.description.validator) -] +TopLevelContentPolicyChangedType._all_field_names_ = set(['description']) +TopLevelContentPolicyChangedType._all_fields_ = [('description', TopLevelContentPolicyChangedType.description.validator)] -TrustedNonTeamMemberLogInfo.trusted_non_team_member_type.validator = ( - TrustedNonTeamMemberType_validator -) +TrustedNonTeamMemberLogInfo.trusted_non_team_member_type.validator = TrustedNonTeamMemberType_validator TrustedNonTeamMemberLogInfo.team.validator = bv.Nullable(TeamLogInfo_validator) -TrustedNonTeamMemberLogInfo._field_names_ = set( - [ - "trusted_non_team_member_type", - "team", - ] -) -TrustedNonTeamMemberLogInfo._all_field_names_ = UserLogInfo._all_field_names_.union( - TrustedNonTeamMemberLogInfo._field_names_ -) +TrustedNonTeamMemberLogInfo._field_names_ = set([ + 'trusted_non_team_member_type', + 'team', +]) +TrustedNonTeamMemberLogInfo._all_field_names_ = UserLogInfo._all_field_names_.union(TrustedNonTeamMemberLogInfo._field_names_) TrustedNonTeamMemberLogInfo._fields_ = [ - ( - "trusted_non_team_member_type", - TrustedNonTeamMemberLogInfo.trusted_non_team_member_type.validator, - ), - ("team", TrustedNonTeamMemberLogInfo.team.validator), + ('trusted_non_team_member_type', TrustedNonTeamMemberLogInfo.trusted_non_team_member_type.validator), + ('team', TrustedNonTeamMemberLogInfo.team.validator), ] -TrustedNonTeamMemberLogInfo._all_fields_ = ( - UserLogInfo._all_fields_ + TrustedNonTeamMemberLogInfo._fields_ -) +TrustedNonTeamMemberLogInfo._all_fields_ = UserLogInfo._all_fields_ + TrustedNonTeamMemberLogInfo._fields_ TrustedNonTeamMemberType._enterprise_admin_validator = bv.Void() TrustedNonTeamMemberType._multi_instance_admin_validator = bv.Void() TrustedNonTeamMemberType._other_validator = bv.Void() TrustedNonTeamMemberType._tagmap = { - "enterprise_admin": TrustedNonTeamMemberType._enterprise_admin_validator, - "multi_instance_admin": TrustedNonTeamMemberType._multi_instance_admin_validator, - "other": TrustedNonTeamMemberType._other_validator, + 'enterprise_admin': TrustedNonTeamMemberType._enterprise_admin_validator, + 'multi_instance_admin': TrustedNonTeamMemberType._multi_instance_admin_validator, + 'other': TrustedNonTeamMemberType._other_validator, } -TrustedNonTeamMemberType.enterprise_admin = TrustedNonTeamMemberType("enterprise_admin") -TrustedNonTeamMemberType.multi_instance_admin = TrustedNonTeamMemberType("multi_instance_admin") -TrustedNonTeamMemberType.other = TrustedNonTeamMemberType("other") +TrustedNonTeamMemberType.enterprise_admin = TrustedNonTeamMemberType('enterprise_admin') +TrustedNonTeamMemberType.multi_instance_admin = TrustedNonTeamMemberType('multi_instance_admin') +TrustedNonTeamMemberType.other = TrustedNonTeamMemberType('other') TrustedTeamsRequestAction._accepted_validator = bv.Void() TrustedTeamsRequestAction._declined_validator = bv.Void() @@ -117038,337 +108711,281 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): TrustedTeamsRequestAction._revoked_validator = bv.Void() TrustedTeamsRequestAction._other_validator = bv.Void() TrustedTeamsRequestAction._tagmap = { - "accepted": TrustedTeamsRequestAction._accepted_validator, - "declined": TrustedTeamsRequestAction._declined_validator, - "expired": TrustedTeamsRequestAction._expired_validator, - "invited": TrustedTeamsRequestAction._invited_validator, - "revoked": TrustedTeamsRequestAction._revoked_validator, - "other": TrustedTeamsRequestAction._other_validator, + 'accepted': TrustedTeamsRequestAction._accepted_validator, + 'declined': TrustedTeamsRequestAction._declined_validator, + 'expired': TrustedTeamsRequestAction._expired_validator, + 'invited': TrustedTeamsRequestAction._invited_validator, + 'revoked': TrustedTeamsRequestAction._revoked_validator, + 'other': TrustedTeamsRequestAction._other_validator, } -TrustedTeamsRequestAction.accepted = TrustedTeamsRequestAction("accepted") -TrustedTeamsRequestAction.declined = TrustedTeamsRequestAction("declined") -TrustedTeamsRequestAction.expired = TrustedTeamsRequestAction("expired") -TrustedTeamsRequestAction.invited = TrustedTeamsRequestAction("invited") -TrustedTeamsRequestAction.revoked = TrustedTeamsRequestAction("revoked") -TrustedTeamsRequestAction.other = TrustedTeamsRequestAction("other") +TrustedTeamsRequestAction.accepted = TrustedTeamsRequestAction('accepted') +TrustedTeamsRequestAction.declined = TrustedTeamsRequestAction('declined') +TrustedTeamsRequestAction.expired = TrustedTeamsRequestAction('expired') +TrustedTeamsRequestAction.invited = TrustedTeamsRequestAction('invited') +TrustedTeamsRequestAction.revoked = TrustedTeamsRequestAction('revoked') +TrustedTeamsRequestAction.other = TrustedTeamsRequestAction('other') TrustedTeamsRequestState._invited_validator = bv.Void() TrustedTeamsRequestState._linked_validator = bv.Void() TrustedTeamsRequestState._unlinked_validator = bv.Void() TrustedTeamsRequestState._other_validator = bv.Void() TrustedTeamsRequestState._tagmap = { - "invited": TrustedTeamsRequestState._invited_validator, - "linked": TrustedTeamsRequestState._linked_validator, - "unlinked": TrustedTeamsRequestState._unlinked_validator, - "other": TrustedTeamsRequestState._other_validator, + 'invited': TrustedTeamsRequestState._invited_validator, + 'linked': TrustedTeamsRequestState._linked_validator, + 'unlinked': TrustedTeamsRequestState._unlinked_validator, + 'other': TrustedTeamsRequestState._other_validator, } -TrustedTeamsRequestState.invited = TrustedTeamsRequestState("invited") -TrustedTeamsRequestState.linked = TrustedTeamsRequestState("linked") -TrustedTeamsRequestState.unlinked = TrustedTeamsRequestState("unlinked") -TrustedTeamsRequestState.other = TrustedTeamsRequestState("other") +TrustedTeamsRequestState.invited = TrustedTeamsRequestState('invited') +TrustedTeamsRequestState.linked = TrustedTeamsRequestState('linked') +TrustedTeamsRequestState.unlinked = TrustedTeamsRequestState('unlinked') +TrustedTeamsRequestState.other = TrustedTeamsRequestState('other') TwoAccountChangePolicyDetails.new_value.validator = TwoAccountPolicy_validator TwoAccountChangePolicyDetails.previous_value.validator = bv.Nullable(TwoAccountPolicy_validator) -TwoAccountChangePolicyDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +TwoAccountChangePolicyDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) TwoAccountChangePolicyDetails._all_fields_ = [ - ("new_value", TwoAccountChangePolicyDetails.new_value.validator), - ("previous_value", TwoAccountChangePolicyDetails.previous_value.validator), + ('new_value', TwoAccountChangePolicyDetails.new_value.validator), + ('previous_value', TwoAccountChangePolicyDetails.previous_value.validator), ] TwoAccountChangePolicyType.description.validator = bv.String() -TwoAccountChangePolicyType._all_field_names_ = set(["description"]) -TwoAccountChangePolicyType._all_fields_ = [ - ("description", TwoAccountChangePolicyType.description.validator) -] +TwoAccountChangePolicyType._all_field_names_ = set(['description']) +TwoAccountChangePolicyType._all_fields_ = [('description', TwoAccountChangePolicyType.description.validator)] TwoAccountPolicy._disabled_validator = bv.Void() TwoAccountPolicy._enabled_validator = bv.Void() TwoAccountPolicy._other_validator = bv.Void() TwoAccountPolicy._tagmap = { - "disabled": TwoAccountPolicy._disabled_validator, - "enabled": TwoAccountPolicy._enabled_validator, - "other": TwoAccountPolicy._other_validator, + 'disabled': TwoAccountPolicy._disabled_validator, + 'enabled': TwoAccountPolicy._enabled_validator, + 'other': TwoAccountPolicy._other_validator, } -TwoAccountPolicy.disabled = TwoAccountPolicy("disabled") -TwoAccountPolicy.enabled = TwoAccountPolicy("enabled") -TwoAccountPolicy.other = TwoAccountPolicy("other") +TwoAccountPolicy.disabled = TwoAccountPolicy('disabled') +TwoAccountPolicy.enabled = TwoAccountPolicy('enabled') +TwoAccountPolicy.other = TwoAccountPolicy('other') UndoNamingConventionDetails._all_field_names_ = set([]) UndoNamingConventionDetails._all_fields_ = [] UndoNamingConventionType.description.validator = bv.String() -UndoNamingConventionType._all_field_names_ = set(["description"]) -UndoNamingConventionType._all_fields_ = [ - ("description", UndoNamingConventionType.description.validator) -] +UndoNamingConventionType._all_field_names_ = set(['description']) +UndoNamingConventionType._all_fields_ = [('description', UndoNamingConventionType.description.validator)] UndoOrganizeFolderWithTidyDetails._all_field_names_ = set([]) UndoOrganizeFolderWithTidyDetails._all_fields_ = [] UndoOrganizeFolderWithTidyType.description.validator = bv.String() -UndoOrganizeFolderWithTidyType._all_field_names_ = set(["description"]) -UndoOrganizeFolderWithTidyType._all_fields_ = [ - ("description", UndoOrganizeFolderWithTidyType.description.validator) -] +UndoOrganizeFolderWithTidyType._all_field_names_ = set(['description']) +UndoOrganizeFolderWithTidyType._all_fields_ = [('description', UndoOrganizeFolderWithTidyType.description.validator)] UserLinkedAppLogInfo._field_names_ = set([]) -UserLinkedAppLogInfo._all_field_names_ = AppLogInfo._all_field_names_.union( - UserLinkedAppLogInfo._field_names_ -) +UserLinkedAppLogInfo._all_field_names_ = AppLogInfo._all_field_names_.union(UserLinkedAppLogInfo._field_names_) UserLinkedAppLogInfo._fields_ = [] UserLinkedAppLogInfo._all_fields_ = AppLogInfo._all_fields_ + UserLinkedAppLogInfo._fields_ UserNameLogInfo.given_name.validator = bv.String() UserNameLogInfo.surname.validator = bv.String() UserNameLogInfo.locale.validator = bv.Nullable(bv.String()) -UserNameLogInfo._all_field_names_ = set( - [ - "given_name", - "surname", - "locale", - ] -) +UserNameLogInfo._all_field_names_ = set([ + 'given_name', + 'surname', + 'locale', +]) UserNameLogInfo._all_fields_ = [ - ("given_name", UserNameLogInfo.given_name.validator), - ("surname", UserNameLogInfo.surname.validator), - ("locale", UserNameLogInfo.locale.validator), + ('given_name', UserNameLogInfo.given_name.validator), + ('surname', UserNameLogInfo.surname.validator), + ('locale', UserNameLogInfo.locale.validator), ] UserOrTeamLinkedAppLogInfo._field_names_ = set([]) -UserOrTeamLinkedAppLogInfo._all_field_names_ = AppLogInfo._all_field_names_.union( - UserOrTeamLinkedAppLogInfo._field_names_ -) +UserOrTeamLinkedAppLogInfo._all_field_names_ = AppLogInfo._all_field_names_.union(UserOrTeamLinkedAppLogInfo._field_names_) UserOrTeamLinkedAppLogInfo._fields_ = [] -UserOrTeamLinkedAppLogInfo._all_fields_ = ( - AppLogInfo._all_fields_ + UserOrTeamLinkedAppLogInfo._fields_ -) +UserOrTeamLinkedAppLogInfo._all_fields_ = AppLogInfo._all_fields_ + UserOrTeamLinkedAppLogInfo._fields_ UserTagsAddedDetails.values.validator = bv.List(bv.String()) -UserTagsAddedDetails._all_field_names_ = set(["values"]) -UserTagsAddedDetails._all_fields_ = [("values", UserTagsAddedDetails.values.validator)] +UserTagsAddedDetails._all_field_names_ = set(['values']) +UserTagsAddedDetails._all_fields_ = [('values', UserTagsAddedDetails.values.validator)] UserTagsAddedType.description.validator = bv.String() -UserTagsAddedType._all_field_names_ = set(["description"]) -UserTagsAddedType._all_fields_ = [("description", UserTagsAddedType.description.validator)] +UserTagsAddedType._all_field_names_ = set(['description']) +UserTagsAddedType._all_fields_ = [('description', UserTagsAddedType.description.validator)] UserTagsRemovedDetails.values.validator = bv.List(bv.String()) -UserTagsRemovedDetails._all_field_names_ = set(["values"]) -UserTagsRemovedDetails._all_fields_ = [("values", UserTagsRemovedDetails.values.validator)] +UserTagsRemovedDetails._all_field_names_ = set(['values']) +UserTagsRemovedDetails._all_fields_ = [('values', UserTagsRemovedDetails.values.validator)] UserTagsRemovedType.description.validator = bv.String() -UserTagsRemovedType._all_field_names_ = set(["description"]) -UserTagsRemovedType._all_fields_ = [("description", UserTagsRemovedType.description.validator)] +UserTagsRemovedType._all_field_names_ = set(['description']) +UserTagsRemovedType._all_fields_ = [('description', UserTagsRemovedType.description.validator)] ViewerInfoPolicyChangedDetails.previous_value.validator = PassPolicy_validator ViewerInfoPolicyChangedDetails.new_value.validator = PassPolicy_validator -ViewerInfoPolicyChangedDetails._all_field_names_ = set( - [ - "previous_value", - "new_value", - ] -) +ViewerInfoPolicyChangedDetails._all_field_names_ = set([ + 'previous_value', + 'new_value', +]) ViewerInfoPolicyChangedDetails._all_fields_ = [ - ("previous_value", ViewerInfoPolicyChangedDetails.previous_value.validator), - ("new_value", ViewerInfoPolicyChangedDetails.new_value.validator), + ('previous_value', ViewerInfoPolicyChangedDetails.previous_value.validator), + ('new_value', ViewerInfoPolicyChangedDetails.new_value.validator), ] ViewerInfoPolicyChangedType.description.validator = bv.String() -ViewerInfoPolicyChangedType._all_field_names_ = set(["description"]) -ViewerInfoPolicyChangedType._all_fields_ = [ - ("description", ViewerInfoPolicyChangedType.description.validator) -] +ViewerInfoPolicyChangedType._all_field_names_ = set(['description']) +ViewerInfoPolicyChangedType._all_fields_ = [('description', ViewerInfoPolicyChangedType.description.validator)] WatermarkingPolicy._disabled_validator = bv.Void() WatermarkingPolicy._enabled_validator = bv.Void() WatermarkingPolicy._other_validator = bv.Void() WatermarkingPolicy._tagmap = { - "disabled": WatermarkingPolicy._disabled_validator, - "enabled": WatermarkingPolicy._enabled_validator, - "other": WatermarkingPolicy._other_validator, + 'disabled': WatermarkingPolicy._disabled_validator, + 'enabled': WatermarkingPolicy._enabled_validator, + 'other': WatermarkingPolicy._other_validator, } -WatermarkingPolicy.disabled = WatermarkingPolicy("disabled") -WatermarkingPolicy.enabled = WatermarkingPolicy("enabled") -WatermarkingPolicy.other = WatermarkingPolicy("other") +WatermarkingPolicy.disabled = WatermarkingPolicy('disabled') +WatermarkingPolicy.enabled = WatermarkingPolicy('enabled') +WatermarkingPolicy.other = WatermarkingPolicy('other') WatermarkingPolicyChangedDetails.new_value.validator = WatermarkingPolicy_validator WatermarkingPolicyChangedDetails.previous_value.validator = WatermarkingPolicy_validator -WatermarkingPolicyChangedDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +WatermarkingPolicyChangedDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) WatermarkingPolicyChangedDetails._all_fields_ = [ - ("new_value", WatermarkingPolicyChangedDetails.new_value.validator), - ("previous_value", WatermarkingPolicyChangedDetails.previous_value.validator), + ('new_value', WatermarkingPolicyChangedDetails.new_value.validator), + ('previous_value', WatermarkingPolicyChangedDetails.previous_value.validator), ] WatermarkingPolicyChangedType.description.validator = bv.String() -WatermarkingPolicyChangedType._all_field_names_ = set(["description"]) -WatermarkingPolicyChangedType._all_fields_ = [ - ("description", WatermarkingPolicyChangedType.description.validator) -] +WatermarkingPolicyChangedType._all_field_names_ = set(['description']) +WatermarkingPolicyChangedType._all_fields_ = [('description', WatermarkingPolicyChangedType.description.validator)] WebDeviceSessionLogInfo.session_info.validator = bv.Nullable(WebSessionLogInfo_validator) WebDeviceSessionLogInfo.user_agent.validator = bv.String() WebDeviceSessionLogInfo.os.validator = bv.String() WebDeviceSessionLogInfo.browser.validator = bv.String() -WebDeviceSessionLogInfo._field_names_ = set( - [ - "session_info", - "user_agent", - "os", - "browser", - ] -) -WebDeviceSessionLogInfo._all_field_names_ = DeviceSessionLogInfo._all_field_names_.union( - WebDeviceSessionLogInfo._field_names_ -) +WebDeviceSessionLogInfo._field_names_ = set([ + 'session_info', + 'user_agent', + 'os', + 'browser', +]) +WebDeviceSessionLogInfo._all_field_names_ = DeviceSessionLogInfo._all_field_names_.union(WebDeviceSessionLogInfo._field_names_) WebDeviceSessionLogInfo._fields_ = [ - ("session_info", WebDeviceSessionLogInfo.session_info.validator), - ("user_agent", WebDeviceSessionLogInfo.user_agent.validator), - ("os", WebDeviceSessionLogInfo.os.validator), - ("browser", WebDeviceSessionLogInfo.browser.validator), + ('session_info', WebDeviceSessionLogInfo.session_info.validator), + ('user_agent', WebDeviceSessionLogInfo.user_agent.validator), + ('os', WebDeviceSessionLogInfo.os.validator), + ('browser', WebDeviceSessionLogInfo.browser.validator), ] -WebDeviceSessionLogInfo._all_fields_ = ( - DeviceSessionLogInfo._all_fields_ + WebDeviceSessionLogInfo._fields_ -) +WebDeviceSessionLogInfo._all_fields_ = DeviceSessionLogInfo._all_fields_ + WebDeviceSessionLogInfo._fields_ WebSessionLogInfo._field_names_ = set([]) -WebSessionLogInfo._all_field_names_ = SessionLogInfo._all_field_names_.union( - WebSessionLogInfo._field_names_ -) +WebSessionLogInfo._all_field_names_ = SessionLogInfo._all_field_names_.union(WebSessionLogInfo._field_names_) WebSessionLogInfo._fields_ = [] WebSessionLogInfo._all_fields_ = SessionLogInfo._all_fields_ + WebSessionLogInfo._fields_ WebSessionsChangeActiveSessionLimitDetails.previous_value.validator = bv.String() WebSessionsChangeActiveSessionLimitDetails.new_value.validator = bv.String() -WebSessionsChangeActiveSessionLimitDetails._all_field_names_ = set( - [ - "previous_value", - "new_value", - ] -) +WebSessionsChangeActiveSessionLimitDetails._all_field_names_ = set([ + 'previous_value', + 'new_value', +]) WebSessionsChangeActiveSessionLimitDetails._all_fields_ = [ - ( - "previous_value", - WebSessionsChangeActiveSessionLimitDetails.previous_value.validator, - ), - ("new_value", WebSessionsChangeActiveSessionLimitDetails.new_value.validator), + ('previous_value', WebSessionsChangeActiveSessionLimitDetails.previous_value.validator), + ('new_value', WebSessionsChangeActiveSessionLimitDetails.new_value.validator), ] WebSessionsChangeActiveSessionLimitType.description.validator = bv.String() -WebSessionsChangeActiveSessionLimitType._all_field_names_ = set(["description"]) -WebSessionsChangeActiveSessionLimitType._all_fields_ = [ - ("description", WebSessionsChangeActiveSessionLimitType.description.validator) -] - -WebSessionsChangeFixedLengthPolicyDetails.new_value.validator = bv.Nullable( - WebSessionsFixedLengthPolicy_validator -) -WebSessionsChangeFixedLengthPolicyDetails.previous_value.validator = bv.Nullable( - WebSessionsFixedLengthPolicy_validator -) -WebSessionsChangeFixedLengthPolicyDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +WebSessionsChangeActiveSessionLimitType._all_field_names_ = set(['description']) +WebSessionsChangeActiveSessionLimitType._all_fields_ = [('description', WebSessionsChangeActiveSessionLimitType.description.validator)] + +WebSessionsChangeFixedLengthPolicyDetails.new_value.validator = bv.Nullable(WebSessionsFixedLengthPolicy_validator) +WebSessionsChangeFixedLengthPolicyDetails.previous_value.validator = bv.Nullable(WebSessionsFixedLengthPolicy_validator) +WebSessionsChangeFixedLengthPolicyDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) WebSessionsChangeFixedLengthPolicyDetails._all_fields_ = [ - ("new_value", WebSessionsChangeFixedLengthPolicyDetails.new_value.validator), - ( - "previous_value", - WebSessionsChangeFixedLengthPolicyDetails.previous_value.validator, - ), + ('new_value', WebSessionsChangeFixedLengthPolicyDetails.new_value.validator), + ('previous_value', WebSessionsChangeFixedLengthPolicyDetails.previous_value.validator), ] WebSessionsChangeFixedLengthPolicyType.description.validator = bv.String() -WebSessionsChangeFixedLengthPolicyType._all_field_names_ = set(["description"]) -WebSessionsChangeFixedLengthPolicyType._all_fields_ = [ - ("description", WebSessionsChangeFixedLengthPolicyType.description.validator) -] - -WebSessionsChangeIdleLengthPolicyDetails.new_value.validator = bv.Nullable( - WebSessionsIdleLengthPolicy_validator -) -WebSessionsChangeIdleLengthPolicyDetails.previous_value.validator = bv.Nullable( - WebSessionsIdleLengthPolicy_validator -) -WebSessionsChangeIdleLengthPolicyDetails._all_field_names_ = set( - [ - "new_value", - "previous_value", - ] -) +WebSessionsChangeFixedLengthPolicyType._all_field_names_ = set(['description']) +WebSessionsChangeFixedLengthPolicyType._all_fields_ = [('description', WebSessionsChangeFixedLengthPolicyType.description.validator)] + +WebSessionsChangeIdleLengthPolicyDetails.new_value.validator = bv.Nullable(WebSessionsIdleLengthPolicy_validator) +WebSessionsChangeIdleLengthPolicyDetails.previous_value.validator = bv.Nullable(WebSessionsIdleLengthPolicy_validator) +WebSessionsChangeIdleLengthPolicyDetails._all_field_names_ = set([ + 'new_value', + 'previous_value', +]) WebSessionsChangeIdleLengthPolicyDetails._all_fields_ = [ - ("new_value", WebSessionsChangeIdleLengthPolicyDetails.new_value.validator), - ( - "previous_value", - WebSessionsChangeIdleLengthPolicyDetails.previous_value.validator, - ), + ('new_value', WebSessionsChangeIdleLengthPolicyDetails.new_value.validator), + ('previous_value', WebSessionsChangeIdleLengthPolicyDetails.previous_value.validator), ] WebSessionsChangeIdleLengthPolicyType.description.validator = bv.String() -WebSessionsChangeIdleLengthPolicyType._all_field_names_ = set(["description"]) -WebSessionsChangeIdleLengthPolicyType._all_fields_ = [ - ("description", WebSessionsChangeIdleLengthPolicyType.description.validator) -] +WebSessionsChangeIdleLengthPolicyType._all_field_names_ = set(['description']) +WebSessionsChangeIdleLengthPolicyType._all_fields_ = [('description', WebSessionsChangeIdleLengthPolicyType.description.validator)] WebSessionsFixedLengthPolicy._defined_validator = DurationLogInfo_validator WebSessionsFixedLengthPolicy._undefined_validator = bv.Void() WebSessionsFixedLengthPolicy._other_validator = bv.Void() WebSessionsFixedLengthPolicy._tagmap = { - "defined": WebSessionsFixedLengthPolicy._defined_validator, - "undefined": WebSessionsFixedLengthPolicy._undefined_validator, - "other": WebSessionsFixedLengthPolicy._other_validator, + 'defined': WebSessionsFixedLengthPolicy._defined_validator, + 'undefined': WebSessionsFixedLengthPolicy._undefined_validator, + 'other': WebSessionsFixedLengthPolicy._other_validator, } -WebSessionsFixedLengthPolicy.undefined = WebSessionsFixedLengthPolicy("undefined") -WebSessionsFixedLengthPolicy.other = WebSessionsFixedLengthPolicy("other") +WebSessionsFixedLengthPolicy.undefined = WebSessionsFixedLengthPolicy('undefined') +WebSessionsFixedLengthPolicy.other = WebSessionsFixedLengthPolicy('other') WebSessionsIdleLengthPolicy._defined_validator = DurationLogInfo_validator WebSessionsIdleLengthPolicy._undefined_validator = bv.Void() WebSessionsIdleLengthPolicy._other_validator = bv.Void() WebSessionsIdleLengthPolicy._tagmap = { - "defined": WebSessionsIdleLengthPolicy._defined_validator, - "undefined": WebSessionsIdleLengthPolicy._undefined_validator, - "other": WebSessionsIdleLengthPolicy._other_validator, + 'defined': WebSessionsIdleLengthPolicy._defined_validator, + 'undefined': WebSessionsIdleLengthPolicy._undefined_validator, + 'other': WebSessionsIdleLengthPolicy._other_validator, } -WebSessionsIdleLengthPolicy.undefined = WebSessionsIdleLengthPolicy("undefined") -WebSessionsIdleLengthPolicy.other = WebSessionsIdleLengthPolicy("other") +WebSessionsIdleLengthPolicy.undefined = WebSessionsIdleLengthPolicy('undefined') +WebSessionsIdleLengthPolicy.other = WebSessionsIdleLengthPolicy('other') GetTeamEventsArg.limit.default = 1000 get_events = bb.Route( - "get_events", + 'get_events', 1, False, GetTeamEventsArg_validator, GetTeamEventsResult_validator, GetTeamEventsError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) get_events_continue = bb.Route( - "get_events/continue", + 'get_events/continue', 1, False, GetTeamEventsContinueArg_validator, GetTeamEventsResult_validator, GetTeamEventsContinueError_validator, - {"auth": "team", "host": "api", "style": "rpc"}, + {'auth': 'team', + 'host': 'api', + 'style': 'rpc'}, ) ROUTES = { - "get_events": get_events, - "get_events/continue": get_events_continue, + 'get_events': get_events, + 'get_events/continue': get_events_continue, } + diff --git a/dropbox/team_policies.py b/dropbox/team_policies.py index acef2217..0fea2fc0 100644 --- a/dropbox/team_policies.py +++ b/dropbox/team_policies.py @@ -7,7 +7,6 @@ from stone.backends.python_rsrc import stone_base as bb from stone.backends.python_rsrc import stone_validators as bv - class CameraUploadsPolicyState(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -20,7 +19,7 @@ class CameraUploadsPolicyState(bb.Union): Background camera uploads are allowed. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -34,7 +33,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == "disabled" + return self._tag == 'disabled' def is_enabled(self): """ @@ -42,7 +41,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == "enabled" + return self._tag == 'enabled' def is_other(self): """ @@ -50,17 +49,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(CameraUploadsPolicyState, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(CameraUploadsPolicyState, self)._process_custom_annotations(annotation_type, field_path, processor) CameraUploadsPolicyState_validator = bv.Union(CameraUploadsPolicyState) - class ComputerBackupPolicyState(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -76,7 +71,7 @@ class ComputerBackupPolicyState(bb.Union): teams. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -92,7 +87,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == "disabled" + return self._tag == 'disabled' def is_enabled(self): """ @@ -100,7 +95,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == "enabled" + return self._tag == 'enabled' def is_default(self): """ @@ -108,7 +103,7 @@ def is_default(self): :rtype: bool """ - return self._tag == "default" + return self._tag == 'default' def is_other(self): """ @@ -116,17 +111,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ComputerBackupPolicyState, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ComputerBackupPolicyState, self)._process_custom_annotations(annotation_type, field_path, processor) ComputerBackupPolicyState_validator = bv.Union(ComputerBackupPolicyState) - class DefaultLinkExpirationDaysPolicy(bb.Union): """ Policy governing default expiration date for new links shared outside the @@ -154,7 +145,7 @@ class DefaultLinkExpirationDaysPolicy(bb.Union): New links shared outside the team default to expire in 365 days. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition none = None # Attribute is overwritten below the class definition @@ -180,7 +171,7 @@ def is_none(self): :rtype: bool """ - return self._tag == "none" + return self._tag == 'none' def is_day_1(self): """ @@ -188,7 +179,7 @@ def is_day_1(self): :rtype: bool """ - return self._tag == "day_1" + return self._tag == 'day_1' def is_day_3(self): """ @@ -196,7 +187,7 @@ def is_day_3(self): :rtype: bool """ - return self._tag == "day_3" + return self._tag == 'day_3' def is_day_7(self): """ @@ -204,7 +195,7 @@ def is_day_7(self): :rtype: bool """ - return self._tag == "day_7" + return self._tag == 'day_7' def is_day_30(self): """ @@ -212,7 +203,7 @@ def is_day_30(self): :rtype: bool """ - return self._tag == "day_30" + return self._tag == 'day_30' def is_day_90(self): """ @@ -220,7 +211,7 @@ def is_day_90(self): :rtype: bool """ - return self._tag == "day_90" + return self._tag == 'day_90' def is_day_180(self): """ @@ -228,7 +219,7 @@ def is_day_180(self): :rtype: bool """ - return self._tag == "day_180" + return self._tag == 'day_180' def is_year_1(self): """ @@ -236,7 +227,7 @@ def is_year_1(self): :rtype: bool """ - return self._tag == "year_1" + return self._tag == 'year_1' def is_other(self): """ @@ -244,17 +235,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DefaultLinkExpirationDaysPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DefaultLinkExpirationDaysPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) DefaultLinkExpirationDaysPolicy_validator = bv.Union(DefaultLinkExpirationDaysPolicy) - class EmmState(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -269,7 +256,7 @@ class EmmState(bb.Union): Emm token is required. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -285,7 +272,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == "disabled" + return self._tag == 'disabled' def is_optional(self): """ @@ -293,7 +280,7 @@ def is_optional(self): :rtype: bool """ - return self._tag == "optional" + return self._tag == 'optional' def is_required(self): """ @@ -301,7 +288,7 @@ def is_required(self): :rtype: bool """ - return self._tag == "required" + return self._tag == 'required' def is_other(self): """ @@ -309,15 +296,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): super(EmmState, self)._process_custom_annotations(annotation_type, field_path, processor) - EmmState_validator = bv.Union(EmmState) - class EnforceLinkPasswordPolicy(bb.Union): """ Policy governing whether new links shared outside the team require @@ -333,7 +318,7 @@ class EnforceLinkPasswordPolicy(bb.Union): New links shared outside the team require passwords. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition optional = None # Attribute is overwritten below the class definition @@ -347,7 +332,7 @@ def is_optional(self): :rtype: bool """ - return self._tag == "optional" + return self._tag == 'optional' def is_required(self): """ @@ -355,7 +340,7 @@ def is_required(self): :rtype: bool """ - return self._tag == "required" + return self._tag == 'required' def is_other(self): """ @@ -363,17 +348,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EnforceLinkPasswordPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(EnforceLinkPasswordPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) EnforceLinkPasswordPolicy_validator = bv.Union(EnforceLinkPasswordPolicy) - class ExternalDriveBackupPolicyState(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -388,7 +369,7 @@ class ExternalDriveBackupPolicyState(bb.Union): External Drive Backup default value based on team tier. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -404,7 +385,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == "disabled" + return self._tag == 'disabled' def is_enabled(self): """ @@ -412,7 +393,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == "enabled" + return self._tag == 'enabled' def is_default(self): """ @@ -420,7 +401,7 @@ def is_default(self): :rtype: bool """ - return self._tag == "default" + return self._tag == 'default' def is_other(self): """ @@ -428,17 +409,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ExternalDriveBackupPolicyState, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ExternalDriveBackupPolicyState, self)._process_custom_annotations(annotation_type, field_path, processor) ExternalDriveBackupPolicyState_validator = bv.Union(ExternalDriveBackupPolicyState) - class FileLockingPolicyState(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -451,7 +428,7 @@ class FileLockingPolicyState(bb.Union): File locking feature is allowed. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -465,7 +442,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == "disabled" + return self._tag == 'disabled' def is_enabled(self): """ @@ -473,7 +450,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == "enabled" + return self._tag == 'enabled' def is_other(self): """ @@ -481,17 +458,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileLockingPolicyState, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileLockingPolicyState, self)._process_custom_annotations(annotation_type, field_path, processor) FileLockingPolicyState_validator = bv.Union(FileLockingPolicyState) - class FileProviderMigrationPolicyState(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -510,7 +483,7 @@ class FileProviderMigrationPolicyState(bb.Union): team. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -528,7 +501,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == "disabled" + return self._tag == 'disabled' def is_enabled(self): """ @@ -536,7 +509,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == "enabled" + return self._tag == 'enabled' def is_default(self): """ @@ -544,7 +517,7 @@ def is_default(self): :rtype: bool """ - return self._tag == "default" + return self._tag == 'default' def is_immediate(self): """ @@ -552,7 +525,7 @@ def is_immediate(self): :rtype: bool """ - return self._tag == "immediate" + return self._tag == 'immediate' def is_other(self): """ @@ -560,17 +533,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileProviderMigrationPolicyState, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileProviderMigrationPolicyState, self)._process_custom_annotations(annotation_type, field_path, processor) FileProviderMigrationPolicyState_validator = bv.Union(FileProviderMigrationPolicyState) - class GroupCreation(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -595,7 +564,7 @@ def is_admins_and_members(self): :rtype: bool """ - return self._tag == "admins_and_members" + return self._tag == 'admins_and_members' def is_admins_only(self): """ @@ -603,17 +572,13 @@ def is_admins_only(self): :rtype: bool """ - return self._tag == "admins_only" + return self._tag == 'admins_only' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupCreation, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GroupCreation, self)._process_custom_annotations(annotation_type, field_path, processor) GroupCreation_validator = bv.Union(GroupCreation) - class OfficeAddInPolicy(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -626,7 +591,7 @@ class OfficeAddInPolicy(bb.Union): Office Add-In is enabled. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -640,7 +605,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == "disabled" + return self._tag == 'disabled' def is_enabled(self): """ @@ -648,7 +613,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == "enabled" + return self._tag == 'enabled' def is_other(self): """ @@ -656,17 +621,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(OfficeAddInPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(OfficeAddInPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) OfficeAddInPolicy_validator = bv.Union(OfficeAddInPolicy) - class PaperDefaultFolderPolicy(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -680,7 +641,7 @@ class PaperDefaultFolderPolicy(bb.Union): Invite only will be the default option when creating a folder in Paper. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition everyone_in_team = None # Attribute is overwritten below the class definition @@ -694,7 +655,7 @@ def is_everyone_in_team(self): :rtype: bool """ - return self._tag == "everyone_in_team" + return self._tag == 'everyone_in_team' def is_invite_only(self): """ @@ -702,7 +663,7 @@ def is_invite_only(self): :rtype: bool """ - return self._tag == "invite_only" + return self._tag == 'invite_only' def is_other(self): """ @@ -710,17 +671,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDefaultFolderPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperDefaultFolderPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) PaperDefaultFolderPolicy_validator = bv.Union(PaperDefaultFolderPolicy) - class PaperDeploymentPolicy(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -734,7 +691,7 @@ class PaperDeploymentPolicy(bb.Union): whitelisted, check 'is_paper_whitelisted' on 'account/info'. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition full = None # Attribute is overwritten below the class definition @@ -748,7 +705,7 @@ def is_full(self): :rtype: bool """ - return self._tag == "full" + return self._tag == 'full' def is_partial(self): """ @@ -756,7 +713,7 @@ def is_partial(self): :rtype: bool """ - return self._tag == "partial" + return self._tag == 'partial' def is_other(self): """ @@ -764,17 +721,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDeploymentPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperDeploymentPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) PaperDeploymentPolicy_validator = bv.Union(PaperDeploymentPolicy) - class PaperDesktopPolicy(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -787,7 +740,7 @@ class PaperDesktopPolicy(bb.Union): Allow team members to use Paper Desktop. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -801,7 +754,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == "disabled" + return self._tag == 'disabled' def is_enabled(self): """ @@ -809,7 +762,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == "enabled" + return self._tag == 'enabled' def is_other(self): """ @@ -817,17 +770,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDesktopPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperDesktopPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) PaperDesktopPolicy_validator = bv.Union(PaperDesktopPolicy) - class PaperEnabledPolicy(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -842,7 +791,7 @@ class PaperEnabledPolicy(bb.Union): Unspecified policy. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -858,7 +807,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == "disabled" + return self._tag == 'disabled' def is_enabled(self): """ @@ -866,7 +815,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == "enabled" + return self._tag == 'enabled' def is_unspecified(self): """ @@ -874,7 +823,7 @@ def is_unspecified(self): :rtype: bool """ - return self._tag == "unspecified" + return self._tag == 'unspecified' def is_other(self): """ @@ -882,17 +831,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperEnabledPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperEnabledPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) PaperEnabledPolicy_validator = bv.Union(PaperEnabledPolicy) - class PasswordControlMode(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -905,7 +850,7 @@ class PasswordControlMode(bb.Union): Password is enabled. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -919,7 +864,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == "disabled" + return self._tag == 'disabled' def is_enabled(self): """ @@ -927,7 +872,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == "enabled" + return self._tag == 'enabled' def is_other(self): """ @@ -935,17 +880,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PasswordControlMode, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PasswordControlMode, self)._process_custom_annotations(annotation_type, field_path, processor) PasswordControlMode_validator = bv.Union(PasswordControlMode) - class PasswordStrengthPolicy(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -964,7 +905,7 @@ class PasswordStrengthPolicy(bb.Union): the value must be kept as is for backwards compatability. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition minimal_requirements = None # Attribute is overwritten below the class definition @@ -980,7 +921,7 @@ def is_minimal_requirements(self): :rtype: bool """ - return self._tag == "minimal_requirements" + return self._tag == 'minimal_requirements' def is_moderate_password(self): """ @@ -988,7 +929,7 @@ def is_moderate_password(self): :rtype: bool """ - return self._tag == "moderate_password" + return self._tag == 'moderate_password' def is_strong_password(self): """ @@ -996,7 +937,7 @@ def is_strong_password(self): :rtype: bool """ - return self._tag == "strong_password" + return self._tag == 'strong_password' def is_other(self): """ @@ -1004,17 +945,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PasswordStrengthPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PasswordStrengthPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) PasswordStrengthPolicy_validator = bv.Union(PasswordStrengthPolicy) - class RolloutMethod(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -1043,7 +980,7 @@ def is_unlink_all(self): :rtype: bool """ - return self._tag == "unlink_all" + return self._tag == 'unlink_all' def is_unlink_most_inactive(self): """ @@ -1051,7 +988,7 @@ def is_unlink_most_inactive(self): :rtype: bool """ - return self._tag == "unlink_most_inactive" + return self._tag == 'unlink_most_inactive' def is_add_member_to_exceptions(self): """ @@ -1059,17 +996,13 @@ def is_add_member_to_exceptions(self): :rtype: bool """ - return self._tag == "add_member_to_exceptions" + return self._tag == 'add_member_to_exceptions' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RolloutMethod, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(RolloutMethod, self)._process_custom_annotations(annotation_type, field_path, processor) RolloutMethod_validator = bv.Union(RolloutMethod) - class SharedFolderBlanketLinkRestrictionPolicy(bb.Union): """ Policy governing whether shared folder membership is required to access @@ -1086,7 +1019,7 @@ class SharedFolderBlanketLinkRestrictionPolicy(bb.Union): Anyone can access folder content via shared link. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition members = None # Attribute is overwritten below the class definition @@ -1100,7 +1033,7 @@ def is_members(self): :rtype: bool """ - return self._tag == "members" + return self._tag == 'members' def is_anyone(self): """ @@ -1108,7 +1041,7 @@ def is_anyone(self): :rtype: bool """ - return self._tag == "anyone" + return self._tag == 'anyone' def is_other(self): """ @@ -1116,18 +1049,12 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedFolderBlanketLinkRestrictionPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - - -SharedFolderBlanketLinkRestrictionPolicy_validator = bv.Union( - SharedFolderBlanketLinkRestrictionPolicy -) + super(SharedFolderBlanketLinkRestrictionPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) +SharedFolderBlanketLinkRestrictionPolicy_validator = bv.Union(SharedFolderBlanketLinkRestrictionPolicy) class SharedFolderJoinPolicy(bb.Union): """ @@ -1144,7 +1071,7 @@ class SharedFolderJoinPolicy(bb.Union): outside the team. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition from_team_only = None # Attribute is overwritten below the class definition @@ -1158,7 +1085,7 @@ def is_from_team_only(self): :rtype: bool """ - return self._tag == "from_team_only" + return self._tag == 'from_team_only' def is_from_anyone(self): """ @@ -1166,7 +1093,7 @@ def is_from_anyone(self): :rtype: bool """ - return self._tag == "from_anyone" + return self._tag == 'from_anyone' def is_other(self): """ @@ -1174,17 +1101,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedFolderJoinPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedFolderJoinPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) SharedFolderJoinPolicy_validator = bv.Union(SharedFolderJoinPolicy) - class SharedFolderMemberPolicy(bb.Union): """ Policy governing who can be a member of a folder shared by a team member. @@ -1202,7 +1125,7 @@ class SharedFolderMemberPolicy(bb.Union): by a team member. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition team = None # Attribute is overwritten below the class definition @@ -1218,7 +1141,7 @@ def is_team(self): :rtype: bool """ - return self._tag == "team" + return self._tag == 'team' def is_anyone(self): """ @@ -1226,7 +1149,7 @@ def is_anyone(self): :rtype: bool """ - return self._tag == "anyone" + return self._tag == 'anyone' def is_team_and_approved(self): """ @@ -1234,7 +1157,7 @@ def is_team_and_approved(self): :rtype: bool """ - return self._tag == "team_and_approved" + return self._tag == 'team_and_approved' def is_other(self): """ @@ -1242,17 +1165,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedFolderMemberPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedFolderMemberPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) SharedFolderMemberPolicy_validator = bv.Union(SharedFolderMemberPolicy) - class SharedLinkCreatePolicy(bb.Union): """ Policy governing the visibility of shared links. This policy can apply to @@ -1277,7 +1196,7 @@ class SharedLinkCreatePolicy(bb.Union): required to access the shared links unless overridden. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition default_public = None # Attribute is overwritten below the class definition @@ -1295,7 +1214,7 @@ def is_default_public(self): :rtype: bool """ - return self._tag == "default_public" + return self._tag == 'default_public' def is_default_team_only(self): """ @@ -1303,7 +1222,7 @@ def is_default_team_only(self): :rtype: bool """ - return self._tag == "default_team_only" + return self._tag == 'default_team_only' def is_team_only(self): """ @@ -1311,7 +1230,7 @@ def is_team_only(self): :rtype: bool """ - return self._tag == "team_only" + return self._tag == 'team_only' def is_default_no_one(self): """ @@ -1319,7 +1238,7 @@ def is_default_no_one(self): :rtype: bool """ - return self._tag == "default_no_one" + return self._tag == 'default_no_one' def is_other(self): """ @@ -1327,17 +1246,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkCreatePolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedLinkCreatePolicy, self)._process_custom_annotations(annotation_type, field_path, processor) SharedLinkCreatePolicy_validator = bv.Union(SharedLinkCreatePolicy) - class SharedLinkDefaultPermissionsPolicy(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -1352,7 +1267,7 @@ class SharedLinkDefaultPermissionsPolicy(bb.Union): Default to view-only when creating new sharing links """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition default = None # Attribute is overwritten below the class definition @@ -1368,7 +1283,7 @@ def is_default(self): :rtype: bool """ - return self._tag == "default" + return self._tag == 'default' def is_edit(self): """ @@ -1376,7 +1291,7 @@ def is_edit(self): :rtype: bool """ - return self._tag == "edit" + return self._tag == 'edit' def is_view(self): """ @@ -1384,7 +1299,7 @@ def is_view(self): :rtype: bool """ - return self._tag == "view" + return self._tag == 'view' def is_other(self): """ @@ -1392,17 +1307,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkDefaultPermissionsPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SharedLinkDefaultPermissionsPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) SharedLinkDefaultPermissionsPolicy_validator = bv.Union(SharedLinkDefaultPermissionsPolicy) - class ShowcaseDownloadPolicy(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -1415,7 +1326,7 @@ class ShowcaseDownloadPolicy(bb.Union): Allow files to be downloaded from Showcases. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -1429,7 +1340,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == "disabled" + return self._tag == 'disabled' def is_enabled(self): """ @@ -1437,7 +1348,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == "enabled" + return self._tag == 'enabled' def is_other(self): """ @@ -1445,17 +1356,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseDownloadPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ShowcaseDownloadPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) ShowcaseDownloadPolicy_validator = bv.Union(ShowcaseDownloadPolicy) - class ShowcaseEnabledPolicy(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -1468,7 +1375,7 @@ class ShowcaseEnabledPolicy(bb.Union): Showcase is enabled. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -1482,7 +1389,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == "disabled" + return self._tag == 'disabled' def is_enabled(self): """ @@ -1490,7 +1397,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == "enabled" + return self._tag == 'enabled' def is_other(self): """ @@ -1498,17 +1405,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseEnabledPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ShowcaseEnabledPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) ShowcaseEnabledPolicy_validator = bv.Union(ShowcaseEnabledPolicy) - class ShowcaseExternalSharingPolicy(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -1521,7 +1424,7 @@ class ShowcaseExternalSharingPolicy(bb.Union): Allow showcases to be shared with people not on the team. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -1535,7 +1438,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == "disabled" + return self._tag == 'disabled' def is_enabled(self): """ @@ -1543,7 +1446,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == "enabled" + return self._tag == 'enabled' def is_other(self): """ @@ -1551,17 +1454,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseExternalSharingPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(ShowcaseExternalSharingPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) ShowcaseExternalSharingPolicy_validator = bv.Union(ShowcaseExternalSharingPolicy) - class SmartSyncPolicy(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -1574,7 +1473,7 @@ class SmartSyncPolicy(bb.Union): The specified content will be synced as on-demand files by default. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition local = None # Attribute is overwritten below the class definition @@ -1588,7 +1487,7 @@ def is_local(self): :rtype: bool """ - return self._tag == "local" + return self._tag == 'local' def is_on_demand(self): """ @@ -1596,7 +1495,7 @@ def is_on_demand(self): :rtype: bool """ - return self._tag == "on_demand" + return self._tag == 'on_demand' def is_other(self): """ @@ -1604,17 +1503,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SmartSyncPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SmartSyncPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) SmartSyncPolicy_validator = bv.Union(SmartSyncPolicy) - class SmarterSmartSyncPolicyState(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -1627,7 +1522,7 @@ class SmarterSmartSyncPolicyState(bb.Union): Smarter Smart Sync feature is enabled. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -1641,7 +1536,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == "disabled" + return self._tag == 'disabled' def is_enabled(self): """ @@ -1649,7 +1544,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == "enabled" + return self._tag == 'enabled' def is_other(self): """ @@ -1657,17 +1552,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SmarterSmartSyncPolicyState, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SmarterSmartSyncPolicyState, self)._process_custom_annotations(annotation_type, field_path, processor) SmarterSmartSyncPolicyState_validator = bv.Union(SmarterSmartSyncPolicyState) - class SsoPolicy(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -1683,7 +1574,7 @@ class SsoPolicy(bb.Union): Users will be required to sign in with their single sign-on credentials. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -1699,7 +1590,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == "disabled" + return self._tag == 'disabled' def is_optional(self): """ @@ -1707,7 +1598,7 @@ def is_optional(self): :rtype: bool """ - return self._tag == "optional" + return self._tag == 'optional' def is_required(self): """ @@ -1715,7 +1606,7 @@ def is_required(self): :rtype: bool """ - return self._tag == "required" + return self._tag == 'required' def is_other(self): """ @@ -1723,15 +1614,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): super(SsoPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) - SsoPolicy_validator = bv.Union(SsoPolicy) - class SuggestMembersPolicy(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -1744,7 +1633,7 @@ class SuggestMembersPolicy(bb.Union): Suggest members is enabled. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -1758,7 +1647,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == "disabled" + return self._tag == 'disabled' def is_enabled(self): """ @@ -1766,7 +1655,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == "enabled" + return self._tag == 'enabled' def is_other(self): """ @@ -1774,17 +1663,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SuggestMembersPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SuggestMembersPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) SuggestMembersPolicy_validator = bv.Union(SuggestMembersPolicy) - class TeamMemberPolicies(bb.Struct): """ Policies governing team members. @@ -1809,23 +1694,21 @@ class TeamMemberPolicies(bb.Struct): """ __slots__ = [ - "_sharing_value", - "_emm_state_value", - "_office_addin_value", - "_suggest_members_policy_value", - "_top_level_content_policy_value", + '_sharing_value', + '_emm_state_value', + '_office_addin_value', + '_suggest_members_policy_value', + '_top_level_content_policy_value', ] _has_required_fields = True - def __init__( - self, - sharing=None, - emm_state=None, - office_addin=None, - suggest_members_policy=None, - top_level_content_policy=None, - ): + def __init__(self, + sharing=None, + emm_state=None, + office_addin=None, + suggest_members_policy=None, + top_level_content_policy=None): self._sharing_value = bb.NOT_SET self._emm_state_value = bb.NOT_SET self._office_addin_value = bb.NOT_SET @@ -1858,14 +1741,10 @@ def __init__( top_level_content_policy = bb.Attribute("top_level_content_policy", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMemberPolicies, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamMemberPolicies, self)._process_custom_annotations(annotation_type, field_path, processor) TeamMemberPolicies_validator = bv.Struct(TeamMemberPolicies) - class TeamSharingPolicies(bb.Struct): """ Policies governing sharing within and outside of the team. @@ -1889,29 +1768,27 @@ class TeamSharingPolicies(bb.Struct): """ __slots__ = [ - "_shared_folder_member_policy_value", - "_shared_folder_join_policy_value", - "_shared_link_create_policy_value", - "_group_creation_policy_value", - "_shared_folder_link_restriction_policy_value", - "_enforce_link_password_policy_value", - "_default_link_expiration_days_policy_value", - "_shared_link_default_permissions_policy_value", + '_shared_folder_member_policy_value', + '_shared_folder_join_policy_value', + '_shared_link_create_policy_value', + '_group_creation_policy_value', + '_shared_folder_link_restriction_policy_value', + '_enforce_link_password_policy_value', + '_default_link_expiration_days_policy_value', + '_shared_link_default_permissions_policy_value', ] _has_required_fields = True - def __init__( - self, - shared_folder_member_policy=None, - shared_folder_join_policy=None, - shared_link_create_policy=None, - group_creation_policy=None, - shared_folder_link_restriction_policy=None, - enforce_link_password_policy=None, - default_link_expiration_days_policy=None, - shared_link_default_permissions_policy=None, - ): + def __init__(self, + shared_folder_member_policy=None, + shared_folder_join_policy=None, + shared_link_create_policy=None, + group_creation_policy=None, + shared_folder_link_restriction_policy=None, + enforce_link_password_policy=None, + default_link_expiration_days_policy=None, + shared_link_default_permissions_policy=None): self._shared_folder_member_policy_value = bb.NOT_SET self._shared_folder_join_policy_value = bb.NOT_SET self._shared_link_create_policy_value = bb.NOT_SET @@ -1950,32 +1827,22 @@ def __init__( group_creation_policy = bb.Attribute("group_creation_policy", user_defined=True) # Instance attribute type: SharedFolderBlanketLinkRestrictionPolicy (validator is set below) - shared_folder_link_restriction_policy = bb.Attribute( - "shared_folder_link_restriction_policy", user_defined=True - ) + shared_folder_link_restriction_policy = bb.Attribute("shared_folder_link_restriction_policy", user_defined=True) # Instance attribute type: EnforceLinkPasswordPolicy (validator is set below) enforce_link_password_policy = bb.Attribute("enforce_link_password_policy", user_defined=True) # Instance attribute type: DefaultLinkExpirationDaysPolicy (validator is set below) - default_link_expiration_days_policy = bb.Attribute( - "default_link_expiration_days_policy", user_defined=True - ) + default_link_expiration_days_policy = bb.Attribute("default_link_expiration_days_policy", user_defined=True) # Instance attribute type: SharedLinkDefaultPermissionsPolicy (validator is set below) - shared_link_default_permissions_policy = bb.Attribute( - "shared_link_default_permissions_policy", user_defined=True - ) + shared_link_default_permissions_policy = bb.Attribute("shared_link_default_permissions_policy", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamSharingPolicies, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamSharingPolicies, self)._process_custom_annotations(annotation_type, field_path, processor) TeamSharingPolicies_validator = bv.Struct(TeamSharingPolicies) - class TopLevelContentPolicy(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -1989,7 +1856,7 @@ class TopLevelContentPolicy(bb.Union): space. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition admin_only = None # Attribute is overwritten below the class definition @@ -2003,7 +1870,7 @@ def is_admin_only(self): :rtype: bool """ - return self._tag == "admin_only" + return self._tag == 'admin_only' def is_everyone(self): """ @@ -2011,7 +1878,7 @@ def is_everyone(self): :rtype: bool """ - return self._tag == "everyone" + return self._tag == 'everyone' def is_other(self): """ @@ -2019,17 +1886,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TopLevelContentPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TopLevelContentPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) TopLevelContentPolicy_validator = bv.Union(TopLevelContentPolicy) - class TwoStepVerificationPolicy(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -2042,7 +1905,7 @@ class TwoStepVerificationPolicy(bb.Union): Disabled require two factor authorization. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition require_tfa_enable = None # Attribute is overwritten below the class definition @@ -2056,7 +1919,7 @@ def is_require_tfa_enable(self): :rtype: bool """ - return self._tag == "require_tfa_enable" + return self._tag == 'require_tfa_enable' def is_require_tfa_disable(self): """ @@ -2064,7 +1927,7 @@ def is_require_tfa_disable(self): :rtype: bool """ - return self._tag == "require_tfa_disable" + return self._tag == 'require_tfa_disable' def is_other(self): """ @@ -2072,17 +1935,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TwoStepVerificationPolicy, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TwoStepVerificationPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) TwoStepVerificationPolicy_validator = bv.Union(TwoStepVerificationPolicy) - class TwoStepVerificationState(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -2097,7 +1956,7 @@ class TwoStepVerificationState(bb.Union): Disabled require two factor authorization. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition required = None # Attribute is overwritten below the class definition @@ -2113,7 +1972,7 @@ def is_required(self): :rtype: bool """ - return self._tag == "required" + return self._tag == 'required' def is_optional(self): """ @@ -2121,7 +1980,7 @@ def is_optional(self): :rtype: bool """ - return self._tag == "optional" + return self._tag == 'optional' def is_disabled(self): """ @@ -2129,7 +1988,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == "disabled" + return self._tag == 'disabled' def is_other(self): """ @@ -2137,13 +1996,10 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TwoStepVerificationState, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TwoStepVerificationState, self)._process_custom_annotations(annotation_type, field_path, processor) TwoStepVerificationState_validator = bv.Union(TwoStepVerificationState) @@ -2151,30 +2007,30 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): CameraUploadsPolicyState._enabled_validator = bv.Void() CameraUploadsPolicyState._other_validator = bv.Void() CameraUploadsPolicyState._tagmap = { - "disabled": CameraUploadsPolicyState._disabled_validator, - "enabled": CameraUploadsPolicyState._enabled_validator, - "other": CameraUploadsPolicyState._other_validator, + 'disabled': CameraUploadsPolicyState._disabled_validator, + 'enabled': CameraUploadsPolicyState._enabled_validator, + 'other': CameraUploadsPolicyState._other_validator, } -CameraUploadsPolicyState.disabled = CameraUploadsPolicyState("disabled") -CameraUploadsPolicyState.enabled = CameraUploadsPolicyState("enabled") -CameraUploadsPolicyState.other = CameraUploadsPolicyState("other") +CameraUploadsPolicyState.disabled = CameraUploadsPolicyState('disabled') +CameraUploadsPolicyState.enabled = CameraUploadsPolicyState('enabled') +CameraUploadsPolicyState.other = CameraUploadsPolicyState('other') ComputerBackupPolicyState._disabled_validator = bv.Void() ComputerBackupPolicyState._enabled_validator = bv.Void() ComputerBackupPolicyState._default_validator = bv.Void() ComputerBackupPolicyState._other_validator = bv.Void() ComputerBackupPolicyState._tagmap = { - "disabled": ComputerBackupPolicyState._disabled_validator, - "enabled": ComputerBackupPolicyState._enabled_validator, - "default": ComputerBackupPolicyState._default_validator, - "other": ComputerBackupPolicyState._other_validator, + 'disabled': ComputerBackupPolicyState._disabled_validator, + 'enabled': ComputerBackupPolicyState._enabled_validator, + 'default': ComputerBackupPolicyState._default_validator, + 'other': ComputerBackupPolicyState._other_validator, } -ComputerBackupPolicyState.disabled = ComputerBackupPolicyState("disabled") -ComputerBackupPolicyState.enabled = ComputerBackupPolicyState("enabled") -ComputerBackupPolicyState.default = ComputerBackupPolicyState("default") -ComputerBackupPolicyState.other = ComputerBackupPolicyState("other") +ComputerBackupPolicyState.disabled = ComputerBackupPolicyState('disabled') +ComputerBackupPolicyState.enabled = ComputerBackupPolicyState('enabled') +ComputerBackupPolicyState.default = ComputerBackupPolicyState('default') +ComputerBackupPolicyState.other = ComputerBackupPolicyState('other') DefaultLinkExpirationDaysPolicy._none_validator = bv.Void() DefaultLinkExpirationDaysPolicy._day_1_validator = bv.Void() @@ -2186,84 +2042,84 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): DefaultLinkExpirationDaysPolicy._year_1_validator = bv.Void() DefaultLinkExpirationDaysPolicy._other_validator = bv.Void() DefaultLinkExpirationDaysPolicy._tagmap = { - "none": DefaultLinkExpirationDaysPolicy._none_validator, - "day_1": DefaultLinkExpirationDaysPolicy._day_1_validator, - "day_3": DefaultLinkExpirationDaysPolicy._day_3_validator, - "day_7": DefaultLinkExpirationDaysPolicy._day_7_validator, - "day_30": DefaultLinkExpirationDaysPolicy._day_30_validator, - "day_90": DefaultLinkExpirationDaysPolicy._day_90_validator, - "day_180": DefaultLinkExpirationDaysPolicy._day_180_validator, - "year_1": DefaultLinkExpirationDaysPolicy._year_1_validator, - "other": DefaultLinkExpirationDaysPolicy._other_validator, + 'none': DefaultLinkExpirationDaysPolicy._none_validator, + 'day_1': DefaultLinkExpirationDaysPolicy._day_1_validator, + 'day_3': DefaultLinkExpirationDaysPolicy._day_3_validator, + 'day_7': DefaultLinkExpirationDaysPolicy._day_7_validator, + 'day_30': DefaultLinkExpirationDaysPolicy._day_30_validator, + 'day_90': DefaultLinkExpirationDaysPolicy._day_90_validator, + 'day_180': DefaultLinkExpirationDaysPolicy._day_180_validator, + 'year_1': DefaultLinkExpirationDaysPolicy._year_1_validator, + 'other': DefaultLinkExpirationDaysPolicy._other_validator, } -DefaultLinkExpirationDaysPolicy.none = DefaultLinkExpirationDaysPolicy("none") -DefaultLinkExpirationDaysPolicy.day_1 = DefaultLinkExpirationDaysPolicy("day_1") -DefaultLinkExpirationDaysPolicy.day_3 = DefaultLinkExpirationDaysPolicy("day_3") -DefaultLinkExpirationDaysPolicy.day_7 = DefaultLinkExpirationDaysPolicy("day_7") -DefaultLinkExpirationDaysPolicy.day_30 = DefaultLinkExpirationDaysPolicy("day_30") -DefaultLinkExpirationDaysPolicy.day_90 = DefaultLinkExpirationDaysPolicy("day_90") -DefaultLinkExpirationDaysPolicy.day_180 = DefaultLinkExpirationDaysPolicy("day_180") -DefaultLinkExpirationDaysPolicy.year_1 = DefaultLinkExpirationDaysPolicy("year_1") -DefaultLinkExpirationDaysPolicy.other = DefaultLinkExpirationDaysPolicy("other") +DefaultLinkExpirationDaysPolicy.none = DefaultLinkExpirationDaysPolicy('none') +DefaultLinkExpirationDaysPolicy.day_1 = DefaultLinkExpirationDaysPolicy('day_1') +DefaultLinkExpirationDaysPolicy.day_3 = DefaultLinkExpirationDaysPolicy('day_3') +DefaultLinkExpirationDaysPolicy.day_7 = DefaultLinkExpirationDaysPolicy('day_7') +DefaultLinkExpirationDaysPolicy.day_30 = DefaultLinkExpirationDaysPolicy('day_30') +DefaultLinkExpirationDaysPolicy.day_90 = DefaultLinkExpirationDaysPolicy('day_90') +DefaultLinkExpirationDaysPolicy.day_180 = DefaultLinkExpirationDaysPolicy('day_180') +DefaultLinkExpirationDaysPolicy.year_1 = DefaultLinkExpirationDaysPolicy('year_1') +DefaultLinkExpirationDaysPolicy.other = DefaultLinkExpirationDaysPolicy('other') EmmState._disabled_validator = bv.Void() EmmState._optional_validator = bv.Void() EmmState._required_validator = bv.Void() EmmState._other_validator = bv.Void() EmmState._tagmap = { - "disabled": EmmState._disabled_validator, - "optional": EmmState._optional_validator, - "required": EmmState._required_validator, - "other": EmmState._other_validator, + 'disabled': EmmState._disabled_validator, + 'optional': EmmState._optional_validator, + 'required': EmmState._required_validator, + 'other': EmmState._other_validator, } -EmmState.disabled = EmmState("disabled") -EmmState.optional = EmmState("optional") -EmmState.required = EmmState("required") -EmmState.other = EmmState("other") +EmmState.disabled = EmmState('disabled') +EmmState.optional = EmmState('optional') +EmmState.required = EmmState('required') +EmmState.other = EmmState('other') EnforceLinkPasswordPolicy._optional_validator = bv.Void() EnforceLinkPasswordPolicy._required_validator = bv.Void() EnforceLinkPasswordPolicy._other_validator = bv.Void() EnforceLinkPasswordPolicy._tagmap = { - "optional": EnforceLinkPasswordPolicy._optional_validator, - "required": EnforceLinkPasswordPolicy._required_validator, - "other": EnforceLinkPasswordPolicy._other_validator, + 'optional': EnforceLinkPasswordPolicy._optional_validator, + 'required': EnforceLinkPasswordPolicy._required_validator, + 'other': EnforceLinkPasswordPolicy._other_validator, } -EnforceLinkPasswordPolicy.optional = EnforceLinkPasswordPolicy("optional") -EnforceLinkPasswordPolicy.required = EnforceLinkPasswordPolicy("required") -EnforceLinkPasswordPolicy.other = EnforceLinkPasswordPolicy("other") +EnforceLinkPasswordPolicy.optional = EnforceLinkPasswordPolicy('optional') +EnforceLinkPasswordPolicy.required = EnforceLinkPasswordPolicy('required') +EnforceLinkPasswordPolicy.other = EnforceLinkPasswordPolicy('other') ExternalDriveBackupPolicyState._disabled_validator = bv.Void() ExternalDriveBackupPolicyState._enabled_validator = bv.Void() ExternalDriveBackupPolicyState._default_validator = bv.Void() ExternalDriveBackupPolicyState._other_validator = bv.Void() ExternalDriveBackupPolicyState._tagmap = { - "disabled": ExternalDriveBackupPolicyState._disabled_validator, - "enabled": ExternalDriveBackupPolicyState._enabled_validator, - "default": ExternalDriveBackupPolicyState._default_validator, - "other": ExternalDriveBackupPolicyState._other_validator, + 'disabled': ExternalDriveBackupPolicyState._disabled_validator, + 'enabled': ExternalDriveBackupPolicyState._enabled_validator, + 'default': ExternalDriveBackupPolicyState._default_validator, + 'other': ExternalDriveBackupPolicyState._other_validator, } -ExternalDriveBackupPolicyState.disabled = ExternalDriveBackupPolicyState("disabled") -ExternalDriveBackupPolicyState.enabled = ExternalDriveBackupPolicyState("enabled") -ExternalDriveBackupPolicyState.default = ExternalDriveBackupPolicyState("default") -ExternalDriveBackupPolicyState.other = ExternalDriveBackupPolicyState("other") +ExternalDriveBackupPolicyState.disabled = ExternalDriveBackupPolicyState('disabled') +ExternalDriveBackupPolicyState.enabled = ExternalDriveBackupPolicyState('enabled') +ExternalDriveBackupPolicyState.default = ExternalDriveBackupPolicyState('default') +ExternalDriveBackupPolicyState.other = ExternalDriveBackupPolicyState('other') FileLockingPolicyState._disabled_validator = bv.Void() FileLockingPolicyState._enabled_validator = bv.Void() FileLockingPolicyState._other_validator = bv.Void() FileLockingPolicyState._tagmap = { - "disabled": FileLockingPolicyState._disabled_validator, - "enabled": FileLockingPolicyState._enabled_validator, - "other": FileLockingPolicyState._other_validator, + 'disabled': FileLockingPolicyState._disabled_validator, + 'enabled': FileLockingPolicyState._enabled_validator, + 'other': FileLockingPolicyState._other_validator, } -FileLockingPolicyState.disabled = FileLockingPolicyState("disabled") -FileLockingPolicyState.enabled = FileLockingPolicyState("enabled") -FileLockingPolicyState.other = FileLockingPolicyState("other") +FileLockingPolicyState.disabled = FileLockingPolicyState('disabled') +FileLockingPolicyState.enabled = FileLockingPolicyState('enabled') +FileLockingPolicyState.other = FileLockingPolicyState('other') FileProviderMigrationPolicyState._disabled_validator = bv.Void() FileProviderMigrationPolicyState._enabled_validator = bv.Void() @@ -2271,182 +2127,180 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): FileProviderMigrationPolicyState._immediate_validator = bv.Void() FileProviderMigrationPolicyState._other_validator = bv.Void() FileProviderMigrationPolicyState._tagmap = { - "disabled": FileProviderMigrationPolicyState._disabled_validator, - "enabled": FileProviderMigrationPolicyState._enabled_validator, - "default": FileProviderMigrationPolicyState._default_validator, - "immediate": FileProviderMigrationPolicyState._immediate_validator, - "other": FileProviderMigrationPolicyState._other_validator, + 'disabled': FileProviderMigrationPolicyState._disabled_validator, + 'enabled': FileProviderMigrationPolicyState._enabled_validator, + 'default': FileProviderMigrationPolicyState._default_validator, + 'immediate': FileProviderMigrationPolicyState._immediate_validator, + 'other': FileProviderMigrationPolicyState._other_validator, } -FileProviderMigrationPolicyState.disabled = FileProviderMigrationPolicyState("disabled") -FileProviderMigrationPolicyState.enabled = FileProviderMigrationPolicyState("enabled") -FileProviderMigrationPolicyState.default = FileProviderMigrationPolicyState("default") -FileProviderMigrationPolicyState.immediate = FileProviderMigrationPolicyState("immediate") -FileProviderMigrationPolicyState.other = FileProviderMigrationPolicyState("other") +FileProviderMigrationPolicyState.disabled = FileProviderMigrationPolicyState('disabled') +FileProviderMigrationPolicyState.enabled = FileProviderMigrationPolicyState('enabled') +FileProviderMigrationPolicyState.default = FileProviderMigrationPolicyState('default') +FileProviderMigrationPolicyState.immediate = FileProviderMigrationPolicyState('immediate') +FileProviderMigrationPolicyState.other = FileProviderMigrationPolicyState('other') GroupCreation._admins_and_members_validator = bv.Void() GroupCreation._admins_only_validator = bv.Void() GroupCreation._tagmap = { - "admins_and_members": GroupCreation._admins_and_members_validator, - "admins_only": GroupCreation._admins_only_validator, + 'admins_and_members': GroupCreation._admins_and_members_validator, + 'admins_only': GroupCreation._admins_only_validator, } -GroupCreation.admins_and_members = GroupCreation("admins_and_members") -GroupCreation.admins_only = GroupCreation("admins_only") +GroupCreation.admins_and_members = GroupCreation('admins_and_members') +GroupCreation.admins_only = GroupCreation('admins_only') OfficeAddInPolicy._disabled_validator = bv.Void() OfficeAddInPolicy._enabled_validator = bv.Void() OfficeAddInPolicy._other_validator = bv.Void() OfficeAddInPolicy._tagmap = { - "disabled": OfficeAddInPolicy._disabled_validator, - "enabled": OfficeAddInPolicy._enabled_validator, - "other": OfficeAddInPolicy._other_validator, + 'disabled': OfficeAddInPolicy._disabled_validator, + 'enabled': OfficeAddInPolicy._enabled_validator, + 'other': OfficeAddInPolicy._other_validator, } -OfficeAddInPolicy.disabled = OfficeAddInPolicy("disabled") -OfficeAddInPolicy.enabled = OfficeAddInPolicy("enabled") -OfficeAddInPolicy.other = OfficeAddInPolicy("other") +OfficeAddInPolicy.disabled = OfficeAddInPolicy('disabled') +OfficeAddInPolicy.enabled = OfficeAddInPolicy('enabled') +OfficeAddInPolicy.other = OfficeAddInPolicy('other') PaperDefaultFolderPolicy._everyone_in_team_validator = bv.Void() PaperDefaultFolderPolicy._invite_only_validator = bv.Void() PaperDefaultFolderPolicy._other_validator = bv.Void() PaperDefaultFolderPolicy._tagmap = { - "everyone_in_team": PaperDefaultFolderPolicy._everyone_in_team_validator, - "invite_only": PaperDefaultFolderPolicy._invite_only_validator, - "other": PaperDefaultFolderPolicy._other_validator, + 'everyone_in_team': PaperDefaultFolderPolicy._everyone_in_team_validator, + 'invite_only': PaperDefaultFolderPolicy._invite_only_validator, + 'other': PaperDefaultFolderPolicy._other_validator, } -PaperDefaultFolderPolicy.everyone_in_team = PaperDefaultFolderPolicy("everyone_in_team") -PaperDefaultFolderPolicy.invite_only = PaperDefaultFolderPolicy("invite_only") -PaperDefaultFolderPolicy.other = PaperDefaultFolderPolicy("other") +PaperDefaultFolderPolicy.everyone_in_team = PaperDefaultFolderPolicy('everyone_in_team') +PaperDefaultFolderPolicy.invite_only = PaperDefaultFolderPolicy('invite_only') +PaperDefaultFolderPolicy.other = PaperDefaultFolderPolicy('other') PaperDeploymentPolicy._full_validator = bv.Void() PaperDeploymentPolicy._partial_validator = bv.Void() PaperDeploymentPolicy._other_validator = bv.Void() PaperDeploymentPolicy._tagmap = { - "full": PaperDeploymentPolicy._full_validator, - "partial": PaperDeploymentPolicy._partial_validator, - "other": PaperDeploymentPolicy._other_validator, + 'full': PaperDeploymentPolicy._full_validator, + 'partial': PaperDeploymentPolicy._partial_validator, + 'other': PaperDeploymentPolicy._other_validator, } -PaperDeploymentPolicy.full = PaperDeploymentPolicy("full") -PaperDeploymentPolicy.partial = PaperDeploymentPolicy("partial") -PaperDeploymentPolicy.other = PaperDeploymentPolicy("other") +PaperDeploymentPolicy.full = PaperDeploymentPolicy('full') +PaperDeploymentPolicy.partial = PaperDeploymentPolicy('partial') +PaperDeploymentPolicy.other = PaperDeploymentPolicy('other') PaperDesktopPolicy._disabled_validator = bv.Void() PaperDesktopPolicy._enabled_validator = bv.Void() PaperDesktopPolicy._other_validator = bv.Void() PaperDesktopPolicy._tagmap = { - "disabled": PaperDesktopPolicy._disabled_validator, - "enabled": PaperDesktopPolicy._enabled_validator, - "other": PaperDesktopPolicy._other_validator, + 'disabled': PaperDesktopPolicy._disabled_validator, + 'enabled': PaperDesktopPolicy._enabled_validator, + 'other': PaperDesktopPolicy._other_validator, } -PaperDesktopPolicy.disabled = PaperDesktopPolicy("disabled") -PaperDesktopPolicy.enabled = PaperDesktopPolicy("enabled") -PaperDesktopPolicy.other = PaperDesktopPolicy("other") +PaperDesktopPolicy.disabled = PaperDesktopPolicy('disabled') +PaperDesktopPolicy.enabled = PaperDesktopPolicy('enabled') +PaperDesktopPolicy.other = PaperDesktopPolicy('other') PaperEnabledPolicy._disabled_validator = bv.Void() PaperEnabledPolicy._enabled_validator = bv.Void() PaperEnabledPolicy._unspecified_validator = bv.Void() PaperEnabledPolicy._other_validator = bv.Void() PaperEnabledPolicy._tagmap = { - "disabled": PaperEnabledPolicy._disabled_validator, - "enabled": PaperEnabledPolicy._enabled_validator, - "unspecified": PaperEnabledPolicy._unspecified_validator, - "other": PaperEnabledPolicy._other_validator, + 'disabled': PaperEnabledPolicy._disabled_validator, + 'enabled': PaperEnabledPolicy._enabled_validator, + 'unspecified': PaperEnabledPolicy._unspecified_validator, + 'other': PaperEnabledPolicy._other_validator, } -PaperEnabledPolicy.disabled = PaperEnabledPolicy("disabled") -PaperEnabledPolicy.enabled = PaperEnabledPolicy("enabled") -PaperEnabledPolicy.unspecified = PaperEnabledPolicy("unspecified") -PaperEnabledPolicy.other = PaperEnabledPolicy("other") +PaperEnabledPolicy.disabled = PaperEnabledPolicy('disabled') +PaperEnabledPolicy.enabled = PaperEnabledPolicy('enabled') +PaperEnabledPolicy.unspecified = PaperEnabledPolicy('unspecified') +PaperEnabledPolicy.other = PaperEnabledPolicy('other') PasswordControlMode._disabled_validator = bv.Void() PasswordControlMode._enabled_validator = bv.Void() PasswordControlMode._other_validator = bv.Void() PasswordControlMode._tagmap = { - "disabled": PasswordControlMode._disabled_validator, - "enabled": PasswordControlMode._enabled_validator, - "other": PasswordControlMode._other_validator, + 'disabled': PasswordControlMode._disabled_validator, + 'enabled': PasswordControlMode._enabled_validator, + 'other': PasswordControlMode._other_validator, } -PasswordControlMode.disabled = PasswordControlMode("disabled") -PasswordControlMode.enabled = PasswordControlMode("enabled") -PasswordControlMode.other = PasswordControlMode("other") +PasswordControlMode.disabled = PasswordControlMode('disabled') +PasswordControlMode.enabled = PasswordControlMode('enabled') +PasswordControlMode.other = PasswordControlMode('other') PasswordStrengthPolicy._minimal_requirements_validator = bv.Void() PasswordStrengthPolicy._moderate_password_validator = bv.Void() PasswordStrengthPolicy._strong_password_validator = bv.Void() PasswordStrengthPolicy._other_validator = bv.Void() PasswordStrengthPolicy._tagmap = { - "minimal_requirements": PasswordStrengthPolicy._minimal_requirements_validator, - "moderate_password": PasswordStrengthPolicy._moderate_password_validator, - "strong_password": PasswordStrengthPolicy._strong_password_validator, - "other": PasswordStrengthPolicy._other_validator, + 'minimal_requirements': PasswordStrengthPolicy._minimal_requirements_validator, + 'moderate_password': PasswordStrengthPolicy._moderate_password_validator, + 'strong_password': PasswordStrengthPolicy._strong_password_validator, + 'other': PasswordStrengthPolicy._other_validator, } -PasswordStrengthPolicy.minimal_requirements = PasswordStrengthPolicy("minimal_requirements") -PasswordStrengthPolicy.moderate_password = PasswordStrengthPolicy("moderate_password") -PasswordStrengthPolicy.strong_password = PasswordStrengthPolicy("strong_password") -PasswordStrengthPolicy.other = PasswordStrengthPolicy("other") +PasswordStrengthPolicy.minimal_requirements = PasswordStrengthPolicy('minimal_requirements') +PasswordStrengthPolicy.moderate_password = PasswordStrengthPolicy('moderate_password') +PasswordStrengthPolicy.strong_password = PasswordStrengthPolicy('strong_password') +PasswordStrengthPolicy.other = PasswordStrengthPolicy('other') RolloutMethod._unlink_all_validator = bv.Void() RolloutMethod._unlink_most_inactive_validator = bv.Void() RolloutMethod._add_member_to_exceptions_validator = bv.Void() RolloutMethod._tagmap = { - "unlink_all": RolloutMethod._unlink_all_validator, - "unlink_most_inactive": RolloutMethod._unlink_most_inactive_validator, - "add_member_to_exceptions": RolloutMethod._add_member_to_exceptions_validator, + 'unlink_all': RolloutMethod._unlink_all_validator, + 'unlink_most_inactive': RolloutMethod._unlink_most_inactive_validator, + 'add_member_to_exceptions': RolloutMethod._add_member_to_exceptions_validator, } -RolloutMethod.unlink_all = RolloutMethod("unlink_all") -RolloutMethod.unlink_most_inactive = RolloutMethod("unlink_most_inactive") -RolloutMethod.add_member_to_exceptions = RolloutMethod("add_member_to_exceptions") +RolloutMethod.unlink_all = RolloutMethod('unlink_all') +RolloutMethod.unlink_most_inactive = RolloutMethod('unlink_most_inactive') +RolloutMethod.add_member_to_exceptions = RolloutMethod('add_member_to_exceptions') SharedFolderBlanketLinkRestrictionPolicy._members_validator = bv.Void() SharedFolderBlanketLinkRestrictionPolicy._anyone_validator = bv.Void() SharedFolderBlanketLinkRestrictionPolicy._other_validator = bv.Void() SharedFolderBlanketLinkRestrictionPolicy._tagmap = { - "members": SharedFolderBlanketLinkRestrictionPolicy._members_validator, - "anyone": SharedFolderBlanketLinkRestrictionPolicy._anyone_validator, - "other": SharedFolderBlanketLinkRestrictionPolicy._other_validator, + 'members': SharedFolderBlanketLinkRestrictionPolicy._members_validator, + 'anyone': SharedFolderBlanketLinkRestrictionPolicy._anyone_validator, + 'other': SharedFolderBlanketLinkRestrictionPolicy._other_validator, } -SharedFolderBlanketLinkRestrictionPolicy.members = SharedFolderBlanketLinkRestrictionPolicy( - "members" -) -SharedFolderBlanketLinkRestrictionPolicy.anyone = SharedFolderBlanketLinkRestrictionPolicy("anyone") -SharedFolderBlanketLinkRestrictionPolicy.other = SharedFolderBlanketLinkRestrictionPolicy("other") +SharedFolderBlanketLinkRestrictionPolicy.members = SharedFolderBlanketLinkRestrictionPolicy('members') +SharedFolderBlanketLinkRestrictionPolicy.anyone = SharedFolderBlanketLinkRestrictionPolicy('anyone') +SharedFolderBlanketLinkRestrictionPolicy.other = SharedFolderBlanketLinkRestrictionPolicy('other') SharedFolderJoinPolicy._from_team_only_validator = bv.Void() SharedFolderJoinPolicy._from_anyone_validator = bv.Void() SharedFolderJoinPolicy._other_validator = bv.Void() SharedFolderJoinPolicy._tagmap = { - "from_team_only": SharedFolderJoinPolicy._from_team_only_validator, - "from_anyone": SharedFolderJoinPolicy._from_anyone_validator, - "other": SharedFolderJoinPolicy._other_validator, + 'from_team_only': SharedFolderJoinPolicy._from_team_only_validator, + 'from_anyone': SharedFolderJoinPolicy._from_anyone_validator, + 'other': SharedFolderJoinPolicy._other_validator, } -SharedFolderJoinPolicy.from_team_only = SharedFolderJoinPolicy("from_team_only") -SharedFolderJoinPolicy.from_anyone = SharedFolderJoinPolicy("from_anyone") -SharedFolderJoinPolicy.other = SharedFolderJoinPolicy("other") +SharedFolderJoinPolicy.from_team_only = SharedFolderJoinPolicy('from_team_only') +SharedFolderJoinPolicy.from_anyone = SharedFolderJoinPolicy('from_anyone') +SharedFolderJoinPolicy.other = SharedFolderJoinPolicy('other') SharedFolderMemberPolicy._team_validator = bv.Void() SharedFolderMemberPolicy._anyone_validator = bv.Void() SharedFolderMemberPolicy._team_and_approved_validator = bv.Void() SharedFolderMemberPolicy._other_validator = bv.Void() SharedFolderMemberPolicy._tagmap = { - "team": SharedFolderMemberPolicy._team_validator, - "anyone": SharedFolderMemberPolicy._anyone_validator, - "team_and_approved": SharedFolderMemberPolicy._team_and_approved_validator, - "other": SharedFolderMemberPolicy._other_validator, + 'team': SharedFolderMemberPolicy._team_validator, + 'anyone': SharedFolderMemberPolicy._anyone_validator, + 'team_and_approved': SharedFolderMemberPolicy._team_and_approved_validator, + 'other': SharedFolderMemberPolicy._other_validator, } -SharedFolderMemberPolicy.team = SharedFolderMemberPolicy("team") -SharedFolderMemberPolicy.anyone = SharedFolderMemberPolicy("anyone") -SharedFolderMemberPolicy.team_and_approved = SharedFolderMemberPolicy("team_and_approved") -SharedFolderMemberPolicy.other = SharedFolderMemberPolicy("other") +SharedFolderMemberPolicy.team = SharedFolderMemberPolicy('team') +SharedFolderMemberPolicy.anyone = SharedFolderMemberPolicy('anyone') +SharedFolderMemberPolicy.team_and_approved = SharedFolderMemberPolicy('team_and_approved') +SharedFolderMemberPolicy.other = SharedFolderMemberPolicy('other') SharedLinkCreatePolicy._default_public_validator = bv.Void() SharedLinkCreatePolicy._default_team_only_validator = bv.Void() @@ -2454,249 +2308,220 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): SharedLinkCreatePolicy._default_no_one_validator = bv.Void() SharedLinkCreatePolicy._other_validator = bv.Void() SharedLinkCreatePolicy._tagmap = { - "default_public": SharedLinkCreatePolicy._default_public_validator, - "default_team_only": SharedLinkCreatePolicy._default_team_only_validator, - "team_only": SharedLinkCreatePolicy._team_only_validator, - "default_no_one": SharedLinkCreatePolicy._default_no_one_validator, - "other": SharedLinkCreatePolicy._other_validator, + 'default_public': SharedLinkCreatePolicy._default_public_validator, + 'default_team_only': SharedLinkCreatePolicy._default_team_only_validator, + 'team_only': SharedLinkCreatePolicy._team_only_validator, + 'default_no_one': SharedLinkCreatePolicy._default_no_one_validator, + 'other': SharedLinkCreatePolicy._other_validator, } -SharedLinkCreatePolicy.default_public = SharedLinkCreatePolicy("default_public") -SharedLinkCreatePolicy.default_team_only = SharedLinkCreatePolicy("default_team_only") -SharedLinkCreatePolicy.team_only = SharedLinkCreatePolicy("team_only") -SharedLinkCreatePolicy.default_no_one = SharedLinkCreatePolicy("default_no_one") -SharedLinkCreatePolicy.other = SharedLinkCreatePolicy("other") +SharedLinkCreatePolicy.default_public = SharedLinkCreatePolicy('default_public') +SharedLinkCreatePolicy.default_team_only = SharedLinkCreatePolicy('default_team_only') +SharedLinkCreatePolicy.team_only = SharedLinkCreatePolicy('team_only') +SharedLinkCreatePolicy.default_no_one = SharedLinkCreatePolicy('default_no_one') +SharedLinkCreatePolicy.other = SharedLinkCreatePolicy('other') SharedLinkDefaultPermissionsPolicy._default_validator = bv.Void() SharedLinkDefaultPermissionsPolicy._edit_validator = bv.Void() SharedLinkDefaultPermissionsPolicy._view_validator = bv.Void() SharedLinkDefaultPermissionsPolicy._other_validator = bv.Void() SharedLinkDefaultPermissionsPolicy._tagmap = { - "default": SharedLinkDefaultPermissionsPolicy._default_validator, - "edit": SharedLinkDefaultPermissionsPolicy._edit_validator, - "view": SharedLinkDefaultPermissionsPolicy._view_validator, - "other": SharedLinkDefaultPermissionsPolicy._other_validator, + 'default': SharedLinkDefaultPermissionsPolicy._default_validator, + 'edit': SharedLinkDefaultPermissionsPolicy._edit_validator, + 'view': SharedLinkDefaultPermissionsPolicy._view_validator, + 'other': SharedLinkDefaultPermissionsPolicy._other_validator, } -SharedLinkDefaultPermissionsPolicy.default = SharedLinkDefaultPermissionsPolicy("default") -SharedLinkDefaultPermissionsPolicy.edit = SharedLinkDefaultPermissionsPolicy("edit") -SharedLinkDefaultPermissionsPolicy.view = SharedLinkDefaultPermissionsPolicy("view") -SharedLinkDefaultPermissionsPolicy.other = SharedLinkDefaultPermissionsPolicy("other") +SharedLinkDefaultPermissionsPolicy.default = SharedLinkDefaultPermissionsPolicy('default') +SharedLinkDefaultPermissionsPolicy.edit = SharedLinkDefaultPermissionsPolicy('edit') +SharedLinkDefaultPermissionsPolicy.view = SharedLinkDefaultPermissionsPolicy('view') +SharedLinkDefaultPermissionsPolicy.other = SharedLinkDefaultPermissionsPolicy('other') ShowcaseDownloadPolicy._disabled_validator = bv.Void() ShowcaseDownloadPolicy._enabled_validator = bv.Void() ShowcaseDownloadPolicy._other_validator = bv.Void() ShowcaseDownloadPolicy._tagmap = { - "disabled": ShowcaseDownloadPolicy._disabled_validator, - "enabled": ShowcaseDownloadPolicy._enabled_validator, - "other": ShowcaseDownloadPolicy._other_validator, + 'disabled': ShowcaseDownloadPolicy._disabled_validator, + 'enabled': ShowcaseDownloadPolicy._enabled_validator, + 'other': ShowcaseDownloadPolicy._other_validator, } -ShowcaseDownloadPolicy.disabled = ShowcaseDownloadPolicy("disabled") -ShowcaseDownloadPolicy.enabled = ShowcaseDownloadPolicy("enabled") -ShowcaseDownloadPolicy.other = ShowcaseDownloadPolicy("other") +ShowcaseDownloadPolicy.disabled = ShowcaseDownloadPolicy('disabled') +ShowcaseDownloadPolicy.enabled = ShowcaseDownloadPolicy('enabled') +ShowcaseDownloadPolicy.other = ShowcaseDownloadPolicy('other') ShowcaseEnabledPolicy._disabled_validator = bv.Void() ShowcaseEnabledPolicy._enabled_validator = bv.Void() ShowcaseEnabledPolicy._other_validator = bv.Void() ShowcaseEnabledPolicy._tagmap = { - "disabled": ShowcaseEnabledPolicy._disabled_validator, - "enabled": ShowcaseEnabledPolicy._enabled_validator, - "other": ShowcaseEnabledPolicy._other_validator, + 'disabled': ShowcaseEnabledPolicy._disabled_validator, + 'enabled': ShowcaseEnabledPolicy._enabled_validator, + 'other': ShowcaseEnabledPolicy._other_validator, } -ShowcaseEnabledPolicy.disabled = ShowcaseEnabledPolicy("disabled") -ShowcaseEnabledPolicy.enabled = ShowcaseEnabledPolicy("enabled") -ShowcaseEnabledPolicy.other = ShowcaseEnabledPolicy("other") +ShowcaseEnabledPolicy.disabled = ShowcaseEnabledPolicy('disabled') +ShowcaseEnabledPolicy.enabled = ShowcaseEnabledPolicy('enabled') +ShowcaseEnabledPolicy.other = ShowcaseEnabledPolicy('other') ShowcaseExternalSharingPolicy._disabled_validator = bv.Void() ShowcaseExternalSharingPolicy._enabled_validator = bv.Void() ShowcaseExternalSharingPolicy._other_validator = bv.Void() ShowcaseExternalSharingPolicy._tagmap = { - "disabled": ShowcaseExternalSharingPolicy._disabled_validator, - "enabled": ShowcaseExternalSharingPolicy._enabled_validator, - "other": ShowcaseExternalSharingPolicy._other_validator, + 'disabled': ShowcaseExternalSharingPolicy._disabled_validator, + 'enabled': ShowcaseExternalSharingPolicy._enabled_validator, + 'other': ShowcaseExternalSharingPolicy._other_validator, } -ShowcaseExternalSharingPolicy.disabled = ShowcaseExternalSharingPolicy("disabled") -ShowcaseExternalSharingPolicy.enabled = ShowcaseExternalSharingPolicy("enabled") -ShowcaseExternalSharingPolicy.other = ShowcaseExternalSharingPolicy("other") +ShowcaseExternalSharingPolicy.disabled = ShowcaseExternalSharingPolicy('disabled') +ShowcaseExternalSharingPolicy.enabled = ShowcaseExternalSharingPolicy('enabled') +ShowcaseExternalSharingPolicy.other = ShowcaseExternalSharingPolicy('other') SmartSyncPolicy._local_validator = bv.Void() SmartSyncPolicy._on_demand_validator = bv.Void() SmartSyncPolicy._other_validator = bv.Void() SmartSyncPolicy._tagmap = { - "local": SmartSyncPolicy._local_validator, - "on_demand": SmartSyncPolicy._on_demand_validator, - "other": SmartSyncPolicy._other_validator, + 'local': SmartSyncPolicy._local_validator, + 'on_demand': SmartSyncPolicy._on_demand_validator, + 'other': SmartSyncPolicy._other_validator, } -SmartSyncPolicy.local = SmartSyncPolicy("local") -SmartSyncPolicy.on_demand = SmartSyncPolicy("on_demand") -SmartSyncPolicy.other = SmartSyncPolicy("other") +SmartSyncPolicy.local = SmartSyncPolicy('local') +SmartSyncPolicy.on_demand = SmartSyncPolicy('on_demand') +SmartSyncPolicy.other = SmartSyncPolicy('other') SmarterSmartSyncPolicyState._disabled_validator = bv.Void() SmarterSmartSyncPolicyState._enabled_validator = bv.Void() SmarterSmartSyncPolicyState._other_validator = bv.Void() SmarterSmartSyncPolicyState._tagmap = { - "disabled": SmarterSmartSyncPolicyState._disabled_validator, - "enabled": SmarterSmartSyncPolicyState._enabled_validator, - "other": SmarterSmartSyncPolicyState._other_validator, + 'disabled': SmarterSmartSyncPolicyState._disabled_validator, + 'enabled': SmarterSmartSyncPolicyState._enabled_validator, + 'other': SmarterSmartSyncPolicyState._other_validator, } -SmarterSmartSyncPolicyState.disabled = SmarterSmartSyncPolicyState("disabled") -SmarterSmartSyncPolicyState.enabled = SmarterSmartSyncPolicyState("enabled") -SmarterSmartSyncPolicyState.other = SmarterSmartSyncPolicyState("other") +SmarterSmartSyncPolicyState.disabled = SmarterSmartSyncPolicyState('disabled') +SmarterSmartSyncPolicyState.enabled = SmarterSmartSyncPolicyState('enabled') +SmarterSmartSyncPolicyState.other = SmarterSmartSyncPolicyState('other') SsoPolicy._disabled_validator = bv.Void() SsoPolicy._optional_validator = bv.Void() SsoPolicy._required_validator = bv.Void() SsoPolicy._other_validator = bv.Void() SsoPolicy._tagmap = { - "disabled": SsoPolicy._disabled_validator, - "optional": SsoPolicy._optional_validator, - "required": SsoPolicy._required_validator, - "other": SsoPolicy._other_validator, + 'disabled': SsoPolicy._disabled_validator, + 'optional': SsoPolicy._optional_validator, + 'required': SsoPolicy._required_validator, + 'other': SsoPolicy._other_validator, } -SsoPolicy.disabled = SsoPolicy("disabled") -SsoPolicy.optional = SsoPolicy("optional") -SsoPolicy.required = SsoPolicy("required") -SsoPolicy.other = SsoPolicy("other") +SsoPolicy.disabled = SsoPolicy('disabled') +SsoPolicy.optional = SsoPolicy('optional') +SsoPolicy.required = SsoPolicy('required') +SsoPolicy.other = SsoPolicy('other') SuggestMembersPolicy._disabled_validator = bv.Void() SuggestMembersPolicy._enabled_validator = bv.Void() SuggestMembersPolicy._other_validator = bv.Void() SuggestMembersPolicy._tagmap = { - "disabled": SuggestMembersPolicy._disabled_validator, - "enabled": SuggestMembersPolicy._enabled_validator, - "other": SuggestMembersPolicy._other_validator, + 'disabled': SuggestMembersPolicy._disabled_validator, + 'enabled': SuggestMembersPolicy._enabled_validator, + 'other': SuggestMembersPolicy._other_validator, } -SuggestMembersPolicy.disabled = SuggestMembersPolicy("disabled") -SuggestMembersPolicy.enabled = SuggestMembersPolicy("enabled") -SuggestMembersPolicy.other = SuggestMembersPolicy("other") +SuggestMembersPolicy.disabled = SuggestMembersPolicy('disabled') +SuggestMembersPolicy.enabled = SuggestMembersPolicy('enabled') +SuggestMembersPolicy.other = SuggestMembersPolicy('other') TeamMemberPolicies.sharing.validator = TeamSharingPolicies_validator TeamMemberPolicies.emm_state.validator = EmmState_validator TeamMemberPolicies.office_addin.validator = OfficeAddInPolicy_validator TeamMemberPolicies.suggest_members_policy.validator = SuggestMembersPolicy_validator TeamMemberPolicies.top_level_content_policy.validator = TopLevelContentPolicy_validator -TeamMemberPolicies._all_field_names_ = set( - [ - "sharing", - "emm_state", - "office_addin", - "suggest_members_policy", - "top_level_content_policy", - ] -) +TeamMemberPolicies._all_field_names_ = set([ + 'sharing', + 'emm_state', + 'office_addin', + 'suggest_members_policy', + 'top_level_content_policy', +]) TeamMemberPolicies._all_fields_ = [ - ("sharing", TeamMemberPolicies.sharing.validator), - ("emm_state", TeamMemberPolicies.emm_state.validator), - ("office_addin", TeamMemberPolicies.office_addin.validator), - ("suggest_members_policy", TeamMemberPolicies.suggest_members_policy.validator), - ("top_level_content_policy", TeamMemberPolicies.top_level_content_policy.validator), + ('sharing', TeamMemberPolicies.sharing.validator), + ('emm_state', TeamMemberPolicies.emm_state.validator), + ('office_addin', TeamMemberPolicies.office_addin.validator), + ('suggest_members_policy', TeamMemberPolicies.suggest_members_policy.validator), + ('top_level_content_policy', TeamMemberPolicies.top_level_content_policy.validator), ] TeamSharingPolicies.shared_folder_member_policy.validator = SharedFolderMemberPolicy_validator TeamSharingPolicies.shared_folder_join_policy.validator = SharedFolderJoinPolicy_validator TeamSharingPolicies.shared_link_create_policy.validator = SharedLinkCreatePolicy_validator TeamSharingPolicies.group_creation_policy.validator = GroupCreation_validator -TeamSharingPolicies.shared_folder_link_restriction_policy.validator = ( - SharedFolderBlanketLinkRestrictionPolicy_validator -) +TeamSharingPolicies.shared_folder_link_restriction_policy.validator = SharedFolderBlanketLinkRestrictionPolicy_validator TeamSharingPolicies.enforce_link_password_policy.validator = EnforceLinkPasswordPolicy_validator -TeamSharingPolicies.default_link_expiration_days_policy.validator = ( - DefaultLinkExpirationDaysPolicy_validator -) -TeamSharingPolicies.shared_link_default_permissions_policy.validator = ( - SharedLinkDefaultPermissionsPolicy_validator -) -TeamSharingPolicies._all_field_names_ = set( - [ - "shared_folder_member_policy", - "shared_folder_join_policy", - "shared_link_create_policy", - "group_creation_policy", - "shared_folder_link_restriction_policy", - "enforce_link_password_policy", - "default_link_expiration_days_policy", - "shared_link_default_permissions_policy", - ] -) +TeamSharingPolicies.default_link_expiration_days_policy.validator = DefaultLinkExpirationDaysPolicy_validator +TeamSharingPolicies.shared_link_default_permissions_policy.validator = SharedLinkDefaultPermissionsPolicy_validator +TeamSharingPolicies._all_field_names_ = set([ + 'shared_folder_member_policy', + 'shared_folder_join_policy', + 'shared_link_create_policy', + 'group_creation_policy', + 'shared_folder_link_restriction_policy', + 'enforce_link_password_policy', + 'default_link_expiration_days_policy', + 'shared_link_default_permissions_policy', +]) TeamSharingPolicies._all_fields_ = [ - ( - "shared_folder_member_policy", - TeamSharingPolicies.shared_folder_member_policy.validator, - ), - ( - "shared_folder_join_policy", - TeamSharingPolicies.shared_folder_join_policy.validator, - ), - ( - "shared_link_create_policy", - TeamSharingPolicies.shared_link_create_policy.validator, - ), - ("group_creation_policy", TeamSharingPolicies.group_creation_policy.validator), - ( - "shared_folder_link_restriction_policy", - TeamSharingPolicies.shared_folder_link_restriction_policy.validator, - ), - ( - "enforce_link_password_policy", - TeamSharingPolicies.enforce_link_password_policy.validator, - ), - ( - "default_link_expiration_days_policy", - TeamSharingPolicies.default_link_expiration_days_policy.validator, - ), - ( - "shared_link_default_permissions_policy", - TeamSharingPolicies.shared_link_default_permissions_policy.validator, - ), + ('shared_folder_member_policy', TeamSharingPolicies.shared_folder_member_policy.validator), + ('shared_folder_join_policy', TeamSharingPolicies.shared_folder_join_policy.validator), + ('shared_link_create_policy', TeamSharingPolicies.shared_link_create_policy.validator), + ('group_creation_policy', TeamSharingPolicies.group_creation_policy.validator), + ('shared_folder_link_restriction_policy', TeamSharingPolicies.shared_folder_link_restriction_policy.validator), + ('enforce_link_password_policy', TeamSharingPolicies.enforce_link_password_policy.validator), + ('default_link_expiration_days_policy', TeamSharingPolicies.default_link_expiration_days_policy.validator), + ('shared_link_default_permissions_policy', TeamSharingPolicies.shared_link_default_permissions_policy.validator), ] TopLevelContentPolicy._admin_only_validator = bv.Void() TopLevelContentPolicy._everyone_validator = bv.Void() TopLevelContentPolicy._other_validator = bv.Void() TopLevelContentPolicy._tagmap = { - "admin_only": TopLevelContentPolicy._admin_only_validator, - "everyone": TopLevelContentPolicy._everyone_validator, - "other": TopLevelContentPolicy._other_validator, + 'admin_only': TopLevelContentPolicy._admin_only_validator, + 'everyone': TopLevelContentPolicy._everyone_validator, + 'other': TopLevelContentPolicy._other_validator, } -TopLevelContentPolicy.admin_only = TopLevelContentPolicy("admin_only") -TopLevelContentPolicy.everyone = TopLevelContentPolicy("everyone") -TopLevelContentPolicy.other = TopLevelContentPolicy("other") +TopLevelContentPolicy.admin_only = TopLevelContentPolicy('admin_only') +TopLevelContentPolicy.everyone = TopLevelContentPolicy('everyone') +TopLevelContentPolicy.other = TopLevelContentPolicy('other') TwoStepVerificationPolicy._require_tfa_enable_validator = bv.Void() TwoStepVerificationPolicy._require_tfa_disable_validator = bv.Void() TwoStepVerificationPolicy._other_validator = bv.Void() TwoStepVerificationPolicy._tagmap = { - "require_tfa_enable": TwoStepVerificationPolicy._require_tfa_enable_validator, - "require_tfa_disable": TwoStepVerificationPolicy._require_tfa_disable_validator, - "other": TwoStepVerificationPolicy._other_validator, + 'require_tfa_enable': TwoStepVerificationPolicy._require_tfa_enable_validator, + 'require_tfa_disable': TwoStepVerificationPolicy._require_tfa_disable_validator, + 'other': TwoStepVerificationPolicy._other_validator, } -TwoStepVerificationPolicy.require_tfa_enable = TwoStepVerificationPolicy("require_tfa_enable") -TwoStepVerificationPolicy.require_tfa_disable = TwoStepVerificationPolicy("require_tfa_disable") -TwoStepVerificationPolicy.other = TwoStepVerificationPolicy("other") +TwoStepVerificationPolicy.require_tfa_enable = TwoStepVerificationPolicy('require_tfa_enable') +TwoStepVerificationPolicy.require_tfa_disable = TwoStepVerificationPolicy('require_tfa_disable') +TwoStepVerificationPolicy.other = TwoStepVerificationPolicy('other') TwoStepVerificationState._required_validator = bv.Void() TwoStepVerificationState._optional_validator = bv.Void() TwoStepVerificationState._disabled_validator = bv.Void() TwoStepVerificationState._other_validator = bv.Void() TwoStepVerificationState._tagmap = { - "required": TwoStepVerificationState._required_validator, - "optional": TwoStepVerificationState._optional_validator, - "disabled": TwoStepVerificationState._disabled_validator, - "other": TwoStepVerificationState._other_validator, + 'required': TwoStepVerificationState._required_validator, + 'optional': TwoStepVerificationState._optional_validator, + 'disabled': TwoStepVerificationState._disabled_validator, + 'other': TwoStepVerificationState._other_validator, } -TwoStepVerificationState.required = TwoStepVerificationState("required") -TwoStepVerificationState.optional = TwoStepVerificationState("optional") -TwoStepVerificationState.disabled = TwoStepVerificationState("disabled") -TwoStepVerificationState.other = TwoStepVerificationState("other") +TwoStepVerificationState.required = TwoStepVerificationState('required') +TwoStepVerificationState.optional = TwoStepVerificationState('optional') +TwoStepVerificationState.disabled = TwoStepVerificationState('disabled') +TwoStepVerificationState.other = TwoStepVerificationState('other') + +ROUTES = { +} -ROUTES = {} diff --git a/dropbox/users.py b/dropbox/users.py index 73902783..3be912b7 100644 --- a/dropbox/users.py +++ b/dropbox/users.py @@ -16,7 +16,6 @@ from dropbox import team_policies from dropbox import users_common - class Account(bb.Struct): """ The amount of detail revealed about an account depends on the user being @@ -39,25 +38,23 @@ class Account(bb.Struct): """ __slots__ = [ - "_account_id_value", - "_name_value", - "_email_value", - "_email_verified_value", - "_profile_photo_url_value", - "_disabled_value", + '_account_id_value', + '_name_value', + '_email_value', + '_email_verified_value', + '_profile_photo_url_value', + '_disabled_value', ] _has_required_fields = True - def __init__( - self, - account_id=None, - name=None, - email=None, - email_verified=None, - disabled=None, - profile_photo_url=None, - ): + def __init__(self, + account_id=None, + name=None, + email=None, + email_verified=None, + disabled=None, + profile_photo_url=None): self._account_id_value = bb.NOT_SET self._name_value = bb.NOT_SET self._email_value = bb.NOT_SET @@ -98,10 +95,8 @@ def __init__( def _process_custom_annotations(self, annotation_type, field_path, processor): super(Account, self)._process_custom_annotations(annotation_type, field_path, processor) - Account_validator = bv.Struct(Account) - class BasicAccount(Account): """ Basic information about any account. @@ -115,26 +110,27 @@ class BasicAccount(Account): """ __slots__ = [ - "_is_teammate_value", - "_team_member_id_value", + '_is_teammate_value', + '_team_member_id_value', ] _has_required_fields = True - def __init__( - self, - account_id=None, - name=None, - email=None, - email_verified=None, - disabled=None, - is_teammate=None, - profile_photo_url=None, - team_member_id=None, - ): - super(BasicAccount, self).__init__( - account_id, name, email, email_verified, disabled, profile_photo_url - ) + def __init__(self, + account_id=None, + name=None, + email=None, + email_verified=None, + disabled=None, + is_teammate=None, + profile_photo_url=None, + team_member_id=None): + super(BasicAccount, self).__init__(account_id, + name, + email, + email_verified, + disabled, + profile_photo_url) self._is_teammate_value = bb.NOT_SET self._team_member_id_value = bb.NOT_SET if is_teammate is not None: @@ -149,14 +145,10 @@ def __init__( team_member_id = bb.Attribute("team_member_id", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(BasicAccount, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(BasicAccount, self)._process_custom_annotations(annotation_type, field_path, processor) BasicAccount_validator = bv.Struct(BasicAccount) - class DistinctMemberHomeValue(bb.Union): """ The value for ``UserFeature.distinct_member_home``. @@ -171,7 +163,7 @@ class DistinctMemberHomeValue(bb.Union): :vartype DistinctMemberHomeValue.enabled: bool """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -184,7 +176,7 @@ def enabled(cls, val): :param bool val: :rtype: DistinctMemberHomeValue """ - return cls("enabled", val) + return cls('enabled', val) def is_enabled(self): """ @@ -192,7 +184,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == "enabled" + return self._tag == 'enabled' def is_other(self): """ @@ -200,7 +192,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_enabled(self): """ @@ -216,14 +208,10 @@ def get_enabled(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DistinctMemberHomeValue, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(DistinctMemberHomeValue, self)._process_custom_annotations(annotation_type, field_path, processor) DistinctMemberHomeValue_validator = bv.Union(DistinctMemberHomeValue) - class FileLockingValue(bb.Union): """ The value for ``UserFeature.file_locking``. @@ -239,7 +227,7 @@ class FileLockingValue(bb.Union): :vartype FileLockingValue.enabled: bool """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -252,7 +240,7 @@ def enabled(cls, val): :param bool val: :rtype: FileLockingValue """ - return cls("enabled", val) + return cls('enabled', val) def is_enabled(self): """ @@ -260,7 +248,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == "enabled" + return self._tag == 'enabled' def is_other(self): """ @@ -268,7 +256,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_enabled(self): """ @@ -285,14 +273,10 @@ def get_enabled(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileLockingValue, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(FileLockingValue, self)._process_custom_annotations(annotation_type, field_path, processor) FileLockingValue_validator = bv.Union(FileLockingValue) - class FullAccount(Account): """ Detailed information about the current user's account. @@ -321,38 +305,39 @@ class FullAccount(Account): """ __slots__ = [ - "_country_value", - "_locale_value", - "_referral_link_value", - "_team_value", - "_team_member_id_value", - "_is_paired_value", - "_account_type_value", - "_root_info_value", + '_country_value', + '_locale_value', + '_referral_link_value', + '_team_value', + '_team_member_id_value', + '_is_paired_value', + '_account_type_value', + '_root_info_value', ] _has_required_fields = True - def __init__( - self, - account_id=None, - name=None, - email=None, - email_verified=None, - disabled=None, - locale=None, - referral_link=None, - is_paired=None, - account_type=None, - root_info=None, - profile_photo_url=None, - country=None, - team=None, - team_member_id=None, - ): - super(FullAccount, self).__init__( - account_id, name, email, email_verified, disabled, profile_photo_url - ) + def __init__(self, + account_id=None, + name=None, + email=None, + email_verified=None, + disabled=None, + locale=None, + referral_link=None, + is_paired=None, + account_type=None, + root_info=None, + profile_photo_url=None, + country=None, + team=None, + team_member_id=None): + super(FullAccount, self).__init__(account_id, + name, + email, + email_verified, + disabled, + profile_photo_url) self._country_value = bb.NOT_SET self._locale_value = bb.NOT_SET self._referral_link_value = bb.NOT_SET @@ -405,10 +390,8 @@ def __init__( def _process_custom_annotations(self, annotation_type, field_path, processor): super(FullAccount, self)._process_custom_annotations(annotation_type, field_path, processor) - FullAccount_validator = bv.Struct(FullAccount) - class Team(bb.Struct): """ Information about a team. @@ -420,13 +403,15 @@ class Team(bb.Struct): """ __slots__ = [ - "_id_value", - "_name_value", + '_id_value', + '_name_value', ] _has_required_fields = True - def __init__(self, id=None, name=None): + def __init__(self, + id=None, + name=None): self._id_value = bb.NOT_SET self._name_value = bb.NOT_SET if id is not None: @@ -443,10 +428,8 @@ def __init__(self, id=None, name=None): def _process_custom_annotations(self, annotation_type, field_path, processor): super(Team, self)._process_custom_annotations(annotation_type, field_path, processor) - Team_validator = bv.Struct(Team) - class FullTeam(Team): """ Detailed information about a team. @@ -461,22 +444,21 @@ class FullTeam(Team): """ __slots__ = [ - "_sharing_policies_value", - "_office_addin_policy_value", - "_top_level_content_policy_value", + '_sharing_policies_value', + '_office_addin_policy_value', + '_top_level_content_policy_value', ] _has_required_fields = True - def __init__( - self, - id=None, - name=None, - sharing_policies=None, - office_addin_policy=None, - top_level_content_policy=None, - ): - super(FullTeam, self).__init__(id, name) + def __init__(self, + id=None, + name=None, + sharing_policies=None, + office_addin_policy=None, + top_level_content_policy=None): + super(FullTeam, self).__init__(id, + name) self._sharing_policies_value = bb.NOT_SET self._office_addin_policy_value = bb.NOT_SET self._top_level_content_policy_value = bb.NOT_SET @@ -499,10 +481,8 @@ def __init__( def _process_custom_annotations(self, annotation_type, field_path, processor): super(FullTeam, self)._process_custom_annotations(annotation_type, field_path, processor) - FullTeam_validator = bv.Struct(FullTeam) - class GetAccountArg(bb.Struct): """ :ivar GetAccountArg.account_id: @@ -510,12 +490,13 @@ class GetAccountArg(bb.Struct): """ __slots__ = [ - "_account_id_value", + '_account_id_value', ] _has_required_fields = True - def __init__(self, account_id=None): + def __init__(self, + account_id=None): self._account_id_value = bb.NOT_SET if account_id is not None: self.account_id = account_id @@ -524,14 +505,10 @@ def __init__(self, account_id=None): account_id = bb.Attribute("account_id") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetAccountArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GetAccountArg, self)._process_custom_annotations(annotation_type, field_path, processor) GetAccountArg_validator = bv.Struct(GetAccountArg) - class GetAccountBatchArg(bb.Struct): """ :ivar GetAccountBatchArg.account_ids: @@ -540,12 +517,13 @@ class GetAccountBatchArg(bb.Struct): """ __slots__ = [ - "_account_ids_value", + '_account_ids_value', ] _has_required_fields = True - def __init__(self, account_ids=None): + def __init__(self, + account_ids=None): self._account_ids_value = bb.NOT_SET if account_ids is not None: self.account_ids = account_ids @@ -554,14 +532,10 @@ def __init__(self, account_ids=None): account_ids = bb.Attribute("account_ids") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetAccountBatchArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GetAccountBatchArg, self)._process_custom_annotations(annotation_type, field_path, processor) GetAccountBatchArg_validator = bv.Struct(GetAccountBatchArg) - class GetAccountBatchError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -574,7 +548,7 @@ class GetAccountBatchError(bb.Union): :vartype GetAccountBatchError.no_account: str """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -587,7 +561,7 @@ def no_account(cls, val): :param str val: :rtype: GetAccountBatchError """ - return cls("no_account", val) + return cls('no_account', val) def is_no_account(self): """ @@ -595,7 +569,7 @@ def is_no_account(self): :rtype: bool """ - return self._tag == "no_account" + return self._tag == 'no_account' def is_other(self): """ @@ -603,7 +577,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_no_account(self): """ @@ -619,14 +593,10 @@ def get_no_account(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetAccountBatchError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GetAccountBatchError, self)._process_custom_annotations(annotation_type, field_path, processor) GetAccountBatchError_validator = bv.Union(GetAccountBatchError) - class GetAccountError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -637,7 +607,7 @@ class GetAccountError(bb.Union): The specified ``GetAccountArg.account_id`` does not exist. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition no_account = None # Attribute is overwritten below the class definition @@ -649,7 +619,7 @@ def is_no_account(self): :rtype: bool """ - return self._tag == "no_account" + return self._tag == 'no_account' def is_other(self): """ @@ -657,17 +627,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetAccountError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(GetAccountError, self)._process_custom_annotations(annotation_type, field_path, processor) GetAccountError_validator = bv.Union(GetAccountError) - class IndividualSpaceAllocation(bb.Struct): """ :ivar IndividualSpaceAllocation.allocated: @@ -675,12 +641,13 @@ class IndividualSpaceAllocation(bb.Struct): """ __slots__ = [ - "_allocated_value", + '_allocated_value', ] _has_required_fields = True - def __init__(self, allocated=None): + def __init__(self, + allocated=None): self._allocated_value = bb.NOT_SET if allocated is not None: self.allocated = allocated @@ -689,14 +656,10 @@ def __init__(self, allocated=None): allocated = bb.Attribute("allocated") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(IndividualSpaceAllocation, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(IndividualSpaceAllocation, self)._process_custom_annotations(annotation_type, field_path, processor) IndividualSpaceAllocation_validator = bv.Struct(IndividualSpaceAllocation) - class Name(bb.Struct): """ Representations for a person's name to assist with internationalization. @@ -718,23 +681,21 @@ class Name(bb.Struct): """ __slots__ = [ - "_given_name_value", - "_surname_value", - "_familiar_name_value", - "_display_name_value", - "_abbreviated_name_value", + '_given_name_value', + '_surname_value', + '_familiar_name_value', + '_display_name_value', + '_abbreviated_name_value', ] _has_required_fields = True - def __init__( - self, - given_name=None, - surname=None, - familiar_name=None, - display_name=None, - abbreviated_name=None, - ): + def __init__(self, + given_name=None, + surname=None, + familiar_name=None, + display_name=None, + abbreviated_name=None): self._given_name_value = bb.NOT_SET self._surname_value = bb.NOT_SET self._familiar_name_value = bb.NOT_SET @@ -769,10 +730,8 @@ def __init__( def _process_custom_annotations(self, annotation_type, field_path, processor): super(Name, self)._process_custom_annotations(annotation_type, field_path, processor) - Name_validator = bv.Struct(Name) - class PaperAsFilesValue(bb.Union): """ The value for ``UserFeature.paper_as_files``. @@ -790,7 +749,7 @@ class PaperAsFilesValue(bb.Union): :vartype PaperAsFilesValue.enabled: bool """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -803,7 +762,7 @@ def enabled(cls, val): :param bool val: :rtype: PaperAsFilesValue """ - return cls("enabled", val) + return cls('enabled', val) def is_enabled(self): """ @@ -811,7 +770,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == "enabled" + return self._tag == 'enabled' def is_other(self): """ @@ -819,7 +778,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_enabled(self): """ @@ -838,14 +797,10 @@ def get_enabled(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperAsFilesValue, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(PaperAsFilesValue, self)._process_custom_annotations(annotation_type, field_path, processor) PaperAsFilesValue_validator = bv.Union(PaperAsFilesValue) - class SpaceAllocation(bb.Union): """ Space is allocated differently based on the type of account. @@ -862,7 +817,7 @@ class SpaceAllocation(bb.Union): :vartype SpaceAllocation.team: TeamSpaceAllocation """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -875,7 +830,7 @@ def individual(cls, val): :param IndividualSpaceAllocation val: :rtype: SpaceAllocation """ - return cls("individual", val) + return cls('individual', val) @classmethod def team(cls, val): @@ -886,7 +841,7 @@ def team(cls, val): :param TeamSpaceAllocation val: :rtype: SpaceAllocation """ - return cls("team", val) + return cls('team', val) def is_individual(self): """ @@ -894,7 +849,7 @@ def is_individual(self): :rtype: bool """ - return self._tag == "individual" + return self._tag == 'individual' def is_team(self): """ @@ -902,7 +857,7 @@ def is_team(self): :rtype: bool """ - return self._tag == "team" + return self._tag == 'team' def is_other(self): """ @@ -910,7 +865,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_individual(self): """ @@ -937,14 +892,10 @@ def get_team(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SpaceAllocation, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(SpaceAllocation, self)._process_custom_annotations(annotation_type, field_path, processor) SpaceAllocation_validator = bv.Union(SpaceAllocation) - class SpaceUsage(bb.Struct): """ Information about a user's space usage and quota. @@ -956,13 +907,15 @@ class SpaceUsage(bb.Struct): """ __slots__ = [ - "_used_value", - "_allocation_value", + '_used_value', + '_allocation_value', ] _has_required_fields = True - def __init__(self, used=None, allocation=None): + def __init__(self, + used=None, + allocation=None): self._used_value = bb.NOT_SET self._allocation_value = bb.NOT_SET if used is not None: @@ -979,10 +932,8 @@ def __init__(self, used=None, allocation=None): def _process_custom_annotations(self, annotation_type, field_path, processor): super(SpaceUsage, self)._process_custom_annotations(annotation_type, field_path, processor) - SpaceUsage_validator = bv.Struct(SpaceUsage) - class TeamSharedDropboxValue(bb.Union): """ The value for ``UserFeature.team_shared_dropbox``. @@ -997,7 +948,7 @@ class TeamSharedDropboxValue(bb.Union): :vartype TeamSharedDropboxValue.enabled: bool """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -1010,7 +961,7 @@ def enabled(cls, val): :param bool val: :rtype: TeamSharedDropboxValue """ - return cls("enabled", val) + return cls('enabled', val) def is_enabled(self): """ @@ -1018,7 +969,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == "enabled" + return self._tag == 'enabled' def is_other(self): """ @@ -1026,7 +977,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_enabled(self): """ @@ -1042,14 +993,10 @@ def get_enabled(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamSharedDropboxValue, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamSharedDropboxValue, self)._process_custom_annotations(annotation_type, field_path, processor) TeamSharedDropboxValue_validator = bv.Union(TeamSharedDropboxValue) - class TeamSpaceAllocation(bb.Struct): """ :ivar TeamSpaceAllocation.used: @@ -1069,23 +1016,21 @@ class TeamSpaceAllocation(bb.Struct): """ __slots__ = [ - "_used_value", - "_allocated_value", - "_user_within_team_space_allocated_value", - "_user_within_team_space_limit_type_value", - "_user_within_team_space_used_cached_value", + '_used_value', + '_allocated_value', + '_user_within_team_space_allocated_value', + '_user_within_team_space_limit_type_value', + '_user_within_team_space_used_cached_value', ] _has_required_fields = True - def __init__( - self, - used=None, - allocated=None, - user_within_team_space_allocated=None, - user_within_team_space_limit_type=None, - user_within_team_space_used_cached=None, - ): + def __init__(self, + used=None, + allocated=None, + user_within_team_space_allocated=None, + user_within_team_space_limit_type=None, + user_within_team_space_used_cached=None): self._used_value = bb.NOT_SET self._allocated_value = bb.NOT_SET self._user_within_team_space_allocated_value = bb.NOT_SET @@ -1112,22 +1057,16 @@ def __init__( user_within_team_space_allocated = bb.Attribute("user_within_team_space_allocated") # Instance attribute type: team_common.MemberSpaceLimitType (validator is set below) - user_within_team_space_limit_type = bb.Attribute( - "user_within_team_space_limit_type", user_defined=True - ) + user_within_team_space_limit_type = bb.Attribute("user_within_team_space_limit_type", user_defined=True) # Instance attribute type: int (validator is set below) user_within_team_space_used_cached = bb.Attribute("user_within_team_space_used_cached") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamSpaceAllocation, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(TeamSpaceAllocation, self)._process_custom_annotations(annotation_type, field_path, processor) TeamSpaceAllocation_validator = bv.Struct(TeamSpaceAllocation) - class UserFeature(bb.Union): """ A set of features that a Dropbox User account may have configured. @@ -1150,7 +1089,7 @@ class UserFeature(bb.Union): namespace is distinct from their root namespace. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition paper_as_files = None # Attribute is overwritten below the class definition @@ -1168,7 +1107,7 @@ def is_paper_as_files(self): :rtype: bool """ - return self._tag == "paper_as_files" + return self._tag == 'paper_as_files' def is_file_locking(self): """ @@ -1176,7 +1115,7 @@ def is_file_locking(self): :rtype: bool """ - return self._tag == "file_locking" + return self._tag == 'file_locking' def is_team_shared_dropbox(self): """ @@ -1184,7 +1123,7 @@ def is_team_shared_dropbox(self): :rtype: bool """ - return self._tag == "team_shared_dropbox" + return self._tag == 'team_shared_dropbox' def is_distinct_member_home(self): """ @@ -1192,7 +1131,7 @@ def is_distinct_member_home(self): :rtype: bool """ - return self._tag == "distinct_member_home" + return self._tag == 'distinct_member_home' def is_other(self): """ @@ -1200,15 +1139,13 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): super(UserFeature, self)._process_custom_annotations(annotation_type, field_path, processor) - UserFeature_validator = bv.Union(UserFeature) - class UserFeatureValue(bb.Union): """ Values that correspond to entries in :class:`UserFeature`. @@ -1218,7 +1155,7 @@ class UserFeatureValue(bb.Union): corresponding ``get_*`` method. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition other = None @@ -1231,7 +1168,7 @@ def paper_as_files(cls, val): :param PaperAsFilesValue val: :rtype: UserFeatureValue """ - return cls("paper_as_files", val) + return cls('paper_as_files', val) @classmethod def file_locking(cls, val): @@ -1242,7 +1179,7 @@ def file_locking(cls, val): :param FileLockingValue val: :rtype: UserFeatureValue """ - return cls("file_locking", val) + return cls('file_locking', val) @classmethod def team_shared_dropbox(cls, val): @@ -1253,7 +1190,7 @@ def team_shared_dropbox(cls, val): :param TeamSharedDropboxValue val: :rtype: UserFeatureValue """ - return cls("team_shared_dropbox", val) + return cls('team_shared_dropbox', val) @classmethod def distinct_member_home(cls, val): @@ -1264,7 +1201,7 @@ def distinct_member_home(cls, val): :param DistinctMemberHomeValue val: :rtype: UserFeatureValue """ - return cls("distinct_member_home", val) + return cls('distinct_member_home', val) def is_paper_as_files(self): """ @@ -1272,7 +1209,7 @@ def is_paper_as_files(self): :rtype: bool """ - return self._tag == "paper_as_files" + return self._tag == 'paper_as_files' def is_file_locking(self): """ @@ -1280,7 +1217,7 @@ def is_file_locking(self): :rtype: bool """ - return self._tag == "file_locking" + return self._tag == 'file_locking' def is_team_shared_dropbox(self): """ @@ -1288,7 +1225,7 @@ def is_team_shared_dropbox(self): :rtype: bool """ - return self._tag == "team_shared_dropbox" + return self._tag == 'team_shared_dropbox' def is_distinct_member_home(self): """ @@ -1296,7 +1233,7 @@ def is_distinct_member_home(self): :rtype: bool """ - return self._tag == "distinct_member_home" + return self._tag == 'distinct_member_home' def is_other(self): """ @@ -1304,7 +1241,7 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def get_paper_as_files(self): """ @@ -1347,14 +1284,10 @@ def get_distinct_member_home(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UserFeatureValue, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UserFeatureValue, self)._process_custom_annotations(annotation_type, field_path, processor) UserFeatureValue_validator = bv.Union(UserFeatureValue) - class UserFeaturesGetValuesBatchArg(bb.Struct): """ :ivar UserFeaturesGetValuesBatchArg.features: @@ -1363,12 +1296,13 @@ class UserFeaturesGetValuesBatchArg(bb.Struct): """ __slots__ = [ - "_features_value", + '_features_value', ] _has_required_fields = True - def __init__(self, features=None): + def __init__(self, + features=None): self._features_value = bb.NOT_SET if features is not None: self.features = features @@ -1377,14 +1311,10 @@ def __init__(self, features=None): features = bb.Attribute("features") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UserFeaturesGetValuesBatchArg, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UserFeaturesGetValuesBatchArg, self)._process_custom_annotations(annotation_type, field_path, processor) UserFeaturesGetValuesBatchArg_validator = bv.Struct(UserFeaturesGetValuesBatchArg) - class UserFeaturesGetValuesBatchError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -1396,7 +1326,7 @@ class UserFeaturesGetValuesBatchError(bb.Union): :class:`UserFeaturesGetValuesBatchArg`.features list. """ - _catch_all = "other" + _catch_all = 'other' # Attribute is overwritten below the class definition empty_features_list = None # Attribute is overwritten below the class definition @@ -1408,7 +1338,7 @@ def is_empty_features_list(self): :rtype: bool """ - return self._tag == "empty_features_list" + return self._tag == 'empty_features_list' def is_other(self): """ @@ -1416,25 +1346,23 @@ def is_other(self): :rtype: bool """ - return self._tag == "other" + return self._tag == 'other' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UserFeaturesGetValuesBatchError, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UserFeaturesGetValuesBatchError, self)._process_custom_annotations(annotation_type, field_path, processor) UserFeaturesGetValuesBatchError_validator = bv.Union(UserFeaturesGetValuesBatchError) - class UserFeaturesGetValuesBatchResult(bb.Struct): + __slots__ = [ - "_values_value", + '_values_value', ] _has_required_fields = True - def __init__(self, values=None): + def __init__(self, + values=None): self._values_value = bb.NOT_SET if values is not None: self.values = values @@ -1443,10 +1371,7 @@ def __init__(self, values=None): values = bb.Attribute("values") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UserFeaturesGetValuesBatchResult, self)._process_custom_annotations( - annotation_type, field_path, processor - ) - + super(UserFeaturesGetValuesBatchResult, self)._process_custom_annotations(annotation_type, field_path, processor) UserFeaturesGetValuesBatchResult_validator = bv.Struct(UserFeaturesGetValuesBatchResult) @@ -1457,57 +1382,51 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): Account.email_verified.validator = bv.Boolean() Account.profile_photo_url.validator = bv.Nullable(bv.String()) Account.disabled.validator = bv.Boolean() -Account._all_field_names_ = set( - [ - "account_id", - "name", - "email", - "email_verified", - "profile_photo_url", - "disabled", - ] -) +Account._all_field_names_ = set([ + 'account_id', + 'name', + 'email', + 'email_verified', + 'profile_photo_url', + 'disabled', +]) Account._all_fields_ = [ - ("account_id", Account.account_id.validator), - ("name", Account.name.validator), - ("email", Account.email.validator), - ("email_verified", Account.email_verified.validator), - ("profile_photo_url", Account.profile_photo_url.validator), - ("disabled", Account.disabled.validator), + ('account_id', Account.account_id.validator), + ('name', Account.name.validator), + ('email', Account.email.validator), + ('email_verified', Account.email_verified.validator), + ('profile_photo_url', Account.profile_photo_url.validator), + ('disabled', Account.disabled.validator), ] BasicAccount.is_teammate.validator = bv.Boolean() BasicAccount.team_member_id.validator = bv.Nullable(bv.String()) -BasicAccount._all_field_names_ = Account._all_field_names_.union( - set( - [ - "is_teammate", - "team_member_id", - ] - ) -) +BasicAccount._all_field_names_ = Account._all_field_names_.union(set([ + 'is_teammate', + 'team_member_id', +])) BasicAccount._all_fields_ = Account._all_fields_ + [ - ("is_teammate", BasicAccount.is_teammate.validator), - ("team_member_id", BasicAccount.team_member_id.validator), + ('is_teammate', BasicAccount.is_teammate.validator), + ('team_member_id', BasicAccount.team_member_id.validator), ] DistinctMemberHomeValue._enabled_validator = bv.Boolean() DistinctMemberHomeValue._other_validator = bv.Void() DistinctMemberHomeValue._tagmap = { - "enabled": DistinctMemberHomeValue._enabled_validator, - "other": DistinctMemberHomeValue._other_validator, + 'enabled': DistinctMemberHomeValue._enabled_validator, + 'other': DistinctMemberHomeValue._other_validator, } -DistinctMemberHomeValue.other = DistinctMemberHomeValue("other") +DistinctMemberHomeValue.other = DistinctMemberHomeValue('other') FileLockingValue._enabled_validator = bv.Boolean() FileLockingValue._other_validator = bv.Void() FileLockingValue._tagmap = { - "enabled": FileLockingValue._enabled_validator, - "other": FileLockingValue._other_validator, + 'enabled': FileLockingValue._enabled_validator, + 'other': FileLockingValue._other_validator, } -FileLockingValue.other = FileLockingValue("other") +FileLockingValue.other = FileLockingValue('other') FullAccount.country.validator = bv.Nullable(bv.String(min_length=2, max_length=2)) FullAccount.locale.validator = bv.String(min_length=2) @@ -1517,190 +1436,161 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): FullAccount.is_paired.validator = bv.Boolean() FullAccount.account_type.validator = users_common.AccountType_validator FullAccount.root_info.validator = common.RootInfo_validator -FullAccount._all_field_names_ = Account._all_field_names_.union( - set( - [ - "country", - "locale", - "referral_link", - "team", - "team_member_id", - "is_paired", - "account_type", - "root_info", - ] - ) -) +FullAccount._all_field_names_ = Account._all_field_names_.union(set([ + 'country', + 'locale', + 'referral_link', + 'team', + 'team_member_id', + 'is_paired', + 'account_type', + 'root_info', +])) FullAccount._all_fields_ = Account._all_fields_ + [ - ("country", FullAccount.country.validator), - ("locale", FullAccount.locale.validator), - ("referral_link", FullAccount.referral_link.validator), - ("team", FullAccount.team.validator), - ("team_member_id", FullAccount.team_member_id.validator), - ("is_paired", FullAccount.is_paired.validator), - ("account_type", FullAccount.account_type.validator), - ("root_info", FullAccount.root_info.validator), + ('country', FullAccount.country.validator), + ('locale', FullAccount.locale.validator), + ('referral_link', FullAccount.referral_link.validator), + ('team', FullAccount.team.validator), + ('team_member_id', FullAccount.team_member_id.validator), + ('is_paired', FullAccount.is_paired.validator), + ('account_type', FullAccount.account_type.validator), + ('root_info', FullAccount.root_info.validator), ] Team.id.validator = bv.String() Team.name.validator = bv.String() -Team._all_field_names_ = set( - [ - "id", - "name", - ] -) +Team._all_field_names_ = set([ + 'id', + 'name', +]) Team._all_fields_ = [ - ("id", Team.id.validator), - ("name", Team.name.validator), + ('id', Team.id.validator), + ('name', Team.name.validator), ] FullTeam.sharing_policies.validator = team_policies.TeamSharingPolicies_validator FullTeam.office_addin_policy.validator = team_policies.OfficeAddInPolicy_validator FullTeam.top_level_content_policy.validator = team_policies.TopLevelContentPolicy_validator -FullTeam._all_field_names_ = Team._all_field_names_.union( - set( - [ - "sharing_policies", - "office_addin_policy", - "top_level_content_policy", - ] - ) -) +FullTeam._all_field_names_ = Team._all_field_names_.union(set([ + 'sharing_policies', + 'office_addin_policy', + 'top_level_content_policy', +])) FullTeam._all_fields_ = Team._all_fields_ + [ - ("sharing_policies", FullTeam.sharing_policies.validator), - ("office_addin_policy", FullTeam.office_addin_policy.validator), - ("top_level_content_policy", FullTeam.top_level_content_policy.validator), + ('sharing_policies', FullTeam.sharing_policies.validator), + ('office_addin_policy', FullTeam.office_addin_policy.validator), + ('top_level_content_policy', FullTeam.top_level_content_policy.validator), ] GetAccountArg.account_id.validator = users_common.AccountId_validator -GetAccountArg._all_field_names_ = set(["account_id"]) -GetAccountArg._all_fields_ = [("account_id", GetAccountArg.account_id.validator)] +GetAccountArg._all_field_names_ = set(['account_id']) +GetAccountArg._all_fields_ = [('account_id', GetAccountArg.account_id.validator)] GetAccountBatchArg.account_ids.validator = bv.List(users_common.AccountId_validator, min_items=1) -GetAccountBatchArg._all_field_names_ = set(["account_ids"]) -GetAccountBatchArg._all_fields_ = [("account_ids", GetAccountBatchArg.account_ids.validator)] +GetAccountBatchArg._all_field_names_ = set(['account_ids']) +GetAccountBatchArg._all_fields_ = [('account_ids', GetAccountBatchArg.account_ids.validator)] GetAccountBatchError._no_account_validator = users_common.AccountId_validator GetAccountBatchError._other_validator = bv.Void() GetAccountBatchError._tagmap = { - "no_account": GetAccountBatchError._no_account_validator, - "other": GetAccountBatchError._other_validator, + 'no_account': GetAccountBatchError._no_account_validator, + 'other': GetAccountBatchError._other_validator, } -GetAccountBatchError.other = GetAccountBatchError("other") +GetAccountBatchError.other = GetAccountBatchError('other') GetAccountError._no_account_validator = bv.Void() GetAccountError._other_validator = bv.Void() GetAccountError._tagmap = { - "no_account": GetAccountError._no_account_validator, - "other": GetAccountError._other_validator, + 'no_account': GetAccountError._no_account_validator, + 'other': GetAccountError._other_validator, } -GetAccountError.no_account = GetAccountError("no_account") -GetAccountError.other = GetAccountError("other") +GetAccountError.no_account = GetAccountError('no_account') +GetAccountError.other = GetAccountError('other') IndividualSpaceAllocation.allocated.validator = bv.UInt64() -IndividualSpaceAllocation._all_field_names_ = set(["allocated"]) -IndividualSpaceAllocation._all_fields_ = [ - ("allocated", IndividualSpaceAllocation.allocated.validator) -] +IndividualSpaceAllocation._all_field_names_ = set(['allocated']) +IndividualSpaceAllocation._all_fields_ = [('allocated', IndividualSpaceAllocation.allocated.validator)] Name.given_name.validator = bv.String() Name.surname.validator = bv.String() Name.familiar_name.validator = bv.String() Name.display_name.validator = bv.String() Name.abbreviated_name.validator = bv.String() -Name._all_field_names_ = set( - [ - "given_name", - "surname", - "familiar_name", - "display_name", - "abbreviated_name", - ] -) +Name._all_field_names_ = set([ + 'given_name', + 'surname', + 'familiar_name', + 'display_name', + 'abbreviated_name', +]) Name._all_fields_ = [ - ("given_name", Name.given_name.validator), - ("surname", Name.surname.validator), - ("familiar_name", Name.familiar_name.validator), - ("display_name", Name.display_name.validator), - ("abbreviated_name", Name.abbreviated_name.validator), + ('given_name', Name.given_name.validator), + ('surname', Name.surname.validator), + ('familiar_name', Name.familiar_name.validator), + ('display_name', Name.display_name.validator), + ('abbreviated_name', Name.abbreviated_name.validator), ] PaperAsFilesValue._enabled_validator = bv.Boolean() PaperAsFilesValue._other_validator = bv.Void() PaperAsFilesValue._tagmap = { - "enabled": PaperAsFilesValue._enabled_validator, - "other": PaperAsFilesValue._other_validator, + 'enabled': PaperAsFilesValue._enabled_validator, + 'other': PaperAsFilesValue._other_validator, } -PaperAsFilesValue.other = PaperAsFilesValue("other") +PaperAsFilesValue.other = PaperAsFilesValue('other') SpaceAllocation._individual_validator = IndividualSpaceAllocation_validator SpaceAllocation._team_validator = TeamSpaceAllocation_validator SpaceAllocation._other_validator = bv.Void() SpaceAllocation._tagmap = { - "individual": SpaceAllocation._individual_validator, - "team": SpaceAllocation._team_validator, - "other": SpaceAllocation._other_validator, + 'individual': SpaceAllocation._individual_validator, + 'team': SpaceAllocation._team_validator, + 'other': SpaceAllocation._other_validator, } -SpaceAllocation.other = SpaceAllocation("other") +SpaceAllocation.other = SpaceAllocation('other') SpaceUsage.used.validator = bv.UInt64() SpaceUsage.allocation.validator = SpaceAllocation_validator -SpaceUsage._all_field_names_ = set( - [ - "used", - "allocation", - ] -) +SpaceUsage._all_field_names_ = set([ + 'used', + 'allocation', +]) SpaceUsage._all_fields_ = [ - ("used", SpaceUsage.used.validator), - ("allocation", SpaceUsage.allocation.validator), + ('used', SpaceUsage.used.validator), + ('allocation', SpaceUsage.allocation.validator), ] TeamSharedDropboxValue._enabled_validator = bv.Boolean() TeamSharedDropboxValue._other_validator = bv.Void() TeamSharedDropboxValue._tagmap = { - "enabled": TeamSharedDropboxValue._enabled_validator, - "other": TeamSharedDropboxValue._other_validator, + 'enabled': TeamSharedDropboxValue._enabled_validator, + 'other': TeamSharedDropboxValue._other_validator, } -TeamSharedDropboxValue.other = TeamSharedDropboxValue("other") +TeamSharedDropboxValue.other = TeamSharedDropboxValue('other') TeamSpaceAllocation.used.validator = bv.UInt64() TeamSpaceAllocation.allocated.validator = bv.UInt64() TeamSpaceAllocation.user_within_team_space_allocated.validator = bv.UInt64() -TeamSpaceAllocation.user_within_team_space_limit_type.validator = ( - team_common.MemberSpaceLimitType_validator -) +TeamSpaceAllocation.user_within_team_space_limit_type.validator = team_common.MemberSpaceLimitType_validator TeamSpaceAllocation.user_within_team_space_used_cached.validator = bv.UInt64() -TeamSpaceAllocation._all_field_names_ = set( - [ - "used", - "allocated", - "user_within_team_space_allocated", - "user_within_team_space_limit_type", - "user_within_team_space_used_cached", - ] -) +TeamSpaceAllocation._all_field_names_ = set([ + 'used', + 'allocated', + 'user_within_team_space_allocated', + 'user_within_team_space_limit_type', + 'user_within_team_space_used_cached', +]) TeamSpaceAllocation._all_fields_ = [ - ("used", TeamSpaceAllocation.used.validator), - ("allocated", TeamSpaceAllocation.allocated.validator), - ( - "user_within_team_space_allocated", - TeamSpaceAllocation.user_within_team_space_allocated.validator, - ), - ( - "user_within_team_space_limit_type", - TeamSpaceAllocation.user_within_team_space_limit_type.validator, - ), - ( - "user_within_team_space_used_cached", - TeamSpaceAllocation.user_within_team_space_used_cached.validator, - ), + ('used', TeamSpaceAllocation.used.validator), + ('allocated', TeamSpaceAllocation.allocated.validator), + ('user_within_team_space_allocated', TeamSpaceAllocation.user_within_team_space_allocated.validator), + ('user_within_team_space_limit_type', TeamSpaceAllocation.user_within_team_space_limit_type.validator), + ('user_within_team_space_used_cached', TeamSpaceAllocation.user_within_team_space_used_cached.validator), ] UserFeature._paper_as_files_validator = bv.Void() @@ -1709,18 +1599,18 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): UserFeature._distinct_member_home_validator = bv.Void() UserFeature._other_validator = bv.Void() UserFeature._tagmap = { - "paper_as_files": UserFeature._paper_as_files_validator, - "file_locking": UserFeature._file_locking_validator, - "team_shared_dropbox": UserFeature._team_shared_dropbox_validator, - "distinct_member_home": UserFeature._distinct_member_home_validator, - "other": UserFeature._other_validator, + 'paper_as_files': UserFeature._paper_as_files_validator, + 'file_locking': UserFeature._file_locking_validator, + 'team_shared_dropbox': UserFeature._team_shared_dropbox_validator, + 'distinct_member_home': UserFeature._distinct_member_home_validator, + 'other': UserFeature._other_validator, } -UserFeature.paper_as_files = UserFeature("paper_as_files") -UserFeature.file_locking = UserFeature("file_locking") -UserFeature.team_shared_dropbox = UserFeature("team_shared_dropbox") -UserFeature.distinct_member_home = UserFeature("distinct_member_home") -UserFeature.other = UserFeature("other") +UserFeature.paper_as_files = UserFeature('paper_as_files') +UserFeature.file_locking = UserFeature('file_locking') +UserFeature.team_shared_dropbox = UserFeature('team_shared_dropbox') +UserFeature.distinct_member_home = UserFeature('distinct_member_home') +UserFeature.other = UserFeature('other') UserFeatureValue._paper_as_files_validator = PaperAsFilesValue_validator UserFeatureValue._file_locking_validator = FileLockingValue_validator @@ -1728,89 +1618,94 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): UserFeatureValue._distinct_member_home_validator = DistinctMemberHomeValue_validator UserFeatureValue._other_validator = bv.Void() UserFeatureValue._tagmap = { - "paper_as_files": UserFeatureValue._paper_as_files_validator, - "file_locking": UserFeatureValue._file_locking_validator, - "team_shared_dropbox": UserFeatureValue._team_shared_dropbox_validator, - "distinct_member_home": UserFeatureValue._distinct_member_home_validator, - "other": UserFeatureValue._other_validator, + 'paper_as_files': UserFeatureValue._paper_as_files_validator, + 'file_locking': UserFeatureValue._file_locking_validator, + 'team_shared_dropbox': UserFeatureValue._team_shared_dropbox_validator, + 'distinct_member_home': UserFeatureValue._distinct_member_home_validator, + 'other': UserFeatureValue._other_validator, } -UserFeatureValue.other = UserFeatureValue("other") +UserFeatureValue.other = UserFeatureValue('other') UserFeaturesGetValuesBatchArg.features.validator = bv.List(UserFeature_validator) -UserFeaturesGetValuesBatchArg._all_field_names_ = set(["features"]) -UserFeaturesGetValuesBatchArg._all_fields_ = [ - ("features", UserFeaturesGetValuesBatchArg.features.validator) -] +UserFeaturesGetValuesBatchArg._all_field_names_ = set(['features']) +UserFeaturesGetValuesBatchArg._all_fields_ = [('features', UserFeaturesGetValuesBatchArg.features.validator)] UserFeaturesGetValuesBatchError._empty_features_list_validator = bv.Void() UserFeaturesGetValuesBatchError._other_validator = bv.Void() UserFeaturesGetValuesBatchError._tagmap = { - "empty_features_list": UserFeaturesGetValuesBatchError._empty_features_list_validator, - "other": UserFeaturesGetValuesBatchError._other_validator, + 'empty_features_list': UserFeaturesGetValuesBatchError._empty_features_list_validator, + 'other': UserFeaturesGetValuesBatchError._other_validator, } -UserFeaturesGetValuesBatchError.empty_features_list = UserFeaturesGetValuesBatchError( - "empty_features_list" -) -UserFeaturesGetValuesBatchError.other = UserFeaturesGetValuesBatchError("other") +UserFeaturesGetValuesBatchError.empty_features_list = UserFeaturesGetValuesBatchError('empty_features_list') +UserFeaturesGetValuesBatchError.other = UserFeaturesGetValuesBatchError('other') UserFeaturesGetValuesBatchResult.values.validator = bv.List(UserFeatureValue_validator) -UserFeaturesGetValuesBatchResult._all_field_names_ = set(["values"]) -UserFeaturesGetValuesBatchResult._all_fields_ = [ - ("values", UserFeaturesGetValuesBatchResult.values.validator) -] +UserFeaturesGetValuesBatchResult._all_field_names_ = set(['values']) +UserFeaturesGetValuesBatchResult._all_fields_ = [('values', UserFeaturesGetValuesBatchResult.values.validator)] features_get_values = bb.Route( - "features/get_values", + 'features/get_values', 1, False, UserFeaturesGetValuesBatchArg_validator, UserFeaturesGetValuesBatchResult_validator, UserFeaturesGetValuesBatchError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) get_account = bb.Route( - "get_account", + 'get_account', 1, False, GetAccountArg_validator, BasicAccount_validator, GetAccountError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) get_account_batch = bb.Route( - "get_account_batch", + 'get_account_batch', 1, False, GetAccountBatchArg_validator, GetAccountBatchResult_validator, GetAccountBatchError_validator, - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) get_current_account = bb.Route( - "get_current_account", + 'get_current_account', 1, False, bv.Void(), FullAccount_validator, bv.Void(), - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) get_space_usage = bb.Route( - "get_space_usage", + 'get_space_usage', 1, False, bv.Void(), SpaceUsage_validator, bv.Void(), - {"auth": "user", "host": "api", "style": "rpc"}, + {'auth': 'user', + 'host': 'api', + 'style': 'rpc'}, ) ROUTES = { - "features/get_values": features_get_values, - "get_account": get_account, - "get_account_batch": get_account_batch, - "get_current_account": get_current_account, - "get_space_usage": get_space_usage, + 'features/get_values': features_get_values, + 'get_account': get_account, + 'get_account_batch': get_account_batch, + 'get_current_account': get_current_account, + 'get_space_usage': get_space_usage, } + diff --git a/dropbox/users_common.py b/dropbox/users_common.py index 5ee26be6..cd0a7aac 100644 --- a/dropbox/users_common.py +++ b/dropbox/users_common.py @@ -11,7 +11,6 @@ from stone.backends.python_rsrc import stone_base as bb from stone.backends.python_rsrc import stone_validators as bv - class AccountType(bb.Union): """ What type of account this user has. @@ -42,7 +41,7 @@ def is_basic(self): :rtype: bool """ - return self._tag == "basic" + return self._tag == 'basic' def is_pro(self): """ @@ -50,7 +49,7 @@ def is_pro(self): :rtype: bool """ - return self._tag == "pro" + return self._tag == 'pro' def is_business(self): """ @@ -58,12 +57,11 @@ def is_business(self): :rtype: bool """ - return self._tag == "business" + return self._tag == 'business' def _process_custom_annotations(self, annotation_type, field_path, processor): super(AccountType, self)._process_custom_annotations(annotation_type, field_path, processor) - AccountType_validator = bv.Union(AccountType) AccountId_validator = bv.String(min_length=40, max_length=40) @@ -71,13 +69,15 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): AccountType._pro_validator = bv.Void() AccountType._business_validator = bv.Void() AccountType._tagmap = { - "basic": AccountType._basic_validator, - "pro": AccountType._pro_validator, - "business": AccountType._business_validator, + 'basic': AccountType._basic_validator, + 'pro': AccountType._pro_validator, + 'business': AccountType._business_validator, } -AccountType.basic = AccountType("basic") -AccountType.pro = AccountType("pro") -AccountType.business = AccountType("business") +AccountType.basic = AccountType('basic') +AccountType.pro = AccountType('pro') +AccountType.business = AccountType('business') + +ROUTES = { +} -ROUTES = {} diff --git a/spec b/spec index 735a3316..aa7bd7a4 160000 --- a/spec +++ b/spec @@ -1 +1 @@ -Subproject commit 735a331613b476c6ed0670c8746075315eb6905e +Subproject commit aa7bd7a402565927065bcd39dd489808eadd69ff