dropbox.team_log – Team Log
- class dropbox.team_log.AccessMethodLogInfo(tag, value=None)
Bases:
UnionIndicates the method in which the action was performed.
This class acts as a tagged union. Only one of the
is_*methods will return true. To get the associated value of a tag (if one exists), use the correspondingget_*method.- Variables:
AccessMethodLogInfo.admin_console (WebSessionLogInfo) – Admin console session details.
AccessMethodLogInfo.api (ApiSessionLogInfo) – Api session details.
AccessMethodLogInfo.content_manager (WebSessionLogInfo) – Content manager session details.
AccessMethodLogInfo.end_user (SessionLogInfo) – End user session details.
AccessMethodLogInfo.enterprise_console (WebSessionLogInfo) – Enterprise console session details.
AccessMethodLogInfo.sign_in_as (WebSessionLogInfo) – Sign in as session details.
- classmethod admin_console(val)
Create an instance of this class set to the
admin_consoletag with valueval.- Parameters:
val (WebSessionLogInfo)
- Return type:
- classmethod api(val)
Create an instance of this class set to the
apitag with valueval.- Parameters:
val (ApiSessionLogInfo)
- Return type:
- classmethod content_manager(val)
Create an instance of this class set to the
content_managertag with valueval.- Parameters:
val (WebSessionLogInfo)
- Return type:
- classmethod end_user(val)
Create an instance of this class set to the
end_usertag with valueval.- Parameters:
val (SessionLogInfo)
- Return type:
- classmethod enterprise_console(val)
Create an instance of this class set to the
enterprise_consoletag with valueval.- Parameters:
val (WebSessionLogInfo)
- Return type:
- get_admin_console()
Admin console session details.
Only call this if
is_admin_console()is true.- Return type:
- get_content_manager()
Content manager session details.
Only call this if
is_content_manager()is true.- Return type:
- get_end_user()
End user session details.
Only call this if
is_end_user()is true.- Return type:
- get_enterprise_console()
Enterprise console session details.
Only call this if
is_enterprise_console()is true.- Return type:
- get_sign_in_as()
Sign in as session details.
Only call this if
is_sign_in_as()is true.- Return type:
- is_admin_console()
Check if the union tag is
admin_console.- Return type:
bool
- is_api()
Check if the union tag is
api.- Return type:
bool
- is_content_manager()
Check if the union tag is
content_manager.- Return type:
bool
- is_end_user()
Check if the union tag is
end_user.- Return type:
bool
- is_enterprise_console()
Check if the union tag is
enterprise_console.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- is_sign_in_as()
Check if the union tag is
sign_in_as.- Return type:
bool
- other = AccessMethodLogInfo('other', None)
- classmethod sign_in_as(val)
Create an instance of this class set to the
sign_in_astag with valueval.- Parameters:
val (WebSessionLogInfo)
- Return type:
- class dropbox.team_log.AccountCaptureAvailability(tag, value=None)
Bases:
UnionThis class acts as a tagged union. Only one of the
is_*methods will return true. To get the associated value of a tag (if one exists), use the correspondingget_*method.- available = AccountCaptureAvailability('available', None)
- is_available()
Check if the union tag is
available.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
Check if the union tag is
unavailable.- Return type:
bool
- other = AccountCaptureAvailability('other', None)
- class dropbox.team_log.AccountCaptureChangeAvailabilityDetails(new_value=None, previous_value=None)
Bases:
StructGranted/revoked option to enable account capture on team domains.
- Variables:
AccountCaptureChangeAvailabilityDetails.new_value – New account capture availabilty value.
AccountCaptureChangeAvailabilityDetails.previous_value – Previous account capture availabilty value. Might be missing due to historical data gap.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.AccountCaptureChangeAvailabilityType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.AccountCaptureChangePolicyDetails(new_value=None, previous_value=None)
Bases:
StructChanged account capture setting on team domain.
- Variables:
AccountCaptureChangePolicyDetails.new_value – New account capture policy.
AccountCaptureChangePolicyDetails.previous_value – Previous account capture policy. Might be missing due to historical data gap.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.AccountCaptureChangePolicyType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.AccountCaptureMigrateAccountDetails(domain_name=None)
Bases:
StructAccount-captured user migrated account to team.
- Variables:
AccountCaptureMigrateAccountDetails.domain_name – Domain name.
- __init__(domain_name=None)
- domain_name
- class dropbox.team_log.AccountCaptureMigrateAccountType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.AccountCaptureNotificationEmailsSentDetails(domain_name=None, notification_type=None)
Bases:
StructSent account capture email to all unmanaged members.
- Variables:
AccountCaptureNotificationEmailsSentDetails.domain_name – Domain name.
AccountCaptureNotificationEmailsSentDetails.notification_type – Account-capture email notification type.
- __init__(domain_name=None, notification_type=None)
- domain_name
- notification_type
- class dropbox.team_log.AccountCaptureNotificationEmailsSentType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.AccountCaptureNotificationType(tag, value=None)
Bases:
UnionThis class acts as a tagged union. Only one of the
is_*methods will return true. To get the associated value of a tag (if one exists), use the correspondingget_*method.- actionable_notification = AccountCaptureNotificationType('actionable_notification', None)
- is_actionable_notification()
Check if the union tag is
actionable_notification.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- is_proactive_warning_notification()
Check if the union tag is
proactive_warning_notification.- Return type:
bool
- other = AccountCaptureNotificationType('other', None)
- proactive_warning_notification = AccountCaptureNotificationType('proactive_warning_notification', None)
- class dropbox.team_log.AccountCapturePolicy(tag, value=None)
Bases:
UnionThis class acts as a tagged union. Only one of the
is_*methods will return true. To get the associated value of a tag (if one exists), use the correspondingget_*method.- all_users = AccountCapturePolicy('all_users', None)
- disabled = AccountCapturePolicy('disabled', None)
- invited_users = AccountCapturePolicy('invited_users', None)
- is_all_users()
Check if the union tag is
all_users.- Return type:
bool
- is_disabled()
Check if the union tag is
disabled.- Return type:
bool
- is_invited_users()
Check if the union tag is
invited_users.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- other = AccountCapturePolicy('other', None)
- class dropbox.team_log.AccountCaptureRelinquishAccountDetails(domain_name=None)
Bases:
StructAccount-captured user changed account email to personal email.
- Variables:
AccountCaptureRelinquishAccountDetails.domain_name – Domain name.
- __init__(domain_name=None)
- domain_name
- class dropbox.team_log.AccountCaptureRelinquishAccountType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.AccountLockOrUnlockedDetails(previous_value=None, new_value=None)
Bases:
StructUnlocked/locked account after failed sign in attempts.
- Variables:
AccountLockOrUnlockedDetails.previous_value – The previous account status.
AccountLockOrUnlockedDetails.new_value – The new account status.
- __init__(previous_value=None, new_value=None)
- new_value
- previous_value
- class dropbox.team_log.AccountLockOrUnlockedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.AccountState(tag, value=None)
Bases:
UnionThis class acts as a tagged union. Only one of the
is_*methods will return true. To get the associated value of a tag (if one exists), use the correspondingget_*method.- is_locked()
Check if the union tag is
locked.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- is_unlocked()
Check if the union tag is
unlocked.- Return type:
bool
- locked = AccountState('locked', None)
- other = AccountState('other', None)
- unlocked = AccountState('unlocked', None)
- class dropbox.team_log.ActionDetails(tag, value=None)
Bases:
UnionAdditional information indicating the action taken that caused status change.
This class acts as a tagged union. Only one of the
is_*methods will return true. To get the associated value of a tag (if one exists), use the correspondingget_*method.- Variables:
ActionDetails.remove_action (MemberRemoveActionType) – Define how the user was removed from the team.
ActionDetails.team_invite_details (TeamInviteDetails) – Additional information relevant when someone is invited to the team
ActionDetails.team_join_details (JoinTeamDetails) – Additional information relevant when a new member joins the team.
- get_remove_action()
Define how the user was removed from the team.
Only call this if
is_remove_action()is true.- Return type:
- get_team_invite_details()
Additional information relevant when someone is invited to the team
Only call this if
is_team_invite_details()is true.- Return type:
- get_team_join_details()
Additional information relevant when a new member joins the team.
Only call this if
is_team_join_details()is true.- Return type:
- is_other()
Check if the union tag is
other.- Return type:
bool
- is_remove_action()
Check if the union tag is
remove_action.- Return type:
bool
- is_team_invite_details()
Check if the union tag is
team_invite_details.- Return type:
bool
- is_team_join_details()
Check if the union tag is
team_join_details.- Return type:
bool
- other = ActionDetails('other', None)
- classmethod remove_action(val)
Create an instance of this class set to the
remove_actiontag with valueval.- Parameters:
val (MemberRemoveActionType)
- Return type:
- classmethod team_invite_details(val)
Create an instance of this class set to the
team_invite_detailstag with valueval.- Parameters:
val (TeamInviteDetails)
- Return type:
- classmethod team_join_details(val)
Create an instance of this class set to the
team_join_detailstag with valueval.- Parameters:
val (JoinTeamDetails)
- Return type:
- class dropbox.team_log.ActorLogInfo(tag, value=None)
Bases:
UnionThe entity who performed the action.
This class acts as a tagged union. Only one of the
is_*methods will return true. To get the associated value of a tag (if one exists), use the correspondingget_*method.- Variables:
ActorLogInfo.admin (UserLogInfo) – The admin who did the action.
ActorLogInfo.anonymous – Anonymous actor.
ActorLogInfo.app (AppLogInfo) – The application who did the action.
ActorLogInfo.dropbox – Action done by Dropbox.
ActorLogInfo.reseller (ResellerLogInfo) – Action done by reseller.
ActorLogInfo.user (UserLogInfo) – The user who did the action.
- classmethod admin(val)
Create an instance of this class set to the
admintag with valueval.- Parameters:
val (UserLogInfo)
- Return type:
- anonymous = ActorLogInfo('anonymous', None)
- classmethod app(val)
Create an instance of this class set to the
apptag with valueval.- Parameters:
val (AppLogInfo)
- Return type:
- dropbox = ActorLogInfo('dropbox', None)
- get_admin()
The admin who did the action.
Only call this if
is_admin()is true.- Return type:
- get_reseller()
Action done by reseller.
Only call this if
is_reseller()is true.- Return type:
- is_admin()
Check if the union tag is
admin.- Return type:
bool
- is_anonymous()
Check if the union tag is
anonymous.- Return type:
bool
- is_app()
Check if the union tag is
app.- Return type:
bool
- is_dropbox()
Check if the union tag is
dropbox.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- is_reseller()
Check if the union tag is
reseller.- Return type:
bool
- is_user()
Check if the union tag is
user.- Return type:
bool
- other = ActorLogInfo('other', None)
- classmethod reseller(val)
Create an instance of this class set to the
resellertag with valueval.- Parameters:
val (ResellerLogInfo)
- Return type:
- classmethod user(val)
Create an instance of this class set to the
usertag with valueval.- Parameters:
val (UserLogInfo)
- Return type:
- class dropbox.team_log.AddonAssignedDetails(user_name=None, addon_name=None)
Bases:
StructAdd-on Assigned.
- Variables:
AddonAssignedDetails.user_name – User’s name.
AddonAssignedDetails.addon_name – Add-on name.
- __init__(user_name=None, addon_name=None)
- addon_name
- user_name
- class dropbox.team_log.AddonAssignedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.AddonLogInfo(addon_name=None)
Bases:
StructAdd-on logged information
- Variables:
AddonLogInfo.addon_name – Add-on name.
- __init__(addon_name=None)
- addon_name
- class dropbox.team_log.AddonRemovedDetails(user_name=None, addon_name=None)
Bases:
StructAdd-on Removed.
- Variables:
AddonRemovedDetails.user_name – User’s name.
AddonRemovedDetails.addon_name – Add-on name.
- __init__(user_name=None, addon_name=None)
- addon_name
- user_name
- class dropbox.team_log.AddonRemovedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.AdminAlertCategoryEnum(tag, value=None)
Bases:
UnionAlert category
This class acts as a tagged union. Only one of the
is_*methods will return true. To get the associated value of a tag (if one exists), use the correspondingget_*method.- account_takeover = AdminAlertCategoryEnum('account_takeover', None)
- data_loss_protection = AdminAlertCategoryEnum('data_loss_protection', None)
- information_governance = AdminAlertCategoryEnum('information_governance', None)
- is_account_takeover()
Check if the union tag is
account_takeover.- Return type:
bool
- is_data_loss_protection()
Check if the union tag is
data_loss_protection.- Return type:
bool
- is_information_governance()
Check if the union tag is
information_governance.- Return type:
bool
- is_malware_sharing()
Check if the union tag is
malware_sharing.- Return type:
bool
- is_massive_file_operation()
Check if the union tag is
massive_file_operation.- Return type:
bool
- is_na()
Check if the union tag is
na.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- is_threat_management()
Check if the union tag is
threat_management.- Return type:
bool
- malware_sharing = AdminAlertCategoryEnum('malware_sharing', None)
- massive_file_operation = AdminAlertCategoryEnum('massive_file_operation', None)
- na = AdminAlertCategoryEnum('na', None)
- other = AdminAlertCategoryEnum('other', None)
- threat_management = AdminAlertCategoryEnum('threat_management', None)
- class dropbox.team_log.AdminAlertGeneralStateEnum(tag, value=None)
Bases:
UnionAlert state
This class acts as a tagged union. Only one of the
is_*methods will return true. To get the associated value of a tag (if one exists), use the correspondingget_*method.- active = AdminAlertGeneralStateEnum('active', None)
- dismissed = AdminAlertGeneralStateEnum('dismissed', None)
- in_progress = AdminAlertGeneralStateEnum('in_progress', None)
- is_active()
Check if the union tag is
active.- Return type:
bool
- is_dismissed()
Check if the union tag is
dismissed.- Return type:
bool
- is_in_progress()
Check if the union tag is
in_progress.- Return type:
bool
- is_na()
Check if the union tag is
na.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- is_resolved()
Check if the union tag is
resolved.- Return type:
bool
- na = AdminAlertGeneralStateEnum('na', None)
- other = AdminAlertGeneralStateEnum('other', None)
- resolved = AdminAlertGeneralStateEnum('resolved', None)
- class dropbox.team_log.AdminAlertSeverityEnum(tag, value=None)
Bases:
UnionAlert severity
This class acts as a tagged union. Only one of the
is_*methods will return true. To get the associated value of a tag (if one exists), use the correspondingget_*method.- high = AdminAlertSeverityEnum('high', None)
- info = AdminAlertSeverityEnum('info', None)
- is_high()
Check if the union tag is
high.- Return type:
bool
- is_info()
Check if the union tag is
info.- Return type:
bool
- is_low()
Check if the union tag is
low.- Return type:
bool
- is_medium()
Check if the union tag is
medium.- Return type:
bool
- is_na()
Check if the union tag is
na.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- low = AdminAlertSeverityEnum('low', None)
- medium = AdminAlertSeverityEnum('medium', None)
- na = AdminAlertSeverityEnum('na', None)
- other = AdminAlertSeverityEnum('other', None)
- class dropbox.team_log.AdminAlertingAlertConfiguration(alert_state=None, sensitivity_level=None, recipients_settings=None, text=None, excluded_file_extensions=None, malware_exclusion_state=None)
Bases:
StructAlert configurations
- Variables:
AdminAlertingAlertConfiguration.alert_state – Alert state.
AdminAlertingAlertConfiguration.sensitivity_level – Sensitivity level.
AdminAlertingAlertConfiguration.recipients_settings – Recipient settings.
AdminAlertingAlertConfiguration.text – Text.
AdminAlertingAlertConfiguration.excluded_file_extensions – Excluded file extensions.
AdminAlertingAlertConfiguration.malware_exclusion_state – Malware exclusion list state.
- __init__(alert_state=None, sensitivity_level=None, recipients_settings=None, text=None, excluded_file_extensions=None, malware_exclusion_state=None)
- alert_state
- excluded_file_extensions
- malware_exclusion_state
- recipients_settings
- sensitivity_level
- text
- class dropbox.team_log.AdminAlertingAlertSensitivity(tag, value=None)
Bases:
UnionAlert sensitivity
This class acts as a tagged union. Only one of the
is_*methods will return true. To get the associated value of a tag (if one exists), use the correspondingget_*method.- high = AdminAlertingAlertSensitivity('high', None)
- highest = AdminAlertingAlertSensitivity('highest', None)
- invalid = AdminAlertingAlertSensitivity('invalid', None)
- is_high()
Check if the union tag is
high.- Return type:
bool
- is_highest()
Check if the union tag is
highest.- Return type:
bool
- is_invalid()
Check if the union tag is
invalid.- Return type:
bool
- is_low()
Check if the union tag is
low.- Return type:
bool
- is_lowest()
Check if the union tag is
lowest.- Return type:
bool
- is_medium()
Check if the union tag is
medium.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- low = AdminAlertingAlertSensitivity('low', None)
- lowest = AdminAlertingAlertSensitivity('lowest', None)
- medium = AdminAlertingAlertSensitivity('medium', None)
- other = AdminAlertingAlertSensitivity('other', None)
- class dropbox.team_log.AdminAlertingAlertStateChangedDetails(alert_name=None, alert_severity=None, alert_category=None, alert_instance_id=None, previous_value=None, new_value=None)
Bases:
StructChanged an alert state.
- Variables:
AdminAlertingAlertStateChangedDetails.alert_name – Alert name.
AdminAlertingAlertStateChangedDetails.alert_severity – Alert severity.
AdminAlertingAlertStateChangedDetails.alert_category – Alert category.
AdminAlertingAlertStateChangedDetails.alert_instance_id – Alert ID.
AdminAlertingAlertStateChangedDetails.previous_value – Alert state before the change.
AdminAlertingAlertStateChangedDetails.new_value – Alert state after the change.
- __init__(alert_name=None, alert_severity=None, alert_category=None, alert_instance_id=None, previous_value=None, new_value=None)
- alert_category
- alert_instance_id
- alert_name
- alert_severity
- new_value
- previous_value
- class dropbox.team_log.AdminAlertingAlertStateChangedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.AdminAlertingAlertStatePolicy(tag, value=None)
Bases:
UnionPolicy for controlling whether an alert can be triggered or not
This class acts as a tagged union. Only one of the
is_*methods will return true. To get the associated value of a tag (if one exists), use the correspondingget_*method.- is_off()
Check if the union tag is
off.- Return type:
bool
- is_on()
Check if the union tag is
on.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- off = AdminAlertingAlertStatePolicy('off', None)
- on = AdminAlertingAlertStatePolicy('on', None)
- other = AdminAlertingAlertStatePolicy('other', None)
- class dropbox.team_log.AdminAlertingChangedAlertConfigDetails(alert_name=None, previous_alert_config=None, new_alert_config=None)
Bases:
StructChanged an alert setting.
- Variables:
AdminAlertingChangedAlertConfigDetails.alert_name – Alert Name.
AdminAlertingChangedAlertConfigDetails.previous_alert_config – Previous alert configuration.
AdminAlertingChangedAlertConfigDetails.new_alert_config – New alert configuration.
- __init__(alert_name=None, previous_alert_config=None, new_alert_config=None)
- alert_name
- new_alert_config
- previous_alert_config
- class dropbox.team_log.AdminAlertingChangedAlertConfigType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.AdminAlertingTriggeredAlertDetails(alert_name=None, alert_severity=None, alert_category=None, alert_instance_id=None)
Bases:
StructTriggered security alert.
- Variables:
AdminAlertingTriggeredAlertDetails.alert_name – Alert name.
AdminAlertingTriggeredAlertDetails.alert_severity – Alert severity.
AdminAlertingTriggeredAlertDetails.alert_category – Alert category.
AdminAlertingTriggeredAlertDetails.alert_instance_id – Alert ID.
- __init__(alert_name=None, alert_severity=None, alert_category=None, alert_instance_id=None)
- alert_category
- alert_instance_id
- alert_name
- alert_severity
- class dropbox.team_log.AdminAlertingTriggeredAlertType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.AdminConsoleAppPermission(tag, value=None)
Bases:
UnionThis class acts as a tagged union. Only one of the
is_*methods will return true. To get the associated value of a tag (if one exists), use the correspondingget_*method.- default_for_listed_apps = AdminConsoleAppPermission('default_for_listed_apps', None)
- default_for_unlisted_apps = AdminConsoleAppPermission('default_for_unlisted_apps', None)
- is_default_for_listed_apps()
Check if the union tag is
default_for_listed_apps.- Return type:
bool
- is_default_for_unlisted_apps()
Check if the union tag is
default_for_unlisted_apps.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- other = AdminConsoleAppPermission('other', None)
- class dropbox.team_log.AdminConsoleAppPolicy(tag, value=None)
Bases:
UnionThis class acts as a tagged union. Only one of the
is_*methods will return true. To get the associated value of a tag (if one exists), use the correspondingget_*method.- allow = AdminConsoleAppPolicy('allow', None)
- block = AdminConsoleAppPolicy('block', None)
- default = AdminConsoleAppPolicy('default', None)
- is_allow()
Check if the union tag is
allow.- Return type:
bool
- is_block()
Check if the union tag is
block.- Return type:
bool
- is_default()
Check if the union tag is
default.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- other = AdminConsoleAppPolicy('other', None)
- class dropbox.team_log.AdminEmailRemindersChangedDetails(new_value=None, previous_value=None)
Bases:
StructChanged admin reminder settings for requests to join the team.
- Variables:
AdminEmailRemindersChangedDetails.new_value – To.
AdminEmailRemindersChangedDetails.previous_value – From.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.AdminEmailRemindersChangedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.AdminEmailRemindersPolicy(tag, value=None)
Bases:
UnionPolicy for deciding whether team admins receive reminder emails for requests to join the team
This class acts as a tagged union. Only one of the
is_*methods will return true. To get the associated value of a tag (if one exists), use the correspondingget_*method.- default = AdminEmailRemindersPolicy('default', None)
- disabled = AdminEmailRemindersPolicy('disabled', None)
- enabled = AdminEmailRemindersPolicy('enabled', None)
- is_default()
Check if the union tag is
default.- Return type:
bool
- is_disabled()
Check if the union tag is
disabled.- Return type:
bool
- is_enabled()
Check if the union tag is
enabled.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- other = AdminEmailRemindersPolicy('other', None)
- class dropbox.team_log.AdminRole(tag, value=None)
Bases:
UnionThis class acts as a tagged union. Only one of the
is_*methods will return true. To get the associated value of a tag (if one exists), use the correspondingget_*method.- billing_admin = AdminRole('billing_admin', None)
- compliance_admin = AdminRole('compliance_admin', None)
- content_admin = AdminRole('content_admin', None)
- deprecated_freemium_team_member = AdminRole('deprecated_freemium_team_member', None)
- freemium_team_creator = AdminRole('freemium_team_creator', None)
- is_billing_admin()
Check if the union tag is
billing_admin.- Return type:
bool
- is_compliance_admin()
Check if the union tag is
compliance_admin.- Return type:
bool
- is_content_admin()
Check if the union tag is
content_admin.- Return type:
bool
- is_deprecated_freemium_team_member()
Check if the union tag is
deprecated_freemium_team_member.- Return type:
bool
- is_freemium_team_creator()
Check if the union tag is
freemium_team_creator.- Return type:
bool
- is_limited_admin()
Check if the union tag is
limited_admin.- Return type:
bool
- is_member_only()
Check if the union tag is
member_only.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- is_reporting_admin()
Check if the union tag is
reporting_admin.- Return type:
bool
- is_security_admin()
Check if the union tag is
security_admin.- Return type:
bool
- is_support_admin()
Check if the union tag is
support_admin.- Return type:
bool
- is_team_admin()
Check if the union tag is
team_admin.- Return type:
bool
- is_user_management_admin()
Check if the union tag is
user_management_admin.- Return type:
bool
- limited_admin = AdminRole('limited_admin', None)
- member_only = AdminRole('member_only', None)
- other = AdminRole('other', None)
- reporting_admin = AdminRole('reporting_admin', None)
- security_admin = AdminRole('security_admin', None)
- support_admin = AdminRole('support_admin', None)
- team_admin = AdminRole('team_admin', None)
- user_management_admin = AdminRole('user_management_admin', None)
- class dropbox.team_log.AiThirdPartySharingDropboxBasePolicy(tag, value=None)
Bases:
UnionPolicy for deciding whether team users can use third party AI services
This class acts as a tagged union. Only one of the
is_*methods will return true. To get the associated value of a tag (if one exists), use the correspondingget_*method.- admins_only = AiThirdPartySharingDropboxBasePolicy('admins_only', None)
- default = AiThirdPartySharingDropboxBasePolicy('default', None)
- disabled = AiThirdPartySharingDropboxBasePolicy('disabled', None)
- enabled = AiThirdPartySharingDropboxBasePolicy('enabled', None)
- is_admins_only()
Check if the union tag is
admins_only.- Return type:
bool
- is_default()
Check if the union tag is
default.- Return type:
bool
- is_disabled()
Check if the union tag is
disabled.- Return type:
bool
- is_enabled()
Check if the union tag is
enabled.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- other = AiThirdPartySharingDropboxBasePolicy('other', None)
- class dropbox.team_log.AiThirdPartySharingDropboxBasePolicyChangedDetails(new_value=None, previous_value=None)
Bases:
StructChanged AI third party sharing policy for team.
- Variables:
AiThirdPartySharingDropboxBasePolicyChangedDetails.new_value – To.
AiThirdPartySharingDropboxBasePolicyChangedDetails.previous_value – From.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.AiThirdPartySharingDropboxBasePolicyChangedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.AlertRecipientsSettingType(tag, value=None)
Bases:
UnionAlert recipients setting type
This class acts as a tagged union. Only one of the
is_*methods will return true. To get the associated value of a tag (if one exists), use the correspondingget_*method.- custom_list = AlertRecipientsSettingType('custom_list', None)
- invalid = AlertRecipientsSettingType('invalid', None)
- is_custom_list()
Check if the union tag is
custom_list.- Return type:
bool
- is_invalid()
Check if the union tag is
invalid.- Return type:
bool
- is_none()
Check if the union tag is
none.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- is_team_admins()
Check if the union tag is
team_admins.- Return type:
bool
- none = AlertRecipientsSettingType('none', None)
- other = AlertRecipientsSettingType('other', None)
- team_admins = AlertRecipientsSettingType('team_admins', None)
- class dropbox.team_log.AllowDownloadDisabledType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.AllowDownloadEnabledType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.ApiSessionLogInfo(request_id=None)
Bases:
StructApi session.
- Variables:
ApiSessionLogInfo.request_id – Api request ID.
- __init__(request_id=None)
- request_id
- class dropbox.team_log.AppBlockedByPermissionsDetails(app_info=None)
Bases:
StructFailed to connect app for member.
- Variables:
AppBlockedByPermissionsDetails.app_info – Relevant application details.
- __init__(app_info=None)
- app_info
- class dropbox.team_log.AppBlockedByPermissionsType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.AppLinkTeamDetails(app_info=None)
Bases:
StructLinked app for team.
- Variables:
AppLinkTeamDetails.app_info – Relevant application details.
- __init__(app_info=None)
- app_info
- class dropbox.team_log.AppLinkTeamType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.AppLinkUserDetails(app_info=None)
Bases:
StructLinked app for member.
- Variables:
AppLinkUserDetails.app_info – Relevant application details.
- __init__(app_info=None)
- app_info
- class dropbox.team_log.AppLinkUserType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.AppLogInfo(app_id=None, display_name=None)
Bases:
StructApp’s logged information.
- Variables:
AppLogInfo.app_id – App unique ID.
AppLogInfo.display_name – App display name.
- __init__(app_id=None, display_name=None)
- app_id
- display_name
- class dropbox.team_log.AppPermissionsChangedDetails(previous_value=None, new_value=None, app_name=None, permission=None)
Bases:
StructChanged app permissions.
- Variables:
AppPermissionsChangedDetails.app_name – Name of the app.
AppPermissionsChangedDetails.permission – Permission that was changed.
AppPermissionsChangedDetails.previous_value – Previous policy.
AppPermissionsChangedDetails.new_value – New policy.
- __init__(previous_value=None, new_value=None, app_name=None, permission=None)
- app_name
- new_value
- permission
- previous_value
- class dropbox.team_log.AppPermissionsChangedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.AppUnlinkTeamDetails(app_info=None)
Bases:
StructUnlinked app for team.
- Variables:
AppUnlinkTeamDetails.app_info – Relevant application details.
- __init__(app_info=None)
- app_info
- class dropbox.team_log.AppUnlinkTeamType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.AppUnlinkUserDetails(app_info=None)
Bases:
StructUnlinked app for member.
- Variables:
AppUnlinkUserDetails.app_info – Relevant application details.
- __init__(app_info=None)
- app_info
- class dropbox.team_log.AppUnlinkUserType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.AppleLoginChangePolicyDetails(new_value=None, previous_value=None)
Bases:
StructEnabled/disabled Apple login for team.
- Variables:
AppleLoginChangePolicyDetails.new_value – New Apple login policy.
AppleLoginChangePolicyDetails.previous_value – Previous Apple login policy. Might be missing due to historical data gap.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.AppleLoginChangePolicyType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.AppleLoginPolicy(tag, value=None)
Bases:
UnionApple login policy
This class acts as a tagged union. Only one of the
is_*methods will return true. To get the associated value of a tag (if one exists), use the correspondingget_*method.- default = AppleLoginPolicy('default', None)
- disabled = AppleLoginPolicy('disabled', None)
- enabled = AppleLoginPolicy('enabled', None)
- is_default()
Check if the union tag is
default.- Return type:
bool
- is_disabled()
Check if the union tag is
disabled.- Return type:
bool
- is_enabled()
Check if the union tag is
enabled.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- other = AppleLoginPolicy('other', None)
- class dropbox.team_log.ApplyNamingConventionDetails
Bases:
StructApplied naming convention.
- __init__()
- class dropbox.team_log.ApplyNamingConventionType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.AssetLogInfo(tag, value=None)
Bases:
UnionAsset details.
This class acts as a tagged union. Only one of the
is_*methods will return true. To get the associated value of a tag (if one exists), use the correspondingget_*method.- Variables:
AssetLogInfo.file (FileLogInfo) – File’s details.
AssetLogInfo.folder (FolderLogInfo) – Folder’s details.
AssetLogInfo.paper_document (PaperDocumentLogInfo) – Paper document’s details.
AssetLogInfo.paper_folder (PaperFolderLogInfo) – Paper folder’s details.
AssetLogInfo.showcase_document (ShowcaseDocumentLogInfo) – Showcase document’s details.
- classmethod file(val)
Create an instance of this class set to the
filetag with valueval.- Parameters:
val (FileLogInfo)
- Return type:
- classmethod folder(val)
Create an instance of this class set to the
foldertag with valueval.- Parameters:
val (FolderLogInfo)
- Return type:
- get_folder()
Folder’s details.
Only call this if
is_folder()is true.- Return type:
- get_paper_document()
Paper document’s details.
Only call this if
is_paper_document()is true.- Return type:
- get_paper_folder()
Paper folder’s details.
Only call this if
is_paper_folder()is true.- Return type:
- get_showcase_document()
Showcase document’s details.
Only call this if
is_showcase_document()is true.- Return type:
- is_file()
Check if the union tag is
file.- Return type:
bool
- is_folder()
Check if the union tag is
folder.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- is_paper_document()
Check if the union tag is
paper_document.- Return type:
bool
- is_paper_folder()
Check if the union tag is
paper_folder.- Return type:
bool
- is_showcase_document()
Check if the union tag is
showcase_document.- Return type:
bool
- other = AssetLogInfo('other', None)
- classmethod paper_document(val)
Create an instance of this class set to the
paper_documenttag with valueval.- Parameters:
val (PaperDocumentLogInfo)
- Return type:
- classmethod paper_folder(val)
Create an instance of this class set to the
paper_foldertag with valueval.- Parameters:
val (PaperFolderLogInfo)
- Return type:
- classmethod showcase_document(val)
Create an instance of this class set to the
showcase_documenttag with valueval.- Parameters:
val (ShowcaseDocumentLogInfo)
- Return type:
- class dropbox.team_log.BackupAdminInvitationSentDetails
Bases:
StructInvited members to activate Backup.
- __init__()
- class dropbox.team_log.BackupAdminInvitationSentType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.BackupInvitationOpenedDetails
Bases:
StructOpened Backup invite.
- __init__()
- class dropbox.team_log.BackupInvitationOpenedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.BackupStatus(tag, value=None)
Bases:
UnionBackup status
This class acts as a tagged union. Only one of the
is_*methods will return true. To get the associated value of a tag (if one exists), use the correspondingget_*method.- disabled = BackupStatus('disabled', None)
- enabled = BackupStatus('enabled', None)
- is_disabled()
Check if the union tag is
disabled.- Return type:
bool
- is_enabled()
Check if the union tag is
enabled.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- other = BackupStatus('other', None)
- class dropbox.team_log.BinderAddPageDetails(event_uuid=None, doc_title=None, binder_item_name=None)
Bases:
StructAdded Binder page.
- Variables:
BinderAddPageDetails.event_uuid – Event unique identifier.
BinderAddPageDetails.doc_title – Title of the Binder doc.
BinderAddPageDetails.binder_item_name – Name of the Binder page/section.
- __init__(event_uuid=None, doc_title=None, binder_item_name=None)
- binder_item_name
- doc_title
- event_uuid
- class dropbox.team_log.BinderAddPageType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.BinderAddSectionDetails(event_uuid=None, doc_title=None, binder_item_name=None)
Bases:
StructAdded Binder section.
- Variables:
BinderAddSectionDetails.event_uuid – Event unique identifier.
BinderAddSectionDetails.doc_title – Title of the Binder doc.
BinderAddSectionDetails.binder_item_name – Name of the Binder page/section.
- __init__(event_uuid=None, doc_title=None, binder_item_name=None)
- binder_item_name
- doc_title
- event_uuid
- class dropbox.team_log.BinderAddSectionType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.BinderRemovePageDetails(event_uuid=None, doc_title=None, binder_item_name=None)
Bases:
StructRemoved Binder page.
- Variables:
BinderRemovePageDetails.event_uuid – Event unique identifier.
BinderRemovePageDetails.doc_title – Title of the Binder doc.
BinderRemovePageDetails.binder_item_name – Name of the Binder page/section.
- __init__(event_uuid=None, doc_title=None, binder_item_name=None)
- binder_item_name
- doc_title
- event_uuid
- class dropbox.team_log.BinderRemovePageType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.BinderRemoveSectionDetails(event_uuid=None, doc_title=None, binder_item_name=None)
Bases:
StructRemoved Binder section.
- Variables:
BinderRemoveSectionDetails.event_uuid – Event unique identifier.
BinderRemoveSectionDetails.doc_title – Title of the Binder doc.
BinderRemoveSectionDetails.binder_item_name – Name of the Binder page/section.
- __init__(event_uuid=None, doc_title=None, binder_item_name=None)
- binder_item_name
- doc_title
- event_uuid
- class dropbox.team_log.BinderRemoveSectionType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.BinderRenamePageDetails(event_uuid=None, doc_title=None, binder_item_name=None, previous_binder_item_name=None)
Bases:
StructRenamed Binder page.
- Variables:
BinderRenamePageDetails.event_uuid – Event unique identifier.
BinderRenamePageDetails.doc_title – Title of the Binder doc.
BinderRenamePageDetails.binder_item_name – Name of the Binder page/section.
BinderRenamePageDetails.previous_binder_item_name – Previous name of the Binder page/section.
- __init__(event_uuid=None, doc_title=None, binder_item_name=None, previous_binder_item_name=None)
- binder_item_name
- doc_title
- event_uuid
- previous_binder_item_name
- class dropbox.team_log.BinderRenamePageType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.BinderRenameSectionDetails(event_uuid=None, doc_title=None, binder_item_name=None, previous_binder_item_name=None)
Bases:
StructRenamed Binder section.
- Variables:
BinderRenameSectionDetails.event_uuid – Event unique identifier.
BinderRenameSectionDetails.doc_title – Title of the Binder doc.
BinderRenameSectionDetails.binder_item_name – Name of the Binder page/section.
BinderRenameSectionDetails.previous_binder_item_name – Previous name of the Binder page/section.
- __init__(event_uuid=None, doc_title=None, binder_item_name=None, previous_binder_item_name=None)
- binder_item_name
- doc_title
- event_uuid
- previous_binder_item_name
- class dropbox.team_log.BinderRenameSectionType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.BinderReorderPageDetails(event_uuid=None, doc_title=None, binder_item_name=None)
Bases:
StructReordered Binder page.
- Variables:
BinderReorderPageDetails.event_uuid – Event unique identifier.
BinderReorderPageDetails.doc_title – Title of the Binder doc.
BinderReorderPageDetails.binder_item_name – Name of the Binder page/section.
- __init__(event_uuid=None, doc_title=None, binder_item_name=None)
- binder_item_name
- doc_title
- event_uuid
- class dropbox.team_log.BinderReorderPageType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.BinderReorderSectionDetails(event_uuid=None, doc_title=None, binder_item_name=None)
Bases:
StructReordered Binder section.
- Variables:
BinderReorderSectionDetails.event_uuid – Event unique identifier.
BinderReorderSectionDetails.doc_title – Title of the Binder doc.
BinderReorderSectionDetails.binder_item_name – Name of the Binder page/section.
- __init__(event_uuid=None, doc_title=None, binder_item_name=None)
- binder_item_name
- doc_title
- event_uuid
- class dropbox.team_log.BinderReorderSectionType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.CameraUploadsPolicy(tag, value=None)
Bases:
UnionPolicy for controlling if team members can activate camera uploads
This class acts as a tagged union. Only one of the
is_*methods will return true. To get the associated value of a tag (if one exists), use the correspondingget_*method.- disabled = CameraUploadsPolicy('disabled', None)
- enabled = CameraUploadsPolicy('enabled', None)
- is_disabled()
Check if the union tag is
disabled.- Return type:
bool
- is_enabled()
Check if the union tag is
enabled.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- other = CameraUploadsPolicy('other', None)
- class dropbox.team_log.CameraUploadsPolicyChangedDetails(new_value=None, previous_value=None)
Bases:
StructChanged camera uploads setting for team.
- Variables:
CameraUploadsPolicyChangedDetails.new_value – New camera uploads setting.
CameraUploadsPolicyChangedDetails.previous_value – Previous camera uploads setting.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.CameraUploadsPolicyChangedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.CaptureTeamSpacePolicy(tag, value=None)
Bases:
UnionPolicy for deciding whether team users have access to the Capture team space
This class acts as a tagged union. Only one of the
is_*methods will return true. To get the associated value of a tag (if one exists), use the correspondingget_*method.- disabled = CaptureTeamSpacePolicy('disabled', None)
- enabled = CaptureTeamSpacePolicy('enabled', None)
- is_disabled()
Check if the union tag is
disabled.- Return type:
bool
- is_enabled()
Check if the union tag is
enabled.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- other = CaptureTeamSpacePolicy('other', None)
- class dropbox.team_log.CaptureTeamSpacePolicyChangedDetails(new_value=None, previous_value=None)
Bases:
StructChanged Capture team space policy for team.
- Variables:
CaptureTeamSpacePolicyChangedDetails.new_value – To.
CaptureTeamSpacePolicyChangedDetails.previous_value – From.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.CaptureTeamSpacePolicyChangedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.CaptureTranscriptPolicy(tag, value=None)
Bases:
UnionPolicy for deciding whether team users can transcription in Capture
This class acts as a tagged union. Only one of the
is_*methods will return true. To get the associated value of a tag (if one exists), use the correspondingget_*method.- default = CaptureTranscriptPolicy('default', None)
- disabled = CaptureTranscriptPolicy('disabled', None)
- enabled = CaptureTranscriptPolicy('enabled', None)
- is_default()
Check if the union tag is
default.- Return type:
bool
- is_disabled()
Check if the union tag is
disabled.- Return type:
bool
- is_enabled()
Check if the union tag is
enabled.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- other = CaptureTranscriptPolicy('other', None)
- class dropbox.team_log.CaptureTranscriptPolicyChangedDetails(new_value=None, previous_value=None)
Bases:
StructChanged Capture transcription policy for team.
- Variables:
CaptureTranscriptPolicyChangedDetails.new_value – To.
CaptureTranscriptPolicyChangedDetails.previous_value – From.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.CaptureTranscriptPolicyChangedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.Certificate(subject=None, issuer=None, issue_date=None, expiration_date=None, serial_number=None, sha1_fingerprint=None, common_name=None)
Bases:
StructCertificate details.
- Variables:
Certificate.subject – Certificate subject.
Certificate.issuer – Certificate issuer.
Certificate.issue_date – Certificate issue date.
Certificate.expiration_date – Certificate expiration date.
Certificate.serial_number – Certificate serial number.
Certificate.sha1_fingerprint – Certificate sha1 fingerprint.
Certificate.common_name – Certificate common name.
- __init__(subject=None, issuer=None, issue_date=None, expiration_date=None, serial_number=None, sha1_fingerprint=None, common_name=None)
- common_name
- expiration_date
- issue_date
- issuer
- serial_number
- sha1_fingerprint
- subject
- class dropbox.team_log.ChangeLinkExpirationPolicy(tag, value=None)
Bases:
UnionPolicy for deciding whether the team’s default expiration days policy must be enforced when an externally shared link is updated
This class acts as a tagged union. Only one of the
is_*methods will return true. To get the associated value of a tag (if one exists), use the correspondingget_*method.- allowed = ChangeLinkExpirationPolicy('allowed', None)
- is_allowed()
Check if the union tag is
allowed.- Return type:
bool
- is_not_allowed()
Check if the union tag is
not_allowed.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- not_allowed = ChangeLinkExpirationPolicy('not_allowed', None)
- other = ChangeLinkExpirationPolicy('other', None)
- class dropbox.team_log.ChangedEnterpriseAdminRoleDetails(previous_value=None, new_value=None, team_name=None)
Bases:
StructChanged enterprise admin role.
- Variables:
ChangedEnterpriseAdminRoleDetails.previous_value – The member’s previous enterprise admin role.
ChangedEnterpriseAdminRoleDetails.new_value – The member’s new enterprise admin role.
ChangedEnterpriseAdminRoleDetails.team_name – The name of the member’s team.
- __init__(previous_value=None, new_value=None, team_name=None)
- new_value
- previous_value
- team_name
- class dropbox.team_log.ChangedEnterpriseAdminRoleType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.ChangedEnterpriseConnectedTeamStatusDetails(action=None, additional_info=None, previous_value=None, new_value=None)
Bases:
StructChanged enterprise-connected team status.
- Variables:
ChangedEnterpriseConnectedTeamStatusDetails.action – The preformed change in the team’s connection status.
ChangedEnterpriseConnectedTeamStatusDetails.additional_info – Additional information about the organization or team.
ChangedEnterpriseConnectedTeamStatusDetails.previous_value – Previous request state.
ChangedEnterpriseConnectedTeamStatusDetails.new_value – New request state.
- __init__(action=None, additional_info=None, previous_value=None, new_value=None)
- action
- additional_info
- new_value
- previous_value
- class dropbox.team_log.ChangedEnterpriseConnectedTeamStatusType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.ClassificationChangePolicyDetails(previous_value=None, new_value=None, classification_type=None)
Bases:
StructChanged classification policy for team.
- Variables:
ClassificationChangePolicyDetails.previous_value – Previous classification policy.
ClassificationChangePolicyDetails.new_value – New classification policy.
ClassificationChangePolicyDetails.classification_type – Policy type.
- __init__(previous_value=None, new_value=None, classification_type=None)
- classification_type
- new_value
- previous_value
- class dropbox.team_log.ClassificationChangePolicyType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.ClassificationCreateReportDetails
Bases:
StructCreated Classification report.
- __init__()
- class dropbox.team_log.ClassificationCreateReportFailDetails(failure_reason=None)
Bases:
StructCouldn’t create Classification report.
- Variables:
ClassificationCreateReportFailDetails.failure_reason – Failure reason.
- __init__(failure_reason=None)
- failure_reason
- class dropbox.team_log.ClassificationCreateReportFailType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.ClassificationCreateReportType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.ClassificationPolicyEnumWrapper(tag, value=None)
Bases:
UnionPolicy for controlling team access to the classification feature
This class acts as a tagged union. Only one of the
is_*methods will return true. To get the associated value of a tag (if one exists), use the correspondingget_*method.- disabled = ClassificationPolicyEnumWrapper('disabled', None)
- enabled = ClassificationPolicyEnumWrapper('enabled', None)
- is_disabled()
Check if the union tag is
disabled.- Return type:
bool
- is_enabled()
Check if the union tag is
enabled.- Return type:
bool
- is_member_and_team_folders()
Check if the union tag is
member_and_team_folders.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- is_team_folders()
Check if the union tag is
team_folders.- Return type:
bool
- member_and_team_folders = ClassificationPolicyEnumWrapper('member_and_team_folders', None)
- other = ClassificationPolicyEnumWrapper('other', None)
- team_folders = ClassificationPolicyEnumWrapper('team_folders', None)
- class dropbox.team_log.ClassificationType(tag, value=None)
Bases:
UnionThe type of classification (currently only personal information)
This class acts as a tagged union. Only one of the
is_*methods will return true. To get the associated value of a tag (if one exists), use the correspondingget_*method.- is_other()
Check if the union tag is
other.- Return type:
bool
- is_personal_information()
Check if the union tag is
personal_information.- Return type:
bool
- is_pii()
Check if the union tag is
pii.- Return type:
bool
- other = ClassificationType('other', None)
- personal_information = ClassificationType('personal_information', None)
- pii = ClassificationType('pii', None)
Bases:
StructShared album.
- Variables:
CollectionShareDetails.album_name – Album name.
Bases:
Struct
- class dropbox.team_log.ComputerBackupPolicy(tag, value=None)
Bases:
UnionPolicy for controlling team access to computer backup feature
This class acts as a tagged union. Only one of the
is_*methods will return true. To get the associated value of a tag (if one exists), use the correspondingget_*method.- default = ComputerBackupPolicy('default', None)
- disabled = ComputerBackupPolicy('disabled', None)
- enabled = ComputerBackupPolicy('enabled', None)
- is_default()
Check if the union tag is
default.- Return type:
bool
- is_disabled()
Check if the union tag is
disabled.- Return type:
bool
- is_enabled()
Check if the union tag is
enabled.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- other = ComputerBackupPolicy('other', None)
- class dropbox.team_log.ComputerBackupPolicyChangedDetails(new_value=None, previous_value=None)
Bases:
StructChanged computer backup policy for team.
- Variables:
ComputerBackupPolicyChangedDetails.new_value – New computer backup policy.
ComputerBackupPolicyChangedDetails.previous_value – Previous computer backup policy.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.ComputerBackupPolicyChangedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.ConnectedTeamName(team=None)
Bases:
StructThe name of the team
- Variables:
ConnectedTeamName.team – The name of the team.
- __init__(team=None)
- team
- class dropbox.team_log.ContentAdministrationPolicyChangedDetails(new_value=None, previous_value=None)
Bases:
StructChanged content management setting.
- Variables:
ContentAdministrationPolicyChangedDetails.new_value – New content administration policy.
ContentAdministrationPolicyChangedDetails.previous_value – Previous content administration policy.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.ContentAdministrationPolicyChangedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.ContentDeletionProtectionChangePolicyDetails(new_value=None, new_threshold_bytes=None, previous_value=None, previous_threshold_bytes=None)
Bases:
StructChanged content deletion protection policy for team.
- Variables:
ContentDeletionProtectionChangePolicyDetails.new_value – New content deletion protection policy.
ContentDeletionProtectionChangePolicyDetails.new_threshold_bytes – New threshold value in bytes (only present when new policy is on_above_threshold).
ContentDeletionProtectionChangePolicyDetails.previous_value – Previous content deletion protection policy. Might be missing due to historical data gap.
ContentDeletionProtectionChangePolicyDetails.previous_threshold_bytes – Previous threshold value in bytes (only present when previous policy was on_above_threshold).
- __init__(new_value=None, new_threshold_bytes=None, previous_value=None, previous_threshold_bytes=None)
- new_threshold_bytes
- new_value
- previous_threshold_bytes
- previous_value
- class dropbox.team_log.ContentDeletionProtectionChangePolicyType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.ContentDeletionProtectionPolicy(tag, value=None)
Bases:
UnionContent deletion protection policy
This class acts as a tagged union. Only one of the
is_*methods will return true. To get the associated value of a tag (if one exists), use the correspondingget_*method.- is_off()
Check if the union tag is
off.- Return type:
bool
- is_on_above_threshold()
Check if the union tag is
on_above_threshold.- Return type:
bool
- is_on_all_files()
Check if the union tag is
on_all_files.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- off = ContentDeletionProtectionPolicy('off', None)
- on_above_threshold = ContentDeletionProtectionPolicy('on_above_threshold', None)
- on_all_files = ContentDeletionProtectionPolicy('on_all_files', None)
- other = ContentDeletionProtectionPolicy('other', None)
- class dropbox.team_log.ContentPermanentDeletePolicy(tag, value=None)
Bases:
UnionPolicy for pemanent content deletion
This class acts as a tagged union. Only one of the
is_*methods will return true. To get the associated value of a tag (if one exists), use the correspondingget_*method.- disabled = ContentPermanentDeletePolicy('disabled', None)
- enabled = ContentPermanentDeletePolicy('enabled', None)
- is_disabled()
Check if the union tag is
disabled.- Return type:
bool
- is_enabled()
Check if the union tag is
enabled.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- other = ContentPermanentDeletePolicy('other', None)
- class dropbox.team_log.ContextLogInfo(tag, value=None)
Bases:
UnionThe primary entity on which the action was done.
This class acts as a tagged union. Only one of the
is_*methods will return true. To get the associated value of a tag (if one exists), use the correspondingget_*method.- Variables:
ContextLogInfo.anonymous – Anonymous context.
ContextLogInfo.non_team_member (NonTeamMemberLogInfo) – Action was done on behalf of a non team member.
ContextLogInfo.organization_team (TeamLogInfo) – Action was done on behalf of a team that’s part of an organization.
ContextLogInfo.team – Action was done on behalf of the team.
ContextLogInfo.team_member (TeamMemberLogInfo) – Action was done on behalf of a team member.
ContextLogInfo.trusted_non_team_member (TrustedNonTeamMemberLogInfo) – Action was done on behalf of a trusted non team member.
- anonymous = ContextLogInfo('anonymous', None)
- get_non_team_member()
Action was done on behalf of a non team member.
Only call this if
is_non_team_member()is true.- Return type:
- get_organization_team()
Action was done on behalf of a team that’s part of an organization.
Only call this if
is_organization_team()is true.- Return type:
- get_team_member()
Action was done on behalf of a team member.
Only call this if
is_team_member()is true.- Return type:
- get_trusted_non_team_member()
Action was done on behalf of a trusted non team member.
Only call this if
is_trusted_non_team_member()is true.- Return type:
- is_anonymous()
Check if the union tag is
anonymous.- Return type:
bool
- is_non_team_member()
Check if the union tag is
non_team_member.- Return type:
bool
- is_organization_team()
Check if the union tag is
organization_team.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- is_team()
Check if the union tag is
team.- Return type:
bool
- is_team_member()
Check if the union tag is
team_member.- Return type:
bool
- is_trusted_non_team_member()
Check if the union tag is
trusted_non_team_member.- Return type:
bool
- classmethod non_team_member(val)
Create an instance of this class set to the
non_team_membertag with valueval.- Parameters:
val (NonTeamMemberLogInfo)
- Return type:
- classmethod organization_team(val)
Create an instance of this class set to the
organization_teamtag with valueval.- Parameters:
val (TeamLogInfo)
- Return type:
- other = ContextLogInfo('other', None)
- team = ContextLogInfo('team', None)
- classmethod team_member(val)
Create an instance of this class set to the
team_membertag with valueval.- Parameters:
val (TeamMemberLogInfo)
- Return type:
- classmethod trusted_non_team_member(val)
Create an instance of this class set to the
trusted_non_team_membertag with valueval.- Parameters:
- Return type:
- class dropbox.team_log.CreateFolderType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.CreateTeamInviteLinkDetails(link_url=None, expiry_date=None)
Bases:
StructCreated team invite link.
- Variables:
CreateTeamInviteLinkDetails.link_url – The invite link url that was created.
CreateTeamInviteLinkDetails.expiry_date – The expiration date of the invite link.
- __init__(link_url=None, expiry_date=None)
- expiry_date
- link_url
- class dropbox.team_log.CreateTeamInviteLinkType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.DashAddedCommentToStackDetails(stack_name=None, stack_item_name=None, comment_text=None, stack_type=None)
Bases:
StructAdded a comment to a stack.
- Variables:
DashAddedCommentToStackDetails.stack_name – The name of the stack where the comment exists.
DashAddedCommentToStackDetails.stack_item_name – The name of the stack item that the comment is tied to.
DashAddedCommentToStackDetails.comment_text – The text of the comment.
DashAddedCommentToStackDetails.stack_type – The type of stack backend.
- __init__(stack_name=None, stack_item_name=None, comment_text=None, stack_type=None)
- comment_text
- stack_item_name
- stack_name
- stack_type
- class dropbox.team_log.DashAddedCommentToStackType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.DashAddedConnectorDetails(connector_name=None, connector_status=None)
Bases:
StructConnected to a user connector.
- Variables:
DashAddedConnectorDetails.connector_name – The name of the Connector.
DashAddedConnectorDetails.connector_status – The status of the Connector.
- __init__(connector_name=None, connector_status=None)
- connector_name
- connector_status
- class dropbox.team_log.DashAddedConnectorType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.DashAddedLinkToStackDetails(stack_name=None, stack_item_link=None, stack_type=None)
Bases:
StructAdded a link to a stack.
- Variables:
DashAddedLinkToStackDetails.stack_name – The name of the stack.
DashAddedLinkToStackDetails.stack_item_link – The link to the item in the stack.
DashAddedLinkToStackDetails.stack_type – The type of stack backend.
- __init__(stack_name=None, stack_item_link=None, stack_type=None)
- stack_item_link
- stack_name
- stack_type
- class dropbox.team_log.DashAddedLinkToStackType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.DashAddedTeamEmailDomainAllowlistDetails(email_domain=None)
Bases:
StructAdmin added an email domain to the team allowlist.
- Variables:
DashAddedTeamEmailDomainAllowlistDetails.email_domain – The email domain that gets added/removed from the team allowlist.
- __init__(email_domain=None)
- email_domain
- class dropbox.team_log.DashAddedTeamEmailDomainAllowlistType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.DashAdminAddedOrgWideConnectorDetails(connector_name=None, connector_status=None)
Bases:
StructAdmin added an admin connector.
- Variables:
DashAdminAddedOrgWideConnectorDetails.connector_name – The name of the Connector.
DashAdminAddedOrgWideConnectorDetails.connector_status – The status of the Connector.
- __init__(connector_name=None, connector_status=None)
- connector_name
- connector_status
- class dropbox.team_log.DashAdminAddedOrgWideConnectorType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.DashAdminDisabledConnectorDetails(connector_name=None, connector_status=None)
Bases:
StructAdmin disabled a user connector.
- Variables:
DashAdminDisabledConnectorDetails.connector_name – The name of the Connector.
DashAdminDisabledConnectorDetails.connector_status – The status of the Connector.
- __init__(connector_name=None, connector_status=None)
- connector_name
- connector_status
- class dropbox.team_log.DashAdminDisabledConnectorType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.DashAdminEnabledConnectorDetails(connector_name=None, connector_status=None)
Bases:
StructAdmin enabled a user connector.
- Variables:
DashAdminEnabledConnectorDetails.connector_name – The name of the Connector.
DashAdminEnabledConnectorDetails.connector_status – The status of the Connector.
- __init__(connector_name=None, connector_status=None)
- connector_name
- connector_status
- class dropbox.team_log.DashAdminEnabledConnectorType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.DashAdminRemovedOrgWideConnectorDetails(connector_name=None, connector_status=None)
Bases:
StructAdmin removed an admin connector.
- Variables:
DashAdminRemovedOrgWideConnectorDetails.connector_name – The name of the Connector.
DashAdminRemovedOrgWideConnectorDetails.connector_status – The status of the Connector.
- __init__(connector_name=None, connector_status=None)
- connector_name
- connector_status
- class dropbox.team_log.DashAdminRemovedOrgWideConnectorType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.DashArchivedStackDetails(stack_name=None, stack_type=None)
Bases:
StructArchived a stack.
- Variables:
DashArchivedStackDetails.stack_name – The name of the stack.
DashArchivedStackDetails.stack_type – The type of stack backend.
- __init__(stack_name=None, stack_type=None)
- stack_name
- stack_type
- class dropbox.team_log.DashArchivedStackType(description=None)
Bases:
Struct- __init__(description=None)
- description
Bases:
StructChanged the audience of a shared link to a stack.
- Variables:
DashChangedAudienceOfSharedLinkToStackDetails.stack_name – The name of the stack.
DashChangedAudienceOfSharedLinkToStackDetails.stack_type – The type of stack backend.
Bases:
Struct
- class dropbox.team_log.DashClonedStackDetails(stack_name=None, actor_email=None, new_cloned_stack_name=None, stack_type=None)
Bases:
StructCloned stack.
- Variables:
DashClonedStackDetails.stack_name – The name of the stack.
DashClonedStackDetails.actor_email – Email of the actor.
DashClonedStackDetails.new_cloned_stack_name – New cloned stack name.
DashClonedStackDetails.stack_type – The type of stack backend.
- __init__(stack_name=None, actor_email=None, new_cloned_stack_name=None, stack_type=None)
- actor_email
- new_cloned_stack_name
- stack_name
- stack_type
- class dropbox.team_log.DashClonedStackType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.DashConnectorStatus(tag, value=None)
Bases:
UnionThe status of the Connector
This class acts as a tagged union. Only one of the
is_*methods will return true. To get the associated value of a tag (if one exists), use the correspondingget_*method.- fail = DashConnectorStatus('fail', None)
- is_fail()
Check if the union tag is
fail.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- is_success()
Check if the union tag is
success.- Return type:
bool
- other = DashConnectorStatus('other', None)
- success = DashConnectorStatus('success', None)
- class dropbox.team_log.DashConnectorToolsCallDetails(connector_name=None, tool_name=None, surface=None)
Bases:
StructCalled a tool on a connector.
- Variables:
DashConnectorToolsCallDetails.connector_name – The name of the connector.
DashConnectorToolsCallDetails.tool_name – The name of the tool that was called.
DashConnectorToolsCallDetails.surface – The surface from which the tool was called.
- __init__(connector_name=None, tool_name=None, surface=None)
- connector_name
- surface
- tool_name
- class dropbox.team_log.DashConnectorToolsCallType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.DashCreatedStackDetails(stack_name=None, stack_type=None)
Bases:
StructCreated a stack.
- Variables:
DashCreatedStackDetails.stack_name – The name of the stack.
DashCreatedStackDetails.stack_type – The type of stack backend.
- __init__(stack_name=None, stack_type=None)
- stack_name
- stack_type
- class dropbox.team_log.DashCreatedStackType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.DashDeletedCommentFromStackDetails(stack_name=None, stack_item_name=None, stack_type=None)
Bases:
StructDeleted a comment from a stack.
- Variables:
DashDeletedCommentFromStackDetails.stack_name – The name of the stack where the comment exists.
DashDeletedCommentFromStackDetails.stack_item_name – The name of the stack item that the comment is tied to.
DashDeletedCommentFromStackDetails.stack_type – The type of stack backend.
- __init__(stack_name=None, stack_item_name=None, stack_type=None)
- stack_item_name
- stack_name
- stack_type
- class dropbox.team_log.DashDeletedCommentFromStackType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.DashDeletedStackDetails(stack_name=None, stack_type=None)
Bases:
StructDeleted a stack.
- Variables:
DashDeletedStackDetails.stack_name – The name of the stack.
DashDeletedStackDetails.stack_type – The type of stack backend.
- __init__(stack_name=None, stack_type=None)
- stack_name
- stack_type
- class dropbox.team_log.DashDeletedStackType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.DashEditedCommentInStackDetails(stack_name=None, stack_item_name=None, comment_text=None, stack_type=None)
Bases:
StructEdited a comment in a stack.
- Variables:
DashEditedCommentInStackDetails.stack_name – The name of the stack where the comment exists.
DashEditedCommentInStackDetails.stack_item_name – The name of the stack item that the comment is tied to.
DashEditedCommentInStackDetails.comment_text – The text of the comment.
DashEditedCommentInStackDetails.stack_type – The type of stack backend.
- __init__(stack_name=None, stack_item_name=None, comment_text=None, stack_type=None)
- comment_text
- stack_item_name
- stack_name
- stack_type
- class dropbox.team_log.DashEditedCommentInStackType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.DashExternalSharingPolicy(tag, value=None)
Bases:
UnionPolicy for deciding whether team users can share Dash content externally
This class acts as a tagged union. Only one of the
is_*methods will return true. To get the associated value of a tag (if one exists), use the correspondingget_*method.- default = DashExternalSharingPolicy('default', None)
- disabled = DashExternalSharingPolicy('disabled', None)
- enabled = DashExternalSharingPolicy('enabled', None)
- is_default()
Check if the union tag is
default.- Return type:
bool
- is_disabled()
Check if the union tag is
disabled.- Return type:
bool
- is_enabled()
Check if the union tag is
enabled.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- other = DashExternalSharingPolicy('other', None)
- class dropbox.team_log.DashExternalSharingPolicyChangedDetails(new_value=None, previous_value=None)
Bases:
StructChanged Dash external sharing policy for team.
- Variables:
DashExternalSharingPolicyChangedDetails.new_value – To.
DashExternalSharingPolicyChangedDetails.previous_value – From.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.DashExternalSharingPolicyChangedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.DashExternalUserOpenedStackDetails(stack_name=None, stack_sharing_scope=None, is_invited=None, is_verified=None, stack_owner_team_id=None, stack_type=None)
Bases:
StructExternal user opened a stack.
- Variables:
DashExternalUserOpenedStackDetails.stack_name – The name of the stack.
DashExternalUserOpenedStackDetails.stack_sharing_scope – The sharing scope of the stack.
DashExternalUserOpenedStackDetails.is_invited – Whether the user was invited to the stack.
DashExternalUserOpenedStackDetails.is_verified – Whether the user has verified their email address.
DashExternalUserOpenedStackDetails.stack_owner_team_id – The team ID of the stack owner.
DashExternalUserOpenedStackDetails.stack_type – The type of stack backend.
- __init__(stack_name=None, stack_sharing_scope=None, is_invited=None, is_verified=None, stack_owner_team_id=None, stack_type=None)
- is_invited
- is_verified
- stack_name
- stack_owner_team_id
- stack_sharing_scope
- stack_type
- class dropbox.team_log.DashExternalUserOpenedStackType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.DashFirstLaunchedDesktopDetails(os_name=None)
Bases:
StructOpened the desktop app for the first time.
- Variables:
DashFirstLaunchedDesktopDetails.os_name – The name of the operating system.
- __init__(os_name=None)
- os_name
- class dropbox.team_log.DashFirstLaunchedDesktopType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.DashFirstLaunchedExtensionDetails(browser_name=None)
Bases:
StructOpened the extension for the first time.
- Variables:
DashFirstLaunchedExtensionDetails.browser_name – The name of the web browser.
- __init__(browser_name=None)
- browser_name
- class dropbox.team_log.DashFirstLaunchedExtensionType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.DashFirstLaunchedWebStartPageDetails(browser_name=None)
Bases:
StructOpened the web Start Page for the first time.
- Variables:
DashFirstLaunchedWebStartPageDetails.browser_name – The name of the web browser.
- __init__(browser_name=None)
- browser_name
- class dropbox.team_log.DashFirstLaunchedWebStartPageType(description=None)
Bases:
Struct- __init__(description=None)
- description
Bases:
StructChecked access permissions to a stack.
- Variables:
DashOpenedSharedLinkToStackDetails.stack_name – The name of the stack.
DashOpenedSharedLinkToStackDetails.stack_type – The type of stack backend.
Bases:
Struct
- class dropbox.team_log.DashOpenedStackDetails(stack_name=None, stack_type=None)
Bases:
StructOpened a stack.
- Variables:
DashOpenedStackDetails.stack_name – The name of the stack.
DashOpenedStackDetails.stack_type – The type of stack backend.
- __init__(stack_name=None, stack_type=None)
- stack_name
- stack_type
- class dropbox.team_log.DashOpenedStackType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.DashPreviewOptOutStatus(tag, value=None)
Bases:
UnionThe new preview opt-out status
This class acts as a tagged union. Only one of the
is_*methods will return true. To get the associated value of a tag (if one exists), use the correspondingget_*method.- is_opted_in()
Check if the union tag is
opted_in.- Return type:
bool
- is_opted_out()
Check if the union tag is
opted_out.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- opted_in = DashPreviewOptOutStatus('opted_in', None)
- opted_out = DashPreviewOptOutStatus('opted_out', None)
- other = DashPreviewOptOutStatus('other', None)
- class dropbox.team_log.DashPreviewOptOutStatusChangedDetails(opt_out_status=None)
Bases:
StructChanged the preview opt-out status.
- Variables:
DashPreviewOptOutStatusChangedDetails.opt_out_status – The new preview opt-out status.
- __init__(opt_out_status=None)
- opt_out_status
- class dropbox.team_log.DashPreviewOptOutStatusChangedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.DashRemovedConnectorDetails(connector_name=None, connector_status=None)
Bases:
StructDisconnected a user connector.
- Variables:
DashRemovedConnectorDetails.connector_name – The name of the Connector.
DashRemovedConnectorDetails.connector_status – The status of the Connector.
- __init__(connector_name=None, connector_status=None)
- connector_name
- connector_status
- class dropbox.team_log.DashRemovedConnectorType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.DashRemovedLinkFromStackDetails(stack_name=None, stack_item_link=None, stack_type=None)
Bases:
StructRemoved a link from a stack.
- Variables:
DashRemovedLinkFromStackDetails.stack_name – The name of the stack.
DashRemovedLinkFromStackDetails.stack_item_link – The link to the item in the stack.
DashRemovedLinkFromStackDetails.stack_type – The type of stack backend.
- __init__(stack_name=None, stack_item_link=None, stack_type=None)
- stack_item_link
- stack_name
- stack_type
- class dropbox.team_log.DashRemovedLinkFromStackType(description=None)
Bases:
Struct- __init__(description=None)
- description
Bases:
StructRemoved a shared link to a stack.
- Variables:
DashRemovedSharedLinkToStackDetails.stack_name – The name of the stack.
DashRemovedSharedLinkToStackDetails.stack_type – The type of stack backend.
Bases:
Struct
- class dropbox.team_log.DashRemovedTeamEmailDomainAllowlistDetails(email_domain=None)
Bases:
StructAdmin removed an email domain from the team allowlist.
- Variables:
DashRemovedTeamEmailDomainAllowlistDetails.email_domain – The email domain that gets added/removed from the team allowlist.
- __init__(email_domain=None)
- email_domain
- class dropbox.team_log.DashRemovedTeamEmailDomainAllowlistType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.DashRenamedStackDetails(old_name=None, new_name=None, stack_type=None)
Bases:
StructRenamed a stack.
- Variables:
DashRenamedStackDetails.old_name – The old name of the stack.
DashRenamedStackDetails.new_name – The new name of the stack.
DashRenamedStackDetails.stack_type – The type of stack backend.
- __init__(old_name=None, new_name=None, stack_type=None)
- new_name
- old_name
- stack_type
- class dropbox.team_log.DashRenamedStackType(description=None)
Bases:
Struct- __init__(description=None)
- description
Bases:
StructShared a link to a stack.
- Variables:
DashSharedLinkToStackDetails.stack_name – The name of the stack.
DashSharedLinkToStackDetails.stack_type – The type of stack backend.
Bases:
Struct
- class dropbox.team_log.DashStackSharingScope(tag, value=None)
Bases:
UnionThe stack sharing scope
This class acts as a tagged union. Only one of the
is_*methods will return true. To get the associated value of a tag (if one exists), use the correspondingget_*method.- invited = DashStackSharingScope('invited', None)
- is_invited()
Check if the union tag is
invited.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- is_public()
Check if the union tag is
public.- Return type:
bool
- is_team()
Check if the union tag is
team.- Return type:
bool
- is_unknown()
Check if the union tag is
unknown.- Return type:
bool
- other = DashStackSharingScope('other', None)
- public = DashStackSharingScope('public', None)
- team = DashStackSharingScope('team', None)
- unknown = DashStackSharingScope('unknown', None)
- class dropbox.team_log.DashStackType(tag, value=None)
Bases:
UnionThe type of stack backend
This class acts as a tagged union. Only one of the
is_*methods will return true. To get the associated value of a tag (if one exists), use the correspondingget_*method.- cypress = DashStackType('cypress', None)
- is_cypress()
Check if the union tag is
cypress.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- is_reference_container()
Check if the union tag is
reference_container.- Return type:
bool
- is_unknown()
Check if the union tag is
unknown.- Return type:
bool
- other = DashStackType('other', None)
- reference_container = DashStackType('reference_container', None)
- unknown = DashStackType('unknown', None)
- class dropbox.team_log.DashUnarchivedStackDetails(stack_name=None, stack_type=None)
Bases:
StructUnarchived a stack.
- Variables:
DashUnarchivedStackDetails.stack_name – The name of the stack.
DashUnarchivedStackDetails.stack_type – The type of stack backend.
- __init__(stack_name=None, stack_type=None)
- stack_name
- stack_type
- class dropbox.team_log.DashUnarchivedStackType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.DashViewedCompanyStackDetails(stack_name=None, stack_type=None)
Bases:
StructMember viewed a company stack.
- Variables:
DashViewedCompanyStackDetails.stack_name – The name of the stack.
DashViewedCompanyStackDetails.stack_type – The type of stack backend.
- __init__(stack_name=None, stack_type=None)
- stack_name
- stack_type
- class dropbox.team_log.DashViewedCompanyStackType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.DashViewedExternalAiActivityReportDetails
Bases:
StructAdmin viewed the external AI activity report.
- __init__()
- class dropbox.team_log.DashViewedExternalAiActivityReportType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.DataPlacementRestrictionChangePolicyDetails(previous_value=None, new_value=None)
Bases:
StructSet restrictions on data center locations where team data resides.
- Variables:
DataPlacementRestrictionChangePolicyDetails.previous_value – Previous placement restriction.
DataPlacementRestrictionChangePolicyDetails.new_value – New placement restriction.
- __init__(previous_value=None, new_value=None)
- new_value
- previous_value
- class dropbox.team_log.DataPlacementRestrictionChangePolicyType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.DataPlacementRestrictionSatisfyPolicyDetails(placement_restriction=None)
Bases:
StructCompleted restrictions on data center locations where team data resides.
- Variables:
DataPlacementRestrictionSatisfyPolicyDetails.placement_restriction – Placement restriction.
- __init__(placement_restriction=None)
- placement_restriction
- class dropbox.team_log.DataPlacementRestrictionSatisfyPolicyType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.DataResidencyMigrationRequestSuccessfulDetails
Bases:
StructRequested data residency migration for team data.
- __init__()
- class dropbox.team_log.DataResidencyMigrationRequestSuccessfulType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.DataResidencyMigrationRequestUnsuccessfulDetails
Bases:
StructRequest for data residency migration for team data has failed.
- __init__()
- class dropbox.team_log.DataResidencyMigrationRequestUnsuccessfulType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.DefaultLinkExpirationDaysPolicy(tag, value=None)
Bases:
UnionPolicy for the default number of days until an externally shared link expires
This class acts as a tagged union. Only one of the
is_*methods will return true. To get the associated value of a tag (if one exists), use the correspondingget_*method.- day_1 = DefaultLinkExpirationDaysPolicy('day_1', None)
- day_180 = DefaultLinkExpirationDaysPolicy('day_180', None)
- day_3 = DefaultLinkExpirationDaysPolicy('day_3', None)
- day_30 = DefaultLinkExpirationDaysPolicy('day_30', None)
- day_7 = DefaultLinkExpirationDaysPolicy('day_7', None)
- day_90 = DefaultLinkExpirationDaysPolicy('day_90', None)
- is_day_1()
Check if the union tag is
day_1.- Return type:
bool
- is_day_180()
Check if the union tag is
day_180.- Return type:
bool
- is_day_3()
Check if the union tag is
day_3.- Return type:
bool
- is_day_30()
Check if the union tag is
day_30.- Return type:
bool
- is_day_7()
Check if the union tag is
day_7.- Return type:
bool
- is_day_90()
Check if the union tag is
day_90.- Return type:
bool
- is_none()
Check if the union tag is
none.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- is_year_1()
Check if the union tag is
year_1.- Return type:
bool
- none = DefaultLinkExpirationDaysPolicy('none', None)
- other = DefaultLinkExpirationDaysPolicy('other', None)
- year_1 = DefaultLinkExpirationDaysPolicy('year_1', None)
- class dropbox.team_log.DeleteTeamInviteLinkDetails(link_url=None)
Bases:
StructDeleted team invite link.
- Variables:
DeleteTeamInviteLinkDetails.link_url – The invite link url that was deleted.
- __init__(link_url=None)
- link_url
- class dropbox.team_log.DeleteTeamInviteLinkType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.DesktopDeviceSessionLogInfo(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)
Bases:
DeviceSessionLogInfoInformation about linked Dropbox desktop client sessions
- Variables:
DesktopDeviceSessionLogInfo.session_info – Desktop session unique id.
DesktopDeviceSessionLogInfo.host_name – Name of the hosting desktop.
DesktopDeviceSessionLogInfo.client_type – The Dropbox desktop client type.
DesktopDeviceSessionLogInfo.client_version – The Dropbox client version.
DesktopDeviceSessionLogInfo.platform – Information on the hosting platform.
DesktopDeviceSessionLogInfo.is_delete_on_unlink_supported – Whether itu2019s possible to delete all of the account files upon unlinking.
- __init__(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)
- client_type
- client_version
- host_name
- is_delete_on_unlink_supported
- platform
- session_info
- class dropbox.team_log.DesktopSessionLogInfo(session_id=None)
Bases:
SessionLogInfoDesktop session.
- __init__(session_id=None)
- class dropbox.team_log.DeviceApprovalsAddExceptionDetails
Bases:
StructAdded members to device approvals exception list.
- __init__()
- class dropbox.team_log.DeviceApprovalsAddExceptionType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.DeviceApprovalsChangeDesktopPolicyDetails(new_value=None, previous_value=None)
Bases:
StructSet/removed limit on number of computers member can link to team Dropbox account.
- Variables:
DeviceApprovalsChangeDesktopPolicyDetails.new_value – New desktop device approvals policy. Might be missing due to historical data gap.
DeviceApprovalsChangeDesktopPolicyDetails.previous_value – Previous desktop device approvals policy. Might be missing due to historical data gap.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.DeviceApprovalsChangeDesktopPolicyType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.DeviceApprovalsChangeMobilePolicyDetails(new_value=None, previous_value=None)
Bases:
StructSet/removed limit on number of mobile devices member can link to team Dropbox account.
- Variables:
DeviceApprovalsChangeMobilePolicyDetails.new_value – New mobile device approvals policy. Might be missing due to historical data gap.
DeviceApprovalsChangeMobilePolicyDetails.previous_value – Previous mobile device approvals policy. Might be missing due to historical data gap.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.DeviceApprovalsChangeMobilePolicyType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.DeviceApprovalsChangeOverageActionDetails(new_value=None, previous_value=None)
Bases:
StructChanged device approvals setting when member is over limit.
- Variables:
DeviceApprovalsChangeOverageActionDetails.new_value – New over the limits policy. Might be missing due to historical data gap.
DeviceApprovalsChangeOverageActionDetails.previous_value – Previous over the limit policy. Might be missing due to historical data gap.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.DeviceApprovalsChangeOverageActionType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.DeviceApprovalsChangeUnlinkActionDetails(new_value=None, previous_value=None)
Bases:
StructChanged device approvals setting when member unlinks approved device.
- Variables:
DeviceApprovalsChangeUnlinkActionDetails.new_value – New device unlink policy. Might be missing due to historical data gap.
DeviceApprovalsChangeUnlinkActionDetails.previous_value – Previous device unlink policy. Might be missing due to historical data gap.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.DeviceApprovalsChangeUnlinkActionType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.DeviceApprovalsPolicy(tag, value=None)
Bases:
UnionThis class acts as a tagged union. Only one of the
is_*methods will return true. To get the associated value of a tag (if one exists), use the correspondingget_*method.- is_limited()
Check if the union tag is
limited.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- is_unlimited()
Check if the union tag is
unlimited.- Return type:
bool
- limited = DeviceApprovalsPolicy('limited', None)
- other = DeviceApprovalsPolicy('other', None)
- unlimited = DeviceApprovalsPolicy('unlimited', None)
- class dropbox.team_log.DeviceApprovalsRemoveExceptionDetails
Bases:
StructRemoved members from device approvals exception list.
- __init__()
- class dropbox.team_log.DeviceApprovalsRemoveExceptionType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.DeviceChangeIpDesktopDetails(device_session_info=None)
Bases:
StructChanged IP address associated with active desktop session.
- Variables:
DeviceChangeIpDesktopDetails.device_session_info – Device’s session logged information.
- __init__(device_session_info=None)
- device_session_info
- class dropbox.team_log.DeviceChangeIpDesktopType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.DeviceChangeIpMobileDetails(device_session_info=None)
Bases:
StructChanged IP address associated with active mobile session.
- Variables:
DeviceChangeIpMobileDetails.device_session_info – Device’s session logged information.
- __init__(device_session_info=None)
- device_session_info
- class dropbox.team_log.DeviceChangeIpMobileType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.DeviceChangeIpWebDetails(user_agent=None)
Bases:
StructChanged IP address associated with active web session.
- Variables:
DeviceChangeIpWebDetails.user_agent – Web browser name.
- __init__(user_agent=None)
- user_agent
- class dropbox.team_log.DeviceChangeIpWebType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.DeviceDeleteOnUnlinkFailDetails(num_failures=None, session_info=None, display_name=None)
Bases:
StructFailed to delete all files from unlinked device.
- Variables:
DeviceDeleteOnUnlinkFailDetails.session_info – Session unique id.
DeviceDeleteOnUnlinkFailDetails.display_name – The device name. Might be missing due to historical data gap.
DeviceDeleteOnUnlinkFailDetails.num_failures – The number of times that remote file deletion failed.
- __init__(num_failures=None, session_info=None, display_name=None)
- display_name
- num_failures
- session_info
- class dropbox.team_log.DeviceDeleteOnUnlinkFailType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.DeviceDeleteOnUnlinkSuccessDetails(session_info=None, display_name=None)
Bases:
StructDeleted all files from unlinked device.
- Variables:
DeviceDeleteOnUnlinkSuccessDetails.session_info – Session unique id.
DeviceDeleteOnUnlinkSuccessDetails.display_name – The device name. Might be missing due to historical data gap.
- __init__(session_info=None, display_name=None)
- display_name
- session_info
- class dropbox.team_log.DeviceDeleteOnUnlinkSuccessType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.DeviceLinkFailDetails(device_type=None, ip_address=None)
Bases:
StructFailed to link device.
- Variables:
DeviceLinkFailDetails.ip_address – IP address. Might be missing due to historical data gap.
DeviceLinkFailDetails.device_type – A description of the device used while user approval blocked.
- __init__(device_type=None, ip_address=None)
- device_type
- ip_address
- class dropbox.team_log.DeviceLinkFailType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.DeviceLinkSuccessDetails(device_session_info=None)
Bases:
StructLinked device.
- Variables:
DeviceLinkSuccessDetails.device_session_info – Device’s session logged information.
- __init__(device_session_info=None)
- device_session_info
- class dropbox.team_log.DeviceLinkSuccessType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.DeviceManagementDisabledDetails
Bases:
StructDisabled device management.
- __init__()
- class dropbox.team_log.DeviceManagementDisabledType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.DeviceManagementEnabledDetails
Bases:
StructEnabled device management.
- __init__()
- class dropbox.team_log.DeviceManagementEnabledType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.DeviceSessionLogInfo(ip_address=None, created=None, updated=None)
Bases:
StructDevice’s session logged information.
- Variables:
DeviceSessionLogInfo.ip_address – The IP address of the last activity from this session.
DeviceSessionLogInfo.created – The time this session was created.
DeviceSessionLogInfo.updated – The time of the last activity from this session.
- __init__(ip_address=None, created=None, updated=None)
- created
- ip_address
- updated
- class dropbox.team_log.DeviceSyncBackupStatusChangedDetails(desktop_device_session_info=None, previous_value=None, new_value=None)
Bases:
StructEnabled/disabled backup for computer.
- Variables:
DeviceSyncBackupStatusChangedDetails.desktop_device_session_info – Device’s session logged information.
DeviceSyncBackupStatusChangedDetails.previous_value – Previous status of computer backup on the device.
DeviceSyncBackupStatusChangedDetails.new_value – Next status of computer backup on the device.
- __init__(desktop_device_session_info=None, previous_value=None, new_value=None)
- desktop_device_session_info
- new_value
- previous_value
- class dropbox.team_log.DeviceSyncBackupStatusChangedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.DeviceType(tag, value=None)
Bases:
UnionThis class acts as a tagged union. Only one of the
is_*methods will return true. To get the associated value of a tag (if one exists), use the correspondingget_*method.- desktop = DeviceType('desktop', None)
- is_desktop()
Check if the union tag is
desktop.- Return type:
bool
- is_mobile()
Check if the union tag is
mobile.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- mobile = DeviceType('mobile', None)
- other = DeviceType('other', None)
- class dropbox.team_log.DeviceUnlinkDetails(delete_data=None, session_info=None, display_name=None)
Bases:
StructDisconnected device.
- Variables:
DeviceUnlinkDetails.session_info – Session unique id.
DeviceUnlinkDetails.display_name – The device name. Might be missing due to historical data gap.
DeviceUnlinkDetails.delete_data – True if the user requested to delete data after device unlink, false otherwise.
- __init__(delete_data=None, session_info=None, display_name=None)
- delete_data
- display_name
- session_info
- class dropbox.team_log.DeviceUnlinkPolicy(tag, value=None)
Bases:
UnionThis class acts as a tagged union. Only one of the
is_*methods will return true. To get the associated value of a tag (if one exists), use the correspondingget_*method.- is_keep()
Check if the union tag is
keep.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- is_remove()
Check if the union tag is
remove.- Return type:
bool
- keep = DeviceUnlinkPolicy('keep', None)
- other = DeviceUnlinkPolicy('other', None)
- remove = DeviceUnlinkPolicy('remove', None)
- class dropbox.team_log.DeviceUnlinkType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.DirectoryRestrictionsAddMembersDetails
Bases:
StructAdded members to directory restrictions list.
- __init__()
- class dropbox.team_log.DirectoryRestrictionsAddMembersType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.DirectoryRestrictionsRemoveMembersDetails
Bases:
StructRemoved members from directory restrictions list.
- __init__()
- class dropbox.team_log.DirectoryRestrictionsRemoveMembersType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.DisabledDomainInvitesDetails
Bases:
StructDisabled domain invites.
- __init__()
- class dropbox.team_log.DisabledDomainInvitesType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.DispositionActionType(tag, value=None)
Bases:
UnionThis class acts as a tagged union. Only one of the
is_*methods will return true. To get the associated value of a tag (if one exists), use the correspondingget_*method.- automatic_delete = DispositionActionType('automatic_delete', None)
- automatic_permanently_delete = DispositionActionType('automatic_permanently_delete', None)
- is_automatic_delete()
Check if the union tag is
automatic_delete.- Return type:
bool
- is_automatic_permanently_delete()
Check if the union tag is
automatic_permanently_delete.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- other = DispositionActionType('other', None)
- class dropbox.team_log.DomainInvitesApproveRequestToJoinTeamDetails
Bases:
StructApproved user’s request to join team.
- __init__()
- class dropbox.team_log.DomainInvitesApproveRequestToJoinTeamType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.DomainInvitesDeclineRequestToJoinTeamDetails
Bases:
StructDeclined user’s request to join team.
- __init__()
- class dropbox.team_log.DomainInvitesDeclineRequestToJoinTeamType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.DomainInvitesEmailExistingUsersDetails(domain_name=None, num_recipients=None)
Bases:
StructSent domain invites to existing domain accounts.
- Variables:
DomainInvitesEmailExistingUsersDetails.domain_name – Domain names.
DomainInvitesEmailExistingUsersDetails.num_recipients – Number of recipients.
- __init__(domain_name=None, num_recipients=None)
- domain_name
- num_recipients
- class dropbox.team_log.DomainInvitesEmailExistingUsersType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.DomainInvitesRequestToJoinTeamDetails
Bases:
StructRequested to join team.
- __init__()
- class dropbox.team_log.DomainInvitesRequestToJoinTeamType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.DomainInvitesSetInviteNewUserPrefToNoDetails
Bases:
StructDisabled “Automatically invite new users”.
- __init__()
- class dropbox.team_log.DomainInvitesSetInviteNewUserPrefToNoType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.DomainInvitesSetInviteNewUserPrefToYesDetails
Bases:
StructEnabled “Automatically invite new users”.
- __init__()
- class dropbox.team_log.DomainInvitesSetInviteNewUserPrefToYesType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.DomainVerificationAddDomainFailDetails(domain_name=None, verification_method=None)
Bases:
StructFailed to verify team domain.
- Variables:
DomainVerificationAddDomainFailDetails.domain_name – Domain name.
DomainVerificationAddDomainFailDetails.verification_method – Domain name verification method. Might be missing due to historical data gap.
- __init__(domain_name=None, verification_method=None)
- domain_name
- verification_method
- class dropbox.team_log.DomainVerificationAddDomainFailType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.DomainVerificationAddDomainSuccessDetails(domain_names=None, verification_method=None)
Bases:
StructVerified team domain.
- Variables:
DomainVerificationAddDomainSuccessDetails.domain_names – Domain names.
DomainVerificationAddDomainSuccessDetails.verification_method – Domain name verification method. Might be missing due to historical data gap.
- __init__(domain_names=None, verification_method=None)
- domain_names
- verification_method
- class dropbox.team_log.DomainVerificationAddDomainSuccessType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.DomainVerificationRemoveDomainDetails(domain_names=None)
Bases:
StructRemoved domain from list of verified team domains.
- Variables:
DomainVerificationRemoveDomainDetails.domain_names – Domain names.
- __init__(domain_names=None)
- domain_names
- class dropbox.team_log.DomainVerificationRemoveDomainType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.DownloadPolicyType(tag, value=None)
Bases:
UnionShared content downloads policy
This class acts as a tagged union. Only one of the
is_*methods will return true. To get the associated value of a tag (if one exists), use the correspondingget_*method.- allow = DownloadPolicyType('allow', None)
- disallow = DownloadPolicyType('disallow', None)
- is_allow()
Check if the union tag is
allow.- Return type:
bool
- is_disallow()
Check if the union tag is
disallow.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- other = DownloadPolicyType('other', None)
- class dropbox.team_log.DropboxPasswordsExportedDetails(platform=None)
Bases:
StructExported passwords.
- Variables:
DropboxPasswordsExportedDetails.platform – The platform the device runs export.
- __init__(platform=None)
- platform
- class dropbox.team_log.DropboxPasswordsExportedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.DropboxPasswordsNewDeviceEnrolledDetails(is_first_device=None, platform=None)
Bases:
StructEnrolled new Dropbox Passwords device.
- Variables:
DropboxPasswordsNewDeviceEnrolledDetails.is_first_device – Whether it’s a first device enrolled.
DropboxPasswordsNewDeviceEnrolledDetails.platform – The platform the device is enrolled.
- __init__(is_first_device=None, platform=None)
- is_first_device
- platform
- class dropbox.team_log.DropboxPasswordsNewDeviceEnrolledType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.DropboxPasswordsPolicy(tag, value=None)
Bases:
UnionPolicy for deciding whether team users can use Dropbox Passwords
This class acts as a tagged union. Only one of the
is_*methods will return true. To get the associated value of a tag (if one exists), use the correspondingget_*method.- default = DropboxPasswordsPolicy('default', None)
- disabled = DropboxPasswordsPolicy('disabled', None)
- enabled = DropboxPasswordsPolicy('enabled', None)
- is_default()
Check if the union tag is
default.- Return type:
bool
- is_disabled()
Check if the union tag is
disabled.- Return type:
bool
- is_enabled()
Check if the union tag is
enabled.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- other = DropboxPasswordsPolicy('other', None)
- class dropbox.team_log.DropboxPasswordsPolicyChangedDetails(new_value=None, previous_value=None)
Bases:
StructChanged Dropbox Passwords policy for team.
- Variables:
DropboxPasswordsPolicyChangedDetails.new_value – To.
DropboxPasswordsPolicyChangedDetails.previous_value – From.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.DropboxPasswordsPolicyChangedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.DurationLogInfo(unit=None, amount=None)
Bases:
StructRepresents a time duration: unit and amount
- Variables:
DurationLogInfo.unit – Time unit.
DurationLogInfo.amount – Amount of time.
- __init__(unit=None, amount=None)
- amount
- unit
- class dropbox.team_log.EmailIngestPolicy(tag, value=None)
Bases:
UnionPolicy for deciding whether a team can use Email to Dropbox feature
This class acts as a tagged union. Only one of the
is_*methods will return true. To get the associated value of a tag (if one exists), use the correspondingget_*method.- disabled = EmailIngestPolicy('disabled', None)
- enabled = EmailIngestPolicy('enabled', None)
- is_disabled()
Check if the union tag is
disabled.- Return type:
bool
- is_enabled()
Check if the union tag is
enabled.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- other = EmailIngestPolicy('other', None)
- class dropbox.team_log.EmailIngestPolicyChangedDetails(new_value=None, previous_value=None)
Bases:
StructChanged email to Dropbox policy for team.
- Variables:
EmailIngestPolicyChangedDetails.new_value – To.
EmailIngestPolicyChangedDetails.previous_value – From.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.EmailIngestPolicyChangedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.EmailIngestReceiveFileDetails(inbox_name=None, attachment_names=None, subject=None, from_name=None, from_email=None)
Bases:
StructReceived files via Email to Dropbox.
- Variables:
EmailIngestReceiveFileDetails.inbox_name – Inbox name.
EmailIngestReceiveFileDetails.attachment_names – Submitted file names.
EmailIngestReceiveFileDetails.subject – Subject of the email.
EmailIngestReceiveFileDetails.from_name – The name as provided by the submitter.
EmailIngestReceiveFileDetails.from_email – The email as provided by the submitter.
- __init__(inbox_name=None, attachment_names=None, subject=None, from_name=None, from_email=None)
- attachment_names
- from_email
- from_name
- inbox_name
- subject
- class dropbox.team_log.EmailIngestReceiveFileType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.EmmAddExceptionDetails
Bases:
StructAdded members to EMM exception list.
- __init__()
- class dropbox.team_log.EmmAddExceptionType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.EmmChangePolicyDetails(new_value=None, previous_value=None)
Bases:
StructEnabled/disabled enterprise mobility management for members.
- Variables:
EmmChangePolicyDetails.new_value – New enterprise mobility management policy.
EmmChangePolicyDetails.previous_value – Previous enterprise mobility management policy. Might be missing due to historical data gap.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.EmmChangePolicyType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.EmmCreateExceptionsReportDetails
Bases:
StructCreated EMM-excluded users report.
- __init__()
- class dropbox.team_log.EmmCreateExceptionsReportType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.EmmCreateUsageReportDetails
Bases:
StructCreated EMM mobile app usage report.
- __init__()
- class dropbox.team_log.EmmCreateUsageReportType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.EmmErrorDetails(error_details=None)
Bases:
StructFailed to sign in via EMM.
- Variables:
EmmErrorDetails.error_details – Error details.
- __init__(error_details=None)
- error_details
- class dropbox.team_log.EmmErrorType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.EmmRefreshAuthTokenDetails
Bases:
StructRefreshed auth token used for setting up EMM.
- __init__()
- class dropbox.team_log.EmmRefreshAuthTokenType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.EmmRemoveExceptionDetails
Bases:
StructRemoved members from EMM exception list.
- __init__()
- class dropbox.team_log.EmmRemoveExceptionType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.EnabledDomainInvitesDetails
Bases:
StructEnabled domain invites.
- __init__()
- class dropbox.team_log.EnabledDomainInvitesType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.EncryptedFolderCancelTeamKeyRotationDetails(team_key_id=None)
Bases:
StructCanceled team key rotation.
- Variables:
EncryptedFolderCancelTeamKeyRotationDetails.team_key_id – Identifier of the team key.
- __init__(team_key_id=None)
- team_key_id
- class dropbox.team_log.EncryptedFolderCancelTeamKeyRotationType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.EncryptedFolderEnrollBackupKeyDetails(backup_key_id=None)
Bases:
StructAdded recovery key.
- Variables:
EncryptedFolderEnrollBackupKeyDetails.backup_key_id – Identifier of the recovery key.
- __init__(backup_key_id=None)
- backup_key_id
- class dropbox.team_log.EncryptedFolderEnrollBackupKeyType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.EncryptedFolderEnrollClientDetails(client_key_id=None)
Bases:
StructEnrolled device.
- Variables:
EncryptedFolderEnrollClientDetails.client_key_id – Identifier of the client key.
- __init__(client_key_id=None)
- client_key_id
- class dropbox.team_log.EncryptedFolderEnrollClientType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.EncryptedFolderEnrollTeamDetails
Bases:
StructActivated team folder encryption.
- __init__()
- class dropbox.team_log.EncryptedFolderEnrollTeamType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.EncryptedFolderFinishTeamUnenrollmentDetails
Bases:
StructDeactivated team folder encryption.
- __init__()
- class dropbox.team_log.EncryptedFolderFinishTeamUnenrollmentType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.EncryptedFolderInitTeamKeyRotationDetails(team_key_id=None)
Bases:
StructInitiated team key rotation.
- Variables:
EncryptedFolderInitTeamKeyRotationDetails.team_key_id – Identifier of the team key.
- __init__(team_key_id=None)
- team_key_id
- class dropbox.team_log.EncryptedFolderInitTeamKeyRotationType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.EncryptedFolderInitTeamUnenrollmentDetails
Bases:
StructInitiated deactivation of team folder encryption.
- __init__()
- class dropbox.team_log.EncryptedFolderInitTeamUnenrollmentType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.EncryptedFolderRemoveBackupKeyDetails(backup_key_id=None)
Bases:
StructRemoved recovery key.
- Variables:
EncryptedFolderRemoveBackupKeyDetails.backup_key_id – Identifier of the recovery key.
- __init__(backup_key_id=None)
- backup_key_id
- class dropbox.team_log.EncryptedFolderRemoveBackupKeyType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.EncryptedFolderRotateTeamKeyDetails(team_key_id=None)
Bases:
StructRotated team key.
- Variables:
EncryptedFolderRotateTeamKeyDetails.team_key_id – Identifier of the team key.
- __init__(team_key_id=None)
- team_key_id
- class dropbox.team_log.EncryptedFolderRotateTeamKeyType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.EncryptedFolderUnenrollClientDetails(client_key_id=None)
Bases:
StructUnenrolled device.
- Variables:
EncryptedFolderUnenrollClientDetails.client_key_id – Identifier of the client key.
- __init__(client_key_id=None)
- client_key_id
- class dropbox.team_log.EncryptedFolderUnenrollClientType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.EndedEnterpriseAdminSessionDeprecatedDetails(federation_extra_details=None)
Bases:
StructEnded enterprise admin session.
- Variables:
EndedEnterpriseAdminSessionDeprecatedDetails.federation_extra_details – More information about the organization or team.
- __init__(federation_extra_details=None)
- federation_extra_details
- class dropbox.team_log.EndedEnterpriseAdminSessionDeprecatedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.EndedEnterpriseAdminSessionDetails
Bases:
StructEnded enterprise admin session.
- __init__()
- class dropbox.team_log.EndedEnterpriseAdminSessionType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.EnforceLinkPasswordPolicy(tag, value=None)
Bases:
UnionPolicy for deciding whether password must be enforced when an externally shared link is updated
This class acts as a tagged union. Only one of the
is_*methods will return true. To get the associated value of a tag (if one exists), use the correspondingget_*method.- is_optional()
Check if the union tag is
optional.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- is_required()
Check if the union tag is
required.- Return type:
bool
- optional = EnforceLinkPasswordPolicy('optional', None)
- other = EnforceLinkPasswordPolicy('other', None)
- required = EnforceLinkPasswordPolicy('required', None)
- class dropbox.team_log.EnterpriseSettingsLockingDetails(team_name=None, settings_page_name=None, previous_settings_page_locking_state=None, new_settings_page_locking_state=None)
Bases:
StructChanged who can update a setting.
- Variables:
EnterpriseSettingsLockingDetails.team_name – The secondary team name.
EnterpriseSettingsLockingDetails.settings_page_name – Settings page name.
EnterpriseSettingsLockingDetails.previous_settings_page_locking_state – Previous locked settings page state.
EnterpriseSettingsLockingDetails.new_settings_page_locking_state – New locked settings page state.
- __init__(team_name=None, settings_page_name=None, previous_settings_page_locking_state=None, new_settings_page_locking_state=None)
- new_settings_page_locking_state
- previous_settings_page_locking_state
- settings_page_name
- team_name
- class dropbox.team_log.EnterpriseSettingsLockingType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.EventCategory(tag, value=None)
Bases:
UnionCategory of events in event audit log.
This class acts as a tagged union. Only one of the
is_*methods will return true. To get the associated value of a tag (if one exists), use the correspondingget_*method.- Variables:
EventCategory.admin_alerting – Events that involve team related alerts.
EventCategory.apps – Events that apply to management of linked apps.
EventCategory.comments – Events that have to do with comments on files and Paper documents.
EventCategory.dash – Events that apply to Dropbox Dash
EventCategory.data_governance – Events that involve data governance actions
EventCategory.devices – Events that apply to linked devices on mobile, desktop and Web platforms.
EventCategory.domains – Events that involve domain management feature: domain verification, invite enforcement and account capture.
EventCategory.encryption – Events that involve encryption.
EventCategory.file_operations – Events that have to do with filesystem operations on files and folders: copy, move, delete, etc.
EventCategory.file_requests – Events that apply to the file requests feature.
EventCategory.groups – Events that involve group management.
EventCategory.logins – Events that involve users signing in to or out of Dropbox.
EventCategory.members – Events that involve team member management.
EventCategory.paper – Events that apply to Dropbox Paper.
EventCategory.passwords – Events that involve using, changing or resetting passwords.
EventCategory.protect – Events that apply to Dropbox Protect
EventCategory.reports – Events that concern generation of admin reports, including team activity and device usage.
EventCategory.sharing – Events that apply to all types of sharing and collaboration.
EventCategory.showcase – Events that apply to Dropbox Showcase.
EventCategory.signatures – Events that apply to Dropbox Sign
EventCategory.sso – Events that involve using or configuring single sign-on as well as administrative policies concerning single sign-on.
EventCategory.team_folders – Events that involve team folder management.
EventCategory.team_policies – Events that involve a change in team-wide policies.
EventCategory.team_profile – Events that involve a change in the team profile.
EventCategory.tfa – Events that involve using or configuring two factor authentication as well as administrative policies concerning two factor authentication.
EventCategory.trusted_teams – Events that apply to cross-team trust establishment.
- admin_alerting = EventCategory('admin_alerting', None)
- apps = EventCategory('apps', None)
- comments = EventCategory('comments', None)
- dash = EventCategory('dash', None)
- data_governance = EventCategory('data_governance', None)
- devices = EventCategory('devices', None)
- domains = EventCategory('domains', None)
- encryption = EventCategory('encryption', None)
- file_operations = EventCategory('file_operations', None)
- file_requests = EventCategory('file_requests', None)
- groups = EventCategory('groups', None)
- is_admin_alerting()
Check if the union tag is
admin_alerting.- Return type:
bool
- is_apps()
Check if the union tag is
apps.- Return type:
bool
- is_comments()
Check if the union tag is
comments.- Return type:
bool
- is_dash()
Check if the union tag is
dash.- Return type:
bool
- is_data_governance()
Check if the union tag is
data_governance.- Return type:
bool
- is_devices()
Check if the union tag is
devices.- Return type:
bool
- is_domains()
Check if the union tag is
domains.- Return type:
bool
- is_encryption()
Check if the union tag is
encryption.- Return type:
bool
- is_file_operations()
Check if the union tag is
file_operations.- Return type:
bool
- is_file_requests()
Check if the union tag is
file_requests.- Return type:
bool
- is_groups()
Check if the union tag is
groups.- Return type:
bool
- is_logins()
Check if the union tag is
logins.- Return type:
bool
- is_members()
Check if the union tag is
members.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- is_paper()
Check if the union tag is
paper.- Return type:
bool
- is_passwords()
Check if the union tag is
passwords.- Return type:
bool
- is_protect()
Check if the union tag is
protect.- Return type:
bool
- is_reports()
Check if the union tag is
reports.- Return type:
bool
- is_sharing()
Check if the union tag is
sharing.- Return type:
bool
- is_showcase()
Check if the union tag is
showcase.- Return type:
bool
- is_signatures()
Check if the union tag is
signatures.- Return type:
bool
- is_sso()
Check if the union tag is
sso.- Return type:
bool
- is_team_folders()
Check if the union tag is
team_folders.- Return type:
bool
- is_team_policies()
Check if the union tag is
team_policies.- Return type:
bool
- is_team_profile()
Check if the union tag is
team_profile.- Return type:
bool
- is_tfa()
Check if the union tag is
tfa.- Return type:
bool
- is_trusted_teams()
Check if the union tag is
trusted_teams.- Return type:
bool
- logins = EventCategory('logins', None)
- members = EventCategory('members', None)
- other = EventCategory('other', None)
- paper = EventCategory('paper', None)
- passwords = EventCategory('passwords', None)
- protect = EventCategory('protect', None)
- reports = EventCategory('reports', None)
- sharing = EventCategory('sharing', None)
- showcase = EventCategory('showcase', None)
- signatures = EventCategory('signatures', None)
- sso = EventCategory('sso', None)
- team_folders = EventCategory('team_folders', None)
- team_policies = EventCategory('team_policies', None)
- team_profile = EventCategory('team_profile', None)
- tfa = EventCategory('tfa', None)
- trusted_teams = EventCategory('trusted_teams', None)
- class dropbox.team_log.EventDetails(tag, value=None)
Bases:
UnionAdditional fields depending on the event type.
This class acts as a tagged union. Only one of the
is_*methods will return true. To get the associated value of a tag (if one exists), use the correspondingget_*method.- Variables:
EventDetails.missing_details (MissingDetails) – Hints that this event was returned with missing details due to an internal error.
- classmethod account_capture_change_availability_details(val)
Create an instance of this class set to the
account_capture_change_availability_detailstag with valueval.- Parameters:
- Return type:
- classmethod account_capture_change_policy_details(val)
Create an instance of this class set to the
account_capture_change_policy_detailstag with valueval.- Parameters:
- Return type:
- classmethod account_capture_migrate_account_details(val)
Create an instance of this class set to the
account_capture_migrate_account_detailstag with valueval.- Parameters:
- Return type:
- classmethod account_capture_notification_emails_sent_details(val)
Create an instance of this class set to the
account_capture_notification_emails_sent_detailstag with valueval.- Parameters:
- Return type:
- classmethod account_capture_relinquish_account_details(val)
Create an instance of this class set to the
account_capture_relinquish_account_detailstag with valueval.- Parameters:
- Return type:
- classmethod account_lock_or_unlocked_details(val)
Create an instance of this class set to the
account_lock_or_unlocked_detailstag with valueval.- Parameters:
- Return type:
- classmethod addon_assigned_details(val)
Create an instance of this class set to the
addon_assigned_detailstag with valueval.- Parameters:
val (AddonAssignedDetails)
- Return type:
- classmethod addon_removed_details(val)
Create an instance of this class set to the
addon_removed_detailstag with valueval.- Parameters:
val (AddonRemovedDetails)
- Return type:
- classmethod admin_alerting_alert_state_changed_details(val)
Create an instance of this class set to the
admin_alerting_alert_state_changed_detailstag with valueval.- Parameters:
- Return type:
- classmethod admin_alerting_changed_alert_config_details(val)
Create an instance of this class set to the
admin_alerting_changed_alert_config_detailstag with valueval.- Parameters:
- Return type:
- classmethod admin_alerting_triggered_alert_details(val)
Create an instance of this class set to the
admin_alerting_triggered_alert_detailstag with valueval.- Parameters:
- Return type:
- classmethod admin_email_reminders_changed_details(val)
Create an instance of this class set to the
admin_email_reminders_changed_detailstag with valueval.- Parameters:
- Return type:
- classmethod ai_third_party_sharing_dropbox_base_policy_changed_details(val)
Create an instance of this class set to the
ai_third_party_sharing_dropbox_base_policy_changed_detailstag with valueval.- Parameters:
- Return type:
- classmethod allow_download_disabled_details(val)
Create an instance of this class set to the
allow_download_disabled_detailstag with valueval.- Parameters:
- Return type:
- classmethod allow_download_enabled_details(val)
Create an instance of this class set to the
allow_download_enabled_detailstag with valueval.- Parameters:
- Return type:
- classmethod app_blocked_by_permissions_details(val)
Create an instance of this class set to the
app_blocked_by_permissions_detailstag with valueval.- Parameters:
- Return type:
- classmethod app_link_team_details(val)
Create an instance of this class set to the
app_link_team_detailstag with valueval.- Parameters:
val (AppLinkTeamDetails)
- Return type:
- classmethod app_link_user_details(val)
Create an instance of this class set to the
app_link_user_detailstag with valueval.- Parameters:
val (AppLinkUserDetails)
- Return type:
- classmethod app_permissions_changed_details(val)
Create an instance of this class set to the
app_permissions_changed_detailstag with valueval.- Parameters:
- Return type:
- classmethod app_unlink_team_details(val)
Create an instance of this class set to the
app_unlink_team_detailstag with valueval.- Parameters:
val (AppUnlinkTeamDetails)
- Return type:
- classmethod app_unlink_user_details(val)
Create an instance of this class set to the
app_unlink_user_detailstag with valueval.- Parameters:
val (AppUnlinkUserDetails)
- Return type:
- classmethod apple_login_change_policy_details(val)
Create an instance of this class set to the
apple_login_change_policy_detailstag with valueval.- Parameters:
- Return type:
- classmethod apply_naming_convention_details(val)
Create an instance of this class set to the
apply_naming_convention_detailstag with valueval.- Parameters:
- Return type:
- classmethod backup_admin_invitation_sent_details(val)
Create an instance of this class set to the
backup_admin_invitation_sent_detailstag with valueval.- Parameters:
- Return type:
- classmethod backup_invitation_opened_details(val)
Create an instance of this class set to the
backup_invitation_opened_detailstag with valueval.- Parameters:
- Return type:
- classmethod binder_add_page_details(val)
Create an instance of this class set to the
binder_add_page_detailstag with valueval.- Parameters:
val (BinderAddPageDetails)
- Return type:
- classmethod binder_add_section_details(val)
Create an instance of this class set to the
binder_add_section_detailstag with valueval.- Parameters:
val (BinderAddSectionDetails)
- Return type:
- classmethod binder_remove_page_details(val)
Create an instance of this class set to the
binder_remove_page_detailstag with valueval.- Parameters:
val (BinderRemovePageDetails)
- Return type:
- classmethod binder_remove_section_details(val)
Create an instance of this class set to the
binder_remove_section_detailstag with valueval.- Parameters:
- Return type:
- classmethod binder_rename_page_details(val)
Create an instance of this class set to the
binder_rename_page_detailstag with valueval.- Parameters:
val (BinderRenamePageDetails)
- Return type:
- classmethod binder_rename_section_details(val)
Create an instance of this class set to the
binder_rename_section_detailstag with valueval.- Parameters:
- Return type:
- classmethod binder_reorder_page_details(val)
Create an instance of this class set to the
binder_reorder_page_detailstag with valueval.- Parameters:
val (BinderReorderPageDetails)
- Return type:
- classmethod binder_reorder_section_details(val)
Create an instance of this class set to the
binder_reorder_section_detailstag with valueval.- Parameters:
- Return type:
- classmethod camera_uploads_policy_changed_details(val)
Create an instance of this class set to the
camera_uploads_policy_changed_detailstag with valueval.- Parameters:
- Return type:
- classmethod capture_team_space_policy_changed_details(val)
Create an instance of this class set to the
capture_team_space_policy_changed_detailstag with valueval.- Parameters:
- Return type:
- classmethod capture_transcript_policy_changed_details(val)
Create an instance of this class set to the
capture_transcript_policy_changed_detailstag with valueval.- Parameters:
- Return type:
- classmethod changed_enterprise_admin_role_details(val)
Create an instance of this class set to the
changed_enterprise_admin_role_detailstag with valueval.- Parameters:
- Return type:
- classmethod changed_enterprise_connected_team_status_details(val)
Create an instance of this class set to the
changed_enterprise_connected_team_status_detailstag with valueval.- Parameters:
- Return type:
- classmethod classification_change_policy_details(val)
Create an instance of this class set to the
classification_change_policy_detailstag with valueval.- Parameters:
- Return type:
- classmethod classification_create_report_details(val)
Create an instance of this class set to the
classification_create_report_detailstag with valueval.- Parameters:
- Return type:
- classmethod classification_create_report_fail_details(val)
Create an instance of this class set to the
classification_create_report_fail_detailstag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
collection_share_detailstag with valueval.- Parameters:
val (CollectionShareDetails)
- Return type:
- classmethod computer_backup_policy_changed_details(val)
Create an instance of this class set to the
computer_backup_policy_changed_detailstag with valueval.- Parameters:
- Return type:
- classmethod content_administration_policy_changed_details(val)
Create an instance of this class set to the
content_administration_policy_changed_detailstag with valueval.- Parameters:
- Return type:
- classmethod content_deletion_protection_change_policy_details(val)
Create an instance of this class set to the
content_deletion_protection_change_policy_detailstag with valueval.- Parameters:
- Return type:
- classmethod create_folder_details(val)
Create an instance of this class set to the
create_folder_detailstag with valueval.- Parameters:
val (CreateFolderDetails)
- Return type:
- classmethod create_team_invite_link_details(val)
Create an instance of this class set to the
create_team_invite_link_detailstag with valueval.- Parameters:
- Return type:
- classmethod dash_added_comment_to_stack_details(val)
Create an instance of this class set to the
dash_added_comment_to_stack_detailstag with valueval.- Parameters:
- Return type:
- classmethod dash_added_connector_details(val)
Create an instance of this class set to the
dash_added_connector_detailstag with valueval.- Parameters:
- Return type:
- classmethod dash_added_link_to_stack_details(val)
Create an instance of this class set to the
dash_added_link_to_stack_detailstag with valueval.- Parameters:
- Return type:
- classmethod dash_added_team_email_domain_allowlist_details(val)
Create an instance of this class set to the
dash_added_team_email_domain_allowlist_detailstag with valueval.- Parameters:
- Return type:
- classmethod dash_admin_added_org_wide_connector_details(val)
Create an instance of this class set to the
dash_admin_added_org_wide_connector_detailstag with valueval.- Parameters:
- Return type:
- classmethod dash_admin_disabled_connector_details(val)
Create an instance of this class set to the
dash_admin_disabled_connector_detailstag with valueval.- Parameters:
- Return type:
- classmethod dash_admin_enabled_connector_details(val)
Create an instance of this class set to the
dash_admin_enabled_connector_detailstag with valueval.- Parameters:
- Return type:
- classmethod dash_admin_removed_org_wide_connector_details(val)
Create an instance of this class set to the
dash_admin_removed_org_wide_connector_detailstag with valueval.- Parameters:
- Return type:
- classmethod dash_archived_stack_details(val)
Create an instance of this class set to the
dash_archived_stack_detailstag with valueval.- Parameters:
val (DashArchivedStackDetails)
- Return type:
Create an instance of this class set to the
dash_changed_audience_of_shared_link_to_stack_detailstag with valueval.- Parameters:
- Return type:
- classmethod dash_cloned_stack_details(val)
Create an instance of this class set to the
dash_cloned_stack_detailstag with valueval.- Parameters:
val (DashClonedStackDetails)
- Return type:
- classmethod dash_connector_tools_call_details(val)
Create an instance of this class set to the
dash_connector_tools_call_detailstag with valueval.- Parameters:
- Return type:
- classmethod dash_created_stack_details(val)
Create an instance of this class set to the
dash_created_stack_detailstag with valueval.- Parameters:
val (DashCreatedStackDetails)
- Return type:
- classmethod dash_deleted_comment_from_stack_details(val)
Create an instance of this class set to the
dash_deleted_comment_from_stack_detailstag with valueval.- Parameters:
- Return type:
- classmethod dash_deleted_stack_details(val)
Create an instance of this class set to the
dash_deleted_stack_detailstag with valueval.- Parameters:
val (DashDeletedStackDetails)
- Return type:
- classmethod dash_edited_comment_in_stack_details(val)
Create an instance of this class set to the
dash_edited_comment_in_stack_detailstag with valueval.- Parameters:
- Return type:
- classmethod dash_external_sharing_policy_changed_details(val)
Create an instance of this class set to the
dash_external_sharing_policy_changed_detailstag with valueval.- Parameters:
- Return type:
- classmethod dash_external_user_opened_stack_details(val)
Create an instance of this class set to the
dash_external_user_opened_stack_detailstag with valueval.- Parameters:
- Return type:
- classmethod dash_first_launched_desktop_details(val)
Create an instance of this class set to the
dash_first_launched_desktop_detailstag with valueval.- Parameters:
- Return type:
- classmethod dash_first_launched_extension_details(val)
Create an instance of this class set to the
dash_first_launched_extension_detailstag with valueval.- Parameters:
- Return type:
- classmethod dash_first_launched_web_start_page_details(val)
Create an instance of this class set to the
dash_first_launched_web_start_page_detailstag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
dash_opened_shared_link_to_stack_detailstag with valueval.- Parameters:
- Return type:
- classmethod dash_opened_stack_details(val)
Create an instance of this class set to the
dash_opened_stack_detailstag with valueval.- Parameters:
val (DashOpenedStackDetails)
- Return type:
- classmethod dash_preview_opt_out_status_changed_details(val)
Create an instance of this class set to the
dash_preview_opt_out_status_changed_detailstag with valueval.- Parameters:
- Return type:
- classmethod dash_removed_connector_details(val)
Create an instance of this class set to the
dash_removed_connector_detailstag with valueval.- Parameters:
- Return type:
- classmethod dash_removed_link_from_stack_details(val)
Create an instance of this class set to the
dash_removed_link_from_stack_detailstag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
dash_removed_shared_link_to_stack_detailstag with valueval.- Parameters:
- Return type:
- classmethod dash_removed_team_email_domain_allowlist_details(val)
Create an instance of this class set to the
dash_removed_team_email_domain_allowlist_detailstag with valueval.- Parameters:
- Return type:
- classmethod dash_renamed_stack_details(val)
Create an instance of this class set to the
dash_renamed_stack_detailstag with valueval.- Parameters:
val (DashRenamedStackDetails)
- Return type:
Create an instance of this class set to the
dash_shared_link_to_stack_detailstag with valueval.- Parameters:
- Return type:
- classmethod dash_unarchived_stack_details(val)
Create an instance of this class set to the
dash_unarchived_stack_detailstag with valueval.- Parameters:
- Return type:
- classmethod dash_viewed_company_stack_details(val)
Create an instance of this class set to the
dash_viewed_company_stack_detailstag with valueval.- Parameters:
- Return type:
- classmethod dash_viewed_external_ai_activity_report_details(val)
Create an instance of this class set to the
dash_viewed_external_ai_activity_report_detailstag with valueval.- Parameters:
- Return type:
- classmethod data_placement_restriction_change_policy_details(val)
Create an instance of this class set to the
data_placement_restriction_change_policy_detailstag with valueval.- Parameters:
- Return type:
- classmethod data_placement_restriction_satisfy_policy_details(val)
Create an instance of this class set to the
data_placement_restriction_satisfy_policy_detailstag with valueval.- Parameters:
- Return type:
- classmethod data_residency_migration_request_successful_details(val)
Create an instance of this class set to the
data_residency_migration_request_successful_detailstag with valueval.- Parameters:
- Return type:
- classmethod data_residency_migration_request_unsuccessful_details(val)
Create an instance of this class set to the
data_residency_migration_request_unsuccessful_detailstag with valueval.- Parameters:
- Return type:
- classmethod delete_team_invite_link_details(val)
Create an instance of this class set to the
delete_team_invite_link_detailstag with valueval.- Parameters:
- Return type:
- classmethod device_approvals_add_exception_details(val)
Create an instance of this class set to the
device_approvals_add_exception_detailstag with valueval.- Parameters:
- Return type:
- classmethod device_approvals_change_desktop_policy_details(val)
Create an instance of this class set to the
device_approvals_change_desktop_policy_detailstag with valueval.- Parameters:
- Return type:
- classmethod device_approvals_change_mobile_policy_details(val)
Create an instance of this class set to the
device_approvals_change_mobile_policy_detailstag with valueval.- Parameters:
- Return type:
- classmethod device_approvals_change_overage_action_details(val)
Create an instance of this class set to the
device_approvals_change_overage_action_detailstag with valueval.- Parameters:
- Return type:
- classmethod device_approvals_change_unlink_action_details(val)
Create an instance of this class set to the
device_approvals_change_unlink_action_detailstag with valueval.- Parameters:
- Return type:
- classmethod device_approvals_remove_exception_details(val)
Create an instance of this class set to the
device_approvals_remove_exception_detailstag with valueval.- Parameters:
- Return type:
- classmethod device_change_ip_desktop_details(val)
Create an instance of this class set to the
device_change_ip_desktop_detailstag with valueval.- Parameters:
- Return type:
- classmethod device_change_ip_mobile_details(val)
Create an instance of this class set to the
device_change_ip_mobile_detailstag with valueval.- Parameters:
- Return type:
- classmethod device_change_ip_web_details(val)
Create an instance of this class set to the
device_change_ip_web_detailstag with valueval.- Parameters:
val (DeviceChangeIpWebDetails)
- Return type:
- classmethod device_delete_on_unlink_fail_details(val)
Create an instance of this class set to the
device_delete_on_unlink_fail_detailstag with valueval.- Parameters:
- Return type:
- classmethod device_delete_on_unlink_success_details(val)
Create an instance of this class set to the
device_delete_on_unlink_success_detailstag with valueval.- Parameters:
- Return type:
- classmethod device_link_fail_details(val)
Create an instance of this class set to the
device_link_fail_detailstag with valueval.- Parameters:
val (DeviceLinkFailDetails)
- Return type:
- classmethod device_link_success_details(val)
Create an instance of this class set to the
device_link_success_detailstag with valueval.- Parameters:
val (DeviceLinkSuccessDetails)
- Return type:
- classmethod device_management_disabled_details(val)
Create an instance of this class set to the
device_management_disabled_detailstag with valueval.- Parameters:
- Return type:
- classmethod device_management_enabled_details(val)
Create an instance of this class set to the
device_management_enabled_detailstag with valueval.- Parameters:
- Return type:
- classmethod device_sync_backup_status_changed_details(val)
Create an instance of this class set to the
device_sync_backup_status_changed_detailstag with valueval.- Parameters:
- Return type:
- classmethod device_unlink_details(val)
Create an instance of this class set to the
device_unlink_detailstag with valueval.- Parameters:
val (DeviceUnlinkDetails)
- Return type:
- classmethod directory_restrictions_add_members_details(val)
Create an instance of this class set to the
directory_restrictions_add_members_detailstag with valueval.- Parameters:
- Return type:
- classmethod directory_restrictions_remove_members_details(val)
Create an instance of this class set to the
directory_restrictions_remove_members_detailstag with valueval.- Parameters:
- Return type:
- classmethod disabled_domain_invites_details(val)
Create an instance of this class set to the
disabled_domain_invites_detailstag with valueval.- Parameters:
- Return type:
- classmethod domain_invites_approve_request_to_join_team_details(val)
Create an instance of this class set to the
domain_invites_approve_request_to_join_team_detailstag with valueval.- Parameters:
- Return type:
- classmethod domain_invites_decline_request_to_join_team_details(val)
Create an instance of this class set to the
domain_invites_decline_request_to_join_team_detailstag with valueval.- Parameters:
- Return type:
- classmethod domain_invites_email_existing_users_details(val)
Create an instance of this class set to the
domain_invites_email_existing_users_detailstag with valueval.- Parameters:
- Return type:
- classmethod domain_invites_request_to_join_team_details(val)
Create an instance of this class set to the
domain_invites_request_to_join_team_detailstag with valueval.- Parameters:
- Return type:
- classmethod domain_invites_set_invite_new_user_pref_to_no_details(val)
Create an instance of this class set to the
domain_invites_set_invite_new_user_pref_to_no_detailstag with valueval.- Parameters:
- Return type:
- classmethod domain_invites_set_invite_new_user_pref_to_yes_details(val)
Create an instance of this class set to the
domain_invites_set_invite_new_user_pref_to_yes_detailstag with valueval.- Parameters:
- Return type:
- classmethod domain_verification_add_domain_fail_details(val)
Create an instance of this class set to the
domain_verification_add_domain_fail_detailstag with valueval.- Parameters:
- Return type:
- classmethod domain_verification_add_domain_success_details(val)
Create an instance of this class set to the
domain_verification_add_domain_success_detailstag with valueval.- Parameters:
- Return type:
- classmethod domain_verification_remove_domain_details(val)
Create an instance of this class set to the
domain_verification_remove_domain_detailstag with valueval.- Parameters:
- Return type:
- classmethod dropbox_passwords_exported_details(val)
Create an instance of this class set to the
dropbox_passwords_exported_detailstag with valueval.- Parameters:
- Return type:
- classmethod dropbox_passwords_new_device_enrolled_details(val)
Create an instance of this class set to the
dropbox_passwords_new_device_enrolled_detailstag with valueval.- Parameters:
- Return type:
- classmethod dropbox_passwords_policy_changed_details(val)
Create an instance of this class set to the
dropbox_passwords_policy_changed_detailstag with valueval.- Parameters:
- Return type:
- classmethod email_ingest_policy_changed_details(val)
Create an instance of this class set to the
email_ingest_policy_changed_detailstag with valueval.- Parameters:
- Return type:
- classmethod email_ingest_receive_file_details(val)
Create an instance of this class set to the
email_ingest_receive_file_detailstag with valueval.- Parameters:
- Return type:
- classmethod emm_add_exception_details(val)
Create an instance of this class set to the
emm_add_exception_detailstag with valueval.- Parameters:
val (EmmAddExceptionDetails)
- Return type:
- classmethod emm_change_policy_details(val)
Create an instance of this class set to the
emm_change_policy_detailstag with valueval.- Parameters:
val (EmmChangePolicyDetails)
- Return type:
- classmethod emm_create_exceptions_report_details(val)
Create an instance of this class set to the
emm_create_exceptions_report_detailstag with valueval.- Parameters:
- Return type:
- classmethod emm_create_usage_report_details(val)
Create an instance of this class set to the
emm_create_usage_report_detailstag with valueval.- Parameters:
- Return type:
- classmethod emm_error_details(val)
Create an instance of this class set to the
emm_error_detailstag with valueval.- Parameters:
val (EmmErrorDetails)
- Return type:
- classmethod emm_refresh_auth_token_details(val)
Create an instance of this class set to the
emm_refresh_auth_token_detailstag with valueval.- Parameters:
- Return type:
- classmethod emm_remove_exception_details(val)
Create an instance of this class set to the
emm_remove_exception_detailstag with valueval.- Parameters:
- Return type:
- classmethod enabled_domain_invites_details(val)
Create an instance of this class set to the
enabled_domain_invites_detailstag with valueval.- Parameters:
- Return type:
- classmethod encrypted_folder_cancel_team_key_rotation_details(val)
Create an instance of this class set to the
encrypted_folder_cancel_team_key_rotation_detailstag with valueval.- Parameters:
- Return type:
- classmethod encrypted_folder_enroll_backup_key_details(val)
Create an instance of this class set to the
encrypted_folder_enroll_backup_key_detailstag with valueval.- Parameters:
- Return type:
- classmethod encrypted_folder_enroll_client_details(val)
Create an instance of this class set to the
encrypted_folder_enroll_client_detailstag with valueval.- Parameters:
- Return type:
- classmethod encrypted_folder_enroll_team_details(val)
Create an instance of this class set to the
encrypted_folder_enroll_team_detailstag with valueval.- Parameters:
- Return type:
- classmethod encrypted_folder_finish_team_unenrollment_details(val)
Create an instance of this class set to the
encrypted_folder_finish_team_unenrollment_detailstag with valueval.- Parameters:
- Return type:
- classmethod encrypted_folder_init_team_key_rotation_details(val)
Create an instance of this class set to the
encrypted_folder_init_team_key_rotation_detailstag with valueval.- Parameters:
- Return type:
- classmethod encrypted_folder_init_team_unenrollment_details(val)
Create an instance of this class set to the
encrypted_folder_init_team_unenrollment_detailstag with valueval.- Parameters:
- Return type:
- classmethod encrypted_folder_remove_backup_key_details(val)
Create an instance of this class set to the
encrypted_folder_remove_backup_key_detailstag with valueval.- Parameters:
- Return type:
- classmethod encrypted_folder_rotate_team_key_details(val)
Create an instance of this class set to the
encrypted_folder_rotate_team_key_detailstag with valueval.- Parameters:
- Return type:
- classmethod encrypted_folder_unenroll_client_details(val)
Create an instance of this class set to the
encrypted_folder_unenroll_client_detailstag with valueval.- Parameters:
- Return type:
- classmethod ended_enterprise_admin_session_deprecated_details(val)
Create an instance of this class set to the
ended_enterprise_admin_session_deprecated_detailstag with valueval.- Parameters:
- Return type:
- classmethod ended_enterprise_admin_session_details(val)
Create an instance of this class set to the
ended_enterprise_admin_session_detailstag with valueval.- Parameters:
- Return type:
- classmethod enterprise_settings_locking_details(val)
Create an instance of this class set to the
enterprise_settings_locking_detailstag with valueval.- Parameters:
- Return type:
- classmethod export_members_report_details(val)
Create an instance of this class set to the
export_members_report_detailstag with valueval.- Parameters:
- Return type:
- classmethod export_members_report_fail_details(val)
Create an instance of this class set to the
export_members_report_fail_detailstag with valueval.- Parameters:
- Return type:
- classmethod extended_version_history_change_policy_details(val)
Create an instance of this class set to the
extended_version_history_change_policy_detailstag with valueval.- Parameters:
- Return type:
- classmethod external_drive_backup_eligibility_status_checked_details(val)
Create an instance of this class set to the
external_drive_backup_eligibility_status_checked_detailstag with valueval.- Parameters:
- Return type:
- classmethod external_drive_backup_policy_changed_details(val)
Create an instance of this class set to the
external_drive_backup_policy_changed_detailstag with valueval.- Parameters:
- Return type:
- classmethod external_drive_backup_status_changed_details(val)
Create an instance of this class set to the
external_drive_backup_status_changed_detailstag with valueval.- Parameters:
- Return type:
- classmethod external_sharing_create_report_details(val)
Create an instance of this class set to the
external_sharing_create_report_detailstag with valueval.- Parameters:
- Return type:
- classmethod external_sharing_report_failed_details(val)
Create an instance of this class set to the
external_sharing_report_failed_detailstag with valueval.- Parameters:
- Return type:
- classmethod file_add_comment_details(val)
Create an instance of this class set to the
file_add_comment_detailstag with valueval.- Parameters:
val (FileAddCommentDetails)
- Return type:
- classmethod file_add_details(val)
Create an instance of this class set to the
file_add_detailstag with valueval.- Parameters:
val (FileAddDetails)
- Return type:
- classmethod file_add_from_automation_details(val)
Create an instance of this class set to the
file_add_from_automation_detailstag with valueval.- Parameters:
- Return type:
- classmethod file_change_comment_subscription_details(val)
Create an instance of this class set to the
file_change_comment_subscription_detailstag with valueval.- Parameters:
- Return type:
- classmethod file_comments_change_policy_details(val)
Create an instance of this class set to the
file_comments_change_policy_detailstag with valueval.- Parameters:
- Return type:
- classmethod file_copy_details(val)
Create an instance of this class set to the
file_copy_detailstag with valueval.- Parameters:
val (FileCopyDetails)
- Return type:
- classmethod file_delete_comment_details(val)
Create an instance of this class set to the
file_delete_comment_detailstag with valueval.- Parameters:
val (FileDeleteCommentDetails)
- Return type:
- classmethod file_delete_details(val)
Create an instance of this class set to the
file_delete_detailstag with valueval.- Parameters:
val (FileDeleteDetails)
- Return type:
- classmethod file_download_details(val)
Create an instance of this class set to the
file_download_detailstag with valueval.- Parameters:
val (FileDownloadDetails)
- Return type:
- classmethod file_edit_comment_details(val)
Create an instance of this class set to the
file_edit_comment_detailstag with valueval.- Parameters:
val (FileEditCommentDetails)
- Return type:
- classmethod file_edit_details(val)
Create an instance of this class set to the
file_edit_detailstag with valueval.- Parameters:
val (FileEditDetails)
- Return type:
- classmethod file_get_copy_reference_details(val)
Create an instance of this class set to the
file_get_copy_reference_detailstag with valueval.- Parameters:
- Return type:
- classmethod file_like_comment_details(val)
Create an instance of this class set to the
file_like_comment_detailstag with valueval.- Parameters:
val (FileLikeCommentDetails)
- Return type:
- classmethod file_locking_lock_status_changed_details(val)
Create an instance of this class set to the
file_locking_lock_status_changed_detailstag with valueval.- Parameters:
- Return type:
- classmethod file_locking_policy_changed_details(val)
Create an instance of this class set to the
file_locking_policy_changed_detailstag with valueval.- Parameters:
- Return type:
- classmethod file_move_details(val)
Create an instance of this class set to the
file_move_detailstag with valueval.- Parameters:
val (FileMoveDetails)
- Return type:
- classmethod file_permanently_delete_details(val)
Create an instance of this class set to the
file_permanently_delete_detailstag with valueval.- Parameters:
- Return type:
- classmethod file_preview_details(val)
Create an instance of this class set to the
file_preview_detailstag with valueval.- Parameters:
val (FilePreviewDetails)
- Return type:
- classmethod file_provider_migration_policy_changed_details(val)
Create an instance of this class set to the
file_provider_migration_policy_changed_detailstag with valueval.- Parameters:
- Return type:
- classmethod file_rename_details(val)
Create an instance of this class set to the
file_rename_detailstag with valueval.- Parameters:
val (FileRenameDetails)
- Return type:
- classmethod file_request_auto_close_details(val)
Create an instance of this class set to the
file_request_auto_close_detailstag with valueval.- Parameters:
- Return type:
- classmethod file_request_change_details(val)
Create an instance of this class set to the
file_request_change_detailstag with valueval.- Parameters:
val (FileRequestChangeDetails)
- Return type:
- classmethod file_request_close_details(val)
Create an instance of this class set to the
file_request_close_detailstag with valueval.- Parameters:
val (FileRequestCloseDetails)
- Return type:
- classmethod file_request_create_details(val)
Create an instance of this class set to the
file_request_create_detailstag with valueval.- Parameters:
val (FileRequestCreateDetails)
- Return type:
- classmethod file_request_delete_details(val)
Create an instance of this class set to the
file_request_delete_detailstag with valueval.- Parameters:
val (FileRequestDeleteDetails)
- Return type:
- classmethod file_request_receive_file_details(val)
Create an instance of this class set to the
file_request_receive_file_detailstag with valueval.- Parameters:
- Return type:
- classmethod file_requests_change_policy_details(val)
Create an instance of this class set to the
file_requests_change_policy_detailstag with valueval.- Parameters:
- Return type:
- classmethod file_requests_emails_enabled_details(val)
Create an instance of this class set to the
file_requests_emails_enabled_detailstag with valueval.- Parameters:
- Return type:
- classmethod file_requests_emails_restricted_to_team_only_details(val)
Create an instance of this class set to the
file_requests_emails_restricted_to_team_only_detailstag with valueval.- Parameters:
- Return type:
- classmethod file_resolve_comment_details(val)
Create an instance of this class set to the
file_resolve_comment_detailstag with valueval.- Parameters:
- Return type:
- classmethod file_restore_details(val)
Create an instance of this class set to the
file_restore_detailstag with valueval.- Parameters:
val (FileRestoreDetails)
- Return type:
- classmethod file_revert_details(val)
Create an instance of this class set to the
file_revert_detailstag with valueval.- Parameters:
val (FileRevertDetails)
- Return type:
- classmethod file_rollback_changes_details(val)
Create an instance of this class set to the
file_rollback_changes_detailstag with valueval.- Parameters:
- Return type:
- classmethod file_save_copy_reference_details(val)
Create an instance of this class set to the
file_save_copy_reference_detailstag with valueval.- Parameters:
- Return type:
- classmethod file_transfers_file_add_details(val)
Create an instance of this class set to the
file_transfers_file_add_detailstag with valueval.- Parameters:
- Return type:
- classmethod file_transfers_policy_changed_details(val)
Create an instance of this class set to the
file_transfers_policy_changed_detailstag with valueval.- Parameters:
- Return type:
- classmethod file_transfers_transfer_delete_details(val)
Create an instance of this class set to the
file_transfers_transfer_delete_detailstag with valueval.- Parameters:
- Return type:
- classmethod file_transfers_transfer_download_details(val)
Create an instance of this class set to the
file_transfers_transfer_download_detailstag with valueval.- Parameters:
- Return type:
- classmethod file_transfers_transfer_send_details(val)
Create an instance of this class set to the
file_transfers_transfer_send_detailstag with valueval.- Parameters:
- Return type:
- classmethod file_transfers_transfer_view_details(val)
Create an instance of this class set to the
file_transfers_transfer_view_detailstag with valueval.- Parameters:
- Return type:
- classmethod file_unlike_comment_details(val)
Create an instance of this class set to the
file_unlike_comment_detailstag with valueval.- Parameters:
val (FileUnlikeCommentDetails)
- Return type:
- classmethod file_unresolve_comment_details(val)
Create an instance of this class set to the
file_unresolve_comment_detailstag with valueval.- Parameters:
- Return type:
- classmethod flexible_file_names_policy_changed_details(val)
Create an instance of this class set to the
flexible_file_names_policy_changed_detailstag with valueval.- Parameters:
- Return type:
- classmethod folder_link_restriction_policy_changed_details(val)
Create an instance of this class set to the
folder_link_restriction_policy_changed_detailstag with valueval.- Parameters:
- Return type:
- classmethod folder_overview_description_changed_details(val)
Create an instance of this class set to the
folder_overview_description_changed_detailstag with valueval.- Parameters:
- Return type:
- classmethod folder_overview_item_pinned_details(val)
Create an instance of this class set to the
folder_overview_item_pinned_detailstag with valueval.- Parameters:
- Return type:
- classmethod folder_overview_item_unpinned_details(val)
Create an instance of this class set to the
folder_overview_item_unpinned_detailstag with valueval.- Parameters:
- Return type:
- get_account_capture_change_availability_details()
Only call this if
is_account_capture_change_availability_details()is true.- Return type:
- get_account_capture_change_policy_details()
Only call this if
is_account_capture_change_policy_details()is true.- Return type:
- get_account_capture_migrate_account_details()
Only call this if
is_account_capture_migrate_account_details()is true.- Return type:
- get_account_capture_notification_emails_sent_details()
Only call this if
is_account_capture_notification_emails_sent_details()is true.- Return type:
- get_account_capture_relinquish_account_details()
Only call this if
is_account_capture_relinquish_account_details()is true.- Return type:
- get_account_lock_or_unlocked_details()
Only call this if
is_account_lock_or_unlocked_details()is true.- Return type:
- get_addon_assigned_details()
Only call this if
is_addon_assigned_details()is true.- Return type:
- get_addon_removed_details()
Only call this if
is_addon_removed_details()is true.- Return type:
- get_admin_alerting_alert_state_changed_details()
Only call this if
is_admin_alerting_alert_state_changed_details()is true.- Return type:
- get_admin_alerting_changed_alert_config_details()
Only call this if
is_admin_alerting_changed_alert_config_details()is true.- Return type:
- get_admin_alerting_triggered_alert_details()
Only call this if
is_admin_alerting_triggered_alert_details()is true.- Return type:
- get_admin_email_reminders_changed_details()
Only call this if
is_admin_email_reminders_changed_details()is true.- Return type:
- get_ai_third_party_sharing_dropbox_base_policy_changed_details()
Only call this if
is_ai_third_party_sharing_dropbox_base_policy_changed_details()is true.- Return type:
- get_allow_download_disabled_details()
Only call this if
is_allow_download_disabled_details()is true.- Return type:
- get_allow_download_enabled_details()
Only call this if
is_allow_download_enabled_details()is true.- Return type:
- get_app_blocked_by_permissions_details()
Only call this if
is_app_blocked_by_permissions_details()is true.- Return type:
- get_app_link_team_details()
Only call this if
is_app_link_team_details()is true.- Return type:
- get_app_link_user_details()
Only call this if
is_app_link_user_details()is true.- Return type:
- get_app_permissions_changed_details()
Only call this if
is_app_permissions_changed_details()is true.- Return type:
- get_app_unlink_team_details()
Only call this if
is_app_unlink_team_details()is true.- Return type:
- get_app_unlink_user_details()
Only call this if
is_app_unlink_user_details()is true.- Return type:
- get_apple_login_change_policy_details()
Only call this if
is_apple_login_change_policy_details()is true.- Return type:
- get_apply_naming_convention_details()
Only call this if
is_apply_naming_convention_details()is true.- Return type:
- get_backup_admin_invitation_sent_details()
Only call this if
is_backup_admin_invitation_sent_details()is true.- Return type:
- get_backup_invitation_opened_details()
Only call this if
is_backup_invitation_opened_details()is true.- Return type:
- get_binder_add_page_details()
Only call this if
is_binder_add_page_details()is true.- Return type:
- get_binder_add_section_details()
Only call this if
is_binder_add_section_details()is true.- Return type:
- get_binder_remove_page_details()
Only call this if
is_binder_remove_page_details()is true.- Return type:
- get_binder_remove_section_details()
Only call this if
is_binder_remove_section_details()is true.- Return type:
- get_binder_rename_page_details()
Only call this if
is_binder_rename_page_details()is true.- Return type:
- get_binder_rename_section_details()
Only call this if
is_binder_rename_section_details()is true.- Return type:
- get_binder_reorder_page_details()
Only call this if
is_binder_reorder_page_details()is true.- Return type:
- get_binder_reorder_section_details()
Only call this if
is_binder_reorder_section_details()is true.- Return type:
- get_camera_uploads_policy_changed_details()
Only call this if
is_camera_uploads_policy_changed_details()is true.- Return type:
- get_capture_team_space_policy_changed_details()
Only call this if
is_capture_team_space_policy_changed_details()is true.- Return type:
- get_capture_transcript_policy_changed_details()
Only call this if
is_capture_transcript_policy_changed_details()is true.- Return type:
- get_changed_enterprise_admin_role_details()
Only call this if
is_changed_enterprise_admin_role_details()is true.- Return type:
- get_changed_enterprise_connected_team_status_details()
Only call this if
is_changed_enterprise_connected_team_status_details()is true.- Return type:
- get_classification_change_policy_details()
Only call this if
is_classification_change_policy_details()is true.- Return type:
- get_classification_create_report_details()
Only call this if
is_classification_create_report_details()is true.- Return type:
- get_classification_create_report_fail_details()
Only call this if
is_classification_create_report_fail_details()is true.- Return type:
Only call this if
is_collection_share_details()is true.- Return type:
- get_computer_backup_policy_changed_details()
Only call this if
is_computer_backup_policy_changed_details()is true.- Return type:
- get_content_administration_policy_changed_details()
Only call this if
is_content_administration_policy_changed_details()is true.- Return type:
- get_content_deletion_protection_change_policy_details()
Only call this if
is_content_deletion_protection_change_policy_details()is true.- Return type:
- get_create_folder_details()
Only call this if
is_create_folder_details()is true.- Return type:
- get_create_team_invite_link_details()
Only call this if
is_create_team_invite_link_details()is true.- Return type:
- get_dash_added_comment_to_stack_details()
Only call this if
is_dash_added_comment_to_stack_details()is true.- Return type:
- get_dash_added_connector_details()
Only call this if
is_dash_added_connector_details()is true.- Return type:
- get_dash_added_link_to_stack_details()
Only call this if
is_dash_added_link_to_stack_details()is true.- Return type:
- get_dash_added_team_email_domain_allowlist_details()
Only call this if
is_dash_added_team_email_domain_allowlist_details()is true.- Return type:
- get_dash_admin_added_org_wide_connector_details()
Only call this if
is_dash_admin_added_org_wide_connector_details()is true.- Return type:
- get_dash_admin_disabled_connector_details()
Only call this if
is_dash_admin_disabled_connector_details()is true.- Return type:
- get_dash_admin_enabled_connector_details()
Only call this if
is_dash_admin_enabled_connector_details()is true.- Return type:
- get_dash_admin_removed_org_wide_connector_details()
Only call this if
is_dash_admin_removed_org_wide_connector_details()is true.- Return type:
- get_dash_archived_stack_details()
Only call this if
is_dash_archived_stack_details()is true.- Return type:
Only call this if
is_dash_changed_audience_of_shared_link_to_stack_details()is true.- Return type:
- get_dash_cloned_stack_details()
Only call this if
is_dash_cloned_stack_details()is true.- Return type:
- get_dash_connector_tools_call_details()
Only call this if
is_dash_connector_tools_call_details()is true.- Return type:
- get_dash_created_stack_details()
Only call this if
is_dash_created_stack_details()is true.- Return type:
- get_dash_deleted_comment_from_stack_details()
Only call this if
is_dash_deleted_comment_from_stack_details()is true.- Return type:
- get_dash_deleted_stack_details()
Only call this if
is_dash_deleted_stack_details()is true.- Return type:
- get_dash_edited_comment_in_stack_details()
Only call this if
is_dash_edited_comment_in_stack_details()is true.- Return type:
- get_dash_external_sharing_policy_changed_details()
Only call this if
is_dash_external_sharing_policy_changed_details()is true.- Return type:
- get_dash_external_user_opened_stack_details()
Only call this if
is_dash_external_user_opened_stack_details()is true.- Return type:
- get_dash_first_launched_desktop_details()
Only call this if
is_dash_first_launched_desktop_details()is true.- Return type:
- get_dash_first_launched_extension_details()
Only call this if
is_dash_first_launched_extension_details()is true.- Return type:
- get_dash_first_launched_web_start_page_details()
Only call this if
is_dash_first_launched_web_start_page_details()is true.- Return type:
Only call this if
is_dash_opened_shared_link_to_stack_details()is true.- Return type:
- get_dash_opened_stack_details()
Only call this if
is_dash_opened_stack_details()is true.- Return type:
- get_dash_preview_opt_out_status_changed_details()
Only call this if
is_dash_preview_opt_out_status_changed_details()is true.- Return type:
- get_dash_removed_connector_details()
Only call this if
is_dash_removed_connector_details()is true.- Return type:
- get_dash_removed_link_from_stack_details()
Only call this if
is_dash_removed_link_from_stack_details()is true.- Return type:
Only call this if
is_dash_removed_shared_link_to_stack_details()is true.- Return type:
- get_dash_removed_team_email_domain_allowlist_details()
Only call this if
is_dash_removed_team_email_domain_allowlist_details()is true.- Return type:
- get_dash_renamed_stack_details()
Only call this if
is_dash_renamed_stack_details()is true.- Return type:
Only call this if
is_dash_shared_link_to_stack_details()is true.- Return type:
- get_dash_unarchived_stack_details()
Only call this if
is_dash_unarchived_stack_details()is true.- Return type:
- get_dash_viewed_company_stack_details()
Only call this if
is_dash_viewed_company_stack_details()is true.- Return type:
- get_dash_viewed_external_ai_activity_report_details()
Only call this if
is_dash_viewed_external_ai_activity_report_details()is true.- Return type:
- get_data_placement_restriction_change_policy_details()
Only call this if
is_data_placement_restriction_change_policy_details()is true.- Return type:
- get_data_placement_restriction_satisfy_policy_details()
Only call this if
is_data_placement_restriction_satisfy_policy_details()is true.- Return type:
- get_data_residency_migration_request_successful_details()
Only call this if
is_data_residency_migration_request_successful_details()is true.- Return type:
- get_data_residency_migration_request_unsuccessful_details()
Only call this if
is_data_residency_migration_request_unsuccessful_details()is true.- Return type:
- get_delete_team_invite_link_details()
Only call this if
is_delete_team_invite_link_details()is true.- Return type:
- get_device_approvals_add_exception_details()
Only call this if
is_device_approvals_add_exception_details()is true.- Return type:
- get_device_approvals_change_desktop_policy_details()
Only call this if
is_device_approvals_change_desktop_policy_details()is true.- Return type:
- get_device_approvals_change_mobile_policy_details()
Only call this if
is_device_approvals_change_mobile_policy_details()is true.- Return type:
- get_device_approvals_change_overage_action_details()
Only call this if
is_device_approvals_change_overage_action_details()is true.- Return type:
- get_device_approvals_change_unlink_action_details()
Only call this if
is_device_approvals_change_unlink_action_details()is true.- Return type:
- get_device_approvals_remove_exception_details()
Only call this if
is_device_approvals_remove_exception_details()is true.- Return type:
- get_device_change_ip_desktop_details()
Only call this if
is_device_change_ip_desktop_details()is true.- Return type:
- get_device_change_ip_mobile_details()
Only call this if
is_device_change_ip_mobile_details()is true.- Return type:
- get_device_change_ip_web_details()
Only call this if
is_device_change_ip_web_details()is true.- Return type:
- get_device_delete_on_unlink_fail_details()
Only call this if
is_device_delete_on_unlink_fail_details()is true.- Return type:
- get_device_delete_on_unlink_success_details()
Only call this if
is_device_delete_on_unlink_success_details()is true.- Return type:
- get_device_link_fail_details()
Only call this if
is_device_link_fail_details()is true.- Return type:
- get_device_link_success_details()
Only call this if
is_device_link_success_details()is true.- Return type:
- get_device_management_disabled_details()
Only call this if
is_device_management_disabled_details()is true.- Return type:
- get_device_management_enabled_details()
Only call this if
is_device_management_enabled_details()is true.- Return type:
- get_device_sync_backup_status_changed_details()
Only call this if
is_device_sync_backup_status_changed_details()is true.- Return type:
- get_device_unlink_details()
Only call this if
is_device_unlink_details()is true.- Return type:
- get_directory_restrictions_add_members_details()
Only call this if
is_directory_restrictions_add_members_details()is true.- Return type:
- get_directory_restrictions_remove_members_details()
Only call this if
is_directory_restrictions_remove_members_details()is true.- Return type:
- get_disabled_domain_invites_details()
Only call this if
is_disabled_domain_invites_details()is true.- Return type:
- get_domain_invites_approve_request_to_join_team_details()
Only call this if
is_domain_invites_approve_request_to_join_team_details()is true.- Return type:
- get_domain_invites_decline_request_to_join_team_details()
Only call this if
is_domain_invites_decline_request_to_join_team_details()is true.- Return type:
- get_domain_invites_email_existing_users_details()
Only call this if
is_domain_invites_email_existing_users_details()is true.- Return type:
- get_domain_invites_request_to_join_team_details()
Only call this if
is_domain_invites_request_to_join_team_details()is true.- Return type:
- get_domain_invites_set_invite_new_user_pref_to_no_details()
Only call this if
is_domain_invites_set_invite_new_user_pref_to_no_details()is true.- Return type:
- get_domain_invites_set_invite_new_user_pref_to_yes_details()
Only call this if
is_domain_invites_set_invite_new_user_pref_to_yes_details()is true.- Return type:
- get_domain_verification_add_domain_fail_details()
Only call this if
is_domain_verification_add_domain_fail_details()is true.- Return type:
- get_domain_verification_add_domain_success_details()
Only call this if
is_domain_verification_add_domain_success_details()is true.- Return type:
- get_domain_verification_remove_domain_details()
Only call this if
is_domain_verification_remove_domain_details()is true.- Return type:
- get_dropbox_passwords_exported_details()
Only call this if
is_dropbox_passwords_exported_details()is true.- Return type:
- get_dropbox_passwords_new_device_enrolled_details()
Only call this if
is_dropbox_passwords_new_device_enrolled_details()is true.- Return type:
- get_dropbox_passwords_policy_changed_details()
Only call this if
is_dropbox_passwords_policy_changed_details()is true.- Return type:
- get_email_ingest_policy_changed_details()
Only call this if
is_email_ingest_policy_changed_details()is true.- Return type:
- get_email_ingest_receive_file_details()
Only call this if
is_email_ingest_receive_file_details()is true.- Return type:
- get_emm_add_exception_details()
Only call this if
is_emm_add_exception_details()is true.- Return type:
- get_emm_change_policy_details()
Only call this if
is_emm_change_policy_details()is true.- Return type:
- get_emm_create_exceptions_report_details()
Only call this if
is_emm_create_exceptions_report_details()is true.- Return type:
- get_emm_create_usage_report_details()
Only call this if
is_emm_create_usage_report_details()is true.- Return type:
- get_emm_error_details()
Only call this if
is_emm_error_details()is true.- Return type:
- get_emm_refresh_auth_token_details()
Only call this if
is_emm_refresh_auth_token_details()is true.- Return type:
- get_emm_remove_exception_details()
Only call this if
is_emm_remove_exception_details()is true.- Return type:
- get_enabled_domain_invites_details()
Only call this if
is_enabled_domain_invites_details()is true.- Return type:
- get_encrypted_folder_cancel_team_key_rotation_details()
Only call this if
is_encrypted_folder_cancel_team_key_rotation_details()is true.- Return type:
- get_encrypted_folder_enroll_backup_key_details()
Only call this if
is_encrypted_folder_enroll_backup_key_details()is true.- Return type:
- get_encrypted_folder_enroll_client_details()
Only call this if
is_encrypted_folder_enroll_client_details()is true.- Return type:
- get_encrypted_folder_enroll_team_details()
Only call this if
is_encrypted_folder_enroll_team_details()is true.- Return type:
- get_encrypted_folder_finish_team_unenrollment_details()
Only call this if
is_encrypted_folder_finish_team_unenrollment_details()is true.- Return type:
- get_encrypted_folder_init_team_key_rotation_details()
Only call this if
is_encrypted_folder_init_team_key_rotation_details()is true.- Return type:
- get_encrypted_folder_init_team_unenrollment_details()
Only call this if
is_encrypted_folder_init_team_unenrollment_details()is true.- Return type:
- get_encrypted_folder_remove_backup_key_details()
Only call this if
is_encrypted_folder_remove_backup_key_details()is true.- Return type:
- get_encrypted_folder_rotate_team_key_details()
Only call this if
is_encrypted_folder_rotate_team_key_details()is true.- Return type:
- get_encrypted_folder_unenroll_client_details()
Only call this if
is_encrypted_folder_unenroll_client_details()is true.- Return type:
- get_ended_enterprise_admin_session_deprecated_details()
Only call this if
is_ended_enterprise_admin_session_deprecated_details()is true.- Return type:
- get_ended_enterprise_admin_session_details()
Only call this if
is_ended_enterprise_admin_session_details()is true.- Return type:
- get_enterprise_settings_locking_details()
Only call this if
is_enterprise_settings_locking_details()is true.- Return type:
- get_export_members_report_details()
Only call this if
is_export_members_report_details()is true.- Return type:
- get_export_members_report_fail_details()
Only call this if
is_export_members_report_fail_details()is true.- Return type:
- get_extended_version_history_change_policy_details()
Only call this if
is_extended_version_history_change_policy_details()is true.- Return type:
- get_external_drive_backup_eligibility_status_checked_details()
Only call this if
is_external_drive_backup_eligibility_status_checked_details()is true.- Return type:
- get_external_drive_backup_policy_changed_details()
Only call this if
is_external_drive_backup_policy_changed_details()is true.- Return type:
- get_external_drive_backup_status_changed_details()
Only call this if
is_external_drive_backup_status_changed_details()is true.- Return type:
- get_external_sharing_create_report_details()
Only call this if
is_external_sharing_create_report_details()is true.- Return type:
- get_external_sharing_report_failed_details()
Only call this if
is_external_sharing_report_failed_details()is true.- Return type:
- get_file_add_comment_details()
Only call this if
is_file_add_comment_details()is true.- Return type:
- get_file_add_details()
Only call this if
is_file_add_details()is true.- Return type:
- get_file_add_from_automation_details()
Only call this if
is_file_add_from_automation_details()is true.- Return type:
- get_file_change_comment_subscription_details()
Only call this if
is_file_change_comment_subscription_details()is true.- Return type:
- get_file_comments_change_policy_details()
Only call this if
is_file_comments_change_policy_details()is true.- Return type:
- get_file_copy_details()
Only call this if
is_file_copy_details()is true.- Return type:
- get_file_delete_comment_details()
Only call this if
is_file_delete_comment_details()is true.- Return type:
- get_file_delete_details()
Only call this if
is_file_delete_details()is true.- Return type:
- get_file_download_details()
Only call this if
is_file_download_details()is true.- Return type:
- get_file_edit_comment_details()
Only call this if
is_file_edit_comment_details()is true.- Return type:
- get_file_edit_details()
Only call this if
is_file_edit_details()is true.- Return type:
- get_file_get_copy_reference_details()
Only call this if
is_file_get_copy_reference_details()is true.- Return type:
- get_file_like_comment_details()
Only call this if
is_file_like_comment_details()is true.- Return type:
- get_file_locking_lock_status_changed_details()
Only call this if
is_file_locking_lock_status_changed_details()is true.- Return type:
- get_file_locking_policy_changed_details()
Only call this if
is_file_locking_policy_changed_details()is true.- Return type:
- get_file_move_details()
Only call this if
is_file_move_details()is true.- Return type:
- get_file_permanently_delete_details()
Only call this if
is_file_permanently_delete_details()is true.- Return type:
- get_file_preview_details()
Only call this if
is_file_preview_details()is true.- Return type:
- get_file_provider_migration_policy_changed_details()
Only call this if
is_file_provider_migration_policy_changed_details()is true.- Return type:
- get_file_rename_details()
Only call this if
is_file_rename_details()is true.- Return type:
- get_file_request_auto_close_details()
Only call this if
is_file_request_auto_close_details()is true.- Return type:
- get_file_request_change_details()
Only call this if
is_file_request_change_details()is true.- Return type:
- get_file_request_close_details()
Only call this if
is_file_request_close_details()is true.- Return type:
- get_file_request_create_details()
Only call this if
is_file_request_create_details()is true.- Return type:
- get_file_request_delete_details()
Only call this if
is_file_request_delete_details()is true.- Return type:
- get_file_request_receive_file_details()
Only call this if
is_file_request_receive_file_details()is true.- Return type:
- get_file_requests_change_policy_details()
Only call this if
is_file_requests_change_policy_details()is true.- Return type:
- get_file_requests_emails_enabled_details()
Only call this if
is_file_requests_emails_enabled_details()is true.- Return type:
- get_file_requests_emails_restricted_to_team_only_details()
Only call this if
is_file_requests_emails_restricted_to_team_only_details()is true.- Return type:
- get_file_resolve_comment_details()
Only call this if
is_file_resolve_comment_details()is true.- Return type:
- get_file_restore_details()
Only call this if
is_file_restore_details()is true.- Return type:
- get_file_revert_details()
Only call this if
is_file_revert_details()is true.- Return type:
- get_file_rollback_changes_details()
Only call this if
is_file_rollback_changes_details()is true.- Return type:
- get_file_save_copy_reference_details()
Only call this if
is_file_save_copy_reference_details()is true.- Return type:
- get_file_transfers_file_add_details()
Only call this if
is_file_transfers_file_add_details()is true.- Return type:
- get_file_transfers_policy_changed_details()
Only call this if
is_file_transfers_policy_changed_details()is true.- Return type:
- get_file_transfers_transfer_delete_details()
Only call this if
is_file_transfers_transfer_delete_details()is true.- Return type:
- get_file_transfers_transfer_download_details()
Only call this if
is_file_transfers_transfer_download_details()is true.- Return type:
- get_file_transfers_transfer_send_details()
Only call this if
is_file_transfers_transfer_send_details()is true.- Return type:
- get_file_transfers_transfer_view_details()
Only call this if
is_file_transfers_transfer_view_details()is true.- Return type:
- get_file_unlike_comment_details()
Only call this if
is_file_unlike_comment_details()is true.- Return type:
- get_file_unresolve_comment_details()
Only call this if
is_file_unresolve_comment_details()is true.- Return type:
- get_flexible_file_names_policy_changed_details()
Only call this if
is_flexible_file_names_policy_changed_details()is true.- Return type:
- get_folder_link_restriction_policy_changed_details()
Only call this if
is_folder_link_restriction_policy_changed_details()is true.- Return type:
- get_folder_overview_description_changed_details()
Only call this if
is_folder_overview_description_changed_details()is true.- Return type:
- get_folder_overview_item_pinned_details()
Only call this if
is_folder_overview_item_pinned_details()is true.- Return type:
- get_folder_overview_item_unpinned_details()
Only call this if
is_folder_overview_item_unpinned_details()is true.- Return type:
- get_google_sso_change_policy_details()
Only call this if
is_google_sso_change_policy_details()is true.- Return type:
- get_governance_policy_add_folder_failed_details()
Only call this if
is_governance_policy_add_folder_failed_details()is true.- Return type:
- get_governance_policy_add_folders_details()
Only call this if
is_governance_policy_add_folders_details()is true.- Return type:
- get_governance_policy_content_disposed_details()
Only call this if
is_governance_policy_content_disposed_details()is true.- Return type:
- get_governance_policy_create_details()
Only call this if
is_governance_policy_create_details()is true.- Return type:
- get_governance_policy_delete_details()
Only call this if
is_governance_policy_delete_details()is true.- Return type:
- get_governance_policy_edit_details_details()
Only call this if
is_governance_policy_edit_details_details()is true.- Return type:
- get_governance_policy_edit_duration_details()
Only call this if
is_governance_policy_edit_duration_details()is true.- Return type:
- get_governance_policy_export_created_details()
Only call this if
is_governance_policy_export_created_details()is true.- Return type:
- get_governance_policy_export_removed_details()
Only call this if
is_governance_policy_export_removed_details()is true.- Return type:
- get_governance_policy_remove_folders_details()
Only call this if
is_governance_policy_remove_folders_details()is true.- Return type:
- get_governance_policy_report_created_details()
Only call this if
is_governance_policy_report_created_details()is true.- Return type:
- get_governance_policy_zip_part_downloaded_details()
Only call this if
is_governance_policy_zip_part_downloaded_details()is true.- Return type:
- get_group_add_external_id_details()
Only call this if
is_group_add_external_id_details()is true.- Return type:
- get_group_add_member_details()
Only call this if
is_group_add_member_details()is true.- Return type:
- get_group_change_external_id_details()
Only call this if
is_group_change_external_id_details()is true.- Return type:
- get_group_change_management_type_details()
Only call this if
is_group_change_management_type_details()is true.- Return type:
- get_group_change_member_role_details()
Only call this if
is_group_change_member_role_details()is true.- Return type:
- get_group_create_details()
Only call this if
is_group_create_details()is true.- Return type:
- get_group_delete_details()
Only call this if
is_group_delete_details()is true.- Return type:
- get_group_description_updated_details()
Only call this if
is_group_description_updated_details()is true.- Return type:
- get_group_external_sharing_setting_override_changed_details()
Only call this if
is_group_external_sharing_setting_override_changed_details()is true.- Return type:
- get_group_join_policy_updated_details()
Only call this if
is_group_join_policy_updated_details()is true.- Return type:
- get_group_moved_details()
Only call this if
is_group_moved_details()is true.- Return type:
- get_group_remove_external_id_details()
Only call this if
is_group_remove_external_id_details()is true.- Return type:
- get_group_remove_member_details()
Only call this if
is_group_remove_member_details()is true.- Return type:
- get_group_rename_details()
Only call this if
is_group_rename_details()is true.- Return type:
- get_group_user_management_change_policy_details()
Only call this if
is_group_user_management_change_policy_details()is true.- Return type:
- get_guest_admin_change_status_details()
Only call this if
is_guest_admin_change_status_details()is true.- Return type:
- get_guest_admin_signed_in_via_trusted_teams_details()
Only call this if
is_guest_admin_signed_in_via_trusted_teams_details()is true.- Return type:
- get_guest_admin_signed_out_via_trusted_teams_details()
Only call this if
is_guest_admin_signed_out_via_trusted_teams_details()is true.- Return type:
- get_integration_connected_details()
Only call this if
is_integration_connected_details()is true.- Return type:
- get_integration_disconnected_details()
Only call this if
is_integration_disconnected_details()is true.- Return type:
- get_integration_policy_changed_details()
Only call this if
is_integration_policy_changed_details()is true.- Return type:
- get_invite_acceptance_email_policy_changed_details()
Only call this if
is_invite_acceptance_email_policy_changed_details()is true.- Return type:
- get_legal_holds_activate_a_hold_details()
Only call this if
is_legal_holds_activate_a_hold_details()is true.- Return type:
- get_legal_holds_add_members_details()
Only call this if
is_legal_holds_add_members_details()is true.- Return type:
- get_legal_holds_change_hold_details_details()
Only call this if
is_legal_holds_change_hold_details_details()is true.- Return type:
- get_legal_holds_change_hold_name_details()
Only call this if
is_legal_holds_change_hold_name_details()is true.- Return type:
- get_legal_holds_export_a_hold_details()
Only call this if
is_legal_holds_export_a_hold_details()is true.- Return type:
- get_legal_holds_export_cancelled_details()
Only call this if
is_legal_holds_export_cancelled_details()is true.- Return type:
- get_legal_holds_export_downloaded_details()
Only call this if
is_legal_holds_export_downloaded_details()is true.- Return type:
- get_legal_holds_export_removed_details()
Only call this if
is_legal_holds_export_removed_details()is true.- Return type:
- get_legal_holds_release_a_hold_details()
Only call this if
is_legal_holds_release_a_hold_details()is true.- Return type:
- get_legal_holds_remove_members_details()
Only call this if
is_legal_holds_remove_members_details()is true.- Return type:
- get_legal_holds_report_a_hold_details()
Only call this if
is_legal_holds_report_a_hold_details()is true.- Return type:
- get_login_fail_details()
Only call this if
is_login_fail_details()is true.- Return type:
- get_login_success_details()
Only call this if
is_login_success_details()is true.- Return type:
- get_logout_details()
Only call this if
is_logout_details()is true.- Return type:
- get_media_hub_adding_people_policy_changed_details()
Only call this if
is_media_hub_adding_people_policy_changed_details()is true.- Return type:
- get_media_hub_download_policy_changed_details()
Only call this if
is_media_hub_download_policy_changed_details()is true.- Return type:
- get_media_hub_file_downloaded_details()
Only call this if
is_media_hub_file_downloaded_details()is true.- Return type:
- get_media_hub_link_sharing_policy_changed_details()
Only call this if
is_media_hub_link_sharing_policy_changed_details()is true.- Return type:
- get_media_hub_project_team_add_details()
Only call this if
is_media_hub_project_team_add_details()is true.- Return type:
- get_media_hub_project_team_delete_details()
Only call this if
is_media_hub_project_team_delete_details()is true.- Return type:
- get_media_hub_project_team_role_changed_details()
Only call this if
is_media_hub_project_team_role_changed_details()is true.- Return type:
Only call this if
is_media_hub_shared_link_audience_changed_details()is true.- Return type:
Only call this if
is_media_hub_shared_link_created_details()is true.- Return type:
Only call this if
is_media_hub_shared_link_download_setting_changed_details()is true.- Return type:
Only call this if
is_media_hub_shared_link_revoked_details()is true.- Return type:
- get_member_access_details_create_report_details()
Only call this if
is_member_access_details_create_report_details()is true.- Return type:
- get_member_access_details_create_report_failed_details()
Only call this if
is_member_access_details_create_report_failed_details()is true.- Return type:
- get_member_add_external_id_details()
Only call this if
is_member_add_external_id_details()is true.- Return type:
- get_member_add_name_details()
Only call this if
is_member_add_name_details()is true.- Return type:
- get_member_change_admin_role_details()
Only call this if
is_member_change_admin_role_details()is true.- Return type:
- get_member_change_email_details()
Only call this if
is_member_change_email_details()is true.- Return type:
- get_member_change_external_id_details()
Only call this if
is_member_change_external_id_details()is true.- Return type:
- get_member_change_membership_type_details()
Only call this if
is_member_change_membership_type_details()is true.- Return type:
- get_member_change_name_details()
Only call this if
is_member_change_name_details()is true.- Return type:
- get_member_change_reseller_role_details()
Only call this if
is_member_change_reseller_role_details()is true.- Return type:
- get_member_change_status_details()
Only call this if
is_member_change_status_details()is true.- Return type:
- get_member_delete_manual_contacts_details()
Only call this if
is_member_delete_manual_contacts_details()is true.- Return type:
- get_member_delete_profile_photo_details()
Only call this if
is_member_delete_profile_photo_details()is true.- Return type:
- get_member_folder_contents_accessed_details()
Only call this if
is_member_folder_contents_accessed_details()is true.- Return type:
- get_member_permanently_delete_account_contents_details()
Only call this if
is_member_permanently_delete_account_contents_details()is true.- Return type:
- get_member_remove_external_id_details()
Only call this if
is_member_remove_external_id_details()is true.- Return type:
- get_member_requests_change_policy_details()
Only call this if
is_member_requests_change_policy_details()is true.- Return type:
- get_member_send_invite_policy_changed_details()
Only call this if
is_member_send_invite_policy_changed_details()is true.- Return type:
- get_member_set_profile_photo_details()
Only call this if
is_member_set_profile_photo_details()is true.- Return type:
- get_member_space_limits_add_custom_quota_details()
Only call this if
is_member_space_limits_add_custom_quota_details()is true.- Return type:
- get_member_space_limits_add_exception_details()
Only call this if
is_member_space_limits_add_exception_details()is true.- Return type:
- get_member_space_limits_change_caps_type_policy_details()
Only call this if
is_member_space_limits_change_caps_type_policy_details()is true.- Return type:
- get_member_space_limits_change_custom_quota_details()
Only call this if
is_member_space_limits_change_custom_quota_details()is true.- Return type:
- get_member_space_limits_change_policy_details()
Only call this if
is_member_space_limits_change_policy_details()is true.- Return type:
- get_member_space_limits_change_status_details()
Only call this if
is_member_space_limits_change_status_details()is true.- Return type:
- get_member_space_limits_remove_custom_quota_details()
Only call this if
is_member_space_limits_remove_custom_quota_details()is true.- Return type:
- get_member_space_limits_remove_exception_details()
Only call this if
is_member_space_limits_remove_exception_details()is true.- Return type:
- get_member_suggest_details()
Only call this if
is_member_suggest_details()is true.- Return type:
- get_member_suggestions_change_policy_details()
Only call this if
is_member_suggestions_change_policy_details()is true.- Return type:
- get_member_transfer_account_contents_details()
Only call this if
is_member_transfer_account_contents_details()is true.- Return type:
- get_microsoft_login_change_policy_details()
Only call this if
is_microsoft_login_change_policy_details()is true.- Return type:
- get_microsoft_office_addin_change_policy_details()
Only call this if
is_microsoft_office_addin_change_policy_details()is true.- Return type:
- get_missing_details()
Hints that this event was returned with missing details due to an internal error.
Only call this if
is_missing_details()is true.- Return type:
- get_multi_team_identity_policy_changed_details()
Only call this if
is_multi_team_identity_policy_changed_details()is true.- Return type:
- get_network_control_change_policy_details()
Only call this if
is_network_control_change_policy_details()is true.- Return type:
- get_no_expiration_link_gen_create_report_details()
Only call this if
is_no_expiration_link_gen_create_report_details()is true.- Return type:
- get_no_expiration_link_gen_report_failed_details()
Only call this if
is_no_expiration_link_gen_report_failed_details()is true.- Return type:
- get_no_password_link_gen_create_report_details()
Only call this if
is_no_password_link_gen_create_report_details()is true.- Return type:
- get_no_password_link_gen_report_failed_details()
Only call this if
is_no_password_link_gen_report_failed_details()is true.- Return type:
- get_no_password_link_view_create_report_details()
Only call this if
is_no_password_link_view_create_report_details()is true.- Return type:
- get_no_password_link_view_report_failed_details()
Only call this if
is_no_password_link_view_report_failed_details()is true.- Return type:
- get_note_acl_invite_only_details()
Only call this if
is_note_acl_invite_only_details()is true.- Return type:
- get_note_acl_link_details()
Only call this if
is_note_acl_link_details()is true.- Return type:
- get_note_acl_team_link_details()
Only call this if
is_note_acl_team_link_details()is true.- Return type:
Only call this if
is_note_share_receive_details()is true.- Return type:
Only call this if
is_note_shared_details()is true.- Return type:
- get_object_label_added_details()
Only call this if
is_object_label_added_details()is true.- Return type:
- get_object_label_removed_details()
Only call this if
is_object_label_removed_details()is true.- Return type:
- get_object_label_updated_value_details()
Only call this if
is_object_label_updated_value_details()is true.- Return type:
Only call this if
is_open_note_shared_details()is true.- Return type:
- get_organize_folder_with_tidy_details()
Only call this if
is_organize_folder_with_tidy_details()is true.- Return type:
- get_outdated_link_view_create_report_details()
Only call this if
is_outdated_link_view_create_report_details()is true.- Return type:
- get_outdated_link_view_report_failed_details()
Only call this if
is_outdated_link_view_report_failed_details()is true.- Return type:
- get_paper_admin_export_start_details()
Only call this if
is_paper_admin_export_start_details()is true.- Return type:
- get_paper_change_deployment_policy_details()
Only call this if
is_paper_change_deployment_policy_details()is true.- Return type:
- get_paper_change_member_link_policy_details()
Only call this if
is_paper_change_member_link_policy_details()is true.- Return type:
- get_paper_change_member_policy_details()
Only call this if
is_paper_change_member_policy_details()is true.- Return type:
- get_paper_change_policy_details()
Only call this if
is_paper_change_policy_details()is true.- Return type:
- get_paper_content_add_member_details()
Only call this if
is_paper_content_add_member_details()is true.- Return type:
- get_paper_content_add_to_folder_details()
Only call this if
is_paper_content_add_to_folder_details()is true.- Return type:
- get_paper_content_archive_details()
Only call this if
is_paper_content_archive_details()is true.- Return type:
- get_paper_content_create_details()
Only call this if
is_paper_content_create_details()is true.- Return type:
- get_paper_content_permanently_delete_details()
Only call this if
is_paper_content_permanently_delete_details()is true.- Return type:
- get_paper_content_remove_from_folder_details()
Only call this if
is_paper_content_remove_from_folder_details()is true.- Return type:
- get_paper_content_remove_member_details()
Only call this if
is_paper_content_remove_member_details()is true.- Return type:
- get_paper_content_rename_details()
Only call this if
is_paper_content_rename_details()is true.- Return type:
- get_paper_content_restore_details()
Only call this if
is_paper_content_restore_details()is true.- Return type:
- get_paper_default_folder_policy_changed_details()
Only call this if
is_paper_default_folder_policy_changed_details()is true.- Return type:
- get_paper_desktop_policy_changed_details()
Only call this if
is_paper_desktop_policy_changed_details()is true.- Return type:
- get_paper_doc_add_comment_details()
Only call this if
is_paper_doc_add_comment_details()is true.- Return type:
- get_paper_doc_change_member_role_details()
Only call this if
is_paper_doc_change_member_role_details()is true.- Return type:
- get_paper_doc_change_sharing_policy_details()
Only call this if
is_paper_doc_change_sharing_policy_details()is true.- Return type:
- get_paper_doc_change_subscription_details()
Only call this if
is_paper_doc_change_subscription_details()is true.- Return type:
- get_paper_doc_delete_comment_details()
Only call this if
is_paper_doc_delete_comment_details()is true.- Return type:
- get_paper_doc_deleted_details()
Only call this if
is_paper_doc_deleted_details()is true.- Return type:
- get_paper_doc_download_details()
Only call this if
is_paper_doc_download_details()is true.- Return type:
- get_paper_doc_edit_comment_details()
Only call this if
is_paper_doc_edit_comment_details()is true.- Return type:
- get_paper_doc_edit_details()
Only call this if
is_paper_doc_edit_details()is true.- Return type:
- get_paper_doc_followed_details()
Only call this if
is_paper_doc_followed_details()is true.- Return type:
- get_paper_doc_mention_details()
Only call this if
is_paper_doc_mention_details()is true.- Return type:
- get_paper_doc_ownership_changed_details()
Only call this if
is_paper_doc_ownership_changed_details()is true.- Return type:
- get_paper_doc_request_access_details()
Only call this if
is_paper_doc_request_access_details()is true.- Return type:
- get_paper_doc_resolve_comment_details()
Only call this if
is_paper_doc_resolve_comment_details()is true.- Return type:
- get_paper_doc_revert_details()
Only call this if
is_paper_doc_revert_details()is true.- Return type:
Only call this if
is_paper_doc_slack_share_details()is true.- Return type:
- get_paper_doc_team_invite_details()
Only call this if
is_paper_doc_team_invite_details()is true.- Return type:
- get_paper_doc_trashed_details()
Only call this if
is_paper_doc_trashed_details()is true.- Return type:
- get_paper_doc_unresolve_comment_details()
Only call this if
is_paper_doc_unresolve_comment_details()is true.- Return type:
- get_paper_doc_untrashed_details()
Only call this if
is_paper_doc_untrashed_details()is true.- Return type:
- get_paper_doc_view_details()
Only call this if
is_paper_doc_view_details()is true.- Return type:
- get_paper_enabled_users_group_addition_details()
Only call this if
is_paper_enabled_users_group_addition_details()is true.- Return type:
- get_paper_enabled_users_group_removal_details()
Only call this if
is_paper_enabled_users_group_removal_details()is true.- Return type:
- get_paper_external_view_allow_details()
Only call this if
is_paper_external_view_allow_details()is true.- Return type:
- get_paper_external_view_default_team_details()
Only call this if
is_paper_external_view_default_team_details()is true.- Return type:
- get_paper_external_view_forbid_details()
Only call this if
is_paper_external_view_forbid_details()is true.- Return type:
- get_paper_folder_change_subscription_details()
Only call this if
is_paper_folder_change_subscription_details()is true.- Return type:
- get_paper_folder_deleted_details()
Only call this if
is_paper_folder_deleted_details()is true.- Return type:
- get_paper_folder_followed_details()
Only call this if
is_paper_folder_followed_details()is true.- Return type:
- get_paper_folder_team_invite_details()
Only call this if
is_paper_folder_team_invite_details()is true.- Return type:
- get_paper_published_link_change_permission_details()
Only call this if
is_paper_published_link_change_permission_details()is true.- Return type:
- get_paper_published_link_create_details()
Only call this if
is_paper_published_link_create_details()is true.- Return type:
- get_paper_published_link_disabled_details()
Only call this if
is_paper_published_link_disabled_details()is true.- Return type:
- get_paper_published_link_view_details()
Only call this if
is_paper_published_link_view_details()is true.- Return type:
- get_passkey_add_details()
Only call this if
is_passkey_add_details()is true.- Return type:
- get_passkey_login_policy_changed_details()
Only call this if
is_passkey_login_policy_changed_details()is true.- Return type:
- get_passkey_remove_details()
Only call this if
is_passkey_remove_details()is true.- Return type:
- get_password_change_details()
Only call this if
is_password_change_details()is true.- Return type:
- get_password_reset_all_details()
Only call this if
is_password_reset_all_details()is true.- Return type:
- get_password_reset_details()
Only call this if
is_password_reset_details()is true.- Return type:
- get_password_strength_requirements_change_policy_details()
Only call this if
is_password_strength_requirements_change_policy_details()is true.- Return type:
- get_pending_secondary_email_added_details()
Only call this if
is_pending_secondary_email_added_details()is true.- Return type:
- get_permanent_delete_change_policy_details()
Only call this if
is_permanent_delete_change_policy_details()is true.- Return type:
- get_previews_ai_policy_changed_details()
Only call this if
is_previews_ai_policy_changed_details()is true.- Return type:
- get_product_assigned_to_member_details()
Only call this if
is_product_assigned_to_member_details()is true.- Return type:
- get_product_removed_from_member_details()
Only call this if
is_product_removed_from_member_details()is true.- Return type:
- get_protect_action_add_collaborator_details()
Only call this if
is_protect_action_add_collaborator_details()is true.- Return type:
- get_protect_action_add_link_details()
Only call this if
is_protect_action_add_link_details()is true.- Return type:
- get_protect_action_delete_details()
Only call this if
is_protect_action_delete_details()is true.- Return type:
- get_protect_action_export_details()
Only call this if
is_protect_action_export_details()is true.- Return type:
- get_protect_action_remove_collaborator_details()
Only call this if
is_protect_action_remove_collaborator_details()is true.- Return type:
- get_protect_action_remove_link_details()
Only call this if
is_protect_action_remove_link_details()is true.- Return type:
- get_protect_action_stop_sharing_details()
Only call this if
is_protect_action_stop_sharing_details()is true.- Return type:
- get_protect_internal_domains_changed_details()
Only call this if
is_protect_internal_domains_changed_details()is true.- Return type:
- get_protect_policy_activated_details()
Only call this if
is_protect_policy_activated_details()is true.- Return type:
- get_protect_policy_deactivated_details()
Only call this if
is_protect_policy_deactivated_details()is true.- Return type:
- get_protect_policy_scheduled_details()
Only call this if
is_protect_policy_scheduled_details()is true.- Return type:
- get_protect_policy_updated_details()
Only call this if
is_protect_policy_updated_details()is true.- Return type:
- get_protect_report_view_details()
Only call this if
is_protect_report_view_details()is true.- Return type:
- get_ransomware_alert_create_report_details()
Only call this if
is_ransomware_alert_create_report_details()is true.- Return type:
- get_ransomware_alert_create_report_failed_details()
Only call this if
is_ransomware_alert_create_report_failed_details()is true.- Return type:
- get_ransomware_restore_process_completed_details()
Only call this if
is_ransomware_restore_process_completed_details()is true.- Return type:
- get_ransomware_restore_process_started_details()
Only call this if
is_ransomware_restore_process_started_details()is true.- Return type:
- get_replay_adding_people_policy_changed_details()
Only call this if
is_replay_adding_people_policy_changed_details()is true.- Return type:
- get_replay_file_delete_details()
Only call this if
is_replay_file_delete_details()is true.- Return type:
- get_replay_file_downloaded_details()
Only call this if
is_replay_file_downloaded_details()is true.- Return type:
Only call this if
is_replay_file_shared_link_created_details()is true.- Return type:
Only call this if
is_replay_file_shared_link_modified_details()is true.- Return type:
- get_replay_project_team_add_details()
Only call this if
is_replay_project_team_add_details()is true.- Return type:
- get_replay_project_team_delete_details()
Only call this if
is_replay_project_team_delete_details()is true.- Return type:
- get_replay_sharing_policy_changed_details()
Only call this if
is_replay_sharing_policy_changed_details()is true.- Return type:
- get_replay_team_project_created_details()
Only call this if
is_replay_team_project_created_details()is true.- Return type:
- get_reseller_support_change_policy_details()
Only call this if
is_reseller_support_change_policy_details()is true.- Return type:
- get_reseller_support_session_end_details()
Only call this if
is_reseller_support_session_end_details()is true.- Return type:
- get_reseller_support_session_start_details()
Only call this if
is_reseller_support_session_start_details()is true.- Return type:
- get_rewind_folder_details()
Only call this if
is_rewind_folder_details()is true.- Return type:
- get_rewind_policy_changed_details()
Only call this if
is_rewind_policy_changed_details()is true.- Return type:
- get_risc_security_event_details()
Only call this if
is_risc_security_event_details()is true.- Return type:
- get_secondary_email_deleted_details()
Only call this if
is_secondary_email_deleted_details()is true.- Return type:
- get_secondary_email_verified_details()
Only call this if
is_secondary_email_verified_details()is true.- Return type:
- get_secondary_mails_policy_changed_details()
Only call this if
is_secondary_mails_policy_changed_details()is true.- Return type:
- get_send_and_track_file_added_details()
Only call this if
is_send_and_track_file_added_details()is true.- Return type:
- get_send_and_track_file_renamed_details()
Only call this if
is_send_and_track_file_renamed_details()is true.- Return type:
- get_send_and_track_file_updated_details()
Only call this if
is_send_and_track_file_updated_details()is true.- Return type:
- get_send_and_track_link_created_details()
Only call this if
is_send_and_track_link_created_details()is true.- Return type:
- get_send_and_track_link_deleted_details()
Only call this if
is_send_and_track_link_deleted_details()is true.- Return type:
- get_send_and_track_link_updated_details()
Only call this if
is_send_and_track_link_updated_details()is true.- Return type:
- get_send_and_track_link_viewed_details()
Only call this if
is_send_and_track_link_viewed_details()is true.- Return type:
- get_send_and_track_policy_changed_details()
Only call this if
is_send_and_track_policy_changed_details()is true.- Return type:
- get_send_and_track_removed_file_and_associated_links_details()
Only call this if
is_send_and_track_removed_file_and_associated_links_details()is true.- Return type:
- get_send_external_sharing_policy_changed_details()
Only call this if
is_send_external_sharing_policy_changed_details()is true.- Return type:
- get_send_for_signature_policy_changed_details()
Only call this if
is_send_for_signature_policy_changed_details()is true.- Return type:
- get_sf_add_group_details()
Only call this if
is_sf_add_group_details()is true.- Return type:
Only call this if
is_sf_allow_non_members_to_view_shared_links_details()is true.- Return type:
- get_sf_external_invite_warn_details()
Only call this if
is_sf_external_invite_warn_details()is true.- Return type:
- get_sf_fb_invite_change_role_details()
Only call this if
is_sf_fb_invite_change_role_details()is true.- Return type:
- get_sf_fb_invite_details()
Only call this if
is_sf_fb_invite_details()is true.- Return type:
- get_sf_fb_uninvite_details()
Only call this if
is_sf_fb_uninvite_details()is true.- Return type:
- get_sf_invite_group_details()
Only call this if
is_sf_invite_group_details()is true.- Return type:
- get_sf_team_grant_access_details()
Only call this if
is_sf_team_grant_access_details()is true.- Return type:
- get_sf_team_invite_change_role_details()
Only call this if
is_sf_team_invite_change_role_details()is true.- Return type:
- get_sf_team_invite_details()
Only call this if
is_sf_team_invite_details()is true.- Return type:
- get_sf_team_join_details()
Only call this if
is_sf_team_join_details()is true.- Return type:
- get_sf_team_join_from_oob_link_details()
Only call this if
is_sf_team_join_from_oob_link_details()is true.- Return type:
- get_sf_team_uninvite_details()
Only call this if
is_sf_team_uninvite_details()is true.- Return type:
Only call this if
is_shared_content_add_invitees_details()is true.- Return type:
Only call this if
is_shared_content_add_link_expiry_details()is true.- Return type:
Only call this if
is_shared_content_add_link_password_details()is true.- Return type:
Only call this if
is_shared_content_add_member_details()is true.- Return type:
Only call this if
is_shared_content_change_downloads_policy_details()is true.- Return type:
Only call this if
is_shared_content_change_invitee_role_details()is true.- Return type:
Only call this if
is_shared_content_change_link_audience_details()is true.- Return type:
Only call this if
is_shared_content_change_link_expiry_details()is true.- Return type:
Only call this if
is_shared_content_change_link_password_details()is true.- Return type:
Only call this if
is_shared_content_change_member_role_details()is true.- Return type:
Only call this if
is_shared_content_change_viewer_info_policy_details()is true.- Return type:
Only call this if
is_shared_content_claim_invitation_details()is true.- Return type:
Only call this if
is_shared_content_copy_details()is true.- Return type:
Only call this if
is_shared_content_download_details()is true.- Return type:
Only call this if
is_shared_content_relinquish_membership_details()is true.- Return type:
Only call this if
is_shared_content_remove_invitees_details()is true.- Return type:
Only call this if
is_shared_content_remove_link_expiry_details()is true.- Return type:
Only call this if
is_shared_content_remove_link_password_details()is true.- Return type:
Only call this if
is_shared_content_remove_member_details()is true.- Return type:
Only call this if
is_shared_content_request_access_details()is true.- Return type:
Only call this if
is_shared_content_restore_invitees_details()is true.- Return type:
Only call this if
is_shared_content_restore_member_details()is true.- Return type:
Only call this if
is_shared_content_unshare_details()is true.- Return type:
Only call this if
is_shared_content_view_details()is true.- Return type:
Only call this if
is_shared_folder_change_link_policy_details()is true.- Return type:
Only call this if
is_shared_folder_change_members_inheritance_policy_details()is true.- Return type:
Only call this if
is_shared_folder_change_members_management_policy_details()is true.- Return type:
Only call this if
is_shared_folder_change_members_policy_details()is true.- Return type:
Only call this if
is_shared_folder_create_details()is true.- Return type:
Only call this if
is_shared_folder_decline_invitation_details()is true.- Return type:
Only call this if
is_shared_folder_mount_details()is true.- Return type:
Only call this if
is_shared_folder_nest_details()is true.- Return type:
Only call this if
is_shared_folder_transfer_ownership_details()is true.- Return type:
Only call this if
is_shared_folder_unmount_details()is true.- Return type:
Only call this if
is_shared_folders_create_report_details()is true.- Return type:
Only call this if
is_shared_folders_create_report_failed_details()is true.- Return type:
Only call this if
is_shared_link_add_expiry_details()is true.- Return type:
Only call this if
is_shared_link_change_expiry_details()is true.- Return type:
Only call this if
is_shared_link_change_visibility_details()is true.- Return type:
Only call this if
is_shared_link_copy_details()is true.- Return type:
Only call this if
is_shared_link_create_details()is true.- Return type:
Only call this if
is_shared_link_default_permissions_policy_changed_details()is true.- Return type:
Only call this if
is_shared_link_disable_details()is true.- Return type:
Only call this if
is_shared_link_download_details()is true.- Return type:
Only call this if
is_shared_link_remove_expiry_details()is true.- Return type:
Only call this if
is_shared_link_remove_visitor_details()is true.- Return type:
Only call this if
is_shared_link_settings_add_expiration_details()is true.- Return type:
Only call this if
is_shared_link_settings_add_password_details()is true.- Return type:
Only call this if
is_shared_link_settings_allow_download_disabled_details()is true.- Return type:
Only call this if
is_shared_link_settings_allow_download_enabled_details()is true.- Return type:
Only call this if
is_shared_link_settings_change_audience_details()is true.- Return type:
Only call this if
is_shared_link_settings_change_expiration_details()is true.- Return type:
Only call this if
is_shared_link_settings_change_password_details()is true.- Return type:
Only call this if
is_shared_link_settings_remove_expiration_details()is true.- Return type:
Only call this if
is_shared_link_settings_remove_password_details()is true.- Return type:
Only call this if
is_shared_link_share_details()is true.- Return type:
Only call this if
is_shared_link_view_details()is true.- Return type:
Only call this if
is_shared_note_opened_details()is true.- Return type:
- get_sharing_change_folder_join_policy_details()
Only call this if
is_sharing_change_folder_join_policy_details()is true.- Return type:
- get_sharing_change_link_allow_change_expiration_policy_details()
Only call this if
is_sharing_change_link_allow_change_expiration_policy_details()is true.- Return type:
- get_sharing_change_link_default_expiration_policy_details()
Only call this if
is_sharing_change_link_default_expiration_policy_details()is true.- Return type:
- get_sharing_change_link_enforce_password_policy_details()
Only call this if
is_sharing_change_link_enforce_password_policy_details()is true.- Return type:
- get_sharing_change_link_policy_details()
Only call this if
is_sharing_change_link_policy_details()is true.- Return type:
- get_sharing_change_member_policy_details()
Only call this if
is_sharing_change_member_policy_details()is true.- Return type:
- get_shmodel_disable_downloads_details()
Only call this if
is_shmodel_disable_downloads_details()is true.- Return type:
- get_shmodel_enable_downloads_details()
Only call this if
is_shmodel_enable_downloads_details()is true.- Return type:
Only call this if
is_shmodel_group_share_details()is true.- Return type:
- get_showcase_access_granted_details()
Only call this if
is_showcase_access_granted_details()is true.- Return type:
- get_showcase_add_member_details()
Only call this if
is_showcase_add_member_details()is true.- Return type:
- get_showcase_archived_details()
Only call this if
is_showcase_archived_details()is true.- Return type:
- get_showcase_change_download_policy_details()
Only call this if
is_showcase_change_download_policy_details()is true.- Return type:
- get_showcase_change_enabled_policy_details()
Only call this if
is_showcase_change_enabled_policy_details()is true.- Return type:
- get_showcase_change_external_sharing_policy_details()
Only call this if
is_showcase_change_external_sharing_policy_details()is true.- Return type:
- get_showcase_created_details()
Only call this if
is_showcase_created_details()is true.- Return type:
- get_showcase_delete_comment_details()
Only call this if
is_showcase_delete_comment_details()is true.- Return type:
- get_showcase_edit_comment_details()
Only call this if
is_showcase_edit_comment_details()is true.- Return type:
- get_showcase_edited_details()
Only call this if
is_showcase_edited_details()is true.- Return type:
- get_showcase_file_added_details()
Only call this if
is_showcase_file_added_details()is true.- Return type:
- get_showcase_file_download_details()
Only call this if
is_showcase_file_download_details()is true.- Return type:
- get_showcase_file_removed_details()
Only call this if
is_showcase_file_removed_details()is true.- Return type:
- get_showcase_file_view_details()
Only call this if
is_showcase_file_view_details()is true.- Return type:
- get_showcase_permanently_deleted_details()
Only call this if
is_showcase_permanently_deleted_details()is true.- Return type:
- get_showcase_post_comment_details()
Only call this if
is_showcase_post_comment_details()is true.- Return type:
- get_showcase_remove_member_details()
Only call this if
is_showcase_remove_member_details()is true.- Return type:
- get_showcase_renamed_details()
Only call this if
is_showcase_renamed_details()is true.- Return type:
- get_showcase_request_access_details()
Only call this if
is_showcase_request_access_details()is true.- Return type:
- get_showcase_resolve_comment_details()
Only call this if
is_showcase_resolve_comment_details()is true.- Return type:
- get_showcase_restored_details()
Only call this if
is_showcase_restored_details()is true.- Return type:
- get_showcase_trashed_deprecated_details()
Only call this if
is_showcase_trashed_deprecated_details()is true.- Return type:
- get_showcase_trashed_details()
Only call this if
is_showcase_trashed_details()is true.- Return type:
- get_showcase_unresolve_comment_details()
Only call this if
is_showcase_unresolve_comment_details()is true.- Return type:
- get_showcase_untrashed_deprecated_details()
Only call this if
is_showcase_untrashed_deprecated_details()is true.- Return type:
- get_showcase_untrashed_details()
Only call this if
is_showcase_untrashed_details()is true.- Return type:
- get_showcase_view_details()
Only call this if
is_showcase_view_details()is true.- Return type:
- get_sign_external_sharing_policy_changed_details()
Only call this if
is_sign_external_sharing_policy_changed_details()is true.- Return type:
- get_sign_in_as_session_end_details()
Only call this if
is_sign_in_as_session_end_details()is true.- Return type:
- get_sign_in_as_session_start_details()
Only call this if
is_sign_in_as_session_start_details()is true.- Return type:
- get_sign_signature_request_canceled_details()
Only call this if
is_sign_signature_request_canceled_details()is true.- Return type:
- get_sign_signature_request_completed_details()
Only call this if
is_sign_signature_request_completed_details()is true.- Return type:
- get_sign_signature_request_declined_details()
Only call this if
is_sign_signature_request_declined_details()is true.- Return type:
- get_sign_signature_request_opened_details()
Only call this if
is_sign_signature_request_opened_details()is true.- Return type:
- get_sign_signature_request_reminder_sent_details()
Only call this if
is_sign_signature_request_reminder_sent_details()is true.- Return type:
- get_sign_signature_request_sent_details()
Only call this if
is_sign_signature_request_sent_details()is true.- Return type:
- get_sign_template_created_details()
Only call this if
is_sign_template_created_details()is true.- Return type:
- get_sign_template_creation_permission_changed_details()
Only call this if
is_sign_template_creation_permission_changed_details()is true.- Return type:
Only call this if
is_sign_template_shared_details()is true.- Return type:
- get_smart_sync_change_policy_details()
Only call this if
is_smart_sync_change_policy_details()is true.- Return type:
- get_smart_sync_create_admin_privilege_report_details()
Only call this if
is_smart_sync_create_admin_privilege_report_details()is true.- Return type:
- get_smart_sync_not_opt_out_details()
Only call this if
is_smart_sync_not_opt_out_details()is true.- Return type:
- get_smart_sync_opt_out_details()
Only call this if
is_smart_sync_opt_out_details()is true.- Return type:
- get_smarter_smart_sync_policy_changed_details()
Only call this if
is_smarter_smart_sync_policy_changed_details()is true.- Return type:
- get_sso_add_cert_details()
Only call this if
is_sso_add_cert_details()is true.- Return type:
- get_sso_add_login_url_details()
Only call this if
is_sso_add_login_url_details()is true.- Return type:
- get_sso_add_logout_url_details()
Only call this if
is_sso_add_logout_url_details()is true.- Return type:
- get_sso_change_cert_details()
Only call this if
is_sso_change_cert_details()is true.- Return type:
- get_sso_change_login_url_details()
Only call this if
is_sso_change_login_url_details()is true.- Return type:
- get_sso_change_logout_url_details()
Only call this if
is_sso_change_logout_url_details()is true.- Return type:
- get_sso_change_policy_details()
Only call this if
is_sso_change_policy_details()is true.- Return type:
- get_sso_change_saml_identity_mode_details()
Only call this if
is_sso_change_saml_identity_mode_details()is true.- Return type:
- get_sso_error_details()
Only call this if
is_sso_error_details()is true.- Return type:
- get_sso_remove_cert_details()
Only call this if
is_sso_remove_cert_details()is true.- Return type:
- get_sso_remove_login_url_details()
Only call this if
is_sso_remove_login_url_details()is true.- Return type:
- get_sso_remove_logout_url_details()
Only call this if
is_sso_remove_logout_url_details()is true.- Return type:
- get_stack_cross_team_access_policy_changed_details()
Only call this if
is_stack_cross_team_access_policy_changed_details()is true.- Return type:
- get_started_enterprise_admin_session_details()
Only call this if
is_started_enterprise_admin_session_details()is true.- Return type:
- get_team_activity_create_report_details()
Only call this if
is_team_activity_create_report_details()is true.- Return type:
- get_team_activity_create_report_fail_details()
Only call this if
is_team_activity_create_report_fail_details()is true.- Return type:
- get_team_branding_policy_changed_details()
Only call this if
is_team_branding_policy_changed_details()is true.- Return type:
- get_team_encryption_key_activate_key_details()
Only call this if
is_team_encryption_key_activate_key_details()is true.- Return type:
- get_team_encryption_key_cancel_key_deletion_details()
Only call this if
is_team_encryption_key_cancel_key_deletion_details()is true.- Return type:
- get_team_encryption_key_create_key_details()
Only call this if
is_team_encryption_key_create_key_details()is true.- Return type:
- get_team_encryption_key_deactivate_key_details()
Only call this if
is_team_encryption_key_deactivate_key_details()is true.- Return type:
- get_team_encryption_key_delete_key_details()
Only call this if
is_team_encryption_key_delete_key_details()is true.- Return type:
- get_team_encryption_key_disable_key_details()
Only call this if
is_team_encryption_key_disable_key_details()is true.- Return type:
- get_team_encryption_key_enable_key_details()
Only call this if
is_team_encryption_key_enable_key_details()is true.- Return type:
- get_team_encryption_key_rotate_key_details()
Only call this if
is_team_encryption_key_rotate_key_details()is true.- Return type:
- get_team_encryption_key_schedule_key_deletion_details()
Only call this if
is_team_encryption_key_schedule_key_deletion_details()is true.- Return type:
- get_team_extensions_policy_changed_details()
Only call this if
is_team_extensions_policy_changed_details()is true.- Return type:
- get_team_folder_change_status_details()
Only call this if
is_team_folder_change_status_details()is true.- Return type:
- get_team_folder_create_details()
Only call this if
is_team_folder_create_details()is true.- Return type:
- get_team_folder_downgrade_details()
Only call this if
is_team_folder_downgrade_details()is true.- Return type:
- get_team_folder_permanently_delete_details()
Only call this if
is_team_folder_permanently_delete_details()is true.- Return type:
- get_team_folder_rename_details()
Only call this if
is_team_folder_rename_details()is true.- Return type:
- get_team_folder_space_limits_change_caps_type_details()
Only call this if
is_team_folder_space_limits_change_caps_type_details()is true.- Return type:
- get_team_folder_space_limits_change_limit_details()
Only call this if
is_team_folder_space_limits_change_limit_details()is true.- Return type:
- get_team_folder_space_limits_change_notification_target_details()
Only call this if
is_team_folder_space_limits_change_notification_target_details()is true.- Return type:
- get_team_folders_create_report_details()
Only call this if
is_team_folders_create_report_details()is true.- Return type:
- get_team_folders_create_report_failed_details()
Only call this if
is_team_folders_create_report_failed_details()is true.- Return type:
- get_team_member_storage_request_policy_changed_details()
Only call this if
is_team_member_storage_request_policy_changed_details()is true.- Return type:
- get_team_merge_from_details()
Only call this if
is_team_merge_from_details()is true.- Return type:
- get_team_merge_request_accepted_details()
Only call this if
is_team_merge_request_accepted_details()is true.- Return type:
- get_team_merge_request_accepted_shown_to_primary_team_details()
Only call this if
is_team_merge_request_accepted_shown_to_primary_team_details()is true.- Return type:
- get_team_merge_request_accepted_shown_to_secondary_team_details()
Only call this if
is_team_merge_request_accepted_shown_to_secondary_team_details()is true.- Return type:
- get_team_merge_request_auto_canceled_details()
Only call this if
is_team_merge_request_auto_canceled_details()is true.- Return type:
- get_team_merge_request_canceled_details()
Only call this if
is_team_merge_request_canceled_details()is true.- Return type:
- get_team_merge_request_canceled_shown_to_primary_team_details()
Only call this if
is_team_merge_request_canceled_shown_to_primary_team_details()is true.- Return type:
- get_team_merge_request_canceled_shown_to_secondary_team_details()
Only call this if
is_team_merge_request_canceled_shown_to_secondary_team_details()is true.- Return type:
- get_team_merge_request_expired_details()
Only call this if
is_team_merge_request_expired_details()is true.- Return type:
- get_team_merge_request_expired_shown_to_primary_team_details()
Only call this if
is_team_merge_request_expired_shown_to_primary_team_details()is true.- Return type:
- get_team_merge_request_expired_shown_to_secondary_team_details()
Only call this if
is_team_merge_request_expired_shown_to_secondary_team_details()is true.- Return type:
- get_team_merge_request_rejected_shown_to_primary_team_details()
Only call this if
is_team_merge_request_rejected_shown_to_primary_team_details()is true.- Return type:
- get_team_merge_request_rejected_shown_to_secondary_team_details()
Only call this if
is_team_merge_request_rejected_shown_to_secondary_team_details()is true.- Return type:
- get_team_merge_request_reminder_details()
Only call this if
is_team_merge_request_reminder_details()is true.- Return type:
- get_team_merge_request_reminder_shown_to_primary_team_details()
Only call this if
is_team_merge_request_reminder_shown_to_primary_team_details()is true.- Return type:
- get_team_merge_request_reminder_shown_to_secondary_team_details()
Only call this if
is_team_merge_request_reminder_shown_to_secondary_team_details()is true.- Return type:
- get_team_merge_request_revoked_details()
Only call this if
is_team_merge_request_revoked_details()is true.- Return type:
- get_team_merge_request_sent_shown_to_primary_team_details()
Only call this if
is_team_merge_request_sent_shown_to_primary_team_details()is true.- Return type:
- get_team_merge_request_sent_shown_to_secondary_team_details()
Only call this if
is_team_merge_request_sent_shown_to_secondary_team_details()is true.- Return type:
- get_team_merge_to_details()
Only call this if
is_team_merge_to_details()is true.- Return type:
- get_team_profile_add_background_details()
Only call this if
is_team_profile_add_background_details()is true.- Return type:
- get_team_profile_add_logo_details()
Only call this if
is_team_profile_add_logo_details()is true.- Return type:
- get_team_profile_change_background_details()
Only call this if
is_team_profile_change_background_details()is true.- Return type:
- get_team_profile_change_default_language_details()
Only call this if
is_team_profile_change_default_language_details()is true.- Return type:
- get_team_profile_change_logo_details()
Only call this if
is_team_profile_change_logo_details()is true.- Return type:
- get_team_profile_change_name_details()
Only call this if
is_team_profile_change_name_details()is true.- Return type:
- get_team_profile_remove_background_details()
Only call this if
is_team_profile_remove_background_details()is true.- Return type:
- get_team_profile_remove_logo_details()
Only call this if
is_team_profile_remove_logo_details()is true.- Return type:
- get_team_selective_sync_policy_changed_details()
Only call this if
is_team_selective_sync_policy_changed_details()is true.- Return type:
- get_team_selective_sync_settings_changed_details()
Only call this if
is_team_selective_sync_settings_changed_details()is true.- Return type:
- get_team_sharing_whitelist_subjects_changed_details()
Only call this if
is_team_sharing_whitelist_subjects_changed_details()is true.- Return type:
- get_team_storage_create_report_details()
Only call this if
is_team_storage_create_report_details()is true.- Return type:
- get_team_storage_create_report_failed_details()
Only call this if
is_team_storage_create_report_failed_details()is true.- Return type:
- get_tfa_add_backup_phone_details()
Only call this if
is_tfa_add_backup_phone_details()is true.- Return type:
- get_tfa_add_exception_details()
Only call this if
is_tfa_add_exception_details()is true.- Return type:
- get_tfa_add_security_key_details()
Only call this if
is_tfa_add_security_key_details()is true.- Return type:
- get_tfa_change_backup_phone_details()
Only call this if
is_tfa_change_backup_phone_details()is true.- Return type:
- get_tfa_change_policy_details()
Only call this if
is_tfa_change_policy_details()is true.- Return type:
- get_tfa_change_status_details()
Only call this if
is_tfa_change_status_details()is true.- Return type:
- get_tfa_remove_backup_phone_details()
Only call this if
is_tfa_remove_backup_phone_details()is true.- Return type:
- get_tfa_remove_exception_details()
Only call this if
is_tfa_remove_exception_details()is true.- Return type:
- get_tfa_remove_security_key_details()
Only call this if
is_tfa_remove_security_key_details()is true.- Return type:
- get_tfa_reset_details()
Only call this if
is_tfa_reset_details()is true.- Return type:
- get_top_level_content_policy_changed_details()
Only call this if
is_top_level_content_policy_changed_details()is true.- Return type:
- get_two_account_change_policy_details()
Only call this if
is_two_account_change_policy_details()is true.- Return type:
- get_undo_naming_convention_details()
Only call this if
is_undo_naming_convention_details()is true.- Return type:
- get_undo_organize_folder_with_tidy_details()
Only call this if
is_undo_organize_folder_with_tidy_details()is true.- Return type:
- get_user_tags_added_details()
Only call this if
is_user_tags_added_details()is true.- Return type:
- get_user_tags_removed_details()
Only call this if
is_user_tags_removed_details()is true.- Return type:
- get_viewer_info_policy_changed_details()
Only call this if
is_viewer_info_policy_changed_details()is true.- Return type:
- get_watermarking_policy_changed_details()
Only call this if
is_watermarking_policy_changed_details()is true.- Return type:
- get_web_sessions_change_active_session_limit_details()
Only call this if
is_web_sessions_change_active_session_limit_details()is true.- Return type:
- get_web_sessions_change_fixed_length_policy_details()
Only call this if
is_web_sessions_change_fixed_length_policy_details()is true.- Return type:
- get_web_sessions_change_idle_length_policy_details()
Only call this if
is_web_sessions_change_idle_length_policy_details()is true.- Return type:
- classmethod google_sso_change_policy_details(val)
Create an instance of this class set to the
google_sso_change_policy_detailstag with valueval.- Parameters:
- Return type:
- classmethod governance_policy_add_folder_failed_details(val)
Create an instance of this class set to the
governance_policy_add_folder_failed_detailstag with valueval.- Parameters:
- Return type:
- classmethod governance_policy_add_folders_details(val)
Create an instance of this class set to the
governance_policy_add_folders_detailstag with valueval.- Parameters:
- Return type:
- classmethod governance_policy_content_disposed_details(val)
Create an instance of this class set to the
governance_policy_content_disposed_detailstag with valueval.- Parameters:
- Return type:
- classmethod governance_policy_create_details(val)
Create an instance of this class set to the
governance_policy_create_detailstag with valueval.- Parameters:
- Return type:
- classmethod governance_policy_delete_details(val)
Create an instance of this class set to the
governance_policy_delete_detailstag with valueval.- Parameters:
- Return type:
- classmethod governance_policy_edit_details_details(val)
Create an instance of this class set to the
governance_policy_edit_details_detailstag with valueval.- Parameters:
- Return type:
- classmethod governance_policy_edit_duration_details(val)
Create an instance of this class set to the
governance_policy_edit_duration_detailstag with valueval.- Parameters:
- Return type:
- classmethod governance_policy_export_created_details(val)
Create an instance of this class set to the
governance_policy_export_created_detailstag with valueval.- Parameters:
- Return type:
- classmethod governance_policy_export_removed_details(val)
Create an instance of this class set to the
governance_policy_export_removed_detailstag with valueval.- Parameters:
- Return type:
- classmethod governance_policy_remove_folders_details(val)
Create an instance of this class set to the
governance_policy_remove_folders_detailstag with valueval.- Parameters:
- Return type:
- classmethod governance_policy_report_created_details(val)
Create an instance of this class set to the
governance_policy_report_created_detailstag with valueval.- Parameters:
- Return type:
- classmethod governance_policy_zip_part_downloaded_details(val)
Create an instance of this class set to the
governance_policy_zip_part_downloaded_detailstag with valueval.- Parameters:
- Return type:
- classmethod group_add_external_id_details(val)
Create an instance of this class set to the
group_add_external_id_detailstag with valueval.- Parameters:
- Return type:
- classmethod group_add_member_details(val)
Create an instance of this class set to the
group_add_member_detailstag with valueval.- Parameters:
val (GroupAddMemberDetails)
- Return type:
- classmethod group_change_external_id_details(val)
Create an instance of this class set to the
group_change_external_id_detailstag with valueval.- Parameters:
- Return type:
- classmethod group_change_management_type_details(val)
Create an instance of this class set to the
group_change_management_type_detailstag with valueval.- Parameters:
- Return type:
- classmethod group_change_member_role_details(val)
Create an instance of this class set to the
group_change_member_role_detailstag with valueval.- Parameters:
- Return type:
- classmethod group_create_details(val)
Create an instance of this class set to the
group_create_detailstag with valueval.- Parameters:
val (GroupCreateDetails)
- Return type:
- classmethod group_delete_details(val)
Create an instance of this class set to the
group_delete_detailstag with valueval.- Parameters:
val (GroupDeleteDetails)
- Return type:
- classmethod group_description_updated_details(val)
Create an instance of this class set to the
group_description_updated_detailstag with valueval.- Parameters:
- Return type:
- classmethod group_external_sharing_setting_override_changed_details(val)
Create an instance of this class set to the
group_external_sharing_setting_override_changed_detailstag with valueval.- Parameters:
- Return type:
- classmethod group_join_policy_updated_details(val)
Create an instance of this class set to the
group_join_policy_updated_detailstag with valueval.- Parameters:
- Return type:
- classmethod group_moved_details(val)
Create an instance of this class set to the
group_moved_detailstag with valueval.- Parameters:
val (GroupMovedDetails)
- Return type:
- classmethod group_remove_external_id_details(val)
Create an instance of this class set to the
group_remove_external_id_detailstag with valueval.- Parameters:
- Return type:
- classmethod group_remove_member_details(val)
Create an instance of this class set to the
group_remove_member_detailstag with valueval.- Parameters:
val (GroupRemoveMemberDetails)
- Return type:
- classmethod group_rename_details(val)
Create an instance of this class set to the
group_rename_detailstag with valueval.- Parameters:
val (GroupRenameDetails)
- Return type:
- classmethod group_user_management_change_policy_details(val)
Create an instance of this class set to the
group_user_management_change_policy_detailstag with valueval.- Parameters:
- Return type:
- classmethod guest_admin_change_status_details(val)
Create an instance of this class set to the
guest_admin_change_status_detailstag with valueval.- Parameters:
- Return type:
- classmethod guest_admin_signed_in_via_trusted_teams_details(val)
Create an instance of this class set to the
guest_admin_signed_in_via_trusted_teams_detailstag with valueval.- Parameters:
- Return type:
- classmethod guest_admin_signed_out_via_trusted_teams_details(val)
Create an instance of this class set to the
guest_admin_signed_out_via_trusted_teams_detailstag with valueval.- Parameters:
- Return type:
- classmethod integration_connected_details(val)
Create an instance of this class set to the
integration_connected_detailstag with valueval.- Parameters:
- Return type:
- classmethod integration_disconnected_details(val)
Create an instance of this class set to the
integration_disconnected_detailstag with valueval.- Parameters:
- Return type:
- classmethod integration_policy_changed_details(val)
Create an instance of this class set to the
integration_policy_changed_detailstag with valueval.- Parameters:
- Return type:
- classmethod invite_acceptance_email_policy_changed_details(val)
Create an instance of this class set to the
invite_acceptance_email_policy_changed_detailstag with valueval.- Parameters:
- Return type:
- is_account_capture_change_availability_details()
Check if the union tag is
account_capture_change_availability_details.- Return type:
bool
- is_account_capture_change_policy_details()
Check if the union tag is
account_capture_change_policy_details.- Return type:
bool
- is_account_capture_migrate_account_details()
Check if the union tag is
account_capture_migrate_account_details.- Return type:
bool
- is_account_capture_notification_emails_sent_details()
Check if the union tag is
account_capture_notification_emails_sent_details.- Return type:
bool
- is_account_capture_relinquish_account_details()
Check if the union tag is
account_capture_relinquish_account_details.- Return type:
bool
- is_account_lock_or_unlocked_details()
Check if the union tag is
account_lock_or_unlocked_details.- Return type:
bool
- is_addon_assigned_details()
Check if the union tag is
addon_assigned_details.- Return type:
bool
- is_addon_removed_details()
Check if the union tag is
addon_removed_details.- Return type:
bool
- is_admin_alerting_alert_state_changed_details()
Check if the union tag is
admin_alerting_alert_state_changed_details.- Return type:
bool
- is_admin_alerting_changed_alert_config_details()
Check if the union tag is
admin_alerting_changed_alert_config_details.- Return type:
bool
- is_admin_alerting_triggered_alert_details()
Check if the union tag is
admin_alerting_triggered_alert_details.- Return type:
bool
- is_admin_email_reminders_changed_details()
Check if the union tag is
admin_email_reminders_changed_details.- Return type:
bool
- is_ai_third_party_sharing_dropbox_base_policy_changed_details()
Check if the union tag is
ai_third_party_sharing_dropbox_base_policy_changed_details.- Return type:
bool
- is_allow_download_disabled_details()
Check if the union tag is
allow_download_disabled_details.- Return type:
bool
- is_allow_download_enabled_details()
Check if the union tag is
allow_download_enabled_details.- Return type:
bool
- is_app_blocked_by_permissions_details()
Check if the union tag is
app_blocked_by_permissions_details.- Return type:
bool
- is_app_link_team_details()
Check if the union tag is
app_link_team_details.- Return type:
bool
- is_app_link_user_details()
Check if the union tag is
app_link_user_details.- Return type:
bool
- is_app_permissions_changed_details()
Check if the union tag is
app_permissions_changed_details.- Return type:
bool
- is_app_unlink_team_details()
Check if the union tag is
app_unlink_team_details.- Return type:
bool
- is_app_unlink_user_details()
Check if the union tag is
app_unlink_user_details.- Return type:
bool
- is_apple_login_change_policy_details()
Check if the union tag is
apple_login_change_policy_details.- Return type:
bool
- is_apply_naming_convention_details()
Check if the union tag is
apply_naming_convention_details.- Return type:
bool
- is_backup_admin_invitation_sent_details()
Check if the union tag is
backup_admin_invitation_sent_details.- Return type:
bool
- is_backup_invitation_opened_details()
Check if the union tag is
backup_invitation_opened_details.- Return type:
bool
- is_binder_add_page_details()
Check if the union tag is
binder_add_page_details.- Return type:
bool
- is_binder_add_section_details()
Check if the union tag is
binder_add_section_details.- Return type:
bool
- is_binder_remove_page_details()
Check if the union tag is
binder_remove_page_details.- Return type:
bool
- is_binder_remove_section_details()
Check if the union tag is
binder_remove_section_details.- Return type:
bool
- is_binder_rename_page_details()
Check if the union tag is
binder_rename_page_details.- Return type:
bool
- is_binder_rename_section_details()
Check if the union tag is
binder_rename_section_details.- Return type:
bool
- is_binder_reorder_page_details()
Check if the union tag is
binder_reorder_page_details.- Return type:
bool
- is_binder_reorder_section_details()
Check if the union tag is
binder_reorder_section_details.- Return type:
bool
- is_camera_uploads_policy_changed_details()
Check if the union tag is
camera_uploads_policy_changed_details.- Return type:
bool
- is_capture_team_space_policy_changed_details()
Check if the union tag is
capture_team_space_policy_changed_details.- Return type:
bool
- is_capture_transcript_policy_changed_details()
Check if the union tag is
capture_transcript_policy_changed_details.- Return type:
bool
- is_changed_enterprise_admin_role_details()
Check if the union tag is
changed_enterprise_admin_role_details.- Return type:
bool
- is_changed_enterprise_connected_team_status_details()
Check if the union tag is
changed_enterprise_connected_team_status_details.- Return type:
bool
- is_classification_change_policy_details()
Check if the union tag is
classification_change_policy_details.- Return type:
bool
- is_classification_create_report_details()
Check if the union tag is
classification_create_report_details.- Return type:
bool
- is_classification_create_report_fail_details()
Check if the union tag is
classification_create_report_fail_details.- Return type:
bool
Check if the union tag is
collection_share_details.- Return type:
bool
- is_computer_backup_policy_changed_details()
Check if the union tag is
computer_backup_policy_changed_details.- Return type:
bool
- is_content_administration_policy_changed_details()
Check if the union tag is
content_administration_policy_changed_details.- Return type:
bool
- is_content_deletion_protection_change_policy_details()
Check if the union tag is
content_deletion_protection_change_policy_details.- Return type:
bool
- is_create_folder_details()
Check if the union tag is
create_folder_details.- Return type:
bool
- is_create_team_invite_link_details()
Check if the union tag is
create_team_invite_link_details.- Return type:
bool
- is_dash_added_comment_to_stack_details()
Check if the union tag is
dash_added_comment_to_stack_details.- Return type:
bool
- is_dash_added_connector_details()
Check if the union tag is
dash_added_connector_details.- Return type:
bool
- is_dash_added_link_to_stack_details()
Check if the union tag is
dash_added_link_to_stack_details.- Return type:
bool
- is_dash_added_team_email_domain_allowlist_details()
Check if the union tag is
dash_added_team_email_domain_allowlist_details.- Return type:
bool
- is_dash_admin_added_org_wide_connector_details()
Check if the union tag is
dash_admin_added_org_wide_connector_details.- Return type:
bool
- is_dash_admin_disabled_connector_details()
Check if the union tag is
dash_admin_disabled_connector_details.- Return type:
bool
- is_dash_admin_enabled_connector_details()
Check if the union tag is
dash_admin_enabled_connector_details.- Return type:
bool
- is_dash_admin_removed_org_wide_connector_details()
Check if the union tag is
dash_admin_removed_org_wide_connector_details.- Return type:
bool
- is_dash_archived_stack_details()
Check if the union tag is
dash_archived_stack_details.- Return type:
bool
Check if the union tag is
dash_changed_audience_of_shared_link_to_stack_details.- Return type:
bool
- is_dash_cloned_stack_details()
Check if the union tag is
dash_cloned_stack_details.- Return type:
bool
- is_dash_connector_tools_call_details()
Check if the union tag is
dash_connector_tools_call_details.- Return type:
bool
- is_dash_created_stack_details()
Check if the union tag is
dash_created_stack_details.- Return type:
bool
- is_dash_deleted_comment_from_stack_details()
Check if the union tag is
dash_deleted_comment_from_stack_details.- Return type:
bool
- is_dash_deleted_stack_details()
Check if the union tag is
dash_deleted_stack_details.- Return type:
bool
- is_dash_edited_comment_in_stack_details()
Check if the union tag is
dash_edited_comment_in_stack_details.- Return type:
bool
- is_dash_external_sharing_policy_changed_details()
Check if the union tag is
dash_external_sharing_policy_changed_details.- Return type:
bool
- is_dash_external_user_opened_stack_details()
Check if the union tag is
dash_external_user_opened_stack_details.- Return type:
bool
- is_dash_first_launched_desktop_details()
Check if the union tag is
dash_first_launched_desktop_details.- Return type:
bool
- is_dash_first_launched_extension_details()
Check if the union tag is
dash_first_launched_extension_details.- Return type:
bool
- is_dash_first_launched_web_start_page_details()
Check if the union tag is
dash_first_launched_web_start_page_details.- Return type:
bool
Check if the union tag is
dash_opened_shared_link_to_stack_details.- Return type:
bool
- is_dash_opened_stack_details()
Check if the union tag is
dash_opened_stack_details.- Return type:
bool
- is_dash_preview_opt_out_status_changed_details()
Check if the union tag is
dash_preview_opt_out_status_changed_details.- Return type:
bool
- is_dash_removed_connector_details()
Check if the union tag is
dash_removed_connector_details.- Return type:
bool
- is_dash_removed_link_from_stack_details()
Check if the union tag is
dash_removed_link_from_stack_details.- Return type:
bool
Check if the union tag is
dash_removed_shared_link_to_stack_details.- Return type:
bool
- is_dash_removed_team_email_domain_allowlist_details()
Check if the union tag is
dash_removed_team_email_domain_allowlist_details.- Return type:
bool
- is_dash_renamed_stack_details()
Check if the union tag is
dash_renamed_stack_details.- Return type:
bool
Check if the union tag is
dash_shared_link_to_stack_details.- Return type:
bool
- is_dash_unarchived_stack_details()
Check if the union tag is
dash_unarchived_stack_details.- Return type:
bool
- is_dash_viewed_company_stack_details()
Check if the union tag is
dash_viewed_company_stack_details.- Return type:
bool
- is_dash_viewed_external_ai_activity_report_details()
Check if the union tag is
dash_viewed_external_ai_activity_report_details.- Return type:
bool
- is_data_placement_restriction_change_policy_details()
Check if the union tag is
data_placement_restriction_change_policy_details.- Return type:
bool
- is_data_placement_restriction_satisfy_policy_details()
Check if the union tag is
data_placement_restriction_satisfy_policy_details.- Return type:
bool
- is_data_residency_migration_request_successful_details()
Check if the union tag is
data_residency_migration_request_successful_details.- Return type:
bool
- is_data_residency_migration_request_unsuccessful_details()
Check if the union tag is
data_residency_migration_request_unsuccessful_details.- Return type:
bool
- is_delete_team_invite_link_details()
Check if the union tag is
delete_team_invite_link_details.- Return type:
bool
- is_device_approvals_add_exception_details()
Check if the union tag is
device_approvals_add_exception_details.- Return type:
bool
- is_device_approvals_change_desktop_policy_details()
Check if the union tag is
device_approvals_change_desktop_policy_details.- Return type:
bool
- is_device_approvals_change_mobile_policy_details()
Check if the union tag is
device_approvals_change_mobile_policy_details.- Return type:
bool
- is_device_approvals_change_overage_action_details()
Check if the union tag is
device_approvals_change_overage_action_details.- Return type:
bool
- is_device_approvals_change_unlink_action_details()
Check if the union tag is
device_approvals_change_unlink_action_details.- Return type:
bool
- is_device_approvals_remove_exception_details()
Check if the union tag is
device_approvals_remove_exception_details.- Return type:
bool
- is_device_change_ip_desktop_details()
Check if the union tag is
device_change_ip_desktop_details.- Return type:
bool
- is_device_change_ip_mobile_details()
Check if the union tag is
device_change_ip_mobile_details.- Return type:
bool
- is_device_change_ip_web_details()
Check if the union tag is
device_change_ip_web_details.- Return type:
bool
- is_device_delete_on_unlink_fail_details()
Check if the union tag is
device_delete_on_unlink_fail_details.- Return type:
bool
- is_device_delete_on_unlink_success_details()
Check if the union tag is
device_delete_on_unlink_success_details.- Return type:
bool
- is_device_link_fail_details()
Check if the union tag is
device_link_fail_details.- Return type:
bool
- is_device_link_success_details()
Check if the union tag is
device_link_success_details.- Return type:
bool
- is_device_management_disabled_details()
Check if the union tag is
device_management_disabled_details.- Return type:
bool
- is_device_management_enabled_details()
Check if the union tag is
device_management_enabled_details.- Return type:
bool
- is_device_sync_backup_status_changed_details()
Check if the union tag is
device_sync_backup_status_changed_details.- Return type:
bool
- is_device_unlink_details()
Check if the union tag is
device_unlink_details.- Return type:
bool
- is_directory_restrictions_add_members_details()
Check if the union tag is
directory_restrictions_add_members_details.- Return type:
bool
- is_directory_restrictions_remove_members_details()
Check if the union tag is
directory_restrictions_remove_members_details.- Return type:
bool
- is_disabled_domain_invites_details()
Check if the union tag is
disabled_domain_invites_details.- Return type:
bool
- is_domain_invites_approve_request_to_join_team_details()
Check if the union tag is
domain_invites_approve_request_to_join_team_details.- Return type:
bool
- is_domain_invites_decline_request_to_join_team_details()
Check if the union tag is
domain_invites_decline_request_to_join_team_details.- Return type:
bool
- is_domain_invites_email_existing_users_details()
Check if the union tag is
domain_invites_email_existing_users_details.- Return type:
bool
- is_domain_invites_request_to_join_team_details()
Check if the union tag is
domain_invites_request_to_join_team_details.- Return type:
bool
- is_domain_invites_set_invite_new_user_pref_to_no_details()
Check if the union tag is
domain_invites_set_invite_new_user_pref_to_no_details.- Return type:
bool
- is_domain_invites_set_invite_new_user_pref_to_yes_details()
Check if the union tag is
domain_invites_set_invite_new_user_pref_to_yes_details.- Return type:
bool
- is_domain_verification_add_domain_fail_details()
Check if the union tag is
domain_verification_add_domain_fail_details.- Return type:
bool
- is_domain_verification_add_domain_success_details()
Check if the union tag is
domain_verification_add_domain_success_details.- Return type:
bool
- is_domain_verification_remove_domain_details()
Check if the union tag is
domain_verification_remove_domain_details.- Return type:
bool
- is_dropbox_passwords_exported_details()
Check if the union tag is
dropbox_passwords_exported_details.- Return type:
bool
- is_dropbox_passwords_new_device_enrolled_details()
Check if the union tag is
dropbox_passwords_new_device_enrolled_details.- Return type:
bool
- is_dropbox_passwords_policy_changed_details()
Check if the union tag is
dropbox_passwords_policy_changed_details.- Return type:
bool
- is_email_ingest_policy_changed_details()
Check if the union tag is
email_ingest_policy_changed_details.- Return type:
bool
- is_email_ingest_receive_file_details()
Check if the union tag is
email_ingest_receive_file_details.- Return type:
bool
- is_emm_add_exception_details()
Check if the union tag is
emm_add_exception_details.- Return type:
bool
- is_emm_change_policy_details()
Check if the union tag is
emm_change_policy_details.- Return type:
bool
- is_emm_create_exceptions_report_details()
Check if the union tag is
emm_create_exceptions_report_details.- Return type:
bool
- is_emm_create_usage_report_details()
Check if the union tag is
emm_create_usage_report_details.- Return type:
bool
- is_emm_error_details()
Check if the union tag is
emm_error_details.- Return type:
bool
- is_emm_refresh_auth_token_details()
Check if the union tag is
emm_refresh_auth_token_details.- Return type:
bool
- is_emm_remove_exception_details()
Check if the union tag is
emm_remove_exception_details.- Return type:
bool
- is_enabled_domain_invites_details()
Check if the union tag is
enabled_domain_invites_details.- Return type:
bool
- is_encrypted_folder_cancel_team_key_rotation_details()
Check if the union tag is
encrypted_folder_cancel_team_key_rotation_details.- Return type:
bool
- is_encrypted_folder_enroll_backup_key_details()
Check if the union tag is
encrypted_folder_enroll_backup_key_details.- Return type:
bool
- is_encrypted_folder_enroll_client_details()
Check if the union tag is
encrypted_folder_enroll_client_details.- Return type:
bool
- is_encrypted_folder_enroll_team_details()
Check if the union tag is
encrypted_folder_enroll_team_details.- Return type:
bool
- is_encrypted_folder_finish_team_unenrollment_details()
Check if the union tag is
encrypted_folder_finish_team_unenrollment_details.- Return type:
bool
- is_encrypted_folder_init_team_key_rotation_details()
Check if the union tag is
encrypted_folder_init_team_key_rotation_details.- Return type:
bool
- is_encrypted_folder_init_team_unenrollment_details()
Check if the union tag is
encrypted_folder_init_team_unenrollment_details.- Return type:
bool
- is_encrypted_folder_remove_backup_key_details()
Check if the union tag is
encrypted_folder_remove_backup_key_details.- Return type:
bool
- is_encrypted_folder_rotate_team_key_details()
Check if the union tag is
encrypted_folder_rotate_team_key_details.- Return type:
bool
- is_encrypted_folder_unenroll_client_details()
Check if the union tag is
encrypted_folder_unenroll_client_details.- Return type:
bool
- is_ended_enterprise_admin_session_deprecated_details()
Check if the union tag is
ended_enterprise_admin_session_deprecated_details.- Return type:
bool
- is_ended_enterprise_admin_session_details()
Check if the union tag is
ended_enterprise_admin_session_details.- Return type:
bool
- is_enterprise_settings_locking_details()
Check if the union tag is
enterprise_settings_locking_details.- Return type:
bool
- is_export_members_report_details()
Check if the union tag is
export_members_report_details.- Return type:
bool
- is_export_members_report_fail_details()
Check if the union tag is
export_members_report_fail_details.- Return type:
bool
- is_extended_version_history_change_policy_details()
Check if the union tag is
extended_version_history_change_policy_details.- Return type:
bool
- is_external_drive_backup_eligibility_status_checked_details()
Check if the union tag is
external_drive_backup_eligibility_status_checked_details.- Return type:
bool
- is_external_drive_backup_policy_changed_details()
Check if the union tag is
external_drive_backup_policy_changed_details.- Return type:
bool
- is_external_drive_backup_status_changed_details()
Check if the union tag is
external_drive_backup_status_changed_details.- Return type:
bool
- is_external_sharing_create_report_details()
Check if the union tag is
external_sharing_create_report_details.- Return type:
bool
- is_external_sharing_report_failed_details()
Check if the union tag is
external_sharing_report_failed_details.- Return type:
bool
- is_file_add_comment_details()
Check if the union tag is
file_add_comment_details.- Return type:
bool
- is_file_add_details()
Check if the union tag is
file_add_details.- Return type:
bool
- is_file_add_from_automation_details()
Check if the union tag is
file_add_from_automation_details.- Return type:
bool
- is_file_change_comment_subscription_details()
Check if the union tag is
file_change_comment_subscription_details.- Return type:
bool
- is_file_comments_change_policy_details()
Check if the union tag is
file_comments_change_policy_details.- Return type:
bool
- is_file_copy_details()
Check if the union tag is
file_copy_details.- Return type:
bool
- is_file_delete_comment_details()
Check if the union tag is
file_delete_comment_details.- Return type:
bool
- is_file_delete_details()
Check if the union tag is
file_delete_details.- Return type:
bool
- is_file_download_details()
Check if the union tag is
file_download_details.- Return type:
bool
- is_file_edit_comment_details()
Check if the union tag is
file_edit_comment_details.- Return type:
bool
- is_file_edit_details()
Check if the union tag is
file_edit_details.- Return type:
bool
- is_file_get_copy_reference_details()
Check if the union tag is
file_get_copy_reference_details.- Return type:
bool
- is_file_like_comment_details()
Check if the union tag is
file_like_comment_details.- Return type:
bool
- is_file_locking_lock_status_changed_details()
Check if the union tag is
file_locking_lock_status_changed_details.- Return type:
bool
- is_file_locking_policy_changed_details()
Check if the union tag is
file_locking_policy_changed_details.- Return type:
bool
- is_file_move_details()
Check if the union tag is
file_move_details.- Return type:
bool
- is_file_permanently_delete_details()
Check if the union tag is
file_permanently_delete_details.- Return type:
bool
- is_file_preview_details()
Check if the union tag is
file_preview_details.- Return type:
bool
- is_file_provider_migration_policy_changed_details()
Check if the union tag is
file_provider_migration_policy_changed_details.- Return type:
bool
- is_file_rename_details()
Check if the union tag is
file_rename_details.- Return type:
bool
- is_file_request_auto_close_details()
Check if the union tag is
file_request_auto_close_details.- Return type:
bool
- is_file_request_change_details()
Check if the union tag is
file_request_change_details.- Return type:
bool
- is_file_request_close_details()
Check if the union tag is
file_request_close_details.- Return type:
bool
- is_file_request_create_details()
Check if the union tag is
file_request_create_details.- Return type:
bool
- is_file_request_delete_details()
Check if the union tag is
file_request_delete_details.- Return type:
bool
- is_file_request_receive_file_details()
Check if the union tag is
file_request_receive_file_details.- Return type:
bool
- is_file_requests_change_policy_details()
Check if the union tag is
file_requests_change_policy_details.- Return type:
bool
- is_file_requests_emails_enabled_details()
Check if the union tag is
file_requests_emails_enabled_details.- Return type:
bool
- is_file_requests_emails_restricted_to_team_only_details()
Check if the union tag is
file_requests_emails_restricted_to_team_only_details.- Return type:
bool
- is_file_resolve_comment_details()
Check if the union tag is
file_resolve_comment_details.- Return type:
bool
- is_file_restore_details()
Check if the union tag is
file_restore_details.- Return type:
bool
- is_file_revert_details()
Check if the union tag is
file_revert_details.- Return type:
bool
- is_file_rollback_changes_details()
Check if the union tag is
file_rollback_changes_details.- Return type:
bool
- is_file_save_copy_reference_details()
Check if the union tag is
file_save_copy_reference_details.- Return type:
bool
- is_file_transfers_file_add_details()
Check if the union tag is
file_transfers_file_add_details.- Return type:
bool
- is_file_transfers_policy_changed_details()
Check if the union tag is
file_transfers_policy_changed_details.- Return type:
bool
- is_file_transfers_transfer_delete_details()
Check if the union tag is
file_transfers_transfer_delete_details.- Return type:
bool
- is_file_transfers_transfer_download_details()
Check if the union tag is
file_transfers_transfer_download_details.- Return type:
bool
- is_file_transfers_transfer_send_details()
Check if the union tag is
file_transfers_transfer_send_details.- Return type:
bool
- is_file_transfers_transfer_view_details()
Check if the union tag is
file_transfers_transfer_view_details.- Return type:
bool
- is_file_unlike_comment_details()
Check if the union tag is
file_unlike_comment_details.- Return type:
bool
- is_file_unresolve_comment_details()
Check if the union tag is
file_unresolve_comment_details.- Return type:
bool
- is_flexible_file_names_policy_changed_details()
Check if the union tag is
flexible_file_names_policy_changed_details.- Return type:
bool
- is_folder_link_restriction_policy_changed_details()
Check if the union tag is
folder_link_restriction_policy_changed_details.- Return type:
bool
- is_folder_overview_description_changed_details()
Check if the union tag is
folder_overview_description_changed_details.- Return type:
bool
- is_folder_overview_item_pinned_details()
Check if the union tag is
folder_overview_item_pinned_details.- Return type:
bool
- is_folder_overview_item_unpinned_details()
Check if the union tag is
folder_overview_item_unpinned_details.- Return type:
bool
- is_google_sso_change_policy_details()
Check if the union tag is
google_sso_change_policy_details.- Return type:
bool
- is_governance_policy_add_folder_failed_details()
Check if the union tag is
governance_policy_add_folder_failed_details.- Return type:
bool
- is_governance_policy_add_folders_details()
Check if the union tag is
governance_policy_add_folders_details.- Return type:
bool
- is_governance_policy_content_disposed_details()
Check if the union tag is
governance_policy_content_disposed_details.- Return type:
bool
- is_governance_policy_create_details()
Check if the union tag is
governance_policy_create_details.- Return type:
bool
- is_governance_policy_delete_details()
Check if the union tag is
governance_policy_delete_details.- Return type:
bool
- is_governance_policy_edit_details_details()
Check if the union tag is
governance_policy_edit_details_details.- Return type:
bool
- is_governance_policy_edit_duration_details()
Check if the union tag is
governance_policy_edit_duration_details.- Return type:
bool
- is_governance_policy_export_created_details()
Check if the union tag is
governance_policy_export_created_details.- Return type:
bool
- is_governance_policy_export_removed_details()
Check if the union tag is
governance_policy_export_removed_details.- Return type:
bool
- is_governance_policy_remove_folders_details()
Check if the union tag is
governance_policy_remove_folders_details.- Return type:
bool
- is_governance_policy_report_created_details()
Check if the union tag is
governance_policy_report_created_details.- Return type:
bool
- is_governance_policy_zip_part_downloaded_details()
Check if the union tag is
governance_policy_zip_part_downloaded_details.- Return type:
bool
- is_group_add_external_id_details()
Check if the union tag is
group_add_external_id_details.- Return type:
bool
- is_group_add_member_details()
Check if the union tag is
group_add_member_details.- Return type:
bool
- is_group_change_external_id_details()
Check if the union tag is
group_change_external_id_details.- Return type:
bool
- is_group_change_management_type_details()
Check if the union tag is
group_change_management_type_details.- Return type:
bool
- is_group_change_member_role_details()
Check if the union tag is
group_change_member_role_details.- Return type:
bool
- is_group_create_details()
Check if the union tag is
group_create_details.- Return type:
bool
- is_group_delete_details()
Check if the union tag is
group_delete_details.- Return type:
bool
- is_group_description_updated_details()
Check if the union tag is
group_description_updated_details.- Return type:
bool
- is_group_external_sharing_setting_override_changed_details()
Check if the union tag is
group_external_sharing_setting_override_changed_details.- Return type:
bool
- is_group_join_policy_updated_details()
Check if the union tag is
group_join_policy_updated_details.- Return type:
bool
- is_group_moved_details()
Check if the union tag is
group_moved_details.- Return type:
bool
- is_group_remove_external_id_details()
Check if the union tag is
group_remove_external_id_details.- Return type:
bool
- is_group_remove_member_details()
Check if the union tag is
group_remove_member_details.- Return type:
bool
- is_group_rename_details()
Check if the union tag is
group_rename_details.- Return type:
bool
- is_group_user_management_change_policy_details()
Check if the union tag is
group_user_management_change_policy_details.- Return type:
bool
- is_guest_admin_change_status_details()
Check if the union tag is
guest_admin_change_status_details.- Return type:
bool
- is_guest_admin_signed_in_via_trusted_teams_details()
Check if the union tag is
guest_admin_signed_in_via_trusted_teams_details.- Return type:
bool
- is_guest_admin_signed_out_via_trusted_teams_details()
Check if the union tag is
guest_admin_signed_out_via_trusted_teams_details.- Return type:
bool
- is_integration_connected_details()
Check if the union tag is
integration_connected_details.- Return type:
bool
- is_integration_disconnected_details()
Check if the union tag is
integration_disconnected_details.- Return type:
bool
- is_integration_policy_changed_details()
Check if the union tag is
integration_policy_changed_details.- Return type:
bool
- is_invite_acceptance_email_policy_changed_details()
Check if the union tag is
invite_acceptance_email_policy_changed_details.- Return type:
bool
- is_legal_holds_activate_a_hold_details()
Check if the union tag is
legal_holds_activate_a_hold_details.- Return type:
bool
- is_legal_holds_add_members_details()
Check if the union tag is
legal_holds_add_members_details.- Return type:
bool
- is_legal_holds_change_hold_details_details()
Check if the union tag is
legal_holds_change_hold_details_details.- Return type:
bool
- is_legal_holds_change_hold_name_details()
Check if the union tag is
legal_holds_change_hold_name_details.- Return type:
bool
- is_legal_holds_export_a_hold_details()
Check if the union tag is
legal_holds_export_a_hold_details.- Return type:
bool
- is_legal_holds_export_cancelled_details()
Check if the union tag is
legal_holds_export_cancelled_details.- Return type:
bool
- is_legal_holds_export_downloaded_details()
Check if the union tag is
legal_holds_export_downloaded_details.- Return type:
bool
- is_legal_holds_export_removed_details()
Check if the union tag is
legal_holds_export_removed_details.- Return type:
bool
- is_legal_holds_release_a_hold_details()
Check if the union tag is
legal_holds_release_a_hold_details.- Return type:
bool
- is_legal_holds_remove_members_details()
Check if the union tag is
legal_holds_remove_members_details.- Return type:
bool
- is_legal_holds_report_a_hold_details()
Check if the union tag is
legal_holds_report_a_hold_details.- Return type:
bool
- is_login_fail_details()
Check if the union tag is
login_fail_details.- Return type:
bool
- is_login_success_details()
Check if the union tag is
login_success_details.- Return type:
bool
- is_logout_details()
Check if the union tag is
logout_details.- Return type:
bool
- is_media_hub_adding_people_policy_changed_details()
Check if the union tag is
media_hub_adding_people_policy_changed_details.- Return type:
bool
- is_media_hub_download_policy_changed_details()
Check if the union tag is
media_hub_download_policy_changed_details.- Return type:
bool
- is_media_hub_file_downloaded_details()
Check if the union tag is
media_hub_file_downloaded_details.- Return type:
bool
- is_media_hub_link_sharing_policy_changed_details()
Check if the union tag is
media_hub_link_sharing_policy_changed_details.- Return type:
bool
- is_media_hub_project_team_add_details()
Check if the union tag is
media_hub_project_team_add_details.- Return type:
bool
- is_media_hub_project_team_delete_details()
Check if the union tag is
media_hub_project_team_delete_details.- Return type:
bool
- is_media_hub_project_team_role_changed_details()
Check if the union tag is
media_hub_project_team_role_changed_details.- Return type:
bool
Check if the union tag is
media_hub_shared_link_audience_changed_details.- Return type:
bool
Check if the union tag is
media_hub_shared_link_created_details.- Return type:
bool
Check if the union tag is
media_hub_shared_link_download_setting_changed_details.- Return type:
bool
Check if the union tag is
media_hub_shared_link_revoked_details.- Return type:
bool
- is_member_access_details_create_report_details()
Check if the union tag is
member_access_details_create_report_details.- Return type:
bool
- is_member_access_details_create_report_failed_details()
Check if the union tag is
member_access_details_create_report_failed_details.- Return type:
bool
- is_member_add_external_id_details()
Check if the union tag is
member_add_external_id_details.- Return type:
bool
- is_member_add_name_details()
Check if the union tag is
member_add_name_details.- Return type:
bool
- is_member_change_admin_role_details()
Check if the union tag is
member_change_admin_role_details.- Return type:
bool
- is_member_change_email_details()
Check if the union tag is
member_change_email_details.- Return type:
bool
- is_member_change_external_id_details()
Check if the union tag is
member_change_external_id_details.- Return type:
bool
- is_member_change_membership_type_details()
Check if the union tag is
member_change_membership_type_details.- Return type:
bool
- is_member_change_name_details()
Check if the union tag is
member_change_name_details.- Return type:
bool
- is_member_change_reseller_role_details()
Check if the union tag is
member_change_reseller_role_details.- Return type:
bool
- is_member_change_status_details()
Check if the union tag is
member_change_status_details.- Return type:
bool
- is_member_delete_manual_contacts_details()
Check if the union tag is
member_delete_manual_contacts_details.- Return type:
bool
- is_member_delete_profile_photo_details()
Check if the union tag is
member_delete_profile_photo_details.- Return type:
bool
- is_member_folder_contents_accessed_details()
Check if the union tag is
member_folder_contents_accessed_details.- Return type:
bool
- is_member_permanently_delete_account_contents_details()
Check if the union tag is
member_permanently_delete_account_contents_details.- Return type:
bool
- is_member_remove_external_id_details()
Check if the union tag is
member_remove_external_id_details.- Return type:
bool
- is_member_requests_change_policy_details()
Check if the union tag is
member_requests_change_policy_details.- Return type:
bool
- is_member_send_invite_policy_changed_details()
Check if the union tag is
member_send_invite_policy_changed_details.- Return type:
bool
- is_member_set_profile_photo_details()
Check if the union tag is
member_set_profile_photo_details.- Return type:
bool
- is_member_space_limits_add_custom_quota_details()
Check if the union tag is
member_space_limits_add_custom_quota_details.- Return type:
bool
- is_member_space_limits_add_exception_details()
Check if the union tag is
member_space_limits_add_exception_details.- Return type:
bool
- is_member_space_limits_change_caps_type_policy_details()
Check if the union tag is
member_space_limits_change_caps_type_policy_details.- Return type:
bool
- is_member_space_limits_change_custom_quota_details()
Check if the union tag is
member_space_limits_change_custom_quota_details.- Return type:
bool
- is_member_space_limits_change_policy_details()
Check if the union tag is
member_space_limits_change_policy_details.- Return type:
bool
- is_member_space_limits_change_status_details()
Check if the union tag is
member_space_limits_change_status_details.- Return type:
bool
- is_member_space_limits_remove_custom_quota_details()
Check if the union tag is
member_space_limits_remove_custom_quota_details.- Return type:
bool
- is_member_space_limits_remove_exception_details()
Check if the union tag is
member_space_limits_remove_exception_details.- Return type:
bool
- is_member_suggest_details()
Check if the union tag is
member_suggest_details.- Return type:
bool
- is_member_suggestions_change_policy_details()
Check if the union tag is
member_suggestions_change_policy_details.- Return type:
bool
- is_member_transfer_account_contents_details()
Check if the union tag is
member_transfer_account_contents_details.- Return type:
bool
- is_microsoft_login_change_policy_details()
Check if the union tag is
microsoft_login_change_policy_details.- Return type:
bool
- is_microsoft_office_addin_change_policy_details()
Check if the union tag is
microsoft_office_addin_change_policy_details.- Return type:
bool
- is_missing_details()
Check if the union tag is
missing_details.- Return type:
bool
- is_multi_team_identity_policy_changed_details()
Check if the union tag is
multi_team_identity_policy_changed_details.- Return type:
bool
- is_network_control_change_policy_details()
Check if the union tag is
network_control_change_policy_details.- Return type:
bool
- is_no_expiration_link_gen_create_report_details()
Check if the union tag is
no_expiration_link_gen_create_report_details.- Return type:
bool
- is_no_expiration_link_gen_report_failed_details()
Check if the union tag is
no_expiration_link_gen_report_failed_details.- Return type:
bool
- is_no_password_link_gen_create_report_details()
Check if the union tag is
no_password_link_gen_create_report_details.- Return type:
bool
- is_no_password_link_gen_report_failed_details()
Check if the union tag is
no_password_link_gen_report_failed_details.- Return type:
bool
- is_no_password_link_view_create_report_details()
Check if the union tag is
no_password_link_view_create_report_details.- Return type:
bool
- is_no_password_link_view_report_failed_details()
Check if the union tag is
no_password_link_view_report_failed_details.- Return type:
bool
- is_note_acl_invite_only_details()
Check if the union tag is
note_acl_invite_only_details.- Return type:
bool
- is_note_acl_link_details()
Check if the union tag is
note_acl_link_details.- Return type:
bool
- is_note_acl_team_link_details()
Check if the union tag is
note_acl_team_link_details.- Return type:
bool
Check if the union tag is
note_share_receive_details.- Return type:
bool
Check if the union tag is
note_shared_details.- Return type:
bool
- is_object_label_added_details()
Check if the union tag is
object_label_added_details.- Return type:
bool
- is_object_label_removed_details()
Check if the union tag is
object_label_removed_details.- Return type:
bool
- is_object_label_updated_value_details()
Check if the union tag is
object_label_updated_value_details.- Return type:
bool
Check if the union tag is
open_note_shared_details.- Return type:
bool
- is_organize_folder_with_tidy_details()
Check if the union tag is
organize_folder_with_tidy_details.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- is_outdated_link_view_create_report_details()
Check if the union tag is
outdated_link_view_create_report_details.- Return type:
bool
- is_outdated_link_view_report_failed_details()
Check if the union tag is
outdated_link_view_report_failed_details.- Return type:
bool
- is_paper_admin_export_start_details()
Check if the union tag is
paper_admin_export_start_details.- Return type:
bool
- is_paper_change_deployment_policy_details()
Check if the union tag is
paper_change_deployment_policy_details.- Return type:
bool
- is_paper_change_member_link_policy_details()
Check if the union tag is
paper_change_member_link_policy_details.- Return type:
bool
- is_paper_change_member_policy_details()
Check if the union tag is
paper_change_member_policy_details.- Return type:
bool
- is_paper_change_policy_details()
Check if the union tag is
paper_change_policy_details.- Return type:
bool
- is_paper_content_add_member_details()
Check if the union tag is
paper_content_add_member_details.- Return type:
bool
- is_paper_content_add_to_folder_details()
Check if the union tag is
paper_content_add_to_folder_details.- Return type:
bool
- is_paper_content_archive_details()
Check if the union tag is
paper_content_archive_details.- Return type:
bool
- is_paper_content_create_details()
Check if the union tag is
paper_content_create_details.- Return type:
bool
- is_paper_content_permanently_delete_details()
Check if the union tag is
paper_content_permanently_delete_details.- Return type:
bool
- is_paper_content_remove_from_folder_details()
Check if the union tag is
paper_content_remove_from_folder_details.- Return type:
bool
- is_paper_content_remove_member_details()
Check if the union tag is
paper_content_remove_member_details.- Return type:
bool
- is_paper_content_rename_details()
Check if the union tag is
paper_content_rename_details.- Return type:
bool
- is_paper_content_restore_details()
Check if the union tag is
paper_content_restore_details.- Return type:
bool
- is_paper_default_folder_policy_changed_details()
Check if the union tag is
paper_default_folder_policy_changed_details.- Return type:
bool
- is_paper_desktop_policy_changed_details()
Check if the union tag is
paper_desktop_policy_changed_details.- Return type:
bool
- is_paper_doc_add_comment_details()
Check if the union tag is
paper_doc_add_comment_details.- Return type:
bool
- is_paper_doc_change_member_role_details()
Check if the union tag is
paper_doc_change_member_role_details.- Return type:
bool
- is_paper_doc_change_sharing_policy_details()
Check if the union tag is
paper_doc_change_sharing_policy_details.- Return type:
bool
- is_paper_doc_change_subscription_details()
Check if the union tag is
paper_doc_change_subscription_details.- Return type:
bool
- is_paper_doc_delete_comment_details()
Check if the union tag is
paper_doc_delete_comment_details.- Return type:
bool
- is_paper_doc_deleted_details()
Check if the union tag is
paper_doc_deleted_details.- Return type:
bool
- is_paper_doc_download_details()
Check if the union tag is
paper_doc_download_details.- Return type:
bool
- is_paper_doc_edit_comment_details()
Check if the union tag is
paper_doc_edit_comment_details.- Return type:
bool
- is_paper_doc_edit_details()
Check if the union tag is
paper_doc_edit_details.- Return type:
bool
- is_paper_doc_followed_details()
Check if the union tag is
paper_doc_followed_details.- Return type:
bool
- is_paper_doc_mention_details()
Check if the union tag is
paper_doc_mention_details.- Return type:
bool
- is_paper_doc_ownership_changed_details()
Check if the union tag is
paper_doc_ownership_changed_details.- Return type:
bool
- is_paper_doc_request_access_details()
Check if the union tag is
paper_doc_request_access_details.- Return type:
bool
- is_paper_doc_resolve_comment_details()
Check if the union tag is
paper_doc_resolve_comment_details.- Return type:
bool
- is_paper_doc_revert_details()
Check if the union tag is
paper_doc_revert_details.- Return type:
bool
Check if the union tag is
paper_doc_slack_share_details.- Return type:
bool
- is_paper_doc_team_invite_details()
Check if the union tag is
paper_doc_team_invite_details.- Return type:
bool
- is_paper_doc_trashed_details()
Check if the union tag is
paper_doc_trashed_details.- Return type:
bool
- is_paper_doc_unresolve_comment_details()
Check if the union tag is
paper_doc_unresolve_comment_details.- Return type:
bool
- is_paper_doc_untrashed_details()
Check if the union tag is
paper_doc_untrashed_details.- Return type:
bool
- is_paper_doc_view_details()
Check if the union tag is
paper_doc_view_details.- Return type:
bool
- is_paper_enabled_users_group_addition_details()
Check if the union tag is
paper_enabled_users_group_addition_details.- Return type:
bool
- is_paper_enabled_users_group_removal_details()
Check if the union tag is
paper_enabled_users_group_removal_details.- Return type:
bool
- is_paper_external_view_allow_details()
Check if the union tag is
paper_external_view_allow_details.- Return type:
bool
- is_paper_external_view_default_team_details()
Check if the union tag is
paper_external_view_default_team_details.- Return type:
bool
- is_paper_external_view_forbid_details()
Check if the union tag is
paper_external_view_forbid_details.- Return type:
bool
- is_paper_folder_change_subscription_details()
Check if the union tag is
paper_folder_change_subscription_details.- Return type:
bool
- is_paper_folder_deleted_details()
Check if the union tag is
paper_folder_deleted_details.- Return type:
bool
- is_paper_folder_followed_details()
Check if the union tag is
paper_folder_followed_details.- Return type:
bool
- is_paper_folder_team_invite_details()
Check if the union tag is
paper_folder_team_invite_details.- Return type:
bool
- is_paper_published_link_change_permission_details()
Check if the union tag is
paper_published_link_change_permission_details.- Return type:
bool
- is_paper_published_link_create_details()
Check if the union tag is
paper_published_link_create_details.- Return type:
bool
- is_paper_published_link_disabled_details()
Check if the union tag is
paper_published_link_disabled_details.- Return type:
bool
- is_paper_published_link_view_details()
Check if the union tag is
paper_published_link_view_details.- Return type:
bool
- is_passkey_add_details()
Check if the union tag is
passkey_add_details.- Return type:
bool
- is_passkey_login_policy_changed_details()
Check if the union tag is
passkey_login_policy_changed_details.- Return type:
bool
- is_passkey_remove_details()
Check if the union tag is
passkey_remove_details.- Return type:
bool
- is_password_change_details()
Check if the union tag is
password_change_details.- Return type:
bool
- is_password_reset_all_details()
Check if the union tag is
password_reset_all_details.- Return type:
bool
- is_password_reset_details()
Check if the union tag is
password_reset_details.- Return type:
bool
- is_password_strength_requirements_change_policy_details()
Check if the union tag is
password_strength_requirements_change_policy_details.- Return type:
bool
- is_pending_secondary_email_added_details()
Check if the union tag is
pending_secondary_email_added_details.- Return type:
bool
- is_permanent_delete_change_policy_details()
Check if the union tag is
permanent_delete_change_policy_details.- Return type:
bool
- is_previews_ai_policy_changed_details()
Check if the union tag is
previews_ai_policy_changed_details.- Return type:
bool
- is_product_assigned_to_member_details()
Check if the union tag is
product_assigned_to_member_details.- Return type:
bool
- is_product_removed_from_member_details()
Check if the union tag is
product_removed_from_member_details.- Return type:
bool
- is_protect_action_add_collaborator_details()
Check if the union tag is
protect_action_add_collaborator_details.- Return type:
bool
- is_protect_action_add_link_details()
Check if the union tag is
protect_action_add_link_details.- Return type:
bool
- is_protect_action_delete_details()
Check if the union tag is
protect_action_delete_details.- Return type:
bool
- is_protect_action_export_details()
Check if the union tag is
protect_action_export_details.- Return type:
bool
- is_protect_action_remove_collaborator_details()
Check if the union tag is
protect_action_remove_collaborator_details.- Return type:
bool
- is_protect_action_remove_link_details()
Check if the union tag is
protect_action_remove_link_details.- Return type:
bool
- is_protect_action_stop_sharing_details()
Check if the union tag is
protect_action_stop_sharing_details.- Return type:
bool
- is_protect_internal_domains_changed_details()
Check if the union tag is
protect_internal_domains_changed_details.- Return type:
bool
- is_protect_policy_activated_details()
Check if the union tag is
protect_policy_activated_details.- Return type:
bool
- is_protect_policy_deactivated_details()
Check if the union tag is
protect_policy_deactivated_details.- Return type:
bool
- is_protect_policy_scheduled_details()
Check if the union tag is
protect_policy_scheduled_details.- Return type:
bool
- is_protect_policy_updated_details()
Check if the union tag is
protect_policy_updated_details.- Return type:
bool
- is_protect_report_view_details()
Check if the union tag is
protect_report_view_details.- Return type:
bool
- is_ransomware_alert_create_report_details()
Check if the union tag is
ransomware_alert_create_report_details.- Return type:
bool
- is_ransomware_alert_create_report_failed_details()
Check if the union tag is
ransomware_alert_create_report_failed_details.- Return type:
bool
- is_ransomware_restore_process_completed_details()
Check if the union tag is
ransomware_restore_process_completed_details.- Return type:
bool
- is_ransomware_restore_process_started_details()
Check if the union tag is
ransomware_restore_process_started_details.- Return type:
bool
- is_replay_adding_people_policy_changed_details()
Check if the union tag is
replay_adding_people_policy_changed_details.- Return type:
bool
- is_replay_file_delete_details()
Check if the union tag is
replay_file_delete_details.- Return type:
bool
- is_replay_file_downloaded_details()
Check if the union tag is
replay_file_downloaded_details.- Return type:
bool
Check if the union tag is
replay_file_shared_link_created_details.- Return type:
bool
Check if the union tag is
replay_file_shared_link_modified_details.- Return type:
bool
- is_replay_project_team_add_details()
Check if the union tag is
replay_project_team_add_details.- Return type:
bool
- is_replay_project_team_delete_details()
Check if the union tag is
replay_project_team_delete_details.- Return type:
bool
- is_replay_sharing_policy_changed_details()
Check if the union tag is
replay_sharing_policy_changed_details.- Return type:
bool
- is_replay_team_project_created_details()
Check if the union tag is
replay_team_project_created_details.- Return type:
bool
- is_reseller_support_change_policy_details()
Check if the union tag is
reseller_support_change_policy_details.- Return type:
bool
- is_reseller_support_session_end_details()
Check if the union tag is
reseller_support_session_end_details.- Return type:
bool
- is_reseller_support_session_start_details()
Check if the union tag is
reseller_support_session_start_details.- Return type:
bool
- is_rewind_folder_details()
Check if the union tag is
rewind_folder_details.- Return type:
bool
- is_rewind_policy_changed_details()
Check if the union tag is
rewind_policy_changed_details.- Return type:
bool
- is_risc_security_event_details()
Check if the union tag is
risc_security_event_details.- Return type:
bool
- is_secondary_email_deleted_details()
Check if the union tag is
secondary_email_deleted_details.- Return type:
bool
- is_secondary_email_verified_details()
Check if the union tag is
secondary_email_verified_details.- Return type:
bool
- is_secondary_mails_policy_changed_details()
Check if the union tag is
secondary_mails_policy_changed_details.- Return type:
bool
- is_send_and_track_file_added_details()
Check if the union tag is
send_and_track_file_added_details.- Return type:
bool
- is_send_and_track_file_renamed_details()
Check if the union tag is
send_and_track_file_renamed_details.- Return type:
bool
- is_send_and_track_file_updated_details()
Check if the union tag is
send_and_track_file_updated_details.- Return type:
bool
- is_send_and_track_link_created_details()
Check if the union tag is
send_and_track_link_created_details.- Return type:
bool
- is_send_and_track_link_deleted_details()
Check if the union tag is
send_and_track_link_deleted_details.- Return type:
bool
- is_send_and_track_link_updated_details()
Check if the union tag is
send_and_track_link_updated_details.- Return type:
bool
- is_send_and_track_link_viewed_details()
Check if the union tag is
send_and_track_link_viewed_details.- Return type:
bool
- is_send_and_track_policy_changed_details()
Check if the union tag is
send_and_track_policy_changed_details.- Return type:
bool
- is_send_and_track_removed_file_and_associated_links_details()
Check if the union tag is
send_and_track_removed_file_and_associated_links_details.- Return type:
bool
- is_send_external_sharing_policy_changed_details()
Check if the union tag is
send_external_sharing_policy_changed_details.- Return type:
bool
- is_send_for_signature_policy_changed_details()
Check if the union tag is
send_for_signature_policy_changed_details.- Return type:
bool
- is_sf_add_group_details()
Check if the union tag is
sf_add_group_details.- Return type:
bool
Check if the union tag is
sf_allow_non_members_to_view_shared_links_details.- Return type:
bool
- is_sf_external_invite_warn_details()
Check if the union tag is
sf_external_invite_warn_details.- Return type:
bool
- is_sf_fb_invite_change_role_details()
Check if the union tag is
sf_fb_invite_change_role_details.- Return type:
bool
- is_sf_fb_invite_details()
Check if the union tag is
sf_fb_invite_details.- Return type:
bool
- is_sf_fb_uninvite_details()
Check if the union tag is
sf_fb_uninvite_details.- Return type:
bool
- is_sf_invite_group_details()
Check if the union tag is
sf_invite_group_details.- Return type:
bool
- is_sf_team_grant_access_details()
Check if the union tag is
sf_team_grant_access_details.- Return type:
bool
- is_sf_team_invite_change_role_details()
Check if the union tag is
sf_team_invite_change_role_details.- Return type:
bool
- is_sf_team_invite_details()
Check if the union tag is
sf_team_invite_details.- Return type:
bool
- is_sf_team_join_details()
Check if the union tag is
sf_team_join_details.- Return type:
bool
- is_sf_team_join_from_oob_link_details()
Check if the union tag is
sf_team_join_from_oob_link_details.- Return type:
bool
- is_sf_team_uninvite_details()
Check if the union tag is
sf_team_uninvite_details.- Return type:
bool
Check if the union tag is
shared_content_add_invitees_details.- Return type:
bool
Check if the union tag is
shared_content_add_link_expiry_details.- Return type:
bool
Check if the union tag is
shared_content_add_link_password_details.- Return type:
bool
Check if the union tag is
shared_content_add_member_details.- Return type:
bool
Check if the union tag is
shared_content_change_downloads_policy_details.- Return type:
bool
Check if the union tag is
shared_content_change_invitee_role_details.- Return type:
bool
Check if the union tag is
shared_content_change_link_audience_details.- Return type:
bool
Check if the union tag is
shared_content_change_link_expiry_details.- Return type:
bool
Check if the union tag is
shared_content_change_link_password_details.- Return type:
bool
Check if the union tag is
shared_content_change_member_role_details.- Return type:
bool
Check if the union tag is
shared_content_change_viewer_info_policy_details.- Return type:
bool
Check if the union tag is
shared_content_claim_invitation_details.- Return type:
bool
Check if the union tag is
shared_content_copy_details.- Return type:
bool
Check if the union tag is
shared_content_download_details.- Return type:
bool
Check if the union tag is
shared_content_relinquish_membership_details.- Return type:
bool
Check if the union tag is
shared_content_remove_invitees_details.- Return type:
bool
Check if the union tag is
shared_content_remove_link_expiry_details.- Return type:
bool
Check if the union tag is
shared_content_remove_link_password_details.- Return type:
bool
Check if the union tag is
shared_content_remove_member_details.- Return type:
bool
Check if the union tag is
shared_content_request_access_details.- Return type:
bool
Check if the union tag is
shared_content_restore_invitees_details.- Return type:
bool
Check if the union tag is
shared_content_restore_member_details.- Return type:
bool
Check if the union tag is
shared_content_unshare_details.- Return type:
bool
Check if the union tag is
shared_content_view_details.- Return type:
bool
Check if the union tag is
shared_folder_change_link_policy_details.- Return type:
bool
Check if the union tag is
shared_folder_change_members_inheritance_policy_details.- Return type:
bool
Check if the union tag is
shared_folder_change_members_management_policy_details.- Return type:
bool
Check if the union tag is
shared_folder_change_members_policy_details.- Return type:
bool
Check if the union tag is
shared_folder_create_details.- Return type:
bool
Check if the union tag is
shared_folder_decline_invitation_details.- Return type:
bool
Check if the union tag is
shared_folder_mount_details.- Return type:
bool
Check if the union tag is
shared_folder_nest_details.- Return type:
bool
Check if the union tag is
shared_folder_transfer_ownership_details.- Return type:
bool
Check if the union tag is
shared_folder_unmount_details.- Return type:
bool
Check if the union tag is
shared_folders_create_report_details.- Return type:
bool
Check if the union tag is
shared_folders_create_report_failed_details.- Return type:
bool
Check if the union tag is
shared_link_add_expiry_details.- Return type:
bool
Check if the union tag is
shared_link_change_expiry_details.- Return type:
bool
Check if the union tag is
shared_link_change_visibility_details.- Return type:
bool
Check if the union tag is
shared_link_copy_details.- Return type:
bool
Check if the union tag is
shared_link_create_details.- Return type:
bool
Check if the union tag is
shared_link_default_permissions_policy_changed_details.- Return type:
bool
Check if the union tag is
shared_link_disable_details.- Return type:
bool
Check if the union tag is
shared_link_download_details.- Return type:
bool
Check if the union tag is
shared_link_remove_expiry_details.- Return type:
bool
Check if the union tag is
shared_link_remove_visitor_details.- Return type:
bool
Check if the union tag is
shared_link_settings_add_expiration_details.- Return type:
bool
Check if the union tag is
shared_link_settings_add_password_details.- Return type:
bool
Check if the union tag is
shared_link_settings_allow_download_disabled_details.- Return type:
bool
Check if the union tag is
shared_link_settings_allow_download_enabled_details.- Return type:
bool
Check if the union tag is
shared_link_settings_change_audience_details.- Return type:
bool
Check if the union tag is
shared_link_settings_change_expiration_details.- Return type:
bool
Check if the union tag is
shared_link_settings_change_password_details.- Return type:
bool
Check if the union tag is
shared_link_settings_remove_expiration_details.- Return type:
bool
Check if the union tag is
shared_link_settings_remove_password_details.- Return type:
bool
Check if the union tag is
shared_link_share_details.- Return type:
bool
Check if the union tag is
shared_link_view_details.- Return type:
bool
Check if the union tag is
shared_note_opened_details.- Return type:
bool
- is_sharing_change_folder_join_policy_details()
Check if the union tag is
sharing_change_folder_join_policy_details.- Return type:
bool
- is_sharing_change_link_allow_change_expiration_policy_details()
Check if the union tag is
sharing_change_link_allow_change_expiration_policy_details.- Return type:
bool
- is_sharing_change_link_default_expiration_policy_details()
Check if the union tag is
sharing_change_link_default_expiration_policy_details.- Return type:
bool
- is_sharing_change_link_enforce_password_policy_details()
Check if the union tag is
sharing_change_link_enforce_password_policy_details.- Return type:
bool
- is_sharing_change_link_policy_details()
Check if the union tag is
sharing_change_link_policy_details.- Return type:
bool
- is_sharing_change_member_policy_details()
Check if the union tag is
sharing_change_member_policy_details.- Return type:
bool
- is_shmodel_disable_downloads_details()
Check if the union tag is
shmodel_disable_downloads_details.- Return type:
bool
- is_shmodel_enable_downloads_details()
Check if the union tag is
shmodel_enable_downloads_details.- Return type:
bool
Check if the union tag is
shmodel_group_share_details.- Return type:
bool
- is_showcase_access_granted_details()
Check if the union tag is
showcase_access_granted_details.- Return type:
bool
- is_showcase_add_member_details()
Check if the union tag is
showcase_add_member_details.- Return type:
bool
- is_showcase_archived_details()
Check if the union tag is
showcase_archived_details.- Return type:
bool
- is_showcase_change_download_policy_details()
Check if the union tag is
showcase_change_download_policy_details.- Return type:
bool
- is_showcase_change_enabled_policy_details()
Check if the union tag is
showcase_change_enabled_policy_details.- Return type:
bool
- is_showcase_change_external_sharing_policy_details()
Check if the union tag is
showcase_change_external_sharing_policy_details.- Return type:
bool
- is_showcase_created_details()
Check if the union tag is
showcase_created_details.- Return type:
bool
- is_showcase_delete_comment_details()
Check if the union tag is
showcase_delete_comment_details.- Return type:
bool
- is_showcase_edit_comment_details()
Check if the union tag is
showcase_edit_comment_details.- Return type:
bool
- is_showcase_edited_details()
Check if the union tag is
showcase_edited_details.- Return type:
bool
- is_showcase_file_added_details()
Check if the union tag is
showcase_file_added_details.- Return type:
bool
- is_showcase_file_download_details()
Check if the union tag is
showcase_file_download_details.- Return type:
bool
- is_showcase_file_removed_details()
Check if the union tag is
showcase_file_removed_details.- Return type:
bool
- is_showcase_file_view_details()
Check if the union tag is
showcase_file_view_details.- Return type:
bool
- is_showcase_permanently_deleted_details()
Check if the union tag is
showcase_permanently_deleted_details.- Return type:
bool
- is_showcase_post_comment_details()
Check if the union tag is
showcase_post_comment_details.- Return type:
bool
- is_showcase_remove_member_details()
Check if the union tag is
showcase_remove_member_details.- Return type:
bool
- is_showcase_renamed_details()
Check if the union tag is
showcase_renamed_details.- Return type:
bool
- is_showcase_request_access_details()
Check if the union tag is
showcase_request_access_details.- Return type:
bool
- is_showcase_resolve_comment_details()
Check if the union tag is
showcase_resolve_comment_details.- Return type:
bool
- is_showcase_restored_details()
Check if the union tag is
showcase_restored_details.- Return type:
bool
- is_showcase_trashed_deprecated_details()
Check if the union tag is
showcase_trashed_deprecated_details.- Return type:
bool
- is_showcase_trashed_details()
Check if the union tag is
showcase_trashed_details.- Return type:
bool
- is_showcase_unresolve_comment_details()
Check if the union tag is
showcase_unresolve_comment_details.- Return type:
bool
- is_showcase_untrashed_deprecated_details()
Check if the union tag is
showcase_untrashed_deprecated_details.- Return type:
bool
- is_showcase_untrashed_details()
Check if the union tag is
showcase_untrashed_details.- Return type:
bool
- is_showcase_view_details()
Check if the union tag is
showcase_view_details.- Return type:
bool
- is_sign_external_sharing_policy_changed_details()
Check if the union tag is
sign_external_sharing_policy_changed_details.- Return type:
bool
- is_sign_in_as_session_end_details()
Check if the union tag is
sign_in_as_session_end_details.- Return type:
bool
- is_sign_in_as_session_start_details()
Check if the union tag is
sign_in_as_session_start_details.- Return type:
bool
- is_sign_signature_request_canceled_details()
Check if the union tag is
sign_signature_request_canceled_details.- Return type:
bool
- is_sign_signature_request_completed_details()
Check if the union tag is
sign_signature_request_completed_details.- Return type: