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_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_internal_domains_changed_details()
Only call this if
is_protect_internal_domains_changed_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_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_internal_domains_changed_details()
Check if the union tag is
protect_internal_domains_changed_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:
bool
- is_sign_signature_request_declined_details()
Check if the union tag is
sign_signature_request_declined_details.- Return type:
bool
- is_sign_signature_request_opened_details()
Check if the union tag is
sign_signature_request_opened_details.- Return type:
bool
- is_sign_signature_request_reminder_sent_details()
Check if the union tag is
sign_signature_request_reminder_sent_details.- Return type:
bool
- is_sign_signature_request_sent_details()
Check if the union tag is
sign_signature_request_sent_details.- Return type:
bool
- is_sign_template_created_details()
Check if the union tag is
sign_template_created_details.- Return type:
bool
- is_sign_template_creation_permission_changed_details()
Check if the union tag is
sign_template_creation_permission_changed_details.- Return type:
bool
Check if the union tag is
sign_template_shared_details.- Return type:
bool
- is_smart_sync_change_policy_details()
Check if the union tag is
smart_sync_change_policy_details.- Return type:
bool
- is_smart_sync_create_admin_privilege_report_details()
Check if the union tag is
smart_sync_create_admin_privilege_report_details.- Return type:
bool
- is_smart_sync_not_opt_out_details()
Check if the union tag is
smart_sync_not_opt_out_details.- Return type:
bool
- is_smart_sync_opt_out_details()
Check if the union tag is
smart_sync_opt_out_details.- Return type:
bool
- is_smarter_smart_sync_policy_changed_details()
Check if the union tag is
smarter_smart_sync_policy_changed_details.- Return type:
bool
- is_sso_add_cert_details()
Check if the union tag is
sso_add_cert_details.- Return type:
bool
- is_sso_add_login_url_details()
Check if the union tag is
sso_add_login_url_details.- Return type:
bool
- is_sso_add_logout_url_details()
Check if the union tag is
sso_add_logout_url_details.- Return type:
bool
- is_sso_change_cert_details()
Check if the union tag is
sso_change_cert_details.- Return type:
bool
- is_sso_change_login_url_details()
Check if the union tag is
sso_change_login_url_details.- Return type:
bool
- is_sso_change_logout_url_details()
Check if the union tag is
sso_change_logout_url_details.- Return type:
bool
- is_sso_change_policy_details()
Check if the union tag is
sso_change_policy_details.- Return type:
bool
- is_sso_change_saml_identity_mode_details()
Check if the union tag is
sso_change_saml_identity_mode_details.- Return type:
bool
- is_sso_error_details()
Check if the union tag is
sso_error_details.- Return type:
bool
- is_sso_remove_cert_details()
Check if the union tag is
sso_remove_cert_details.- Return type:
bool
- is_sso_remove_login_url_details()
Check if the union tag is
sso_remove_login_url_details.- Return type:
bool
- is_sso_remove_logout_url_details()
Check if the union tag is
sso_remove_logout_url_details.- Return type:
bool
- is_stack_cross_team_access_policy_changed_details()
Check if the union tag is
stack_cross_team_access_policy_changed_details.- Return type:
bool
- is_started_enterprise_admin_session_details()
Check if the union tag is
started_enterprise_admin_session_details.- Return type:
bool
- is_team_activity_create_report_details()
Check if the union tag is
team_activity_create_report_details.- Return type:
bool
- is_team_activity_create_report_fail_details()
Check if the union tag is
team_activity_create_report_fail_details.- Return type:
bool
- is_team_branding_policy_changed_details()
Check if the union tag is
team_branding_policy_changed_details.- Return type:
bool
- is_team_encryption_key_activate_key_details()
Check if the union tag is
team_encryption_key_activate_key_details.- Return type:
bool
- is_team_encryption_key_cancel_key_deletion_details()
Check if the union tag is
team_encryption_key_cancel_key_deletion_details.- Return type:
bool
- is_team_encryption_key_create_key_details()
Check if the union tag is
team_encryption_key_create_key_details.- Return type:
bool
- is_team_encryption_key_deactivate_key_details()
Check if the union tag is
team_encryption_key_deactivate_key_details.- Return type:
bool
- is_team_encryption_key_delete_key_details()
Check if the union tag is
team_encryption_key_delete_key_details.- Return type:
bool
- is_team_encryption_key_disable_key_details()
Check if the union tag is
team_encryption_key_disable_key_details.- Return type:
bool
- is_team_encryption_key_enable_key_details()
Check if the union tag is
team_encryption_key_enable_key_details.- Return type:
bool
- is_team_encryption_key_rotate_key_details()
Check if the union tag is
team_encryption_key_rotate_key_details.- Return type:
bool
- is_team_encryption_key_schedule_key_deletion_details()
Check if the union tag is
team_encryption_key_schedule_key_deletion_details.- Return type:
bool
- is_team_extensions_policy_changed_details()
Check if the union tag is
team_extensions_policy_changed_details.- Return type:
bool
- is_team_folder_change_status_details()
Check if the union tag is
team_folder_change_status_details.- Return type:
bool
- is_team_folder_create_details()
Check if the union tag is
team_folder_create_details.- Return type:
bool
- is_team_folder_downgrade_details()
Check if the union tag is
team_folder_downgrade_details.- Return type:
bool
- is_team_folder_permanently_delete_details()
Check if the union tag is
team_folder_permanently_delete_details.- Return type:
bool
- is_team_folder_rename_details()
Check if the union tag is
team_folder_rename_details.- Return type:
bool
- is_team_folder_space_limits_change_caps_type_details()
Check if the union tag is
team_folder_space_limits_change_caps_type_details.- Return type:
bool
- is_team_folder_space_limits_change_limit_details()
Check if the union tag is
team_folder_space_limits_change_limit_details.- Return type:
bool
- is_team_folder_space_limits_change_notification_target_details()
Check if the union tag is
team_folder_space_limits_change_notification_target_details.- Return type:
bool
- is_team_folders_create_report_details()
Check if the union tag is
team_folders_create_report_details.- Return type:
bool
- is_team_folders_create_report_failed_details()
Check if the union tag is
team_folders_create_report_failed_details.- Return type:
bool
- is_team_member_storage_request_policy_changed_details()
Check if the union tag is
team_member_storage_request_policy_changed_details.- Return type:
bool
- is_team_merge_from_details()
Check if the union tag is
team_merge_from_details.- Return type:
bool
- is_team_merge_request_accepted_details()
Check if the union tag is
team_merge_request_accepted_details.- Return type:
bool
- is_team_merge_request_accepted_shown_to_primary_team_details()
Check if the union tag is
team_merge_request_accepted_shown_to_primary_team_details.- Return type:
bool
- is_team_merge_request_accepted_shown_to_secondary_team_details()
Check if the union tag is
team_merge_request_accepted_shown_to_secondary_team_details.- Return type:
bool
- is_team_merge_request_auto_canceled_details()
Check if the union tag is
team_merge_request_auto_canceled_details.- Return type:
bool
- is_team_merge_request_canceled_details()
Check if the union tag is
team_merge_request_canceled_details.- Return type:
bool
- is_team_merge_request_canceled_shown_to_primary_team_details()
Check if the union tag is
team_merge_request_canceled_shown_to_primary_team_details.- Return type:
bool
- is_team_merge_request_canceled_shown_to_secondary_team_details()
Check if the union tag is
team_merge_request_canceled_shown_to_secondary_team_details.- Return type:
bool
- is_team_merge_request_expired_details()
Check if the union tag is
team_merge_request_expired_details.- Return type:
bool
- is_team_merge_request_expired_shown_to_primary_team_details()
Check if the union tag is
team_merge_request_expired_shown_to_primary_team_details.- Return type:
bool
- is_team_merge_request_expired_shown_to_secondary_team_details()
Check if the union tag is
team_merge_request_expired_shown_to_secondary_team_details.- Return type:
bool
- is_team_merge_request_rejected_shown_to_primary_team_details()
Check if the union tag is
team_merge_request_rejected_shown_to_primary_team_details.- Return type:
bool
- is_team_merge_request_rejected_shown_to_secondary_team_details()
Check if the union tag is
team_merge_request_rejected_shown_to_secondary_team_details.- Return type:
bool
- is_team_merge_request_reminder_details()
Check if the union tag is
team_merge_request_reminder_details.- Return type:
bool
- is_team_merge_request_reminder_shown_to_primary_team_details()
Check if the union tag is
team_merge_request_reminder_shown_to_primary_team_details.- Return type:
bool
- is_team_merge_request_reminder_shown_to_secondary_team_details()
Check if the union tag is
team_merge_request_reminder_shown_to_secondary_team_details.- Return type:
bool
- is_team_merge_request_revoked_details()
Check if the union tag is
team_merge_request_revoked_details.- Return type:
bool
- is_team_merge_request_sent_shown_to_primary_team_details()
Check if the union tag is
team_merge_request_sent_shown_to_primary_team_details.- Return type:
bool
- is_team_merge_request_sent_shown_to_secondary_team_details()
Check if the union tag is
team_merge_request_sent_shown_to_secondary_team_details.- Return type:
bool
- is_team_merge_to_details()
Check if the union tag is
team_merge_to_details.- Return type:
bool
- is_team_profile_add_background_details()
Check if the union tag is
team_profile_add_background_details.- Return type:
bool
- is_team_profile_add_logo_details()
Check if the union tag is
team_profile_add_logo_details.- Return type:
bool
- is_team_profile_change_background_details()
Check if the union tag is
team_profile_change_background_details.- Return type:
bool
- is_team_profile_change_default_language_details()
Check if the union tag is
team_profile_change_default_language_details.- Return type:
bool
- is_team_profile_change_logo_details()
Check if the union tag is
team_profile_change_logo_details.- Return type:
bool
- is_team_profile_change_name_details()
Check if the union tag is
team_profile_change_name_details.- Return type:
bool
- is_team_profile_remove_background_details()
Check if the union tag is
team_profile_remove_background_details.- Return type:
bool
- is_team_profile_remove_logo_details()
Check if the union tag is
team_profile_remove_logo_details.- Return type:
bool
- is_team_selective_sync_policy_changed_details()
Check if the union tag is
team_selective_sync_policy_changed_details.- Return type:
bool
- is_team_selective_sync_settings_changed_details()
Check if the union tag is
team_selective_sync_settings_changed_details.- Return type:
bool
- is_team_sharing_whitelist_subjects_changed_details()
Check if the union tag is
team_sharing_whitelist_subjects_changed_details.- Return type:
bool
- is_team_storage_create_report_details()
Check if the union tag is
team_storage_create_report_details.- Return type:
bool
- is_team_storage_create_report_failed_details()
Check if the union tag is
team_storage_create_report_failed_details.- Return type:
bool
- is_tfa_add_backup_phone_details()
Check if the union tag is
tfa_add_backup_phone_details.- Return type:
bool
- is_tfa_add_exception_details()
Check if the union tag is
tfa_add_exception_details.- Return type:
bool
- is_tfa_add_security_key_details()
Check if the union tag is
tfa_add_security_key_details.- Return type:
bool
- is_tfa_change_backup_phone_details()
Check if the union tag is
tfa_change_backup_phone_details.- Return type:
bool
- is_tfa_change_policy_details()
Check if the union tag is
tfa_change_policy_details.- Return type:
bool
- is_tfa_change_status_details()
Check if the union tag is
tfa_change_status_details.- Return type:
bool
- is_tfa_remove_backup_phone_details()
Check if the union tag is
tfa_remove_backup_phone_details.- Return type:
bool
- is_tfa_remove_exception_details()
Check if the union tag is
tfa_remove_exception_details.- Return type:
bool
- is_tfa_remove_security_key_details()
Check if the union tag is
tfa_remove_security_key_details.- Return type:
bool
- is_tfa_reset_details()
Check if the union tag is
tfa_reset_details.- Return type:
bool
- is_top_level_content_policy_changed_details()
Check if the union tag is
top_level_content_policy_changed_details.- Return type:
bool
- is_two_account_change_policy_details()
Check if the union tag is
two_account_change_policy_details.- Return type:
bool
- is_undo_naming_convention_details()
Check if the union tag is
undo_naming_convention_details.- Return type:
bool
- is_undo_organize_folder_with_tidy_details()
Check if the union tag is
undo_organize_folder_with_tidy_details.- Return type:
bool
- is_user_tags_added_details()
Check if the union tag is
user_tags_added_details.- Return type:
bool
- is_user_tags_removed_details()
Check if the union tag is
user_tags_removed_details.- Return type:
bool
- is_viewer_info_policy_changed_details()
Check if the union tag is
viewer_info_policy_changed_details.- Return type:
bool
- is_watermarking_policy_changed_details()
Check if the union tag is
watermarking_policy_changed_details.- Return type:
bool
- is_web_sessions_change_active_session_limit_details()
Check if the union tag is
web_sessions_change_active_session_limit_details.- Return type:
bool
- is_web_sessions_change_fixed_length_policy_details()
Check if the union tag is
web_sessions_change_fixed_length_policy_details.- Return type:
bool
- is_web_sessions_change_idle_length_policy_details()
Check if the union tag is
web_sessions_change_idle_length_policy_details.- Return type:
bool
- classmethod legal_holds_activate_a_hold_details(val)
Create an instance of this class set to the
legal_holds_activate_a_hold_detailstag with valueval.- Parameters:
- Return type:
- classmethod legal_holds_add_members_details(val)
Create an instance of this class set to the
legal_holds_add_members_detailstag with valueval.- Parameters:
- Return type:
- classmethod legal_holds_change_hold_details_details(val)
Create an instance of this class set to the
legal_holds_change_hold_details_detailstag with valueval.- Parameters:
- Return type:
- classmethod legal_holds_change_hold_name_details(val)
Create an instance of this class set to the
legal_holds_change_hold_name_detailstag with valueval.- Parameters:
- Return type:
- classmethod legal_holds_export_a_hold_details(val)
Create an instance of this class set to the
legal_holds_export_a_hold_detailstag with valueval.- Parameters:
- Return type:
- classmethod legal_holds_export_cancelled_details(val)
Create an instance of this class set to the
legal_holds_export_cancelled_detailstag with valueval.- Parameters:
- Return type:
- classmethod legal_holds_export_downloaded_details(val)
Create an instance of this class set to the
legal_holds_export_downloaded_detailstag with valueval.- Parameters:
- Return type:
- classmethod legal_holds_export_removed_details(val)
Create an instance of this class set to the
legal_holds_export_removed_detailstag with valueval.- Parameters:
- Return type:
- classmethod legal_holds_release_a_hold_details(val)
Create an instance of this class set to the
legal_holds_release_a_hold_detailstag with valueval.- Parameters:
- Return type:
- classmethod legal_holds_remove_members_details(val)
Create an instance of this class set to the
legal_holds_remove_members_detailstag with valueval.- Parameters:
- Return type:
- classmethod legal_holds_report_a_hold_details(val)
Create an instance of this class set to the
legal_holds_report_a_hold_detailstag with valueval.- Parameters:
- Return type:
- classmethod login_fail_details(val)
Create an instance of this class set to the
login_fail_detailstag with valueval.- Parameters:
val (LoginFailDetails)
- Return type:
- classmethod login_success_details(val)
Create an instance of this class set to the
login_success_detailstag with valueval.- Parameters:
val (LoginSuccessDetails)
- Return type:
- classmethod logout_details(val)
Create an instance of this class set to the
logout_detailstag with valueval.- Parameters:
val (LogoutDetails)
- Return type:
- classmethod media_hub_adding_people_policy_changed_details(val)
Create an instance of this class set to the
media_hub_adding_people_policy_changed_detailstag with valueval.- Parameters:
- Return type:
- classmethod media_hub_download_policy_changed_details(val)
Create an instance of this class set to the
media_hub_download_policy_changed_detailstag with valueval.- Parameters:
- Return type:
- classmethod media_hub_file_downloaded_details(val)
Create an instance of this class set to the
media_hub_file_downloaded_detailstag with valueval.- Parameters:
- Return type:
- classmethod media_hub_link_sharing_policy_changed_details(val)
Create an instance of this class set to the
media_hub_link_sharing_policy_changed_detailstag with valueval.- Parameters:
- Return type:
- classmethod media_hub_project_team_add_details(val)
Create an instance of this class set to the
media_hub_project_team_add_detailstag with valueval.- Parameters:
- Return type:
- classmethod media_hub_project_team_delete_details(val)
Create an instance of this class set to the
media_hub_project_team_delete_detailstag with valueval.- Parameters:
- Return type:
- classmethod media_hub_project_team_role_changed_details(val)
Create an instance of this class set to the
media_hub_project_team_role_changed_detailstag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
media_hub_shared_link_audience_changed_detailstag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
media_hub_shared_link_created_detailstag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
media_hub_shared_link_download_setting_changed_detailstag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
media_hub_shared_link_revoked_detailstag with valueval.- Parameters:
- Return type:
- classmethod member_access_details_create_report_details(val)
Create an instance of this class set to the
member_access_details_create_report_detailstag with valueval.- Parameters:
- Return type:
- classmethod member_access_details_create_report_failed_details(val)
Create an instance of this class set to the
member_access_details_create_report_failed_detailstag with valueval.- Parameters:
- Return type:
- classmethod member_add_external_id_details(val)
Create an instance of this class set to the
member_add_external_id_detailstag with valueval.- Parameters:
- Return type:
- classmethod member_add_name_details(val)
Create an instance of this class set to the
member_add_name_detailstag with valueval.- Parameters:
val (MemberAddNameDetails)
- Return type:
- classmethod member_change_admin_role_details(val)
Create an instance of this class set to the
member_change_admin_role_detailstag with valueval.- Parameters:
- Return type:
- classmethod member_change_email_details(val)
Create an instance of this class set to the
member_change_email_detailstag with valueval.- Parameters:
val (MemberChangeEmailDetails)
- Return type:
- classmethod member_change_external_id_details(val)
Create an instance of this class set to the
member_change_external_id_detailstag with valueval.- Parameters:
- Return type:
- classmethod member_change_membership_type_details(val)
Create an instance of this class set to the
member_change_membership_type_detailstag with valueval.- Parameters:
- Return type:
- classmethod member_change_name_details(val)
Create an instance of this class set to the
member_change_name_detailstag with valueval.- Parameters:
val (MemberChangeNameDetails)
- Return type:
- classmethod member_change_reseller_role_details(val)
Create an instance of this class set to the
member_change_reseller_role_detailstag with valueval.- Parameters:
- Return type:
- classmethod member_change_status_details(val)
Create an instance of this class set to the
member_change_status_detailstag with valueval.- Parameters:
- Return type:
- classmethod member_delete_manual_contacts_details(val)
Create an instance of this class set to the
member_delete_manual_contacts_detailstag with valueval.- Parameters:
- Return type:
- classmethod member_delete_profile_photo_details(val)
Create an instance of this class set to the
member_delete_profile_photo_detailstag with valueval.- Parameters:
- Return type:
- classmethod member_permanently_delete_account_contents_details(val)
Create an instance of this class set to the
member_permanently_delete_account_contents_detailstag with valueval.- Parameters:
- Return type:
- classmethod member_remove_external_id_details(val)
Create an instance of this class set to the
member_remove_external_id_detailstag with valueval.- Parameters:
- Return type:
- classmethod member_requests_change_policy_details(val)
Create an instance of this class set to the
member_requests_change_policy_detailstag with valueval.- Parameters:
- Return type:
- classmethod member_send_invite_policy_changed_details(val)
Create an instance of this class set to the
member_send_invite_policy_changed_detailstag with valueval.- Parameters:
- Return type:
- classmethod member_set_profile_photo_details(val)
Create an instance of this class set to the
member_set_profile_photo_detailstag with valueval.- Parameters:
- Return type:
- classmethod member_space_limits_add_custom_quota_details(val)
Create an instance of this class set to the
member_space_limits_add_custom_quota_detailstag with valueval.- Parameters:
- Return type:
- classmethod member_space_limits_add_exception_details(val)
Create an instance of this class set to the
member_space_limits_add_exception_detailstag with valueval.- Parameters:
- Return type:
- classmethod member_space_limits_change_caps_type_policy_details(val)
Create an instance of this class set to the
member_space_limits_change_caps_type_policy_detailstag with valueval.- Parameters:
- Return type:
- classmethod member_space_limits_change_custom_quota_details(val)
Create an instance of this class set to the
member_space_limits_change_custom_quota_detailstag with valueval.- Parameters:
- Return type:
- classmethod member_space_limits_change_policy_details(val)
Create an instance of this class set to the
member_space_limits_change_policy_detailstag with valueval.- Parameters:
- Return type:
- classmethod member_space_limits_change_status_details(val)
Create an instance of this class set to the
member_space_limits_change_status_detailstag with valueval.- Parameters:
- Return type:
- classmethod member_space_limits_remove_custom_quota_details(val)
Create an instance of this class set to the
member_space_limits_remove_custom_quota_detailstag with valueval.- Parameters:
- Return type:
- classmethod member_space_limits_remove_exception_details(val)
Create an instance of this class set to the
member_space_limits_remove_exception_detailstag with valueval.- Parameters:
- Return type:
- classmethod member_suggest_details(val)
Create an instance of this class set to the
member_suggest_detailstag with valueval.- Parameters:
val (MemberSuggestDetails)
- Return type:
- classmethod member_suggestions_change_policy_details(val)
Create an instance of this class set to the
member_suggestions_change_policy_detailstag with valueval.- Parameters:
- Return type:
- classmethod member_transfer_account_contents_details(val)
Create an instance of this class set to the
member_transfer_account_contents_detailstag with valueval.- Parameters:
- Return type:
- classmethod microsoft_login_change_policy_details(val)
Create an instance of this class set to the
microsoft_login_change_policy_detailstag with valueval.- Parameters:
- Return type:
- classmethod microsoft_office_addin_change_policy_details(val)
Create an instance of this class set to the
microsoft_office_addin_change_policy_detailstag with valueval.- Parameters:
- Return type:
- classmethod missing_details(val)
Create an instance of this class set to the
missing_detailstag with valueval.- Parameters:
val (MissingDetails)
- Return type:
- classmethod multi_team_identity_policy_changed_details(val)
Create an instance of this class set to the
multi_team_identity_policy_changed_detailstag with valueval.- Parameters:
- Return type:
- classmethod network_control_change_policy_details(val)
Create an instance of this class set to the
network_control_change_policy_detailstag with valueval.- Parameters:
- Return type:
- classmethod no_expiration_link_gen_create_report_details(val)
Create an instance of this class set to the
no_expiration_link_gen_create_report_detailstag with valueval.- Parameters:
- Return type:
- classmethod no_expiration_link_gen_report_failed_details(val)
Create an instance of this class set to the
no_expiration_link_gen_report_failed_detailstag with valueval.- Parameters:
- Return type:
- classmethod no_password_link_gen_create_report_details(val)
Create an instance of this class set to the
no_password_link_gen_create_report_detailstag with valueval.- Parameters:
- Return type:
- classmethod no_password_link_gen_report_failed_details(val)
Create an instance of this class set to the
no_password_link_gen_report_failed_detailstag with valueval.- Parameters:
- Return type:
- classmethod no_password_link_view_create_report_details(val)
Create an instance of this class set to the
no_password_link_view_create_report_detailstag with valueval.- Parameters:
- Return type:
- classmethod no_password_link_view_report_failed_details(val)
Create an instance of this class set to the
no_password_link_view_report_failed_detailstag with valueval.- Parameters:
- Return type:
- classmethod note_acl_invite_only_details(val)
Create an instance of this class set to the
note_acl_invite_only_detailstag with valueval.- Parameters:
val (NoteAclInviteOnlyDetails)
- Return type:
- classmethod note_acl_link_details(val)
Create an instance of this class set to the
note_acl_link_detailstag with valueval.- Parameters:
val (NoteAclLinkDetails)
- Return type:
- classmethod note_acl_team_link_details(val)
Create an instance of this class set to the
note_acl_team_link_detailstag with valueval.- Parameters:
val (NoteAclTeamLinkDetails)
- Return type:
Create an instance of this class set to the
note_share_receive_detailstag with valueval.- Parameters:
val (NoteShareReceiveDetails)
- Return type:
Create an instance of this class set to the
note_shared_detailstag with valueval.- Parameters:
val (NoteSharedDetails)
- Return type:
- classmethod object_label_added_details(val)
Create an instance of this class set to the
object_label_added_detailstag with valueval.- Parameters:
val (ObjectLabelAddedDetails)
- Return type:
- classmethod object_label_removed_details(val)
Create an instance of this class set to the
object_label_removed_detailstag with valueval.- Parameters:
- Return type:
- classmethod object_label_updated_value_details(val)
Create an instance of this class set to the
object_label_updated_value_detailstag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
open_note_shared_detailstag with valueval.- Parameters:
val (OpenNoteSharedDetails)
- Return type:
- classmethod organize_folder_with_tidy_details(val)
Create an instance of this class set to the
organize_folder_with_tidy_detailstag with valueval.- Parameters:
- Return type:
- other = EventDetails('other', None)
- classmethod outdated_link_view_create_report_details(val)
Create an instance of this class set to the
outdated_link_view_create_report_detailstag with valueval.- Parameters:
- Return type:
- classmethod outdated_link_view_report_failed_details(val)
Create an instance of this class set to the
outdated_link_view_report_failed_detailstag with valueval.- Parameters:
- Return type:
- classmethod paper_admin_export_start_details(val)
Create an instance of this class set to the
paper_admin_export_start_detailstag with valueval.- Parameters:
- Return type:
- classmethod paper_change_deployment_policy_details(val)
Create an instance of this class set to the
paper_change_deployment_policy_detailstag with valueval.- Parameters:
- Return type:
- classmethod paper_change_member_link_policy_details(val)
Create an instance of this class set to the
paper_change_member_link_policy_detailstag with valueval.- Parameters:
- Return type:
- classmethod paper_change_member_policy_details(val)
Create an instance of this class set to the
paper_change_member_policy_detailstag with valueval.- Parameters:
- Return type:
- classmethod paper_change_policy_details(val)
Create an instance of this class set to the
paper_change_policy_detailstag with valueval.- Parameters:
val (PaperChangePolicyDetails)
- Return type:
- classmethod paper_content_add_member_details(val)
Create an instance of this class set to the
paper_content_add_member_detailstag with valueval.- Parameters:
- Return type:
- classmethod paper_content_add_to_folder_details(val)
Create an instance of this class set to the
paper_content_add_to_folder_detailstag with valueval.- Parameters:
- Return type:
- classmethod paper_content_archive_details(val)
Create an instance of this class set to the
paper_content_archive_detailstag with valueval.- Parameters:
- Return type:
- classmethod paper_content_create_details(val)
Create an instance of this class set to the
paper_content_create_detailstag with valueval.- Parameters:
- Return type:
- classmethod paper_content_permanently_delete_details(val)
Create an instance of this class set to the
paper_content_permanently_delete_detailstag with valueval.- Parameters:
- Return type:
- classmethod paper_content_remove_from_folder_details(val)
Create an instance of this class set to the
paper_content_remove_from_folder_detailstag with valueval.- Parameters:
- Return type:
- classmethod paper_content_remove_member_details(val)
Create an instance of this class set to the
paper_content_remove_member_detailstag with valueval.- Parameters:
- Return type:
- classmethod paper_content_rename_details(val)
Create an instance of this class set to the
paper_content_rename_detailstag with valueval.- Parameters:
- Return type:
- classmethod paper_content_restore_details(val)
Create an instance of this class set to the
paper_content_restore_detailstag with valueval.- Parameters:
- Return type:
- classmethod paper_default_folder_policy_changed_details(val)
Create an instance of this class set to the
paper_default_folder_policy_changed_detailstag with valueval.- Parameters:
- Return type:
- classmethod paper_desktop_policy_changed_details(val)
Create an instance of this class set to the
paper_desktop_policy_changed_detailstag with valueval.- Parameters:
- Return type:
- classmethod paper_doc_add_comment_details(val)
Create an instance of this class set to the
paper_doc_add_comment_detailstag with valueval.- Parameters:
- Return type:
- classmethod paper_doc_change_member_role_details(val)
Create an instance of this class set to the
paper_doc_change_member_role_detailstag with valueval.- Parameters:
- Return type:
- classmethod paper_doc_change_sharing_policy_details(val)
Create an instance of this class set to the
paper_doc_change_sharing_policy_detailstag with valueval.- Parameters:
- Return type:
- classmethod paper_doc_change_subscription_details(val)
Create an instance of this class set to the
paper_doc_change_subscription_detailstag with valueval.- Parameters:
- Return type:
- classmethod paper_doc_delete_comment_details(val)
Create an instance of this class set to the
paper_doc_delete_comment_detailstag with valueval.- Parameters:
- Return type:
- classmethod paper_doc_deleted_details(val)
Create an instance of this class set to the
paper_doc_deleted_detailstag with valueval.- Parameters:
val (PaperDocDeletedDetails)
- Return type:
- classmethod paper_doc_download_details(val)
Create an instance of this class set to the
paper_doc_download_detailstag with valueval.- Parameters:
val (PaperDocDownloadDetails)
- Return type:
- classmethod paper_doc_edit_comment_details(val)
Create an instance of this class set to the
paper_doc_edit_comment_detailstag with valueval.- Parameters:
- Return type:
- classmethod paper_doc_edit_details(val)
Create an instance of this class set to the
paper_doc_edit_detailstag with valueval.- Parameters:
val (PaperDocEditDetails)
- Return type:
- classmethod paper_doc_followed_details(val)
Create an instance of this class set to the
paper_doc_followed_detailstag with valueval.- Parameters:
val (PaperDocFollowedDetails)
- Return type:
- classmethod paper_doc_mention_details(val)
Create an instance of this class set to the
paper_doc_mention_detailstag with valueval.- Parameters:
val (PaperDocMentionDetails)
- Return type:
- classmethod paper_doc_ownership_changed_details(val)
Create an instance of this class set to the
paper_doc_ownership_changed_detailstag with valueval.- Parameters:
- Return type:
- classmethod paper_doc_request_access_details(val)
Create an instance of this class set to the
paper_doc_request_access_detailstag with valueval.- Parameters:
- Return type:
- classmethod paper_doc_resolve_comment_details(val)
Create an instance of this class set to the
paper_doc_resolve_comment_detailstag with valueval.- Parameters:
- Return type:
- classmethod paper_doc_revert_details(val)
Create an instance of this class set to the
paper_doc_revert_detailstag with valueval.- Parameters:
val (PaperDocRevertDetails)
- Return type:
Create an instance of this class set to the
paper_doc_slack_share_detailstag with valueval.- Parameters:
- Return type:
- classmethod paper_doc_team_invite_details(val)
Create an instance of this class set to the
paper_doc_team_invite_detailstag with valueval.- Parameters:
- Return type:
- classmethod paper_doc_trashed_details(val)
Create an instance of this class set to the
paper_doc_trashed_detailstag with valueval.- Parameters:
val (PaperDocTrashedDetails)
- Return type:
- classmethod paper_doc_unresolve_comment_details(val)
Create an instance of this class set to the
paper_doc_unresolve_comment_detailstag with valueval.- Parameters:
- Return type:
- classmethod paper_doc_untrashed_details(val)
Create an instance of this class set to the
paper_doc_untrashed_detailstag with valueval.- Parameters:
val (PaperDocUntrashedDetails)
- Return type:
- classmethod paper_doc_view_details(val)
Create an instance of this class set to the
paper_doc_view_detailstag with valueval.- Parameters:
val (PaperDocViewDetails)
- Return type:
- classmethod paper_enabled_users_group_addition_details(val)
Create an instance of this class set to the
paper_enabled_users_group_addition_detailstag with valueval.- Parameters:
- Return type:
- classmethod paper_enabled_users_group_removal_details(val)
Create an instance of this class set to the
paper_enabled_users_group_removal_detailstag with valueval.- Parameters:
- Return type:
- classmethod paper_external_view_allow_details(val)
Create an instance of this class set to the
paper_external_view_allow_detailstag with valueval.- Parameters:
- Return type:
- classmethod paper_external_view_default_team_details(val)
Create an instance of this class set to the
paper_external_view_default_team_detailstag with valueval.- Parameters:
- Return type:
- classmethod paper_external_view_forbid_details(val)
Create an instance of this class set to the
paper_external_view_forbid_detailstag with valueval.- Parameters:
- Return type:
- classmethod paper_folder_change_subscription_details(val)
Create an instance of this class set to the
paper_folder_change_subscription_detailstag with valueval.- Parameters:
- Return type:
- classmethod paper_folder_deleted_details(val)
Create an instance of this class set to the
paper_folder_deleted_detailstag with valueval.- Parameters:
- Return type:
- classmethod paper_folder_followed_details(val)
Create an instance of this class set to the
paper_folder_followed_detailstag with valueval.- Parameters:
- Return type:
- classmethod paper_folder_team_invite_details(val)
Create an instance of this class set to the
paper_folder_team_invite_detailstag with valueval.- Parameters:
- Return type:
- classmethod paper_published_link_change_permission_details(val)
Create an instance of this class set to the
paper_published_link_change_permission_detailstag with valueval.- Parameters:
- Return type:
- classmethod paper_published_link_create_details(val)
Create an instance of this class set to the
paper_published_link_create_detailstag with valueval.- Parameters:
- Return type:
- classmethod paper_published_link_disabled_details(val)
Create an instance of this class set to the
paper_published_link_disabled_detailstag with valueval.- Parameters:
- Return type:
- classmethod paper_published_link_view_details(val)
Create an instance of this class set to the
paper_published_link_view_detailstag with valueval.- Parameters:
- Return type:
- classmethod passkey_add_details(val)
Create an instance of this class set to the
passkey_add_detailstag with valueval.- Parameters:
val (PasskeyAddDetails)
- Return type:
- classmethod passkey_login_policy_changed_details(val)
Create an instance of this class set to the
passkey_login_policy_changed_detailstag with valueval.- Parameters:
- Return type:
- classmethod passkey_remove_details(val)
Create an instance of this class set to the
passkey_remove_detailstag with valueval.- Parameters:
val (PasskeyRemoveDetails)
- Return type:
- classmethod password_change_details(val)
Create an instance of this class set to the
password_change_detailstag with valueval.- Parameters:
val (PasswordChangeDetails)
- Return type:
- classmethod password_reset_all_details(val)
Create an instance of this class set to the
password_reset_all_detailstag with valueval.- Parameters:
val (PasswordResetAllDetails)
- Return type:
- classmethod password_reset_details(val)
Create an instance of this class set to the
password_reset_detailstag with valueval.- Parameters:
val (PasswordResetDetails)
- Return type:
- classmethod password_strength_requirements_change_policy_details(val)
Create an instance of this class set to the
password_strength_requirements_change_policy_detailstag with valueval.- Parameters:
- Return type:
- classmethod pending_secondary_email_added_details(val)
Create an instance of this class set to the
pending_secondary_email_added_detailstag with valueval.- Parameters:
- Return type:
- classmethod permanent_delete_change_policy_details(val)
Create an instance of this class set to the
permanent_delete_change_policy_detailstag with valueval.- Parameters:
- Return type:
- classmethod previews_ai_policy_changed_details(val)
Create an instance of this class set to the
previews_ai_policy_changed_detailstag with valueval.- Parameters:
- Return type:
- classmethod product_assigned_to_member_details(val)
Create an instance of this class set to the
product_assigned_to_member_detailstag with valueval.- Parameters:
- Return type:
- classmethod product_removed_from_member_details(val)
Create an instance of this class set to the
product_removed_from_member_detailstag with valueval.- Parameters:
- Return type:
- classmethod protect_internal_domains_changed_details(val)
Create an instance of this class set to the
protect_internal_domains_changed_detailstag with valueval.- Parameters:
- Return type:
- classmethod ransomware_alert_create_report_details(val)
Create an instance of this class set to the
ransomware_alert_create_report_detailstag with valueval.- Parameters:
- Return type:
- classmethod ransomware_alert_create_report_failed_details(val)
Create an instance of this class set to the
ransomware_alert_create_report_failed_detailstag with valueval.- Parameters:
- Return type:
- classmethod ransomware_restore_process_completed_details(val)
Create an instance of this class set to the
ransomware_restore_process_completed_detailstag with valueval.- Parameters:
- Return type:
- classmethod ransomware_restore_process_started_details(val)
Create an instance of this class set to the
ransomware_restore_process_started_detailstag with valueval.- Parameters:
- Return type:
- classmethod replay_adding_people_policy_changed_details(val)
Create an instance of this class set to the
replay_adding_people_policy_changed_detailstag with valueval.- Parameters:
- Return type:
- classmethod replay_file_delete_details(val)
Create an instance of this class set to the
replay_file_delete_detailstag with valueval.- Parameters:
val (ReplayFileDeleteDetails)
- Return type:
- classmethod replay_file_downloaded_details(val)
Create an instance of this class set to the
replay_file_downloaded_detailstag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
replay_file_shared_link_created_detailstag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
replay_file_shared_link_modified_detailstag with valueval.- Parameters:
- Return type:
- classmethod replay_project_team_add_details(val)
Create an instance of this class set to the
replay_project_team_add_detailstag with valueval.- Parameters:
- Return type:
- classmethod replay_project_team_delete_details(val)
Create an instance of this class set to the
replay_project_team_delete_detailstag with valueval.- Parameters:
- Return type:
- classmethod replay_sharing_policy_changed_details(val)
Create an instance of this class set to the
replay_sharing_policy_changed_detailstag with valueval.- Parameters:
- Return type:
- classmethod replay_team_project_created_details(val)
Create an instance of this class set to the
replay_team_project_created_detailstag with valueval.- Parameters:
- Return type:
- classmethod reseller_support_change_policy_details(val)
Create an instance of this class set to the
reseller_support_change_policy_detailstag with valueval.- Parameters:
- Return type:
- classmethod reseller_support_session_end_details(val)
Create an instance of this class set to the
reseller_support_session_end_detailstag with valueval.- Parameters:
- Return type:
- classmethod reseller_support_session_start_details(val)
Create an instance of this class set to the
reseller_support_session_start_detailstag with valueval.- Parameters:
- Return type:
- classmethod rewind_folder_details(val)
Create an instance of this class set to the
rewind_folder_detailstag with valueval.- Parameters:
val (RewindFolderDetails)
- Return type:
- classmethod rewind_policy_changed_details(val)
Create an instance of this class set to the
rewind_policy_changed_detailstag with valueval.- Parameters:
- Return type:
- classmethod risc_security_event_details(val)
Create an instance of this class set to the
risc_security_event_detailstag with valueval.- Parameters:
val (RiscSecurityEventDetails)
- Return type:
- classmethod secondary_email_deleted_details(val)
Create an instance of this class set to the
secondary_email_deleted_detailstag with valueval.- Parameters:
- Return type:
- classmethod secondary_email_verified_details(val)
Create an instance of this class set to the
secondary_email_verified_detailstag with valueval.- Parameters:
- Return type:
- classmethod secondary_mails_policy_changed_details(val)
Create an instance of this class set to the
secondary_mails_policy_changed_detailstag with valueval.- Parameters:
- Return type:
- classmethod send_and_track_file_added_details(val)
Create an instance of this class set to the
send_and_track_file_added_detailstag with valueval.- Parameters:
- Return type:
- classmethod send_and_track_file_renamed_details(val)
Create an instance of this class set to the
send_and_track_file_renamed_detailstag with valueval.- Parameters:
- Return type:
- classmethod send_and_track_file_updated_details(val)
Create an instance of this class set to the
send_and_track_file_updated_detailstag with valueval.- Parameters:
- Return type:
- classmethod send_and_track_link_created_details(val)
Create an instance of this class set to the
send_and_track_link_created_detailstag with valueval.- Parameters:
- Return type:
- classmethod send_and_track_link_deleted_details(val)
Create an instance of this class set to the
send_and_track_link_deleted_detailstag with valueval.- Parameters:
- Return type:
- classmethod send_and_track_link_updated_details(val)
Create an instance of this class set to the
send_and_track_link_updated_detailstag with valueval.- Parameters:
- Return type:
- classmethod send_and_track_link_viewed_details(val)
Create an instance of this class set to the
send_and_track_link_viewed_detailstag with valueval.- Parameters:
- Return type:
- classmethod send_and_track_policy_changed_details(val)
Create an instance of this class set to the
send_and_track_policy_changed_detailstag with valueval.- Parameters:
- Return type:
- classmethod send_and_track_removed_file_and_associated_links_details(val)
Create an instance of this class set to the
send_and_track_removed_file_and_associated_links_detailstag with valueval.- Parameters:
- Return type:
- classmethod send_external_sharing_policy_changed_details(val)
Create an instance of this class set to the
send_external_sharing_policy_changed_detailstag with valueval.- Parameters:
- Return type:
- classmethod send_for_signature_policy_changed_details(val)
Create an instance of this class set to the
send_for_signature_policy_changed_detailstag with valueval.- Parameters:
- Return type:
- classmethod sf_add_group_details(val)
Create an instance of this class set to the
sf_add_group_detailstag with valueval.- Parameters:
val (SfAddGroupDetails)
- Return type:
Create an instance of this class set to the
sf_allow_non_members_to_view_shared_links_detailstag with valueval.- Parameters:
- Return type:
- classmethod sf_external_invite_warn_details(val)
Create an instance of this class set to the
sf_external_invite_warn_detailstag with valueval.- Parameters:
- Return type:
- classmethod sf_fb_invite_change_role_details(val)
Create an instance of this class set to the
sf_fb_invite_change_role_detailstag with valueval.- Parameters:
- Return type:
- classmethod sf_fb_invite_details(val)
Create an instance of this class set to the
sf_fb_invite_detailstag with valueval.- Parameters:
val (SfFbInviteDetails)
- Return type:
- classmethod sf_fb_uninvite_details(val)
Create an instance of this class set to the
sf_fb_uninvite_detailstag with valueval.- Parameters:
val (SfFbUninviteDetails)
- Return type:
- classmethod sf_invite_group_details(val)
Create an instance of this class set to the
sf_invite_group_detailstag with valueval.- Parameters:
val (SfInviteGroupDetails)
- Return type:
- classmethod sf_team_grant_access_details(val)
Create an instance of this class set to the
sf_team_grant_access_detailstag with valueval.- Parameters:
val (SfTeamGrantAccessDetails)
- Return type:
- classmethod sf_team_invite_change_role_details(val)
Create an instance of this class set to the
sf_team_invite_change_role_detailstag with valueval.- Parameters:
- Return type:
- classmethod sf_team_invite_details(val)
Create an instance of this class set to the
sf_team_invite_detailstag with valueval.- Parameters:
val (SfTeamInviteDetails)
- Return type:
- classmethod sf_team_join_details(val)
Create an instance of this class set to the
sf_team_join_detailstag with valueval.- Parameters:
val (SfTeamJoinDetails)
- Return type:
- classmethod sf_team_join_from_oob_link_details(val)
Create an instance of this class set to the
sf_team_join_from_oob_link_detailstag with valueval.- Parameters:
- Return type:
- classmethod sf_team_uninvite_details(val)
Create an instance of this class set to the
sf_team_uninvite_detailstag with valueval.- Parameters:
val (SfTeamUninviteDetails)
- Return type:
Create an instance of this class set to the
shared_content_add_invitees_detailstag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_content_add_link_expiry_detailstag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_content_add_link_password_detailstag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_content_add_member_detailstag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_content_change_downloads_policy_detailstag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_content_change_invitee_role_detailstag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_content_change_link_audience_detailstag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_content_change_link_expiry_detailstag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_content_change_link_password_detailstag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_content_change_member_role_detailstag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_content_change_viewer_info_policy_detailstag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_content_claim_invitation_detailstag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_content_copy_detailstag with valueval.- Parameters:
val (SharedContentCopyDetails)
- Return type:
Create an instance of this class set to the
shared_content_download_detailstag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_content_relinquish_membership_detailstag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_content_remove_invitees_detailstag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_content_remove_link_expiry_detailstag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_content_remove_link_password_detailstag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_content_remove_member_detailstag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_content_request_access_detailstag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_content_restore_invitees_detailstag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_content_restore_member_detailstag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_content_unshare_detailstag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_content_view_detailstag with valueval.- Parameters:
val (SharedContentViewDetails)
- Return type:
Create an instance of this class set to the
shared_folder_change_link_policy_detailstag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_folder_change_members_inheritance_policy_detailstag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_folder_change_members_management_policy_detailstag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_folder_change_members_policy_detailstag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_folder_create_detailstag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_folder_decline_invitation_detailstag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_folder_mount_detailstag with valueval.- Parameters:
val (SharedFolderMountDetails)
- Return type:
Create an instance of this class set to the
shared_folder_nest_detailstag with valueval.- Parameters:
val (SharedFolderNestDetails)
- Return type:
Create an instance of this class set to the
shared_folder_transfer_ownership_detailstag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_folder_unmount_detailstag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_folders_create_report_detailstag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_folders_create_report_failed_detailstag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_link_add_expiry_detailstag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_link_change_expiry_detailstag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_link_change_visibility_detailstag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_link_copy_detailstag with valueval.- Parameters:
val (SharedLinkCopyDetails)
- Return type:
Create an instance of this class set to the
shared_link_create_detailstag with valueval.- Parameters:
val (SharedLinkCreateDetails)
- Return type:
Create an instance of this class set to the
shared_link_default_permissions_policy_changed_detailstag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_link_disable_detailstag with valueval.- Parameters:
val (SharedLinkDisableDetails)
- Return type:
Create an instance of this class set to the
shared_link_download_detailstag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_link_remove_expiry_detailstag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_link_remove_visitor_detailstag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_link_settings_add_expiration_detailstag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_link_settings_add_password_detailstag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_link_settings_allow_download_disabled_detailstag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_link_settings_allow_download_enabled_detailstag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_link_settings_change_audience_detailstag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_link_settings_change_expiration_detailstag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_link_settings_change_password_detailstag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_link_settings_remove_expiration_detailstag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_link_settings_remove_password_detailstag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_link_share_detailstag with valueval.- Parameters:
val (SharedLinkShareDetails)
- Return type:
Create an instance of this class set to the
shared_link_view_detailstag with valueval.- Parameters:
val (SharedLinkViewDetails)
- Return type:
Create an instance of this class set to the
shared_note_opened_detailstag with valueval.- Parameters:
val (SharedNoteOpenedDetails)
- Return type:
- classmethod sharing_change_folder_join_policy_details(val)
Create an instance of this class set to the
sharing_change_folder_join_policy_detailstag with valueval.- Parameters:
- Return type:
- classmethod sharing_change_link_allow_change_expiration_policy_details(val)
Create an instance of this class set to the
sharing_change_link_allow_change_expiration_policy_detailstag with valueval.- Parameters:
- Return type:
- classmethod sharing_change_link_default_expiration_policy_details(val)
Create an instance of this class set to the
sharing_change_link_default_expiration_policy_detailstag with valueval.- Parameters:
- Return type:
- classmethod sharing_change_link_enforce_password_policy_details(val)
Create an instance of this class set to the
sharing_change_link_enforce_password_policy_detailstag with valueval.- Parameters:
- Return type:
- classmethod sharing_change_link_policy_details(val)
Create an instance of this class set to the
sharing_change_link_policy_detailstag with valueval.- Parameters:
- Return type:
- classmethod sharing_change_member_policy_details(val)
Create an instance of this class set to the
sharing_change_member_policy_detailstag with valueval.- Parameters:
- Return type:
- classmethod shmodel_disable_downloads_details(val)
Create an instance of this class set to the
shmodel_disable_downloads_detailstag with valueval.- Parameters:
- Return type:
- classmethod shmodel_enable_downloads_details(val)
Create an instance of this class set to the
shmodel_enable_downloads_detailstag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shmodel_group_share_detailstag with valueval.- Parameters:
val (ShmodelGroupShareDetails)
- Return type:
- classmethod showcase_access_granted_details(val)
Create an instance of this class set to the
showcase_access_granted_detailstag with valueval.- Parameters:
- Return type:
- classmethod showcase_add_member_details(val)
Create an instance of this class set to the
showcase_add_member_detailstag with valueval.- Parameters:
val (ShowcaseAddMemberDetails)
- Return type:
- classmethod showcase_archived_details(val)
Create an instance of this class set to the
showcase_archived_detailstag with valueval.- Parameters:
val (ShowcaseArchivedDetails)
- Return type:
- classmethod showcase_change_download_policy_details(val)
Create an instance of this class set to the
showcase_change_download_policy_detailstag with valueval.- Parameters:
- Return type:
- classmethod showcase_change_enabled_policy_details(val)
Create an instance of this class set to the
showcase_change_enabled_policy_detailstag with valueval.- Parameters:
- Return type:
- classmethod showcase_change_external_sharing_policy_details(val)
Create an instance of this class set to the
showcase_change_external_sharing_policy_detailstag with valueval.- Parameters:
- Return type:
- classmethod showcase_created_details(val)
Create an instance of this class set to the
showcase_created_detailstag with valueval.- Parameters:
val (ShowcaseCreatedDetails)
- Return type:
- classmethod showcase_delete_comment_details(val)
Create an instance of this class set to the
showcase_delete_comment_detailstag with valueval.- Parameters:
- Return type:
- classmethod showcase_edit_comment_details(val)
Create an instance of this class set to the
showcase_edit_comment_detailstag with valueval.- Parameters:
- Return type:
- classmethod showcase_edited_details(val)
Create an instance of this class set to the
showcase_edited_detailstag with valueval.- Parameters:
val (ShowcaseEditedDetails)
- Return type:
- classmethod showcase_file_added_details(val)
Create an instance of this class set to the
showcase_file_added_detailstag with valueval.- Parameters:
val (ShowcaseFileAddedDetails)
- Return type:
- classmethod showcase_file_download_details(val)
Create an instance of this class set to the
showcase_file_download_detailstag with valueval.- Parameters:
- Return type:
- classmethod showcase_file_removed_details(val)
Create an instance of this class set to the
showcase_file_removed_detailstag with valueval.- Parameters:
- Return type:
- classmethod showcase_file_view_details(val)
Create an instance of this class set to the
showcase_file_view_detailstag with valueval.- Parameters:
val (ShowcaseFileViewDetails)
- Return type:
- classmethod showcase_permanently_deleted_details(val)
Create an instance of this class set to the
showcase_permanently_deleted_detailstag with valueval.- Parameters:
- Return type:
- classmethod showcase_post_comment_details(val)
Create an instance of this class set to the
showcase_post_comment_detailstag with valueval.- Parameters:
- Return type:
- classmethod showcase_remove_member_details(val)
Create an instance of this class set to the
showcase_remove_member_detailstag with valueval.- Parameters:
- Return type:
- classmethod showcase_renamed_details(val)
Create an instance of this class set to the
showcase_renamed_detailstag with valueval.- Parameters:
val (ShowcaseRenamedDetails)
- Return type:
- classmethod showcase_request_access_details(val)
Create an instance of this class set to the
showcase_request_access_detailstag with valueval.- Parameters:
- Return type:
- classmethod showcase_resolve_comment_details(val)
Create an instance of this class set to the
showcase_resolve_comment_detailstag with valueval.- Parameters:
- Return type:
- classmethod showcase_restored_details(val)
Create an instance of this class set to the
showcase_restored_detailstag with valueval.- Parameters:
val (ShowcaseRestoredDetails)
- Return type:
- classmethod showcase_trashed_deprecated_details(val)
Create an instance of this class set to the
showcase_trashed_deprecated_detailstag with valueval.- Parameters:
- Return type:
- classmethod showcase_trashed_details(val)
Create an instance of this class set to the
showcase_trashed_detailstag with valueval.- Parameters:
val (ShowcaseTrashedDetails)
- Return type:
- classmethod showcase_unresolve_comment_details(val)
Create an instance of this class set to the
showcase_unresolve_comment_detailstag with valueval.- Parameters:
- Return type:
- classmethod showcase_untrashed_deprecated_details(val)
Create an instance of this class set to the
showcase_untrashed_deprecated_detailstag with valueval.- Parameters:
- Return type:
- classmethod showcase_untrashed_details(val)
Create an instance of this class set to the
showcase_untrashed_detailstag with valueval.- Parameters:
val (ShowcaseUntrashedDetails)
- Return type:
- classmethod showcase_view_details(val)
Create an instance of this class set to the
showcase_view_detailstag with valueval.- Parameters:
val (ShowcaseViewDetails)
- Return type:
- classmethod sign_external_sharing_policy_changed_details(val)
Create an instance of this class set to the
sign_external_sharing_policy_changed_detailstag with valueval.- Parameters:
- Return type:
- classmethod sign_in_as_session_end_details(val)
Create an instance of this class set to the
sign_in_as_session_end_detailstag with valueval.- Parameters:
- Return type:
- classmethod sign_in_as_session_start_details(val)
Create an instance of this class set to the
sign_in_as_session_start_detailstag with valueval.- Parameters:
- Return type:
- classmethod sign_signature_request_canceled_details(val)
Create an instance of this class set to the
sign_signature_request_canceled_detailstag with valueval.- Parameters:
- Return type:
- classmethod sign_signature_request_completed_details(val)
Create an instance of this class set to the
sign_signature_request_completed_detailstag with valueval.- Parameters:
- Return type:
- classmethod sign_signature_request_declined_details(val)
Create an instance of this class set to the
sign_signature_request_declined_detailstag with valueval.- Parameters:
- Return type:
- classmethod sign_signature_request_opened_details(val)
Create an instance of this class set to the
sign_signature_request_opened_detailstag with valueval.- Parameters:
- Return type:
- classmethod sign_signature_request_reminder_sent_details(val)
Create an instance of this class set to the
sign_signature_request_reminder_sent_detailstag with valueval.- Parameters:
- Return type:
- classmethod sign_signature_request_sent_details(val)
Create an instance of this class set to the
sign_signature_request_sent_detailstag with valueval.- Parameters:
- Return type:
- classmethod sign_template_created_details(val)
Create an instance of this class set to the
sign_template_created_detailstag with valueval.- Parameters:
- Return type:
- classmethod sign_template_creation_permission_changed_details(val)
Create an instance of this class set to the
sign_template_creation_permission_changed_detailstag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
sign_template_shared_detailstag with valueval.- Parameters:
- Return type:
- classmethod smart_sync_change_policy_details(val)
Create an instance of this class set to the
smart_sync_change_policy_detailstag with valueval.- Parameters:
- Return type:
- classmethod smart_sync_create_admin_privilege_report_details(val)
Create an instance of this class set to the
smart_sync_create_admin_privilege_report_detailstag with valueval.- Parameters:
- Return type:
- classmethod smart_sync_not_opt_out_details(val)
Create an instance of this class set to the
smart_sync_not_opt_out_detailstag with valueval.- Parameters:
- Return type:
- classmethod smart_sync_opt_out_details(val)
Create an instance of this class set to the
smart_sync_opt_out_detailstag with valueval.- Parameters:
val (SmartSyncOptOutDetails)
- Return type:
- classmethod smarter_smart_sync_policy_changed_details(val)
Create an instance of this class set to the
smarter_smart_sync_policy_changed_detailstag with valueval.- Parameters:
- Return type:
- classmethod sso_add_cert_details(val)
Create an instance of this class set to the
sso_add_cert_detailstag with valueval.- Parameters:
val (SsoAddCertDetails)
- Return type:
- classmethod sso_add_login_url_details(val)
Create an instance of this class set to the
sso_add_login_url_detailstag with valueval.- Parameters:
val (SsoAddLoginUrlDetails)
- Return type:
- classmethod sso_add_logout_url_details(val)
Create an instance of this class set to the
sso_add_logout_url_detailstag with valueval.- Parameters:
val (SsoAddLogoutUrlDetails)
- Return type:
- classmethod sso_change_cert_details(val)
Create an instance of this class set to the
sso_change_cert_detailstag with valueval.- Parameters:
val (SsoChangeCertDetails)
- Return type:
- classmethod sso_change_login_url_details(val)
Create an instance of this class set to the
sso_change_login_url_detailstag with valueval.- Parameters:
val (SsoChangeLoginUrlDetails)
- Return type:
- classmethod sso_change_logout_url_details(val)
Create an instance of this class set to the
sso_change_logout_url_detailstag with valueval.- Parameters:
- Return type:
- classmethod sso_change_policy_details(val)
Create an instance of this class set to the
sso_change_policy_detailstag with valueval.- Parameters:
val (SsoChangePolicyDetails)
- Return type:
- classmethod sso_change_saml_identity_mode_details(val)
Create an instance of this class set to the
sso_change_saml_identity_mode_detailstag with valueval.- Parameters:
- Return type:
- classmethod sso_error_details(val)
Create an instance of this class set to the
sso_error_detailstag with valueval.- Parameters:
val (SsoErrorDetails)
- Return type:
- classmethod sso_remove_cert_details(val)
Create an instance of this class set to the
sso_remove_cert_detailstag with valueval.- Parameters:
val (SsoRemoveCertDetails)
- Return type:
- classmethod sso_remove_login_url_details(val)
Create an instance of this class set to the
sso_remove_login_url_detailstag with valueval.- Parameters:
val (SsoRemoveLoginUrlDetails)
- Return type:
- classmethod sso_remove_logout_url_details(val)
Create an instance of this class set to the
sso_remove_logout_url_detailstag with valueval.- Parameters:
- Return type:
- classmethod stack_cross_team_access_policy_changed_details(val)
Create an instance of this class set to the
stack_cross_team_access_policy_changed_detailstag with valueval.- Parameters:
- Return type:
- classmethod started_enterprise_admin_session_details(val)
Create an instance of this class set to the
started_enterprise_admin_session_detailstag with valueval.- Parameters:
- Return type:
- classmethod team_activity_create_report_details(val)
Create an instance of this class set to the
team_activity_create_report_detailstag with valueval.- Parameters:
- Return type:
- classmethod team_activity_create_report_fail_details(val)
Create an instance of this class set to the
team_activity_create_report_fail_detailstag with valueval.- Parameters:
- Return type:
- classmethod team_branding_policy_changed_details(val)
Create an instance of this class set to the
team_branding_policy_changed_detailstag with valueval.- Parameters:
- Return type:
- classmethod team_encryption_key_activate_key_details(val)
Create an instance of this class set to the
team_encryption_key_activate_key_detailstag with valueval.- Parameters:
- Return type:
- classmethod team_encryption_key_cancel_key_deletion_details(val)
Create an instance of this class set to the
team_encryption_key_cancel_key_deletion_detailstag with valueval.- Parameters:
- Return type:
- classmethod team_encryption_key_create_key_details(val)
Create an instance of this class set to the
team_encryption_key_create_key_detailstag with valueval.- Parameters:
- Return type:
- classmethod team_encryption_key_deactivate_key_details(val)
Create an instance of this class set to the
team_encryption_key_deactivate_key_detailstag with valueval.- Parameters:
- Return type:
- classmethod team_encryption_key_delete_key_details(val)
Create an instance of this class set to the
team_encryption_key_delete_key_detailstag with valueval.- Parameters:
- Return type:
- classmethod team_encryption_key_disable_key_details(val)
Create an instance of this class set to the
team_encryption_key_disable_key_detailstag with valueval.- Parameters:
- Return type:
- classmethod team_encryption_key_enable_key_details(val)
Create an instance of this class set to the
team_encryption_key_enable_key_detailstag with valueval.- Parameters:
- Return type:
- classmethod team_encryption_key_rotate_key_details(val)
Create an instance of this class set to the
team_encryption_key_rotate_key_detailstag with valueval.- Parameters:
- Return type:
- classmethod team_encryption_key_schedule_key_deletion_details(val)
Create an instance of this class set to the
team_encryption_key_schedule_key_deletion_detailstag with valueval.- Parameters:
- Return type:
- classmethod team_extensions_policy_changed_details(val)
Create an instance of this class set to the
team_extensions_policy_changed_detailstag with valueval.- Parameters:
- Return type:
- classmethod team_folder_change_status_details(val)
Create an instance of this class set to the
team_folder_change_status_detailstag with valueval.- Parameters:
- Return type:
- classmethod team_folder_create_details(val)
Create an instance of this class set to the
team_folder_create_detailstag with valueval.- Parameters:
val (TeamFolderCreateDetails)
- Return type:
- classmethod team_folder_downgrade_details(val)
Create an instance of this class set to the
team_folder_downgrade_detailstag with valueval.- Parameters:
- Return type:
- classmethod team_folder_permanently_delete_details(val)
Create an instance of this class set to the
team_folder_permanently_delete_detailstag with valueval.- Parameters:
- Return type:
- classmethod team_folder_rename_details(val)
Create an instance of this class set to the
team_folder_rename_detailstag with valueval.- Parameters:
val (TeamFolderRenameDetails)
- Return type:
- classmethod team_folder_space_limits_change_caps_type_details(val)
Create an instance of this class set to the
team_folder_space_limits_change_caps_type_detailstag with valueval.- Parameters:
- Return type:
- classmethod team_folder_space_limits_change_limit_details(val)
Create an instance of this class set to the
team_folder_space_limits_change_limit_detailstag with valueval.- Parameters:
- Return type:
- classmethod team_folder_space_limits_change_notification_target_details(val)
Create an instance of this class set to the
team_folder_space_limits_change_notification_target_detailstag with valueval.- Parameters:
- Return type:
- classmethod team_folders_create_report_details(val)
Create an instance of this class set to the
team_folders_create_report_detailstag with valueval.- Parameters:
- Return type:
- classmethod team_folders_create_report_failed_details(val)
Create an instance of this class set to the
team_folders_create_report_failed_detailstag with valueval.- Parameters:
- Return type:
- classmethod team_member_storage_request_policy_changed_details(val)
Create an instance of this class set to the
team_member_storage_request_policy_changed_detailstag with valueval.- Parameters:
- Return type:
- classmethod team_merge_from_details(val)
Create an instance of this class set to the
team_merge_from_detailstag with valueval.- Parameters:
val (TeamMergeFromDetails)
- Return type:
- classmethod team_merge_request_accepted_details(val)
Create an instance of this class set to the
team_merge_request_accepted_detailstag with valueval.- Parameters:
- Return type:
- classmethod team_merge_request_accepted_shown_to_primary_team_details(val)
Create an instance of this class set to the
team_merge_request_accepted_shown_to_primary_team_detailstag with valueval.- Parameters:
- Return type:
- classmethod team_merge_request_accepted_shown_to_secondary_team_details(val)
Create an instance of this class set to the
team_merge_request_accepted_shown_to_secondary_team_detailstag with valueval.- Parameters:
- Return type:
- classmethod team_merge_request_auto_canceled_details(val)
Create an instance of this class set to the
team_merge_request_auto_canceled_detailstag with valueval.- Parameters:
- Return type:
- classmethod team_merge_request_canceled_details(val)
Create an instance of this class set to the
team_merge_request_canceled_detailstag with valueval.- Parameters:
- Return type:
- classmethod team_merge_request_canceled_shown_to_primary_team_details(val)
Create an instance of this class set to the
team_merge_request_canceled_shown_to_primary_team_detailstag with valueval.- Parameters:
- Return type:
- classmethod team_merge_request_canceled_shown_to_secondary_team_details(val)
Create an instance of this class set to the
team_merge_request_canceled_shown_to_secondary_team_detailstag with valueval.- Parameters:
- Return type:
- classmethod team_merge_request_expired_details(val)
Create an instance of this class set to the
team_merge_request_expired_detailstag with valueval.- Parameters:
- Return type:
- classmethod team_merge_request_expired_shown_to_primary_team_details(val)
Create an instance of this class set to the
team_merge_request_expired_shown_to_primary_team_detailstag with valueval.- Parameters:
- Return type:
- classmethod team_merge_request_expired_shown_to_secondary_team_details(val)
Create an instance of this class set to the
team_merge_request_expired_shown_to_secondary_team_detailstag with valueval.- Parameters:
- Return type:
- classmethod team_merge_request_rejected_shown_to_primary_team_details(val)
Create an instance of this class set to the
team_merge_request_rejected_shown_to_primary_team_detailstag with valueval.- Parameters:
- Return type:
- classmethod team_merge_request_rejected_shown_to_secondary_team_details(val)
Create an instance of this class set to the
team_merge_request_rejected_shown_to_secondary_team_detailstag with valueval.- Parameters:
- Return type:
- classmethod team_merge_request_reminder_details(val)
Create an instance of this class set to the
team_merge_request_reminder_detailstag with valueval.- Parameters:
- Return type:
- classmethod team_merge_request_reminder_shown_to_primary_team_details(val)
Create an instance of this class set to the
team_merge_request_reminder_shown_to_primary_team_detailstag with valueval.- Parameters:
- Return type:
- classmethod team_merge_request_reminder_shown_to_secondary_team_details(val)
Create an instance of this class set to the
team_merge_request_reminder_shown_to_secondary_team_detailstag with valueval.- Parameters:
- Return type:
- classmethod team_merge_request_revoked_details(val)
Create an instance of this class set to the
team_merge_request_revoked_detailstag with valueval.- Parameters:
- Return type:
- classmethod team_merge_request_sent_shown_to_primary_team_details(val)
Create an instance of this class set to the
team_merge_request_sent_shown_to_primary_team_detailstag with valueval.- Parameters:
- Return type:
- classmethod team_merge_request_sent_shown_to_secondary_team_details(val)
Create an instance of this class set to the
team_merge_request_sent_shown_to_secondary_team_detailstag with valueval.- Parameters:
- Return type:
- classmethod team_merge_to_details(val)
Create an instance of this class set to the
team_merge_to_detailstag with valueval.- Parameters:
val (TeamMergeToDetails)
- Return type:
- classmethod team_profile_add_background_details(val)
Create an instance of this class set to the
team_profile_add_background_detailstag with valueval.- Parameters:
- Return type:
- classmethod team_profile_add_logo_details(val)
Create an instance of this class set to the
team_profile_add_logo_detailstag with valueval.- Parameters:
- Return type:
- classmethod team_profile_change_background_details(val)
Create an instance of this class set to the
team_profile_change_background_detailstag with valueval.- Parameters:
- Return type:
- classmethod team_profile_change_default_language_details(val)
Create an instance of this class set to the
team_profile_change_default_language_detailstag with valueval.- Parameters:
- Return type:
- classmethod team_profile_change_logo_details(val)
Create an instance of this class set to the
team_profile_change_logo_detailstag with valueval.- Parameters:
- Return type:
- classmethod team_profile_change_name_details(val)
Create an instance of this class set to the
team_profile_change_name_detailstag with valueval.- Parameters:
- Return type:
- classmethod team_profile_remove_background_details(val)
Create an instance of this class set to the
team_profile_remove_background_detailstag with valueval.- Parameters:
- Return type:
- classmethod team_profile_remove_logo_details(val)
Create an instance of this class set to the
team_profile_remove_logo_detailstag with valueval.- Parameters:
- Return type:
- classmethod team_selective_sync_policy_changed_details(val)
Create an instance of this class set to the
team_selective_sync_policy_changed_detailstag with valueval.- Parameters:
- Return type:
- classmethod team_selective_sync_settings_changed_details(val)
Create an instance of this class set to the
team_selective_sync_settings_changed_detailstag with valueval.- Parameters:
- Return type:
- classmethod team_sharing_whitelist_subjects_changed_details(val)
Create an instance of this class set to the
team_sharing_whitelist_subjects_changed_detailstag with valueval.- Parameters:
- Return type:
- classmethod team_storage_create_report_details(val)
Create an instance of this class set to the
team_storage_create_report_detailstag with valueval.- Parameters:
- Return type:
- classmethod team_storage_create_report_failed_details(val)
Create an instance of this class set to the
team_storage_create_report_failed_detailstag with valueval.- Parameters:
- Return type:
- classmethod tfa_add_backup_phone_details(val)
Create an instance of this class set to the
tfa_add_backup_phone_detailstag with valueval.- Parameters:
val (TfaAddBackupPhoneDetails)
- Return type:
- classmethod tfa_add_exception_details(val)
Create an instance of this class set to the
tfa_add_exception_detailstag with valueval.- Parameters:
val (TfaAddExceptionDetails)
- Return type:
- classmethod tfa_add_security_key_details(val)
Create an instance of this class set to the
tfa_add_security_key_detailstag with valueval.- Parameters:
val (TfaAddSecurityKeyDetails)
- Return type:
- classmethod tfa_change_backup_phone_details(val)
Create an instance of this class set to the
tfa_change_backup_phone_detailstag with valueval.- Parameters:
- Return type:
- classmethod tfa_change_policy_details(val)
Create an instance of this class set to the
tfa_change_policy_detailstag with valueval.- Parameters:
val (TfaChangePolicyDetails)
- Return type:
- classmethod tfa_change_status_details(val)
Create an instance of this class set to the
tfa_change_status_detailstag with valueval.- Parameters:
val (TfaChangeStatusDetails)
- Return type:
- classmethod tfa_remove_backup_phone_details(val)
Create an instance of this class set to the
tfa_remove_backup_phone_detailstag with valueval.- Parameters:
- Return type:
- classmethod tfa_remove_exception_details(val)
Create an instance of this class set to the
tfa_remove_exception_detailstag with valueval.- Parameters:
- Return type:
- classmethod tfa_remove_security_key_details(val)
Create an instance of this class set to the
tfa_remove_security_key_detailstag with valueval.- Parameters:
- Return type:
- classmethod tfa_reset_details(val)
Create an instance of this class set to the
tfa_reset_detailstag with valueval.- Parameters:
val (TfaResetDetails)
- Return type:
- classmethod top_level_content_policy_changed_details(val)
Create an instance of this class set to the
top_level_content_policy_changed_detailstag with valueval.- Parameters:
- Return type:
- classmethod two_account_change_policy_details(val)
Create an instance of this class set to the
two_account_change_policy_detailstag with valueval.- Parameters:
- Return type:
- classmethod undo_naming_convention_details(val)
Create an instance of this class set to the
undo_naming_convention_detailstag with valueval.- Parameters:
- Return type:
- classmethod undo_organize_folder_with_tidy_details(val)
Create an instance of this class set to the
undo_organize_folder_with_tidy_detailstag with valueval.- Parameters:
- Return type:
- classmethod user_tags_added_details(val)
Create an instance of this class set to the
user_tags_added_detailstag with valueval.- Parameters:
val (UserTagsAddedDetails)
- Return type:
- classmethod user_tags_removed_details(val)
Create an instance of this class set to the
user_tags_removed_detailstag with valueval.- Parameters:
val (UserTagsRemovedDetails)
- Return type:
- classmethod viewer_info_policy_changed_details(val)
Create an instance of this class set to the
viewer_info_policy_changed_detailstag with valueval.- Parameters:
- Return type:
- classmethod watermarking_policy_changed_details(val)
Create an instance of this class set to the
watermarking_policy_changed_detailstag with valueval.- Parameters:
- Return type:
- classmethod web_sessions_change_active_session_limit_details(val)
Create an instance of this class set to the
web_sessions_change_active_session_limit_detailstag with valueval.- Parameters:
- Return type:
- classmethod web_sessions_change_fixed_length_policy_details(val)
Create an instance of this class set to the
web_sessions_change_fixed_length_policy_detailstag with valueval.- Parameters:
- Return type:
- classmethod web_sessions_change_idle_length_policy_details(val)
Create an instance of this class set to the
web_sessions_change_idle_length_policy_detailstag with valueval.- Parameters:
- Return type:
- class dropbox.team_log.EventType(tag, value=None)
Bases:
UnionThe type of the event with description.
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:
EventType.admin_alerting_alert_state_changed (AdminAlertingAlertStateChangedType) – (admin_alerting) Changed an alert state
EventType.admin_alerting_changed_alert_config (AdminAlertingChangedAlertConfigType) – (admin_alerting) Changed an alert setting
EventType.admin_alerting_triggered_alert (AdminAlertingTriggeredAlertType) – (admin_alerting) Triggered security alert
EventType.ransomware_restore_process_completed (RansomwareRestoreProcessCompletedType) – (admin_alerting) Completed ransomware restore process
EventType.ransomware_restore_process_started (RansomwareRestoreProcessStartedType) – (admin_alerting) Started ransomware restore process
EventType.app_blocked_by_permissions (AppBlockedByPermissionsType) – (apps) Failed to connect app for member
EventType.app_link_team (AppLinkTeamType) – (apps) Linked app for team
EventType.app_link_user (AppLinkUserType) – (apps) Linked app for member
EventType.app_unlink_team (AppUnlinkTeamType) – (apps) Unlinked app for team
EventType.app_unlink_user (AppUnlinkUserType) – (apps) Unlinked app for member
EventType.integration_connected (IntegrationConnectedType) – (apps) Connected integration for member
EventType.integration_disconnected (IntegrationDisconnectedType) – (apps) Disconnected integration for member
EventType.file_add_comment (FileAddCommentType) – (comments) Added file comment
EventType.file_change_comment_subscription (FileChangeCommentSubscriptionType) – (comments) Subscribed to or unsubscribed from comment notifications for file
EventType.file_delete_comment (FileDeleteCommentType) – (comments) Deleted file comment
EventType.file_edit_comment (FileEditCommentType) – (comments) Edited file comment
EventType.file_like_comment (FileLikeCommentType) – (comments) Liked file comment (deprecated, no longer logged)
EventType.file_resolve_comment (FileResolveCommentType) – (comments) Resolved file comment
EventType.file_unlike_comment (FileUnlikeCommentType) – (comments) Unliked file comment (deprecated, no longer logged)
EventType.file_unresolve_comment (FileUnresolveCommentType) – (comments) Unresolved file comment
EventType.dash_added_comment_to_stack (DashAddedCommentToStackType) – (dash) Added a comment to a stack
EventType.dash_added_connector (DashAddedConnectorType) – (dash) Connected to a user connector
EventType.dash_added_link_to_stack (DashAddedLinkToStackType) – (dash) Added a link to a stack
EventType.dash_added_team_email_domain_allowlist (DashAddedTeamEmailDomainAllowlistType) – (dash) Admin added an email domain to the team allowlist
EventType.dash_admin_added_org_wide_connector (DashAdminAddedOrgWideConnectorType) – (dash) Admin added an admin connector
EventType.dash_admin_disabled_connector (DashAdminDisabledConnectorType) – (dash) Admin disabled a user connector
EventType.dash_admin_enabled_connector (DashAdminEnabledConnectorType) – (dash) Admin enabled a user connector
EventType.dash_admin_removed_org_wide_connector (DashAdminRemovedOrgWideConnectorType) – (dash) Admin removed an admin connector
EventType.dash_archived_stack (DashArchivedStackType) – (dash) Archived a stack
EventType.dash_changed_audience_of_shared_link_to_stack (DashChangedAudienceOfSharedLinkToStackType) – (dash) Changed the audience of a shared link to a stack
EventType.dash_cloned_stack (DashClonedStackType) – (dash) Cloned stack
EventType.dash_connector_tools_call (DashConnectorToolsCallType) – (dash) Called a tool on a connector
EventType.dash_created_stack (DashCreatedStackType) – (dash) Created a stack
EventType.dash_deleted_comment_from_stack (DashDeletedCommentFromStackType) – (dash) Deleted a comment from a stack
EventType.dash_deleted_stack (DashDeletedStackType) – (dash) Deleted a stack
EventType.dash_edited_comment_in_stack (DashEditedCommentInStackType) – (dash) Edited a comment in a stack
EventType.dash_external_user_opened_stack (DashExternalUserOpenedStackType) – (dash) External user opened a stack
EventType.dash_first_launched_desktop (DashFirstLaunchedDesktopType) – (dash) Opened the desktop app for the first time
EventType.dash_first_launched_extension (DashFirstLaunchedExtensionType) – (dash) Opened the extension for the first time
EventType.dash_first_launched_web_start_page (DashFirstLaunchedWebStartPageType) – (dash) Opened the web Start Page for the first time
EventType.dash_opened_shared_link_to_stack (DashOpenedSharedLinkToStackType) – (dash) Checked access permissions to a stack
EventType.dash_opened_stack (DashOpenedStackType) – (dash) Opened a stack
EventType.dash_preview_opt_out_status_changed (DashPreviewOptOutStatusChangedType) – (dash) Changed the preview opt-out status
EventType.dash_removed_connector (DashRemovedConnectorType) – (dash) Disconnected a user connector
EventType.dash_removed_link_from_stack (DashRemovedLinkFromStackType) – (dash) Removed a link from a stack
EventType.dash_removed_shared_link_to_stack (DashRemovedSharedLinkToStackType) – (dash) Removed a shared link to a stack
EventType.dash_removed_team_email_domain_allowlist (DashRemovedTeamEmailDomainAllowlistType) – (dash) Admin removed an email domain from the team allowlist
EventType.dash_renamed_stack (DashRenamedStackType) – (dash) Renamed a stack
EventType.dash_shared_link_to_stack (DashSharedLinkToStackType) – (dash) Shared a link to a stack
EventType.dash_unarchived_stack (DashUnarchivedStackType) – (dash) Unarchived a stack
EventType.dash_viewed_company_stack (DashViewedCompanyStackType) – (dash) Member viewed a company stack
EventType.dash_viewed_external_ai_activity_report (DashViewedExternalAiActivityReportType) – (dash) Admin viewed the external AI activity report
EventType.governance_policy_add_folders (GovernancePolicyAddFoldersType) – (data_governance) Added folders to policy
EventType.governance_policy_add_folder_failed (GovernancePolicyAddFolderFailedType) – (data_governance) Couldn’t add a folder to a policy
EventType.governance_policy_content_disposed (GovernancePolicyContentDisposedType) – (data_governance) Content disposed
EventType.governance_policy_create (GovernancePolicyCreateType) – (data_governance) Activated a new policy
EventType.governance_policy_delete (GovernancePolicyDeleteType) – (data_governance) Deleted a policy
EventType.governance_policy_edit_details (GovernancePolicyEditDetailsType) – (data_governance) Edited policy
EventType.governance_policy_edit_duration (GovernancePolicyEditDurationType) – (data_governance) Changed policy duration
EventType.governance_policy_export_created (GovernancePolicyExportCreatedType) – (data_governance) Created a policy download
EventType.governance_policy_export_removed (GovernancePolicyExportRemovedType) – (data_governance) Removed a policy download
EventType.governance_policy_remove_folders (GovernancePolicyRemoveFoldersType) – (data_governance) Removed folders from policy
EventType.governance_policy_report_created (GovernancePolicyReportCreatedType) – (data_governance) Created a summary report for a policy
EventType.governance_policy_zip_part_downloaded (GovernancePolicyZipPartDownloadedType) – (data_governance) Downloaded content from a policy
EventType.legal_holds_activate_a_hold (LegalHoldsActivateAHoldType) – (data_governance) Activated a hold
EventType.legal_holds_add_members (LegalHoldsAddMembersType) – (data_governance) Added members to a hold
EventType.legal_holds_change_hold_details (LegalHoldsChangeHoldDetailsType) – (data_governance) Edited details for a hold
EventType.legal_holds_change_hold_name (LegalHoldsChangeHoldNameType) – (data_governance) Renamed a hold
EventType.legal_holds_export_a_hold (LegalHoldsExportAHoldType) – (data_governance) Exported hold
EventType.legal_holds_export_cancelled (LegalHoldsExportCancelledType) – (data_governance) Canceled export for a hold
EventType.legal_holds_export_downloaded (LegalHoldsExportDownloadedType) – (data_governance) Downloaded export for a hold
EventType.legal_holds_export_removed (LegalHoldsExportRemovedType) – (data_governance) Removed export for a hold
EventType.legal_holds_release_a_hold (LegalHoldsReleaseAHoldType) – (data_governance) Released a hold
EventType.legal_holds_remove_members (LegalHoldsRemoveMembersType) – (data_governance) Removed members from a hold
EventType.legal_holds_report_a_hold (LegalHoldsReportAHoldType) – (data_governance) Created a summary report for a hold
EventType.device_change_ip_desktop (DeviceChangeIpDesktopType) – (devices) Changed IP address associated with active desktop session
EventType.device_change_ip_mobile (DeviceChangeIpMobileType) – (devices) Changed IP address associated with active mobile session
EventType.device_change_ip_web (DeviceChangeIpWebType) – (devices) Changed IP address associated with active web session
EventType.device_delete_on_unlink_fail (DeviceDeleteOnUnlinkFailType) – (devices) Failed to delete all files from unlinked device
EventType.device_delete_on_unlink_success (DeviceDeleteOnUnlinkSuccessType) – (devices) Deleted all files from unlinked device
EventType.device_link_fail (DeviceLinkFailType) – (devices) Failed to link device
EventType.device_link_success (DeviceLinkSuccessType) – (devices) Linked device
EventType.device_management_disabled (DeviceManagementDisabledType) – (devices) Disabled device management (deprecated, no longer logged)
EventType.device_management_enabled (DeviceManagementEnabledType) – (devices) Enabled device management (deprecated, no longer logged)
EventType.device_sync_backup_status_changed (DeviceSyncBackupStatusChangedType) – (devices) Enabled/disabled backup for computer
EventType.device_unlink (DeviceUnlinkType) – (devices) Disconnected device
EventType.dropbox_passwords_exported (DropboxPasswordsExportedType) – (devices) Exported passwords
EventType.dropbox_passwords_new_device_enrolled (DropboxPasswordsNewDeviceEnrolledType) – (devices) Enrolled new Dropbox Passwords device
EventType.emm_refresh_auth_token (EmmRefreshAuthTokenType) – (devices) Refreshed auth token used for setting up EMM
EventType.external_drive_backup_eligibility_status_checked (ExternalDriveBackupEligibilityStatusCheckedType) – (devices) Checked external drive backup eligibility status
EventType.external_drive_backup_status_changed (ExternalDriveBackupStatusChangedType) – (devices) Modified external drive backup
EventType.account_capture_change_availability (AccountCaptureChangeAvailabilityType) – (domains) Granted/revoked option to enable account capture on team domains
EventType.account_capture_migrate_account (AccountCaptureMigrateAccountType) – (domains) Account-captured user migrated account to team
EventType.account_capture_notification_emails_sent (AccountCaptureNotificationEmailsSentType) – (domains) Sent account capture email to all unmanaged members
EventType.account_capture_relinquish_account (AccountCaptureRelinquishAccountType) – (domains) Account-captured user changed account email to personal email
EventType.disabled_domain_invites (DisabledDomainInvitesType) – (domains) Disabled domain invites (deprecated, no longer logged)
EventType.domain_invites_approve_request_to_join_team (DomainInvitesApproveRequestToJoinTeamType) – (domains) Approved user’s request to join team
EventType.domain_invites_decline_request_to_join_team (DomainInvitesDeclineRequestToJoinTeamType) – (domains) Declined user’s request to join team
EventType.domain_invites_email_existing_users (DomainInvitesEmailExistingUsersType) – (domains) Sent domain invites to existing domain accounts (deprecated, no longer logged)
EventType.domain_invites_request_to_join_team (DomainInvitesRequestToJoinTeamType) – (domains) Requested to join team
EventType.domain_invites_set_invite_new_user_pref_to_no (DomainInvitesSetInviteNewUserPrefToNoType) – (domains) Disabled “Automatically invite new users” (deprecated, no longer logged)
EventType.domain_invites_set_invite_new_user_pref_to_yes (DomainInvitesSetInviteNewUserPrefToYesType) – (domains) Enabled “Automatically invite new users” (deprecated, no longer logged)
EventType.domain_verification_add_domain_fail (DomainVerificationAddDomainFailType) – (domains) Failed to verify team domain
EventType.domain_verification_add_domain_success (DomainVerificationAddDomainSuccessType) – (domains) Verified team domain
EventType.domain_verification_remove_domain (DomainVerificationRemoveDomainType) – (domains) Removed domain from list of verified team domains
EventType.enabled_domain_invites (EnabledDomainInvitesType) – (domains) Enabled domain invites (deprecated, no longer logged)
EventType.encrypted_folder_cancel_team_key_rotation (EncryptedFolderCancelTeamKeyRotationType) – (encryption) Canceled team key rotation
EventType.encrypted_folder_enroll_backup_key (EncryptedFolderEnrollBackupKeyType) – (encryption) Added recovery key
EventType.encrypted_folder_enroll_client (EncryptedFolderEnrollClientType) – (encryption) Enrolled device
EventType.encrypted_folder_enroll_team (EncryptedFolderEnrollTeamType) – (encryption) Activated team folder encryption
EventType.encrypted_folder_finish_team_unenrollment (EncryptedFolderFinishTeamUnenrollmentType) – (encryption) Deactivated team folder encryption
EventType.encrypted_folder_init_team_key_rotation (EncryptedFolderInitTeamKeyRotationType) – (encryption) Initiated team key rotation
EventType.encrypted_folder_init_team_unenrollment (EncryptedFolderInitTeamUnenrollmentType) – (encryption) Initiated deactivation of team folder encryption
EventType.encrypted_folder_remove_backup_key (EncryptedFolderRemoveBackupKeyType) – (encryption) Removed recovery key
EventType.encrypted_folder_rotate_team_key (EncryptedFolderRotateTeamKeyType) – (encryption) Rotated team key
EventType.encrypted_folder_unenroll_client (EncryptedFolderUnenrollClientType) – (encryption) Unenrolled device
EventType.team_encryption_key_activate_key (TeamEncryptionKeyActivateKeyType) – (encryption) Activated team encryption key
EventType.team_encryption_key_cancel_key_deletion (TeamEncryptionKeyCancelKeyDeletionType) – (encryption) Canceled team encryption key deletion
EventType.team_encryption_key_create_key (TeamEncryptionKeyCreateKeyType) – (encryption) Created team encryption key
EventType.team_encryption_key_deactivate_key (TeamEncryptionKeyDeactivateKeyType) – (encryption) Deactivated team encryption key
EventType.team_encryption_key_delete_key (TeamEncryptionKeyDeleteKeyType) – (encryption) Deleted team encryption key
EventType.team_encryption_key_disable_key (TeamEncryptionKeyDisableKeyType) – (encryption) Disabled team encryption key
EventType.team_encryption_key_enable_key (TeamEncryptionKeyEnableKeyType) – (encryption) Enabled team encryption key
EventType.team_encryption_key_rotate_key (TeamEncryptionKeyRotateKeyType) – (encryption) Rotated team encryption key (deprecated, no longer logged)
EventType.team_encryption_key_schedule_key_deletion (TeamEncryptionKeyScheduleKeyDeletionType) – (encryption) Scheduled encryption key deletion
EventType.apply_naming_convention (ApplyNamingConventionType) – (file_operations) Applied naming convention
EventType.create_folder (CreateFolderType) – (file_operations) Created folders (deprecated, no longer logged)
EventType.file_add (FileAddType) – (file_operations) Added files and/or folders
EventType.file_add_from_automation (FileAddFromAutomationType) – (file_operations) Added files and/or folders from automation
EventType.file_copy (FileCopyType) – (file_operations) Copied files and/or folders
EventType.file_delete (FileDeleteType) – (file_operations) Deleted files and/or folders
EventType.file_download (FileDownloadType) – (file_operations) Downloaded files and/or folders
EventType.file_edit (FileEditType) – (file_operations) Edited files
EventType.file_get_copy_reference (FileGetCopyReferenceType) – (file_operations) Created copy reference to file/folder
EventType.file_locking_lock_status_changed (FileLockingLockStatusChangedType) – (file_operations) Locked/unlocked editing for a file
EventType.file_move (FileMoveType) – (file_operations) Moved files and/or folders
EventType.file_permanently_delete (FilePermanentlyDeleteType) – (file_operations) Permanently deleted files and/or folders
EventType.file_preview (FilePreviewType) – (file_operations) Previewed files and/or folders
EventType.file_rename (FileRenameType) – (file_operations) Renamed files and/or folders
EventType.file_restore (FileRestoreType) – (file_operations) Restored deleted files and/or folders
EventType.file_revert (FileRevertType) – (file_operations) Reverted files to previous version
EventType.file_rollback_changes (FileRollbackChangesType) – (file_operations) Rolled back file actions
EventType.file_save_copy_reference (FileSaveCopyReferenceType) – (file_operations) Saved file/folder using copy reference
EventType.folder_overview_description_changed (FolderOverviewDescriptionChangedType) – (file_operations) Updated folder overview
EventType.folder_overview_item_pinned (FolderOverviewItemPinnedType) – (file_operations) Pinned item to folder overview
EventType.folder_overview_item_unpinned (FolderOverviewItemUnpinnedType) – (file_operations) Unpinned item from folder overview
EventType.media_hub_file_downloaded (MediaHubFileDownloadedType) – (file_operations) Downloaded files in Media Hub
EventType.object_label_added (ObjectLabelAddedType) – (file_operations) Added a label
EventType.object_label_removed (ObjectLabelRemovedType) – (file_operations) Removed a label
EventType.object_label_updated_value (ObjectLabelUpdatedValueType) – (file_operations) Updated a label’s value
EventType.organize_folder_with_tidy (OrganizeFolderWithTidyType) – (file_operations) Organized a folder with multi-file organize
EventType.replay_file_delete (ReplayFileDeleteType) – (file_operations) Deleted files in Replay
EventType.replay_file_downloaded (ReplayFileDownloadedType) – (file_operations) Downloaded files in Replay
EventType.replay_team_project_created (ReplayTeamProjectCreatedType) – (file_operations) Created a team project in Replay
EventType.rewind_folder (RewindFolderType) – (file_operations) Rewound a folder
EventType.undo_naming_convention (UndoNamingConventionType) – (file_operations) Reverted naming convention
EventType.undo_organize_folder_with_tidy (UndoOrganizeFolderWithTidyType) – (file_operations) Removed multi-file organize
EventType.user_tags_added (UserTagsAddedType) – (file_operations) Tagged a file
EventType.user_tags_removed (UserTagsRemovedType) – (file_operations) Removed tags
EventType.email_ingest_receive_file (EmailIngestReceiveFileType) – (file_requests) Received files via Email to Dropbox
EventType.file_request_auto_close (FileRequestAutoCloseType) – (file_requests) Auto closed file request
EventType.file_request_change (FileRequestChangeType) – (file_requests) Changed file request
EventType.file_request_close (FileRequestCloseType) – (file_requests) Closed file request
EventType.file_request_create (FileRequestCreateType) – (file_requests) Created file request
EventType.file_request_delete (FileRequestDeleteType) – (file_requests) Delete file request
EventType.file_request_receive_file (FileRequestReceiveFileType) – (file_requests) Received files for file request
EventType.group_add_external_id (GroupAddExternalIdType) – (groups) Added external ID for group
EventType.group_add_member (GroupAddMemberType) – (groups) Added team members to group
EventType.group_change_external_id (GroupChangeExternalIdType) – (groups) Changed external ID for group
EventType.group_change_management_type (GroupChangeManagementTypeType) – (groups) Changed group management type
EventType.group_change_member_role (GroupChangeMemberRoleType) – (groups) Changed manager permissions of group member
EventType.group_create (GroupCreateType) – (groups) Created group
EventType.group_delete (GroupDeleteType) – (groups) Deleted group
EventType.group_description_updated (GroupDescriptionUpdatedType) – (groups) Updated group (deprecated, no longer logged)
EventType.group_external_sharing_setting_override_changed (GroupExternalSharingSettingOverrideChangedType) – (groups) Changed group’s external sharing setting
EventType.group_join_policy_updated (GroupJoinPolicyUpdatedType) – (groups) Updated group join policy (deprecated, no longer logged)
EventType.group_moved (GroupMovedType) – (groups) Moved group (deprecated, no longer logged)
EventType.group_remove_external_id (GroupRemoveExternalIdType) – (groups) Removed external ID for group
EventType.group_remove_member (GroupRemoveMemberType) – (groups) Removed team members from group
EventType.group_rename (GroupRenameType) – (groups) Renamed group
EventType.account_lock_or_unlocked (AccountLockOrUnlockedType) – (logins) Unlocked/locked account after failed sign in attempts
EventType.emm_error (EmmErrorType) – (logins) Failed to sign in via EMM (deprecated, replaced by ‘Failed to sign in’)
EventType.guest_admin_signed_in_via_trusted_teams (GuestAdminSignedInViaTrustedTeamsType) – (logins) Started trusted team admin session
EventType.guest_admin_signed_out_via_trusted_teams (GuestAdminSignedOutViaTrustedTeamsType) – (logins) Ended trusted team admin session
EventType.login_fail (LoginFailType) – (logins) Failed to sign in
EventType.login_success (LoginSuccessType) – (logins) Signed in
EventType.logout (LogoutType) – (logins) Signed out
EventType.reseller_support_session_end (ResellerSupportSessionEndType) – (logins) Ended reseller support session
EventType.reseller_support_session_start (ResellerSupportSessionStartType) – (logins) Started reseller support session
EventType.sign_in_as_session_end (SignInAsSessionEndType) – (logins) Ended admin sign-in-as session
EventType.sign_in_as_session_start (SignInAsSessionStartType) – (logins) Started admin sign-in-as session
EventType.sso_error (SsoErrorType) – (logins) Failed to sign in via SSO (deprecated, replaced by ‘Failed to sign in’)
EventType.addon_assigned (AddonAssignedType) – (members) Add-on Assigned
EventType.addon_removed (AddonRemovedType) – (members) Add-on Removed
EventType.backup_admin_invitation_sent (BackupAdminInvitationSentType) – (members) Invited members to activate Backup
EventType.backup_invitation_opened (BackupInvitationOpenedType) – (members) Opened Backup invite
EventType.create_team_invite_link (CreateTeamInviteLinkType) – (members) Created team invite link
EventType.delete_team_invite_link (DeleteTeamInviteLinkType) – (members) Deleted team invite link
EventType.member_add_external_id (MemberAddExternalIdType) – (members) Added an external ID for team member
EventType.member_add_name (MemberAddNameType) – (members) Added team member name
EventType.member_change_admin_role (MemberChangeAdminRoleType) – (members) Changed team member admin role
EventType.member_change_email (MemberChangeEmailType) – (members) Changed team member email
EventType.member_change_external_id (MemberChangeExternalIdType) – (members) Changed the external ID for team member
EventType.member_change_membership_type (MemberChangeMembershipTypeType) – (members) Changed membership type (limited/full) of member (deprecated, no longer logged)
EventType.member_change_name (MemberChangeNameType) – (members) Changed team member name
EventType.member_change_reseller_role (MemberChangeResellerRoleType) – (members) Changed team member reseller role
EventType.member_change_status (MemberChangeStatusType) – (members) Changed member status (invited, joined, suspended, etc.)
EventType.member_delete_manual_contacts (MemberDeleteManualContactsType) – (members) Cleared manually added contacts
EventType.member_delete_profile_photo (MemberDeleteProfilePhotoType) – (members) Deleted team member profile photo
EventType.member_permanently_delete_account_contents (MemberPermanentlyDeleteAccountContentsType) – (members) Permanently deleted contents of deleted team member account
EventType.member_remove_external_id (MemberRemoveExternalIdType) – (members) Removed the external ID for team member
EventType.member_set_profile_photo (MemberSetProfilePhotoType) – (members) Set team member profile photo
EventType.member_space_limits_add_custom_quota (MemberSpaceLimitsAddCustomQuotaType) – (members) Set custom member space limit
EventType.member_space_limits_change_custom_quota (MemberSpaceLimitsChangeCustomQuotaType) – (members) Changed custom member space limit
EventType.member_space_limits_change_status (MemberSpaceLimitsChangeStatusType) – (members) Changed space limit status
EventType.member_space_limits_remove_custom_quota (MemberSpaceLimitsRemoveCustomQuotaType) – (members) Removed custom member space limit
EventType.member_suggest (MemberSuggestType) – (members) Suggested person to add to team
EventType.member_transfer_account_contents (MemberTransferAccountContentsType) – (members) Transferred contents of deleted member account to another member
EventType.pending_secondary_email_added (PendingSecondaryEmailAddedType) – (members) Added pending secondary email
EventType.product_assigned_to_member (ProductAssignedToMemberType) – (members) Product assigned to team member
EventType.product_removed_from_member (ProductRemovedFromMemberType) – (members) Product removed from team member
EventType.secondary_email_deleted (SecondaryEmailDeletedType) – (members) Deleted secondary email
EventType.secondary_email_verified (SecondaryEmailVerifiedType) – (members) Verified secondary email
EventType.secondary_mails_policy_changed (SecondaryMailsPolicyChangedType) – (members) Secondary mails policy changed
EventType.binder_add_page (BinderAddPageType) – (paper) Added Binder page (deprecated, replaced by ‘Edited files’)
EventType.binder_add_section (BinderAddSectionType) – (paper) Added Binder section (deprecated, replaced by ‘Edited files’)
EventType.binder_remove_page (BinderRemovePageType) – (paper) Removed Binder page (deprecated, replaced by ‘Edited files’)
EventType.binder_remove_section (BinderRemoveSectionType) – (paper) Removed Binder section (deprecated, replaced by ‘Edited files’)
EventType.binder_rename_page (BinderRenamePageType) – (paper) Renamed Binder page (deprecated, replaced by ‘Edited files’)
EventType.binder_rename_section (BinderRenameSectionType) – (paper) Renamed Binder section (deprecated, replaced by ‘Edited files’)
EventType.binder_reorder_page (BinderReorderPageType) – (paper) Reordered Binder page (deprecated, replaced by ‘Edited files’)
EventType.binder_reorder_section (BinderReorderSectionType) – (paper) Reordered Binder section (deprecated, replaced by ‘Edited files’)
EventType.paper_content_add_member (PaperContentAddMemberType) – (paper) Added users and/or groups to Paper doc/folder
EventType.paper_content_add_to_folder (PaperContentAddToFolderType) – (paper) Added Paper doc/folder to folder
EventType.paper_content_archive (PaperContentArchiveType) – (paper) Archived Paper doc/folder
EventType.paper_content_create (PaperContentCreateType) – (paper) Created Paper doc/folder
EventType.paper_content_permanently_delete (PaperContentPermanentlyDeleteType) – (paper) Permanently deleted Paper doc/folder
EventType.paper_content_remove_from_folder (PaperContentRemoveFromFolderType) – (paper) Removed Paper doc/folder from folder
EventType.paper_content_remove_member (PaperContentRemoveMemberType) – (paper) Removed users and/or groups from Paper doc/folder
EventType.paper_content_rename (PaperContentRenameType) – (paper) Renamed Paper doc/folder
EventType.paper_content_restore (PaperContentRestoreType) – (paper) Restored archived Paper doc/folder
EventType.paper_doc_add_comment (PaperDocAddCommentType) – (paper) Added Paper doc comment
EventType.paper_doc_change_member_role (PaperDocChangeMemberRoleType) – (paper) Changed member permissions for Paper doc
EventType.paper_doc_change_sharing_policy (PaperDocChangeSharingPolicyType) – (paper) Changed sharing setting for Paper doc
EventType.paper_doc_change_subscription (PaperDocChangeSubscriptionType) – (paper) Followed/unfollowed Paper doc
EventType.paper_doc_deleted (PaperDocDeletedType) – (paper) Archived Paper doc (deprecated, no longer logged)
EventType.paper_doc_delete_comment (PaperDocDeleteCommentType) – (paper) Deleted Paper doc comment
EventType.paper_doc_download (PaperDocDownloadType) – (paper) Downloaded Paper doc in specific format
EventType.paper_doc_edit (PaperDocEditType) – (paper) Edited Paper doc
EventType.paper_doc_edit_comment (PaperDocEditCommentType) – (paper) Edited Paper doc comment
EventType.paper_doc_followed (PaperDocFollowedType) – (paper) Followed Paper doc (deprecated, replaced by ‘Followed/unfollowed Paper doc’)
EventType.paper_doc_mention (PaperDocMentionType) – (paper) Mentioned user in Paper doc
EventType.paper_doc_ownership_changed (PaperDocOwnershipChangedType) – (paper) Transferred ownership of Paper doc
EventType.paper_doc_request_access (PaperDocRequestAccessType) – (paper) Requested access to Paper doc
EventType.paper_doc_resolve_comment (PaperDocResolveCommentType) – (paper) Resolved Paper doc comment
EventType.paper_doc_revert (PaperDocRevertType) – (paper) Restored Paper doc to previous version
EventType.paper_doc_slack_share (PaperDocSlackShareType) – (paper) Shared Paper doc via Slack
EventType.paper_doc_team_invite (PaperDocTeamInviteType) – (paper) Shared Paper doc with users and/or groups (deprecated, no longer logged)
EventType.paper_doc_trashed (PaperDocTrashedType) – (paper) Deleted Paper doc
EventType.paper_doc_unresolve_comment (PaperDocUnresolveCommentType) – (paper) Unresolved Paper doc comment
EventType.paper_doc_untrashed (PaperDocUntrashedType) – (paper) Restored Paper doc
EventType.paper_doc_view (PaperDocViewType) – (paper) Viewed Paper doc
EventType.paper_external_view_allow (PaperExternalViewAllowType) – (paper) Changed Paper external sharing setting to anyone (deprecated, no longer logged)
EventType.paper_external_view_default_team (PaperExternalViewDefaultTeamType) – (paper) Changed Paper external sharing setting to default team (deprecated, no longer logged)
EventType.paper_external_view_forbid (PaperExternalViewForbidType) – (paper) Changed Paper external sharing setting to team-only (deprecated, no longer logged)
EventType.paper_folder_change_subscription (PaperFolderChangeSubscriptionType) – (paper) Followed/unfollowed Paper folder
EventType.paper_folder_deleted (PaperFolderDeletedType) – (paper) Archived Paper folder (deprecated, no longer logged)
EventType.paper_folder_followed (PaperFolderFollowedType) – (paper) Followed Paper folder (deprecated, replaced by ‘Followed/unfollowed Paper folder’)
EventType.paper_folder_team_invite (PaperFolderTeamInviteType) – (paper) Shared Paper folder with users and/or groups (deprecated, no longer logged)
EventType.paper_published_link_change_permission (PaperPublishedLinkChangePermissionType) – (paper) Changed permissions for published doc
EventType.paper_published_link_create (PaperPublishedLinkCreateType) – (paper) Published doc
EventType.paper_published_link_disabled (PaperPublishedLinkDisabledType) – (paper) Unpublished doc
EventType.paper_published_link_view (PaperPublishedLinkViewType) – (paper) Viewed published doc
EventType.password_change (PasswordChangeType) – (passwords) Changed password
EventType.password_reset (PasswordResetType) – (passwords) Reset password
EventType.password_reset_all (PasswordResetAllType) – (passwords) Reset all team member passwords
EventType.protect_internal_domains_changed (ProtectInternalDomainsChangedType) – (protect) Modified Protect internal domains list
EventType.classification_create_report (ClassificationCreateReportType) – (reports) Created Classification report
EventType.classification_create_report_fail (ClassificationCreateReportFailType) – (reports) Couldn’t create Classification report
EventType.emm_create_exceptions_report (EmmCreateExceptionsReportType) – (reports) Created EMM-excluded users report
EventType.emm_create_usage_report (EmmCreateUsageReportType) – (reports) Created EMM mobile app usage report
EventType.export_members_report (ExportMembersReportType) – (reports) Created member data report
EventType.export_members_report_fail (ExportMembersReportFailType) – (reports) Failed to create members data report
EventType.external_sharing_create_report (ExternalSharingCreateReportType) – (reports) Created External sharing report
EventType.external_sharing_report_failed (ExternalSharingReportFailedType) – (reports) Couldn’t create External sharing report
EventType.member_access_details_create_report (MemberAccessDetailsCreateReportType) – (reports) Created member access report
EventType.member_access_details_create_report_failed (MemberAccessDetailsCreateReportFailedType) – (reports) Couldn’t generate member access report
EventType.no_expiration_link_gen_create_report (NoExpirationLinkGenCreateReportType) – (reports) Report created: Links created with no expiration
EventType.no_expiration_link_gen_report_failed (NoExpirationLinkGenReportFailedType) – (reports) Couldn’t create report: Links created with no expiration
EventType.no_password_link_gen_create_report (NoPasswordLinkGenCreateReportType) – (reports) Report created: Links created without passwords
EventType.no_password_link_gen_report_failed (NoPasswordLinkGenReportFailedType) – (reports) Couldn’t create report: Links created without passwords
EventType.no_password_link_view_create_report (NoPasswordLinkViewCreateReportType) – (reports) Report created: Views of links without passwords
EventType.no_password_link_view_report_failed (NoPasswordLinkViewReportFailedType) – (reports) Couldn’t create report: Views of links without passwords
EventType.outdated_link_view_create_report (OutdatedLinkViewCreateReportType) – (reports) Report created: Views of old links
EventType.outdated_link_view_report_failed (OutdatedLinkViewReportFailedType) – (reports) Couldn’t create report: Views of old links
EventType.paper_admin_export_start (PaperAdminExportStartType) – (reports) Exported all team Paper docs
EventType.ransomware_alert_create_report (RansomwareAlertCreateReportType) – (reports) Created ransomware report
EventType.ransomware_alert_create_report_failed (RansomwareAlertCreateReportFailedType) – (reports) Couldn’t generate ransomware report
EventType.shared_folders_create_report (SharedFoldersCreateReportType) – (reports) Created shared folders report
EventType.shared_folders_create_report_failed (SharedFoldersCreateReportFailedType) – (reports) Couldn’t generate shared folders report
EventType.smart_sync_create_admin_privilege_report (SmartSyncCreateAdminPrivilegeReportType) – (reports) Created Smart Sync non-admin devices report
EventType.team_activity_create_report (TeamActivityCreateReportType) – (reports) Created team activity report
EventType.team_activity_create_report_fail (TeamActivityCreateReportFailType) – (reports) Couldn’t generate team activity report
EventType.team_folders_create_report (TeamFoldersCreateReportType) – (reports) Created team folders report
EventType.team_folders_create_report_failed (TeamFoldersCreateReportFailedType) – (reports) Couldn’t generate team folders report
EventType.team_storage_create_report (TeamStorageCreateReportType) – (reports) Created team storage report
EventType.team_storage_create_report_failed (TeamStorageCreateReportFailedType) – (reports) Couldn’t generate team storage report
EventType.collection_share (CollectionShareType) – (sharing) Shared album
EventType.file_transfers_file_add (FileTransfersFileAddType) – (sharing) Transfer files added
EventType.file_transfers_transfer_delete (FileTransfersTransferDeleteType) – (sharing) Deleted transfer
EventType.file_transfers_transfer_download (FileTransfersTransferDownloadType) – (sharing) Transfer downloaded
EventType.file_transfers_transfer_send (FileTransfersTransferSendType) – (sharing) Sent transfer
EventType.file_transfers_transfer_view (FileTransfersTransferViewType) – (sharing) Viewed transfer
EventType.media_hub_project_team_add (MediaHubProjectTeamAddType) – (sharing) Added member to Media Hub project
EventType.media_hub_project_team_delete (MediaHubProjectTeamDeleteType) – (sharing) Removed member from Media Hub project
EventType.media_hub_project_team_role_changed (MediaHubProjectTeamRoleChangedType) – (sharing) Changed member role in Media Hub project
EventType.media_hub_shared_link_audience_changed (MediaHubSharedLinkAudienceChangedType) – (sharing) Changed Media Hub shared link audience
EventType.media_hub_shared_link_created (MediaHubSharedLinkCreatedType) – (sharing) Created Media Hub shared link
EventType.media_hub_shared_link_download_setting_changed (MediaHubSharedLinkDownloadSettingChangedType) – (sharing) Changed Media Hub shared link download setting
EventType.media_hub_shared_link_revoked (MediaHubSharedLinkRevokedType) – (sharing) Revoked Media Hub shared link
EventType.note_acl_invite_only (NoteAclInviteOnlyType) – (sharing) Changed Paper doc to invite-only (deprecated, no longer logged)
EventType.note_acl_link (NoteAclLinkType) – (sharing) Changed Paper doc to link-accessible (deprecated, no longer logged)
EventType.note_acl_team_link (NoteAclTeamLinkType) – (sharing) Changed Paper doc to link-accessible for team (deprecated, no longer logged)
EventType.note_shared (NoteSharedType) – (sharing) Shared Paper doc (deprecated, no longer logged)
EventType.note_share_receive (NoteShareReceiveType) – (sharing) Shared received Paper doc (deprecated, no longer logged)
EventType.open_note_shared (OpenNoteSharedType) – (sharing) Opened shared Paper doc (deprecated, no longer logged)
EventType.replay_file_shared_link_created (ReplayFileSharedLinkCreatedType) – (sharing) Created shared link in Replay
EventType.replay_file_shared_link_modified (ReplayFileSharedLinkModifiedType) – (sharing) Changed shared link in Replay
EventType.replay_project_team_add (ReplayProjectTeamAddType) – (sharing) Added member to Replay Project
EventType.replay_project_team_delete (ReplayProjectTeamDeleteType) – (sharing) Removed member from Replay Project
EventType.send_and_track_file_added (SendAndTrackFileAddedType) – (sharing) File added to Send and Track
EventType.send_and_track_file_renamed (SendAndTrackFileRenamedType) – (sharing) File renamed in Send and Track
EventType.send_and_track_file_updated (SendAndTrackFileUpdatedType) – (sharing) File updated in Send and Track
EventType.send_and_track_link_created (SendAndTrackLinkCreatedType) – (sharing) Link created in Send and Track
EventType.send_and_track_link_deleted (SendAndTrackLinkDeletedType) – (sharing) Link deleted in Send and Track
EventType.send_and_track_link_updated (SendAndTrackLinkUpdatedType) – (sharing) Send and Track Link Updated
EventType.send_and_track_link_viewed (SendAndTrackLinkViewedType) – (sharing) Send and Track Link Visited
EventType.send_and_track_removed_file_and_associated_links (SendAndTrackRemovedFileAndAssociatedLinksType) – (sharing) Send and Track file and associated links deleted
EventType.sf_add_group (SfAddGroupType) – (sharing) Added team to shared folder (deprecated, no longer logged)
EventType.sf_allow_non_members_to_view_shared_links (SfAllowNonMembersToViewSharedLinksType) – (sharing) Allowed non-collaborators to view links to files in shared folder (deprecated, no longer logged)
EventType.sf_external_invite_warn (SfExternalInviteWarnType) – (sharing) Set team members to see warning before sharing folders outside team (deprecated, no longer logged)
EventType.sf_fb_invite (SfFbInviteType) – (sharing) Invited Facebook users to shared folder (deprecated, no longer logged)
EventType.sf_fb_invite_change_role (SfFbInviteChangeRoleType) – (sharing) Changed Facebook user’s role in shared folder (deprecated, no longer logged)
EventType.sf_fb_uninvite (SfFbUninviteType) – (sharing) Uninvited Facebook user from shared folder (deprecated, no longer logged)
EventType.sf_invite_group (SfInviteGroupType) – (sharing) Invited group to shared folder (deprecated, no longer logged)
EventType.sf_team_grant_access (SfTeamGrantAccessType) – (sharing) Granted access to shared folder (deprecated, no longer logged)
EventType.sf_team_invite (SfTeamInviteType) – (sharing) Invited team members to shared folder (deprecated, replaced by ‘Invited user to Dropbox and added them to shared file/folder’)
EventType.sf_team_invite_change_role (SfTeamInviteChangeRoleType) – (sharing) Changed team member’s role in shared folder (deprecated, no longer logged)
EventType.sf_team_join (SfTeamJoinType) – (sharing) Joined team member’s shared folder (deprecated, no longer logged)
EventType.sf_team_join_from_oob_link (SfTeamJoinFromOobLinkType) – (sharing) Joined team member’s shared folder from link (deprecated, no longer logged)
EventType.sf_team_uninvite (SfTeamUninviteType) – (sharing) Unshared folder with team member (deprecated, replaced by ‘Removed invitee from shared file/folder before invite was accepted’)
EventType.shared_content_add_invitees (SharedContentAddInviteesType) – (sharing) Invited user to Dropbox and added them to shared file/folder
EventType.shared_content_add_link_expiry (SharedContentAddLinkExpiryType) – (sharing) Added expiration date to link for shared file/folder (deprecated, no longer logged)
EventType.shared_content_add_link_password (SharedContentAddLinkPasswordType) – (sharing) Added password to link for shared file/folder (deprecated, no longer logged)
EventType.shared_content_add_member (SharedContentAddMemberType) – (sharing) Added users and/or groups to shared file/folder
EventType.shared_content_change_downloads_policy (SharedContentChangeDownloadsPolicyType) – (sharing) Changed whether members can download shared file/folder (deprecated, no longer logged)
EventType.shared_content_change_invitee_role (SharedContentChangeInviteeRoleType) – (sharing) Changed access type of invitee to shared file/folder before invite was accepted
EventType.shared_content_change_link_audience (SharedContentChangeLinkAudienceType) – (sharing) Changed link audience of shared file/folder (deprecated, no longer logged)
EventType.shared_content_change_link_expiry (SharedContentChangeLinkExpiryType) – (sharing) Changed link expiration of shared file/folder (deprecated, no longer logged)
EventType.shared_content_change_link_password (SharedContentChangeLinkPasswordType) – (sharing) Changed link password of shared file/folder (deprecated, no longer logged)
EventType.shared_content_change_member_role (SharedContentChangeMemberRoleType) – (sharing) Changed access type of shared file/folder member
EventType.shared_content_change_viewer_info_policy (SharedContentChangeViewerInfoPolicyType) – (sharing) Changed whether members can see who viewed shared file/folder
EventType.shared_content_claim_invitation (SharedContentClaimInvitationType) – (sharing) Acquired membership of shared file/folder by accepting invite
EventType.shared_content_copy (SharedContentCopyType) – (sharing) Copied shared file/folder to own Dropbox
EventType.shared_content_download (SharedContentDownloadType) – (sharing) Downloaded shared file/folder
EventType.shared_content_relinquish_membership (SharedContentRelinquishMembershipType) – (sharing) Left shared file/folder
EventType.shared_content_remove_invitees (SharedContentRemoveInviteesType) – (sharing) Removed invitee from shared file/folder before invite was accepted
EventType.shared_content_remove_link_expiry (SharedContentRemoveLinkExpiryType) – (sharing) Removed link expiration date of shared file/folder (deprecated, no longer logged)
EventType.shared_content_remove_link_password (SharedContentRemoveLinkPasswordType) – (sharing) Removed link password of shared file/folder (deprecated, no longer logged)
EventType.shared_content_remove_member (SharedContentRemoveMemberType) – (sharing) Removed user/group from shared file/folder
EventType.shared_content_request_access (SharedContentRequestAccessType) – (sharing) Requested access to shared file/folder
EventType.shared_content_restore_invitees (SharedContentRestoreInviteesType) – (sharing) Restored shared file/folder invitees
EventType.shared_content_restore_member (SharedContentRestoreMemberType) – (sharing) Restored users and/or groups to membership of shared file/folder
EventType.shared_content_unshare (SharedContentUnshareType) – (sharing) Unshared file/folder by clearing membership
EventType.shared_content_view (SharedContentViewType) – (sharing) Previewed shared file/folder
EventType.shared_folder_change_link_policy (SharedFolderChangeLinkPolicyType) – (sharing) Changed who can access shared folder via link
EventType.shared_folder_change_members_inheritance_policy (SharedFolderChangeMembersInheritancePolicyType) – (sharing) Changed whether shared folder inherits members from parent folder
EventType.shared_folder_change_members_management_policy (SharedFolderChangeMembersManagementPolicyType) – (sharing) Changed who can add/remove members of shared folder
EventType.shared_folder_change_members_policy (SharedFolderChangeMembersPolicyType) – (sharing) Changed who can become member of shared folder
EventType.shared_folder_create (SharedFolderCreateType) – (sharing) Created shared folder
EventType.shared_folder_decline_invitation (SharedFolderDeclineInvitationType) – (sharing) Declined team member’s invite to shared folder
EventType.shared_folder_mount (SharedFolderMountType) – (sharing) Added shared folder to own Dropbox
EventType.shared_folder_nest (SharedFolderNestType) – (sharing) Changed parent of shared folder
EventType.shared_folder_transfer_ownership (SharedFolderTransferOwnershipType) – (sharing) Transferred ownership of shared folder to another member
EventType.shared_folder_unmount (SharedFolderUnmountType) – (sharing) Deleted shared folder from Dropbox
EventType.shared_link_add_expiry (SharedLinkAddExpiryType) – (sharing) Added shared link expiration date
EventType.shared_link_change_expiry (SharedLinkChangeExpiryType) – (sharing) Changed shared link expiration date
EventType.shared_link_change_visibility (SharedLinkChangeVisibilityType) – (sharing) Changed visibility of shared link
EventType.shared_link_copy (SharedLinkCopyType) – (sharing) Added file/folder to Dropbox from shared link
EventType.shared_link_create (SharedLinkCreateType) – (sharing) Created shared link
EventType.shared_link_disable (SharedLinkDisableType) – (sharing) Removed shared link
EventType.shared_link_download (SharedLinkDownloadType) – (sharing) Downloaded file/folder from shared link
EventType.shared_link_remove_expiry (SharedLinkRemoveExpiryType) – (sharing) Removed shared link expiration date
EventType.shared_link_remove_visitor (SharedLinkRemoveVisitorType) – (sharing) Removed link visitor
EventType.shared_link_settings_add_expiration (SharedLinkSettingsAddExpirationType) – (sharing) Added an expiration date to the shared link
EventType.shared_link_settings_add_password (SharedLinkSettingsAddPasswordType) – (sharing) Added a password to the shared link
EventType.shared_link_settings_allow_download_disabled (SharedLinkSettingsAllowDownloadDisabledType) – (sharing) Disabled downloads
EventType.shared_link_settings_allow_download_enabled (SharedLinkSettingsAllowDownloadEnabledType) – (sharing) Enabled downloads
EventType.shared_link_settings_change_audience (SharedLinkSettingsChangeAudienceType) – (sharing) Changed the audience of the shared link
EventType.shared_link_settings_change_expiration (SharedLinkSettingsChangeExpirationType) – (sharing) Changed the expiration date of the shared link
EventType.shared_link_settings_change_password (SharedLinkSettingsChangePasswordType) – (sharing) Changed the password of the shared link
EventType.shared_link_settings_remove_expiration (SharedLinkSettingsRemoveExpirationType) – (sharing) Removed the expiration date from the shared link
EventType.shared_link_settings_remove_password (SharedLinkSettingsRemovePasswordType) – (sharing) Removed the password from the shared link
EventType.shared_link_share (SharedLinkShareType) – (sharing) Added members as audience of shared link
EventType.shared_link_view (SharedLinkViewType) – (sharing) Opened shared link
EventType.shared_note_opened (SharedNoteOpenedType) – (sharing) Opened shared Paper doc (deprecated, no longer logged)
EventType.shmodel_disable_downloads (ShmodelDisableDownloadsType) – (sharing) Disabled downloads for link (deprecated, no longer logged)
EventType.shmodel_enable_downloads (ShmodelEnableDownloadsType) – (sharing) Enabled downloads for link (deprecated, no longer logged)
EventType.shmodel_group_share (ShmodelGroupShareType) – (sharing) Shared link with group (deprecated, no longer logged)
EventType.showcase_access_granted (ShowcaseAccessGrantedType) – (showcase) Granted access to showcase
EventType.showcase_add_member (ShowcaseAddMemberType) – (showcase) Added member to showcase
EventType.showcase_archived (ShowcaseArchivedType) – (showcase) Archived showcase
EventType.showcase_created (ShowcaseCreatedType) – (showcase) Created showcase
EventType.showcase_delete_comment (ShowcaseDeleteCommentType) – (showcase) Deleted showcase comment
EventType.showcase_edited (ShowcaseEditedType) – (showcase) Edited showcase
EventType.showcase_edit_comment (ShowcaseEditCommentType) – (showcase) Edited showcase comment
EventType.showcase_file_added (ShowcaseFileAddedType) – (showcase) Added file to showcase
EventType.showcase_file_download (ShowcaseFileDownloadType) – (showcase) Downloaded file from showcase
EventType.showcase_file_removed (ShowcaseFileRemovedType) – (showcase) Removed file from showcase
EventType.showcase_file_view (ShowcaseFileViewType) – (showcase) Viewed file in showcase
EventType.showcase_permanently_deleted (ShowcasePermanentlyDeletedType) – (showcase) Permanently deleted showcase
EventType.showcase_post_comment (ShowcasePostCommentType) – (showcase) Added showcase comment
EventType.showcase_remove_member (ShowcaseRemoveMemberType) – (showcase) Removed member from showcase
EventType.showcase_renamed (ShowcaseRenamedType) – (showcase) Renamed showcase
EventType.showcase_request_access (ShowcaseRequestAccessType) – (showcase) Requested access to showcase
EventType.showcase_resolve_comment (ShowcaseResolveCommentType) – (showcase) Resolved showcase comment
EventType.showcase_restored (ShowcaseRestoredType) – (showcase) Unarchived showcase
EventType.showcase_trashed (ShowcaseTrashedType) – (showcase) Deleted showcase
EventType.showcase_trashed_deprecated (ShowcaseTrashedDeprecatedType) – (showcase) Deleted showcase (old version) (deprecated, replaced by ‘Deleted showcase’)
EventType.showcase_unresolve_comment (ShowcaseUnresolveCommentType) – (showcase) Unresolved showcase comment
EventType.showcase_untrashed (ShowcaseUntrashedType) – (showcase) Restored showcase
EventType.showcase_untrashed_deprecated (ShowcaseUntrashedDeprecatedType) – (showcase) Restored showcase (old version) (deprecated, replaced by ‘Restored showcase’)
EventType.showcase_view (ShowcaseViewType) – (showcase) Viewed showcase
EventType.sign_signature_request_canceled (SignSignatureRequestCanceledType) – (signatures) Canceled signature request
EventType.sign_signature_request_completed (SignSignatureRequestCompletedType) – (signatures) Completed signature request
EventType.sign_signature_request_declined (SignSignatureRequestDeclinedType) – (signatures) Declined signature request
EventType.sign_signature_request_opened (SignSignatureRequestOpenedType) – (signatures) Opened signature request
EventType.sign_signature_request_reminder_sent (SignSignatureRequestReminderSentType) – (signatures) Sent signature request reminder
EventType.sign_signature_request_sent (SignSignatureRequestSentType) – (signatures) Sent signature request
EventType.sign_template_created (SignTemplateCreatedType) – (signatures) Created template
EventType.sign_template_shared (SignTemplateSharedType) – (signatures) Shared template
EventType.risc_security_event (RiscSecurityEventType) – (sso) RISC security event received from external provider
EventType.sso_add_cert (SsoAddCertType) – (sso) Added X.509 certificate for SSO
EventType.sso_add_login_url (SsoAddLoginUrlType) – (sso) Added sign-in URL for SSO
EventType.sso_add_logout_url (SsoAddLogoutUrlType) – (sso) Added sign-out URL for SSO
EventType.sso_change_cert (SsoChangeCertType) – (sso) Changed X.509 certificate for SSO
EventType.sso_change_login_url (SsoChangeLoginUrlType) – (sso) Changed sign-in URL for SSO
EventType.sso_change_logout_url (SsoChangeLogoutUrlType) – (sso) Changed sign-out URL for SSO
EventType.sso_change_saml_identity_mode (SsoChangeSamlIdentityModeType) – (sso) Changed SAML identity mode for SSO
EventType.sso_remove_cert (SsoRemoveCertType) – (sso) Removed X.509 certificate for SSO
EventType.sso_remove_login_url (SsoRemoveLoginUrlType) – (sso) Removed sign-in URL for SSO
EventType.sso_remove_logout_url (SsoRemoveLogoutUrlType) – (sso) Removed sign-out URL for SSO
EventType.team_folder_change_status (TeamFolderChangeStatusType) – (team_folders) Changed archival status of team folder
EventType.team_folder_create (TeamFolderCreateType) – (team_folders) Created team folder in active status
EventType.team_folder_downgrade (TeamFolderDowngradeType) – (team_folders) Downgraded team folder to regular shared folder
EventType.team_folder_permanently_delete (TeamFolderPermanentlyDeleteType) – (team_folders) Permanently deleted archived team folder
EventType.team_folder_rename (TeamFolderRenameType) – (team_folders) Renamed active/archived team folder
EventType.team_folder_space_limits_change_caps_type (TeamFolderSpaceLimitsChangeCapsTypeType) – (team_folders) Changed team folder space limit enforcement type
EventType.team_folder_space_limits_change_limit (TeamFolderSpaceLimitsChangeLimitType) – (team_folders) Changed team folder space limit
EventType.team_folder_space_limits_change_notification_target (TeamFolderSpaceLimitsChangeNotificationTargetType) – (team_folders) Changed team folder space limit notification target
EventType.team_selective_sync_settings_changed (TeamSelectiveSyncSettingsChangedType) – (team_folders) Changed sync default
EventType.account_capture_change_policy (AccountCaptureChangePolicyType) – (team_policies) Changed account capture setting on team domain
EventType.admin_email_reminders_changed (AdminEmailRemindersChangedType) – (team_policies) Changed admin reminder settings for requests to join the team
EventType.ai_third_party_sharing_dropbox_base_policy_changed (AiThirdPartySharingDropboxBasePolicyChangedType) – (team_policies) Changed AI third party sharing policy for team
EventType.allow_download_disabled (AllowDownloadDisabledType) – (team_policies) Disabled downloads (deprecated, no longer logged)
EventType.allow_download_enabled (AllowDownloadEnabledType) – (team_policies) Enabled downloads (deprecated, no longer logged)
EventType.apple_login_change_policy (AppleLoginChangePolicyType) – (team_policies) Enabled/disabled Apple login for team
EventType.app_permissions_changed (AppPermissionsChangedType) – (team_policies) Changed app permissions
EventType.camera_uploads_policy_changed (CameraUploadsPolicyChangedType) – (team_policies) Changed camera uploads setting for team
EventType.capture_team_space_policy_changed (CaptureTeamSpacePolicyChangedType) – (team_policies) Changed Capture team space policy for team
EventType.capture_transcript_policy_changed (CaptureTranscriptPolicyChangedType) – (team_policies) Changed Capture transcription policy for team
EventType.classification_change_policy (ClassificationChangePolicyType) – (team_policies) Changed classification policy for team
EventType.computer_backup_policy_changed (ComputerBackupPolicyChangedType) – (team_policies) Changed computer backup policy for team
EventType.content_administration_policy_changed (ContentAdministrationPolicyChangedType) – (team_policies) Changed content management setting
EventType.content_deletion_protection_change_policy (ContentDeletionProtectionChangePolicyType) – (team_policies) Changed content deletion protection policy for team
EventType.dash_external_sharing_policy_changed (DashExternalSharingPolicyChangedType) – (team_policies) Changed Dash external sharing policy for team
EventType.data_placement_restriction_change_policy (DataPlacementRestrictionChangePolicyType) – (team_policies) Set restrictions on data center locations where team data resides
EventType.data_placement_restriction_satisfy_policy (DataPlacementRestrictionSatisfyPolicyType) – (team_policies) Completed restrictions on data center locations where team data resides
EventType.device_approvals_add_exception (DeviceApprovalsAddExceptionType) – (team_policies) Added members to device approvals exception list
EventType.device_approvals_change_desktop_policy (DeviceApprovalsChangeDesktopPolicyType) – (team_policies) Set/removed limit on number of computers member can link to team Dropbox account
EventType.device_approvals_change_mobile_policy (DeviceApprovalsChangeMobilePolicyType) – (team_policies) Set/removed limit on number of mobile devices member can link to team Dropbox account
EventType.device_approvals_change_overage_action (DeviceApprovalsChangeOverageActionType) – (team_policies) Changed device approvals setting when member is over limit
EventType.device_approvals_change_unlink_action (DeviceApprovalsChangeUnlinkActionType) – (team_policies) Changed device approvals setting when member unlinks approved device
EventType.device_approvals_remove_exception (DeviceApprovalsRemoveExceptionType) – (team_policies) Removed members from device approvals exception list
EventType.directory_restrictions_add_members (DirectoryRestrictionsAddMembersType) – (team_policies) Added members to directory restrictions list
EventType.directory_restrictions_remove_members (DirectoryRestrictionsRemoveMembersType) – (team_policies) Removed members from directory restrictions list
EventType.dropbox_passwords_policy_changed (DropboxPasswordsPolicyChangedType) – (team_policies) Changed Dropbox Passwords policy for team
EventType.email_ingest_policy_changed (EmailIngestPolicyChangedType) – (team_policies) Changed email to Dropbox policy for team
EventType.emm_add_exception (EmmAddExceptionType) – (team_policies) Added members to EMM exception list
EventType.emm_change_policy (EmmChangePolicyType) – (team_policies) Enabled/disabled enterprise mobility management for members
EventType.emm_remove_exception (EmmRemoveExceptionType) – (team_policies) Removed members from EMM exception list
EventType.extended_version_history_change_policy (ExtendedVersionHistoryChangePolicyType) – (team_policies) Accepted/opted out of extended version history
EventType.external_drive_backup_policy_changed (ExternalDriveBackupPolicyChangedType) – (team_policies) Changed external drive backup policy for team
EventType.file_comments_change_policy (FileCommentsChangePolicyType) – (team_policies) Enabled/disabled commenting on team files
EventType.file_locking_policy_changed (FileLockingPolicyChangedType) – (team_policies) Changed file locking policy for team
EventType.file_provider_migration_policy_changed (FileProviderMigrationPolicyChangedType) – (team_policies) Changed File Provider Migration policy for team
EventType.file_requests_change_policy (FileRequestsChangePolicyType) – (team_policies) Enabled/disabled file requests
EventType.file_requests_emails_enabled (FileRequestsEmailsEnabledType) – (team_policies) Enabled file request emails for everyone (deprecated, no longer logged)
EventType.file_requests_emails_restricted_to_team_only (FileRequestsEmailsRestrictedToTeamOnlyType) – (team_policies) Enabled file request emails for team (deprecated, no longer logged)
EventType.file_transfers_policy_changed (FileTransfersPolicyChangedType) – (team_policies) Changed file transfers policy for team
EventType.flexible_file_names_policy_changed (FlexibleFileNamesPolicyChangedType) – (team_policies) Changed flexible file names policy for team
EventType.folder_link_restriction_policy_changed (FolderLinkRestrictionPolicyChangedType) – (team_policies) Changed folder link restrictions policy for team
EventType.google_sso_change_policy (GoogleSsoChangePolicyType) – (team_policies) Enabled/disabled Google single sign-on for team
EventType.group_user_management_change_policy (GroupUserManagementChangePolicyType) – (team_policies) Changed who can create groups
EventType.integration_policy_changed (IntegrationPolicyChangedType) – (team_policies) Changed integration policy for team
EventType.invite_acceptance_email_policy_changed (InviteAcceptanceEmailPolicyChangedType) – (team_policies) Changed invite accept email policy for team
EventType.media_hub_adding_people_policy_changed (MediaHubAddingPeoplePolicyChangedType) – (team_policies) Changed the policy for adding people to Media Hub content
EventType.media_hub_download_policy_changed (MediaHubDownloadPolicyChangedType) – (team_policies) Changed the policy for downloading Media Hub content
EventType.media_hub_link_sharing_policy_changed (MediaHubLinkSharingPolicyChangedType) – (team_policies) Changed the policy for sharing Media Hub content
EventType.member_requests_change_policy (MemberRequestsChangePolicyType) – (team_policies) Changed whether users can find team when not invited
EventType.member_send_invite_policy_changed (MemberSendInvitePolicyChangedType) – (team_policies) Changed member send invite policy for team
EventType.member_space_limits_add_exception (MemberSpaceLimitsAddExceptionType) – (team_policies) Added members to member space limit exception list
EventType.member_space_limits_change_caps_type_policy (MemberSpaceLimitsChangeCapsTypePolicyType) – (team_policies) Changed member space limit type for team
EventType.member_space_limits_change_policy (MemberSpaceLimitsChangePolicyType) – (team_policies) Changed team default member space limit
EventType.member_space_limits_remove_exception (MemberSpaceLimitsRemoveExceptionType) – (team_policies) Removed members from member space limit exception list
EventType.member_suggestions_change_policy (MemberSuggestionsChangePolicyType) – (team_policies) Enabled/disabled option for team members to suggest people to add to team
EventType.microsoft_login_change_policy (MicrosoftLoginChangePolicyType) – (team_policies) Enabled/disabled Microsoft login for team
EventType.microsoft_office_addin_change_policy (MicrosoftOfficeAddinChangePolicyType) – (team_policies) Enabled/disabled Microsoft Office add-in
EventType.multi_team_identity_policy_changed (MultiTeamIdentityPolicyChangedType) – (team_policies) Changed multi-team identity policy for team
EventType.network_control_change_policy (NetworkControlChangePolicyType) – (team_policies) Enabled/disabled network control
EventType.paper_change_deployment_policy (PaperChangeDeploymentPolicyType) – (team_policies) Changed whether Dropbox Paper, when enabled, is deployed to all members or to specific members
EventType.paper_change_member_link_policy (PaperChangeMemberLinkPolicyType) – (team_policies) Changed whether non-members can view Paper docs with link (deprecated, no longer logged)
EventType.paper_change_member_policy (PaperChangeMemberPolicyType) – (team_policies) Changed whether members can share Paper docs outside team, and if docs are accessible only by team members or anyone by default
EventType.paper_change_policy (PaperChangePolicyType) – (team_policies) Enabled/disabled Dropbox Paper for team
EventType.paper_default_folder_policy_changed (PaperDefaultFolderPolicyChangedType) – (team_policies) Changed Paper Default Folder Policy setting for team
EventType.paper_desktop_policy_changed (PaperDesktopPolicyChangedType) – (team_policies) Enabled/disabled Paper Desktop for team
EventType.paper_enabled_users_group_addition (PaperEnabledUsersGroupAdditionType) – (team_policies) Added users to Paper-enabled users list
EventType.paper_enabled_users_group_removal (PaperEnabledUsersGroupRemovalType) – (team_policies) Removed users from Paper-enabled users list
EventType.passkey_login_policy_changed (PasskeyLoginPolicyChangedType) – (team_policies) Changed passkey login policy for team
EventType.password_strength_requirements_change_policy (PasswordStrengthRequirementsChangePolicyType) – (team_policies) Changed team password strength requirements
EventType.permanent_delete_change_policy (PermanentDeleteChangePolicyType) – (team_policies) Enabled/disabled ability of team members to permanently delete content
EventType.previews_ai_policy_changed (PreviewsAiPolicyChangedType) – (team_policies) Changed Dropbox AI policy for team
EventType.replay_adding_people_policy_changed (ReplayAddingPeoplePolicyChangedType) – (team_policies) Changed the policy for adding people to Replay content
EventType.replay_sharing_policy_changed (ReplaySharingPolicyChangedType) – (team_policies) Changed the policy for sharing Replay content
EventType.reseller_support_change_policy (ResellerSupportChangePolicyType) – (team_policies) Enabled/disabled reseller support
EventType.rewind_policy_changed (RewindPolicyChangedType) – (team_policies) Changed Rewind policy for team
EventType.send_and_track_policy_changed (SendAndTrackPolicyChangedType) – (team_policies) Changed “Send and track” policy for team
EventType.send_external_sharing_policy_changed (SendExternalSharingPolicyChangedType) – (team_policies) Changed “Send and track” external sharing policy for team
EventType.send_for_signature_policy_changed (SendForSignaturePolicyChangedType) – (team_policies) Changed send for signature policy for team
EventType.shared_link_default_permissions_policy_changed (SharedLinkDefaultPermissionsPolicyChangedType) – (team_policies) Changed shared link default permissions policy for team
EventType.sharing_change_folder_join_policy (SharingChangeFolderJoinPolicyType) – (team_policies) Changed whether team members can join shared folders owned outside team
EventType.sharing_change_link_allow_change_expiration_policy (SharingChangeLinkAllowChangeExpirationPolicyType) – (team_policies) Changed the allow remove or change expiration policy for the links shared outside of the team
EventType.sharing_change_link_default_expiration_policy (SharingChangeLinkDefaultExpirationPolicyType) – (team_policies) Changed the default expiration for the links shared outside of the team
EventType.sharing_change_link_enforce_password_policy (SharingChangeLinkEnforcePasswordPolicyType) – (team_policies) Changed the password requirement for the links shared outside of the team
EventType.sharing_change_link_policy (SharingChangeLinkPolicyType) – (team_policies) Changed whether members can share links outside team, and if links are accessible only by team members or anyone by default
EventType.sharing_change_member_policy (SharingChangeMemberPolicyType) – (team_policies) Changed whether members can share files/folders outside team
EventType.showcase_change_download_policy (ShowcaseChangeDownloadPolicyType) – (team_policies) Enabled/disabled downloading files from Dropbox Showcase for team
EventType.showcase_change_enabled_policy (ShowcaseChangeEnabledPolicyType) – (team_policies) Enabled/disabled Dropbox Showcase for team
EventType.showcase_change_external_sharing_policy (ShowcaseChangeExternalSharingPolicyType) – (team_policies) Enabled/disabled sharing Dropbox Showcase externally for team
EventType.sign_external_sharing_policy_changed (SignExternalSharingPolicyChangedType) – (team_policies) Changed Signatures external sharing policy for team
EventType.sign_template_creation_permission_changed (SignTemplateCreationPermissionChangedType) – (team_policies) Changed template creation permission
EventType.smarter_smart_sync_policy_changed (SmarterSmartSyncPolicyChangedType) – (team_policies) Changed automatic Smart Sync setting for team
EventType.smart_sync_change_policy (SmartSyncChangePolicyType) – (team_policies) Changed default Smart Sync setting for team members
EventType.smart_sync_not_opt_out (SmartSyncNotOptOutType) – (team_policies) Opted team into Smart Sync
EventType.smart_sync_opt_out (SmartSyncOptOutType) – (team_policies) Opted team out of Smart Sync
EventType.sso_change_policy (SsoChangePolicyType) – (team_policies) Changed single sign-on setting for team
EventType.stack_cross_team_access_policy_changed (StackCrossTeamAccessPolicyChangedType) – (team_policies) Changed cross-team Stack access policy for team
EventType.team_branding_policy_changed (TeamBrandingPolicyChangedType) – (team_policies) Changed team branding policy for team
EventType.team_extensions_policy_changed (TeamExtensionsPolicyChangedType) – (team_policies) Changed App Integrations setting for team
EventType.team_member_storage_request_policy_changed (TeamMemberStorageRequestPolicyChangedType) – (team_policies) Changed team member storage request policy for team
EventType.team_selective_sync_policy_changed (TeamSelectiveSyncPolicyChangedType) – (team_policies) Enabled/disabled Team Selective Sync for team
EventType.team_sharing_whitelist_subjects_changed (TeamSharingWhitelistSubjectsChangedType) – (team_policies) Edited the approved list for sharing externally
EventType.tfa_add_exception (TfaAddExceptionType) – (team_policies) Added members to two factor authentication exception list
EventType.tfa_change_policy (TfaChangePolicyType) – (team_policies) Changed two-factor authentication setting for team
EventType.tfa_remove_exception (TfaRemoveExceptionType) – (team_policies) Removed members from two factor authentication exception list
EventType.top_level_content_policy_changed (TopLevelContentPolicyChangedType) – (team_policies) Changed top level content setting for team
EventType.two_account_change_policy (TwoAccountChangePolicyType) – (team_policies) Enabled/disabled option for members to link personal Dropbox account and team account to same computer
EventType.viewer_info_policy_changed (ViewerInfoPolicyChangedType) – (team_policies) Changed team policy for viewer info
EventType.watermarking_policy_changed (WatermarkingPolicyChangedType) – (team_policies) Changed watermarking policy for team
EventType.web_sessions_change_active_session_limit (WebSessionsChangeActiveSessionLimitType) – (team_policies) Changed limit on active sessions per member
EventType.web_sessions_change_fixed_length_policy (WebSessionsChangeFixedLengthPolicyType) – (team_policies) Changed how long members can stay signed in to Dropbox.com
EventType.web_sessions_change_idle_length_policy (WebSessionsChangeIdleLengthPolicyType) – (team_policies) Changed how long team members can be idle while signed in to Dropbox.com
EventType.data_residency_migration_request_successful (DataResidencyMigrationRequestSuccessfulType) – (team_profile) Requested data residency migration for team data
EventType.data_residency_migration_request_unsuccessful (DataResidencyMigrationRequestUnsuccessfulType) – (team_profile) Request for data residency migration for team data has failed
EventType.team_merge_from (TeamMergeFromType) – (team_profile) Merged another team into this team
EventType.team_merge_to (TeamMergeToType) – (team_profile) Merged this team into another team
EventType.team_profile_add_background (TeamProfileAddBackgroundType) – (team_profile) Added team background to display on shared link headers
EventType.team_profile_add_logo (TeamProfileAddLogoType) – (team_profile) Added team logo to display on shared link headers
EventType.team_profile_change_background (TeamProfileChangeBackgroundType) – (team_profile) Changed team background displayed on shared link headers
EventType.team_profile_change_default_language (TeamProfileChangeDefaultLanguageType) – (team_profile) Changed default language for team
EventType.team_profile_change_logo (TeamProfileChangeLogoType) – (team_profile) Changed team logo displayed on shared link headers
EventType.team_profile_change_name (TeamProfileChangeNameType) – (team_profile) Changed team name
EventType.team_profile_remove_background (TeamProfileRemoveBackgroundType) – (team_profile) Removed team background displayed on shared link headers
EventType.team_profile_remove_logo (TeamProfileRemoveLogoType) – (team_profile) Removed team logo displayed on shared link headers
EventType.passkey_add (PasskeyAddType) – (tfa) Added passkey for login
EventType.passkey_remove (PasskeyRemoveType) – (tfa) Removed passkey for login
EventType.tfa_add_backup_phone (TfaAddBackupPhoneType) – (tfa) Added backup phone for two-factor authentication
EventType.tfa_add_security_key (TfaAddSecurityKeyType) – (tfa) Added security key for two-factor authentication
EventType.tfa_change_backup_phone (TfaChangeBackupPhoneType) – (tfa) Changed backup phone for two-factor authentication
EventType.tfa_change_status (TfaChangeStatusType) – (tfa) Enabled/disabled/changed two-factor authentication setting
EventType.tfa_remove_backup_phone (TfaRemoveBackupPhoneType) – (tfa) Removed backup phone for two-factor authentication
EventType.tfa_remove_security_key (TfaRemoveSecurityKeyType) – (tfa) Removed security key for two-factor authentication
EventType.tfa_reset (TfaResetType) – (tfa) Reset two-factor authentication for team member
EventType.changed_enterprise_admin_role (ChangedEnterpriseAdminRoleType) – (trusted_teams) Changed enterprise admin role
EventType.changed_enterprise_connected_team_status (ChangedEnterpriseConnectedTeamStatusType) – (trusted_teams) Changed enterprise-connected team status
EventType.ended_enterprise_admin_session (EndedEnterpriseAdminSessionType) – (trusted_teams) Ended enterprise admin session
EventType.ended_enterprise_admin_session_deprecated (EndedEnterpriseAdminSessionDeprecatedType) – (trusted_teams) Ended enterprise admin session (deprecated, replaced by ‘Ended enterprise admin session’)
EventType.enterprise_settings_locking (EnterpriseSettingsLockingType) – (trusted_teams) Changed who can update a setting
EventType.guest_admin_change_status (GuestAdminChangeStatusType) – (trusted_teams) Changed guest team admin status
EventType.started_enterprise_admin_session (StartedEnterpriseAdminSessionType) – (trusted_teams) Started enterprise admin session
EventType.team_merge_request_accepted (TeamMergeRequestAcceptedType) – (trusted_teams) Accepted a team merge request
EventType.team_merge_request_accepted_shown_to_primary_team (TeamMergeRequestAcceptedShownToPrimaryTeamType) – (trusted_teams) Accepted a team merge request (deprecated, replaced by ‘Accepted a team merge request’)
EventType.team_merge_request_accepted_shown_to_secondary_team (TeamMergeRequestAcceptedShownToSecondaryTeamType) – (trusted_teams) Accepted a team merge request (deprecated, replaced by ‘Accepted a team merge request’)
EventType.team_merge_request_auto_canceled (TeamMergeRequestAutoCanceledType) – (trusted_teams) Automatically canceled team merge request
EventType.team_merge_request_canceled (TeamMergeRequestCanceledType) – (trusted_teams) Canceled a team merge request
EventType.team_merge_request_canceled_shown_to_primary_team (TeamMergeRequestCanceledShownToPrimaryTeamType) – (trusted_teams) Canceled a team merge request (deprecated, replaced by ‘Canceled a team merge request’)
EventType.team_merge_request_canceled_shown_to_secondary_team (TeamMergeRequestCanceledShownToSecondaryTeamType) – (trusted_teams) Canceled a team merge request (deprecated, replaced by ‘Canceled a team merge request’)
EventType.team_merge_request_expired (TeamMergeRequestExpiredType) – (trusted_teams) Team merge request expired
EventType.team_merge_request_expired_shown_to_primary_team (TeamMergeRequestExpiredShownToPrimaryTeamType) – (trusted_teams) Team merge request expired (deprecated, replaced by ‘Team merge request expired’)
EventType.team_merge_request_expired_shown_to_secondary_team (TeamMergeRequestExpiredShownToSecondaryTeamType) – (trusted_teams) Team merge request expired (deprecated, replaced by ‘Team merge request expired’)
EventType.team_merge_request_rejected_shown_to_primary_team (TeamMergeRequestRejectedShownToPrimaryTeamType) – (trusted_teams) Rejected a team merge request (deprecated, no longer logged)
EventType.team_merge_request_rejected_shown_to_secondary_team (TeamMergeRequestRejectedShownToSecondaryTeamType) – (trusted_teams) Rejected a team merge request (deprecated, no longer logged)
EventType.team_merge_request_reminder (TeamMergeRequestReminderType) – (trusted_teams) Sent a team merge request reminder
EventType.team_merge_request_reminder_shown_to_primary_team (TeamMergeRequestReminderShownToPrimaryTeamType) – (trusted_teams) Sent a team merge request reminder (deprecated, replaced by ‘Sent a team merge request reminder’)
EventType.team_merge_request_reminder_shown_to_secondary_team (TeamMergeRequestReminderShownToSecondaryTeamType) – (trusted_teams) Sent a team merge request reminder (deprecated, replaced by ‘Sent a team merge request reminder’)
EventType.team_merge_request_revoked (TeamMergeRequestRevokedType) – (trusted_teams) Canceled the team merge
EventType.team_merge_request_sent_shown_to_primary_team (TeamMergeRequestSentShownToPrimaryTeamType) – (trusted_teams) Requested to merge their Dropbox team into yours
EventType.team_merge_request_sent_shown_to_secondary_team (TeamMergeRequestSentShownToSecondaryTeamType) – (trusted_teams) Requested to merge your team into another Dropbox team
- classmethod account_capture_change_availability(val)
Create an instance of this class set to the
account_capture_change_availabilitytag with valueval.- Parameters:
- Return type:
- classmethod account_capture_change_policy(val)
Create an instance of this class set to the
account_capture_change_policytag with valueval.- Parameters:
- Return type:
- classmethod account_capture_migrate_account(val)
Create an instance of this class set to the
account_capture_migrate_accounttag with valueval.- Parameters:
- Return type:
- classmethod account_capture_notification_emails_sent(val)
Create an instance of this class set to the
account_capture_notification_emails_senttag with valueval.- Parameters:
- Return type:
- classmethod account_capture_relinquish_account(val)
Create an instance of this class set to the
account_capture_relinquish_accounttag with valueval.- Parameters:
- Return type:
- classmethod account_lock_or_unlocked(val)
Create an instance of this class set to the
account_lock_or_unlockedtag with valueval.- Parameters:
- Return type:
- classmethod addon_assigned(val)
Create an instance of this class set to the
addon_assignedtag with valueval.- Parameters:
val (AddonAssignedType)
- Return type:
- classmethod addon_removed(val)
Create an instance of this class set to the
addon_removedtag with valueval.- Parameters:
val (AddonRemovedType)
- Return type:
- classmethod admin_alerting_alert_state_changed(val)
Create an instance of this class set to the
admin_alerting_alert_state_changedtag with valueval.- Parameters:
- Return type:
- classmethod admin_alerting_changed_alert_config(val)
Create an instance of this class set to the
admin_alerting_changed_alert_configtag with valueval.- Parameters:
- Return type:
- classmethod admin_alerting_triggered_alert(val)
Create an instance of this class set to the
admin_alerting_triggered_alerttag with valueval.- Parameters:
- Return type:
- classmethod admin_email_reminders_changed(val)
Create an instance of this class set to the
admin_email_reminders_changedtag with valueval.- Parameters:
- Return type:
- classmethod ai_third_party_sharing_dropbox_base_policy_changed(val)
Create an instance of this class set to the
ai_third_party_sharing_dropbox_base_policy_changedtag with valueval.- Parameters:
- Return type:
- classmethod allow_download_disabled(val)
Create an instance of this class set to the
allow_download_disabledtag with valueval.- Parameters:
- Return type:
- classmethod allow_download_enabled(val)
Create an instance of this class set to the
allow_download_enabledtag with valueval.- Parameters:
val (AllowDownloadEnabledType)
- Return type:
- classmethod app_blocked_by_permissions(val)
Create an instance of this class set to the
app_blocked_by_permissionstag with valueval.- Parameters:
- Return type:
- classmethod app_link_team(val)
Create an instance of this class set to the
app_link_teamtag with valueval.- Parameters:
val (AppLinkTeamType)
- Return type:
- classmethod app_link_user(val)
Create an instance of this class set to the
app_link_usertag with valueval.- Parameters:
val (AppLinkUserType)
- Return type:
- classmethod app_permissions_changed(val)
Create an instance of this class set to the
app_permissions_changedtag with valueval.- Parameters:
- Return type:
- classmethod app_unlink_team(val)
Create an instance of this class set to the
app_unlink_teamtag with valueval.- Parameters:
val (AppUnlinkTeamType)
- Return type:
- classmethod app_unlink_user(val)
Create an instance of this class set to the
app_unlink_usertag with valueval.- Parameters:
val (AppUnlinkUserType)
- Return type:
- classmethod apple_login_change_policy(val)
Create an instance of this class set to the
apple_login_change_policytag with valueval.- Parameters:
- Return type:
- classmethod apply_naming_convention(val)
Create an instance of this class set to the
apply_naming_conventiontag with valueval.- Parameters:
- Return type:
- classmethod backup_admin_invitation_sent(val)
Create an instance of this class set to the
backup_admin_invitation_senttag with valueval.- Parameters:
- Return type:
- classmethod backup_invitation_opened(val)
Create an instance of this class set to the
backup_invitation_openedtag with valueval.- Parameters:
- Return type:
- classmethod binder_add_page(val)
Create an instance of this class set to the
binder_add_pagetag with valueval.- Parameters:
val (BinderAddPageType)
- Return type:
- classmethod binder_add_section(val)
Create an instance of this class set to the
binder_add_sectiontag with valueval.- Parameters:
val (BinderAddSectionType)
- Return type:
- classmethod binder_remove_page(val)
Create an instance of this class set to the
binder_remove_pagetag with valueval.- Parameters:
val (BinderRemovePageType)
- Return type:
- classmethod binder_remove_section(val)
Create an instance of this class set to the
binder_remove_sectiontag with valueval.- Parameters:
val (BinderRemoveSectionType)
- Return type:
- classmethod binder_rename_page(val)
Create an instance of this class set to the
binder_rename_pagetag with valueval.- Parameters:
val (BinderRenamePageType)
- Return type:
- classmethod binder_rename_section(val)
Create an instance of this class set to the
binder_rename_sectiontag with valueval.- Parameters:
val (BinderRenameSectionType)
- Return type:
- classmethod binder_reorder_page(val)
Create an instance of this class set to the
binder_reorder_pagetag with valueval.- Parameters:
val (BinderReorderPageType)
- Return type:
- classmethod binder_reorder_section(val)
Create an instance of this class set to the
binder_reorder_sectiontag with valueval.- Parameters:
val (BinderReorderSectionType)
- Return type:
- classmethod camera_uploads_policy_changed(val)
Create an instance of this class set to the
camera_uploads_policy_changedtag with valueval.- Parameters:
- Return type:
- classmethod capture_team_space_policy_changed(val)
Create an instance of this class set to the
capture_team_space_policy_changedtag with valueval.- Parameters:
- Return type:
- classmethod capture_transcript_policy_changed(val)
Create an instance of this class set to the
capture_transcript_policy_changedtag with valueval.- Parameters:
- Return type:
- classmethod changed_enterprise_admin_role(val)
Create an instance of this class set to the
changed_enterprise_admin_roletag with valueval.- Parameters:
- Return type:
- classmethod changed_enterprise_connected_team_status(val)
Create an instance of this class set to the
changed_enterprise_connected_team_statustag with valueval.- Parameters:
- Return type:
- classmethod classification_change_policy(val)
Create an instance of this class set to the
classification_change_policytag with valueval.- Parameters:
- Return type:
- classmethod classification_create_report(val)
Create an instance of this class set to the
classification_create_reporttag with valueval.- Parameters:
- Return type:
- classmethod classification_create_report_fail(val)
Create an instance of this class set to the
classification_create_report_failtag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
collection_sharetag with valueval.- Parameters:
val (CollectionShareType)
- Return type:
- classmethod computer_backup_policy_changed(val)
Create an instance of this class set to the
computer_backup_policy_changedtag with valueval.- Parameters:
- Return type:
- classmethod content_administration_policy_changed(val)
Create an instance of this class set to the
content_administration_policy_changedtag with valueval.- Parameters:
- Return type:
- classmethod content_deletion_protection_change_policy(val)
Create an instance of this class set to the
content_deletion_protection_change_policytag with valueval.- Parameters:
- Return type:
- classmethod create_folder(val)
Create an instance of this class set to the
create_foldertag with valueval.- Parameters:
val (CreateFolderType)
- Return type:
- classmethod create_team_invite_link(val)
Create an instance of this class set to the
create_team_invite_linktag with valueval.- Parameters:
val (CreateTeamInviteLinkType)
- Return type:
- classmethod dash_added_comment_to_stack(val)
Create an instance of this class set to the
dash_added_comment_to_stacktag with valueval.- Parameters:
- Return type:
- classmethod dash_added_connector(val)
Create an instance of this class set to the
dash_added_connectortag with valueval.- Parameters:
val (DashAddedConnectorType)
- Return type:
- classmethod dash_added_link_to_stack(val)
Create an instance of this class set to the
dash_added_link_to_stacktag with valueval.- Parameters:
val (DashAddedLinkToStackType)
- Return type:
- classmethod dash_added_team_email_domain_allowlist(val)
Create an instance of this class set to the
dash_added_team_email_domain_allowlisttag with valueval.- Parameters:
- Return type:
- classmethod dash_admin_added_org_wide_connector(val)
Create an instance of this class set to the
dash_admin_added_org_wide_connectortag with valueval.- Parameters:
- Return type:
- classmethod dash_admin_disabled_connector(val)
Create an instance of this class set to the
dash_admin_disabled_connectortag with valueval.- Parameters:
- Return type:
- classmethod dash_admin_enabled_connector(val)
Create an instance of this class set to the
dash_admin_enabled_connectortag with valueval.- Parameters:
- Return type:
- classmethod dash_admin_removed_org_wide_connector(val)
Create an instance of this class set to the
dash_admin_removed_org_wide_connectortag with valueval.- Parameters:
- Return type:
- classmethod dash_archived_stack(val)
Create an instance of this class set to the
dash_archived_stacktag with valueval.- Parameters:
val (DashArchivedStackType)
- Return type:
Create an instance of this class set to the
dash_changed_audience_of_shared_link_to_stacktag with valueval.- Parameters:
- Return type:
- classmethod dash_cloned_stack(val)
Create an instance of this class set to the
dash_cloned_stacktag with valueval.- Parameters:
val (DashClonedStackType)
- Return type:
- classmethod dash_connector_tools_call(val)
Create an instance of this class set to the
dash_connector_tools_calltag with valueval.- Parameters:
- Return type:
- classmethod dash_created_stack(val)
Create an instance of this class set to the
dash_created_stacktag with valueval.- Parameters:
val (DashCreatedStackType)
- Return type:
- classmethod dash_deleted_comment_from_stack(val)
Create an instance of this class set to the
dash_deleted_comment_from_stacktag with valueval.- Parameters:
- Return type:
- classmethod dash_deleted_stack(val)
Create an instance of this class set to the
dash_deleted_stacktag with valueval.- Parameters:
val (DashDeletedStackType)
- Return type:
- classmethod dash_edited_comment_in_stack(val)
Create an instance of this class set to the
dash_edited_comment_in_stacktag with valueval.- Parameters:
- Return type:
- classmethod dash_external_sharing_policy_changed(val)
Create an instance of this class set to the
dash_external_sharing_policy_changedtag with valueval.- Parameters:
- Return type:
- classmethod dash_external_user_opened_stack(val)
Create an instance of this class set to the
dash_external_user_opened_stacktag with valueval.- Parameters:
- Return type:
- classmethod dash_first_launched_desktop(val)
Create an instance of this class set to the
dash_first_launched_desktoptag with valueval.- Parameters:
- Return type:
- classmethod dash_first_launched_extension(val)
Create an instance of this class set to the
dash_first_launched_extensiontag with valueval.- Parameters:
- Return type:
- classmethod dash_first_launched_web_start_page(val)
Create an instance of this class set to the
dash_first_launched_web_start_pagetag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
dash_opened_shared_link_to_stacktag with valueval.- Parameters:
- Return type:
- classmethod dash_opened_stack(val)
Create an instance of this class set to the
dash_opened_stacktag with valueval.- Parameters:
val (DashOpenedStackType)
- Return type:
- classmethod dash_preview_opt_out_status_changed(val)
Create an instance of this class set to the
dash_preview_opt_out_status_changedtag with valueval.- Parameters:
- Return type:
- classmethod dash_removed_connector(val)
Create an instance of this class set to the
dash_removed_connectortag with valueval.- Parameters:
val (DashRemovedConnectorType)
- Return type:
- classmethod dash_removed_link_from_stack(val)
Create an instance of this class set to the
dash_removed_link_from_stacktag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
dash_removed_shared_link_to_stacktag with valueval.- Parameters:
- Return type:
- classmethod dash_removed_team_email_domain_allowlist(val)
Create an instance of this class set to the
dash_removed_team_email_domain_allowlisttag with valueval.- Parameters:
- Return type:
- classmethod dash_renamed_stack(val)
Create an instance of this class set to the
dash_renamed_stacktag with valueval.- Parameters:
val (DashRenamedStackType)
- Return type:
Create an instance of this class set to the
dash_shared_link_to_stacktag with valueval.- Parameters:
- Return type:
- classmethod dash_unarchived_stack(val)
Create an instance of this class set to the
dash_unarchived_stacktag with valueval.- Parameters:
val (DashUnarchivedStackType)
- Return type:
- classmethod dash_viewed_company_stack(val)
Create an instance of this class set to the
dash_viewed_company_stacktag with valueval.- Parameters:
- Return type:
- classmethod dash_viewed_external_ai_activity_report(val)
Create an instance of this class set to the
dash_viewed_external_ai_activity_reporttag with valueval.- Parameters:
- Return type:
- classmethod data_placement_restriction_change_policy(val)
Create an instance of this class set to the
data_placement_restriction_change_policytag with valueval.- Parameters:
- Return type:
- classmethod data_placement_restriction_satisfy_policy(val)
Create an instance of this class set to the
data_placement_restriction_satisfy_policytag with valueval.- Parameters:
- Return type:
- classmethod data_residency_migration_request_successful(val)
Create an instance of this class set to the
data_residency_migration_request_successfultag with valueval.- Parameters:
- Return type:
- classmethod data_residency_migration_request_unsuccessful(val)
Create an instance of this class set to the
data_residency_migration_request_unsuccessfultag with valueval.- Parameters:
- Return type:
- classmethod delete_team_invite_link(val)
Create an instance of this class set to the
delete_team_invite_linktag with valueval.- Parameters:
val (DeleteTeamInviteLinkType)
- Return type:
- classmethod device_approvals_add_exception(val)
Create an instance of this class set to the
device_approvals_add_exceptiontag with valueval.- Parameters:
- Return type:
- classmethod device_approvals_change_desktop_policy(val)
Create an instance of this class set to the
device_approvals_change_desktop_policytag with valueval.- Parameters:
- Return type:
- classmethod device_approvals_change_mobile_policy(val)
Create an instance of this class set to the
device_approvals_change_mobile_policytag with valueval.- Parameters:
- Return type:
- classmethod device_approvals_change_overage_action(val)
Create an instance of this class set to the
device_approvals_change_overage_actiontag with valueval.- Parameters:
- Return type:
- classmethod device_approvals_change_unlink_action(val)
Create an instance of this class set to the
device_approvals_change_unlink_actiontag with valueval.- Parameters:
- Return type:
- classmethod device_approvals_remove_exception(val)
Create an instance of this class set to the
device_approvals_remove_exceptiontag with valueval.- Parameters:
- Return type:
- classmethod device_change_ip_desktop(val)
Create an instance of this class set to the
device_change_ip_desktoptag with valueval.- Parameters:
- Return type:
- classmethod device_change_ip_mobile(val)
Create an instance of this class set to the
device_change_ip_mobiletag with valueval.- Parameters:
val (DeviceChangeIpMobileType)
- Return type:
- classmethod device_change_ip_web(val)
Create an instance of this class set to the
device_change_ip_webtag with valueval.- Parameters:
val (DeviceChangeIpWebType)
- Return type:
- classmethod device_delete_on_unlink_fail(val)
Create an instance of this class set to the
device_delete_on_unlink_failtag with valueval.- Parameters:
- Return type:
- classmethod device_delete_on_unlink_success(val)
Create an instance of this class set to the
device_delete_on_unlink_successtag with valueval.- Parameters:
- Return type:
- classmethod device_link_fail(val)
Create an instance of this class set to the
device_link_failtag with valueval.- Parameters:
val (DeviceLinkFailType)
- Return type:
- classmethod device_link_success(val)
Create an instance of this class set to the
device_link_successtag with valueval.- Parameters:
val (DeviceLinkSuccessType)
- Return type:
- classmethod device_management_disabled(val)
Create an instance of this class set to the
device_management_disabledtag with valueval.- Parameters:
- Return type:
- classmethod device_management_enabled(val)
Create an instance of this class set to the
device_management_enabledtag with valueval.- Parameters:
- Return type:
- classmethod device_sync_backup_status_changed(val)
Create an instance of this class set to the
device_sync_backup_status_changedtag with valueval.- Parameters:
- Return type:
- classmethod device_unlink(val)
Create an instance of this class set to the
device_unlinktag with valueval.- Parameters:
val (DeviceUnlinkType)
- Return type:
- classmethod directory_restrictions_add_members(val)
Create an instance of this class set to the
directory_restrictions_add_memberstag with valueval.- Parameters:
- Return type:
- classmethod directory_restrictions_remove_members(val)
Create an instance of this class set to the
directory_restrictions_remove_memberstag with valueval.- Parameters:
- Return type:
- classmethod disabled_domain_invites(val)
Create an instance of this class set to the
disabled_domain_invitestag with valueval.- Parameters:
- Return type:
- classmethod domain_invites_approve_request_to_join_team(val)
Create an instance of this class set to the
domain_invites_approve_request_to_join_teamtag with valueval.- Parameters:
- Return type:
- classmethod domain_invites_decline_request_to_join_team(val)
Create an instance of this class set to the
domain_invites_decline_request_to_join_teamtag with valueval.- Parameters:
- Return type:
- classmethod domain_invites_email_existing_users(val)
Create an instance of this class set to the
domain_invites_email_existing_userstag with valueval.- Parameters:
- Return type:
- classmethod domain_invites_request_to_join_team(val)
Create an instance of this class set to the
domain_invites_request_to_join_teamtag with valueval.- Parameters:
- Return type:
- classmethod domain_invites_set_invite_new_user_pref_to_no(val)
Create an instance of this class set to the
domain_invites_set_invite_new_user_pref_to_notag with valueval.- Parameters:
- Return type:
- classmethod domain_invites_set_invite_new_user_pref_to_yes(val)
Create an instance of this class set to the
domain_invites_set_invite_new_user_pref_to_yestag with valueval.- Parameters:
- Return type:
- classmethod domain_verification_add_domain_fail(val)
Create an instance of this class set to the
domain_verification_add_domain_failtag with valueval.- Parameters:
- Return type:
- classmethod domain_verification_add_domain_success(val)
Create an instance of this class set to the
domain_verification_add_domain_successtag with valueval.- Parameters:
- Return type:
- classmethod domain_verification_remove_domain(val)
Create an instance of this class set to the
domain_verification_remove_domaintag with valueval.- Parameters:
- Return type:
- classmethod dropbox_passwords_exported(val)
Create an instance of this class set to the
dropbox_passwords_exportedtag with valueval.- Parameters:
- Return type:
- classmethod dropbox_passwords_new_device_enrolled(val)
Create an instance of this class set to the
dropbox_passwords_new_device_enrolledtag with valueval.- Parameters:
- Return type:
- classmethod dropbox_passwords_policy_changed(val)
Create an instance of this class set to the
dropbox_passwords_policy_changedtag with valueval.- Parameters:
- Return type:
- classmethod email_ingest_policy_changed(val)
Create an instance of this class set to the
email_ingest_policy_changedtag with valueval.- Parameters:
- Return type:
- classmethod email_ingest_receive_file(val)
Create an instance of this class set to the
email_ingest_receive_filetag with valueval.- Parameters:
- Return type:
- classmethod emm_add_exception(val)
Create an instance of this class set to the
emm_add_exceptiontag with valueval.- Parameters:
val (EmmAddExceptionType)
- Return type:
- classmethod emm_change_policy(val)
Create an instance of this class set to the
emm_change_policytag with valueval.- Parameters:
val (EmmChangePolicyType)
- Return type:
- classmethod emm_create_exceptions_report(val)
Create an instance of this class set to the
emm_create_exceptions_reporttag with valueval.- Parameters:
- Return type:
- classmethod emm_create_usage_report(val)
Create an instance of this class set to the
emm_create_usage_reporttag with valueval.- Parameters:
val (EmmCreateUsageReportType)
- Return type:
- classmethod emm_error(val)
Create an instance of this class set to the
emm_errortag with valueval.- Parameters:
val (EmmErrorType)
- Return type:
- classmethod emm_refresh_auth_token(val)
Create an instance of this class set to the
emm_refresh_auth_tokentag with valueval.- Parameters:
val (EmmRefreshAuthTokenType)
- Return type:
- classmethod emm_remove_exception(val)
Create an instance of this class set to the
emm_remove_exceptiontag with valueval.- Parameters:
val (EmmRemoveExceptionType)
- Return type:
- classmethod enabled_domain_invites(val)
Create an instance of this class set to the
enabled_domain_invitestag with valueval.- Parameters:
val (EnabledDomainInvitesType)
- Return type:
- classmethod encrypted_folder_cancel_team_key_rotation(val)
Create an instance of this class set to the
encrypted_folder_cancel_team_key_rotationtag with valueval.- Parameters:
- Return type:
- classmethod encrypted_folder_enroll_backup_key(val)
Create an instance of this class set to the
encrypted_folder_enroll_backup_keytag with valueval.- Parameters:
- Return type:
- classmethod encrypted_folder_enroll_client(val)
Create an instance of this class set to the
encrypted_folder_enroll_clienttag with valueval.- Parameters:
- Return type:
- classmethod encrypted_folder_enroll_team(val)
Create an instance of this class set to the
encrypted_folder_enroll_teamtag with valueval.- Parameters:
- Return type:
- classmethod encrypted_folder_finish_team_unenrollment(val)
Create an instance of this class set to the
encrypted_folder_finish_team_unenrollmenttag with valueval.- Parameters:
- Return type:
- classmethod encrypted_folder_init_team_key_rotation(val)
Create an instance of this class set to the
encrypted_folder_init_team_key_rotationtag with valueval.- Parameters:
- Return type:
- classmethod encrypted_folder_init_team_unenrollment(val)
Create an instance of this class set to the
encrypted_folder_init_team_unenrollmenttag with valueval.- Parameters:
- Return type:
- classmethod encrypted_folder_remove_backup_key(val)
Create an instance of this class set to the
encrypted_folder_remove_backup_keytag with valueval.- Parameters:
- Return type:
- classmethod encrypted_folder_rotate_team_key(val)
Create an instance of this class set to the
encrypted_folder_rotate_team_keytag with valueval.- Parameters:
- Return type:
- classmethod encrypted_folder_unenroll_client(val)
Create an instance of this class set to the
encrypted_folder_unenroll_clienttag with valueval.- Parameters:
- Return type:
- classmethod ended_enterprise_admin_session(val)
Create an instance of this class set to the
ended_enterprise_admin_sessiontag with valueval.- Parameters:
- Return type:
- classmethod ended_enterprise_admin_session_deprecated(val)
Create an instance of this class set to the
ended_enterprise_admin_session_deprecatedtag with valueval.- Parameters:
- Return type:
- classmethod enterprise_settings_locking(val)
Create an instance of this class set to the
enterprise_settings_lockingtag with valueval.- Parameters:
- Return type:
- classmethod export_members_report(val)
Create an instance of this class set to the
export_members_reporttag with valueval.- Parameters:
val (ExportMembersReportType)
- Return type:
- classmethod export_members_report_fail(val)
Create an instance of this class set to the
export_members_report_failtag with valueval.- Parameters:
- Return type:
- classmethod extended_version_history_change_policy(val)
Create an instance of this class set to the
extended_version_history_change_policytag with valueval.- Parameters:
- Return type:
- classmethod external_drive_backup_eligibility_status_checked(val)
Create an instance of this class set to the
external_drive_backup_eligibility_status_checkedtag with valueval.- Parameters:
- Return type:
- classmethod external_drive_backup_policy_changed(val)
Create an instance of this class set to the
external_drive_backup_policy_changedtag with valueval.- Parameters:
- Return type:
- classmethod external_drive_backup_status_changed(val)
Create an instance of this class set to the
external_drive_backup_status_changedtag with valueval.- Parameters:
- Return type:
- classmethod external_sharing_create_report(val)
Create an instance of this class set to the
external_sharing_create_reporttag with valueval.- Parameters:
- Return type:
- classmethod external_sharing_report_failed(val)
Create an instance of this class set to the
external_sharing_report_failedtag with valueval.- Parameters:
- Return type:
- classmethod file_add(val)
Create an instance of this class set to the
file_addtag with valueval.- Parameters:
val (FileAddType)
- Return type:
- classmethod file_add_comment(val)
Create an instance of this class set to the
file_add_commenttag with valueval.- Parameters:
val (FileAddCommentType)
- Return type:
- classmethod file_add_from_automation(val)
Create an instance of this class set to the
file_add_from_automationtag with valueval.- Parameters:
- Return type:
- classmethod file_change_comment_subscription(val)
Create an instance of this class set to the
file_change_comment_subscriptiontag with valueval.- Parameters:
- Return type:
- classmethod file_comments_change_policy(val)
Create an instance of this class set to the
file_comments_change_policytag with valueval.- Parameters:
- Return type:
- classmethod file_copy(val)
Create an instance of this class set to the
file_copytag with valueval.- Parameters:
val (FileCopyType)
- Return type:
- classmethod file_delete(val)
Create an instance of this class set to the
file_deletetag with valueval.- Parameters:
val (FileDeleteType)
- Return type:
- classmethod file_delete_comment(val)
Create an instance of this class set to the
file_delete_commenttag with valueval.- Parameters:
val (FileDeleteCommentType)
- Return type:
- classmethod file_download(val)
Create an instance of this class set to the
file_downloadtag with valueval.- Parameters:
val (FileDownloadType)
- Return type:
- classmethod file_edit(val)
Create an instance of this class set to the
file_edittag with valueval.- Parameters:
val (FileEditType)
- Return type:
- classmethod file_edit_comment(val)
Create an instance of this class set to the
file_edit_commenttag with valueval.- Parameters:
val (FileEditCommentType)
- Return type:
- classmethod file_get_copy_reference(val)
Create an instance of this class set to the
file_get_copy_referencetag with valueval.- Parameters:
val (FileGetCopyReferenceType)
- Return type:
- classmethod file_like_comment(val)
Create an instance of this class set to the
file_like_commenttag with valueval.- Parameters:
val (FileLikeCommentType)
- Return type:
- classmethod file_locking_lock_status_changed(val)
Create an instance of this class set to the
file_locking_lock_status_changedtag with valueval.- Parameters:
- Return type:
- classmethod file_locking_policy_changed(val)
Create an instance of this class set to the
file_locking_policy_changedtag with valueval.- Parameters:
- Return type:
- classmethod file_move(val)
Create an instance of this class set to the
file_movetag with valueval.- Parameters:
val (FileMoveType)
- Return type:
- classmethod file_permanently_delete(val)
Create an instance of this class set to the
file_permanently_deletetag with valueval.- Parameters:
- Return type:
- classmethod file_preview(val)
Create an instance of this class set to the
file_previewtag with valueval.- Parameters:
val (FilePreviewType)
- Return type:
- classmethod file_provider_migration_policy_changed(val)
Create an instance of this class set to the
file_provider_migration_policy_changedtag with valueval.- Parameters:
- Return type:
- classmethod file_rename(val)
Create an instance of this class set to the
file_renametag with valueval.- Parameters:
val (FileRenameType)
- Return type:
- classmethod file_request_auto_close(val)
Create an instance of this class set to the
file_request_auto_closetag with valueval.- Parameters:
val (FileRequestAutoCloseType)
- Return type:
- classmethod file_request_change(val)
Create an instance of this class set to the
file_request_changetag with valueval.- Parameters:
val (FileRequestChangeType)
- Return type:
- classmethod file_request_close(val)
Create an instance of this class set to the
file_request_closetag with valueval.- Parameters:
val (FileRequestCloseType)
- Return type:
- classmethod file_request_create(val)
Create an instance of this class set to the
file_request_createtag with valueval.- Parameters:
val (FileRequestCreateType)
- Return type:
- classmethod file_request_delete(val)
Create an instance of this class set to the
file_request_deletetag with valueval.- Parameters:
val (FileRequestDeleteType)
- Return type:
- classmethod file_request_receive_file(val)
Create an instance of this class set to the
file_request_receive_filetag with valueval.- Parameters:
- Return type:
- classmethod file_requests_change_policy(val)
Create an instance of this class set to the
file_requests_change_policytag with valueval.- Parameters:
- Return type:
- classmethod file_requests_emails_enabled(val)
Create an instance of this class set to the
file_requests_emails_enabledtag with valueval.- Parameters:
- Return type:
- classmethod file_requests_emails_restricted_to_team_only(val)
Create an instance of this class set to the
file_requests_emails_restricted_to_team_onlytag with valueval.- Parameters:
- Return type:
- classmethod file_resolve_comment(val)
Create an instance of this class set to the
file_resolve_commenttag with valueval.- Parameters:
val (FileResolveCommentType)
- Return type:
- classmethod file_restore(val)
Create an instance of this class set to the
file_restoretag with valueval.- Parameters:
val (FileRestoreType)
- Return type:
- classmethod file_revert(val)
Create an instance of this class set to the
file_reverttag with valueval.- Parameters:
val (FileRevertType)
- Return type:
- classmethod file_rollback_changes(val)
Create an instance of this class set to the
file_rollback_changestag with valueval.- Parameters:
val (FileRollbackChangesType)
- Return type:
- classmethod file_save_copy_reference(val)
Create an instance of this class set to the
file_save_copy_referencetag with valueval.- Parameters:
- Return type:
- classmethod file_transfers_file_add(val)
Create an instance of this class set to the
file_transfers_file_addtag with valueval.- Parameters:
val (FileTransfersFileAddType)
- Return type:
- classmethod file_transfers_policy_changed(val)
Create an instance of this class set to the
file_transfers_policy_changedtag with valueval.- Parameters:
- Return type:
- classmethod file_transfers_transfer_delete(val)
Create an instance of this class set to the
file_transfers_transfer_deletetag with valueval.- Parameters:
- Return type:
- classmethod file_transfers_transfer_download(val)
Create an instance of this class set to the
file_transfers_transfer_downloadtag with valueval.- Parameters:
- Return type:
- classmethod file_transfers_transfer_send(val)
Create an instance of this class set to the
file_transfers_transfer_sendtag with valueval.- Parameters:
- Return type:
- classmethod file_transfers_transfer_view(val)
Create an instance of this class set to the
file_transfers_transfer_viewtag with valueval.- Parameters:
- Return type:
- classmethod file_unlike_comment(val)
Create an instance of this class set to the
file_unlike_commenttag with valueval.- Parameters:
val (FileUnlikeCommentType)
- Return type:
- classmethod file_unresolve_comment(val)
Create an instance of this class set to the
file_unresolve_commenttag with valueval.- Parameters:
val (FileUnresolveCommentType)
- Return type:
- classmethod flexible_file_names_policy_changed(val)
Create an instance of this class set to the
flexible_file_names_policy_changedtag with valueval.- Parameters:
- Return type:
- classmethod folder_link_restriction_policy_changed(val)
Create an instance of this class set to the
folder_link_restriction_policy_changedtag with valueval.- Parameters:
- Return type:
- classmethod folder_overview_description_changed(val)
Create an instance of this class set to the
folder_overview_description_changedtag with valueval.- Parameters:
- Return type:
- classmethod folder_overview_item_pinned(val)
Create an instance of this class set to the
folder_overview_item_pinnedtag with valueval.- Parameters:
- Return type:
- classmethod folder_overview_item_unpinned(val)
Create an instance of this class set to the
folder_overview_item_unpinnedtag with valueval.- Parameters:
- Return type:
- get_account_capture_change_availability()
(domains) Granted/revoked option to enable account capture on team domains
Only call this if
is_account_capture_change_availability()is true.- Return type:
- get_account_capture_change_policy()
(team_policies) Changed account capture setting on team domain
Only call this if
is_account_capture_change_policy()is true.- Return type:
- get_account_capture_migrate_account()
(domains) Account-captured user migrated account to team
Only call this if
is_account_capture_migrate_account()is true.- Return type:
- get_account_capture_notification_emails_sent()
(domains) Sent account capture email to all unmanaged members
Only call this if
is_account_capture_notification_emails_sent()is true.- Return type:
- get_account_capture_relinquish_account()
(domains) Account-captured user changed account email to personal email
Only call this if
is_account_capture_relinquish_account()is true.- Return type:
- get_account_lock_or_unlocked()
(logins) Unlocked/locked account after failed sign in attempts
Only call this if
is_account_lock_or_unlocked()is true.- Return type:
- get_addon_assigned()
(members) Add-on Assigned
Only call this if
is_addon_assigned()is true.- Return type:
- get_addon_removed()
(members) Add-on Removed
Only call this if
is_addon_removed()is true.- Return type:
- get_admin_alerting_alert_state_changed()
(admin_alerting) Changed an alert state
Only call this if
is_admin_alerting_alert_state_changed()is true.- Return type:
- get_admin_alerting_changed_alert_config()
(admin_alerting) Changed an alert setting
Only call this if
is_admin_alerting_changed_alert_config()is true.- Return type:
- get_admin_alerting_triggered_alert()
(admin_alerting) Triggered security alert
Only call this if
is_admin_alerting_triggered_alert()is true.- Return type:
- get_admin_email_reminders_changed()
(team_policies) Changed admin reminder settings for requests to join the team
Only call this if
is_admin_email_reminders_changed()is true.- Return type:
- get_ai_third_party_sharing_dropbox_base_policy_changed()
(team_policies) Changed AI third party sharing policy for team
Only call this if
is_ai_third_party_sharing_dropbox_base_policy_changed()is true.- Return type:
- get_allow_download_disabled()
(team_policies) Disabled downloads (deprecated, no longer logged)
Only call this if
is_allow_download_disabled()is true.- Return type:
- get_allow_download_enabled()
(team_policies) Enabled downloads (deprecated, no longer logged)
Only call this if
is_allow_download_enabled()is true.- Return type:
- get_app_blocked_by_permissions()
(apps) Failed to connect app for member
Only call this if
is_app_blocked_by_permissions()is true.- Return type:
- get_app_link_team()
(apps) Linked app for team
Only call this if
is_app_link_team()is true.- Return type:
- get_app_link_user()
(apps) Linked app for member
Only call this if
is_app_link_user()is true.- Return type:
- get_app_permissions_changed()
(team_policies) Changed app permissions
Only call this if
is_app_permissions_changed()is true.- Return type:
- get_app_unlink_team()
(apps) Unlinked app for team
Only call this if
is_app_unlink_team()is true.- Return type:
- get_app_unlink_user()
(apps) Unlinked app for member
Only call this if
is_app_unlink_user()is true.- Return type:
- get_apple_login_change_policy()
(team_policies) Enabled/disabled Apple login for team
Only call this if
is_apple_login_change_policy()is true.- Return type:
- get_apply_naming_convention()
(file_operations) Applied naming convention
Only call this if
is_apply_naming_convention()is true.- Return type:
- get_backup_admin_invitation_sent()
(members) Invited members to activate Backup
Only call this if
is_backup_admin_invitation_sent()is true.- Return type:
- get_backup_invitation_opened()
(members) Opened Backup invite
Only call this if
is_backup_invitation_opened()is true.- Return type:
- get_binder_add_page()
(paper) Added Binder page (deprecated, replaced by ‘Edited files’)
Only call this if
is_binder_add_page()is true.- Return type:
- get_binder_add_section()
(paper) Added Binder section (deprecated, replaced by ‘Edited files’)
Only call this if
is_binder_add_section()is true.- Return type:
- get_binder_remove_page()
(paper) Removed Binder page (deprecated, replaced by ‘Edited files’)
Only call this if
is_binder_remove_page()is true.- Return type:
- get_binder_remove_section()
(paper) Removed Binder section (deprecated, replaced by ‘Edited files’)
Only call this if
is_binder_remove_section()is true.- Return type:
- get_binder_rename_page()
(paper) Renamed Binder page (deprecated, replaced by ‘Edited files’)
Only call this if
is_binder_rename_page()is true.- Return type:
- get_binder_rename_section()
(paper) Renamed Binder section (deprecated, replaced by ‘Edited files’)
Only call this if
is_binder_rename_section()is true.- Return type:
- get_binder_reorder_page()
(paper) Reordered Binder page (deprecated, replaced by ‘Edited files’)
Only call this if
is_binder_reorder_page()is true.- Return type:
- get_binder_reorder_section()
(paper) Reordered Binder section (deprecated, replaced by ‘Edited files’)
Only call this if
is_binder_reorder_section()is true.- Return type:
- get_camera_uploads_policy_changed()
(team_policies) Changed camera uploads setting for team
Only call this if
is_camera_uploads_policy_changed()is true.- Return type:
- get_capture_team_space_policy_changed()
(team_policies) Changed Capture team space policy for team
Only call this if
is_capture_team_space_policy_changed()is true.- Return type:
- get_capture_transcript_policy_changed()
(team_policies) Changed Capture transcription policy for team
Only call this if
is_capture_transcript_policy_changed()is true.- Return type:
- get_changed_enterprise_admin_role()
(trusted_teams) Changed enterprise admin role
Only call this if
is_changed_enterprise_admin_role()is true.- Return type:
- get_changed_enterprise_connected_team_status()
(trusted_teams) Changed enterprise-connected team status
Only call this if
is_changed_enterprise_connected_team_status()is true.- Return type:
- get_classification_change_policy()
(team_policies) Changed classification policy for team
Only call this if
is_classification_change_policy()is true.- Return type:
- get_classification_create_report()
(reports) Created Classification report
Only call this if
is_classification_create_report()is true.- Return type:
- get_classification_create_report_fail()
(reports) Couldn’t create Classification report
Only call this if
is_classification_create_report_fail()is true.- Return type:
(sharing) Shared album
Only call this if
is_collection_share()is true.- Return type:
- get_computer_backup_policy_changed()
(team_policies) Changed computer backup policy for team
Only call this if
is_computer_backup_policy_changed()is true.- Return type:
- get_content_administration_policy_changed()
(team_policies) Changed content management setting
Only call this if
is_content_administration_policy_changed()is true.- Return type:
- get_content_deletion_protection_change_policy()
(team_policies) Changed content deletion protection policy for team
Only call this if
is_content_deletion_protection_change_policy()is true.- Return type:
- get_create_folder()
(file_operations) Created folders (deprecated, no longer logged)
Only call this if
is_create_folder()is true.- Return type:
- get_create_team_invite_link()
(members) Created team invite link
Only call this if
is_create_team_invite_link()is true.- Return type:
- get_dash_added_comment_to_stack()
(dash) Added a comment to a stack
Only call this if
is_dash_added_comment_to_stack()is true.- Return type:
- get_dash_added_connector()
(dash) Connected to a user connector
Only call this if
is_dash_added_connector()is true.- Return type:
- get_dash_added_link_to_stack()
(dash) Added a link to a stack
Only call this if
is_dash_added_link_to_stack()is true.- Return type:
- get_dash_added_team_email_domain_allowlist()
(dash) Admin added an email domain to the team allowlist
Only call this if
is_dash_added_team_email_domain_allowlist()is true.- Return type:
- get_dash_admin_added_org_wide_connector()
(dash) Admin added an admin connector
Only call this if
is_dash_admin_added_org_wide_connector()is true.- Return type:
- get_dash_admin_disabled_connector()
(dash) Admin disabled a user connector
Only call this if
is_dash_admin_disabled_connector()is true.- Return type:
- get_dash_admin_enabled_connector()
(dash) Admin enabled a user connector
Only call this if
is_dash_admin_enabled_connector()is true.- Return type:
- get_dash_admin_removed_org_wide_connector()
(dash) Admin removed an admin connector
Only call this if
is_dash_admin_removed_org_wide_connector()is true.- Return type:
- get_dash_archived_stack()
(dash) Archived a stack
Only call this if
is_dash_archived_stack()is true.- Return type:
(dash) Changed the audience of a shared link to a stack
Only call this if
is_dash_changed_audience_of_shared_link_to_stack()is true.- Return type:
- get_dash_cloned_stack()
(dash) Cloned stack
Only call this if
is_dash_cloned_stack()is true.- Return type:
- get_dash_connector_tools_call()
(dash) Called a tool on a connector
Only call this if
is_dash_connector_tools_call()is true.- Return type:
- get_dash_created_stack()
(dash) Created a stack
Only call this if
is_dash_created_stack()is true.- Return type:
- get_dash_deleted_comment_from_stack()
(dash) Deleted a comment from a stack
Only call this if
is_dash_deleted_comment_from_stack()is true.- Return type:
- get_dash_deleted_stack()
(dash) Deleted a stack
Only call this if
is_dash_deleted_stack()is true.- Return type:
- get_dash_edited_comment_in_stack()
(dash) Edited a comment in a stack
Only call this if
is_dash_edited_comment_in_stack()is true.- Return type:
- get_dash_external_sharing_policy_changed()
(team_policies) Changed Dash external sharing policy for team
Only call this if
is_dash_external_sharing_policy_changed()is true.- Return type:
- get_dash_external_user_opened_stack()
(dash) External user opened a stack
Only call this if
is_dash_external_user_opened_stack()is true.- Return type:
- get_dash_first_launched_desktop()
(dash) Opened the desktop app for the first time
Only call this if
is_dash_first_launched_desktop()is true.- Return type:
- get_dash_first_launched_extension()
(dash) Opened the extension for the first time
Only call this if
is_dash_first_launched_extension()is true.- Return type:
- get_dash_first_launched_web_start_page()
(dash) Opened the web Start Page for the first time
Only call this if
is_dash_first_launched_web_start_page()is true.- Return type:
(dash) Checked access permissions to a stack
Only call this if
is_dash_opened_shared_link_to_stack()is true.- Return type:
- get_dash_opened_stack()
(dash) Opened a stack
Only call this if
is_dash_opened_stack()is true.- Return type:
- get_dash_preview_opt_out_status_changed()
(dash) Changed the preview opt-out status
Only call this if
is_dash_preview_opt_out_status_changed()is true.- Return type:
- get_dash_removed_connector()
(dash) Disconnected a user connector
Only call this if
is_dash_removed_connector()is true.- Return type:
- get_dash_removed_link_from_stack()
(dash) Removed a link from a stack
Only call this if
is_dash_removed_link_from_stack()is true.- Return type:
(dash) Removed a shared link to a stack
Only call this if
is_dash_removed_shared_link_to_stack()is true.- Return type:
- get_dash_removed_team_email_domain_allowlist()
(dash) Admin removed an email domain from the team allowlist
Only call this if
is_dash_removed_team_email_domain_allowlist()is true.- Return type:
- get_dash_renamed_stack()
(dash) Renamed a stack
Only call this if
is_dash_renamed_stack()is true.- Return type:
(dash) Shared a link to a stack
Only call this if
is_dash_shared_link_to_stack()is true.- Return type:
- get_dash_unarchived_stack()
(dash) Unarchived a stack
Only call this if
is_dash_unarchived_stack()is true.- Return type:
- get_dash_viewed_company_stack()
(dash) Member viewed a company stack
Only call this if
is_dash_viewed_company_stack()is true.- Return type:
- get_dash_viewed_external_ai_activity_report()
(dash) Admin viewed the external AI activity report
Only call this if
is_dash_viewed_external_ai_activity_report()is true.- Return type:
- get_data_placement_restriction_change_policy()
(team_policies) Set restrictions on data center locations where team data resides
Only call this if
is_data_placement_restriction_change_policy()is true.- Return type:
- get_data_placement_restriction_satisfy_policy()
(team_policies) Completed restrictions on data center locations where team data resides
Only call this if
is_data_placement_restriction_satisfy_policy()is true.- Return type:
- get_data_residency_migration_request_successful()
(team_profile) Requested data residency migration for team data
Only call this if
is_data_residency_migration_request_successful()is true.- Return type:
- get_data_residency_migration_request_unsuccessful()
(team_profile) Request for data residency migration for team data has failed
Only call this if
is_data_residency_migration_request_unsuccessful()is true.- Return type:
- get_delete_team_invite_link()
(members) Deleted team invite link
Only call this if
is_delete_team_invite_link()is true.- Return type:
- get_device_approvals_add_exception()
(team_policies) Added members to device approvals exception list
Only call this if
is_device_approvals_add_exception()is true.- Return type:
- get_device_approvals_change_desktop_policy()
(team_policies) Set/removed limit on number of computers member can link to team Dropbox account
Only call this if
is_device_approvals_change_desktop_policy()is true.- Return type:
- get_device_approvals_change_mobile_policy()
(team_policies) Set/removed limit on number of mobile devices member can link to team Dropbox account
Only call this if
is_device_approvals_change_mobile_policy()is true.- Return type:
- get_device_approvals_change_overage_action()
(team_policies) Changed device approvals setting when member is over limit
Only call this if
is_device_approvals_change_overage_action()is true.- Return type:
- get_device_approvals_change_unlink_action()
(team_policies) Changed device approvals setting when member unlinks approved device
Only call this if
is_device_approvals_change_unlink_action()is true.- Return type:
- get_device_approvals_remove_exception()
(team_policies) Removed members from device approvals exception list
Only call this if
is_device_approvals_remove_exception()is true.- Return type:
- get_device_change_ip_desktop()
(devices) Changed IP address associated with active desktop session
Only call this if
is_device_change_ip_desktop()is true.- Return type:
- get_device_change_ip_mobile()
(devices) Changed IP address associated with active mobile session
Only call this if
is_device_change_ip_mobile()is true.- Return type:
- get_device_change_ip_web()
(devices) Changed IP address associated with active web session
Only call this if
is_device_change_ip_web()is true.- Return type:
- get_device_delete_on_unlink_fail()
(devices) Failed to delete all files from unlinked device
Only call this if
is_device_delete_on_unlink_fail()is true.- Return type:
- get_device_delete_on_unlink_success()
(devices) Deleted all files from unlinked device
Only call this if
is_device_delete_on_unlink_success()is true.- Return type:
- get_device_link_fail()
(devices) Failed to link device
Only call this if
is_device_link_fail()is true.- Return type:
- get_device_link_success()
(devices) Linked device
Only call this if
is_device_link_success()is true.- Return type:
- get_device_management_disabled()
(devices) Disabled device management (deprecated, no longer logged)
Only call this if
is_device_management_disabled()is true.- Return type:
- get_device_management_enabled()
(devices) Enabled device management (deprecated, no longer logged)
Only call this if
is_device_management_enabled()is true.- Return type:
- get_device_sync_backup_status_changed()
(devices) Enabled/disabled backup for computer
Only call this if
is_device_sync_backup_status_changed()is true.- Return type:
- get_device_unlink()
(devices) Disconnected device
Only call this if
is_device_unlink()is true.- Return type:
- get_directory_restrictions_add_members()
(team_policies) Added members to directory restrictions list
Only call this if
is_directory_restrictions_add_members()is true.- Return type:
- get_directory_restrictions_remove_members()
(team_policies) Removed members from directory restrictions list
Only call this if
is_directory_restrictions_remove_members()is true.- Return type:
- get_disabled_domain_invites()
(domains) Disabled domain invites (deprecated, no longer logged)
Only call this if
is_disabled_domain_invites()is true.- Return type:
- get_domain_invites_approve_request_to_join_team()
(domains) Approved user’s request to join team
Only call this if
is_domain_invites_approve_request_to_join_team()is true.- Return type:
- get_domain_invites_decline_request_to_join_team()
(domains) Declined user’s request to join team
Only call this if
is_domain_invites_decline_request_to_join_team()is true.- Return type:
- get_domain_invites_email_existing_users()
(domains) Sent domain invites to existing domain accounts (deprecated, no longer logged)
Only call this if
is_domain_invites_email_existing_users()is true.- Return type:
- get_domain_invites_request_to_join_team()
(domains) Requested to join team
Only call this if
is_domain_invites_request_to_join_team()is true.- Return type:
- get_domain_invites_set_invite_new_user_pref_to_no()
(domains) Disabled “Automatically invite new users” (deprecated, no longer logged)
Only call this if
is_domain_invites_set_invite_new_user_pref_to_no()is true.- Return type:
- get_domain_invites_set_invite_new_user_pref_to_yes()
(domains) Enabled “Automatically invite new users” (deprecated, no longer logged)
Only call this if
is_domain_invites_set_invite_new_user_pref_to_yes()is true.- Return type:
- get_domain_verification_add_domain_fail()
(domains) Failed to verify team domain
Only call this if
is_domain_verification_add_domain_fail()is true.- Return type:
- get_domain_verification_add_domain_success()
(domains) Verified team domain
Only call this if
is_domain_verification_add_domain_success()is true.- Return type:
- get_domain_verification_remove_domain()
(domains) Removed domain from list of verified team domains
Only call this if
is_domain_verification_remove_domain()is true.- Return type:
- get_dropbox_passwords_exported()
(devices) Exported passwords
Only call this if
is_dropbox_passwords_exported()is true.- Return type:
- get_dropbox_passwords_new_device_enrolled()
(devices) Enrolled new Dropbox Passwords device
Only call this if
is_dropbox_passwords_new_device_enrolled()is true.- Return type:
- get_dropbox_passwords_policy_changed()
(team_policies) Changed Dropbox Passwords policy for team
Only call this if
is_dropbox_passwords_policy_changed()is true.- Return type:
- get_email_ingest_policy_changed()
(team_policies) Changed email to Dropbox policy for team
Only call this if
is_email_ingest_policy_changed()is true.- Return type:
- get_email_ingest_receive_file()
(file_requests) Received files via Email to Dropbox
Only call this if
is_email_ingest_receive_file()is true.- Return type:
- get_emm_add_exception()
(team_policies) Added members to EMM exception list
Only call this if
is_emm_add_exception()is true.- Return type:
- get_emm_change_policy()
(team_policies) Enabled/disabled enterprise mobility management for members
Only call this if
is_emm_change_policy()is true.- Return type:
- get_emm_create_exceptions_report()
(reports) Created EMM-excluded users report
Only call this if
is_emm_create_exceptions_report()is true.- Return type:
- get_emm_create_usage_report()
(reports) Created EMM mobile app usage report
Only call this if
is_emm_create_usage_report()is true.- Return type:
- get_emm_error()
(logins) Failed to sign in via EMM (deprecated, replaced by ‘Failed to sign in’)
Only call this if
is_emm_error()is true.- Return type:
- get_emm_refresh_auth_token()
(devices) Refreshed auth token used for setting up EMM
Only call this if
is_emm_refresh_auth_token()is true.- Return type:
- get_emm_remove_exception()
(team_policies) Removed members from EMM exception list
Only call this if
is_emm_remove_exception()is true.- Return type:
- get_enabled_domain_invites()
(domains) Enabled domain invites (deprecated, no longer logged)
Only call this if
is_enabled_domain_invites()is true.- Return type:
- get_encrypted_folder_cancel_team_key_rotation()
(encryption) Canceled team key rotation
Only call this if
is_encrypted_folder_cancel_team_key_rotation()is true.- Return type:
- get_encrypted_folder_enroll_backup_key()
(encryption) Added recovery key
Only call this if
is_encrypted_folder_enroll_backup_key()is true.- Return type:
- get_encrypted_folder_enroll_client()
(encryption) Enrolled device
Only call this if
is_encrypted_folder_enroll_client()is true.- Return type:
- get_encrypted_folder_enroll_team()
(encryption) Activated team folder encryption
Only call this if
is_encrypted_folder_enroll_team()is true.- Return type:
- get_encrypted_folder_finish_team_unenrollment()
(encryption) Deactivated team folder encryption
Only call this if
is_encrypted_folder_finish_team_unenrollment()is true.- Return type:
- get_encrypted_folder_init_team_key_rotation()
(encryption) Initiated team key rotation
Only call this if
is_encrypted_folder_init_team_key_rotation()is true.- Return type:
- get_encrypted_folder_init_team_unenrollment()
(encryption) Initiated deactivation of team folder encryption
Only call this if
is_encrypted_folder_init_team_unenrollment()is true.- Return type:
- get_encrypted_folder_remove_backup_key()
(encryption) Removed recovery key
Only call this if
is_encrypted_folder_remove_backup_key()is true.- Return type:
- get_encrypted_folder_rotate_team_key()
(encryption) Rotated team key
Only call this if
is_encrypted_folder_rotate_team_key()is true.- Return type:
- get_encrypted_folder_unenroll_client()
(encryption) Unenrolled device
Only call this if
is_encrypted_folder_unenroll_client()is true.- Return type:
- get_ended_enterprise_admin_session()
(trusted_teams) Ended enterprise admin session
Only call this if
is_ended_enterprise_admin_session()is true.- Return type:
- get_ended_enterprise_admin_session_deprecated()
(trusted_teams) Ended enterprise admin session (deprecated, replaced by ‘Ended enterprise admin session’)
Only call this if
is_ended_enterprise_admin_session_deprecated()is true.- Return type:
- get_enterprise_settings_locking()
(trusted_teams) Changed who can update a setting
Only call this if
is_enterprise_settings_locking()is true.- Return type:
- get_export_members_report()
(reports) Created member data report
Only call this if
is_export_members_report()is true.- Return type:
- get_export_members_report_fail()
(reports) Failed to create members data report
Only call this if
is_export_members_report_fail()is true.- Return type:
- get_extended_version_history_change_policy()
(team_policies) Accepted/opted out of extended version history
Only call this if
is_extended_version_history_change_policy()is true.- Return type:
- get_external_drive_backup_eligibility_status_checked()
(devices) Checked external drive backup eligibility status
Only call this if
is_external_drive_backup_eligibility_status_checked()is true.- Return type:
- get_external_drive_backup_policy_changed()
(team_policies) Changed external drive backup policy for team
Only call this if
is_external_drive_backup_policy_changed()is true.- Return type:
- get_external_drive_backup_status_changed()
(devices) Modified external drive backup
Only call this if
is_external_drive_backup_status_changed()is true.- Return type:
- get_external_sharing_create_report()
(reports) Created External sharing report
Only call this if
is_external_sharing_create_report()is true.- Return type:
- get_external_sharing_report_failed()
(reports) Couldn’t create External sharing report
Only call this if
is_external_sharing_report_failed()is true.- Return type:
- get_file_add()
(file_operations) Added files and/or folders
Only call this if
is_file_add()is true.- Return type:
- get_file_add_comment()
(comments) Added file comment
Only call this if
is_file_add_comment()is true.- Return type:
- get_file_add_from_automation()
(file_operations) Added files and/or folders from automation
Only call this if
is_file_add_from_automation()is true.- Return type:
- get_file_change_comment_subscription()
(comments) Subscribed to or unsubscribed from comment notifications for file
Only call this if
is_file_change_comment_subscription()is true.- Return type:
- get_file_comments_change_policy()
(team_policies) Enabled/disabled commenting on team files
Only call this if
is_file_comments_change_policy()is true.- Return type:
- get_file_copy()
(file_operations) Copied files and/or folders
Only call this if
is_file_copy()is true.- Return type:
- get_file_delete()
(file_operations) Deleted files and/or folders
Only call this if
is_file_delete()is true.- Return type:
- get_file_delete_comment()
(comments) Deleted file comment
Only call this if
is_file_delete_comment()is true.- Return type:
- get_file_download()
(file_operations) Downloaded files and/or folders
Only call this if
is_file_download()is true.- Return type:
- get_file_edit()
(file_operations) Edited files
Only call this if
is_file_edit()is true.- Return type:
- get_file_edit_comment()
(comments) Edited file comment
Only call this if
is_file_edit_comment()is true.- Return type:
- get_file_get_copy_reference()
(file_operations) Created copy reference to file/folder
Only call this if
is_file_get_copy_reference()is true.- Return type:
- get_file_like_comment()
(comments) Liked file comment (deprecated, no longer logged)
Only call this if
is_file_like_comment()is true.- Return type:
- get_file_locking_lock_status_changed()
(file_operations) Locked/unlocked editing for a file
Only call this if
is_file_locking_lock_status_changed()is true.- Return type:
- get_file_locking_policy_changed()
(team_policies) Changed file locking policy for team
Only call this if
is_file_locking_policy_changed()is true.- Return type:
- get_file_move()
(file_operations) Moved files and/or folders
Only call this if
is_file_move()is true.- Return type:
- get_file_permanently_delete()
(file_operations) Permanently deleted files and/or folders
Only call this if
is_file_permanently_delete()is true.- Return type:
- get_file_preview()
(file_operations) Previewed files and/or folders
Only call this if
is_file_preview()is true.- Return type:
- get_file_provider_migration_policy_changed()
(team_policies) Changed File Provider Migration policy for team
Only call this if
is_file_provider_migration_policy_changed()is true.- Return type:
- get_file_rename()
(file_operations) Renamed files and/or folders
Only call this if
is_file_rename()is true.- Return type:
- get_file_request_auto_close()
(file_requests) Auto closed file request
Only call this if
is_file_request_auto_close()is true.- Return type:
- get_file_request_change()
(file_requests) Changed file request
Only call this if
is_file_request_change()is true.- Return type:
- get_file_request_close()
(file_requests) Closed file request
Only call this if
is_file_request_close()is true.- Return type:
- get_file_request_create()
(file_requests) Created file request
Only call this if
is_file_request_create()is true.- Return type:
- get_file_request_delete()
(file_requests) Delete file request
Only call this if
is_file_request_delete()is true.- Return type:
- get_file_request_receive_file()
(file_requests) Received files for file request
Only call this if
is_file_request_receive_file()is true.- Return type:
- get_file_requests_change_policy()
(team_policies) Enabled/disabled file requests
Only call this if
is_file_requests_change_policy()is true.- Return type:
- get_file_requests_emails_enabled()
(team_policies) Enabled file request emails for everyone (deprecated, no longer logged)
Only call this if
is_file_requests_emails_enabled()is true.- Return type:
- get_file_requests_emails_restricted_to_team_only()
(team_policies) Enabled file request emails for team (deprecated, no longer logged)
Only call this if
is_file_requests_emails_restricted_to_team_only()is true.- Return type:
- get_file_resolve_comment()
(comments) Resolved file comment
Only call this if
is_file_resolve_comment()is true.- Return type:
- get_file_restore()
(file_operations) Restored deleted files and/or folders
Only call this if
is_file_restore()is true.- Return type:
- get_file_revert()
(file_operations) Reverted files to previous version
Only call this if
is_file_revert()is true.- Return type:
- get_file_rollback_changes()
(file_operations) Rolled back file actions
Only call this if
is_file_rollback_changes()is true.- Return type:
- get_file_save_copy_reference()
(file_operations) Saved file/folder using copy reference
Only call this if
is_file_save_copy_reference()is true.- Return type:
- get_file_transfers_file_add()
(sharing) Transfer files added
Only call this if
is_file_transfers_file_add()is true.- Return type:
- get_file_transfers_policy_changed()
(team_policies) Changed file transfers policy for team
Only call this if
is_file_transfers_policy_changed()is true.- Return type:
- get_file_transfers_transfer_delete()
(sharing) Deleted transfer
Only call this if
is_file_transfers_transfer_delete()is true.- Return type:
- get_file_transfers_transfer_download()
(sharing) Transfer downloaded
Only call this if
is_file_transfers_transfer_download()is true.- Return type:
- get_file_transfers_transfer_send()
(sharing) Sent transfer
Only call this if
is_file_transfers_transfer_send()is true.- Return type:
- get_file_transfers_transfer_view()
(sharing) Viewed transfer
Only call this if
is_file_transfers_transfer_view()is true.- Return type:
- get_file_unlike_comment()
(comments) Unliked file comment (deprecated, no longer logged)
Only call this if
is_file_unlike_comment()is true.- Return type:
- get_file_unresolve_comment()
(comments) Unresolved file comment
Only call this if
is_file_unresolve_comment()is true.- Return type:
- get_flexible_file_names_policy_changed()
(team_policies) Changed flexible file names policy for team
Only call this if
is_flexible_file_names_policy_changed()is true.- Return type:
- get_folder_link_restriction_policy_changed()
(team_policies) Changed folder link restrictions policy for team
Only call this if
is_folder_link_restriction_policy_changed()is true.- Return type:
- get_folder_overview_description_changed()
(file_operations) Updated folder overview
Only call this if
is_folder_overview_description_changed()is true.- Return type:
- get_folder_overview_item_pinned()
(file_operations) Pinned item to folder overview
Only call this if
is_folder_overview_item_pinned()is true.- Return type:
- get_folder_overview_item_unpinned()
(file_operations) Unpinned item from folder overview
Only call this if
is_folder_overview_item_unpinned()is true.- Return type:
- get_google_sso_change_policy()
(team_policies) Enabled/disabled Google single sign-on for team
Only call this if
is_google_sso_change_policy()is true.- Return type:
- get_governance_policy_add_folder_failed()
(data_governance) Couldn’t add a folder to a policy
Only call this if
is_governance_policy_add_folder_failed()is true.- Return type:
- get_governance_policy_add_folders()
(data_governance) Added folders to policy
Only call this if
is_governance_policy_add_folders()is true.- Return type:
- get_governance_policy_content_disposed()
(data_governance) Content disposed
Only call this if
is_governance_policy_content_disposed()is true.- Return type:
- get_governance_policy_create()
(data_governance) Activated a new policy
Only call this if
is_governance_policy_create()is true.- Return type:
- get_governance_policy_delete()
(data_governance) Deleted a policy
Only call this if
is_governance_policy_delete()is true.- Return type:
- get_governance_policy_edit_details()
(data_governance) Edited policy
Only call this if
is_governance_policy_edit_details()is true.- Return type:
- get_governance_policy_edit_duration()
(data_governance) Changed policy duration
Only call this if
is_governance_policy_edit_duration()is true.- Return type:
- get_governance_policy_export_created()
(data_governance) Created a policy download
Only call this if
is_governance_policy_export_created()is true.- Return type:
- get_governance_policy_export_removed()
(data_governance) Removed a policy download
Only call this if
is_governance_policy_export_removed()is true.- Return type:
- get_governance_policy_remove_folders()
(data_governance) Removed folders from policy
Only call this if
is_governance_policy_remove_folders()is true.- Return type:
- get_governance_policy_report_created()
(data_governance) Created a summary report for a policy
Only call this if
is_governance_policy_report_created()is true.- Return type:
- get_governance_policy_zip_part_downloaded()
(data_governance) Downloaded content from a policy
Only call this if
is_governance_policy_zip_part_downloaded()is true.- Return type:
- get_group_add_external_id()
(groups) Added external ID for group
Only call this if
is_group_add_external_id()is true.- Return type:
- get_group_add_member()
(groups) Added team members to group
Only call this if
is_group_add_member()is true.- Return type:
- get_group_change_external_id()
(groups) Changed external ID for group
Only call this if
is_group_change_external_id()is true.- Return type:
- get_group_change_management_type()
(groups) Changed group management type
Only call this if
is_group_change_management_type()is true.- Return type:
- get_group_change_member_role()
(groups) Changed manager permissions of group member
Only call this if
is_group_change_member_role()is true.- Return type:
- get_group_create()
(groups) Created group
Only call this if
is_group_create()is true.- Return type:
- get_group_delete()
(groups) Deleted group
Only call this if
is_group_delete()is true.- Return type:
- get_group_description_updated()
(groups) Updated group (deprecated, no longer logged)
Only call this if
is_group_description_updated()is true.- Return type:
- get_group_external_sharing_setting_override_changed()
(groups) Changed group’s external sharing setting
Only call this if
is_group_external_sharing_setting_override_changed()is true.- Return type:
- get_group_join_policy_updated()
(groups) Updated group join policy (deprecated, no longer logged)
Only call this if
is_group_join_policy_updated()is true.- Return type:
- get_group_moved()
(groups) Moved group (deprecated, no longer logged)
Only call this if
is_group_moved()is true.- Return type:
- get_group_remove_external_id()
(groups) Removed external ID for group
Only call this if
is_group_remove_external_id()is true.- Return type:
- get_group_remove_member()
(groups) Removed team members from group
Only call this if
is_group_remove_member()is true.- Return type:
- get_group_rename()
(groups) Renamed group
Only call this if
is_group_rename()is true.- Return type:
- get_group_user_management_change_policy()
(team_policies) Changed who can create groups
Only call this if
is_group_user_management_change_policy()is true.- Return type:
- get_guest_admin_change_status()
(trusted_teams) Changed guest team admin status
Only call this if
is_guest_admin_change_status()is true.- Return type:
- get_guest_admin_signed_in_via_trusted_teams()
(logins) Started trusted team admin session
Only call this if
is_guest_admin_signed_in_via_trusted_teams()is true.- Return type:
- get_guest_admin_signed_out_via_trusted_teams()
(logins) Ended trusted team admin session
Only call this if
is_guest_admin_signed_out_via_trusted_teams()is true.- Return type:
- get_integration_connected()
(apps) Connected integration for member
Only call this if
is_integration_connected()is true.- Return type:
- get_integration_disconnected()
(apps) Disconnected integration for member
Only call this if
is_integration_disconnected()is true.- Return type:
- get_integration_policy_changed()
(team_policies) Changed integration policy for team
Only call this if
is_integration_policy_changed()is true.- Return type:
- get_invite_acceptance_email_policy_changed()
(team_policies) Changed invite accept email policy for team
Only call this if
is_invite_acceptance_email_policy_changed()is true.- Return type:
- get_legal_holds_activate_a_hold()
(data_governance) Activated a hold
Only call this if
is_legal_holds_activate_a_hold()is true.- Return type:
- get_legal_holds_add_members()
(data_governance) Added members to a hold
Only call this if
is_legal_holds_add_members()is true.- Return type:
- get_legal_holds_change_hold_details()
(data_governance) Edited details for a hold
Only call this if
is_legal_holds_change_hold_details()is true.- Return type:
- get_legal_holds_change_hold_name()
(data_governance) Renamed a hold
Only call this if
is_legal_holds_change_hold_name()is true.- Return type:
- get_legal_holds_export_a_hold()
(data_governance) Exported hold
Only call this if
is_legal_holds_export_a_hold()is true.- Return type:
- get_legal_holds_export_cancelled()
(data_governance) Canceled export for a hold
Only call this if
is_legal_holds_export_cancelled()is true.- Return type:
- get_legal_holds_export_downloaded()
(data_governance) Downloaded export for a hold
Only call this if
is_legal_holds_export_downloaded()is true.- Return type:
- get_legal_holds_export_removed()
(data_governance) Removed export for a hold
Only call this if
is_legal_holds_export_removed()is true.- Return type:
- get_legal_holds_release_a_hold()
(data_governance) Released a hold
Only call this if
is_legal_holds_release_a_hold()is true.- Return type:
- get_legal_holds_remove_members()
(data_governance) Removed members from a hold
Only call this if
is_legal_holds_remove_members()is true.- Return type:
- get_legal_holds_report_a_hold()
(data_governance) Created a summary report for a hold
Only call this if
is_legal_holds_report_a_hold()is true.- Return type:
- get_login_fail()
(logins) Failed to sign in
Only call this if
is_login_fail()is true.- Return type:
- get_login_success()
(logins) Signed in
Only call this if
is_login_success()is true.- Return type:
- get_logout()
(logins) Signed out
Only call this if
is_logout()is true.- Return type:
- get_media_hub_adding_people_policy_changed()
(team_policies) Changed the policy for adding people to Media Hub content
Only call this if
is_media_hub_adding_people_policy_changed()is true.- Return type:
- get_media_hub_download_policy_changed()
(team_policies) Changed the policy for downloading Media Hub content
Only call this if
is_media_hub_download_policy_changed()is true.- Return type:
- get_media_hub_file_downloaded()
(file_operations) Downloaded files in Media Hub
Only call this if
is_media_hub_file_downloaded()is true.- Return type:
- get_media_hub_link_sharing_policy_changed()
(team_policies) Changed the policy for sharing Media Hub content
Only call this if
is_media_hub_link_sharing_policy_changed()is true.- Return type:
- get_media_hub_project_team_add()
(sharing) Added member to Media Hub project
Only call this if
is_media_hub_project_team_add()is true.- Return type:
- get_media_hub_project_team_delete()
(sharing) Removed member from Media Hub project
Only call this if
is_media_hub_project_team_delete()is true.- Return type:
- get_media_hub_project_team_role_changed()
(sharing) Changed member role in Media Hub project
Only call this if
is_media_hub_project_team_role_changed()is true.- Return type:
(sharing) Changed Media Hub shared link audience
Only call this if
is_media_hub_shared_link_audience_changed()is true.- Return type:
(sharing) Created Media Hub shared link
Only call this if
is_media_hub_shared_link_created()is true.- Return type:
(sharing) Changed Media Hub shared link download setting
Only call this if
is_media_hub_shared_link_download_setting_changed()is true.- Return type:
(sharing) Revoked Media Hub shared link
Only call this if
is_media_hub_shared_link_revoked()is true.- Return type:
- get_member_access_details_create_report()
(reports) Created member access report
Only call this if
is_member_access_details_create_report()is true.- Return type:
- get_member_access_details_create_report_failed()
(reports) Couldn’t generate member access report
Only call this if
is_member_access_details_create_report_failed()is true.- Return type:
- get_member_add_external_id()
(members) Added an external ID for team member
Only call this if
is_member_add_external_id()is true.- Return type:
- get_member_add_name()
(members) Added team member name
Only call this if
is_member_add_name()is true.- Return type:
- get_member_change_admin_role()
(members) Changed team member admin role
Only call this if
is_member_change_admin_role()is true.- Return type:
- get_member_change_email()
(members) Changed team member email
Only call this if
is_member_change_email()is true.- Return type:
- get_member_change_external_id()
(members) Changed the external ID for team member
Only call this if
is_member_change_external_id()is true.- Return type:
- get_member_change_membership_type()
(members) Changed membership type (limited/full) of member (deprecated, no longer logged)
Only call this if
is_member_change_membership_type()is true.- Return type:
- get_member_change_name()
(members) Changed team member name
Only call this if
is_member_change_name()is true.- Return type:
- get_member_change_reseller_role()
(members) Changed team member reseller role
Only call this if
is_member_change_reseller_role()is true.- Return type:
- get_member_change_status()
(members) Changed member status (invited, joined, suspended, etc.)
Only call this if
is_member_change_status()is true.- Return type:
- get_member_delete_manual_contacts()
(members) Cleared manually added contacts
Only call this if
is_member_delete_manual_contacts()is true.- Return type:
- get_member_delete_profile_photo()
(members) Deleted team member profile photo
Only call this if
is_member_delete_profile_photo()is true.- Return type:
- get_member_permanently_delete_account_contents()
(members) Permanently deleted contents of deleted team member account
Only call this if
is_member_permanently_delete_account_contents()is true.- Return type:
- get_member_remove_external_id()
(members) Removed the external ID for team member
Only call this if
is_member_remove_external_id()is true.- Return type:
- get_member_requests_change_policy()
(team_policies) Changed whether users can find team when not invited
Only call this if
is_member_requests_change_policy()is true.- Return type:
- get_member_send_invite_policy_changed()
(team_policies) Changed member send invite policy for team
Only call this if
is_member_send_invite_policy_changed()is true.- Return type:
- get_member_set_profile_photo()
(members) Set team member profile photo
Only call this if
is_member_set_profile_photo()is true.- Return type:
- get_member_space_limits_add_custom_quota()
(members) Set custom member space limit
Only call this if
is_member_space_limits_add_custom_quota()is true.- Return type:
- get_member_space_limits_add_exception()
(team_policies) Added members to member space limit exception list
Only call this if
is_member_space_limits_add_exception()is true.- Return type:
- get_member_space_limits_change_caps_type_policy()
(team_policies) Changed member space limit type for team
Only call this if
is_member_space_limits_change_caps_type_policy()is true.- Return type:
- get_member_space_limits_change_custom_quota()
(members) Changed custom member space limit
Only call this if
is_member_space_limits_change_custom_quota()is true.- Return type:
- get_member_space_limits_change_policy()
(team_policies) Changed team default member space limit
Only call this if
is_member_space_limits_change_policy()is true.- Return type:
- get_member_space_limits_change_status()
(members) Changed space limit status
Only call this if
is_member_space_limits_change_status()is true.- Return type:
- get_member_space_limits_remove_custom_quota()
(members) Removed custom member space limit
Only call this if
is_member_space_limits_remove_custom_quota()is true.- Return type:
- get_member_space_limits_remove_exception()
(team_policies) Removed members from member space limit exception list
Only call this if
is_member_space_limits_remove_exception()is true.- Return type:
- get_member_suggest()
(members) Suggested person to add to team
Only call this if
is_member_suggest()is true.- Return type:
- get_member_suggestions_change_policy()
(team_policies) Enabled/disabled option for team members to suggest people to add to team
Only call this if
is_member_suggestions_change_policy()is true.- Return type:
- get_member_transfer_account_contents()
(members) Transferred contents of deleted member account to another member
Only call this if
is_member_transfer_account_contents()is true.- Return type:
- get_microsoft_login_change_policy()
(team_policies) Enabled/disabled Microsoft login for team
Only call this if
is_microsoft_login_change_policy()is true.- Return type:
- get_microsoft_office_addin_change_policy()
(team_policies) Enabled/disabled Microsoft Office add-in
Only call this if
is_microsoft_office_addin_change_policy()is true.- Return type:
- get_multi_team_identity_policy_changed()
(team_policies) Changed multi-team identity policy for team
Only call this if
is_multi_team_identity_policy_changed()is true.- Return type:
- get_network_control_change_policy()
(team_policies) Enabled/disabled network control
Only call this if
is_network_control_change_policy()is true.- Return type:
- get_no_expiration_link_gen_create_report()
(reports) Report created: Links created with no expiration
Only call this if
is_no_expiration_link_gen_create_report()is true.- Return type:
- get_no_expiration_link_gen_report_failed()
(reports) Couldn’t create report: Links created with no expiration
Only call this if
is_no_expiration_link_gen_report_failed()is true.- Return type:
- get_no_password_link_gen_create_report()
(reports) Report created: Links created without passwords
Only call this if
is_no_password_link_gen_create_report()is true.- Return type:
- get_no_password_link_gen_report_failed()
(reports) Couldn’t create report: Links created without passwords
Only call this if
is_no_password_link_gen_report_failed()is true.- Return type:
- get_no_password_link_view_create_report()
(reports) Report created: Views of links without passwords
Only call this if
is_no_password_link_view_create_report()is true.- Return type:
- get_no_password_link_view_report_failed()
(reports) Couldn’t create report: Views of links without passwords
Only call this if
is_no_password_link_view_report_failed()is true.- Return type:
- get_note_acl_invite_only()
(sharing) Changed Paper doc to invite-only (deprecated, no longer logged)
Only call this if
is_note_acl_invite_only()is true.- Return type:
- get_note_acl_link()
(sharing) Changed Paper doc to link-accessible (deprecated, no longer logged)
Only call this if
is_note_acl_link()is true.- Return type:
- get_note_acl_team_link()
(sharing) Changed Paper doc to link-accessible for team (deprecated, no longer logged)
Only call this if
is_note_acl_team_link()is true.- Return type:
(sharing) Shared received Paper doc (deprecated, no longer logged)
Only call this if
is_note_share_receive()is true.- Return type:
(sharing) Shared Paper doc (deprecated, no longer logged)
Only call this if
is_note_shared()is true.- Return type:
- get_object_label_added()
(file_operations) Added a label
Only call this if
is_object_label_added()is true.- Return type:
- get_object_label_removed()
(file_operations) Removed a label
Only call this if
is_object_label_removed()is true.- Return type:
- get_object_label_updated_value()
(file_operations) Updated a label’s value
Only call this if
is_object_label_updated_value()is true.- Return type:
(sharing) Opened shared Paper doc (deprecated, no longer logged)
Only call this if
is_open_note_shared()is true.- Return type:
- get_organize_folder_with_tidy()
(file_operations) Organized a folder with multi-file organize
Only call this if
is_organize_folder_with_tidy()is true.- Return type:
- get_outdated_link_view_create_report()
(reports) Report created: Views of old links
Only call this if
is_outdated_link_view_create_report()is true.- Return type:
- get_outdated_link_view_report_failed()
(reports) Couldn’t create report: Views of old links
Only call this if
is_outdated_link_view_report_failed()is true.- Return type:
- get_paper_admin_export_start()
(reports) Exported all team Paper docs
Only call this if
is_paper_admin_export_start()is true.- Return type:
- get_paper_change_deployment_policy()
(team_policies) Changed whether Dropbox Paper, when enabled, is deployed to all members or to specific members
Only call this if
is_paper_change_deployment_policy()is true.- Return type:
- get_paper_change_member_link_policy()
(team_policies) Changed whether non-members can view Paper docs with link (deprecated, no longer logged)
Only call this if
is_paper_change_member_link_policy()is true.- Return type:
- get_paper_change_member_policy()
(team_policies) Changed whether members can share Paper docs outside team, and if docs are accessible only by team members or anyone by default
Only call this if
is_paper_change_member_policy()is true.- Return type:
- get_paper_change_policy()
(team_policies) Enabled/disabled Dropbox Paper for team
Only call this if
is_paper_change_policy()is true.- Return type:
- get_paper_content_add_member()
(paper) Added users and/or groups to Paper doc/folder
Only call this if
is_paper_content_add_member()is true.- Return type:
- get_paper_content_add_to_folder()
(paper) Added Paper doc/folder to folder
Only call this if
is_paper_content_add_to_folder()is true.- Return type:
- get_paper_content_archive()
(paper) Archived Paper doc/folder
Only call this if
is_paper_content_archive()is true.- Return type:
- get_paper_content_create()
(paper) Created Paper doc/folder
Only call this if
is_paper_content_create()is true.- Return type:
- get_paper_content_permanently_delete()
(paper) Permanently deleted Paper doc/folder
Only call this if
is_paper_content_permanently_delete()is true.- Return type:
- get_paper_content_remove_from_folder()
(paper) Removed Paper doc/folder from folder
Only call this if
is_paper_content_remove_from_folder()is true.- Return type:
- get_paper_content_remove_member()
(paper) Removed users and/or groups from Paper doc/folder
Only call this if
is_paper_content_remove_member()is true.- Return type:
- get_paper_content_rename()
(paper) Renamed Paper doc/folder
Only call this if
is_paper_content_rename()is true.- Return type:
- get_paper_content_restore()
(paper) Restored archived Paper doc/folder
Only call this if
is_paper_content_restore()is true.- Return type:
- get_paper_default_folder_policy_changed()
(team_policies) Changed Paper Default Folder Policy setting for team
Only call this if
is_paper_default_folder_policy_changed()is true.- Return type:
- get_paper_desktop_policy_changed()
(team_policies) Enabled/disabled Paper Desktop for team
Only call this if
is_paper_desktop_policy_changed()is true.- Return type:
- get_paper_doc_add_comment()
(paper) Added Paper doc comment
Only call this if
is_paper_doc_add_comment()is true.- Return type:
- get_paper_doc_change_member_role()
(paper) Changed member permissions for Paper doc
Only call this if
is_paper_doc_change_member_role()is true.- Return type:
- get_paper_doc_change_sharing_policy()
(paper) Changed sharing setting for Paper doc
Only call this if
is_paper_doc_change_sharing_policy()is true.- Return type:
- get_paper_doc_change_subscription()
(paper) Followed/unfollowed Paper doc
Only call this if
is_paper_doc_change_subscription()is true.- Return type:
- get_paper_doc_delete_comment()
(paper) Deleted Paper doc comment
Only call this if
is_paper_doc_delete_comment()is true.- Return type:
- get_paper_doc_deleted()
(paper) Archived Paper doc (deprecated, no longer logged)
Only call this if
is_paper_doc_deleted()is true.- Return type:
- get_paper_doc_download()
(paper) Downloaded Paper doc in specific format
Only call this if
is_paper_doc_download()is true.- Return type:
- get_paper_doc_edit()
(paper) Edited Paper doc
Only call this if
is_paper_doc_edit()is true.- Return type:
- get_paper_doc_edit_comment()
(paper) Edited Paper doc comment
Only call this if
is_paper_doc_edit_comment()is true.- Return type:
- get_paper_doc_followed()
(paper) Followed Paper doc (deprecated, replaced by ‘Followed/unfollowed Paper doc’)
Only call this if
is_paper_doc_followed()is true.- Return type:
- get_paper_doc_mention()
(paper) Mentioned user in Paper doc
Only call this if
is_paper_doc_mention()is true.- Return type:
- get_paper_doc_ownership_changed()
(paper) Transferred ownership of Paper doc
Only call this if
is_paper_doc_ownership_changed()is true.- Return type:
- get_paper_doc_request_access()
(paper) Requested access to Paper doc
Only call this if
is_paper_doc_request_access()is true.- Return type:
- get_paper_doc_resolve_comment()
(paper) Resolved Paper doc comment
Only call this if
is_paper_doc_resolve_comment()is true.- Return type:
- get_paper_doc_revert()
(paper) Restored Paper doc to previous version
Only call this if
is_paper_doc_revert()is true.- Return type:
(paper) Shared Paper doc via Slack
Only call this if
is_paper_doc_slack_share()is true.- Return type:
- get_paper_doc_team_invite()
(paper) Shared Paper doc with users and/or groups (deprecated, no longer logged)
Only call this if
is_paper_doc_team_invite()is true.- Return type:
- get_paper_doc_trashed()
(paper) Deleted Paper doc
Only call this if
is_paper_doc_trashed()is true.- Return type:
- get_paper_doc_unresolve_comment()
(paper) Unresolved Paper doc comment
Only call this if
is_paper_doc_unresolve_comment()is true.- Return type:
- get_paper_doc_untrashed()
(paper) Restored Paper doc
Only call this if
is_paper_doc_untrashed()is true.- Return type:
- get_paper_doc_view()
(paper) Viewed Paper doc
Only call this if
is_paper_doc_view()is true.- Return type:
- get_paper_enabled_users_group_addition()
(team_policies) Added users to Paper-enabled users list
Only call this if
is_paper_enabled_users_group_addition()is true.- Return type:
- get_paper_enabled_users_group_removal()
(team_policies) Removed users from Paper-enabled users list
Only call this if
is_paper_enabled_users_group_removal()is true.- Return type:
- get_paper_external_view_allow()
(paper) Changed Paper external sharing setting to anyone (deprecated, no longer logged)
Only call this if
is_paper_external_view_allow()is true.- Return type:
- get_paper_external_view_default_team()
(paper) Changed Paper external sharing setting to default team (deprecated, no longer logged)
Only call this if
is_paper_external_view_default_team()is true.- Return type:
- get_paper_external_view_forbid()
(paper) Changed Paper external sharing setting to team-only (deprecated, no longer logged)
Only call this if
is_paper_external_view_forbid()is true.- Return type:
- get_paper_folder_change_subscription()
(paper) Followed/unfollowed Paper folder
Only call this if
is_paper_folder_change_subscription()is true.- Return type:
- get_paper_folder_deleted()
(paper) Archived Paper folder (deprecated, no longer logged)
Only call this if
is_paper_folder_deleted()is true.- Return type:
- get_paper_folder_followed()
(paper) Followed Paper folder (deprecated, replaced by ‘Followed/unfollowed Paper folder’)
Only call this if
is_paper_folder_followed()is true.- Return type:
- get_paper_folder_team_invite()
(paper) Shared Paper folder with users and/or groups (deprecated, no longer logged)
Only call this if
is_paper_folder_team_invite()is true.- Return type:
- get_paper_published_link_change_permission()
(paper) Changed permissions for published doc
Only call this if
is_paper_published_link_change_permission()is true.- Return type:
- get_paper_published_link_create()
(paper) Published doc
Only call this if
is_paper_published_link_create()is true.- Return type:
- get_paper_published_link_disabled()
(paper) Unpublished doc
Only call this if
is_paper_published_link_disabled()is true.- Return type:
- get_paper_published_link_view()
(paper) Viewed published doc
Only call this if
is_paper_published_link_view()is true.- Return type:
- get_passkey_add()
(tfa) Added passkey for login
Only call this if
is_passkey_add()is true.- Return type:
- get_passkey_login_policy_changed()
(team_policies) Changed passkey login policy for team
Only call this if
is_passkey_login_policy_changed()is true.- Return type:
- get_passkey_remove()
(tfa) Removed passkey for login
Only call this if
is_passkey_remove()is true.- Return type:
- get_password_change()
(passwords) Changed password
Only call this if
is_password_change()is true.- Return type:
- get_password_reset()
(passwords) Reset password
Only call this if
is_password_reset()is true.- Return type:
- get_password_reset_all()
(passwords) Reset all team member passwords
Only call this if
is_password_reset_all()is true.- Return type:
- get_password_strength_requirements_change_policy()
(team_policies) Changed team password strength requirements
Only call this if
is_password_strength_requirements_change_policy()is true.- Return type:
- get_pending_secondary_email_added()
(members) Added pending secondary email
Only call this if
is_pending_secondary_email_added()is true.- Return type:
- get_permanent_delete_change_policy()
(team_policies) Enabled/disabled ability of team members to permanently delete content
Only call this if
is_permanent_delete_change_policy()is true.- Return type:
- get_previews_ai_policy_changed()
(team_policies) Changed Dropbox AI policy for team
Only call this if
is_previews_ai_policy_changed()is true.- Return type:
- get_product_assigned_to_member()
(members) Product assigned to team member
Only call this if
is_product_assigned_to_member()is true.- Return type:
- get_product_removed_from_member()
(members) Product removed from team member
Only call this if
is_product_removed_from_member()is true.- Return type:
- get_protect_internal_domains_changed()
(protect) Modified Protect internal domains list
Only call this if
is_protect_internal_domains_changed()is true.- Return type:
- get_ransomware_alert_create_report()
(reports) Created ransomware report
Only call this if
is_ransomware_alert_create_report()is true.- Return type:
- get_ransomware_alert_create_report_failed()
(reports) Couldn’t generate ransomware report
Only call this if
is_ransomware_alert_create_report_failed()is true.- Return type:
- get_ransomware_restore_process_completed()
(admin_alerting) Completed ransomware restore process
Only call this if
is_ransomware_restore_process_completed()is true.- Return type:
- get_ransomware_restore_process_started()
(admin_alerting) Started ransomware restore process
Only call this if
is_ransomware_restore_process_started()is true.- Return type:
- get_replay_adding_people_policy_changed()
(team_policies) Changed the policy for adding people to Replay content
Only call this if
is_replay_adding_people_policy_changed()is true.- Return type:
- get_replay_file_delete()
(file_operations) Deleted files in Replay
Only call this if
is_replay_file_delete()is true.- Return type:
- get_replay_file_downloaded()
(file_operations) Downloaded files in Replay
Only call this if
is_replay_file_downloaded()is true.- Return type:
(sharing) Created shared link in Replay
Only call this if
is_replay_file_shared_link_created()is true.- Return type:
(sharing) Changed shared link in Replay
Only call this if
is_replay_file_shared_link_modified()is true.- Return type:
- get_replay_project_team_add()
(sharing) Added member to Replay Project
Only call this if
is_replay_project_team_add()is true.- Return type:
- get_replay_project_team_delete()
(sharing) Removed member from Replay Project
Only call this if
is_replay_project_team_delete()is true.- Return type:
- get_replay_sharing_policy_changed()
(team_policies) Changed the policy for sharing Replay content
Only call this if
is_replay_sharing_policy_changed()is true.- Return type:
- get_replay_team_project_created()
(file_operations) Created a team project in Replay
Only call this if
is_replay_team_project_created()is true.- Return type:
- get_reseller_support_change_policy()
(team_policies) Enabled/disabled reseller support
Only call this if
is_reseller_support_change_policy()is true.- Return type:
- get_reseller_support_session_end()
(logins) Ended reseller support session
Only call this if
is_reseller_support_session_end()is true.- Return type:
- get_reseller_support_session_start()
(logins) Started reseller support session
Only call this if
is_reseller_support_session_start()is true.- Return type:
- get_rewind_folder()
(file_operations) Rewound a folder
Only call this if
is_rewind_folder()is true.- Return type:
- get_rewind_policy_changed()
(team_policies) Changed Rewind policy for team
Only call this if
is_rewind_policy_changed()is true.- Return type:
- get_risc_security_event()
(sso) RISC security event received from external provider
Only call this if
is_risc_security_event()is true.- Return type:
- get_secondary_email_deleted()
(members) Deleted secondary email
Only call this if
is_secondary_email_deleted()is true.- Return type:
- get_secondary_email_verified()
(members) Verified secondary email
Only call this if
is_secondary_email_verified()is true.- Return type:
- get_secondary_mails_policy_changed()
(members) Secondary mails policy changed
Only call this if
is_secondary_mails_policy_changed()is true.- Return type:
- get_send_and_track_file_added()
(sharing) File added to Send and Track
Only call this if
is_send_and_track_file_added()is true.- Return type:
- get_send_and_track_file_renamed()
(sharing) File renamed in Send and Track
Only call this if
is_send_and_track_file_renamed()is true.- Return type:
- get_send_and_track_file_updated()
(sharing) File updated in Send and Track
Only call this if
is_send_and_track_file_updated()is true.- Return type:
- get_send_and_track_link_created()
(sharing) Link created in Send and Track
Only call this if
is_send_and_track_link_created()is true.- Return type:
- get_send_and_track_link_deleted()
(sharing) Link deleted in Send and Track
Only call this if
is_send_and_track_link_deleted()is true.- Return type:
- get_send_and_track_link_updated()
(sharing) Send and Track Link Updated
Only call this if
is_send_and_track_link_updated()is true.- Return type:
- get_send_and_track_link_viewed()
(sharing) Send and Track Link Visited
Only call this if
is_send_and_track_link_viewed()is true.- Return type:
- get_send_and_track_policy_changed()
(team_policies) Changed “Send and track” policy for team
Only call this if
is_send_and_track_policy_changed()is true.- Return type:
- get_send_and_track_removed_file_and_associated_links()
(sharing) Send and Track file and associated links deleted
Only call this if
is_send_and_track_removed_file_and_associated_links()is true.- Return type:
- get_send_external_sharing_policy_changed()
(team_policies) Changed “Send and track” external sharing policy for team
Only call this if
is_send_external_sharing_policy_changed()is true.- Return type:
- get_send_for_signature_policy_changed()
(team_policies) Changed send for signature policy for team
Only call this if
is_send_for_signature_policy_changed()is true.- Return type:
- get_sf_add_group()
(sharing) Added team to shared folder (deprecated, no longer logged)
Only call this if
is_sf_add_group()is true.- Return type:
(sharing) Allowed non-collaborators to view links to files in shared folder (deprecated, no longer logged)
Only call this if
is_sf_allow_non_members_to_view_shared_links()is true.- Return type:
- get_sf_external_invite_warn()
(sharing) Set team members to see warning before sharing folders outside team (deprecated, no longer logged)
Only call this if
is_sf_external_invite_warn()is true.- Return type:
- get_sf_fb_invite()
(sharing) Invited Facebook users to shared folder (deprecated, no longer logged)
Only call this if
is_sf_fb_invite()is true.- Return type:
- get_sf_fb_invite_change_role()
(sharing) Changed Facebook user’s role in shared folder (deprecated, no longer logged)
Only call this if
is_sf_fb_invite_change_role()is true.- Return type:
- get_sf_fb_uninvite()
(sharing) Uninvited Facebook user from shared folder (deprecated, no longer logged)
Only call this if
is_sf_fb_uninvite()is true.- Return type:
- get_sf_invite_group()
(sharing) Invited group to shared folder (deprecated, no longer logged)
Only call this if
is_sf_invite_group()is true.- Return type:
- get_sf_team_grant_access()
(sharing) Granted access to shared folder (deprecated, no longer logged)
Only call this if
is_sf_team_grant_access()is true.- Return type:
- get_sf_team_invite()
(sharing) Invited team members to shared folder (deprecated, replaced by ‘Invited user to Dropbox and added them to shared file/folder’)
Only call this if
is_sf_team_invite()is true.- Return type:
- get_sf_team_invite_change_role()
(sharing) Changed team member’s role in shared folder (deprecated, no longer logged)
Only call this if
is_sf_team_invite_change_role()is true.- Return type:
- get_sf_team_join()
(sharing) Joined team member’s shared folder (deprecated, no longer logged)
Only call this if
is_sf_team_join()is true.- Return type:
- get_sf_team_join_from_oob_link()
(sharing) Joined team member’s shared folder from link (deprecated, no longer logged)
Only call this if
is_sf_team_join_from_oob_link()is true.- Return type:
- get_sf_team_uninvite()
(sharing) Unshared folder with team member (deprecated, replaced by ‘Removed invitee from shared file/folder before invite was accepted’)
Only call this if
is_sf_team_uninvite()is true.- Return type:
(sharing) Invited user to Dropbox and added them to shared file/folder
Only call this if
is_shared_content_add_invitees()is true.- Return type:
(sharing) Added expiration date to link for shared file/folder (deprecated, no longer logged)
Only call this if
is_shared_content_add_link_expiry()is true.- Return type:
(sharing) Added password to link for shared file/folder (deprecated, no longer logged)
Only call this if
is_shared_content_add_link_password()is true.- Return type:
(sharing) Added users and/or groups to shared file/folder
Only call this if
is_shared_content_add_member()is true.- Return type:
(sharing) Changed whether members can download shared file/folder (deprecated, no longer logged)
Only call this if
is_shared_content_change_downloads_policy()is true.- Return type:
(sharing) Changed access type of invitee to shared file/folder before invite was accepted
Only call this if
is_shared_content_change_invitee_role()is true.- Return type:
(sharing) Changed link audience of shared file/folder (deprecated, no longer logged)
Only call this if
is_shared_content_change_link_audience()is true.- Return type:
(sharing) Changed link expiration of shared file/folder (deprecated, no longer logged)
Only call this if
is_shared_content_change_link_expiry()is true.- Return type:
(sharing) Changed link password of shared file/folder (deprecated, no longer logged)
Only call this if
is_shared_content_change_link_password()is true.- Return type:
(sharing) Changed access type of shared file/folder member
Only call this if
is_shared_content_change_member_role()is true.- Return type:
(sharing) Changed whether members can see who viewed shared file/folder
Only call this if
is_shared_content_change_viewer_info_policy()is true.- Return type:
(sharing) Acquired membership of shared file/folder by accepting invite
Only call this if
is_shared_content_claim_invitation()is true.- Return type:
(sharing) Copied shared file/folder to own Dropbox
Only call this if
is_shared_content_copy()is true.- Return type:
(sharing) Downloaded shared file/folder
Only call this if
is_shared_content_download()is true.- Return type:
(sharing) Left shared file/folder
Only call this if
is_shared_content_relinquish_membership()is true.- Return type:
(sharing) Removed invitee from shared file/folder before invite was accepted
Only call this if
is_shared_content_remove_invitees()is true.- Return type:
(sharing) Removed link expiration date of shared file/folder (deprecated, no longer logged)
Only call this if
is_shared_content_remove_link_expiry()is true.- Return type:
(sharing) Removed link password of shared file/folder (deprecated, no longer logged)
Only call this if
is_shared_content_remove_link_password()is true.- Return type:
(sharing) Removed user/group from shared file/folder
Only call this if
is_shared_content_remove_member()is true.- Return type:
(sharing) Requested access to shared file/folder
Only call this if
is_shared_content_request_access()is true.- Return type:
(sharing) Restored shared file/folder invitees
Only call this if
is_shared_content_restore_invitees()is true.- Return type:
(sharing) Restored users and/or groups to membership of shared file/folder
Only call this if
is_shared_content_restore_member()is true.- Return type:
(sharing) Unshared file/folder by clearing membership
Only call this if
is_shared_content_unshare()is true.- Return type:
(sharing) Previewed shared file/folder
Only call this if
is_shared_content_view()is true.- Return type:
(sharing) Changed who can access shared folder via link
Only call this if
is_shared_folder_change_link_policy()is true.- Return type:
(sharing) Changed whether shared folder inherits members from parent folder
Only call this if
is_shared_folder_change_members_inheritance_policy()is true.- Return type:
(sharing) Changed who can add/remove members of shared folder
Only call this if
is_shared_folder_change_members_management_policy()is true.- Return type:
(sharing) Changed who can become member of shared folder
Only call this if
is_shared_folder_change_members_policy()is true.- Return type:
(sharing) Created shared folder
Only call this if
is_shared_folder_create()is true.- Return type:
(sharing) Declined team member’s invite to shared folder
Only call this if
is_shared_folder_decline_invitation()is true.- Return type:
(sharing) Added shared folder to own Dropbox
Only call this if
is_shared_folder_mount()is true.- Return type:
(sharing) Changed parent of shared folder
Only call this if
is_shared_folder_nest()is true.- Return type:
(sharing) Transferred ownership of shared folder to another member
Only call this if
is_shared_folder_transfer_ownership()is true.- Return type:
(sharing) Deleted shared folder from Dropbox
Only call this if
is_shared_folder_unmount()is true.- Return type:
(reports) Created shared folders report
Only call this if
is_shared_folders_create_report()is true.- Return type:
(reports) Couldn’t generate shared folders report
Only call this if
is_shared_folders_create_report_failed()is true.- Return type:
(sharing) Added shared link expiration date
Only call this if
is_shared_link_add_expiry()is true.- Return type:
(sharing) Changed shared link expiration date
Only call this if
is_shared_link_change_expiry()is true.- Return type:
(sharing) Changed visibility of shared link
Only call this if
is_shared_link_change_visibility()is true.- Return type:
(sharing) Added file/folder to Dropbox from shared link
Only call this if
is_shared_link_copy()is true.- Return type:
(sharing) Created shared link
Only call this if
is_shared_link_create()is true.- Return type:
(team_policies) Changed shared link default permissions policy for team
Only call this if
is_shared_link_default_permissions_policy_changed()is true.- Return type:
(sharing) Removed shared link
Only call this if
is_shared_link_disable()is true.- Return type:
(sharing) Downloaded file/folder from shared link
Only call this if
is_shared_link_download()is true.- Return type:
(sharing) Removed shared link expiration date
Only call this if
is_shared_link_remove_expiry()is true.- Return type:
(sharing) Removed link visitor
Only call this if
is_shared_link_remove_visitor()is true.- Return type:
(sharing) Added an expiration date to the shared link
Only call this if
is_shared_link_settings_add_expiration()is true.- Return type:
(sharing) Added a password to the shared link
Only call this if
is_shared_link_settings_add_password()is true.- Return type:
(sharing) Disabled downloads
Only call this if
is_shared_link_settings_allow_download_disabled()is true.- Return type:
(sharing) Enabled downloads
Only call this if
is_shared_link_settings_allow_download_enabled()is true.- Return type:
(sharing) Changed the audience of the shared link
Only call this if
is_shared_link_settings_change_audience()is true.- Return type:
(sharing) Changed the expiration date of the shared link
Only call this if
is_shared_link_settings_change_expiration()is true.- Return type:
(sharing) Changed the password of the shared link
Only call this if
is_shared_link_settings_change_password()is true.- Return type:
(sharing) Removed the expiration date from the shared link
Only call this if
is_shared_link_settings_remove_expiration()is true.- Return type:
(sharing) Removed the password from the shared link
Only call this if
is_shared_link_settings_remove_password()is true.- Return type:
(sharing) Added members as audience of shared link
Only call this if
is_shared_link_share()is true.- Return type:
(sharing) Opened shared link
Only call this if
is_shared_link_view()is true.- Return type:
(sharing) Opened shared Paper doc (deprecated, no longer logged)
Only call this if
is_shared_note_opened()is true.- Return type:
- get_sharing_change_folder_join_policy()
(team_policies) Changed whether team members can join shared folders owned outside team
Only call this if
is_sharing_change_folder_join_policy()is true.- Return type:
- get_sharing_change_link_allow_change_expiration_policy()
(team_policies) Changed the allow remove or change expiration policy for the links shared outside of the team
Only call this if
is_sharing_change_link_allow_change_expiration_policy()is true.- Return type:
- get_sharing_change_link_default_expiration_policy()
(team_policies) Changed the default expiration for the links shared outside of the team
Only call this if
is_sharing_change_link_default_expiration_policy()is true.- Return type:
- get_sharing_change_link_enforce_password_policy()
(team_policies) Changed the password requirement for the links shared outside of the team
Only call this if
is_sharing_change_link_enforce_password_policy()is true.- Return type:
- get_sharing_change_link_policy()
(team_policies) Changed whether members can share links outside team, and if links are accessible only by team members or anyone by default
Only call this if
is_sharing_change_link_policy()is true.- Return type:
- get_sharing_change_member_policy()
(team_policies) Changed whether members can share files/folders outside team
Only call this if
is_sharing_change_member_policy()is true.- Return type:
- get_shmodel_disable_downloads()
(sharing) Disabled downloads for link (deprecated, no longer logged)
Only call this if
is_shmodel_disable_downloads()is true.- Return type:
- get_shmodel_enable_downloads()
(sharing) Enabled downloads for link (deprecated, no longer logged)
Only call this if
is_shmodel_enable_downloads()is true.- Return type:
(sharing) Shared link with group (deprecated, no longer logged)
Only call this if
is_shmodel_group_share()is true.- Return type:
- get_showcase_access_granted()
(showcase) Granted access to showcase
Only call this if
is_showcase_access_granted()is true.- Return type:
- get_showcase_add_member()
(showcase) Added member to showcase
Only call this if
is_showcase_add_member()is true.- Return type:
- get_showcase_archived()
(showcase) Archived showcase
Only call this if
is_showcase_archived()is true.- Return type:
- get_showcase_change_download_policy()
(team_policies) Enabled/disabled downloading files from Dropbox Showcase for team
Only call this if
is_showcase_change_download_policy()is true.- Return type:
- get_showcase_change_enabled_policy()
(team_policies) Enabled/disabled Dropbox Showcase for team
Only call this if
is_showcase_change_enabled_policy()is true.- Return type:
- get_showcase_change_external_sharing_policy()
(team_policies) Enabled/disabled sharing Dropbox Showcase externally for team
Only call this if
is_showcase_change_external_sharing_policy()is true.- Return type:
- get_showcase_created()
(showcase) Created showcase
Only call this if
is_showcase_created()is true.- Return type:
- get_showcase_delete_comment()
(showcase) Deleted showcase comment
Only call this if
is_showcase_delete_comment()is true.- Return type:
- get_showcase_edit_comment()
(showcase) Edited showcase comment
Only call this if
is_showcase_edit_comment()is true.- Return type:
- get_showcase_edited()
(showcase) Edited showcase
Only call this if
is_showcase_edited()is true.- Return type:
- get_showcase_file_added()
(showcase) Added file to showcase
Only call this if
is_showcase_file_added()is true.- Return type:
- get_showcase_file_download()
(showcase) Downloaded file from showcase
Only call this if
is_showcase_file_download()is true.- Return type:
- get_showcase_file_removed()
(showcase) Removed file from showcase
Only call this if
is_showcase_file_removed()is true.- Return type:
- get_showcase_file_view()
(showcase) Viewed file in showcase
Only call this if
is_showcase_file_view()is true.- Return type:
- get_showcase_permanently_deleted()
(showcase) Permanently deleted showcase
Only call this if
is_showcase_permanently_deleted()is true.- Return type:
- get_showcase_post_comment()
(showcase) Added showcase comment
Only call this if
is_showcase_post_comment()is true.- Return type:
- get_showcase_remove_member()
(showcase) Removed member from showcase
Only call this if
is_showcase_remove_member()is true.- Return type:
- get_showcase_renamed()
(showcase) Renamed showcase
Only call this if
is_showcase_renamed()is true.- Return type:
- get_showcase_request_access()
(showcase) Requested access to showcase
Only call this if
is_showcase_request_access()is true.- Return type:
- get_showcase_resolve_comment()
(showcase) Resolved showcase comment
Only call this if
is_showcase_resolve_comment()is true.- Return type:
- get_showcase_restored()
(showcase) Unarchived showcase
Only call this if
is_showcase_restored()is true.- Return type:
- get_showcase_trashed()
(showcase) Deleted showcase
Only call this if
is_showcase_trashed()is true.- Return type:
- get_showcase_trashed_deprecated()
(showcase) Deleted showcase (old version) (deprecated, replaced by ‘Deleted showcase’)
Only call this if
is_showcase_trashed_deprecated()is true.- Return type:
- get_showcase_unresolve_comment()
(showcase) Unresolved showcase comment
Only call this if
is_showcase_unresolve_comment()is true.- Return type:
- get_showcase_untrashed()
(showcase) Restored showcase
Only call this if
is_showcase_untrashed()is true.- Return type:
- get_showcase_untrashed_deprecated()
(showcase) Restored showcase (old version) (deprecated, replaced by ‘Restored showcase’)
Only call this if
is_showcase_untrashed_deprecated()is true.- Return type:
- get_showcase_view()
(showcase) Viewed showcase
Only call this if
is_showcase_view()is true.- Return type:
- get_sign_external_sharing_policy_changed()
(team_policies) Changed Signatures external sharing policy for team
Only call this if
is_sign_external_sharing_policy_changed()is true.- Return type:
- get_sign_in_as_session_end()
(logins) Ended admin sign-in-as session
Only call this if
is_sign_in_as_session_end()is true.- Return type:
- get_sign_in_as_session_start()
(logins) Started admin sign-in-as session
Only call this if
is_sign_in_as_session_start()is true.- Return type:
- get_sign_signature_request_canceled()
(signatures) Canceled signature request
Only call this if
is_sign_signature_request_canceled()is true.- Return type:
- get_sign_signature_request_completed()
(signatures) Completed signature request
Only call this if
is_sign_signature_request_completed()is true.- Return type:
- get_sign_signature_request_declined()
(signatures) Declined signature request
Only call this if
is_sign_signature_request_declined()is true.- Return type:
- get_sign_signature_request_opened()
(signatures) Opened signature request
Only call this if
is_sign_signature_request_opened()is true.- Return type:
- get_sign_signature_request_reminder_sent()
(signatures) Sent signature request reminder
Only call this if
is_sign_signature_request_reminder_sent()is true.- Return type:
- get_sign_signature_request_sent()
(signatures) Sent signature request
Only call this if
is_sign_signature_request_sent()is true.- Return type:
- get_sign_template_created()
(signatures) Created template
Only call this if
is_sign_template_created()is true.- Return type:
- get_sign_template_creation_permission_changed()
(team_policies) Changed template creation permission
Only call this if
is_sign_template_creation_permission_changed()is true.- Return type:
(signatures) Shared template
Only call this if
is_sign_template_shared()is true.- Return type:
- get_smart_sync_change_policy()
(team_policies) Changed default Smart Sync setting for team members
Only call this if
is_smart_sync_change_policy()is true.- Return type:
- get_smart_sync_create_admin_privilege_report()
(reports) Created Smart Sync non-admin devices report
Only call this if
is_smart_sync_create_admin_privilege_report()is true.- Return type:
- get_smart_sync_not_opt_out()
(team_policies) Opted team into Smart Sync
Only call this if
is_smart_sync_not_opt_out()is true.- Return type:
- get_smart_sync_opt_out()
(team_policies) Opted team out of Smart Sync
Only call this if
is_smart_sync_opt_out()is true.- Return type:
- get_smarter_smart_sync_policy_changed()
(team_policies) Changed automatic Smart Sync setting for team
Only call this if
is_smarter_smart_sync_policy_changed()is true.- Return type:
- get_sso_add_cert()
(sso) Added X.509 certificate for SSO
Only call this if
is_sso_add_cert()is true.- Return type:
- get_sso_add_login_url()
(sso) Added sign-in URL for SSO
Only call this if
is_sso_add_login_url()is true.- Return type:
- get_sso_add_logout_url()
(sso) Added sign-out URL for SSO
Only call this if
is_sso_add_logout_url()is true.- Return type:
- get_sso_change_cert()
(sso) Changed X.509 certificate for SSO
Only call this if
is_sso_change_cert()is true.- Return type:
- get_sso_change_login_url()
(sso) Changed sign-in URL for SSO
Only call this if
is_sso_change_login_url()is true.- Return type:
- get_sso_change_logout_url()
(sso) Changed sign-out URL for SSO
Only call this if
is_sso_change_logout_url()is true.- Return type:
- get_sso_change_policy()
(team_policies) Changed single sign-on setting for team
Only call this if
is_sso_change_policy()is true.- Return type:
- get_sso_change_saml_identity_mode()
(sso) Changed SAML identity mode for SSO
Only call this if
is_sso_change_saml_identity_mode()is true.- Return type:
- get_sso_error()
(logins) Failed to sign in via SSO (deprecated, replaced by ‘Failed to sign in’)
Only call this if
is_sso_error()is true.- Return type:
- get_sso_remove_cert()
(sso) Removed X.509 certificate for SSO
Only call this if
is_sso_remove_cert()is true.- Return type:
- get_sso_remove_login_url()
(sso) Removed sign-in URL for SSO
Only call this if
is_sso_remove_login_url()is true.- Return type:
- get_sso_remove_logout_url()
(sso) Removed sign-out URL for SSO
Only call this if
is_sso_remove_logout_url()is true.- Return type:
- get_stack_cross_team_access_policy_changed()
(team_policies) Changed cross-team Stack access policy for team
Only call this if
is_stack_cross_team_access_policy_changed()is true.- Return type:
- get_started_enterprise_admin_session()
(trusted_teams) Started enterprise admin session
Only call this if
is_started_enterprise_admin_session()is true.- Return type:
- get_team_activity_create_report()
(reports) Created team activity report
Only call this if
is_team_activity_create_report()is true.- Return type:
- get_team_activity_create_report_fail()
(reports) Couldn’t generate team activity report
Only call this if
is_team_activity_create_report_fail()is true.- Return type:
- get_team_branding_policy_changed()
(team_policies) Changed team branding policy for team
Only call this if
is_team_branding_policy_changed()is true.- Return type:
- get_team_encryption_key_activate_key()
(encryption) Activated team encryption key
Only call this if
is_team_encryption_key_activate_key()is true.- Return type:
- get_team_encryption_key_cancel_key_deletion()
(encryption) Canceled team encryption key deletion
Only call this if
is_team_encryption_key_cancel_key_deletion()is true.- Return type:
- get_team_encryption_key_create_key()
(encryption) Created team encryption key
Only call this if
is_team_encryption_key_create_key()is true.- Return type:
- get_team_encryption_key_deactivate_key()
(encryption) Deactivated team encryption key
Only call this if
is_team_encryption_key_deactivate_key()is true.- Return type:
- get_team_encryption_key_delete_key()
(encryption) Deleted team encryption key
Only call this if
is_team_encryption_key_delete_key()is true.- Return type:
- get_team_encryption_key_disable_key()
(encryption) Disabled team encryption key
Only call this if
is_team_encryption_key_disable_key()is true.- Return type:
- get_team_encryption_key_enable_key()
(encryption) Enabled team encryption key
Only call this if
is_team_encryption_key_enable_key()is true.- Return type:
- get_team_encryption_key_rotate_key()
(encryption) Rotated team encryption key (deprecated, no longer logged)
Only call this if
is_team_encryption_key_rotate_key()is true.- Return type:
- get_team_encryption_key_schedule_key_deletion()
(encryption) Scheduled encryption key deletion
Only call this if
is_team_encryption_key_schedule_key_deletion()is true.- Return type:
- get_team_extensions_policy_changed()
(team_policies) Changed App Integrations setting for team
Only call this if
is_team_extensions_policy_changed()is true.- Return type:
- get_team_folder_change_status()
(team_folders) Changed archival status of team folder
Only call this if
is_team_folder_change_status()is true.- Return type:
- get_team_folder_create()
(team_folders) Created team folder in active status
Only call this if
is_team_folder_create()is true.- Return type:
- get_team_folder_downgrade()
(team_folders) Downgraded team folder to regular shared folder
Only call this if
is_team_folder_downgrade()is true.- Return type:
- get_team_folder_permanently_delete()
(team_folders) Permanently deleted archived team folder
Only call this if
is_team_folder_permanently_delete()is true.- Return type:
- get_team_folder_rename()
(team_folders) Renamed active/archived team folder
Only call this if
is_team_folder_rename()is true.- Return type:
- get_team_folder_space_limits_change_caps_type()
(team_folders) Changed team folder space limit enforcement type
Only call this if
is_team_folder_space_limits_change_caps_type()is true.- Return type:
- get_team_folder_space_limits_change_limit()
(team_folders) Changed team folder space limit
Only call this if
is_team_folder_space_limits_change_limit()is true.- Return type:
- get_team_folder_space_limits_change_notification_target()
(team_folders) Changed team folder space limit notification target
Only call this if
is_team_folder_space_limits_change_notification_target()is true.- Return type:
- get_team_folders_create_report()
(reports) Created team folders report
Only call this if
is_team_folders_create_report()is true.- Return type:
- get_team_folders_create_report_failed()
(reports) Couldn’t generate team folders report
Only call this if
is_team_folders_create_report_failed()is true.- Return type:
- get_team_member_storage_request_policy_changed()
(team_policies) Changed team member storage request policy for team
Only call this if
is_team_member_storage_request_policy_changed()is true.- Return type:
- get_team_merge_from()
(team_profile) Merged another team into this team
Only call this if
is_team_merge_from()is true.- Return type:
- get_team_merge_request_accepted()
(trusted_teams) Accepted a team merge request
Only call this if
is_team_merge_request_accepted()is true.- Return type:
- get_team_merge_request_accepted_shown_to_primary_team()
(trusted_teams) Accepted a team merge request (deprecated, replaced by ‘Accepted a team merge request’)
Only call this if
is_team_merge_request_accepted_shown_to_primary_team()is true.- Return type:
- get_team_merge_request_accepted_shown_to_secondary_team()
(trusted_teams) Accepted a team merge request (deprecated, replaced by ‘Accepted a team merge request’)
Only call this if
is_team_merge_request_accepted_shown_to_secondary_team()is true.- Return type:
- get_team_merge_request_auto_canceled()
(trusted_teams) Automatically canceled team merge request
Only call this if
is_team_merge_request_auto_canceled()is true.- Return type:
- get_team_merge_request_canceled()
(trusted_teams) Canceled a team merge request
Only call this if
is_team_merge_request_canceled()is true.- Return type:
- get_team_merge_request_canceled_shown_to_primary_team()
(trusted_teams) Canceled a team merge request (deprecated, replaced by ‘Canceled a team merge request’)
Only call this if
is_team_merge_request_canceled_shown_to_primary_team()is true.- Return type:
- get_team_merge_request_canceled_shown_to_secondary_team()
(trusted_teams) Canceled a team merge request (deprecated, replaced by ‘Canceled a team merge request’)
Only call this if
is_team_merge_request_canceled_shown_to_secondary_team()is true.- Return type:
- get_team_merge_request_expired()
(trusted_teams) Team merge request expired
Only call this if
is_team_merge_request_expired()is true.- Return type:
- get_team_merge_request_expired_shown_to_primary_team()
(trusted_teams) Team merge request expired (deprecated, replaced by ‘Team merge request expired’)
Only call this if
is_team_merge_request_expired_shown_to_primary_team()is true.- Return type:
- get_team_merge_request_expired_shown_to_secondary_team()
(trusted_teams) Team merge request expired (deprecated, replaced by ‘Team merge request expired’)
Only call this if
is_team_merge_request_expired_shown_to_secondary_team()is true.- Return type:
- get_team_merge_request_rejected_shown_to_primary_team()
(trusted_teams) Rejected a team merge request (deprecated, no longer logged)
Only call this if
is_team_merge_request_rejected_shown_to_primary_team()is true.- Return type:
- get_team_merge_request_rejected_shown_to_secondary_team()
(trusted_teams) Rejected a team merge request (deprecated, no longer logged)
Only call this if
is_team_merge_request_rejected_shown_to_secondary_team()is true.- Return type:
- get_team_merge_request_reminder()
(trusted_teams) Sent a team merge request reminder
Only call this if
is_team_merge_request_reminder()is true.- Return type:
- get_team_merge_request_reminder_shown_to_primary_team()
(trusted_teams) Sent a team merge request reminder (deprecated, replaced by ‘Sent a team merge request reminder’)
Only call this if
is_team_merge_request_reminder_shown_to_primary_team()is true.- Return type:
- get_team_merge_request_reminder_shown_to_secondary_team()
(trusted_teams) Sent a team merge request reminder (deprecated, replaced by ‘Sent a team merge request reminder’)
Only call this if
is_team_merge_request_reminder_shown_to_secondary_team()is true.- Return type:
- get_team_merge_request_revoked()
(trusted_teams) Canceled the team merge
Only call this if
is_team_merge_request_revoked()is true.- Return type:
- get_team_merge_request_sent_shown_to_primary_team()
(trusted_teams) Requested to merge their Dropbox team into yours
Only call this if
is_team_merge_request_sent_shown_to_primary_team()is true.- Return type:
- get_team_merge_request_sent_shown_to_secondary_team()
(trusted_teams) Requested to merge your team into another Dropbox team
Only call this if
is_team_merge_request_sent_shown_to_secondary_team()is true.- Return type:
- get_team_merge_to()
(team_profile) Merged this team into another team
Only call this if
is_team_merge_to()is true.- Return type:
- get_team_profile_add_background()
(team_profile) Added team background to display on shared link headers
Only call this if
is_team_profile_add_background()is true.- Return type:
- get_team_profile_add_logo()
(team_profile) Added team logo to display on shared link headers
Only call this if
is_team_profile_add_logo()is true.- Return type:
- get_team_profile_change_background()
(team_profile) Changed team background displayed on shared link headers
Only call this if
is_team_profile_change_background()is true.- Return type:
- get_team_profile_change_default_language()
(team_profile) Changed default language for team
Only call this if
is_team_profile_change_default_language()is true.- Return type:
- get_team_profile_change_logo()
(team_profile) Changed team logo displayed on shared link headers
Only call this if
is_team_profile_change_logo()is true.- Return type:
- get_team_profile_change_name()
(team_profile) Changed team name
Only call this if
is_team_profile_change_name()is true.- Return type:
- get_team_profile_remove_background()
(team_profile) Removed team background displayed on shared link headers
Only call this if
is_team_profile_remove_background()is true.- Return type:
- get_team_profile_remove_logo()
(team_profile) Removed team logo displayed on shared link headers
Only call this if
is_team_profile_remove_logo()is true.- Return type:
- get_team_selective_sync_policy_changed()
(team_policies) Enabled/disabled Team Selective Sync for team
Only call this if
is_team_selective_sync_policy_changed()is true.- Return type:
- get_team_selective_sync_settings_changed()
(team_folders) Changed sync default
Only call this if
is_team_selective_sync_settings_changed()is true.- Return type:
- get_team_sharing_whitelist_subjects_changed()
(team_policies) Edited the approved list for sharing externally
Only call this if
is_team_sharing_whitelist_subjects_changed()is true.- Return type:
- get_team_storage_create_report()
(reports) Created team storage report
Only call this if
is_team_storage_create_report()is true.- Return type:
- get_team_storage_create_report_failed()
(reports) Couldn’t generate team storage report
Only call this if
is_team_storage_create_report_failed()is true.- Return type:
- get_tfa_add_backup_phone()
(tfa) Added backup phone for two-factor authentication
Only call this if
is_tfa_add_backup_phone()is true.- Return type:
- get_tfa_add_exception()
(team_policies) Added members to two factor authentication exception list
Only call this if
is_tfa_add_exception()is true.- Return type:
- get_tfa_add_security_key()
(tfa) Added security key for two-factor authentication
Only call this if
is_tfa_add_security_key()is true.- Return type:
- get_tfa_change_backup_phone()
(tfa) Changed backup phone for two-factor authentication
Only call this if
is_tfa_change_backup_phone()is true.- Return type:
- get_tfa_change_policy()
(team_policies) Changed two-factor authentication setting for team
Only call this if
is_tfa_change_policy()is true.- Return type:
- get_tfa_change_status()
(tfa) Enabled/disabled/changed two-factor authentication setting
Only call this if
is_tfa_change_status()is true.- Return type:
- get_tfa_remove_backup_phone()
(tfa) Removed backup phone for two-factor authentication
Only call this if
is_tfa_remove_backup_phone()is true.- Return type:
- get_tfa_remove_exception()
(team_policies) Removed members from two factor authentication exception list
Only call this if
is_tfa_remove_exception()is true.- Return type:
- get_tfa_remove_security_key()
(tfa) Removed security key for two-factor authentication
Only call this if
is_tfa_remove_security_key()is true.- Return type:
- get_tfa_reset()
(tfa) Reset two-factor authentication for team member
Only call this if
is_tfa_reset()is true.- Return type:
- get_top_level_content_policy_changed()
(team_policies) Changed top level content setting for team
Only call this if
is_top_level_content_policy_changed()is true.- Return type:
- get_two_account_change_policy()
(team_policies) Enabled/disabled option for members to link personal Dropbox account and team account to same computer
Only call this if
is_two_account_change_policy()is true.- Return type:
- get_undo_naming_convention()
(file_operations) Reverted naming convention
Only call this if
is_undo_naming_convention()is true.- Return type:
- get_undo_organize_folder_with_tidy()
(file_operations) Removed multi-file organize
Only call this if
is_undo_organize_folder_with_tidy()is true.- Return type:
- get_user_tags_added()
(file_operations) Tagged a file
Only call this if
is_user_tags_added()is true.- Return type:
- get_user_tags_removed()
(file_operations) Removed tags
Only call this if
is_user_tags_removed()is true.- Return type:
- get_viewer_info_policy_changed()
(team_policies) Changed team policy for viewer info
Only call this if
is_viewer_info_policy_changed()is true.- Return type:
- get_watermarking_policy_changed()
(team_policies) Changed watermarking policy for team
Only call this if
is_watermarking_policy_changed()is true.- Return type:
- get_web_sessions_change_active_session_limit()
(team_policies) Changed limit on active sessions per member
Only call this if
is_web_sessions_change_active_session_limit()is true.- Return type:
- get_web_sessions_change_fixed_length_policy()
(team_policies) Changed how long members can stay signed in to Dropbox.com
Only call this if
is_web_sessions_change_fixed_length_policy()is true.- Return type:
- get_web_sessions_change_idle_length_policy()
(team_policies) Changed how long team members can be idle while signed in to Dropbox.com
Only call this if
is_web_sessions_change_idle_length_policy()is true.- Return type:
- classmethod google_sso_change_policy(val)
Create an instance of this class set to the
google_sso_change_policytag with valueval.- Parameters:
- Return type:
- classmethod governance_policy_add_folder_failed(val)
Create an instance of this class set to the
governance_policy_add_folder_failedtag with valueval.- Parameters:
- Return type:
- classmethod governance_policy_add_folders(val)
Create an instance of this class set to the
governance_policy_add_folderstag with valueval.- Parameters:
- Return type:
- classmethod governance_policy_content_disposed(val)
Create an instance of this class set to the
governance_policy_content_disposedtag with valueval.- Parameters:
- Return type:
- classmethod governance_policy_create(val)
Create an instance of this class set to the
governance_policy_createtag with valueval.- Parameters:
- Return type:
- classmethod governance_policy_delete(val)
Create an instance of this class set to the
governance_policy_deletetag with valueval.- Parameters:
- Return type:
- classmethod governance_policy_edit_details(val)
Create an instance of this class set to the
governance_policy_edit_detailstag with valueval.- Parameters:
- Return type:
- classmethod governance_policy_edit_duration(val)
Create an instance of this class set to the
governance_policy_edit_durationtag with valueval.- Parameters:
- Return type:
- classmethod governance_policy_export_created(val)
Create an instance of this class set to the
governance_policy_export_createdtag with valueval.- Parameters:
- Return type:
- classmethod governance_policy_export_removed(val)
Create an instance of this class set to the
governance_policy_export_removedtag with valueval.- Parameters:
- Return type:
- classmethod governance_policy_remove_folders(val)
Create an instance of this class set to the
governance_policy_remove_folderstag with valueval.- Parameters:
- Return type:
- classmethod governance_policy_report_created(val)
Create an instance of this class set to the
governance_policy_report_createdtag with valueval.- Parameters:
- Return type:
- classmethod governance_policy_zip_part_downloaded(val)
Create an instance of this class set to the
governance_policy_zip_part_downloadedtag with valueval.- Parameters:
- Return type:
- classmethod group_add_external_id(val)
Create an instance of this class set to the
group_add_external_idtag with valueval.- Parameters:
val (GroupAddExternalIdType)
- Return type:
- classmethod group_add_member(val)
Create an instance of this class set to the
group_add_membertag with valueval.- Parameters:
val (GroupAddMemberType)
- Return type:
- classmethod group_change_external_id(val)
Create an instance of this class set to the
group_change_external_idtag with valueval.- Parameters:
- Return type:
- classmethod group_change_management_type(val)
Create an instance of this class set to the
group_change_management_typetag with valueval.- Parameters:
- Return type:
- classmethod group_change_member_role(val)
Create an instance of this class set to the
group_change_member_roletag with valueval.- Parameters:
- Return type:
- classmethod group_create(val)
Create an instance of this class set to the
group_createtag with valueval.- Parameters:
val (GroupCreateType)
- Return type:
- classmethod group_delete(val)
Create an instance of this class set to the
group_deletetag with valueval.- Parameters:
val (GroupDeleteType)
- Return type:
- classmethod group_description_updated(val)
Create an instance of this class set to the
group_description_updatedtag with valueval.- Parameters:
- Return type:
- classmethod group_external_sharing_setting_override_changed(val)
Create an instance of this class set to the
group_external_sharing_setting_override_changedtag with valueval.- Parameters:
- Return type:
- classmethod group_join_policy_updated(val)
Create an instance of this class set to the
group_join_policy_updatedtag with valueval.- Parameters:
- Return type:
- classmethod group_moved(val)
Create an instance of this class set to the
group_movedtag with valueval.- Parameters:
val (GroupMovedType)
- Return type:
- classmethod group_remove_external_id(val)
Create an instance of this class set to the
group_remove_external_idtag with valueval.- Parameters:
- Return type:
- classmethod group_remove_member(val)
Create an instance of this class set to the
group_remove_membertag with valueval.- Parameters:
val (GroupRemoveMemberType)
- Return type:
- classmethod group_rename(val)
Create an instance of this class set to the
group_renametag with valueval.- Parameters:
val (GroupRenameType)
- Return type:
- classmethod group_user_management_change_policy(val)
Create an instance of this class set to the
group_user_management_change_policytag with valueval.- Parameters:
- Return type:
- classmethod guest_admin_change_status(val)
Create an instance of this class set to the
guest_admin_change_statustag with valueval.- Parameters:
- Return type:
- classmethod guest_admin_signed_in_via_trusted_teams(val)
Create an instance of this class set to the
guest_admin_signed_in_via_trusted_teamstag with valueval.- Parameters:
- Return type:
- classmethod guest_admin_signed_out_via_trusted_teams(val)
Create an instance of this class set to the
guest_admin_signed_out_via_trusted_teamstag with valueval.- Parameters:
- Return type:
- classmethod integration_connected(val)
Create an instance of this class set to the
integration_connectedtag with valueval.- Parameters:
val (IntegrationConnectedType)
- Return type:
- classmethod integration_disconnected(val)
Create an instance of this class set to the
integration_disconnectedtag with valueval.- Parameters:
- Return type:
- classmethod integration_policy_changed(val)
Create an instance of this class set to the
integration_policy_changedtag with valueval.- Parameters:
- Return type:
- classmethod invite_acceptance_email_policy_changed(val)
Create an instance of this class set to the
invite_acceptance_email_policy_changedtag with valueval.- Parameters:
- Return type:
- is_account_capture_change_availability()
Check if the union tag is
account_capture_change_availability.- Return type:
bool
- is_account_capture_change_policy()
Check if the union tag is
account_capture_change_policy.- Return type:
bool
- is_account_capture_migrate_account()
Check if the union tag is
account_capture_migrate_account.- Return type:
bool
- is_account_capture_notification_emails_sent()
Check if the union tag is
account_capture_notification_emails_sent.- Return type:
bool
- is_account_capture_relinquish_account()
Check if the union tag is
account_capture_relinquish_account.- Return type:
bool
- is_account_lock_or_unlocked()
Check if the union tag is
account_lock_or_unlocked.- Return type:
bool
- is_addon_assigned()
Check if the union tag is
addon_assigned.- Return type:
bool
- is_addon_removed()
Check if the union tag is
addon_removed.- Return type:
bool
- is_admin_alerting_alert_state_changed()
Check if the union tag is
admin_alerting_alert_state_changed.- Return type:
bool
- is_admin_alerting_changed_alert_config()
Check if the union tag is
admin_alerting_changed_alert_config.- Return type:
bool
- is_admin_alerting_triggered_alert()
Check if the union tag is
admin_alerting_triggered_alert.- Return type:
bool
- is_admin_email_reminders_changed()
Check if the union tag is
admin_email_reminders_changed.- Return type:
bool
- is_ai_third_party_sharing_dropbox_base_policy_changed()
Check if the union tag is
ai_third_party_sharing_dropbox_base_policy_changed.- Return type:
bool
- is_allow_download_disabled()
Check if the union tag is
allow_download_disabled.- Return type:
bool
- is_allow_download_enabled()
Check if the union tag is
allow_download_enabled.- Return type:
bool
- is_app_blocked_by_permissions()
Check if the union tag is
app_blocked_by_permissions.- Return type:
bool
- is_app_link_team()
Check if the union tag is
app_link_team.- Return type:
bool
- is_app_link_user()
Check if the union tag is
app_link_user.- Return type:
bool
- is_app_permissions_changed()
Check if the union tag is
app_permissions_changed.- Return type:
bool
- is_app_unlink_team()
Check if the union tag is
app_unlink_team.- Return type:
bool
- is_app_unlink_user()
Check if the union tag is
app_unlink_user.- Return type:
bool
- is_apple_login_change_policy()
Check if the union tag is
apple_login_change_policy.- Return type:
bool
- is_apply_naming_convention()
Check if the union tag is
apply_naming_convention.- Return type:
bool
- is_backup_admin_invitation_sent()
Check if the union tag is
backup_admin_invitation_sent.- Return type:
bool
- is_backup_invitation_opened()
Check if the union tag is
backup_invitation_opened.- Return type:
bool
- is_binder_add_page()
Check if the union tag is
binder_add_page.- Return type:
bool
- is_binder_add_section()
Check if the union tag is
binder_add_section.- Return type:
bool
- is_binder_remove_page()
Check if the union tag is
binder_remove_page.- Return type:
bool
- is_binder_remove_section()
Check if the union tag is
binder_remove_section.- Return type:
bool
- is_binder_rename_page()
Check if the union tag is
binder_rename_page.- Return type:
bool
- is_binder_rename_section()
Check if the union tag is
binder_rename_section.- Return type:
bool
- is_binder_reorder_page()
Check if the union tag is
binder_reorder_page.- Return type:
bool
- is_binder_reorder_section()
Check if the union tag is
binder_reorder_section.- Return type:
bool
- is_camera_uploads_policy_changed()
Check if the union tag is
camera_uploads_policy_changed.- Return type:
bool
- is_capture_team_space_policy_changed()
Check if the union tag is
capture_team_space_policy_changed.- Return type:
bool
- is_capture_transcript_policy_changed()
Check if the union tag is
capture_transcript_policy_changed.- Return type:
bool
- is_changed_enterprise_admin_role()
Check if the union tag is
changed_enterprise_admin_role.- Return type:
bool
- is_changed_enterprise_connected_team_status()
Check if the union tag is
changed_enterprise_connected_team_status.- Return type:
bool
- is_classification_change_policy()
Check if the union tag is
classification_change_policy.- Return type:
bool
- is_classification_create_report()
Check if the union tag is
classification_create_report.- Return type:
bool
- is_classification_create_report_fail()
Check if the union tag is
classification_create_report_fail.- Return type:
bool
Check if the union tag is
collection_share.- Return type:
bool
- is_computer_backup_policy_changed()
Check if the union tag is
computer_backup_policy_changed.- Return type:
bool
- is_content_administration_policy_changed()
Check if the union tag is
content_administration_policy_changed.- Return type:
bool
- is_content_deletion_protection_change_policy()
Check if the union tag is
content_deletion_protection_change_policy.- Return type:
bool
- is_create_folder()
Check if the union tag is
create_folder.- Return type:
bool
- is_create_team_invite_link()
Check if the union tag is
create_team_invite_link.- Return type:
bool
- is_dash_added_comment_to_stack()
Check if the union tag is
dash_added_comment_to_stack.- Return type:
bool
- is_dash_added_connector()
Check if the union tag is
dash_added_connector.- Return type:
bool
- is_dash_added_link_to_stack()
Check if the union tag is
dash_added_link_to_stack.- Return type:
bool
- is_dash_added_team_email_domain_allowlist()
Check if the union tag is
dash_added_team_email_domain_allowlist.- Return type:
bool
- is_dash_admin_added_org_wide_connector()
Check if the union tag is
dash_admin_added_org_wide_connector.- Return type:
bool
- is_dash_admin_disabled_connector()
Check if the union tag is
dash_admin_disabled_connector.- Return type:
bool
- is_dash_admin_enabled_connector()
Check if the union tag is
dash_admin_enabled_connector.- Return type:
bool
- is_dash_admin_removed_org_wide_connector()
Check if the union tag is
dash_admin_removed_org_wide_connector.- Return type:
bool
- is_dash_archived_stack()
Check if the union tag is
dash_archived_stack.- Return type:
bool
Check if the union tag is
dash_changed_audience_of_shared_link_to_stack.- Return type:
bool
- is_dash_cloned_stack()
Check if the union tag is
dash_cloned_stack.- Return type:
bool
- is_dash_connector_tools_call()
Check if the union tag is
dash_connector_tools_call.- Return type:
bool
- is_dash_created_stack()
Check if the union tag is
dash_created_stack.- Return type:
bool
- is_dash_deleted_comment_from_stack()
Check if the union tag is
dash_deleted_comment_from_stack.- Return type:
bool
- is_dash_deleted_stack()
Check if the union tag is
dash_deleted_stack.- Return type:
bool
- is_dash_edited_comment_in_stack()
Check if the union tag is
dash_edited_comment_in_stack.- Return type:
bool
- is_dash_external_sharing_policy_changed()
Check if the union tag is
dash_external_sharing_policy_changed.- Return type:
bool
- is_dash_external_user_opened_stack()
Check if the union tag is
dash_external_user_opened_stack.- Return type:
bool
- is_dash_first_launched_desktop()
Check if the union tag is
dash_first_launched_desktop.- Return type:
bool
- is_dash_first_launched_extension()
Check if the union tag is
dash_first_launched_extension.- Return type:
bool
- is_dash_first_launched_web_start_page()
Check if the union tag is
dash_first_launched_web_start_page.- Return type:
bool
Check if the union tag is
dash_opened_shared_link_to_stack.- Return type:
bool
- is_dash_opened_stack()
Check if the union tag is
dash_opened_stack.- Return type:
bool
- is_dash_preview_opt_out_status_changed()
Check if the union tag is
dash_preview_opt_out_status_changed.- Return type:
bool
- is_dash_removed_connector()
Check if the union tag is
dash_removed_connector.- Return type:
bool
- is_dash_removed_link_from_stack()
Check if the union tag is
dash_removed_link_from_stack.- Return type:
bool
Check if the union tag is
dash_removed_shared_link_to_stack.- Return type:
bool
- is_dash_removed_team_email_domain_allowlist()
Check if the union tag is
dash_removed_team_email_domain_allowlist.- Return type:
bool
- is_dash_renamed_stack()
Check if the union tag is
dash_renamed_stack.- Return type:
bool
Check if the union tag is
dash_shared_link_to_stack.- Return type:
bool
- is_dash_unarchived_stack()
Check if the union tag is
dash_unarchived_stack.- Return type:
bool
- is_dash_viewed_company_stack()
Check if the union tag is
dash_viewed_company_stack.- Return type:
bool
- is_dash_viewed_external_ai_activity_report()
Check if the union tag is
dash_viewed_external_ai_activity_report.- Return type:
bool
- is_data_placement_restriction_change_policy()
Check if the union tag is
data_placement_restriction_change_policy.- Return type:
bool
- is_data_placement_restriction_satisfy_policy()
Check if the union tag is
data_placement_restriction_satisfy_policy.- Return type:
bool
- is_data_residency_migration_request_successful()
Check if the union tag is
data_residency_migration_request_successful.- Return type:
bool
- is_data_residency_migration_request_unsuccessful()
Check if the union tag is
data_residency_migration_request_unsuccessful.- Return type:
bool
- is_delete_team_invite_link()
Check if the union tag is
delete_team_invite_link.- Return type:
bool
- is_device_approvals_add_exception()
Check if the union tag is
device_approvals_add_exception.- Return type:
bool
- is_device_approvals_change_desktop_policy()
Check if the union tag is
device_approvals_change_desktop_policy.- Return type:
bool
- is_device_approvals_change_mobile_policy()
Check if the union tag is
device_approvals_change_mobile_policy.- Return type:
bool
- is_device_approvals_change_overage_action()
Check if the union tag is
device_approvals_change_overage_action.- Return type:
bool
- is_device_approvals_change_unlink_action()
Check if the union tag is
device_approvals_change_unlink_action.- Return type:
bool
- is_device_approvals_remove_exception()
Check if the union tag is
device_approvals_remove_exception.- Return type:
bool
- is_device_change_ip_desktop()
Check if the union tag is
device_change_ip_desktop.- Return type:
bool
- is_device_change_ip_mobile()
Check if the union tag is
device_change_ip_mobile.- Return type:
bool
- is_device_change_ip_web()
Check if the union tag is
device_change_ip_web.- Return type:
bool
- is_device_delete_on_unlink_fail()
Check if the union tag is
device_delete_on_unlink_fail.- Return type:
bool
- is_device_delete_on_unlink_success()
Check if the union tag is
device_delete_on_unlink_success.- Return type:
bool
- is_device_link_fail()
Check if the union tag is
device_link_fail.- Return type:
bool
- is_device_link_success()
Check if the union tag is
device_link_success.- Return type:
bool
- is_device_management_disabled()
Check if the union tag is
device_management_disabled.- Return type:
bool
- is_device_management_enabled()
Check if the union tag is
device_management_enabled.- Return type:
bool
- is_device_sync_backup_status_changed()
Check if the union tag is
device_sync_backup_status_changed.- Return type:
bool
- is_device_unlink()
Check if the union tag is
device_unlink.- Return type:
bool
- is_directory_restrictions_add_members()
Check if the union tag is
directory_restrictions_add_members.- Return type:
bool
- is_directory_restrictions_remove_members()
Check if the union tag is
directory_restrictions_remove_members.- Return type:
bool
- is_disabled_domain_invites()
Check if the union tag is
disabled_domain_invites.- Return type:
bool
- is_domain_invites_approve_request_to_join_team()
Check if the union tag is
domain_invites_approve_request_to_join_team.- Return type:
bool
- is_domain_invites_decline_request_to_join_team()
Check if the union tag is
domain_invites_decline_request_to_join_team.- Return type:
bool
- is_domain_invites_email_existing_users()
Check if the union tag is
domain_invites_email_existing_users.- Return type:
bool
- is_domain_invites_request_to_join_team()
Check if the union tag is
domain_invites_request_to_join_team.- Return type:
bool
- is_domain_invites_set_invite_new_user_pref_to_no()
Check if the union tag is
domain_invites_set_invite_new_user_pref_to_no.- Return type:
bool
- is_domain_invites_set_invite_new_user_pref_to_yes()
Check if the union tag is
domain_invites_set_invite_new_user_pref_to_yes.- Return type:
bool
- is_domain_verification_add_domain_fail()
Check if the union tag is
domain_verification_add_domain_fail.- Return type:
bool
- is_domain_verification_add_domain_success()
Check if the union tag is
domain_verification_add_domain_success.- Return type:
bool
- is_domain_verification_remove_domain()
Check if the union tag is
domain_verification_remove_domain.- Return type:
bool
- is_dropbox_passwords_exported()
Check if the union tag is
dropbox_passwords_exported.- Return type:
bool
- is_dropbox_passwords_new_device_enrolled()
Check if the union tag is
dropbox_passwords_new_device_enrolled.- Return type:
bool
- is_dropbox_passwords_policy_changed()
Check if the union tag is
dropbox_passwords_policy_changed.- Return type:
bool
- is_email_ingest_policy_changed()
Check if the union tag is
email_ingest_policy_changed.- Return type:
bool
- is_email_ingest_receive_file()
Check if the union tag is
email_ingest_receive_file.- Return type:
bool
- is_emm_add_exception()
Check if the union tag is
emm_add_exception.- Return type:
bool
- is_emm_change_policy()
Check if the union tag is
emm_change_policy.- Return type:
bool
- is_emm_create_exceptions_report()
Check if the union tag is
emm_create_exceptions_report.- Return type:
bool
- is_emm_create_usage_report()
Check if the union tag is
emm_create_usage_report.- Return type:
bool
- is_emm_error()
Check if the union tag is
emm_error.- Return type:
bool
- is_emm_refresh_auth_token()
Check if the union tag is
emm_refresh_auth_token.- Return type:
bool
- is_emm_remove_exception()
Check if the union tag is
emm_remove_exception.- Return type:
bool
- is_enabled_domain_invites()
Check if the union tag is
enabled_domain_invites.- Return type:
bool
- is_encrypted_folder_cancel_team_key_rotation()
Check if the union tag is
encrypted_folder_cancel_team_key_rotation.- Return type:
bool
- is_encrypted_folder_enroll_backup_key()
Check if the union tag is
encrypted_folder_enroll_backup_key.- Return type:
bool
- is_encrypted_folder_enroll_client()
Check if the union tag is
encrypted_folder_enroll_client.- Return type:
bool
- is_encrypted_folder_enroll_team()
Check if the union tag is
encrypted_folder_enroll_team.- Return type:
bool
- is_encrypted_folder_finish_team_unenrollment()
Check if the union tag is
encrypted_folder_finish_team_unenrollment.- Return type:
bool
- is_encrypted_folder_init_team_key_rotation()
Check if the union tag is
encrypted_folder_init_team_key_rotation.- Return type:
bool
- is_encrypted_folder_init_team_unenrollment()
Check if the union tag is
encrypted_folder_init_team_unenrollment.- Return type:
bool
- is_encrypted_folder_remove_backup_key()
Check if the union tag is
encrypted_folder_remove_backup_key.- Return type:
bool
- is_encrypted_folder_rotate_team_key()
Check if the union tag is
encrypted_folder_rotate_team_key.- Return type:
bool
- is_encrypted_folder_unenroll_client()
Check if the union tag is
encrypted_folder_unenroll_client.- Return type:
bool
- is_ended_enterprise_admin_session()
Check if the union tag is
ended_enterprise_admin_session.- Return type:
bool
- is_ended_enterprise_admin_session_deprecated()
Check if the union tag is
ended_enterprise_admin_session_deprecated.- Return type:
bool
- is_enterprise_settings_locking()
Check if the union tag is
enterprise_settings_locking.- Return type:
bool
- is_export_members_report()
Check if the union tag is
export_members_report.- Return type:
bool
- is_export_members_report_fail()
Check if the union tag is
export_members_report_fail.- Return type:
bool
- is_extended_version_history_change_policy()
Check if the union tag is
extended_version_history_change_policy.- Return type:
bool
- is_external_drive_backup_eligibility_status_checked()
Check if the union tag is
external_drive_backup_eligibility_status_checked.- Return type:
bool
- is_external_drive_backup_policy_changed()
Check if the union tag is
external_drive_backup_policy_changed.- Return type:
bool
- is_external_drive_backup_status_changed()
Check if the union tag is
external_drive_backup_status_changed.- Return type:
bool
- is_external_sharing_create_report()
Check if the union tag is
external_sharing_create_report.- Return type:
bool
- is_external_sharing_report_failed()
Check if the union tag is
external_sharing_report_failed.- Return type:
bool
- is_file_add()
Check if the union tag is
file_add.- Return type:
bool
- is_file_add_comment()
Check if the union tag is
file_add_comment.- Return type:
bool
- is_file_add_from_automation()
Check if the union tag is
file_add_from_automation.- Return type:
bool
- is_file_change_comment_subscription()
Check if the union tag is
file_change_comment_subscription.- Return type:
bool
- is_file_comments_change_policy()
Check if the union tag is
file_comments_change_policy.- Return type:
bool
- is_file_copy()
Check if the union tag is
file_copy.- Return type:
bool
- is_file_delete()
Check if the union tag is
file_delete.- Return type:
bool
- is_file_delete_comment()
Check if the union tag is
file_delete_comment.- Return type:
bool
- is_file_download()
Check if the union tag is
file_download.- Return type:
bool
- is_file_edit()
Check if the union tag is
file_edit.- Return type:
bool
- is_file_edit_comment()
Check if the union tag is
file_edit_comment.- Return type:
bool
- is_file_get_copy_reference()
Check if the union tag is
file_get_copy_reference.- Return type:
bool
- is_file_like_comment()
Check if the union tag is
file_like_comment.- Return type:
bool
- is_file_locking_lock_status_changed()
Check if the union tag is
file_locking_lock_status_changed.- Return type:
bool
- is_file_locking_policy_changed()
Check if the union tag is
file_locking_policy_changed.- Return type:
bool
- is_file_move()
Check if the union tag is
file_move.- Return type:
bool
- is_file_permanently_delete()
Check if the union tag is
file_permanently_delete.- Return type:
bool
- is_file_preview()
Check if the union tag is
file_preview.- Return type:
bool
- is_file_provider_migration_policy_changed()
Check if the union tag is
file_provider_migration_policy_changed.- Return type:
bool
- is_file_rename()
Check if the union tag is
file_rename.- Return type:
bool
- is_file_request_auto_close()
Check if the union tag is
file_request_auto_close.- Return type:
bool
- is_file_request_change()
Check if the union tag is
file_request_change.- Return type:
bool
- is_file_request_close()
Check if the union tag is
file_request_close.- Return type:
bool
- is_file_request_create()
Check if the union tag is
file_request_create.- Return type:
bool
- is_file_request_delete()
Check if the union tag is
file_request_delete.- Return type:
bool
- is_file_request_receive_file()
Check if the union tag is
file_request_receive_file.- Return type:
bool
- is_file_requests_change_policy()
Check if the union tag is
file_requests_change_policy.- Return type:
bool
- is_file_requests_emails_enabled()
Check if the union tag is
file_requests_emails_enabled.- Return type:
bool
- is_file_requests_emails_restricted_to_team_only()
Check if the union tag is
file_requests_emails_restricted_to_team_only.- Return type:
bool
- is_file_resolve_comment()
Check if the union tag is
file_resolve_comment.- Return type:
bool
- is_file_restore()
Check if the union tag is
file_restore.- Return type:
bool
- is_file_revert()
Check if the union tag is
file_revert.- Return type:
bool
- is_file_rollback_changes()
Check if the union tag is
file_rollback_changes.- Return type:
bool
- is_file_save_copy_reference()
Check if the union tag is
file_save_copy_reference.- Return type:
bool
- is_file_transfers_file_add()
Check if the union tag is
file_transfers_file_add.- Return type:
bool
- is_file_transfers_policy_changed()
Check if the union tag is
file_transfers_policy_changed.- Return type:
bool
- is_file_transfers_transfer_delete()
Check if the union tag is
file_transfers_transfer_delete.- Return type:
bool
- is_file_transfers_transfer_download()
Check if the union tag is
file_transfers_transfer_download.- Return type:
bool
- is_file_transfers_transfer_send()
Check if the union tag is
file_transfers_transfer_send.- Return type:
bool
- is_file_transfers_transfer_view()
Check if the union tag is
file_transfers_transfer_view.- Return type:
bool
- is_file_unlike_comment()
Check if the union tag is
file_unlike_comment.- Return type:
bool
- is_file_unresolve_comment()
Check if the union tag is
file_unresolve_comment.- Return type:
bool
- is_flexible_file_names_policy_changed()
Check if the union tag is
flexible_file_names_policy_changed.- Return type:
bool
- is_folder_link_restriction_policy_changed()
Check if the union tag is
folder_link_restriction_policy_changed.- Return type:
bool
- is_folder_overview_description_changed()
Check if the union tag is
folder_overview_description_changed.- Return type:
bool
- is_folder_overview_item_pinned()
Check if the union tag is
folder_overview_item_pinned.- Return type:
bool
- is_folder_overview_item_unpinned()
Check if the union tag is
folder_overview_item_unpinned.- Return type:
bool
- is_google_sso_change_policy()
Check if the union tag is
google_sso_change_policy.- Return type:
bool
- is_governance_policy_add_folder_failed()
Check if the union tag is
governance_policy_add_folder_failed.- Return type:
bool
- is_governance_policy_add_folders()
Check if the union tag is
governance_policy_add_folders.- Return type:
bool
- is_governance_policy_content_disposed()
Check if the union tag is
governance_policy_content_disposed.- Return type:
bool
- is_governance_policy_create()
Check if the union tag is
governance_policy_create.- Return type:
bool
- is_governance_policy_delete()
Check if the union tag is
governance_policy_delete.- Return type:
bool
- is_governance_policy_edit_details()
Check if the union tag is
governance_policy_edit_details.- Return type:
bool
- is_governance_policy_edit_duration()
Check if the union tag is
governance_policy_edit_duration.- Return type:
bool
- is_governance_policy_export_created()
Check if the union tag is
governance_policy_export_created.- Return type:
bool
- is_governance_policy_export_removed()
Check if the union tag is
governance_policy_export_removed.- Return type:
bool
- is_governance_policy_remove_folders()
Check if the union tag is
governance_policy_remove_folders.- Return type:
bool
- is_governance_policy_report_created()
Check if the union tag is
governance_policy_report_created.- Return type:
bool
- is_governance_policy_zip_part_downloaded()
Check if the union tag is
governance_policy_zip_part_downloaded.- Return type:
bool
- is_group_add_external_id()
Check if the union tag is
group_add_external_id.- Return type:
bool
- is_group_add_member()
Check if the union tag is
group_add_member.- Return type:
bool
- is_group_change_external_id()
Check if the union tag is
group_change_external_id.- Return type:
bool
- is_group_change_management_type()
Check if the union tag is
group_change_management_type.- Return type:
bool
- is_group_change_member_role()
Check if the union tag is
group_change_member_role.- Return type:
bool
- is_group_create()
Check if the union tag is
group_create.- Return type:
bool
- is_group_delete()
Check if the union tag is
group_delete.- Return type:
bool
- is_group_description_updated()
Check if the union tag is
group_description_updated.- Return type:
bool
- is_group_external_sharing_setting_override_changed()
Check if the union tag is
group_external_sharing_setting_override_changed.- Return type:
bool
- is_group_join_policy_updated()
Check if the union tag is
group_join_policy_updated.- Return type:
bool
- is_group_moved()
Check if the union tag is
group_moved.- Return type:
bool
- is_group_remove_external_id()
Check if the union tag is
group_remove_external_id.- Return type:
bool
- is_group_remove_member()
Check if the union tag is
group_remove_member.- Return type:
bool
- is_group_rename()
Check if the union tag is
group_rename.- Return type:
bool
- is_group_user_management_change_policy()
Check if the union tag is
group_user_management_change_policy.- Return type:
bool
- is_guest_admin_change_status()
Check if the union tag is
guest_admin_change_status.- Return type:
bool
- is_guest_admin_signed_in_via_trusted_teams()
Check if the union tag is
guest_admin_signed_in_via_trusted_teams.- Return type:
bool
- is_guest_admin_signed_out_via_trusted_teams()
Check if the union tag is
guest_admin_signed_out_via_trusted_teams.- Return type:
bool
- is_integration_connected()
Check if the union tag is
integration_connected.- Return type:
bool
- is_integration_disconnected()
Check if the union tag is
integration_disconnected.- Return type:
bool
- is_integration_policy_changed()
Check if the union tag is
integration_policy_changed.- Return type:
bool
- is_invite_acceptance_email_policy_changed()
Check if the union tag is
invite_acceptance_email_policy_changed.- Return type:
bool
- is_legal_holds_activate_a_hold()
Check if the union tag is
legal_holds_activate_a_hold.- Return type:
bool
- is_legal_holds_add_members()
Check if the union tag is
legal_holds_add_members.- Return type:
bool
- is_legal_holds_change_hold_details()
Check if the union tag is
legal_holds_change_hold_details.- Return type:
bool
- is_legal_holds_change_hold_name()
Check if the union tag is
legal_holds_change_hold_name.- Return type:
bool
- is_legal_holds_export_a_hold()
Check if the union tag is
legal_holds_export_a_hold.- Return type:
bool
- is_legal_holds_export_cancelled()
Check if the union tag is
legal_holds_export_cancelled.- Return type:
bool
- is_legal_holds_export_downloaded()
Check if the union tag is
legal_holds_export_downloaded.- Return type:
bool
- is_legal_holds_export_removed()
Check if the union tag is
legal_holds_export_removed.- Return type:
bool
- is_legal_holds_release_a_hold()
Check if the union tag is
legal_holds_release_a_hold.- Return type:
bool
- is_legal_holds_remove_members()
Check if the union tag is
legal_holds_remove_members.- Return type:
bool
- is_legal_holds_report_a_hold()
Check if the union tag is
legal_holds_report_a_hold.- Return type:
bool
- is_login_fail()
Check if the union tag is
login_fail.- Return type:
bool
- is_login_success()
Check if the union tag is
login_success.- Return type:
bool
- is_logout()
Check if the union tag is
logout.- Return type:
bool
- is_media_hub_adding_people_policy_changed()
Check if the union tag is
media_hub_adding_people_policy_changed.- Return type:
bool
- is_media_hub_download_policy_changed()
Check if the union tag is
media_hub_download_policy_changed.- Return type:
bool
- is_media_hub_file_downloaded()
Check if the union tag is
media_hub_file_downloaded.- Return type:
bool
- is_media_hub_link_sharing_policy_changed()
Check if the union tag is
media_hub_link_sharing_policy_changed.- Return type:
bool
- is_media_hub_project_team_add()
Check if the union tag is
media_hub_project_team_add.- Return type:
bool
- is_media_hub_project_team_delete()
Check if the union tag is
media_hub_project_team_delete.- Return type:
bool
- is_media_hub_project_team_role_changed()
Check if the union tag is
media_hub_project_team_role_changed.- Return type:
bool
Check if the union tag is
media_hub_shared_link_audience_changed.- Return type:
bool
Check if the union tag is
media_hub_shared_link_created.- Return type:
bool
Check if the union tag is
media_hub_shared_link_download_setting_changed.- Return type:
bool
Check if the union tag is
media_hub_shared_link_revoked.- Return type:
bool
- is_member_access_details_create_report()
Check if the union tag is
member_access_details_create_report.- Return type:
bool
- is_member_access_details_create_report_failed()
Check if the union tag is
member_access_details_create_report_failed.- Return type:
bool
- is_member_add_external_id()
Check if the union tag is
member_add_external_id.- Return type:
bool
- is_member_add_name()
Check if the union tag is
member_add_name.- Return type:
bool
- is_member_change_admin_role()
Check if the union tag is
member_change_admin_role.- Return type:
bool
- is_member_change_email()
Check if the union tag is
member_change_email.- Return type:
bool
- is_member_change_external_id()
Check if the union tag is
member_change_external_id.- Return type:
bool
- is_member_change_membership_type()
Check if the union tag is
member_change_membership_type.- Return type:
bool
- is_member_change_name()
Check if the union tag is
member_change_name.- Return type:
bool
- is_member_change_reseller_role()
Check if the union tag is
member_change_reseller_role.- Return type:
bool
- is_member_change_status()
Check if the union tag is
member_change_status.- Return type:
bool
- is_member_delete_manual_contacts()
Check if the union tag is
member_delete_manual_contacts.- Return type:
bool
- is_member_delete_profile_photo()
Check if the union tag is
member_delete_profile_photo.- Return type:
bool
- is_member_permanently_delete_account_contents()
Check if the union tag is
member_permanently_delete_account_contents.- Return type:
bool
- is_member_remove_external_id()
Check if the union tag is
member_remove_external_id.- Return type:
bool
- is_member_requests_change_policy()
Check if the union tag is
member_requests_change_policy.- Return type:
bool
- is_member_send_invite_policy_changed()
Check if the union tag is
member_send_invite_policy_changed.- Return type:
bool
- is_member_set_profile_photo()
Check if the union tag is
member_set_profile_photo.- Return type:
bool
- is_member_space_limits_add_custom_quota()
Check if the union tag is
member_space_limits_add_custom_quota.- Return type:
bool
- is_member_space_limits_add_exception()
Check if the union tag is
member_space_limits_add_exception.- Return type:
bool
- is_member_space_limits_change_caps_type_policy()
Check if the union tag is
member_space_limits_change_caps_type_policy.- Return type:
bool
- is_member_space_limits_change_custom_quota()
Check if the union tag is
member_space_limits_change_custom_quota.- Return type:
bool
- is_member_space_limits_change_policy()
Check if the union tag is
member_space_limits_change_policy.- Return type:
bool
- is_member_space_limits_change_status()
Check if the union tag is
member_space_limits_change_status.- Return type:
bool
- is_member_space_limits_remove_custom_quota()
Check if the union tag is
member_space_limits_remove_custom_quota.- Return type:
bool
- is_member_space_limits_remove_exception()
Check if the union tag is
member_space_limits_remove_exception.- Return type:
bool
- is_member_suggest()
Check if the union tag is
member_suggest.- Return type:
bool
- is_member_suggestions_change_policy()
Check if the union tag is
member_suggestions_change_policy.- Return type:
bool
- is_member_transfer_account_contents()
Check if the union tag is
member_transfer_account_contents.- Return type:
bool
- is_microsoft_login_change_policy()
Check if the union tag is
microsoft_login_change_policy.- Return type:
bool
- is_microsoft_office_addin_change_policy()
Check if the union tag is
microsoft_office_addin_change_policy.- Return type:
bool
- is_multi_team_identity_policy_changed()
Check if the union tag is
multi_team_identity_policy_changed.- Return type:
bool
- is_network_control_change_policy()
Check if the union tag is
network_control_change_policy.- Return type:
bool
- is_no_expiration_link_gen_create_report()
Check if the union tag is
no_expiration_link_gen_create_report.- Return type:
bool
- is_no_expiration_link_gen_report_failed()
Check if the union tag is
no_expiration_link_gen_report_failed.- Return type:
bool
- is_no_password_link_gen_create_report()
Check if the union tag is
no_password_link_gen_create_report.- Return type:
bool
- is_no_password_link_gen_report_failed()
Check if the union tag is
no_password_link_gen_report_failed.- Return type:
bool
- is_no_password_link_view_create_report()
Check if the union tag is
no_password_link_view_create_report.- Return type:
bool
- is_no_password_link_view_report_failed()
Check if the union tag is
no_password_link_view_report_failed.- Return type:
bool
- is_note_acl_invite_only()
Check if the union tag is
note_acl_invite_only.- Return type:
bool
- is_note_acl_link()
Check if the union tag is
note_acl_link.- Return type:
bool
- is_note_acl_team_link()
Check if the union tag is
note_acl_team_link.- Return type:
bool
Check if the union tag is
note_share_receive.- Return type:
bool
Check if the union tag is
note_shared.- Return type:
bool
- is_object_label_added()
Check if the union tag is
object_label_added.- Return type:
bool
- is_object_label_removed()
Check if the union tag is
object_label_removed.- Return type:
bool
- is_object_label_updated_value()
Check if the union tag is
object_label_updated_value.- Return type:
bool
Check if the union tag is
open_note_shared.- Return type:
bool
- is_organize_folder_with_tidy()
Check if the union tag is
organize_folder_with_tidy.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- is_outdated_link_view_create_report()
Check if the union tag is
outdated_link_view_create_report.- Return type:
bool
- is_outdated_link_view_report_failed()
Check if the union tag is
outdated_link_view_report_failed.- Return type:
bool
- is_paper_admin_export_start()
Check if the union tag is
paper_admin_export_start.- Return type:
bool
- is_paper_change_deployment_policy()
Check if the union tag is
paper_change_deployment_policy.- Return type:
bool
- is_paper_change_member_link_policy()
Check if the union tag is
paper_change_member_link_policy.- Return type:
bool
- is_paper_change_member_policy()
Check if the union tag is
paper_change_member_policy.- Return type:
bool
- is_paper_change_policy()
Check if the union tag is
paper_change_policy.- Return type:
bool
- is_paper_content_add_member()
Check if the union tag is
paper_content_add_member.- Return type:
bool
- is_paper_content_add_to_folder()
Check if the union tag is
paper_content_add_to_folder.- Return type:
bool
- is_paper_content_archive()
Check if the union tag is
paper_content_archive.- Return type:
bool
- is_paper_content_create()
Check if the union tag is
paper_content_create.- Return type:
bool
- is_paper_content_permanently_delete()
Check if the union tag is
paper_content_permanently_delete.- Return type:
bool
- is_paper_content_remove_from_folder()
Check if the union tag is
paper_content_remove_from_folder.- Return type:
bool
- is_paper_content_remove_member()
Check if the union tag is
paper_content_remove_member.- Return type:
bool
- is_paper_content_rename()
Check if the union tag is
paper_content_rename.- Return type:
bool
- is_paper_content_restore()
Check if the union tag is
paper_content_restore.- Return type:
bool
- is_paper_default_folder_policy_changed()
Check if the union tag is
paper_default_folder_policy_changed.- Return type:
bool
- is_paper_desktop_policy_changed()
Check if the union tag is
paper_desktop_policy_changed.- Return type:
bool
- is_paper_doc_add_comment()
Check if the union tag is
paper_doc_add_comment.- Return type:
bool
- is_paper_doc_change_member_role()
Check if the union tag is
paper_doc_change_member_role.- Return type:
bool
- is_paper_doc_change_sharing_policy()
Check if the union tag is
paper_doc_change_sharing_policy.- Return type:
bool
- is_paper_doc_change_subscription()
Check if the union tag is
paper_doc_change_subscription.- Return type:
bool
- is_paper_doc_delete_comment()
Check if the union tag is
paper_doc_delete_comment.- Return type:
bool
- is_paper_doc_deleted()
Check if the union tag is
paper_doc_deleted.- Return type:
bool
- is_paper_doc_download()
Check if the union tag is
paper_doc_download.- Return type:
bool
- is_paper_doc_edit()
Check if the union tag is
paper_doc_edit.- Return type:
bool
- is_paper_doc_edit_comment()
Check if the union tag is
paper_doc_edit_comment.- Return type:
bool
- is_paper_doc_followed()
Check if the union tag is
paper_doc_followed.- Return type:
bool
- is_paper_doc_mention()
Check if the union tag is
paper_doc_mention.- Return type:
bool
- is_paper_doc_ownership_changed()
Check if the union tag is
paper_doc_ownership_changed.- Return type:
bool
- is_paper_doc_request_access()
Check if the union tag is
paper_doc_request_access.- Return type:
bool
- is_paper_doc_resolve_comment()
Check if the union tag is
paper_doc_resolve_comment.- Return type:
bool
- is_paper_doc_revert()
Check if the union tag is
paper_doc_revert.- Return type:
bool
Check if the union tag is
paper_doc_slack_share.- Return type:
bool
- is_paper_doc_team_invite()
Check if the union tag is
paper_doc_team_invite.- Return type:
bool
- is_paper_doc_trashed()
Check if the union tag is
paper_doc_trashed.- Return type:
bool
- is_paper_doc_unresolve_comment()
Check if the union tag is
paper_doc_unresolve_comment.- Return type:
bool
- is_paper_doc_untrashed()
Check if the union tag is
paper_doc_untrashed.- Return type:
bool
- is_paper_doc_view()
Check if the union tag is
paper_doc_view.- Return type:
bool
- is_paper_enabled_users_group_addition()
Check if the union tag is
paper_enabled_users_group_addition.- Return type:
bool
- is_paper_enabled_users_group_removal()
Check if the union tag is
paper_enabled_users_group_removal.- Return type:
bool
- is_paper_external_view_allow()
Check if the union tag is
paper_external_view_allow.- Return type:
bool
- is_paper_external_view_default_team()
Check if the union tag is
paper_external_view_default_team.- Return type:
bool
- is_paper_external_view_forbid()
Check if the union tag is
paper_external_view_forbid.- Return type:
bool
- is_paper_folder_change_subscription()
Check if the union tag is
paper_folder_change_subscription.- Return type:
bool
- is_paper_folder_deleted()
Check if the union tag is
paper_folder_deleted.- Return type:
bool
- is_paper_folder_followed()
Check if the union tag is
paper_folder_followed.- Return type:
bool
- is_paper_folder_team_invite()
Check if the union tag is
paper_folder_team_invite.- Return type:
bool
- is_paper_published_link_change_permission()
Check if the union tag is
paper_published_link_change_permission.- Return type:
bool
- is_paper_published_link_create()
Check if the union tag is
paper_published_link_create.- Return type:
bool
- is_paper_published_link_disabled()
Check if the union tag is
paper_published_link_disabled.- Return type:
bool
- is_paper_published_link_view()
Check if the union tag is
paper_published_link_view.- Return type:
bool
- is_passkey_add()
Check if the union tag is
passkey_add.- Return type:
bool
- is_passkey_login_policy_changed()
Check if the union tag is
passkey_login_policy_changed.- Return type:
bool
- is_passkey_remove()
Check if the union tag is
passkey_remove.- Return type:
bool
- is_password_change()
Check if the union tag is
password_change.- Return type:
bool
- is_password_reset()
Check if the union tag is
password_reset.- Return type:
bool
- is_password_reset_all()
Check if the union tag is
password_reset_all.- Return type:
bool
- is_password_strength_requirements_change_policy()
Check if the union tag is
password_strength_requirements_change_policy.- Return type:
bool
- is_pending_secondary_email_added()
Check if the union tag is
pending_secondary_email_added.- Return type:
bool
- is_permanent_delete_change_policy()
Check if the union tag is
permanent_delete_change_policy.- Return type:
bool
- is_previews_ai_policy_changed()
Check if the union tag is
previews_ai_policy_changed.- Return type:
bool
- is_product_assigned_to_member()
Check if the union tag is
product_assigned_to_member.- Return type:
bool
- is_product_removed_from_member()
Check if the union tag is
product_removed_from_member.- Return type:
bool
- is_protect_internal_domains_changed()
Check if the union tag is
protect_internal_domains_changed.- Return type:
bool
- is_ransomware_alert_create_report()
Check if the union tag is
ransomware_alert_create_report.- Return type:
bool
- is_ransomware_alert_create_report_failed()
Check if the union tag is
ransomware_alert_create_report_failed.- Return type:
bool
- is_ransomware_restore_process_completed()
Check if the union tag is
ransomware_restore_process_completed.- Return type:
bool
- is_ransomware_restore_process_started()
Check if the union tag is
ransomware_restore_process_started.- Return type:
bool
- is_replay_adding_people_policy_changed()
Check if the union tag is
replay_adding_people_policy_changed.- Return type:
bool
- is_replay_file_delete()
Check if the union tag is
replay_file_delete.- Return type:
bool
- is_replay_file_downloaded()
Check if the union tag is
replay_file_downloaded.- Return type:
bool
Check if the union tag is
replay_file_shared_link_created.- Return type:
bool
Check if the union tag is
replay_file_shared_link_modified.- Return type:
bool
- is_replay_project_team_add()
Check if the union tag is
replay_project_team_add.- Return type:
bool
- is_replay_project_team_delete()
Check if the union tag is
replay_project_team_delete.- Return type:
bool
- is_replay_sharing_policy_changed()
Check if the union tag is
replay_sharing_policy_changed.- Return type:
bool
- is_replay_team_project_created()
Check if the union tag is
replay_team_project_created.- Return type:
bool
- is_reseller_support_change_policy()
Check if the union tag is
reseller_support_change_policy.- Return type:
bool
- is_reseller_support_session_end()
Check if the union tag is
reseller_support_session_end.- Return type:
bool
- is_reseller_support_session_start()
Check if the union tag is
reseller_support_session_start.- Return type:
bool
- is_rewind_folder()
Check if the union tag is
rewind_folder.- Return type:
bool
- is_rewind_policy_changed()
Check if the union tag is
rewind_policy_changed.- Return type:
bool
- is_risc_security_event()
Check if the union tag is
risc_security_event.- Return type:
bool
- is_secondary_email_deleted()
Check if the union tag is
secondary_email_deleted.- Return type:
bool
- is_secondary_email_verified()
Check if the union tag is
secondary_email_verified.- Return type:
bool
- is_secondary_mails_policy_changed()
Check if the union tag is
secondary_mails_policy_changed.- Return type:
bool
- is_send_and_track_file_added()
Check if the union tag is
send_and_track_file_added.- Return type:
bool
- is_send_and_track_file_renamed()
Check if the union tag is
send_and_track_file_renamed.- Return type:
bool
- is_send_and_track_file_updated()
Check if the union tag is
send_and_track_file_updated.- Return type:
bool
- is_send_and_track_link_created()
Check if the union tag is
send_and_track_link_created.- Return type:
bool
- is_send_and_track_link_deleted()
Check if the union tag is
send_and_track_link_deleted.- Return type:
bool
- is_send_and_track_link_updated()
Check if the union tag is
send_and_track_link_updated.- Return type:
bool
- is_send_and_track_link_viewed()
Check if the union tag is
send_and_track_link_viewed.- Return type:
bool
- is_send_and_track_policy_changed()
Check if the union tag is
send_and_track_policy_changed.- Return type:
bool
- is_send_and_track_removed_file_and_associated_links()
Check if the union tag is
send_and_track_removed_file_and_associated_links.- Return type:
bool
- is_send_external_sharing_policy_changed()
Check if the union tag is
send_external_sharing_policy_changed.- Return type:
bool
- is_send_for_signature_policy_changed()
Check if the union tag is
send_for_signature_policy_changed.- Return type:
bool
- is_sf_add_group()
Check if the union tag is
sf_add_group.- Return type:
bool
Check if the union tag is
sf_allow_non_members_to_view_shared_links.- Return type:
bool
- is_sf_external_invite_warn()
Check if the union tag is
sf_external_invite_warn.- Return type:
bool
- is_sf_fb_invite()
Check if the union tag is
sf_fb_invite.- Return type:
bool
- is_sf_fb_invite_change_role()
Check if the union tag is
sf_fb_invite_change_role.- Return type:
bool
- is_sf_fb_uninvite()
Check if the union tag is
sf_fb_uninvite.- Return type:
bool
- is_sf_invite_group()
Check if the union tag is
sf_invite_group.- Return type:
bool
- is_sf_team_grant_access()
Check if the union tag is
sf_team_grant_access.- Return type:
bool
- is_sf_team_invite()
Check if the union tag is
sf_team_invite.- Return type:
bool
- is_sf_team_invite_change_role()
Check if the union tag is
sf_team_invite_change_role.- Return type:
bool
- is_sf_team_join()
Check if the union tag is
sf_team_join.- Return type:
bool
- is_sf_team_join_from_oob_link()
Check if the union tag is
sf_team_join_from_oob_link.- Return type:
bool
- is_sf_team_uninvite()
Check if the union tag is
sf_team_uninvite.- Return type:
bool
Check if the union tag is
shared_content_add_invitees.- Return type:
bool
Check if the union tag is
shared_content_add_link_expiry.- Return type:
bool
Check if the union tag is
shared_content_add_link_password.- Return type:
bool
Check if the union tag is
shared_content_add_member.- Return type:
bool
Check if the union tag is
shared_content_change_downloads_policy.- Return type:
bool
Check if the union tag is
shared_content_change_invitee_role.- Return type:
bool
Check if the union tag is
shared_content_change_link_audience.- Return type:
bool
Check if the union tag is
shared_content_change_link_expiry.- Return type:
bool
Check if the union tag is
shared_content_change_link_password.- Return type:
bool
Check if the union tag is
shared_content_change_member_role.- Return type:
bool
Check if the union tag is
shared_content_change_viewer_info_policy.- Return type:
bool
Check if the union tag is
shared_content_claim_invitation.- Return type:
bool
Check if the union tag is
shared_content_copy.- Return type:
bool
Check if the union tag is
shared_content_download.- Return type:
bool
Check if the union tag is
shared_content_relinquish_membership.- Return type:
bool
Check if the union tag is
shared_content_remove_invitees.- Return type:
bool
Check if the union tag is
shared_content_remove_link_expiry.- Return type:
bool
Check if the union tag is
shared_content_remove_link_password.- Return type:
bool
Check if the union tag is
shared_content_remove_member.- Return type:
bool
Check if the union tag is
shared_content_request_access.- Return type:
bool
Check if the union tag is
shared_content_restore_invitees.- Return type:
bool
Check if the union tag is
shared_content_restore_member.- Return type:
bool
Check if the union tag is
shared_content_unshare.- Return type:
bool
Check if the union tag is
shared_content_view.- Return type:
bool
Check if the union tag is
shared_folder_change_link_policy.- Return type:
bool
Check if the union tag is
shared_folder_change_members_inheritance_policy.- Return type:
bool
Check if the union tag is
shared_folder_change_members_management_policy.- Return type:
bool
Check if the union tag is
shared_folder_change_members_policy.- Return type:
bool
Check if the union tag is
shared_folder_create.- Return type:
bool
Check if the union tag is
shared_folder_decline_invitation.- Return type:
bool
Check if the union tag is
shared_folder_mount.- Return type:
bool
Check if the union tag is
shared_folder_nest.- Return type:
bool
Check if the union tag is
shared_folder_transfer_ownership.- Return type:
bool
Check if the union tag is
shared_folder_unmount.- Return type:
bool
Check if the union tag is
shared_folders_create_report.- Return type:
bool
Check if the union tag is
shared_folders_create_report_failed.- Return type:
bool
Check if the union tag is
shared_link_add_expiry.- Return type:
bool
Check if the union tag is
shared_link_change_expiry.- Return type:
bool
Check if the union tag is
shared_link_change_visibility.- Return type:
bool
Check if the union tag is
shared_link_copy.- Return type:
bool
Check if the union tag is
shared_link_create.- Return type:
bool
Check if the union tag is
shared_link_default_permissions_policy_changed.- Return type:
bool
Check if the union tag is
shared_link_disable.- Return type:
bool
Check if the union tag is
shared_link_download.- Return type:
bool
Check if the union tag is
shared_link_remove_expiry.- Return type:
bool
Check if the union tag is
shared_link_remove_visitor.- Return type:
bool
Check if the union tag is
shared_link_settings_add_expiration.- Return type:
bool
Check if the union tag is
shared_link_settings_add_password.- Return type:
bool
Check if the union tag is
shared_link_settings_allow_download_disabled.- Return type:
bool
Check if the union tag is
shared_link_settings_allow_download_enabled.- Return type:
bool
Check if the union tag is
shared_link_settings_change_audience.- Return type:
bool
Check if the union tag is
shared_link_settings_change_expiration.- Return type:
bool
Check if the union tag is
shared_link_settings_change_password.- Return type:
bool
Check if the union tag is
shared_link_settings_remove_expiration.- Return type:
bool
Check if the union tag is
shared_link_settings_remove_password.- Return type:
bool
Check if the union tag is
shared_link_share.- Return type:
bool
Check if the union tag is
shared_link_view.- Return type:
bool
Check if the union tag is
shared_note_opened.- Return type:
bool
- is_sharing_change_folder_join_policy()
Check if the union tag is
sharing_change_folder_join_policy.- Return type:
bool
- is_sharing_change_link_allow_change_expiration_policy()
Check if the union tag is
sharing_change_link_allow_change_expiration_policy.- Return type:
bool
- is_sharing_change_link_default_expiration_policy()
Check if the union tag is
sharing_change_link_default_expiration_policy.- Return type:
bool
- is_sharing_change_link_enforce_password_policy()
Check if the union tag is
sharing_change_link_enforce_password_policy.- Return type:
bool
- is_sharing_change_link_policy()
Check if the union tag is
sharing_change_link_policy.- Return type:
bool
- is_sharing_change_member_policy()
Check if the union tag is
sharing_change_member_policy.- Return type:
bool
- is_shmodel_disable_downloads()
Check if the union tag is
shmodel_disable_downloads.- Return type:
bool
- is_shmodel_enable_downloads()
Check if the union tag is
shmodel_enable_downloads.- Return type:
bool
Check if the union tag is
shmodel_group_share.- Return type:
bool
- is_showcase_access_granted()
Check if the union tag is
showcase_access_granted.- Return type:
bool
- is_showcase_add_member()
Check if the union tag is
showcase_add_member.- Return type:
bool
- is_showcase_archived()
Check if the union tag is
showcase_archived.- Return type:
bool
- is_showcase_change_download_policy()
Check if the union tag is
showcase_change_download_policy.- Return type:
bool
- is_showcase_change_enabled_policy()
Check if the union tag is
showcase_change_enabled_policy.- Return type:
bool
- is_showcase_change_external_sharing_policy()
Check if the union tag is
showcase_change_external_sharing_policy.- Return type:
bool
- is_showcase_created()
Check if the union tag is
showcase_created.- Return type:
bool
- is_showcase_delete_comment()
Check if the union tag is
showcase_delete_comment.- Return type:
bool
- is_showcase_edit_comment()
Check if the union tag is
showcase_edit_comment.- Return type:
bool
- is_showcase_edited()
Check if the union tag is
showcase_edited.- Return type:
bool
- is_showcase_file_added()
Check if the union tag is
showcase_file_added.- Return type:
bool
- is_showcase_file_download()
Check if the union tag is
showcase_file_download.- Return type:
bool
- is_showcase_file_removed()
Check if the union tag is
showcase_file_removed.- Return type:
bool
- is_showcase_file_view()
Check if the union tag is
showcase_file_view.- Return type:
bool
- is_showcase_permanently_deleted()
Check if the union tag is
showcase_permanently_deleted.- Return type:
bool
- is_showcase_post_comment()
Check if the union tag is
showcase_post_comment.- Return type:
bool
- is_showcase_remove_member()
Check if the union tag is
showcase_remove_member.- Return type:
bool
- is_showcase_renamed()
Check if the union tag is
showcase_renamed.- Return type:
bool
- is_showcase_request_access()
Check if the union tag is
showcase_request_access.- Return type:
bool
- is_showcase_resolve_comment()
Check if the union tag is
showcase_resolve_comment.- Return type:
bool
- is_showcase_restored()
Check if the union tag is
showcase_restored.- Return type:
bool
- is_showcase_trashed()
Check if the union tag is
showcase_trashed.- Return type:
bool
- is_showcase_trashed_deprecated()
Check if the union tag is
showcase_trashed_deprecated.- Return type:
bool
- is_showcase_unresolve_comment()
Check if the union tag is
showcase_unresolve_comment.- Return type:
bool
- is_showcase_untrashed()
Check if the union tag is
showcase_untrashed.- Return type:
bool
- is_showcase_untrashed_deprecated()
Check if the union tag is
showcase_untrashed_deprecated.- Return type:
bool
- is_showcase_view()
Check if the union tag is
showcase_view.- Return type:
bool
- is_sign_external_sharing_policy_changed()
Check if the union tag is
sign_external_sharing_policy_changed.- Return type:
bool
- is_sign_in_as_session_end()
Check if the union tag is
sign_in_as_session_end.- Return type:
bool
- is_sign_in_as_session_start()
Check if the union tag is
sign_in_as_session_start.- Return type:
bool
- is_sign_signature_request_canceled()
Check if the union tag is
sign_signature_request_canceled.- Return type:
bool
- is_sign_signature_request_completed()
Check if the union tag is
sign_signature_request_completed.- Return type:
bool
- is_sign_signature_request_declined()
Check if the union tag is
sign_signature_request_declined.- Return type:
bool
- is_sign_signature_request_opened()
Check if the union tag is
sign_signature_request_opened.- Return type:
bool
- is_sign_signature_request_reminder_sent()
Check if the union tag is
sign_signature_request_reminder_sent.- Return type:
bool
- is_sign_signature_request_sent()
Check if the union tag is
sign_signature_request_sent.- Return type:
bool
- is_sign_template_created()
Check if the union tag is
sign_template_created.- Return type:
bool
- is_sign_template_creation_permission_changed()
Check if the union tag is
sign_template_creation_permission_changed.- Return type:
bool
Check if the union tag is
sign_template_shared.- Return type:
bool
- is_smart_sync_change_policy()
Check if the union tag is
smart_sync_change_policy.- Return type:
bool
- is_smart_sync_create_admin_privilege_report()
Check if the union tag is
smart_sync_create_admin_privilege_report.- Return type:
bool
- is_smart_sync_not_opt_out()
Check if the union tag is
smart_sync_not_opt_out.- Return type:
bool
- is_smart_sync_opt_out()
Check if the union tag is
smart_sync_opt_out.- Return type:
bool
- is_smarter_smart_sync_policy_changed()
Check if the union tag is
smarter_smart_sync_policy_changed.- Return type:
bool
- is_sso_add_cert()
Check if the union tag is
sso_add_cert.- Return type:
bool
- is_sso_add_login_url()
Check if the union tag is
sso_add_login_url.- Return type:
bool
- is_sso_add_logout_url()
Check if the union tag is
sso_add_logout_url.- Return type:
bool
- is_sso_change_cert()
Check if the union tag is
sso_change_cert.- Return type:
bool
- is_sso_change_login_url()
Check if the union tag is
sso_change_login_url.- Return type:
bool
- is_sso_change_logout_url()
Check if the union tag is
sso_change_logout_url.- Return type:
bool
- is_sso_change_policy()
Check if the union tag is
sso_change_policy.- Return type:
bool
- is_sso_change_saml_identity_mode()
Check if the union tag is
sso_change_saml_identity_mode.- Return type:
bool
- is_sso_error()
Check if the union tag is
sso_error.- Return type:
bool
- is_sso_remove_cert()
Check if the union tag is
sso_remove_cert.- Return type:
bool
- is_sso_remove_login_url()
Check if the union tag is
sso_remove_login_url.- Return type:
bool
- is_sso_remove_logout_url()
Check if the union tag is
sso_remove_logout_url.- Return type:
bool
- is_stack_cross_team_access_policy_changed()
Check if the union tag is
stack_cross_team_access_policy_changed.- Return type:
bool
- is_started_enterprise_admin_session()
Check if the union tag is
started_enterprise_admin_session.- Return type:
bool
- is_team_activity_create_report()
Check if the union tag is
team_activity_create_report.- Return type:
bool
- is_team_activity_create_report_fail()
Check if the union tag is
team_activity_create_report_fail.- Return type:
bool
- is_team_branding_policy_changed()
Check if the union tag is
team_branding_policy_changed.- Return type:
bool
- is_team_encryption_key_activate_key()
Check if the union tag is
team_encryption_key_activate_key.- Return type:
bool
- is_team_encryption_key_cancel_key_deletion()
Check if the union tag is
team_encryption_key_cancel_key_deletion.- Return type:
bool
- is_team_encryption_key_create_key()
Check if the union tag is
team_encryption_key_create_key.- Return type:
bool
- is_team_encryption_key_deactivate_key()
Check if the union tag is
team_encryption_key_deactivate_key.- Return type:
bool
- is_team_encryption_key_delete_key()
Check if the union tag is
team_encryption_key_delete_key.- Return type:
bool
- is_team_encryption_key_disable_key()
Check if the union tag is
team_encryption_key_disable_key.- Return type:
bool
- is_team_encryption_key_enable_key()
Check if the union tag is
team_encryption_key_enable_key.- Return type:
bool
- is_team_encryption_key_rotate_key()
Check if the union tag is
team_encryption_key_rotate_key.- Return type:
bool
- is_team_encryption_key_schedule_key_deletion()
Check if the union tag is
team_encryption_key_schedule_key_deletion.- Return type:
bool
- is_team_extensions_policy_changed()
Check if the union tag is
team_extensions_policy_changed.- Return type:
bool
- is_team_folder_change_status()
Check if the union tag is
team_folder_change_status.- Return type:
bool
- is_team_folder_create()
Check if the union tag is
team_folder_create.- Return type:
bool
- is_team_folder_downgrade()
Check if the union tag is
team_folder_downgrade.- Return type:
bool
- is_team_folder_permanently_delete()
Check if the union tag is
team_folder_permanently_delete.- Return type:
bool
- is_team_folder_rename()
Check if the union tag is
team_folder_rename.- Return type:
bool
- is_team_folder_space_limits_change_caps_type()
Check if the union tag is
team_folder_space_limits_change_caps_type.- Return type:
bool
- is_team_folder_space_limits_change_limit()
Check if the union tag is
team_folder_space_limits_change_limit.- Return type:
bool
- is_team_folder_space_limits_change_notification_target()
Check if the union tag is
team_folder_space_limits_change_notification_target.- Return type:
bool
- is_team_folders_create_report()
Check if the union tag is
team_folders_create_report.- Return type:
bool
- is_team_folders_create_report_failed()
Check if the union tag is
team_folders_create_report_failed.- Return type:
bool
- is_team_member_storage_request_policy_changed()
Check if the union tag is
team_member_storage_request_policy_changed.- Return type:
bool
- is_team_merge_from()
Check if the union tag is
team_merge_from.- Return type:
bool
- is_team_merge_request_accepted()
Check if the union tag is
team_merge_request_accepted.- Return type:
bool
- is_team_merge_request_accepted_shown_to_primary_team()
Check if the union tag is
team_merge_request_accepted_shown_to_primary_team.- Return type:
bool
- is_team_merge_request_accepted_shown_to_secondary_team()
Check if the union tag is
team_merge_request_accepted_shown_to_secondary_team.- Return type:
bool
- is_team_merge_request_auto_canceled()
Check if the union tag is
team_merge_request_auto_canceled.- Return type:
bool
- is_team_merge_request_canceled()
Check if the union tag is
team_merge_request_canceled.- Return type:
bool
- is_team_merge_request_canceled_shown_to_primary_team()
Check if the union tag is
team_merge_request_canceled_shown_to_primary_team.- Return type:
bool
- is_team_merge_request_canceled_shown_to_secondary_team()
Check if the union tag is
team_merge_request_canceled_shown_to_secondary_team.- Return type:
bool
- is_team_merge_request_expired()
Check if the union tag is
team_merge_request_expired.- Return type:
bool
- is_team_merge_request_expired_shown_to_primary_team()
Check if the union tag is
team_merge_request_expired_shown_to_primary_team.- Return type:
bool
- is_team_merge_request_expired_shown_to_secondary_team()
Check if the union tag is
team_merge_request_expired_shown_to_secondary_team.- Return type:
bool
- is_team_merge_request_rejected_shown_to_primary_team()
Check if the union tag is
team_merge_request_rejected_shown_to_primary_team.- Return type:
bool
- is_team_merge_request_rejected_shown_to_secondary_team()
Check if the union tag is
team_merge_request_rejected_shown_to_secondary_team.- Return type:
bool
- is_team_merge_request_reminder()
Check if the union tag is
team_merge_request_reminder.- Return type:
bool
- is_team_merge_request_reminder_shown_to_primary_team()
Check if the union tag is
team_merge_request_reminder_shown_to_primary_team.- Return type:
bool
- is_team_merge_request_reminder_shown_to_secondary_team()
Check if the union tag is
team_merge_request_reminder_shown_to_secondary_team.- Return type:
bool
- is_team_merge_request_revoked()
Check if the union tag is
team_merge_request_revoked.- Return type:
bool
- is_team_merge_request_sent_shown_to_primary_team()
Check if the union tag is
team_merge_request_sent_shown_to_primary_team.- Return type:
bool
- is_team_merge_request_sent_shown_to_secondary_team()
Check if the union tag is
team_merge_request_sent_shown_to_secondary_team.- Return type:
bool
- is_team_merge_to()
Check if the union tag is
team_merge_to.- Return type:
bool
- is_team_profile_add_background()
Check if the union tag is
team_profile_add_background.- Return type:
bool
- is_team_profile_add_logo()
Check if the union tag is
team_profile_add_logo.- Return type:
bool
- is_team_profile_change_background()
Check if the union tag is
team_profile_change_background.- Return type:
bool
- is_team_profile_change_default_language()
Check if the union tag is
team_profile_change_default_language.- Return type:
bool
- is_team_profile_change_logo()
Check if the union tag is
team_profile_change_logo.- Return type:
bool
- is_team_profile_change_name()
Check if the union tag is
team_profile_change_name.- Return type:
bool
- is_team_profile_remove_background()
Check if the union tag is
team_profile_remove_background.- Return type:
bool
- is_team_profile_remove_logo()
Check if the union tag is
team_profile_remove_logo.- Return type:
bool
- is_team_selective_sync_policy_changed()
Check if the union tag is
team_selective_sync_policy_changed.- Return type:
bool
- is_team_selective_sync_settings_changed()
Check if the union tag is
team_selective_sync_settings_changed.- Return type:
bool
- is_team_sharing_whitelist_subjects_changed()
Check if the union tag is
team_sharing_whitelist_subjects_changed.- Return type:
bool
- is_team_storage_create_report()
Check if the union tag is
team_storage_create_report.- Return type:
bool
- is_team_storage_create_report_failed()
Check if the union tag is
team_storage_create_report_failed.- Return type:
bool
- is_tfa_add_backup_phone()
Check if the union tag is
tfa_add_backup_phone.- Return type:
bool
- is_tfa_add_exception()
Check if the union tag is
tfa_add_exception.- Return type:
bool
- is_tfa_add_security_key()
Check if the union tag is
tfa_add_security_key.- Return type:
bool
- is_tfa_change_backup_phone()
Check if the union tag is
tfa_change_backup_phone.- Return type:
bool
- is_tfa_change_policy()
Check if the union tag is
tfa_change_policy.- Return type:
bool
- is_tfa_change_status()
Check if the union tag is
tfa_change_status.- Return type:
bool
- is_tfa_remove_backup_phone()
Check if the union tag is
tfa_remove_backup_phone.- Return type:
bool
- is_tfa_remove_exception()
Check if the union tag is
tfa_remove_exception.- Return type:
bool
- is_tfa_remove_security_key()
Check if the union tag is
tfa_remove_security_key.- Return type:
bool
- is_tfa_reset()
Check if the union tag is
tfa_reset.- Return type:
bool
- is_top_level_content_policy_changed()
Check if the union tag is
top_level_content_policy_changed.- Return type:
bool
- is_two_account_change_policy()
Check if the union tag is
two_account_change_policy.- Return type:
bool
- is_undo_naming_convention()
Check if the union tag is
undo_naming_convention.- Return type:
bool
- is_undo_organize_folder_with_tidy()
Check if the union tag is
undo_organize_folder_with_tidy.- Return type:
bool
- is_user_tags_added()
Check if the union tag is
user_tags_added.- Return type:
bool
- is_user_tags_removed()
Check if the union tag is
user_tags_removed.- Return type:
bool
- is_viewer_info_policy_changed()
Check if the union tag is
viewer_info_policy_changed.- Return type:
bool
- is_watermarking_policy_changed()
Check if the union tag is
watermarking_policy_changed.- Return type:
bool
- is_web_sessions_change_active_session_limit()
Check if the union tag is
web_sessions_change_active_session_limit.- Return type:
bool
- is_web_sessions_change_fixed_length_policy()
Check if the union tag is
web_sessions_change_fixed_length_policy.- Return type:
bool
- is_web_sessions_change_idle_length_policy()
Check if the union tag is
web_sessions_change_idle_length_policy.- Return type:
bool
- classmethod legal_holds_activate_a_hold(val)
Create an instance of this class set to the
legal_holds_activate_a_holdtag with valueval.- Parameters:
- Return type:
- classmethod legal_holds_add_members(val)
Create an instance of this class set to the
legal_holds_add_memberstag with valueval.- Parameters:
val (LegalHoldsAddMembersType)
- Return type:
- classmethod legal_holds_change_hold_details(val)
Create an instance of this class set to the
legal_holds_change_hold_detailstag with valueval.- Parameters:
- Return type:
- classmethod legal_holds_change_hold_name(val)
Create an instance of this class set to the
legal_holds_change_hold_nametag with valueval.- Parameters:
- Return type:
- classmethod legal_holds_export_a_hold(val)
Create an instance of this class set to the
legal_holds_export_a_holdtag with valueval.- Parameters:
- Return type:
- classmethod legal_holds_export_cancelled(val)
Create an instance of this class set to the
legal_holds_export_cancelledtag with valueval.- Parameters:
- Return type:
- classmethod legal_holds_export_downloaded(val)
Create an instance of this class set to the
legal_holds_export_downloadedtag with valueval.- Parameters:
- Return type:
- classmethod legal_holds_export_removed(val)
Create an instance of this class set to the
legal_holds_export_removedtag with valueval.- Parameters:
- Return type:
- classmethod legal_holds_release_a_hold(val)
Create an instance of this class set to the
legal_holds_release_a_holdtag with valueval.- Parameters:
- Return type:
- classmethod legal_holds_remove_members(val)
Create an instance of this class set to the
legal_holds_remove_memberstag with valueval.- Parameters:
- Return type:
- classmethod legal_holds_report_a_hold(val)
Create an instance of this class set to the
legal_holds_report_a_holdtag with valueval.- Parameters:
- Return type:
- classmethod login_fail(val)
Create an instance of this class set to the
login_failtag with valueval.- Parameters:
val (LoginFailType)
- Return type:
- classmethod login_success(val)
Create an instance of this class set to the
login_successtag with valueval.- Parameters:
val (LoginSuccessType)
- Return type:
- classmethod logout(val)
Create an instance of this class set to the
logouttag with valueval.- Parameters:
val (LogoutType)
- Return type:
- classmethod media_hub_adding_people_policy_changed(val)
Create an instance of this class set to the
media_hub_adding_people_policy_changedtag with valueval.- Parameters:
- Return type:
- classmethod media_hub_download_policy_changed(val)
Create an instance of this class set to the
media_hub_download_policy_changedtag with valueval.- Parameters:
- Return type:
- classmethod media_hub_file_downloaded(val)
Create an instance of this class set to the
media_hub_file_downloadedtag with valueval.- Parameters:
- Return type:
- classmethod media_hub_link_sharing_policy_changed(val)
Create an instance of this class set to the
media_hub_link_sharing_policy_changedtag with valueval.- Parameters:
- Return type:
- classmethod media_hub_project_team_add(val)
Create an instance of this class set to the
media_hub_project_team_addtag with valueval.- Parameters:
- Return type:
- classmethod media_hub_project_team_delete(val)
Create an instance of this class set to the
media_hub_project_team_deletetag with valueval.- Parameters:
- Return type:
- classmethod media_hub_project_team_role_changed(val)
Create an instance of this class set to the
media_hub_project_team_role_changedtag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
media_hub_shared_link_audience_changedtag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
media_hub_shared_link_createdtag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
media_hub_shared_link_download_setting_changedtag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
media_hub_shared_link_revokedtag with valueval.- Parameters:
- Return type:
- classmethod member_access_details_create_report(val)
Create an instance of this class set to the
member_access_details_create_reporttag with valueval.- Parameters:
- Return type:
- classmethod member_access_details_create_report_failed(val)
Create an instance of this class set to the
member_access_details_create_report_failedtag with valueval.- Parameters:
- Return type:
- classmethod member_add_external_id(val)
Create an instance of this class set to the
member_add_external_idtag with valueval.- Parameters:
val (MemberAddExternalIdType)
- Return type:
- classmethod member_add_name(val)
Create an instance of this class set to the
member_add_nametag with valueval.- Parameters:
val (MemberAddNameType)
- Return type:
- classmethod member_change_admin_role(val)
Create an instance of this class set to the
member_change_admin_roletag with valueval.- Parameters:
- Return type:
- classmethod member_change_email(val)
Create an instance of this class set to the
member_change_emailtag with valueval.- Parameters:
val (MemberChangeEmailType)
- Return type:
- classmethod member_change_external_id(val)
Create an instance of this class set to the
member_change_external_idtag with valueval.- Parameters:
- Return type:
- classmethod member_change_membership_type(val)
Create an instance of this class set to the
member_change_membership_typetag with valueval.- Parameters:
- Return type:
- classmethod member_change_name(val)
Create an instance of this class set to the
member_change_nametag with valueval.- Parameters:
val (MemberChangeNameType)
- Return type:
- classmethod member_change_reseller_role(val)
Create an instance of this class set to the
member_change_reseller_roletag with valueval.- Parameters:
- Return type:
- classmethod member_change_status(val)
Create an instance of this class set to the
member_change_statustag with valueval.- Parameters:
val (MemberChangeStatusType)
- Return type:
- classmethod member_delete_manual_contacts(val)
Create an instance of this class set to the
member_delete_manual_contactstag with valueval.- Parameters:
- Return type:
- classmethod member_delete_profile_photo(val)
Create an instance of this class set to the
member_delete_profile_phototag with valueval.- Parameters:
- Return type:
- classmethod member_permanently_delete_account_contents(val)
Create an instance of this class set to the
member_permanently_delete_account_contentstag with valueval.- Parameters:
- Return type:
- classmethod member_remove_external_id(val)
Create an instance of this class set to the
member_remove_external_idtag with valueval.- Parameters:
- Return type:
- classmethod member_requests_change_policy(val)
Create an instance of this class set to the
member_requests_change_policytag with valueval.- Parameters:
- Return type:
- classmethod member_send_invite_policy_changed(val)
Create an instance of this class set to the
member_send_invite_policy_changedtag with valueval.- Parameters:
- Return type:
- classmethod member_set_profile_photo(val)
Create an instance of this class set to the
member_set_profile_phototag with valueval.- Parameters:
- Return type:
- classmethod member_space_limits_add_custom_quota(val)
Create an instance of this class set to the
member_space_limits_add_custom_quotatag with valueval.- Parameters:
- Return type:
- classmethod member_space_limits_add_exception(val)
Create an instance of this class set to the
member_space_limits_add_exceptiontag with valueval.- Parameters:
- Return type:
- classmethod member_space_limits_change_caps_type_policy(val)
Create an instance of this class set to the
member_space_limits_change_caps_type_policytag with valueval.- Parameters:
- Return type:
- classmethod member_space_limits_change_custom_quota(val)
Create an instance of this class set to the
member_space_limits_change_custom_quotatag with valueval.- Parameters:
- Return type:
- classmethod member_space_limits_change_policy(val)
Create an instance of this class set to the
member_space_limits_change_policytag with valueval.- Parameters:
- Return type:
- classmethod member_space_limits_change_status(val)
Create an instance of this class set to the
member_space_limits_change_statustag with valueval.- Parameters:
- Return type:
- classmethod member_space_limits_remove_custom_quota(val)
Create an instance of this class set to the
member_space_limits_remove_custom_quotatag with valueval.- Parameters:
- Return type:
- classmethod member_space_limits_remove_exception(val)
Create an instance of this class set to the
member_space_limits_remove_exceptiontag with valueval.- Parameters:
- Return type:
- classmethod member_suggest(val)
Create an instance of this class set to the
member_suggesttag with valueval.- Parameters:
val (MemberSuggestType)
- Return type:
- classmethod member_suggestions_change_policy(val)
Create an instance of this class set to the
member_suggestions_change_policytag with valueval.- Parameters:
- Return type:
- classmethod member_transfer_account_contents(val)
Create an instance of this class set to the
member_transfer_account_contentstag with valueval.- Parameters:
- Return type:
- classmethod microsoft_login_change_policy(val)
Create an instance of this class set to the
microsoft_login_change_policytag with valueval.- Parameters:
- Return type:
- classmethod microsoft_office_addin_change_policy(val)
Create an instance of this class set to the
microsoft_office_addin_change_policytag with valueval.- Parameters:
- Return type:
- classmethod multi_team_identity_policy_changed(val)
Create an instance of this class set to the
multi_team_identity_policy_changedtag with valueval.- Parameters:
- Return type:
- classmethod network_control_change_policy(val)
Create an instance of this class set to the
network_control_change_policytag with valueval.- Parameters:
- Return type:
- classmethod no_expiration_link_gen_create_report(val)
Create an instance of this class set to the
no_expiration_link_gen_create_reporttag with valueval.- Parameters:
- Return type:
- classmethod no_expiration_link_gen_report_failed(val)
Create an instance of this class set to the
no_expiration_link_gen_report_failedtag with valueval.- Parameters:
- Return type:
- classmethod no_password_link_gen_create_report(val)
Create an instance of this class set to the
no_password_link_gen_create_reporttag with valueval.- Parameters:
- Return type:
- classmethod no_password_link_gen_report_failed(val)
Create an instance of this class set to the
no_password_link_gen_report_failedtag with valueval.- Parameters:
- Return type:
- classmethod no_password_link_view_create_report(val)
Create an instance of this class set to the
no_password_link_view_create_reporttag with valueval.- Parameters:
- Return type:
- classmethod no_password_link_view_report_failed(val)
Create an instance of this class set to the
no_password_link_view_report_failedtag with valueval.- Parameters:
- Return type:
- classmethod note_acl_invite_only(val)
Create an instance of this class set to the
note_acl_invite_onlytag with valueval.- Parameters:
val (NoteAclInviteOnlyType)
- Return type:
- classmethod note_acl_link(val)
Create an instance of this class set to the
note_acl_linktag with valueval.- Parameters:
val (NoteAclLinkType)
- Return type:
- classmethod note_acl_team_link(val)
Create an instance of this class set to the
note_acl_team_linktag with valueval.- Parameters:
val (NoteAclTeamLinkType)
- Return type:
Create an instance of this class set to the
note_share_receivetag with valueval.- Parameters:
val (NoteShareReceiveType)
- Return type:
Create an instance of this class set to the
note_sharedtag with valueval.- Parameters:
val (NoteSharedType)
- Return type:
- classmethod object_label_added(val)
Create an instance of this class set to the
object_label_addedtag with valueval.- Parameters:
val (ObjectLabelAddedType)
- Return type:
- classmethod object_label_removed(val)
Create an instance of this class set to the
object_label_removedtag with valueval.- Parameters:
val (ObjectLabelRemovedType)
- Return type:
- classmethod object_label_updated_value(val)
Create an instance of this class set to the
object_label_updated_valuetag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
open_note_sharedtag with valueval.- Parameters:
val (OpenNoteSharedType)
- Return type:
- classmethod organize_folder_with_tidy(val)
Create an instance of this class set to the
organize_folder_with_tidytag with valueval.- Parameters:
- Return type:
- other = EventType('other', None)
- classmethod outdated_link_view_create_report(val)
Create an instance of this class set to the
outdated_link_view_create_reporttag with valueval.- Parameters:
- Return type:
- classmethod outdated_link_view_report_failed(val)
Create an instance of this class set to the
outdated_link_view_report_failedtag with valueval.- Parameters:
- Return type:
- classmethod paper_admin_export_start(val)
Create an instance of this class set to the
paper_admin_export_starttag with valueval.- Parameters:
- Return type:
- classmethod paper_change_deployment_policy(val)
Create an instance of this class set to the
paper_change_deployment_policytag with valueval.- Parameters:
- Return type:
- classmethod paper_change_member_link_policy(val)
Create an instance of this class set to the
paper_change_member_link_policytag with valueval.- Parameters:
- Return type:
- classmethod paper_change_member_policy(val)
Create an instance of this class set to the
paper_change_member_policytag with valueval.- Parameters:
- Return type:
- classmethod paper_change_policy(val)
Create an instance of this class set to the
paper_change_policytag with valueval.- Parameters:
val (PaperChangePolicyType)
- Return type:
- classmethod paper_content_add_member(val)
Create an instance of this class set to the
paper_content_add_membertag with valueval.- Parameters:
- Return type:
- classmethod paper_content_add_to_folder(val)
Create an instance of this class set to the
paper_content_add_to_foldertag with valueval.- Parameters:
- Return type:
- classmethod paper_content_archive(val)
Create an instance of this class set to the
paper_content_archivetag with valueval.- Parameters:
val (PaperContentArchiveType)
- Return type:
- classmethod paper_content_create(val)
Create an instance of this class set to the
paper_content_createtag with valueval.- Parameters:
val (PaperContentCreateType)
- Return type:
- classmethod paper_content_permanently_delete(val)
Create an instance of this class set to the
paper_content_permanently_deletetag with valueval.- Parameters:
- Return type:
- classmethod paper_content_remove_from_folder(val)
Create an instance of this class set to the
paper_content_remove_from_foldertag with valueval.- Parameters:
- Return type:
- classmethod paper_content_remove_member(val)
Create an instance of this class set to the
paper_content_remove_membertag with valueval.- Parameters:
- Return type:
- classmethod paper_content_rename(val)
Create an instance of this class set to the
paper_content_renametag with valueval.- Parameters:
val (PaperContentRenameType)
- Return type:
- classmethod paper_content_restore(val)
Create an instance of this class set to the
paper_content_restoretag with valueval.- Parameters:
val (PaperContentRestoreType)
- Return type:
- classmethod paper_default_folder_policy_changed(val)
Create an instance of this class set to the
paper_default_folder_policy_changedtag with valueval.- Parameters:
- Return type:
- classmethod paper_desktop_policy_changed(val)
Create an instance of this class set to the
paper_desktop_policy_changedtag with valueval.- Parameters:
- Return type:
- classmethod paper_doc_add_comment(val)
Create an instance of this class set to the
paper_doc_add_commenttag with valueval.- Parameters:
val (PaperDocAddCommentType)
- Return type:
- classmethod paper_doc_change_member_role(val)
Create an instance of this class set to the
paper_doc_change_member_roletag with valueval.- Parameters:
- Return type:
- classmethod paper_doc_change_sharing_policy(val)
Create an instance of this class set to the
paper_doc_change_sharing_policytag with valueval.- Parameters:
- Return type:
- classmethod paper_doc_change_subscription(val)
Create an instance of this class set to the
paper_doc_change_subscriptiontag with valueval.- Parameters:
- Return type:
- classmethod paper_doc_delete_comment(val)
Create an instance of this class set to the
paper_doc_delete_commenttag with valueval.- Parameters:
- Return type:
- classmethod paper_doc_deleted(val)
Create an instance of this class set to the
paper_doc_deletedtag with valueval.- Parameters:
val (PaperDocDeletedType)
- Return type:
- classmethod paper_doc_download(val)
Create an instance of this class set to the
paper_doc_downloadtag with valueval.- Parameters:
val (PaperDocDownloadType)
- Return type:
- classmethod paper_doc_edit(val)
Create an instance of this class set to the
paper_doc_edittag with valueval.- Parameters:
val (PaperDocEditType)
- Return type:
- classmethod paper_doc_edit_comment(val)
Create an instance of this class set to the
paper_doc_edit_commenttag with valueval.- Parameters:
val (PaperDocEditCommentType)
- Return type:
- classmethod paper_doc_followed(val)
Create an instance of this class set to the
paper_doc_followedtag with valueval.- Parameters:
val (PaperDocFollowedType)
- Return type:
- classmethod paper_doc_mention(val)
Create an instance of this class set to the
paper_doc_mentiontag with valueval.- Parameters:
val (PaperDocMentionType)
- Return type:
- classmethod paper_doc_ownership_changed(val)
Create an instance of this class set to the
paper_doc_ownership_changedtag with valueval.- Parameters:
- Return type:
- classmethod paper_doc_request_access(val)
Create an instance of this class set to the
paper_doc_request_accesstag with valueval.- Parameters:
- Return type:
- classmethod paper_doc_resolve_comment(val)
Create an instance of this class set to the
paper_doc_resolve_commenttag with valueval.- Parameters:
- Return type:
- classmethod paper_doc_revert(val)
Create an instance of this class set to the
paper_doc_reverttag with valueval.- Parameters:
val (PaperDocRevertType)
- Return type:
Create an instance of this class set to the
paper_doc_slack_sharetag with valueval.- Parameters:
val (PaperDocSlackShareType)
- Return type:
- classmethod paper_doc_team_invite(val)
Create an instance of this class set to the
paper_doc_team_invitetag with valueval.- Parameters:
val (PaperDocTeamInviteType)
- Return type:
- classmethod paper_doc_trashed(val)
Create an instance of this class set to the
paper_doc_trashedtag with valueval.- Parameters:
val (PaperDocTrashedType)
- Return type:
- classmethod paper_doc_unresolve_comment(val)
Create an instance of this class set to the
paper_doc_unresolve_commenttag with valueval.- Parameters:
- Return type:
- classmethod paper_doc_untrashed(val)
Create an instance of this class set to the
paper_doc_untrashedtag with valueval.- Parameters:
val (PaperDocUntrashedType)
- Return type:
- classmethod paper_doc_view(val)
Create an instance of this class set to the
paper_doc_viewtag with valueval.- Parameters:
val (PaperDocViewType)
- Return type:
- classmethod paper_enabled_users_group_addition(val)
Create an instance of this class set to the
paper_enabled_users_group_additiontag with valueval.- Parameters:
- Return type:
- classmethod paper_enabled_users_group_removal(val)
Create an instance of this class set to the
paper_enabled_users_group_removaltag with valueval.- Parameters:
- Return type:
- classmethod paper_external_view_allow(val)
Create an instance of this class set to the
paper_external_view_allowtag with valueval.- Parameters:
- Return type:
- classmethod paper_external_view_default_team(val)
Create an instance of this class set to the
paper_external_view_default_teamtag with valueval.- Parameters:
- Return type:
- classmethod paper_external_view_forbid(val)
Create an instance of this class set to the
paper_external_view_forbidtag with valueval.- Parameters:
- Return type:
- classmethod paper_folder_change_subscription(val)
Create an instance of this class set to the
paper_folder_change_subscriptiontag with valueval.- Parameters:
- Return type:
- classmethod paper_folder_deleted(val)
Create an instance of this class set to the
paper_folder_deletedtag with valueval.- Parameters:
val (PaperFolderDeletedType)
- Return type:
- classmethod paper_folder_followed(val)
Create an instance of this class set to the
paper_folder_followedtag with valueval.- Parameters:
val (PaperFolderFollowedType)
- Return type:
- classmethod paper_folder_team_invite(val)
Create an instance of this class set to the
paper_folder_team_invitetag with valueval.- Parameters:
- Return type:
- classmethod paper_published_link_change_permission(val)
Create an instance of this class set to the
paper_published_link_change_permissiontag with valueval.- Parameters:
- Return type:
- classmethod paper_published_link_create(val)
Create an instance of this class set to the
paper_published_link_createtag with valueval.- Parameters:
- Return type:
- classmethod paper_published_link_disabled(val)
Create an instance of this class set to the
paper_published_link_disabledtag with valueval.- Parameters:
- Return type:
- classmethod paper_published_link_view(val)
Create an instance of this class set to the
paper_published_link_viewtag with valueval.- Parameters:
- Return type:
- classmethod passkey_add(val)
Create an instance of this class set to the
passkey_addtag with valueval.- Parameters:
val (PasskeyAddType)
- Return type:
- classmethod passkey_login_policy_changed(val)
Create an instance of this class set to the
passkey_login_policy_changedtag with valueval.- Parameters:
- Return type:
- classmethod passkey_remove(val)
Create an instance of this class set to the
passkey_removetag with valueval.- Parameters:
val (PasskeyRemoveType)
- Return type:
- classmethod password_change(val)
Create an instance of this class set to the
password_changetag with valueval.- Parameters:
val (PasswordChangeType)
- Return type:
- classmethod password_reset(val)
Create an instance of this class set to the
password_resettag with valueval.- Parameters:
val (PasswordResetType)
- Return type:
- classmethod password_reset_all(val)
Create an instance of this class set to the
password_reset_alltag with valueval.- Parameters:
val (PasswordResetAllType)
- Return type:
- classmethod password_strength_requirements_change_policy(val)
Create an instance of this class set to the
password_strength_requirements_change_policytag with valueval.- Parameters:
- Return type:
- classmethod pending_secondary_email_added(val)
Create an instance of this class set to the
pending_secondary_email_addedtag with valueval.- Parameters:
- Return type:
- classmethod permanent_delete_change_policy(val)
Create an instance of this class set to the
permanent_delete_change_policytag with valueval.- Parameters:
- Return type:
- classmethod previews_ai_policy_changed(val)
Create an instance of this class set to the
previews_ai_policy_changedtag with valueval.- Parameters:
- Return type:
- classmethod product_assigned_to_member(val)
Create an instance of this class set to the
product_assigned_to_membertag with valueval.- Parameters:
- Return type:
- classmethod product_removed_from_member(val)
Create an instance of this class set to the
product_removed_from_membertag with valueval.- Parameters:
- Return type:
- classmethod protect_internal_domains_changed(val)
Create an instance of this class set to the
protect_internal_domains_changedtag with valueval.- Parameters:
- Return type:
- classmethod ransomware_alert_create_report(val)
Create an instance of this class set to the
ransomware_alert_create_reporttag with valueval.- Parameters:
- Return type:
- classmethod ransomware_alert_create_report_failed(val)
Create an instance of this class set to the
ransomware_alert_create_report_failedtag with valueval.- Parameters:
- Return type:
- classmethod ransomware_restore_process_completed(val)
Create an instance of this class set to the
ransomware_restore_process_completedtag with valueval.- Parameters:
- Return type:
- classmethod ransomware_restore_process_started(val)
Create an instance of this class set to the
ransomware_restore_process_startedtag with valueval.- Parameters:
- Return type:
- classmethod replay_adding_people_policy_changed(val)
Create an instance of this class set to the
replay_adding_people_policy_changedtag with valueval.- Parameters:
- Return type:
- classmethod replay_file_delete(val)
Create an instance of this class set to the
replay_file_deletetag with valueval.- Parameters:
val (ReplayFileDeleteType)
- Return type:
- classmethod replay_file_downloaded(val)
Create an instance of this class set to the
replay_file_downloadedtag with valueval.- Parameters:
val (ReplayFileDownloadedType)
- Return type:
Create an instance of this class set to the
replay_file_shared_link_createdtag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
replay_file_shared_link_modifiedtag with valueval.- Parameters:
- Return type:
- classmethod replay_project_team_add(val)
Create an instance of this class set to the
replay_project_team_addtag with valueval.- Parameters:
val (ReplayProjectTeamAddType)
- Return type:
- classmethod replay_project_team_delete(val)
Create an instance of this class set to the
replay_project_team_deletetag with valueval.- Parameters:
- Return type:
- classmethod replay_sharing_policy_changed(val)
Create an instance of this class set to the
replay_sharing_policy_changedtag with valueval.- Parameters:
- Return type:
- classmethod replay_team_project_created(val)
Create an instance of this class set to the
replay_team_project_createdtag with valueval.- Parameters:
- Return type:
- classmethod reseller_support_change_policy(val)
Create an instance of this class set to the
reseller_support_change_policytag with valueval.- Parameters:
- Return type:
- classmethod reseller_support_session_end(val)
Create an instance of this class set to the
reseller_support_session_endtag with valueval.- Parameters:
- Return type:
- classmethod reseller_support_session_start(val)
Create an instance of this class set to the
reseller_support_session_starttag with valueval.- Parameters:
- Return type:
- classmethod rewind_folder(val)
Create an instance of this class set to the
rewind_foldertag with valueval.- Parameters:
val (RewindFolderType)
- Return type:
- classmethod rewind_policy_changed(val)
Create an instance of this class set to the
rewind_policy_changedtag with valueval.- Parameters:
val (RewindPolicyChangedType)
- Return type:
- classmethod risc_security_event(val)
Create an instance of this class set to the
risc_security_eventtag with valueval.- Parameters:
val (RiscSecurityEventType)
- Return type:
- classmethod secondary_email_deleted(val)
Create an instance of this class set to the
secondary_email_deletedtag with valueval.- Parameters:
- Return type:
- classmethod secondary_email_verified(val)
Create an instance of this class set to the
secondary_email_verifiedtag with valueval.- Parameters:
- Return type:
- classmethod secondary_mails_policy_changed(val)
Create an instance of this class set to the
secondary_mails_policy_changedtag with valueval.- Parameters:
- Return type:
- classmethod send_and_track_file_added(val)
Create an instance of this class set to the
send_and_track_file_addedtag with valueval.- Parameters:
- Return type:
- classmethod send_and_track_file_renamed(val)
Create an instance of this class set to the
send_and_track_file_renamedtag with valueval.- Parameters:
- Return type:
- classmethod send_and_track_file_updated(val)
Create an instance of this class set to the
send_and_track_file_updatedtag with valueval.- Parameters:
- Return type:
- classmethod send_and_track_link_created(val)
Create an instance of this class set to the
send_and_track_link_createdtag with valueval.- Parameters:
- Return type:
- classmethod send_and_track_link_deleted(val)
Create an instance of this class set to the
send_and_track_link_deletedtag with valueval.- Parameters:
- Return type:
- classmethod send_and_track_link_updated(val)
Create an instance of this class set to the
send_and_track_link_updatedtag with valueval.- Parameters:
- Return type:
- classmethod send_and_track_link_viewed(val)
Create an instance of this class set to the
send_and_track_link_viewedtag with valueval.- Parameters:
- Return type:
- classmethod send_and_track_policy_changed(val)
Create an instance of this class set to the
send_and_track_policy_changedtag with valueval.- Parameters:
- Return type:
- classmethod send_and_track_removed_file_and_associated_links(val)
Create an instance of this class set to the
send_and_track_removed_file_and_associated_linkstag with valueval.- Parameters:
- Return type:
- classmethod send_external_sharing_policy_changed(val)
Create an instance of this class set to the
send_external_sharing_policy_changedtag with valueval.- Parameters:
- Return type:
- classmethod send_for_signature_policy_changed(val)
Create an instance of this class set to the
send_for_signature_policy_changedtag with valueval.- Parameters:
- Return type:
- classmethod sf_add_group(val)
Create an instance of this class set to the
sf_add_grouptag with valueval.- Parameters:
val (SfAddGroupType)
- Return type:
Create an instance of this class set to the
sf_allow_non_members_to_view_shared_linkstag with valueval.- Parameters:
- Return type:
- classmethod sf_external_invite_warn(val)
Create an instance of this class set to the
sf_external_invite_warntag with valueval.- Parameters:
val (SfExternalInviteWarnType)
- Return type:
- classmethod sf_fb_invite(val)
Create an instance of this class set to the
sf_fb_invitetag with valueval.- Parameters:
val (SfFbInviteType)
- Return type:
- classmethod sf_fb_invite_change_role(val)
Create an instance of this class set to the
sf_fb_invite_change_roletag with valueval.- Parameters:
val (SfFbInviteChangeRoleType)
- Return type:
- classmethod sf_fb_uninvite(val)
Create an instance of this class set to the
sf_fb_uninvitetag with valueval.- Parameters:
val (SfFbUninviteType)
- Return type:
- classmethod sf_invite_group(val)
Create an instance of this class set to the
sf_invite_grouptag with valueval.- Parameters:
val (SfInviteGroupType)
- Return type:
- classmethod sf_team_grant_access(val)
Create an instance of this class set to the
sf_team_grant_accesstag with valueval.- Parameters:
val (SfTeamGrantAccessType)
- Return type:
- classmethod sf_team_invite(val)
Create an instance of this class set to the
sf_team_invitetag with valueval.- Parameters:
val (SfTeamInviteType)
- Return type:
- classmethod sf_team_invite_change_role(val)
Create an instance of this class set to the
sf_team_invite_change_roletag with valueval.- Parameters:
- Return type:
- classmethod sf_team_join(val)
Create an instance of this class set to the
sf_team_jointag with valueval.- Parameters:
val (SfTeamJoinType)
- Return type:
- classmethod sf_team_join_from_oob_link(val)
Create an instance of this class set to the
sf_team_join_from_oob_linktag with valueval.- Parameters:
- Return type:
- classmethod sf_team_uninvite(val)
Create an instance of this class set to the
sf_team_uninvitetag with valueval.- Parameters:
val (SfTeamUninviteType)
- Return type:
Create an instance of this class set to the
shared_content_add_inviteestag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_content_add_link_expirytag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_content_add_link_passwordtag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_content_add_membertag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_content_change_downloads_policytag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_content_change_invitee_roletag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_content_change_link_audiencetag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_content_change_link_expirytag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_content_change_link_passwordtag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_content_change_member_roletag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_content_change_viewer_info_policytag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_content_claim_invitationtag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_content_copytag with valueval.- Parameters:
val (SharedContentCopyType)
- Return type:
Create an instance of this class set to the
shared_content_downloadtag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_content_relinquish_membershiptag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_content_remove_inviteestag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_content_remove_link_expirytag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_content_remove_link_passwordtag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_content_remove_membertag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_content_request_accesstag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_content_restore_inviteestag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_content_restore_membertag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_content_unsharetag with valueval.- Parameters:
val (SharedContentUnshareType)
- Return type:
Create an instance of this class set to the
shared_content_viewtag with valueval.- Parameters:
val (SharedContentViewType)
- Return type:
Create an instance of this class set to the
shared_folder_change_link_policytag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_folder_change_members_inheritance_policytag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_folder_change_members_management_policytag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_folder_change_members_policytag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_folder_createtag with valueval.- Parameters:
val (SharedFolderCreateType)
- Return type:
Create an instance of this class set to the
shared_folder_decline_invitationtag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_folder_mounttag with valueval.- Parameters:
val (SharedFolderMountType)
- Return type:
Create an instance of this class set to the
shared_folder_nesttag with valueval.- Parameters:
val (SharedFolderNestType)
- Return type:
Create an instance of this class set to the
shared_folder_transfer_ownershiptag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_folder_unmounttag with valueval.- Parameters:
val (SharedFolderUnmountType)
- Return type:
Create an instance of this class set to the
shared_folders_create_reporttag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_folders_create_report_failedtag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_link_add_expirytag with valueval.- Parameters:
val (SharedLinkAddExpiryType)
- Return type:
Create an instance of this class set to the
shared_link_change_expirytag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_link_change_visibilitytag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_link_copytag with valueval.- Parameters:
val (SharedLinkCopyType)
- Return type:
Create an instance of this class set to the
shared_link_createtag with valueval.- Parameters:
val (SharedLinkCreateType)
- Return type:
Create an instance of this class set to the
shared_link_default_permissions_policy_changedtag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_link_disabletag with valueval.- Parameters:
val (SharedLinkDisableType)
- Return type:
Create an instance of this class set to the
shared_link_downloadtag with valueval.- Parameters:
val (SharedLinkDownloadType)
- Return type:
Create an instance of this class set to the
shared_link_remove_expirytag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_link_remove_visitortag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_link_settings_add_expirationtag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_link_settings_add_passwordtag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_link_settings_allow_download_disabledtag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_link_settings_allow_download_enabledtag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_link_settings_change_audiencetag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_link_settings_change_expirationtag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_link_settings_change_passwordtag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_link_settings_remove_expirationtag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_link_settings_remove_passwordtag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shared_link_sharetag with valueval.- Parameters:
val (SharedLinkShareType)
- Return type:
Create an instance of this class set to the
shared_link_viewtag with valueval.- Parameters:
val (SharedLinkViewType)
- Return type:
Create an instance of this class set to the
shared_note_openedtag with valueval.- Parameters:
val (SharedNoteOpenedType)
- Return type:
- classmethod sharing_change_folder_join_policy(val)
Create an instance of this class set to the
sharing_change_folder_join_policytag with valueval.- Parameters:
- Return type:
- classmethod sharing_change_link_allow_change_expiration_policy(val)
Create an instance of this class set to the
sharing_change_link_allow_change_expiration_policytag with valueval.- Parameters:
- Return type:
- classmethod sharing_change_link_default_expiration_policy(val)
Create an instance of this class set to the
sharing_change_link_default_expiration_policytag with valueval.- Parameters:
- Return type:
- classmethod sharing_change_link_enforce_password_policy(val)
Create an instance of this class set to the
sharing_change_link_enforce_password_policytag with valueval.- Parameters:
- Return type:
- classmethod sharing_change_link_policy(val)
Create an instance of this class set to the
sharing_change_link_policytag with valueval.- Parameters:
- Return type:
- classmethod sharing_change_member_policy(val)
Create an instance of this class set to the
sharing_change_member_policytag with valueval.- Parameters:
- Return type:
- classmethod shmodel_disable_downloads(val)
Create an instance of this class set to the
shmodel_disable_downloadstag with valueval.- Parameters:
- Return type:
- classmethod shmodel_enable_downloads(val)
Create an instance of this class set to the
shmodel_enable_downloadstag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
shmodel_group_sharetag with valueval.- Parameters:
val (ShmodelGroupShareType)
- Return type:
- classmethod showcase_access_granted(val)
Create an instance of this class set to the
showcase_access_grantedtag with valueval.- Parameters:
- Return type:
- classmethod showcase_add_member(val)
Create an instance of this class set to the
showcase_add_membertag with valueval.- Parameters:
val (ShowcaseAddMemberType)
- Return type:
- classmethod showcase_archived(val)
Create an instance of this class set to the
showcase_archivedtag with valueval.- Parameters:
val (ShowcaseArchivedType)
- Return type:
- classmethod showcase_change_download_policy(val)
Create an instance of this class set to the
showcase_change_download_policytag with valueval.- Parameters:
- Return type:
- classmethod showcase_change_enabled_policy(val)
Create an instance of this class set to the
showcase_change_enabled_policytag with valueval.- Parameters:
- Return type:
- classmethod showcase_change_external_sharing_policy(val)
Create an instance of this class set to the
showcase_change_external_sharing_policytag with valueval.- Parameters:
- Return type:
- classmethod showcase_created(val)
Create an instance of this class set to the
showcase_createdtag with valueval.- Parameters:
val (ShowcaseCreatedType)
- Return type:
- classmethod showcase_delete_comment(val)
Create an instance of this class set to the
showcase_delete_commenttag with valueval.- Parameters:
- Return type:
- classmethod showcase_edit_comment(val)
Create an instance of this class set to the
showcase_edit_commenttag with valueval.- Parameters:
val (ShowcaseEditCommentType)
- Return type:
- classmethod showcase_edited(val)
Create an instance of this class set to the
showcase_editedtag with valueval.- Parameters:
val (ShowcaseEditedType)
- Return type:
- classmethod showcase_file_added(val)
Create an instance of this class set to the
showcase_file_addedtag with valueval.- Parameters:
val (ShowcaseFileAddedType)
- Return type:
- classmethod showcase_file_download(val)
Create an instance of this class set to the
showcase_file_downloadtag with valueval.- Parameters:
val (ShowcaseFileDownloadType)
- Return type:
- classmethod showcase_file_removed(val)
Create an instance of this class set to the
showcase_file_removedtag with valueval.- Parameters:
val (ShowcaseFileRemovedType)
- Return type:
- classmethod showcase_file_view(val)
Create an instance of this class set to the
showcase_file_viewtag with valueval.- Parameters:
val (ShowcaseFileViewType)
- Return type:
- classmethod showcase_permanently_deleted(val)
Create an instance of this class set to the
showcase_permanently_deletedtag with valueval.- Parameters:
- Return type:
- classmethod showcase_post_comment(val)
Create an instance of this class set to the
showcase_post_commenttag with valueval.- Parameters:
val (ShowcasePostCommentType)
- Return type:
- classmethod showcase_remove_member(val)
Create an instance of this class set to the
showcase_remove_membertag with valueval.- Parameters:
val (ShowcaseRemoveMemberType)
- Return type:
- classmethod showcase_renamed(val)
Create an instance of this class set to the
showcase_renamedtag with valueval.- Parameters:
val (ShowcaseRenamedType)
- Return type:
- classmethod showcase_request_access(val)
Create an instance of this class set to the
showcase_request_accesstag with valueval.- Parameters:
- Return type:
- classmethod showcase_resolve_comment(val)
Create an instance of this class set to the
showcase_resolve_commenttag with valueval.- Parameters:
- Return type:
- classmethod showcase_restored(val)
Create an instance of this class set to the
showcase_restoredtag with valueval.- Parameters:
val (ShowcaseRestoredType)
- Return type:
- classmethod showcase_trashed(val)
Create an instance of this class set to the
showcase_trashedtag with valueval.- Parameters:
val (ShowcaseTrashedType)
- Return type:
- classmethod showcase_trashed_deprecated(val)
Create an instance of this class set to the
showcase_trashed_deprecatedtag with valueval.- Parameters:
- Return type:
- classmethod showcase_unresolve_comment(val)
Create an instance of this class set to the
showcase_unresolve_commenttag with valueval.- Parameters:
- Return type:
- classmethod showcase_untrashed(val)
Create an instance of this class set to the
showcase_untrashedtag with valueval.- Parameters:
val (ShowcaseUntrashedType)
- Return type:
- classmethod showcase_untrashed_deprecated(val)
Create an instance of this class set to the
showcase_untrashed_deprecatedtag with valueval.- Parameters:
- Return type:
- classmethod showcase_view(val)
Create an instance of this class set to the
showcase_viewtag with valueval.- Parameters:
val (ShowcaseViewType)
- Return type:
- classmethod sign_external_sharing_policy_changed(val)
Create an instance of this class set to the
sign_external_sharing_policy_changedtag with valueval.- Parameters:
- Return type:
- classmethod sign_in_as_session_end(val)
Create an instance of this class set to the
sign_in_as_session_endtag with valueval.- Parameters:
val (SignInAsSessionEndType)
- Return type:
- classmethod sign_in_as_session_start(val)
Create an instance of this class set to the
sign_in_as_session_starttag with valueval.- Parameters:
val (SignInAsSessionStartType)
- Return type:
- classmethod sign_signature_request_canceled(val)
Create an instance of this class set to the
sign_signature_request_canceledtag with valueval.- Parameters:
- Return type:
- classmethod sign_signature_request_completed(val)
Create an instance of this class set to the
sign_signature_request_completedtag with valueval.- Parameters:
- Return type:
- classmethod sign_signature_request_declined(val)
Create an instance of this class set to the
sign_signature_request_declinedtag with valueval.- Parameters:
- Return type:
- classmethod sign_signature_request_opened(val)
Create an instance of this class set to the
sign_signature_request_openedtag with valueval.- Parameters:
- Return type:
- classmethod sign_signature_request_reminder_sent(val)
Create an instance of this class set to the
sign_signature_request_reminder_senttag with valueval.- Parameters:
- Return type:
- classmethod sign_signature_request_sent(val)
Create an instance of this class set to the
sign_signature_request_senttag with valueval.- Parameters:
- Return type:
- classmethod sign_template_created(val)
Create an instance of this class set to the
sign_template_createdtag with valueval.- Parameters:
val (SignTemplateCreatedType)
- Return type:
- classmethod sign_template_creation_permission_changed(val)
Create an instance of this class set to the
sign_template_creation_permission_changedtag with valueval.- Parameters:
- Return type:
Create an instance of this class set to the
sign_template_sharedtag with valueval.- Parameters:
val (SignTemplateSharedType)
- Return type:
- classmethod smart_sync_change_policy(val)
Create an instance of this class set to the
smart_sync_change_policytag with valueval.- Parameters:
- Return type:
- classmethod smart_sync_create_admin_privilege_report(val)
Create an instance of this class set to the
smart_sync_create_admin_privilege_reporttag with valueval.- Parameters:
- Return type:
- classmethod smart_sync_not_opt_out(val)
Create an instance of this class set to the
smart_sync_not_opt_outtag with valueval.- Parameters:
val (SmartSyncNotOptOutType)
- Return type:
- classmethod smart_sync_opt_out(val)
Create an instance of this class set to the
smart_sync_opt_outtag with valueval.- Parameters:
val (SmartSyncOptOutType)
- Return type:
- classmethod smarter_smart_sync_policy_changed(val)
Create an instance of this class set to the
smarter_smart_sync_policy_changedtag with valueval.- Parameters:
- Return type:
- classmethod sso_add_cert(val)
Create an instance of this class set to the
sso_add_certtag with valueval.- Parameters:
val (SsoAddCertType)
- Return type:
- classmethod sso_add_login_url(val)
Create an instance of this class set to the
sso_add_login_urltag with valueval.- Parameters:
val (SsoAddLoginUrlType)
- Return type:
- classmethod sso_add_logout_url(val)
Create an instance of this class set to the
sso_add_logout_urltag with valueval.- Parameters:
val (SsoAddLogoutUrlType)
- Return type:
- classmethod sso_change_cert(val)
Create an instance of this class set to the
sso_change_certtag with valueval.- Parameters:
val (SsoChangeCertType)
- Return type:
- classmethod sso_change_login_url(val)
Create an instance of this class set to the
sso_change_login_urltag with valueval.- Parameters:
val (SsoChangeLoginUrlType)
- Return type:
- classmethod sso_change_logout_url(val)
Create an instance of this class set to the
sso_change_logout_urltag with valueval.- Parameters:
val (SsoChangeLogoutUrlType)
- Return type:
- classmethod sso_change_policy(val)
Create an instance of this class set to the
sso_change_policytag with valueval.- Parameters:
val (SsoChangePolicyType)
- Return type:
- classmethod sso_change_saml_identity_mode(val)
Create an instance of this class set to the
sso_change_saml_identity_modetag with valueval.- Parameters:
- Return type:
- classmethod sso_error(val)
Create an instance of this class set to the
sso_errortag with valueval.- Parameters:
val (SsoErrorType)
- Return type:
- classmethod sso_remove_cert(val)
Create an instance of this class set to the
sso_remove_certtag with valueval.- Parameters:
val (SsoRemoveCertType)
- Return type:
- classmethod sso_remove_login_url(val)
Create an instance of this class set to the
sso_remove_login_urltag with valueval.- Parameters:
val (SsoRemoveLoginUrlType)
- Return type:
- classmethod sso_remove_logout_url(val)
Create an instance of this class set to the
sso_remove_logout_urltag with valueval.- Parameters:
val (SsoRemoveLogoutUrlType)
- Return type:
- classmethod stack_cross_team_access_policy_changed(val)
Create an instance of this class set to the
stack_cross_team_access_policy_changedtag with valueval.- Parameters:
- Return type:
- classmethod started_enterprise_admin_session(val)
Create an instance of this class set to the
started_enterprise_admin_sessiontag with valueval.- Parameters:
- Return type:
- classmethod team_activity_create_report(val)
Create an instance of this class set to the
team_activity_create_reporttag with valueval.- Parameters:
- Return type:
- classmethod team_activity_create_report_fail(val)
Create an instance of this class set to the
team_activity_create_report_failtag with valueval.- Parameters:
- Return type:
- classmethod team_branding_policy_changed(val)
Create an instance of this class set to the
team_branding_policy_changedtag with valueval.- Parameters:
- Return type:
- classmethod team_encryption_key_activate_key(val)
Create an instance of this class set to the
team_encryption_key_activate_keytag with valueval.- Parameters:
- Return type:
- classmethod team_encryption_key_cancel_key_deletion(val)
Create an instance of this class set to the
team_encryption_key_cancel_key_deletiontag with valueval.- Parameters:
- Return type:
- classmethod team_encryption_key_create_key(val)
Create an instance of this class set to the
team_encryption_key_create_keytag with valueval.- Parameters:
- Return type:
- classmethod team_encryption_key_deactivate_key(val)
Create an instance of this class set to the
team_encryption_key_deactivate_keytag with valueval.- Parameters:
- Return type:
- classmethod team_encryption_key_delete_key(val)
Create an instance of this class set to the
team_encryption_key_delete_keytag with valueval.- Parameters:
- Return type:
- classmethod team_encryption_key_disable_key(val)
Create an instance of this class set to the
team_encryption_key_disable_keytag with valueval.- Parameters:
- Return type:
- classmethod team_encryption_key_enable_key(val)
Create an instance of this class set to the
team_encryption_key_enable_keytag with valueval.- Parameters:
- Return type:
- classmethod team_encryption_key_rotate_key(val)
Create an instance of this class set to the
team_encryption_key_rotate_keytag with valueval.- Parameters:
- Return type:
- classmethod team_encryption_key_schedule_key_deletion(val)
Create an instance of this class set to the
team_encryption_key_schedule_key_deletiontag with valueval.- Parameters:
- Return type:
- classmethod team_extensions_policy_changed(val)
Create an instance of this class set to the
team_extensions_policy_changedtag with valueval.- Parameters:
- Return type:
- classmethod team_folder_change_status(val)
Create an instance of this class set to the
team_folder_change_statustag with valueval.- Parameters:
- Return type:
- classmethod team_folder_create(val)
Create an instance of this class set to the
team_folder_createtag with valueval.- Parameters:
val (TeamFolderCreateType)
- Return type:
- classmethod team_folder_downgrade(val)
Create an instance of this class set to the
team_folder_downgradetag with valueval.- Parameters:
val (TeamFolderDowngradeType)
- Return type:
- classmethod team_folder_permanently_delete(val)
Create an instance of this class set to the
team_folder_permanently_deletetag with valueval.- Parameters:
- Return type:
- classmethod team_folder_rename(val)
Create an instance of this class set to the
team_folder_renametag with valueval.- Parameters:
val (TeamFolderRenameType)
- Return type:
- classmethod team_folder_space_limits_change_caps_type(val)
Create an instance of this class set to the
team_folder_space_limits_change_caps_typetag with valueval.- Parameters:
- Return type:
- classmethod team_folder_space_limits_change_limit(val)
Create an instance of this class set to the
team_folder_space_limits_change_limittag with valueval.- Parameters:
- Return type:
- classmethod team_folder_space_limits_change_notification_target(val)
Create an instance of this class set to the
team_folder_space_limits_change_notification_targettag with valueval.- Parameters:
- Return type:
- classmethod team_folders_create_report(val)
Create an instance of this class set to the
team_folders_create_reporttag with valueval.- Parameters:
- Return type:
- classmethod team_folders_create_report_failed(val)
Create an instance of this class set to the
team_folders_create_report_failedtag with valueval.- Parameters:
- Return type:
- classmethod team_member_storage_request_policy_changed(val)
Create an instance of this class set to the
team_member_storage_request_policy_changedtag with valueval.- Parameters:
- Return type:
- classmethod team_merge_from(val)
Create an instance of this class set to the
team_merge_fromtag with valueval.- Parameters:
val (TeamMergeFromType)
- Return type:
- classmethod team_merge_request_accepted(val)
Create an instance of this class set to the
team_merge_request_acceptedtag with valueval.- Parameters:
- Return type:
- classmethod team_merge_request_accepted_shown_to_primary_team(val)
Create an instance of this class set to the
team_merge_request_accepted_shown_to_primary_teamtag with valueval.- Parameters:
- Return type:
- classmethod team_merge_request_accepted_shown_to_secondary_team(val)
Create an instance of this class set to the
team_merge_request_accepted_shown_to_secondary_teamtag with valueval.- Parameters:
- Return type:
- classmethod team_merge_request_auto_canceled(val)
Create an instance of this class set to the
team_merge_request_auto_canceledtag with valueval.- Parameters:
- Return type:
- classmethod team_merge_request_canceled(val)
Create an instance of this class set to the
team_merge_request_canceledtag with valueval.- Parameters:
- Return type:
- classmethod team_merge_request_canceled_shown_to_primary_team(val)
Create an instance of this class set to the
team_merge_request_canceled_shown_to_primary_teamtag with valueval.- Parameters:
- Return type:
- classmethod team_merge_request_canceled_shown_to_secondary_team(val)
Create an instance of this class set to the
team_merge_request_canceled_shown_to_secondary_teamtag with valueval.- Parameters:
- Return type:
- classmethod team_merge_request_expired(val)
Create an instance of this class set to the
team_merge_request_expiredtag with valueval.- Parameters:
- Return type:
- classmethod team_merge_request_expired_shown_to_primary_team(val)
Create an instance of this class set to the
team_merge_request_expired_shown_to_primary_teamtag with valueval.- Parameters:
- Return type:
- classmethod team_merge_request_expired_shown_to_secondary_team(val)
Create an instance of this class set to the
team_merge_request_expired_shown_to_secondary_teamtag with valueval.- Parameters:
- Return type:
- classmethod team_merge_request_rejected_shown_to_primary_team(val)
Create an instance of this class set to the
team_merge_request_rejected_shown_to_primary_teamtag with valueval.- Parameters:
- Return type:
- classmethod team_merge_request_rejected_shown_to_secondary_team(val)
Create an instance of this class set to the
team_merge_request_rejected_shown_to_secondary_teamtag with valueval.- Parameters:
- Return type:
- classmethod team_merge_request_reminder(val)
Create an instance of this class set to the
team_merge_request_remindertag with valueval.- Parameters:
- Return type:
- classmethod team_merge_request_reminder_shown_to_primary_team(val)
Create an instance of this class set to the
team_merge_request_reminder_shown_to_primary_teamtag with valueval.- Parameters:
- Return type:
- classmethod team_merge_request_reminder_shown_to_secondary_team(val)
Create an instance of this class set to the
team_merge_request_reminder_shown_to_secondary_teamtag with valueval.- Parameters:
- Return type:
- classmethod team_merge_request_revoked(val)
Create an instance of this class set to the
team_merge_request_revokedtag with valueval.- Parameters:
- Return type:
- classmethod team_merge_request_sent_shown_to_primary_team(val)
Create an instance of this class set to the
team_merge_request_sent_shown_to_primary_teamtag with valueval.- Parameters:
- Return type:
- classmethod team_merge_request_sent_shown_to_secondary_team(val)
Create an instance of this class set to the
team_merge_request_sent_shown_to_secondary_teamtag with valueval.- Parameters:
- Return type:
- classmethod team_merge_to(val)
Create an instance of this class set to the
team_merge_totag with valueval.- Parameters:
val (TeamMergeToType)
- Return type:
- classmethod team_profile_add_background(val)
Create an instance of this class set to the
team_profile_add_backgroundtag with valueval.- Parameters:
- Return type:
- classmethod team_profile_add_logo(val)
Create an instance of this class set to the
team_profile_add_logotag with valueval.- Parameters:
val (TeamProfileAddLogoType)
- Return type:
- classmethod team_profile_change_background(val)
Create an instance of this class set to the
team_profile_change_backgroundtag with valueval.- Parameters:
- Return type:
- classmethod team_profile_change_default_language(val)
Create an instance of this class set to the
team_profile_change_default_languagetag with valueval.- Parameters:
- Return type:
- classmethod team_profile_change_logo(val)
Create an instance of this class set to the
team_profile_change_logotag with valueval.- Parameters:
- Return type:
- classmethod team_profile_change_name(val)
Create an instance of this class set to the
team_profile_change_nametag with valueval.- Parameters:
- Return type:
- classmethod team_profile_remove_background(val)
Create an instance of this class set to the
team_profile_remove_backgroundtag with valueval.- Parameters:
- Return type:
- classmethod team_profile_remove_logo(val)
Create an instance of this class set to the
team_profile_remove_logotag with valueval.- Parameters:
- Return type:
- classmethod team_selective_sync_policy_changed(val)
Create an instance of this class set to the
team_selective_sync_policy_changedtag with valueval.- Parameters:
- Return type:
- classmethod team_selective_sync_settings_changed(val)
Create an instance of this class set to the
team_selective_sync_settings_changedtag with valueval.- Parameters:
- Return type:
- classmethod team_sharing_whitelist_subjects_changed(val)
Create an instance of this class set to the
team_sharing_whitelist_subjects_changedtag with valueval.- Parameters:
- Return type:
- classmethod team_storage_create_report(val)
Create an instance of this class set to the
team_storage_create_reporttag with valueval.- Parameters:
- Return type:
- classmethod team_storage_create_report_failed(val)
Create an instance of this class set to the
team_storage_create_report_failedtag with valueval.- Parameters:
- Return type:
- classmethod tfa_add_backup_phone(val)
Create an instance of this class set to the
tfa_add_backup_phonetag with valueval.- Parameters:
val (TfaAddBackupPhoneType)
- Return type:
- classmethod tfa_add_exception(val)
Create an instance of this class set to the
tfa_add_exceptiontag with valueval.- Parameters:
val (TfaAddExceptionType)
- Return type:
- classmethod tfa_add_security_key(val)
Create an instance of this class set to the
tfa_add_security_keytag with valueval.- Parameters:
val (TfaAddSecurityKeyType)
- Return type:
- classmethod tfa_change_backup_phone(val)
Create an instance of this class set to the
tfa_change_backup_phonetag with valueval.- Parameters:
val (TfaChangeBackupPhoneType)
- Return type:
- classmethod tfa_change_policy(val)
Create an instance of this class set to the
tfa_change_policytag with valueval.- Parameters:
val (TfaChangePolicyType)
- Return type:
- classmethod tfa_change_status(val)
Create an instance of this class set to the
tfa_change_statustag with valueval.- Parameters:
val (TfaChangeStatusType)
- Return type:
- classmethod tfa_remove_backup_phone(val)
Create an instance of this class set to the
tfa_remove_backup_phonetag with valueval.- Parameters:
val (TfaRemoveBackupPhoneType)
- Return type:
- classmethod tfa_remove_exception(val)
Create an instance of this class set to the
tfa_remove_exceptiontag with valueval.- Parameters:
val (TfaRemoveExceptionType)
- Return type:
- classmethod tfa_remove_security_key(val)
Create an instance of this class set to the
tfa_remove_security_keytag with valueval.- Parameters:
val (TfaRemoveSecurityKeyType)
- Return type:
- classmethod tfa_reset(val)
Create an instance of this class set to the
tfa_resettag with valueval.- Parameters:
val (TfaResetType)
- Return type:
- classmethod top_level_content_policy_changed(val)
Create an instance of this class set to the
top_level_content_policy_changedtag with valueval.- Parameters:
- Return type:
- classmethod two_account_change_policy(val)
Create an instance of this class set to the
two_account_change_policytag with valueval.- Parameters:
- Return type:
- classmethod undo_naming_convention(val)
Create an instance of this class set to the
undo_naming_conventiontag with valueval.- Parameters:
val (UndoNamingConventionType)
- Return type:
- classmethod undo_organize_folder_with_tidy(val)
Create an instance of this class set to the
undo_organize_folder_with_tidytag with valueval.- Parameters:
- Return type:
- classmethod user_tags_added(val)
Create an instance of this class set to the
user_tags_addedtag with valueval.- Parameters:
val (UserTagsAddedType)
- Return type:
- classmethod user_tags_removed(val)
Create an instance of this class set to the
user_tags_removedtag with valueval.- Parameters:
val (UserTagsRemovedType)
- Return type:
- classmethod viewer_info_policy_changed(val)
Create an instance of this class set to the
viewer_info_policy_changedtag with valueval.- Parameters:
- Return type:
- classmethod watermarking_policy_changed(val)
Create an instance of this class set to the
watermarking_policy_changedtag with valueval.- Parameters:
- Return type:
- classmethod web_sessions_change_active_session_limit(val)
Create an instance of this class set to the
web_sessions_change_active_session_limittag with valueval.- Parameters:
- Return type:
- classmethod web_sessions_change_fixed_length_policy(val)
Create an instance of this class set to the
web_sessions_change_fixed_length_policytag with valueval.- Parameters:
- Return type:
- classmethod web_sessions_change_idle_length_policy(val)
Create an instance of this class set to the
web_sessions_change_idle_length_policytag with valueval.- Parameters:
- Return type:
- class dropbox.team_log.EventTypeArg(tag, value=None)
Bases:
UnionThe type of the event.
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:
EventTypeArg.admin_alerting_alert_state_changed – (admin_alerting) Changed an alert state
EventTypeArg.admin_alerting_changed_alert_config – (admin_alerting) Changed an alert setting
EventTypeArg.admin_alerting_triggered_alert – (admin_alerting) Triggered security alert
EventTypeArg.ransomware_restore_process_completed – (admin_alerting) Completed ransomware restore process
EventTypeArg.ransomware_restore_process_started – (admin_alerting) Started ransomware restore process
EventTypeArg.app_blocked_by_permissions – (apps) Failed to connect app for member
EventTypeArg.app_link_team – (apps) Linked app for team
EventTypeArg.app_link_user – (apps) Linked app for member
EventTypeArg.app_unlink_team – (apps) Unlinked app for team
EventTypeArg.app_unlink_user – (apps) Unlinked app for member
EventTypeArg.integration_connected – (apps) Connected integration for member
EventTypeArg.integration_disconnected – (apps) Disconnected integration for member
EventTypeArg.file_add_comment – (comments) Added file comment
EventTypeArg.file_change_comment_subscription – (comments) Subscribed to or unsubscribed from comment notifications for file
EventTypeArg.file_delete_comment – (comments) Deleted file comment
EventTypeArg.file_edit_comment – (comments) Edited file comment
EventTypeArg.file_like_comment – (comments) Liked file comment (deprecated, no longer logged)
EventTypeArg.file_resolve_comment – (comments) Resolved file comment
EventTypeArg.file_unlike_comment – (comments) Unliked file comment (deprecated, no longer logged)
EventTypeArg.file_unresolve_comment – (comments) Unresolved file comment
EventTypeArg.dash_added_comment_to_stack – (dash) Added a comment to a stack
EventTypeArg.dash_added_connector – (dash) Connected to a user connector
EventTypeArg.dash_added_link_to_stack – (dash) Added a link to a stack
EventTypeArg.dash_added_team_email_domain_allowlist – (dash) Admin added an email domain to the team allowlist
EventTypeArg.dash_admin_added_org_wide_connector – (dash) Admin added an admin connector
EventTypeArg.dash_admin_disabled_connector – (dash) Admin disabled a user connector
EventTypeArg.dash_admin_enabled_connector – (dash) Admin enabled a user connector
EventTypeArg.dash_admin_removed_org_wide_connector – (dash) Admin removed an admin connector
EventTypeArg.dash_archived_stack – (dash) Archived a stack
EventTypeArg.dash_changed_audience_of_shared_link_to_stack – (dash) Changed the audience of a shared link to a stack
EventTypeArg.dash_cloned_stack – (dash) Cloned stack
EventTypeArg.dash_connector_tools_call – (dash) Called a tool on a connector
EventTypeArg.dash_created_stack – (dash) Created a stack
EventTypeArg.dash_deleted_comment_from_stack – (dash) Deleted a comment from a stack
EventTypeArg.dash_deleted_stack – (dash) Deleted a stack
EventTypeArg.dash_edited_comment_in_stack – (dash) Edited a comment in a stack
EventTypeArg.dash_external_user_opened_stack – (dash) External user opened a stack
EventTypeArg.dash_first_launched_desktop – (dash) Opened the desktop app for the first time
EventTypeArg.dash_first_launched_extension – (dash) Opened the extension for the first time
EventTypeArg.dash_first_launched_web_start_page – (dash) Opened the web Start Page for the first time
EventTypeArg.dash_opened_shared_link_to_stack – (dash) Checked access permissions to a stack
EventTypeArg.dash_opened_stack – (dash) Opened a stack
EventTypeArg.dash_preview_opt_out_status_changed – (dash) Changed the preview opt-out status
EventTypeArg.dash_removed_connector – (dash) Disconnected a user connector
EventTypeArg.dash_removed_link_from_stack – (dash) Removed a link from a stack
EventTypeArg.dash_removed_shared_link_to_stack – (dash) Removed a shared link to a stack
EventTypeArg.dash_removed_team_email_domain_allowlist – (dash) Admin removed an email domain from the team allowlist
EventTypeArg.dash_renamed_stack – (dash) Renamed a stack
EventTypeArg.dash_shared_link_to_stack – (dash) Shared a link to a stack
EventTypeArg.dash_unarchived_stack – (dash) Unarchived a stack
EventTypeArg.dash_viewed_company_stack – (dash) Member viewed a company stack
EventTypeArg.dash_viewed_external_ai_activity_report – (dash) Admin viewed the external AI activity report
EventTypeArg.governance_policy_add_folders – (data_governance) Added folders to policy
EventTypeArg.governance_policy_add_folder_failed – (data_governance) Couldn’t add a folder to a policy
EventTypeArg.governance_policy_content_disposed – (data_governance) Content disposed
EventTypeArg.governance_policy_create – (data_governance) Activated a new policy
EventTypeArg.governance_policy_delete – (data_governance) Deleted a policy
EventTypeArg.governance_policy_edit_details – (data_governance) Edited policy
EventTypeArg.governance_policy_edit_duration – (data_governance) Changed policy duration
EventTypeArg.governance_policy_export_created – (data_governance) Created a policy download
EventTypeArg.governance_policy_export_removed – (data_governance) Removed a policy download
EventTypeArg.governance_policy_remove_folders – (data_governance) Removed folders from policy
EventTypeArg.governance_policy_report_created – (data_governance) Created a summary report for a policy
EventTypeArg.governance_policy_zip_part_downloaded – (data_governance) Downloaded content from a policy
EventTypeArg.legal_holds_activate_a_hold – (data_governance) Activated a hold
EventTypeArg.legal_holds_add_members – (data_governance) Added members to a hold
EventTypeArg.legal_holds_change_hold_details – (data_governance) Edited details for a hold
EventTypeArg.legal_holds_change_hold_name – (data_governance) Renamed a hold
EventTypeArg.legal_holds_export_a_hold – (data_governance) Exported hold
EventTypeArg.legal_holds_export_cancelled – (data_governance) Canceled export for a hold
EventTypeArg.legal_holds_export_downloaded – (data_governance) Downloaded export for a hold
EventTypeArg.legal_holds_export_removed – (data_governance) Removed export for a hold
EventTypeArg.legal_holds_release_a_hold – (data_governance) Released a hold
EventTypeArg.legal_holds_remove_members – (data_governance) Removed members from a hold
EventTypeArg.legal_holds_report_a_hold – (data_governance) Created a summary report for a hold
EventTypeArg.device_change_ip_desktop – (devices) Changed IP address associated with active desktop session
EventTypeArg.device_change_ip_mobile – (devices) Changed IP address associated with active mobile session
EventTypeArg.device_change_ip_web – (devices) Changed IP address associated with active web session
EventTypeArg.device_delete_on_unlink_fail – (devices) Failed to delete all files from unlinked device
EventTypeArg.device_delete_on_unlink_success – (devices) Deleted all files from unlinked device
EventTypeArg.device_link_fail – (devices) Failed to link device
EventTypeArg.device_link_success – (devices) Linked device
EventTypeArg.device_management_disabled – (devices) Disabled device management (deprecated, no longer logged)
EventTypeArg.device_management_enabled – (devices) Enabled device management (deprecated, no longer logged)
EventTypeArg.device_sync_backup_status_changed – (devices) Enabled/disabled backup for computer
EventTypeArg.device_unlink – (devices) Disconnected device
EventTypeArg.dropbox_passwords_exported – (devices) Exported passwords
EventTypeArg.dropbox_passwords_new_device_enrolled – (devices) Enrolled new Dropbox Passwords device
EventTypeArg.emm_refresh_auth_token – (devices) Refreshed auth token used for setting up EMM
EventTypeArg.external_drive_backup_eligibility_status_checked – (devices) Checked external drive backup eligibility status
EventTypeArg.external_drive_backup_status_changed – (devices) Modified external drive backup
EventTypeArg.account_capture_change_availability – (domains) Granted/revoked option to enable account capture on team domains
EventTypeArg.account_capture_migrate_account – (domains) Account-captured user migrated account to team
EventTypeArg.account_capture_notification_emails_sent – (domains) Sent account capture email to all unmanaged members
EventTypeArg.account_capture_relinquish_account – (domains) Account-captured user changed account email to personal email
EventTypeArg.disabled_domain_invites – (domains) Disabled domain invites (deprecated, no longer logged)
EventTypeArg.domain_invites_approve_request_to_join_team – (domains) Approved user’s request to join team
EventTypeArg.domain_invites_decline_request_to_join_team – (domains) Declined user’s request to join team
EventTypeArg.domain_invites_email_existing_users – (domains) Sent domain invites to existing domain accounts (deprecated, no longer logged)
EventTypeArg.domain_invites_request_to_join_team – (domains) Requested to join team
EventTypeArg.domain_invites_set_invite_new_user_pref_to_no – (domains) Disabled “Automatically invite new users” (deprecated, no longer logged)
EventTypeArg.domain_invites_set_invite_new_user_pref_to_yes – (domains) Enabled “Automatically invite new users” (deprecated, no longer logged)
EventTypeArg.domain_verification_add_domain_fail – (domains) Failed to verify team domain
EventTypeArg.domain_verification_add_domain_success – (domains) Verified team domain
EventTypeArg.domain_verification_remove_domain – (domains) Removed domain from list of verified team domains
EventTypeArg.enabled_domain_invites – (domains) Enabled domain invites (deprecated, no longer logged)
EventTypeArg.encrypted_folder_cancel_team_key_rotation – (encryption) Canceled team key rotation
EventTypeArg.encrypted_folder_enroll_backup_key – (encryption) Added recovery key
EventTypeArg.encrypted_folder_enroll_client – (encryption) Enrolled device
EventTypeArg.encrypted_folder_enroll_team – (encryption) Activated team folder encryption
EventTypeArg.encrypted_folder_finish_team_unenrollment – (encryption) Deactivated team folder encryption
EventTypeArg.encrypted_folder_init_team_key_rotation – (encryption) Initiated team key rotation
EventTypeArg.encrypted_folder_init_team_unenrollment – (encryption) Initiated deactivation of team folder encryption
EventTypeArg.encrypted_folder_remove_backup_key – (encryption) Removed recovery key
EventTypeArg.encrypted_folder_rotate_team_key – (encryption) Rotated team key
EventTypeArg.encrypted_folder_unenroll_client – (encryption) Unenrolled device
EventTypeArg.team_encryption_key_activate_key – (encryption) Activated team encryption key
EventTypeArg.team_encryption_key_cancel_key_deletion – (encryption) Canceled team encryption key deletion
EventTypeArg.team_encryption_key_create_key – (encryption) Created team encryption key
EventTypeArg.team_encryption_key_deactivate_key – (encryption) Deactivated team encryption key
EventTypeArg.team_encryption_key_delete_key – (encryption) Deleted team encryption key
EventTypeArg.team_encryption_key_disable_key – (encryption) Disabled team encryption key
EventTypeArg.team_encryption_key_enable_key – (encryption) Enabled team encryption key
EventTypeArg.team_encryption_key_rotate_key – (encryption) Rotated team encryption key (deprecated, no longer logged)
EventTypeArg.team_encryption_key_schedule_key_deletion – (encryption) Scheduled encryption key deletion
EventTypeArg.apply_naming_convention – (file_operations) Applied naming convention
EventTypeArg.create_folder – (file_operations) Created folders (deprecated, no longer logged)
EventTypeArg.file_add – (file_operations) Added files and/or folders
EventTypeArg.file_add_from_automation – (file_operations) Added files and/or folders from automation
EventTypeArg.file_copy – (file_operations) Copied files and/or folders
EventTypeArg.file_delete – (file_operations) Deleted files and/or folders
EventTypeArg.file_download – (file_operations) Downloaded files and/or folders
EventTypeArg.file_edit – (file_operations) Edited files
EventTypeArg.file_get_copy_reference – (file_operations) Created copy reference to file/folder
EventTypeArg.file_locking_lock_status_changed – (file_operations) Locked/unlocked editing for a file
EventTypeArg.file_move – (file_operations) Moved files and/or folders
EventTypeArg.file_permanently_delete – (file_operations) Permanently deleted files and/or folders
EventTypeArg.file_preview – (file_operations) Previewed files and/or folders
EventTypeArg.file_rename – (file_operations) Renamed files and/or folders
EventTypeArg.file_restore – (file_operations) Restored deleted files and/or folders
EventTypeArg.file_revert – (file_operations) Reverted files to previous version
EventTypeArg.file_rollback_changes – (file_operations) Rolled back file actions
EventTypeArg.file_save_copy_reference – (file_operations) Saved file/folder using copy reference
EventTypeArg.folder_overview_description_changed – (file_operations) Updated folder overview
EventTypeArg.folder_overview_item_pinned – (file_operations) Pinned item to folder overview
EventTypeArg.folder_overview_item_unpinned – (file_operations) Unpinned item from folder overview
EventTypeArg.media_hub_file_downloaded – (file_operations) Downloaded files in Media Hub
EventTypeArg.object_label_added – (file_operations) Added a label
EventTypeArg.object_label_removed – (file_operations) Removed a label
EventTypeArg.object_label_updated_value – (file_operations) Updated a label’s value
EventTypeArg.organize_folder_with_tidy – (file_operations) Organized a folder with multi-file organize
EventTypeArg.replay_file_delete – (file_operations) Deleted files in Replay
EventTypeArg.replay_file_downloaded – (file_operations) Downloaded files in Replay
EventTypeArg.replay_team_project_created – (file_operations) Created a team project in Replay
EventTypeArg.rewind_folder – (file_operations) Rewound a folder
EventTypeArg.undo_naming_convention – (file_operations) Reverted naming convention
EventTypeArg.undo_organize_folder_with_tidy – (file_operations) Removed multi-file organize
EventTypeArg.user_tags_added – (file_operations) Tagged a file
EventTypeArg.user_tags_removed – (file_operations) Removed tags
EventTypeArg.email_ingest_receive_file – (file_requests) Received files via Email to Dropbox
EventTypeArg.file_request_auto_close – (file_requests) Auto closed file request
EventTypeArg.file_request_change – (file_requests) Changed file request
EventTypeArg.file_request_close – (file_requests) Closed file request
EventTypeArg.file_request_create – (file_requests) Created file request
EventTypeArg.file_request_delete – (file_requests) Delete file request
EventTypeArg.file_request_receive_file – (file_requests) Received files for file request
EventTypeArg.group_add_external_id – (groups) Added external ID for group
EventTypeArg.group_add_member – (groups) Added team members to group
EventTypeArg.group_change_external_id – (groups) Changed external ID for group
EventTypeArg.group_change_management_type – (groups) Changed group management type
EventTypeArg.group_change_member_role – (groups) Changed manager permissions of group member
EventTypeArg.group_create – (groups) Created group
EventTypeArg.group_delete – (groups) Deleted group
EventTypeArg.group_description_updated – (groups) Updated group (deprecated, no longer logged)
EventTypeArg.group_external_sharing_setting_override_changed – (groups) Changed group’s external sharing setting
EventTypeArg.group_join_policy_updated – (groups) Updated group join policy (deprecated, no longer logged)
EventTypeArg.group_moved – (groups) Moved group (deprecated, no longer logged)
EventTypeArg.group_remove_external_id – (groups) Removed external ID for group
EventTypeArg.group_remove_member – (groups) Removed team members from group
EventTypeArg.group_rename – (groups) Renamed group
EventTypeArg.account_lock_or_unlocked – (logins) Unlocked/locked account after failed sign in attempts
EventTypeArg.emm_error – (logins) Failed to sign in via EMM (deprecated, replaced by ‘Failed to sign in’)
EventTypeArg.guest_admin_signed_in_via_trusted_teams – (logins) Started trusted team admin session
EventTypeArg.guest_admin_signed_out_via_trusted_teams – (logins) Ended trusted team admin session
EventTypeArg.login_fail – (logins) Failed to sign in
EventTypeArg.login_success – (logins) Signed in
EventTypeArg.logout – (logins) Signed out
EventTypeArg.reseller_support_session_end – (logins) Ended reseller support session
EventTypeArg.reseller_support_session_start – (logins) Started reseller support session
EventTypeArg.sign_in_as_session_end – (logins) Ended admin sign-in-as session
EventTypeArg.sign_in_as_session_start – (logins) Started admin sign-in-as session
EventTypeArg.sso_error – (logins) Failed to sign in via SSO (deprecated, replaced by ‘Failed to sign in’)
EventTypeArg.addon_assigned – (members) Add-on Assigned
EventTypeArg.addon_removed – (members) Add-on Removed
EventTypeArg.backup_admin_invitation_sent – (members) Invited members to activate Backup
EventTypeArg.backup_invitation_opened – (members) Opened Backup invite
EventTypeArg.create_team_invite_link – (members) Created team invite link
EventTypeArg.delete_team_invite_link – (members) Deleted team invite link
EventTypeArg.member_add_external_id – (members) Added an external ID for team member
EventTypeArg.member_add_name – (members) Added team member name
EventTypeArg.member_change_admin_role – (members) Changed team member admin role
EventTypeArg.member_change_email – (members) Changed team member email
EventTypeArg.member_change_external_id – (members) Changed the external ID for team member
EventTypeArg.member_change_membership_type – (members) Changed membership type (limited/full) of member (deprecated, no longer logged)
EventTypeArg.member_change_name – (members) Changed team member name
EventTypeArg.member_change_reseller_role – (members) Changed team member reseller role
EventTypeArg.member_change_status – (members) Changed member status (invited, joined, suspended, etc.)
EventTypeArg.member_delete_manual_contacts – (members) Cleared manually added contacts
EventTypeArg.member_delete_profile_photo – (members) Deleted team member profile photo
EventTypeArg.member_permanently_delete_account_contents – (members) Permanently deleted contents of deleted team member account
EventTypeArg.member_remove_external_id – (members) Removed the external ID for team member
EventTypeArg.member_set_profile_photo – (members) Set team member profile photo
EventTypeArg.member_space_limits_add_custom_quota – (members) Set custom member space limit
EventTypeArg.member_space_limits_change_custom_quota – (members) Changed custom member space limit
EventTypeArg.member_space_limits_change_status – (members) Changed space limit status
EventTypeArg.member_space_limits_remove_custom_quota – (members) Removed custom member space limit
EventTypeArg.member_suggest – (members) Suggested person to add to team
EventTypeArg.member_transfer_account_contents – (members) Transferred contents of deleted member account to another member
EventTypeArg.pending_secondary_email_added – (members) Added pending secondary email
EventTypeArg.product_assigned_to_member – (members) Product assigned to team member
EventTypeArg.product_removed_from_member – (members) Product removed from team member
EventTypeArg.secondary_email_deleted – (members) Deleted secondary email
EventTypeArg.secondary_email_verified – (members) Verified secondary email
EventTypeArg.secondary_mails_policy_changed – (members) Secondary mails policy changed
EventTypeArg.binder_add_page – (paper) Added Binder page (deprecated, replaced by ‘Edited files’)
EventTypeArg.binder_add_section – (paper) Added Binder section (deprecated, replaced by ‘Edited files’)
EventTypeArg.binder_remove_page – (paper) Removed Binder page (deprecated, replaced by ‘Edited files’)
EventTypeArg.binder_remove_section – (paper) Removed Binder section (deprecated, replaced by ‘Edited files’)
EventTypeArg.binder_rename_page – (paper) Renamed Binder page (deprecated, replaced by ‘Edited files’)
EventTypeArg.binder_rename_section – (paper) Renamed Binder section (deprecated, replaced by ‘Edited files’)
EventTypeArg.binder_reorder_page – (paper) Reordered Binder page (deprecated, replaced by ‘Edited files’)
EventTypeArg.binder_reorder_section – (paper) Reordered Binder section (deprecated, replaced by ‘Edited files’)
EventTypeArg.paper_content_add_member – (paper) Added users and/or groups to Paper doc/folder
EventTypeArg.paper_content_add_to_folder – (paper) Added Paper doc/folder to folder
EventTypeArg.paper_content_archive – (paper) Archived Paper doc/folder
EventTypeArg.paper_content_create – (paper) Created Paper doc/folder
EventTypeArg.paper_content_permanently_delete – (paper) Permanently deleted Paper doc/folder
EventTypeArg.paper_content_remove_from_folder – (paper) Removed Paper doc/folder from folder
EventTypeArg.paper_content_remove_member – (paper) Removed users and/or groups from Paper doc/folder
EventTypeArg.paper_content_rename – (paper) Renamed Paper doc/folder
EventTypeArg.paper_content_restore – (paper) Restored archived Paper doc/folder
EventTypeArg.paper_doc_add_comment – (paper) Added Paper doc comment
EventTypeArg.paper_doc_change_member_role – (paper) Changed member permissions for Paper doc
EventTypeArg.paper_doc_change_sharing_policy – (paper) Changed sharing setting for Paper doc
EventTypeArg.paper_doc_change_subscription – (paper) Followed/unfollowed Paper doc
EventTypeArg.paper_doc_deleted – (paper) Archived Paper doc (deprecated, no longer logged)
EventTypeArg.paper_doc_delete_comment – (paper) Deleted Paper doc comment
EventTypeArg.paper_doc_download – (paper) Downloaded Paper doc in specific format
EventTypeArg.paper_doc_edit – (paper) Edited Paper doc
EventTypeArg.paper_doc_edit_comment – (paper) Edited Paper doc comment
EventTypeArg.paper_doc_followed – (paper) Followed Paper doc (deprecated, replaced by ‘Followed/unfollowed Paper doc’)
EventTypeArg.paper_doc_mention – (paper) Mentioned user in Paper doc
EventTypeArg.paper_doc_ownership_changed – (paper) Transferred ownership of Paper doc
EventTypeArg.paper_doc_request_access – (paper) Requested access to Paper doc
EventTypeArg.paper_doc_resolve_comment – (paper) Resolved Paper doc comment
EventTypeArg.paper_doc_revert – (paper) Restored Paper doc to previous version
EventTypeArg.paper_doc_slack_share – (paper) Shared Paper doc via Slack
EventTypeArg.paper_doc_team_invite – (paper) Shared Paper doc with users and/or groups (deprecated, no longer logged)
EventTypeArg.paper_doc_trashed – (paper) Deleted Paper doc
EventTypeArg.paper_doc_unresolve_comment – (paper) Unresolved Paper doc comment
EventTypeArg.paper_doc_untrashed – (paper) Restored Paper doc
EventTypeArg.paper_doc_view – (paper) Viewed Paper doc
EventTypeArg.paper_external_view_allow – (paper) Changed Paper external sharing setting to anyone (deprecated, no longer logged)
EventTypeArg.paper_external_view_default_team – (paper) Changed Paper external sharing setting to default team (deprecated, no longer logged)
EventTypeArg.paper_external_view_forbid – (paper) Changed Paper external sharing setting to team-only (deprecated, no longer logged)
EventTypeArg.paper_folder_change_subscription – (paper) Followed/unfollowed Paper folder
EventTypeArg.paper_folder_deleted – (paper) Archived Paper folder (deprecated, no longer logged)
EventTypeArg.paper_folder_followed – (paper) Followed Paper folder (deprecated, replaced by ‘Followed/unfollowed Paper folder’)
EventTypeArg.paper_folder_team_invite – (paper) Shared Paper folder with users and/or groups (deprecated, no longer logged)
EventTypeArg.paper_published_link_change_permission – (paper) Changed permissions for published doc
EventTypeArg.paper_published_link_create – (paper) Published doc
EventTypeArg.paper_published_link_disabled – (paper) Unpublished doc
EventTypeArg.paper_published_link_view – (paper) Viewed published doc
EventTypeArg.password_change – (passwords) Changed password
EventTypeArg.password_reset – (passwords) Reset password
EventTypeArg.password_reset_all – (passwords) Reset all team member passwords
EventTypeArg.protect_internal_domains_changed – (protect) Modified Protect internal domains list
EventTypeArg.classification_create_report – (reports) Created Classification report
EventTypeArg.classification_create_report_fail – (reports) Couldn’t create Classification report
EventTypeArg.emm_create_exceptions_report – (reports) Created EMM-excluded users report
EventTypeArg.emm_create_usage_report – (reports) Created EMM mobile app usage report
EventTypeArg.export_members_report – (reports) Created member data report
EventTypeArg.export_members_report_fail – (reports) Failed to create members data report
EventTypeArg.external_sharing_create_report – (reports) Created External sharing report
EventTypeArg.external_sharing_report_failed – (reports) Couldn’t create External sharing report
EventTypeArg.member_access_details_create_report – (reports) Created member access report
EventTypeArg.member_access_details_create_report_failed – (reports) Couldn’t generate member access report
EventTypeArg.no_expiration_link_gen_create_report – (reports) Report created: Links created with no expiration
EventTypeArg.no_expiration_link_gen_report_failed – (reports) Couldn’t create report: Links created with no expiration
EventTypeArg.no_password_link_gen_create_report – (reports) Report created: Links created without passwords
EventTypeArg.no_password_link_gen_report_failed – (reports) Couldn’t create report: Links created without passwords
EventTypeArg.no_password_link_view_create_report – (reports) Report created: Views of links without passwords
EventTypeArg.no_password_link_view_report_failed – (reports) Couldn’t create report: Views of links without passwords
EventTypeArg.outdated_link_view_create_report – (reports) Report created: Views of old links
EventTypeArg.outdated_link_view_report_failed – (reports) Couldn’t create report: Views of old links
EventTypeArg.paper_admin_export_start – (reports) Exported all team Paper docs
EventTypeArg.ransomware_alert_create_report – (reports) Created ransomware report
EventTypeArg.ransomware_alert_create_report_failed – (reports) Couldn’t generate ransomware report
EventTypeArg.shared_folders_create_report – (reports) Created shared folders report
EventTypeArg.shared_folders_create_report_failed – (reports) Couldn’t generate shared folders report
EventTypeArg.smart_sync_create_admin_privilege_report – (reports) Created Smart Sync non-admin devices report
EventTypeArg.team_activity_create_report – (reports) Created team activity report
EventTypeArg.team_activity_create_report_fail – (reports) Couldn’t generate team activity report
EventTypeArg.team_folders_create_report – (reports) Created team folders report
EventTypeArg.team_folders_create_report_failed – (reports) Couldn’t generate team folders report
EventTypeArg.team_storage_create_report – (reports) Created team storage report
EventTypeArg.team_storage_create_report_failed – (reports) Couldn’t generate team storage report
EventTypeArg.collection_share – (sharing) Shared album
EventTypeArg.file_transfers_file_add – (sharing) Transfer files added
EventTypeArg.file_transfers_transfer_delete – (sharing) Deleted transfer
EventTypeArg.file_transfers_transfer_download – (sharing) Transfer downloaded
EventTypeArg.file_transfers_transfer_send – (sharing) Sent transfer
EventTypeArg.file_transfers_transfer_view – (sharing) Viewed transfer
EventTypeArg.media_hub_project_team_add – (sharing) Added member to Media Hub project
EventTypeArg.media_hub_project_team_delete – (sharing) Removed member from Media Hub project
EventTypeArg.media_hub_project_team_role_changed – (sharing) Changed member role in Media Hub project
EventTypeArg.media_hub_shared_link_audience_changed – (sharing) Changed Media Hub shared link audience
EventTypeArg.media_hub_shared_link_created – (sharing) Created Media Hub shared link
EventTypeArg.media_hub_shared_link_download_setting_changed – (sharing) Changed Media Hub shared link download setting
EventTypeArg.media_hub_shared_link_revoked – (sharing) Revoked Media Hub shared link
EventTypeArg.note_acl_invite_only – (sharing) Changed Paper doc to invite-only (deprecated, no longer logged)
EventTypeArg.note_acl_link – (sharing) Changed Paper doc to link-accessible (deprecated, no longer logged)
EventTypeArg.note_acl_team_link – (sharing) Changed Paper doc to link-accessible for team (deprecated, no longer logged)
EventTypeArg.note_shared – (sharing) Shared Paper doc (deprecated, no longer logged)
EventTypeArg.note_share_receive – (sharing) Shared received Paper doc (deprecated, no longer logged)
EventTypeArg.open_note_shared – (sharing) Opened shared Paper doc (deprecated, no longer logged)
EventTypeArg.replay_file_shared_link_created – (sharing) Created shared link in Replay
EventTypeArg.replay_file_shared_link_modified – (sharing) Changed shared link in Replay
EventTypeArg.replay_project_team_add – (sharing) Added member to Replay Project
EventTypeArg.replay_project_team_delete – (sharing) Removed member from Replay Project
EventTypeArg.send_and_track_file_added – (sharing) File added to Send and Track
EventTypeArg.send_and_track_file_renamed – (sharing) File renamed in Send and Track
EventTypeArg.send_and_track_file_updated – (sharing) File updated in Send and Track
EventTypeArg.send_and_track_link_created – (sharing) Link created in Send and Track
EventTypeArg.send_and_track_link_deleted – (sharing) Link deleted in Send and Track
EventTypeArg.send_and_track_link_updated – (sharing) Send and Track Link Updated
EventTypeArg.send_and_track_link_viewed – (sharing) Send and Track Link Visited
EventTypeArg.send_and_track_removed_file_and_associated_links – (sharing) Send and Track file and associated links deleted
EventTypeArg.sf_add_group – (sharing) Added team to shared folder (deprecated, no longer logged)
EventTypeArg.sf_allow_non_members_to_view_shared_links – (sharing) Allowed non-collaborators to view links to files in shared folder (deprecated, no longer logged)
EventTypeArg.sf_external_invite_warn – (sharing) Set team members to see warning before sharing folders outside team (deprecated, no longer logged)
EventTypeArg.sf_fb_invite – (sharing) Invited Facebook users to shared folder (deprecated, no longer logged)
EventTypeArg.sf_fb_invite_change_role – (sharing) Changed Facebook user’s role in shared folder (deprecated, no longer logged)
EventTypeArg.sf_fb_uninvite – (sharing) Uninvited Facebook user from shared folder (deprecated, no longer logged)
EventTypeArg.sf_invite_group – (sharing) Invited group to shared folder (deprecated, no longer logged)
EventTypeArg.sf_team_grant_access – (sharing) Granted access to shared folder (deprecated, no longer logged)
EventTypeArg.sf_team_invite – (sharing) Invited team members to shared folder (deprecated, replaced by ‘Invited user to Dropbox and added them to shared file/folder’)
EventTypeArg.sf_team_invite_change_role – (sharing) Changed team member’s role in shared folder (deprecated, no longer logged)
EventTypeArg.sf_team_join – (sharing) Joined team member’s shared folder (deprecated, no longer logged)
EventTypeArg.sf_team_join_from_oob_link – (sharing) Joined team member’s shared folder from link (deprecated, no longer logged)
EventTypeArg.sf_team_uninvite – (sharing) Unshared folder with team member (deprecated, replaced by ‘Removed invitee from shared file/folder before invite was accepted’)
EventTypeArg.shared_content_add_invitees – (sharing) Invited user to Dropbox and added them to shared file/folder
EventTypeArg.shared_content_add_link_expiry – (sharing) Added expiration date to link for shared file/folder (deprecated, no longer logged)
EventTypeArg.shared_content_add_link_password – (sharing) Added password to link for shared file/folder (deprecated, no longer logged)
EventTypeArg.shared_content_add_member – (sharing) Added users and/or groups to shared file/folder
EventTypeArg.shared_content_change_downloads_policy – (sharing) Changed whether members can download shared file/folder (deprecated, no longer logged)
EventTypeArg.shared_content_change_invitee_role – (sharing) Changed access type of invitee to shared file/folder before invite was accepted
EventTypeArg.shared_content_change_link_audience – (sharing) Changed link audience of shared file/folder (deprecated, no longer logged)
EventTypeArg.shared_content_change_link_expiry – (sharing) Changed link expiration of shared file/folder (deprecated, no longer logged)
EventTypeArg.shared_content_change_link_password – (sharing) Changed link password of shared file/folder (deprecated, no longer logged)
EventTypeArg.shared_content_change_member_role – (sharing) Changed access type of shared file/folder member
EventTypeArg.shared_content_change_viewer_info_policy – (sharing) Changed whether members can see who viewed shared file/folder
EventTypeArg.shared_content_claim_invitation – (sharing) Acquired membership of shared file/folder by accepting invite
EventTypeArg.shared_content_copy – (sharing) Copied shared file/folder to own Dropbox
EventTypeArg.shared_content_download – (sharing) Downloaded shared file/folder
EventTypeArg.shared_content_relinquish_membership – (sharing) Left shared file/folder
EventTypeArg.shared_content_remove_invitees – (sharing) Removed invitee from shared file/folder before invite was accepted
EventTypeArg.shared_content_remove_link_expiry – (sharing) Removed link expiration date of shared file/folder (deprecated, no longer logged)
EventTypeArg.shared_content_remove_link_password – (sharing) Removed link password of shared file/folder (deprecated, no longer logged)
EventTypeArg.shared_content_remove_member – (sharing) Removed user/group from shared file/folder
EventTypeArg.shared_content_request_access – (sharing) Requested access to shared file/folder
EventTypeArg.shared_content_restore_invitees – (sharing) Restored shared file/folder invitees
EventTypeArg.shared_content_restore_member – (sharing) Restored users and/or groups to membership of shared file/folder
EventTypeArg.shared_content_unshare – (sharing) Unshared file/folder by clearing membership
EventTypeArg.shared_content_view – (sharing) Previewed shared file/folder
EventTypeArg.shared_folder_change_link_policy – (sharing) Changed who can access shared folder via link
EventTypeArg.shared_folder_change_members_inheritance_policy – (sharing) Changed whether shared folder inherits members from parent folder
EventTypeArg.shared_folder_change_members_management_policy – (sharing) Changed who can add/remove members of shared folder
EventTypeArg.shared_folder_change_members_policy – (sharing) Changed who can become member of shared folder
EventTypeArg.shared_folder_create – (sharing) Created shared folder
EventTypeArg.shared_folder_decline_invitation – (sharing) Declined team member’s invite to shared folder
EventTypeArg.shared_folder_mount – (sharing) Added shared folder to own Dropbox
EventTypeArg.shared_folder_nest – (sharing) Changed parent of shared folder
EventTypeArg.shared_folder_transfer_ownership – (sharing) Transferred ownership of shared folder to another member
EventTypeArg.shared_folder_unmount – (sharing) Deleted shared folder from Dropbox
EventTypeArg.shared_link_add_expiry – (sharing) Added shared link expiration date
EventTypeArg.shared_link_change_expiry – (sharing) Changed shared link expiration date
EventTypeArg.shared_link_change_visibility – (sharing) Changed visibility of shared link
EventTypeArg.shared_link_copy – (sharing) Added file/folder to Dropbox from shared link
EventTypeArg.shared_link_create – (sharing) Created shared link
EventTypeArg.shared_link_disable – (sharing) Removed shared link
EventTypeArg.shared_link_download – (sharing) Downloaded file/folder from shared link
EventTypeArg.shared_link_remove_expiry – (sharing) Removed shared link expiration date
EventTypeArg.shared_link_remove_visitor – (sharing) Removed link visitor
EventTypeArg.shared_link_settings_add_expiration – (sharing) Added an expiration date to the shared link
EventTypeArg.shared_link_settings_add_password – (sharing) Added a password to the shared link
EventTypeArg.shared_link_settings_allow_download_disabled – (sharing) Disabled downloads
EventTypeArg.shared_link_settings_allow_download_enabled – (sharing) Enabled downloads
EventTypeArg.shared_link_settings_change_audience – (sharing) Changed the audience of the shared link
EventTypeArg.shared_link_settings_change_expiration – (sharing) Changed the expiration date of the shared link
EventTypeArg.shared_link_settings_change_password – (sharing) Changed the password of the shared link
EventTypeArg.shared_link_settings_remove_expiration – (sharing) Removed the expiration date from the shared link
EventTypeArg.shared_link_settings_remove_password – (sharing) Removed the password from the shared link
EventTypeArg.shared_link_share – (sharing) Added members as audience of shared link
EventTypeArg.shared_link_view – (sharing) Opened shared link
EventTypeArg.shared_note_opened – (sharing) Opened shared Paper doc (deprecated, no longer logged)
EventTypeArg.shmodel_disable_downloads – (sharing) Disabled downloads for link (deprecated, no longer logged)
EventTypeArg.shmodel_enable_downloads – (sharing) Enabled downloads for link (deprecated, no longer logged)
EventTypeArg.shmodel_group_share – (sharing) Shared link with group (deprecated, no longer logged)
EventTypeArg.showcase_access_granted – (showcase) Granted access to showcase
EventTypeArg.showcase_add_member – (showcase) Added member to showcase
EventTypeArg.showcase_archived – (showcase) Archived showcase
EventTypeArg.showcase_created – (showcase) Created showcase
EventTypeArg.showcase_delete_comment – (showcase) Deleted showcase comment
EventTypeArg.showcase_edited – (showcase) Edited showcase
EventTypeArg.showcase_edit_comment – (showcase) Edited showcase comment
EventTypeArg.showcase_file_added – (showcase) Added file to showcase
EventTypeArg.showcase_file_download – (showcase) Downloaded file from showcase
EventTypeArg.showcase_file_removed – (showcase) Removed file from showcase
EventTypeArg.showcase_file_view – (showcase) Viewed file in showcase
EventTypeArg.showcase_permanently_deleted – (showcase) Permanently deleted showcase
EventTypeArg.showcase_post_comment – (showcase) Added showcase comment
EventTypeArg.showcase_remove_member – (showcase) Removed member from showcase
EventTypeArg.showcase_renamed – (showcase) Renamed showcase
EventTypeArg.showcase_request_access – (showcase) Requested access to showcase
EventTypeArg.showcase_resolve_comment – (showcase) Resolved showcase comment
EventTypeArg.showcase_restored – (showcase) Unarchived showcase
EventTypeArg.showcase_trashed – (showcase) Deleted showcase
EventTypeArg.showcase_trashed_deprecated – (showcase) Deleted showcase (old version) (deprecated, replaced by ‘Deleted showcase’)
EventTypeArg.showcase_unresolve_comment – (showcase) Unresolved showcase comment
EventTypeArg.showcase_untrashed – (showcase) Restored showcase
EventTypeArg.showcase_untrashed_deprecated – (showcase) Restored showcase (old version) (deprecated, replaced by ‘Restored showcase’)
EventTypeArg.showcase_view – (showcase) Viewed showcase
EventTypeArg.sign_signature_request_canceled – (signatures) Canceled signature request
EventTypeArg.sign_signature_request_completed – (signatures) Completed signature request
EventTypeArg.sign_signature_request_declined – (signatures) Declined signature request
EventTypeArg.sign_signature_request_opened – (signatures) Opened signature request
EventTypeArg.sign_signature_request_reminder_sent – (signatures) Sent signature request reminder
EventTypeArg.sign_signature_request_sent – (signatures) Sent signature request
EventTypeArg.sign_template_created – (signatures) Created template
EventTypeArg.sign_template_shared – (signatures) Shared template
EventTypeArg.risc_security_event – (sso) RISC security event received from external provider
EventTypeArg.sso_add_cert – (sso) Added X.509 certificate for SSO
EventTypeArg.sso_add_login_url – (sso) Added sign-in URL for SSO
EventTypeArg.sso_add_logout_url – (sso) Added sign-out URL for SSO
EventTypeArg.sso_change_cert – (sso) Changed X.509 certificate for SSO
EventTypeArg.sso_change_login_url – (sso) Changed sign-in URL for SSO
EventTypeArg.sso_change_logout_url – (sso) Changed sign-out URL for SSO
EventTypeArg.sso_change_saml_identity_mode – (sso) Changed SAML identity mode for SSO
EventTypeArg.sso_remove_cert – (sso) Removed X.509 certificate for SSO
EventTypeArg.sso_remove_login_url – (sso) Removed sign-in URL for SSO
EventTypeArg.sso_remove_logout_url – (sso) Removed sign-out URL for SSO
EventTypeArg.team_folder_change_status – (team_folders) Changed archival status of team folder
EventTypeArg.team_folder_create – (team_folders) Created team folder in active status
EventTypeArg.team_folder_downgrade – (team_folders) Downgraded team folder to regular shared folder
EventTypeArg.team_folder_permanently_delete – (team_folders) Permanently deleted archived team folder
EventTypeArg.team_folder_rename – (team_folders) Renamed active/archived team folder
EventTypeArg.team_folder_space_limits_change_caps_type – (team_folders) Changed team folder space limit enforcement type
EventTypeArg.team_folder_space_limits_change_limit – (team_folders) Changed team folder space limit
EventTypeArg.team_folder_space_limits_change_notification_target – (team_folders) Changed team folder space limit notification target
EventTypeArg.team_selective_sync_settings_changed – (team_folders) Changed sync default
EventTypeArg.account_capture_change_policy – (team_policies) Changed account capture setting on team domain
EventTypeArg.admin_email_reminders_changed – (team_policies) Changed admin reminder settings for requests to join the team
EventTypeArg.ai_third_party_sharing_dropbox_base_policy_changed – (team_policies) Changed AI third party sharing policy for team
EventTypeArg.allow_download_disabled – (team_policies) Disabled downloads (deprecated, no longer logged)
EventTypeArg.allow_download_enabled – (team_policies) Enabled downloads (deprecated, no longer logged)
EventTypeArg.apple_login_change_policy – (team_policies) Enabled/disabled Apple login for team
EventTypeArg.app_permissions_changed – (team_policies) Changed app permissions
EventTypeArg.camera_uploads_policy_changed – (team_policies) Changed camera uploads setting for team
EventTypeArg.capture_team_space_policy_changed – (team_policies) Changed Capture team space policy for team
EventTypeArg.capture_transcript_policy_changed – (team_policies) Changed Capture transcription policy for team
EventTypeArg.classification_change_policy – (team_policies) Changed classification policy for team
EventTypeArg.computer_backup_policy_changed – (team_policies) Changed computer backup policy for team
EventTypeArg.content_administration_policy_changed – (team_policies) Changed content management setting
EventTypeArg.content_deletion_protection_change_policy – (team_policies) Changed content deletion protection policy for team
EventTypeArg.dash_external_sharing_policy_changed – (team_policies) Changed Dash external sharing policy for team
EventTypeArg.data_placement_restriction_change_policy – (team_policies) Set restrictions on data center locations where team data resides
EventTypeArg.data_placement_restriction_satisfy_policy – (team_policies) Completed restrictions on data center locations where team data resides
EventTypeArg.device_approvals_add_exception – (team_policies) Added members to device approvals exception list
EventTypeArg.device_approvals_change_desktop_policy – (team_policies) Set/removed limit on number of computers member can link to team Dropbox account
EventTypeArg.device_approvals_change_mobile_policy – (team_policies) Set/removed limit on number of mobile devices member can link to team Dropbox account
EventTypeArg.device_approvals_change_overage_action – (team_policies) Changed device approvals setting when member is over limit
EventTypeArg.device_approvals_change_unlink_action – (team_policies) Changed device approvals setting when member unlinks approved device
EventTypeArg.device_approvals_remove_exception – (team_policies) Removed members from device approvals exception list
EventTypeArg.directory_restrictions_add_members – (team_policies) Added members to directory restrictions list
EventTypeArg.directory_restrictions_remove_members – (team_policies) Removed members from directory restrictions list
EventTypeArg.dropbox_passwords_policy_changed – (team_policies) Changed Dropbox Passwords policy for team
EventTypeArg.email_ingest_policy_changed – (team_policies) Changed email to Dropbox policy for team
EventTypeArg.emm_add_exception – (team_policies) Added members to EMM exception list
EventTypeArg.emm_change_policy – (team_policies) Enabled/disabled enterprise mobility management for members
EventTypeArg.emm_remove_exception – (team_policies) Removed members from EMM exception list
EventTypeArg.extended_version_history_change_policy – (team_policies) Accepted/opted out of extended version history
EventTypeArg.external_drive_backup_policy_changed – (team_policies) Changed external drive backup policy for team
EventTypeArg.file_comments_change_policy – (team_policies) Enabled/disabled commenting on team files
EventTypeArg.file_locking_policy_changed – (team_policies) Changed file locking policy for team
EventTypeArg.file_provider_migration_policy_changed – (team_policies) Changed File Provider Migration policy for team
EventTypeArg.file_requests_change_policy – (team_policies) Enabled/disabled file requests
EventTypeArg.file_requests_emails_enabled – (team_policies) Enabled file request emails for everyone (deprecated, no longer logged)
EventTypeArg.file_requests_emails_restricted_to_team_only – (team_policies) Enabled file request emails for team (deprecated, no longer logged)
EventTypeArg.file_transfers_policy_changed – (team_policies) Changed file transfers policy for team
EventTypeArg.flexible_file_names_policy_changed – (team_policies) Changed flexible file names policy for team
EventTypeArg.folder_link_restriction_policy_changed – (team_policies) Changed folder link restrictions policy for team
EventTypeArg.google_sso_change_policy – (team_policies) Enabled/disabled Google single sign-on for team
EventTypeArg.group_user_management_change_policy – (team_policies) Changed who can create groups
EventTypeArg.integration_policy_changed – (team_policies) Changed integration policy for team
EventTypeArg.invite_acceptance_email_policy_changed – (team_policies) Changed invite accept email policy for team
EventTypeArg.media_hub_adding_people_policy_changed – (team_policies) Changed the policy for adding people to Media Hub content
EventTypeArg.media_hub_download_policy_changed – (team_policies) Changed the policy for downloading Media Hub content
EventTypeArg.media_hub_link_sharing_policy_changed – (team_policies) Changed the policy for sharing Media Hub content
EventTypeArg.member_requests_change_policy – (team_policies) Changed whether users can find team when not invited
EventTypeArg.member_send_invite_policy_changed – (team_policies) Changed member send invite policy for team
EventTypeArg.member_space_limits_add_exception – (team_policies) Added members to member space limit exception list
EventTypeArg.member_space_limits_change_caps_type_policy – (team_policies) Changed member space limit type for team
EventTypeArg.member_space_limits_change_policy – (team_policies) Changed team default member space limit
EventTypeArg.member_space_limits_remove_exception – (team_policies) Removed members from member space limit exception list
EventTypeArg.member_suggestions_change_policy – (team_policies) Enabled/disabled option for team members to suggest people to add to team
EventTypeArg.microsoft_login_change_policy – (team_policies) Enabled/disabled Microsoft login for team
EventTypeArg.microsoft_office_addin_change_policy – (team_policies) Enabled/disabled Microsoft Office add-in
EventTypeArg.multi_team_identity_policy_changed – (team_policies) Changed multi-team identity policy for team
EventTypeArg.network_control_change_policy – (team_policies) Enabled/disabled network control
EventTypeArg.paper_change_deployment_policy – (team_policies) Changed whether Dropbox Paper, when enabled, is deployed to all members or to specific members
EventTypeArg.paper_change_member_link_policy – (team_policies) Changed whether non-members can view Paper docs with link (deprecated, no longer logged)
EventTypeArg.paper_change_member_policy – (team_policies) Changed whether members can share Paper docs outside team, and if docs are accessible only by team members or anyone by default
EventTypeArg.paper_change_policy – (team_policies) Enabled/disabled Dropbox Paper for team
EventTypeArg.paper_default_folder_policy_changed – (team_policies) Changed Paper Default Folder Policy setting for team
EventTypeArg.paper_desktop_policy_changed – (team_policies) Enabled/disabled Paper Desktop for team
EventTypeArg.paper_enabled_users_group_addition – (team_policies) Added users to Paper-enabled users list
EventTypeArg.paper_enabled_users_group_removal – (team_policies) Removed users from Paper-enabled users list
EventTypeArg.passkey_login_policy_changed – (team_policies) Changed passkey login policy for team
EventTypeArg.password_strength_requirements_change_policy – (team_policies) Changed team password strength requirements
EventTypeArg.permanent_delete_change_policy – (team_policies) Enabled/disabled ability of team members to permanently delete content
EventTypeArg.previews_ai_policy_changed – (team_policies) Changed Dropbox AI policy for team
EventTypeArg.replay_adding_people_policy_changed – (team_policies) Changed the policy for adding people to Replay content
EventTypeArg.replay_sharing_policy_changed – (team_policies) Changed the policy for sharing Replay content
EventTypeArg.reseller_support_change_policy – (team_policies) Enabled/disabled reseller support
EventTypeArg.rewind_policy_changed – (team_policies) Changed Rewind policy for team
EventTypeArg.send_and_track_policy_changed – (team_policies) Changed “Send and track” policy for team
EventTypeArg.send_external_sharing_policy_changed – (team_policies) Changed “Send and track” external sharing policy for team
EventTypeArg.send_for_signature_policy_changed – (team_policies) Changed send for signature policy for team
EventTypeArg.shared_link_default_permissions_policy_changed – (team_policies) Changed shared link default permissions policy for team
EventTypeArg.sharing_change_folder_join_policy – (team_policies) Changed whether team members can join shared folders owned outside team
EventTypeArg.sharing_change_link_allow_change_expiration_policy – (team_policies) Changed the allow remove or change expiration policy for the links shared outside of the team
EventTypeArg.sharing_change_link_default_expiration_policy – (team_policies) Changed the default expiration for the links shared outside of the team
EventTypeArg.sharing_change_link_enforce_password_policy – (team_policies) Changed the password requirement for the links shared outside of the team
EventTypeArg.sharing_change_link_policy – (team_policies) Changed whether members can share links outside team, and if links are accessible only by team members or anyone by default
EventTypeArg.sharing_change_member_policy – (team_policies) Changed whether members can share files/folders outside team
EventTypeArg.showcase_change_download_policy – (team_policies) Enabled/disabled downloading files from Dropbox Showcase for team
EventTypeArg.showcase_change_enabled_policy – (team_policies) Enabled/disabled Dropbox Showcase for team
EventTypeArg.showcase_change_external_sharing_policy – (team_policies) Enabled/disabled sharing Dropbox Showcase externally for team
EventTypeArg.sign_external_sharing_policy_changed – (team_policies) Changed Signatures external sharing policy for team
EventTypeArg.sign_template_creation_permission_changed – (team_policies) Changed template creation permission
EventTypeArg.smarter_smart_sync_policy_changed – (team_policies) Changed automatic Smart Sync setting for team
EventTypeArg.smart_sync_change_policy – (team_policies) Changed default Smart Sync setting for team members
EventTypeArg.smart_sync_not_opt_out – (team_policies) Opted team into Smart Sync
EventTypeArg.smart_sync_opt_out – (team_policies) Opted team out of Smart Sync
EventTypeArg.sso_change_policy – (team_policies) Changed single sign-on setting for team
EventTypeArg.stack_cross_team_access_policy_changed – (team_policies) Changed cross-team Stack access policy for team
EventTypeArg.team_branding_policy_changed – (team_policies) Changed team branding policy for team
EventTypeArg.team_extensions_policy_changed – (team_policies) Changed App Integrations setting for team
EventTypeArg.team_member_storage_request_policy_changed – (team_policies) Changed team member storage request policy for team
EventTypeArg.team_selective_sync_policy_changed – (team_policies) Enabled/disabled Team Selective Sync for team
EventTypeArg.team_sharing_whitelist_subjects_changed – (team_policies) Edited the approved list for sharing externally
EventTypeArg.tfa_add_exception – (team_policies) Added members to two factor authentication exception list
EventTypeArg.tfa_change_policy – (team_policies) Changed two-factor authentication setting for team
EventTypeArg.tfa_remove_exception – (team_policies) Removed members from two factor authentication exception list
EventTypeArg.top_level_content_policy_changed – (team_policies) Changed top level content setting for team
EventTypeArg.two_account_change_policy – (team_policies) Enabled/disabled option for members to link personal Dropbox account and team account to same computer
EventTypeArg.viewer_info_policy_changed – (team_policies) Changed team policy for viewer info
EventTypeArg.watermarking_policy_changed – (team_policies) Changed watermarking policy for team
EventTypeArg.web_sessions_change_active_session_limit – (team_policies) Changed limit on active sessions per member
EventTypeArg.web_sessions_change_fixed_length_policy – (team_policies) Changed how long members can stay signed in to Dropbox.com
EventTypeArg.web_sessions_change_idle_length_policy – (team_policies) Changed how long team members can be idle while signed in to Dropbox.com
EventTypeArg.data_residency_migration_request_successful – (team_profile) Requested data residency migration for team data
EventTypeArg.data_residency_migration_request_unsuccessful – (team_profile) Request for data residency migration for team data has failed
EventTypeArg.team_merge_from – (team_profile) Merged another team into this team
EventTypeArg.team_merge_to – (team_profile) Merged this team into another team
EventTypeArg.team_profile_add_background – (team_profile) Added team background to display on shared link headers
EventTypeArg.team_profile_add_logo – (team_profile) Added team logo to display on shared link headers
EventTypeArg.team_profile_change_background – (team_profile) Changed team background displayed on shared link headers
EventTypeArg.team_profile_change_default_language – (team_profile) Changed default language for team
EventTypeArg.team_profile_change_logo – (team_profile) Changed team logo displayed on shared link headers
EventTypeArg.team_profile_change_name – (team_profile) Changed team name
EventTypeArg.team_profile_remove_background – (team_profile) Removed team background displayed on shared link headers
EventTypeArg.team_profile_remove_logo – (team_profile) Removed team logo displayed on shared link headers
EventTypeArg.passkey_add – (tfa) Added passkey for login
EventTypeArg.passkey_remove – (tfa) Removed passkey for login
EventTypeArg.tfa_add_backup_phone – (tfa) Added backup phone for two-factor authentication
EventTypeArg.tfa_add_security_key – (tfa) Added security key for two-factor authentication
EventTypeArg.tfa_change_backup_phone – (tfa) Changed backup phone for two-factor authentication
EventTypeArg.tfa_change_status – (tfa) Enabled/disabled/changed two-factor authentication setting
EventTypeArg.tfa_remove_backup_phone – (tfa) Removed backup phone for two-factor authentication
EventTypeArg.tfa_remove_security_key – (tfa) Removed security key for two-factor authentication
EventTypeArg.tfa_reset – (tfa) Reset two-factor authentication for team member
EventTypeArg.changed_enterprise_admin_role – (trusted_teams) Changed enterprise admin role
EventTypeArg.changed_enterprise_connected_team_status – (trusted_teams) Changed enterprise-connected team status
EventTypeArg.ended_enterprise_admin_session – (trusted_teams) Ended enterprise admin session
EventTypeArg.ended_enterprise_admin_session_deprecated – (trusted_teams) Ended enterprise admin session (deprecated, replaced by ‘Ended enterprise admin session’)
EventTypeArg.enterprise_settings_locking – (trusted_teams) Changed who can update a setting
EventTypeArg.guest_admin_change_status – (trusted_teams) Changed guest team admin status
EventTypeArg.started_enterprise_admin_session – (trusted_teams) Started enterprise admin session
EventTypeArg.team_merge_request_accepted – (trusted_teams) Accepted a team merge request
EventTypeArg.team_merge_request_accepted_shown_to_primary_team – (trusted_teams) Accepted a team merge request (deprecated, replaced by ‘Accepted a team merge request’)
EventTypeArg.team_merge_request_accepted_shown_to_secondary_team – (trusted_teams) Accepted a team merge request (deprecated, replaced by ‘Accepted a team merge request’)
EventTypeArg.team_merge_request_auto_canceled – (trusted_teams) Automatically canceled team merge request
EventTypeArg.team_merge_request_canceled – (trusted_teams) Canceled a team merge request
EventTypeArg.team_merge_request_canceled_shown_to_primary_team – (trusted_teams) Canceled a team merge request (deprecated, replaced by ‘Canceled a team merge request’)
EventTypeArg.team_merge_request_canceled_shown_to_secondary_team – (trusted_teams) Canceled a team merge request (deprecated, replaced by ‘Canceled a team merge request’)
EventTypeArg.team_merge_request_expired – (trusted_teams) Team merge request expired
EventTypeArg.team_merge_request_expired_shown_to_primary_team – (trusted_teams) Team merge request expired (deprecated, replaced by ‘Team merge request expired’)
EventTypeArg.team_merge_request_expired_shown_to_secondary_team – (trusted_teams) Team merge request expired (deprecated, replaced by ‘Team merge request expired’)
EventTypeArg.team_merge_request_rejected_shown_to_primary_team – (trusted_teams) Rejected a team merge request (deprecated, no longer logged)
EventTypeArg.team_merge_request_rejected_shown_to_secondary_team – (trusted_teams) Rejected a team merge request (deprecated, no longer logged)
EventTypeArg.team_merge_request_reminder – (trusted_teams) Sent a team merge request reminder
EventTypeArg.team_merge_request_reminder_shown_to_primary_team – (trusted_teams) Sent a team merge request reminder (deprecated, replaced by ‘Sent a team merge request reminder’)
EventTypeArg.team_merge_request_reminder_shown_to_secondary_team – (trusted_teams) Sent a team merge request reminder (deprecated, replaced by ‘Sent a team merge request reminder’)
EventTypeArg.team_merge_request_revoked – (trusted_teams) Canceled the team merge
EventTypeArg.team_merge_request_sent_shown_to_primary_team – (trusted_teams) Requested to merge their Dropbox team into yours
EventTypeArg.team_merge_request_sent_shown_to_secondary_team – (trusted_teams) Requested to merge your team into another Dropbox team
- account_capture_change_availability = EventTypeArg('account_capture_change_availability', None)
- account_capture_change_policy = EventTypeArg('account_capture_change_policy', None)
- account_capture_migrate_account = EventTypeArg('account_capture_migrate_account', None)
- account_capture_notification_emails_sent = EventTypeArg('account_capture_notification_emails_sent', None)
- account_capture_relinquish_account = EventTypeArg('account_capture_relinquish_account', None)
- account_lock_or_unlocked = EventTypeArg('account_lock_or_unlocked', None)
- addon_assigned = EventTypeArg('addon_assigned', None)
- addon_removed = EventTypeArg('addon_removed', None)
- admin_alerting_alert_state_changed = EventTypeArg('admin_alerting_alert_state_changed', None)
- admin_alerting_changed_alert_config = EventTypeArg('admin_alerting_changed_alert_config', None)
- admin_alerting_triggered_alert = EventTypeArg('admin_alerting_triggered_alert', None)
- admin_email_reminders_changed = EventTypeArg('admin_email_reminders_changed', None)
- ai_third_party_sharing_dropbox_base_policy_changed = EventTypeArg('ai_third_party_sharing_dropbox_base_policy_changed', None)
- allow_download_disabled = EventTypeArg('allow_download_disabled', None)
- allow_download_enabled = EventTypeArg('allow_download_enabled', None)
- app_blocked_by_permissions = EventTypeArg('app_blocked_by_permissions', None)
- app_link_team = EventTypeArg('app_link_team', None)
- app_link_user = EventTypeArg('app_link_user', None)
- app_permissions_changed = EventTypeArg('app_permissions_changed', None)
- app_unlink_team = EventTypeArg('app_unlink_team', None)
- app_unlink_user = EventTypeArg('app_unlink_user', None)
- apple_login_change_policy = EventTypeArg('apple_login_change_policy', None)
- apply_naming_convention = EventTypeArg('apply_naming_convention', None)
- backup_admin_invitation_sent = EventTypeArg('backup_admin_invitation_sent', None)
- backup_invitation_opened = EventTypeArg('backup_invitation_opened', None)
- binder_add_page = EventTypeArg('binder_add_page', None)
- binder_add_section = EventTypeArg('binder_add_section', None)
- binder_remove_page = EventTypeArg('binder_remove_page', None)
- binder_remove_section = EventTypeArg('binder_remove_section', None)
- binder_rename_page = EventTypeArg('binder_rename_page', None)
- binder_rename_section = EventTypeArg('binder_rename_section', None)
- binder_reorder_page = EventTypeArg('binder_reorder_page', None)
- binder_reorder_section = EventTypeArg('binder_reorder_section', None)
- camera_uploads_policy_changed = EventTypeArg('camera_uploads_policy_changed', None)
- capture_team_space_policy_changed = EventTypeArg('capture_team_space_policy_changed', None)
- capture_transcript_policy_changed = EventTypeArg('capture_transcript_policy_changed', None)
- changed_enterprise_admin_role = EventTypeArg('changed_enterprise_admin_role', None)
- changed_enterprise_connected_team_status = EventTypeArg('changed_enterprise_connected_team_status', None)
- classification_change_policy = EventTypeArg('classification_change_policy', None)
- classification_create_report = EventTypeArg('classification_create_report', None)
- classification_create_report_fail = EventTypeArg('classification_create_report_fail', None)
- computer_backup_policy_changed = EventTypeArg('computer_backup_policy_changed', None)
- content_administration_policy_changed = EventTypeArg('content_administration_policy_changed', None)
- content_deletion_protection_change_policy = EventTypeArg('content_deletion_protection_change_policy', None)
- create_folder = EventTypeArg('create_folder', None)
- create_team_invite_link = EventTypeArg('create_team_invite_link', None)
- dash_added_comment_to_stack = EventTypeArg('dash_added_comment_to_stack', None)
- dash_added_connector = EventTypeArg('dash_added_connector', None)
- dash_added_link_to_stack = EventTypeArg('dash_added_link_to_stack', None)
- dash_added_team_email_domain_allowlist = EventTypeArg('dash_added_team_email_domain_allowlist', None)
- dash_admin_added_org_wide_connector = EventTypeArg('dash_admin_added_org_wide_connector', None)
- dash_admin_disabled_connector = EventTypeArg('dash_admin_disabled_connector', None)
- dash_admin_enabled_connector = EventTypeArg('dash_admin_enabled_connector', None)
- dash_admin_removed_org_wide_connector = EventTypeArg('dash_admin_removed_org_wide_connector', None)
- dash_archived_stack = EventTypeArg('dash_archived_stack', None)
- dash_cloned_stack = EventTypeArg('dash_cloned_stack', None)
- dash_connector_tools_call = EventTypeArg('dash_connector_tools_call', None)
- dash_created_stack = EventTypeArg('dash_created_stack', None)
- dash_deleted_comment_from_stack = EventTypeArg('dash_deleted_comment_from_stack', None)
- dash_deleted_stack = EventTypeArg('dash_deleted_stack', None)
- dash_edited_comment_in_stack = EventTypeArg('dash_edited_comment_in_stack', None)
- dash_external_sharing_policy_changed = EventTypeArg('dash_external_sharing_policy_changed', None)
- dash_external_user_opened_stack = EventTypeArg('dash_external_user_opened_stack', None)
- dash_first_launched_desktop = EventTypeArg('dash_first_launched_desktop', None)
- dash_first_launched_extension = EventTypeArg('dash_first_launched_extension', None)
- dash_first_launched_web_start_page = EventTypeArg('dash_first_launched_web_start_page', None)
- dash_opened_stack = EventTypeArg('dash_opened_stack', None)
- dash_preview_opt_out_status_changed = EventTypeArg('dash_preview_opt_out_status_changed', None)
- dash_removed_connector = EventTypeArg('dash_removed_connector', None)
- dash_removed_link_from_stack = EventTypeArg('dash_removed_link_from_stack', None)
- dash_removed_team_email_domain_allowlist = EventTypeArg('dash_removed_team_email_domain_allowlist', None)
- dash_renamed_stack = EventTypeArg('dash_renamed_stack', None)
- dash_unarchived_stack = EventTypeArg('dash_unarchived_stack', None)
- dash_viewed_company_stack = EventTypeArg('dash_viewed_company_stack', None)
- dash_viewed_external_ai_activity_report = EventTypeArg('dash_viewed_external_ai_activity_report', None)
- data_placement_restriction_change_policy = EventTypeArg('data_placement_restriction_change_policy', None)
- data_placement_restriction_satisfy_policy = EventTypeArg('data_placement_restriction_satisfy_policy', None)
- data_residency_migration_request_successful = EventTypeArg('data_residency_migration_request_successful', None)
- data_residency_migration_request_unsuccessful = EventTypeArg('data_residency_migration_request_unsuccessful', None)
- delete_team_invite_link = EventTypeArg('delete_team_invite_link', None)
- device_approvals_add_exception = EventTypeArg('device_approvals_add_exception', None)
- device_approvals_change_desktop_policy = EventTypeArg('device_approvals_change_desktop_policy', None)
- device_approvals_change_mobile_policy = EventTypeArg('device_approvals_change_mobile_policy', None)
- device_approvals_change_overage_action = EventTypeArg('device_approvals_change_overage_action', None)
- device_approvals_change_unlink_action = EventTypeArg('device_approvals_change_unlink_action', None)
- device_approvals_remove_exception = EventTypeArg('device_approvals_remove_exception', None)
- device_change_ip_desktop = EventTypeArg('device_change_ip_desktop', None)
- device_change_ip_mobile = EventTypeArg('device_change_ip_mobile', None)
- device_change_ip_web = EventTypeArg('device_change_ip_web', None)
- device_delete_on_unlink_fail = EventTypeArg('device_delete_on_unlink_fail', None)
- device_delete_on_unlink_success = EventTypeArg('device_delete_on_unlink_success', None)
- device_link_fail = EventTypeArg('device_link_fail', None)
- device_link_success = EventTypeArg('device_link_success', None)
- device_management_disabled = EventTypeArg('device_management_disabled', None)
- device_management_enabled = EventTypeArg('device_management_enabled', None)
- device_sync_backup_status_changed = EventTypeArg('device_sync_backup_status_changed', None)
- device_unlink = EventTypeArg('device_unlink', None)
- directory_restrictions_add_members = EventTypeArg('directory_restrictions_add_members', None)
- directory_restrictions_remove_members = EventTypeArg('directory_restrictions_remove_members', None)
- disabled_domain_invites = EventTypeArg('disabled_domain_invites', None)
- domain_invites_approve_request_to_join_team = EventTypeArg('domain_invites_approve_request_to_join_team', None)
- domain_invites_decline_request_to_join_team = EventTypeArg('domain_invites_decline_request_to_join_team', None)
- domain_invites_email_existing_users = EventTypeArg('domain_invites_email_existing_users', None)
- domain_invites_request_to_join_team = EventTypeArg('domain_invites_request_to_join_team', None)
- domain_invites_set_invite_new_user_pref_to_no = EventTypeArg('domain_invites_set_invite_new_user_pref_to_no', None)
- domain_invites_set_invite_new_user_pref_to_yes = EventTypeArg('domain_invites_set_invite_new_user_pref_to_yes', None)
- domain_verification_add_domain_fail = EventTypeArg('domain_verification_add_domain_fail', None)
- domain_verification_add_domain_success = EventTypeArg('domain_verification_add_domain_success', None)
- domain_verification_remove_domain = EventTypeArg('domain_verification_remove_domain', None)
- dropbox_passwords_exported = EventTypeArg('dropbox_passwords_exported', None)
- dropbox_passwords_new_device_enrolled = EventTypeArg('dropbox_passwords_new_device_enrolled', None)
- dropbox_passwords_policy_changed = EventTypeArg('dropbox_passwords_policy_changed', None)
- email_ingest_policy_changed = EventTypeArg('email_ingest_policy_changed', None)
- email_ingest_receive_file = EventTypeArg('email_ingest_receive_file', None)
- emm_add_exception = EventTypeArg('emm_add_exception', None)
- emm_change_policy = EventTypeArg('emm_change_policy', None)
- emm_create_exceptions_report = EventTypeArg('emm_create_exceptions_report', None)
- emm_create_usage_report = EventTypeArg('emm_create_usage_report', None)
- emm_error = EventTypeArg('emm_error', None)
- emm_refresh_auth_token = EventTypeArg('emm_refresh_auth_token', None)
- emm_remove_exception = EventTypeArg('emm_remove_exception', None)
- enabled_domain_invites = EventTypeArg('enabled_domain_invites', None)
- encrypted_folder_cancel_team_key_rotation = EventTypeArg('encrypted_folder_cancel_team_key_rotation', None)
- encrypted_folder_enroll_backup_key = EventTypeArg('encrypted_folder_enroll_backup_key', None)
- encrypted_folder_enroll_client = EventTypeArg('encrypted_folder_enroll_client', None)
- encrypted_folder_enroll_team = EventTypeArg('encrypted_folder_enroll_team', None)
- encrypted_folder_finish_team_unenrollment = EventTypeArg('encrypted_folder_finish_team_unenrollment', None)
- encrypted_folder_init_team_key_rotation = EventTypeArg('encrypted_folder_init_team_key_rotation', None)
- encrypted_folder_init_team_unenrollment = EventTypeArg('encrypted_folder_init_team_unenrollment', None)
- encrypted_folder_remove_backup_key = EventTypeArg('encrypted_folder_remove_backup_key', None)
- encrypted_folder_rotate_team_key = EventTypeArg('encrypted_folder_rotate_team_key', None)
- encrypted_folder_unenroll_client = EventTypeArg('encrypted_folder_unenroll_client', None)
- ended_enterprise_admin_session = EventTypeArg('ended_enterprise_admin_session', None)
- ended_enterprise_admin_session_deprecated = EventTypeArg('ended_enterprise_admin_session_deprecated', None)
- enterprise_settings_locking = EventTypeArg('enterprise_settings_locking', None)
- export_members_report = EventTypeArg('export_members_report', None)
- export_members_report_fail = EventTypeArg('export_members_report_fail', None)
- extended_version_history_change_policy = EventTypeArg('extended_version_history_change_policy', None)
- external_drive_backup_eligibility_status_checked = EventTypeArg('external_drive_backup_eligibility_status_checked', None)
- external_drive_backup_policy_changed = EventTypeArg('external_drive_backup_policy_changed', None)
- external_drive_backup_status_changed = EventTypeArg('external_drive_backup_status_changed', None)
- external_sharing_create_report = EventTypeArg('external_sharing_create_report', None)
- external_sharing_report_failed = EventTypeArg('external_sharing_report_failed', None)
- file_add = EventTypeArg('file_add', None)
- file_add_comment = EventTypeArg('file_add_comment', None)
- file_add_from_automation = EventTypeArg('file_add_from_automation', None)
- file_change_comment_subscription = EventTypeArg('file_change_comment_subscription', None)
- file_comments_change_policy = EventTypeArg('file_comments_change_policy', None)
- file_copy = EventTypeArg('file_copy', None)
- file_delete = EventTypeArg('file_delete', None)
- file_delete_comment = EventTypeArg('file_delete_comment', None)
- file_download = EventTypeArg('file_download', None)
- file_edit = EventTypeArg('file_edit', None)
- file_edit_comment = EventTypeArg('file_edit_comment', None)
- file_get_copy_reference = EventTypeArg('file_get_copy_reference', None)
- file_like_comment = EventTypeArg('file_like_comment', None)
- file_locking_lock_status_changed = EventTypeArg('file_locking_lock_status_changed', None)
- file_locking_policy_changed = EventTypeArg('file_locking_policy_changed', None)
- file_move = EventTypeArg('file_move', None)
- file_permanently_delete = EventTypeArg('file_permanently_delete', None)
- file_preview = EventTypeArg('file_preview', None)
- file_provider_migration_policy_changed = EventTypeArg('file_provider_migration_policy_changed', None)
- file_rename = EventTypeArg('file_rename', None)
- file_request_auto_close = EventTypeArg('file_request_auto_close', None)
- file_request_change = EventTypeArg('file_request_change', None)
- file_request_close = EventTypeArg('file_request_close', None)
- file_request_create = EventTypeArg('file_request_create', None)
- file_request_delete = EventTypeArg('file_request_delete', None)
- file_request_receive_file = EventTypeArg('file_request_receive_file', None)
- file_requests_change_policy = EventTypeArg('file_requests_change_policy', None)
- file_requests_emails_enabled = EventTypeArg('file_requests_emails_enabled', None)
- file_requests_emails_restricted_to_team_only = EventTypeArg('file_requests_emails_restricted_to_team_only', None)
- file_resolve_comment = EventTypeArg('file_resolve_comment', None)
- file_restore = EventTypeArg('file_restore', None)
- file_revert = EventTypeArg('file_revert', None)
- file_rollback_changes = EventTypeArg('file_rollback_changes', None)
- file_save_copy_reference = EventTypeArg('file_save_copy_reference', None)
- file_transfers_file_add = EventTypeArg('file_transfers_file_add', None)
- file_transfers_policy_changed = EventTypeArg('file_transfers_policy_changed', None)
- file_transfers_transfer_delete = EventTypeArg('file_transfers_transfer_delete', None)
- file_transfers_transfer_download = EventTypeArg('file_transfers_transfer_download', None)
- file_transfers_transfer_send = EventTypeArg('file_transfers_transfer_send', None)
- file_transfers_transfer_view = EventTypeArg('file_transfers_transfer_view', None)
- file_unlike_comment = EventTypeArg('file_unlike_comment', None)
- file_unresolve_comment = EventTypeArg('file_unresolve_comment', None)
- flexible_file_names_policy_changed = EventTypeArg('flexible_file_names_policy_changed', None)
- folder_link_restriction_policy_changed = EventTypeArg('folder_link_restriction_policy_changed', None)
- folder_overview_description_changed = EventTypeArg('folder_overview_description_changed', None)
- folder_overview_item_pinned = EventTypeArg('folder_overview_item_pinned', None)
- folder_overview_item_unpinned = EventTypeArg('folder_overview_item_unpinned', None)
- google_sso_change_policy = EventTypeArg('google_sso_change_policy', None)
- governance_policy_add_folder_failed = EventTypeArg('governance_policy_add_folder_failed', None)
- governance_policy_add_folders = EventTypeArg('governance_policy_add_folders', None)
- governance_policy_content_disposed = EventTypeArg('governance_policy_content_disposed', None)
- governance_policy_create = EventTypeArg('governance_policy_create', None)
- governance_policy_delete = EventTypeArg('governance_policy_delete', None)
- governance_policy_edit_details = EventTypeArg('governance_policy_edit_details', None)
- governance_policy_edit_duration = EventTypeArg('governance_policy_edit_duration', None)
- governance_policy_export_created = EventTypeArg('governance_policy_export_created', None)
- governance_policy_export_removed = EventTypeArg('governance_policy_export_removed', None)
- governance_policy_remove_folders = EventTypeArg('governance_policy_remove_folders', None)
- governance_policy_report_created = EventTypeArg('governance_policy_report_created', None)
- governance_policy_zip_part_downloaded = EventTypeArg('governance_policy_zip_part_downloaded', None)
- group_add_external_id = EventTypeArg('group_add_external_id', None)
- group_add_member = EventTypeArg('group_add_member', None)
- group_change_external_id = EventTypeArg('group_change_external_id', None)
- group_change_management_type = EventTypeArg('group_change_management_type', None)
- group_change_member_role = EventTypeArg('group_change_member_role', None)
- group_create = EventTypeArg('group_create', None)
- group_delete = EventTypeArg('group_delete', None)
- group_description_updated = EventTypeArg('group_description_updated', None)
- group_external_sharing_setting_override_changed = EventTypeArg('group_external_sharing_setting_override_changed', None)
- group_join_policy_updated = EventTypeArg('group_join_policy_updated', None)
- group_moved = EventTypeArg('group_moved', None)
- group_remove_external_id = EventTypeArg('group_remove_external_id', None)
- group_remove_member = EventTypeArg('group_remove_member', None)
- group_rename = EventTypeArg('group_rename', None)
- group_user_management_change_policy = EventTypeArg('group_user_management_change_policy', None)
- guest_admin_change_status = EventTypeArg('guest_admin_change_status', None)
- guest_admin_signed_in_via_trusted_teams = EventTypeArg('guest_admin_signed_in_via_trusted_teams', None)
- guest_admin_signed_out_via_trusted_teams = EventTypeArg('guest_admin_signed_out_via_trusted_teams', None)
- integration_connected = EventTypeArg('integration_connected', None)
- integration_disconnected = EventTypeArg('integration_disconnected', None)
- integration_policy_changed = EventTypeArg('integration_policy_changed', None)
- invite_acceptance_email_policy_changed = EventTypeArg('invite_acceptance_email_policy_changed', None)
- is_account_capture_change_availability()
Check if the union tag is
account_capture_change_availability.- Return type:
bool
- is_account_capture_change_policy()
Check if the union tag is
account_capture_change_policy.- Return type:
bool
- is_account_capture_migrate_account()
Check if the union tag is
account_capture_migrate_account.- Return type:
bool
- is_account_capture_notification_emails_sent()
Check if the union tag is
account_capture_notification_emails_sent.- Return type:
bool
- is_account_capture_relinquish_account()
Check if the union tag is
account_capture_relinquish_account.- Return type:
bool
- is_account_lock_or_unlocked()
Check if the union tag is
account_lock_or_unlocked.- Return type:
bool
- is_addon_assigned()
Check if the union tag is
addon_assigned.- Return type:
bool
- is_addon_removed()
Check if the union tag is
addon_removed.- Return type:
bool
- is_admin_alerting_alert_state_changed()
Check if the union tag is
admin_alerting_alert_state_changed.- Return type:
bool
- is_admin_alerting_changed_alert_config()
Check if the union tag is
admin_alerting_changed_alert_config.- Return type:
bool
- is_admin_alerting_triggered_alert()
Check if the union tag is
admin_alerting_triggered_alert.- Return type:
bool
- is_admin_email_reminders_changed()
Check if the union tag is
admin_email_reminders_changed.- Return type:
bool
- is_ai_third_party_sharing_dropbox_base_policy_changed()
Check if the union tag is
ai_third_party_sharing_dropbox_base_policy_changed.- Return type:
bool
- is_allow_download_disabled()
Check if the union tag is
allow_download_disabled.- Return type:
bool
- is_allow_download_enabled()
Check if the union tag is
allow_download_enabled.- Return type:
bool
- is_app_blocked_by_permissions()
Check if the union tag is
app_blocked_by_permissions.- Return type:
bool
- is_app_link_team()
Check if the union tag is
app_link_team.- Return type:
bool
- is_app_link_user()
Check if the union tag is
app_link_user.- Return type:
bool
- is_app_permissions_changed()
Check if the union tag is
app_permissions_changed.- Return type:
bool
- is_app_unlink_team()
Check if the union tag is
app_unlink_team.- Return type:
bool
- is_app_unlink_user()
Check if the union tag is
app_unlink_user.- Return type:
bool
- is_apple_login_change_policy()
Check if the union tag is
apple_login_change_policy.- Return type:
bool
- is_apply_naming_convention()
Check if the union tag is
apply_naming_convention.- Return type:
bool
- is_backup_admin_invitation_sent()
Check if the union tag is
backup_admin_invitation_sent.- Return type:
bool
- is_backup_invitation_opened()
Check if the union tag is
backup_invitation_opened.- Return type:
bool
- is_binder_add_page()
Check if the union tag is
binder_add_page.- Return type:
bool
- is_binder_add_section()
Check if the union tag is
binder_add_section.- Return type:
bool
- is_binder_remove_page()
Check if the union tag is
binder_remove_page.- Return type:
bool
- is_binder_remove_section()
Check if the union tag is
binder_remove_section.- Return type:
bool
- is_binder_rename_page()
Check if the union tag is
binder_rename_page.- Return type:
bool
- is_binder_rename_section()
Check if the union tag is
binder_rename_section.- Return type:
bool
- is_binder_reorder_page()
Check if the union tag is
binder_reorder_page.- Return type:
bool
- is_binder_reorder_section()
Check if the union tag is
binder_reorder_section.- Return type:
bool
- is_camera_uploads_policy_changed()
Check if the union tag is
camera_uploads_policy_changed.- Return type:
bool
- is_capture_team_space_policy_changed()
Check if the union tag is
capture_team_space_policy_changed.- Return type:
bool
- is_capture_transcript_policy_changed()
Check if the union tag is
capture_transcript_policy_changed.- Return type:
bool
- is_changed_enterprise_admin_role()
Check if the union tag is
changed_enterprise_admin_role.- Return type:
bool
- is_changed_enterprise_connected_team_status()
Check if the union tag is
changed_enterprise_connected_team_status.- Return type:
bool
- is_classification_change_policy()
Check if the union tag is
classification_change_policy.- Return type:
bool
- is_classification_create_report()
Check if the union tag is
classification_create_report.- Return type:
bool
- is_classification_create_report_fail()
Check if the union tag is
classification_create_report_fail.- Return type:
bool
Check if the union tag is
collection_share.- Return type:
bool
- is_computer_backup_policy_changed()
Check if the union tag is
computer_backup_policy_changed.- Return type:
bool
- is_content_administration_policy_changed()
Check if the union tag is
content_administration_policy_changed.- Return type:
bool
- is_content_deletion_protection_change_policy()
Check if the union tag is
content_deletion_protection_change_policy.- Return type:
bool
- is_create_folder()
Check if the union tag is
create_folder.- Return type:
bool
- is_create_team_invite_link()
Check if the union tag is
create_team_invite_link.- Return type:
bool
- is_dash_added_comment_to_stack()
Check if the union tag is
dash_added_comment_to_stack.- Return type:
bool
- is_dash_added_connector()
Check if the union tag is
dash_added_connector.- Return type:
bool
- is_dash_added_link_to_stack()
Check if the union tag is
dash_added_link_to_stack.- Return type:
bool
- is_dash_added_team_email_domain_allowlist()
Check if the union tag is
dash_added_team_email_domain_allowlist.- Return type:
bool
- is_dash_admin_added_org_wide_connector()
Check if the union tag is
dash_admin_added_org_wide_connector.- Return type:
bool
- is_dash_admin_disabled_connector()
Check if the union tag is
dash_admin_disabled_connector.- Return type:
bool
- is_dash_admin_enabled_connector()
Check if the union tag is
dash_admin_enabled_connector.- Return type:
bool
- is_dash_admin_removed_org_wide_connector()
Check if the union tag is
dash_admin_removed_org_wide_connector.- Return type:
bool
- is_dash_archived_stack()
Check if the union tag is
dash_archived_stack.- Return type:
bool
Check if the union tag is
dash_changed_audience_of_shared_link_to_stack.- Return type:
bool
- is_dash_cloned_stack()
Check if the union tag is
dash_cloned_stack.- Return type:
bool
- is_dash_connector_tools_call()
Check if the union tag is
dash_connector_tools_call.- Return type:
bool
- is_dash_created_stack()
Check if the union tag is
dash_created_stack.- Return type:
bool
- is_dash_deleted_comment_from_stack()
Check if the union tag is
dash_deleted_comment_from_stack.- Return type:
bool
- is_dash_deleted_stack()
Check if the union tag is
dash_deleted_stack.- Return type:
bool
- is_dash_edited_comment_in_stack()
Check if the union tag is
dash_edited_comment_in_stack.- Return type:
bool
- is_dash_external_sharing_policy_changed()
Check if the union tag is
dash_external_sharing_policy_changed.- Return type:
bool
- is_dash_external_user_opened_stack()
Check if the union tag is
dash_external_user_opened_stack.- Return type:
bool
- is_dash_first_launched_desktop()
Check if the union tag is
dash_first_launched_desktop.- Return type:
bool
- is_dash_first_launched_extension()
Check if the union tag is
dash_first_launched_extension.- Return type:
bool
- is_dash_first_launched_web_start_page()
Check if the union tag is
dash_first_launched_web_start_page.- Return type:
bool
Check if the union tag is
dash_opened_shared_link_to_stack.- Return type:
bool
- is_dash_opened_stack()
Check if the union tag is
dash_opened_stack.- Return type:
bool
- is_dash_preview_opt_out_status_changed()
Check if the union tag is
dash_preview_opt_out_status_changed.- Return type:
bool
- is_dash_removed_connector()
Check if the union tag is
dash_removed_connector.- Return type:
bool
- is_dash_removed_link_from_stack()
Check if the union tag is
dash_removed_link_from_stack.- Return type:
bool
Check if the union tag is
dash_removed_shared_link_to_stack.- Return type:
bool
- is_dash_removed_team_email_domain_allowlist()
Check if the union tag is
dash_removed_team_email_domain_allowlist.- Return type:
bool
- is_dash_renamed_stack()
Check if the union tag is
dash_renamed_stack.- Return type:
bool
Check if the union tag is
dash_shared_link_to_stack.- Return type:
bool
- is_dash_unarchived_stack()
Check if the union tag is
dash_unarchived_stack.- Return type:
bool
- is_dash_viewed_company_stack()
Check if the union tag is
dash_viewed_company_stack.- Return type:
bool
- is_dash_viewed_external_ai_activity_report()
Check if the union tag is
dash_viewed_external_ai_activity_report.- Return type:
bool
- is_data_placement_restriction_change_policy()
Check if the union tag is
data_placement_restriction_change_policy.- Return type:
bool
- is_data_placement_restriction_satisfy_policy()
Check if the union tag is
data_placement_restriction_satisfy_policy.- Return type:
bool
- is_data_residency_migration_request_successful()
Check if the union tag is
data_residency_migration_request_successful.- Return type:
bool
- is_data_residency_migration_request_unsuccessful()
Check if the union tag is
data_residency_migration_request_unsuccessful.- Return type:
bool
- is_delete_team_invite_link()
Check if the union tag is
delete_team_invite_link.- Return type:
bool
- is_device_approvals_add_exception()
Check if the union tag is
device_approvals_add_exception.- Return type:
bool
- is_device_approvals_change_desktop_policy()
Check if the union tag is
device_approvals_change_desktop_policy.- Return type:
bool
- is_device_approvals_change_mobile_policy()
Check if the union tag is
device_approvals_change_mobile_policy.- Return type:
bool
- is_device_approvals_change_overage_action()
Check if the union tag is
device_approvals_change_overage_action.- Return type:
bool
- is_device_approvals_change_unlink_action()
Check if the union tag is
device_approvals_change_unlink_action.- Return type:
bool
- is_device_approvals_remove_exception()
Check if the union tag is
device_approvals_remove_exception.- Return type:
bool
- is_device_change_ip_desktop()
Check if the union tag is
device_change_ip_desktop.- Return type:
bool
- is_device_change_ip_mobile()
Check if the union tag is
device_change_ip_mobile.- Return type:
bool
- is_device_change_ip_web()
Check if the union tag is
device_change_ip_web.- Return type:
bool
- is_device_delete_on_unlink_fail()
Check if the union tag is
device_delete_on_unlink_fail.- Return type:
bool
- is_device_delete_on_unlink_success()
Check if the union tag is
device_delete_on_unlink_success.- Return type:
bool
- is_device_link_fail()
Check if the union tag is
device_link_fail.- Return type:
bool
- is_device_link_success()
Check if the union tag is
device_link_success.- Return type:
bool
- is_device_management_disabled()
Check if the union tag is
device_management_disabled.- Return type:
bool
- is_device_management_enabled()
Check if the union tag is
device_management_enabled.- Return type:
bool
- is_device_sync_backup_status_changed()
Check if the union tag is
device_sync_backup_status_changed.- Return type:
bool
- is_device_unlink()
Check if the union tag is
device_unlink.- Return type:
bool
- is_directory_restrictions_add_members()
Check if the union tag is
directory_restrictions_add_members.- Return type:
bool
- is_directory_restrictions_remove_members()
Check if the union tag is
directory_restrictions_remove_members.- Return type:
bool
- is_disabled_domain_invites()
Check if the union tag is
disabled_domain_invites.- Return type:
bool
- is_domain_invites_approve_request_to_join_team()
Check if the union tag is
domain_invites_approve_request_to_join_team.- Return type:
bool
- is_domain_invites_decline_request_to_join_team()
Check if the union tag is
domain_invites_decline_request_to_join_team.- Return type:
bool
- is_domain_invites_email_existing_users()
Check if the union tag is
domain_invites_email_existing_users.- Return type:
bool
- is_domain_invites_request_to_join_team()
Check if the union tag is
domain_invites_request_to_join_team.- Return type:
bool
- is_domain_invites_set_invite_new_user_pref_to_no()
Check if the union tag is
domain_invites_set_invite_new_user_pref_to_no.- Return type:
bool
- is_domain_invites_set_invite_new_user_pref_to_yes()
Check if the union tag is
domain_invites_set_invite_new_user_pref_to_yes.- Return type:
bool
- is_domain_verification_add_domain_fail()
Check if the union tag is
domain_verification_add_domain_fail.- Return type:
bool
- is_domain_verification_add_domain_success()
Check if the union tag is
domain_verification_add_domain_success.- Return type:
bool
- is_domain_verification_remove_domain()
Check if the union tag is
domain_verification_remove_domain.- Return type:
bool
- is_dropbox_passwords_exported()
Check if the union tag is
dropbox_passwords_exported.- Return type:
bool
- is_dropbox_passwords_new_device_enrolled()
Check if the union tag is
dropbox_passwords_new_device_enrolled.- Return type:
bool
- is_dropbox_passwords_policy_changed()
Check if the union tag is
dropbox_passwords_policy_changed.- Return type:
bool
- is_email_ingest_policy_changed()
Check if the union tag is
email_ingest_policy_changed.- Return type:
bool
- is_email_ingest_receive_file()
Check if the union tag is
email_ingest_receive_file.- Return type:
bool
- is_emm_add_exception()
Check if the union tag is
emm_add_exception.- Return type:
bool
- is_emm_change_policy()
Check if the union tag is
emm_change_policy.- Return type:
bool
- is_emm_create_exceptions_report()
Check if the union tag is
emm_create_exceptions_report.- Return type:
bool
- is_emm_create_usage_report()
Check if the union tag is
emm_create_usage_report.- Return type:
bool
- is_emm_error()
Check if the union tag is
emm_error.- Return type:
bool
- is_emm_refresh_auth_token()
Check if the union tag is
emm_refresh_auth_token.- Return type:
bool
- is_emm_remove_exception()
Check if the union tag is
emm_remove_exception.- Return type:
bool
- is_enabled_domain_invites()
Check if the union tag is
enabled_domain_invites.- Return type:
bool
- is_encrypted_folder_cancel_team_key_rotation()
Check if the union tag is
encrypted_folder_cancel_team_key_rotation.- Return type:
bool
- is_encrypted_folder_enroll_backup_key()
Check if the union tag is
encrypted_folder_enroll_backup_key.- Return type:
bool
- is_encrypted_folder_enroll_client()
Check if the union tag is
encrypted_folder_enroll_client.- Return type:
bool
- is_encrypted_folder_enroll_team()
Check if the union tag is
encrypted_folder_enroll_team.- Return type:
bool
- is_encrypted_folder_finish_team_unenrollment()
Check if the union tag is
encrypted_folder_finish_team_unenrollment.- Return type:
bool
- is_encrypted_folder_init_team_key_rotation()
Check if the union tag is
encrypted_folder_init_team_key_rotation.- Return type:
bool
- is_encrypted_folder_init_team_unenrollment()
Check if the union tag is
encrypted_folder_init_team_unenrollment.- Return type:
bool
- is_encrypted_folder_remove_backup_key()
Check if the union tag is
encrypted_folder_remove_backup_key.- Return type:
bool
- is_encrypted_folder_rotate_team_key()
Check if the union tag is
encrypted_folder_rotate_team_key.- Return type:
bool
- is_encrypted_folder_unenroll_client()
Check if the union tag is
encrypted_folder_unenroll_client.- Return type:
bool
- is_ended_enterprise_admin_session()
Check if the union tag is
ended_enterprise_admin_session.- Return type:
bool
- is_ended_enterprise_admin_session_deprecated()
Check if the union tag is
ended_enterprise_admin_session_deprecated.- Return type:
bool
- is_enterprise_settings_locking()
Check if the union tag is
enterprise_settings_locking.- Return type:
bool
- is_export_members_report()
Check if the union tag is
export_members_report.- Return type:
bool
- is_export_members_report_fail()
Check if the union tag is
export_members_report_fail.- Return type:
bool
- is_extended_version_history_change_policy()
Check if the union tag is
extended_version_history_change_policy.- Return type:
bool
- is_external_drive_backup_eligibility_status_checked()
Check if the union tag is
external_drive_backup_eligibility_status_checked.- Return type:
bool
- is_external_drive_backup_policy_changed()
Check if the union tag is
external_drive_backup_policy_changed.- Return type:
bool
- is_external_drive_backup_status_changed()
Check if the union tag is
external_drive_backup_status_changed.- Return type:
bool
- is_external_sharing_create_report()
Check if the union tag is
external_sharing_create_report.- Return type:
bool
- is_external_sharing_report_failed()
Check if the union tag is
external_sharing_report_failed.- Return type:
bool
- is_file_add()
Check if the union tag is
file_add.- Return type:
bool
- is_file_add_comment()
Check if the union tag is
file_add_comment.- Return type:
bool
- is_file_add_from_automation()
Check if the union tag is
file_add_from_automation.- Return type:
bool
- is_file_change_comment_subscription()
Check if the union tag is
file_change_comment_subscription.- Return type:
bool
- is_file_comments_change_policy()
Check if the union tag is
file_comments_change_policy.- Return type:
bool
- is_file_copy()
Check if the union tag is
file_copy.- Return type:
bool
- is_file_delete()
Check if the union tag is
file_delete.- Return type:
bool
- is_file_delete_comment()
Check if the union tag is
file_delete_comment.- Return type:
bool
- is_file_download()
Check if the union tag is
file_download.- Return type:
bool
- is_file_edit()
Check if the union tag is
file_edit.- Return type:
bool
- is_file_edit_comment()
Check if the union tag is
file_edit_comment.- Return type:
bool
- is_file_get_copy_reference()
Check if the union tag is
file_get_copy_reference.- Return type:
bool
- is_file_like_comment()
Check if the union tag is
file_like_comment.- Return type:
bool
- is_file_locking_lock_status_changed()
Check if the union tag is
file_locking_lock_status_changed.- Return type:
bool
- is_file_locking_policy_changed()
Check if the union tag is
file_locking_policy_changed.- Return type:
bool
- is_file_move()
Check if the union tag is
file_move.- Return type:
bool
- is_file_permanently_delete()
Check if the union tag is
file_permanently_delete.- Return type:
bool
- is_file_preview()
Check if the union tag is
file_preview.- Return type:
bool
- is_file_provider_migration_policy_changed()
Check if the union tag is
file_provider_migration_policy_changed.- Return type:
bool
- is_file_rename()
Check if the union tag is
file_rename.- Return type:
bool
- is_file_request_auto_close()
Check if the union tag is
file_request_auto_close.- Return type:
bool
- is_file_request_change()
Check if the union tag is
file_request_change.- Return type:
bool
- is_file_request_close()
Check if the union tag is
file_request_close.- Return type:
bool
- is_file_request_create()
Check if the union tag is
file_request_create.- Return type:
bool
- is_file_request_delete()
Check if the union tag is
file_request_delete.- Return type:
bool
- is_file_request_receive_file()
Check if the union tag is
file_request_receive_file.- Return type:
bool
- is_file_requests_change_policy()
Check if the union tag is
file_requests_change_policy.- Return type:
bool
- is_file_requests_emails_enabled()
Check if the union tag is
file_requests_emails_enabled.- Return type:
bool
- is_file_requests_emails_restricted_to_team_only()
Check if the union tag is
file_requests_emails_restricted_to_team_only.- Return type:
bool
- is_file_resolve_comment()
Check if the union tag is
file_resolve_comment.- Return type:
bool
- is_file_restore()
Check if the union tag is
file_restore.- Return type:
bool
- is_file_revert()
Check if the union tag is
file_revert.- Return type:
bool
- is_file_rollback_changes()
Check if the union tag is
file_rollback_changes.- Return type:
bool
- is_file_save_copy_reference()
Check if the union tag is
file_save_copy_reference.- Return type:
bool
- is_file_transfers_file_add()
Check if the union tag is
file_transfers_file_add.- Return type:
bool
- is_file_transfers_policy_changed()
Check if the union tag is
file_transfers_policy_changed.- Return type:
bool
- is_file_transfers_transfer_delete()
Check if the union tag is
file_transfers_transfer_delete.- Return type:
bool
- is_file_transfers_transfer_download()
Check if the union tag is
file_transfers_transfer_download.- Return type:
bool
- is_file_transfers_transfer_send()
Check if the union tag is
file_transfers_transfer_send.- Return type:
bool
- is_file_transfers_transfer_view()
Check if the union tag is
file_transfers_transfer_view.- Return type:
bool
- is_file_unlike_comment()
Check if the union tag is
file_unlike_comment.- Return type:
bool
- is_file_unresolve_comment()
Check if the union tag is
file_unresolve_comment.- Return type:
bool
- is_flexible_file_names_policy_changed()
Check if the union tag is
flexible_file_names_policy_changed.- Return type:
bool
- is_folder_link_restriction_policy_changed()
Check if the union tag is
folder_link_restriction_policy_changed.- Return type:
bool
- is_folder_overview_description_changed()
Check if the union tag is
folder_overview_description_changed.- Return type:
bool
- is_folder_overview_item_pinned()
Check if the union tag is
folder_overview_item_pinned.- Return type:
bool
- is_folder_overview_item_unpinned()
Check if the union tag is
folder_overview_item_unpinned.- Return type:
bool
- is_google_sso_change_policy()
Check if the union tag is
google_sso_change_policy.- Return type:
bool
- is_governance_policy_add_folder_failed()
Check if the union tag is
governance_policy_add_folder_failed.- Return type:
bool
- is_governance_policy_add_folders()
Check if the union tag is
governance_policy_add_folders.- Return type:
bool
- is_governance_policy_content_disposed()
Check if the union tag is
governance_policy_content_disposed.- Return type:
bool
- is_governance_policy_create()
Check if the union tag is
governance_policy_create.- Return type:
bool
- is_governance_policy_delete()
Check if the union tag is
governance_policy_delete.- Return type:
bool
- is_governance_policy_edit_details()
Check if the union tag is
governance_policy_edit_details.- Return type:
bool
- is_governance_policy_edit_duration()
Check if the union tag is
governance_policy_edit_duration.- Return type:
bool
- is_governance_policy_export_created()
Check if the union tag is
governance_policy_export_created.- Return type:
bool
- is_governance_policy_export_removed()
Check if the union tag is
governance_policy_export_removed.- Return type:
bool
- is_governance_policy_remove_folders()
Check if the union tag is
governance_policy_remove_folders.- Return type:
bool
- is_governance_policy_report_created()
Check if the union tag is
governance_policy_report_created.- Return type:
bool
- is_governance_policy_zip_part_downloaded()
Check if the union tag is
governance_policy_zip_part_downloaded.- Return type:
bool
- is_group_add_external_id()
Check if the union tag is
group_add_external_id.- Return type:
bool
- is_group_add_member()
Check if the union tag is
group_add_member.- Return type:
bool
- is_group_change_external_id()
Check if the union tag is
group_change_external_id.- Return type:
bool
- is_group_change_management_type()
Check if the union tag is
group_change_management_type.- Return type:
bool
- is_group_change_member_role()
Check if the union tag is
group_change_member_role.- Return type:
bool
- is_group_create()
Check if the union tag is
group_create.- Return type:
bool
- is_group_delete()
Check if the union tag is
group_delete.- Return type:
bool
- is_group_description_updated()
Check if the union tag is
group_description_updated.- Return type:
bool
- is_group_external_sharing_setting_override_changed()
Check if the union tag is
group_external_sharing_setting_override_changed.- Return type:
bool
- is_group_join_policy_updated()
Check if the union tag is
group_join_policy_updated.- Return type:
bool
- is_group_moved()
Check if the union tag is
group_moved.- Return type:
bool
- is_group_remove_external_id()
Check if the union tag is
group_remove_external_id.- Return type:
bool
- is_group_remove_member()
Check if the union tag is
group_remove_member.- Return type:
bool
- is_group_rename()
Check if the union tag is
group_rename.- Return type:
bool
- is_group_user_management_change_policy()
Check if the union tag is
group_user_management_change_policy.- Return type:
bool
- is_guest_admin_change_status()
Check if the union tag is
guest_admin_change_status.- Return type:
bool
- is_guest_admin_signed_in_via_trusted_teams()
Check if the union tag is
guest_admin_signed_in_via_trusted_teams.- Return type:
bool
- is_guest_admin_signed_out_via_trusted_teams()
Check if the union tag is
guest_admin_signed_out_via_trusted_teams.- Return type:
bool
- is_integration_connected()
Check if the union tag is
integration_connected.- Return type:
bool
- is_integration_disconnected()
Check if the union tag is
integration_disconnected.- Return type:
bool
- is_integration_policy_changed()
Check if the union tag is
integration_policy_changed.- Return type:
bool
- is_invite_acceptance_email_policy_changed()
Check if the union tag is
invite_acceptance_email_policy_changed.- Return type:
bool
- is_legal_holds_activate_a_hold()
Check if the union tag is
legal_holds_activate_a_hold.- Return type:
bool
- is_legal_holds_add_members()
Check if the union tag is
legal_holds_add_members.- Return type:
bool
- is_legal_holds_change_hold_details()
Check if the union tag is
legal_holds_change_hold_details.- Return type:
bool
- is_legal_holds_change_hold_name()
Check if the union tag is
legal_holds_change_hold_name.- Return type:
bool
- is_legal_holds_export_a_hold()
Check if the union tag is
legal_holds_export_a_hold.- Return type:
bool
- is_legal_holds_export_cancelled()
Check if the union tag is
legal_holds_export_cancelled.- Return type:
bool
- is_legal_holds_export_downloaded()
Check if the union tag is
legal_holds_export_downloaded.- Return type:
bool
- is_legal_holds_export_removed()
Check if the union tag is
legal_holds_export_removed.- Return type:
bool
- is_legal_holds_release_a_hold()
Check if the union tag is
legal_holds_release_a_hold.- Return type:
bool
- is_legal_holds_remove_members()
Check if the union tag is
legal_holds_remove_members.- Return type:
bool
- is_legal_holds_report_a_hold()
Check if the union tag is
legal_holds_report_a_hold.- Return type:
bool
- is_login_fail()
Check if the union tag is
login_fail.- Return type:
bool
- is_login_success()
Check if the union tag is
login_success.- Return type:
bool
- is_logout()
Check if the union tag is
logout.- Return type:
bool
- is_media_hub_adding_people_policy_changed()
Check if the union tag is
media_hub_adding_people_policy_changed.- Return type:
bool
- is_media_hub_download_policy_changed()
Check if the union tag is
media_hub_download_policy_changed.- Return type:
bool
- is_media_hub_file_downloaded()
Check if the union tag is
media_hub_file_downloaded.- Return type:
bool
- is_media_hub_link_sharing_policy_changed()
Check if the union tag is
media_hub_link_sharing_policy_changed.- Return type:
bool
- is_media_hub_project_team_add()
Check if the union tag is
media_hub_project_team_add.- Return type:
bool
- is_media_hub_project_team_delete()
Check if the union tag is
media_hub_project_team_delete.- Return type:
bool
- is_media_hub_project_team_role_changed()
Check if the union tag is
media_hub_project_team_role_changed.- Return type:
bool
Check if the union tag is
media_hub_shared_link_audience_changed.- Return type:
bool
Check if the union tag is
media_hub_shared_link_created.- Return type:
bool
Check if the union tag is
media_hub_shared_link_download_setting_changed.- Return type:
bool
Check if the union tag is
media_hub_shared_link_revoked.- Return type:
bool
- is_member_access_details_create_report()
Check if the union tag is
member_access_details_create_report.- Return type:
bool
- is_member_access_details_create_report_failed()
Check if the union tag is
member_access_details_create_report_failed.- Return type:
bool
- is_member_add_external_id()
Check if the union tag is
member_add_external_id.- Return type:
bool
- is_member_add_name()
Check if the union tag is
member_add_name.- Return type:
bool
- is_member_change_admin_role()
Check if the union tag is
member_change_admin_role.- Return type:
bool
- is_member_change_email()
Check if the union tag is
member_change_email.- Return type:
bool
- is_member_change_external_id()
Check if the union tag is
member_change_external_id.- Return type:
bool
- is_member_change_membership_type()
Check if the union tag is
member_change_membership_type.- Return type:
bool
- is_member_change_name()
Check if the union tag is
member_change_name.- Return type:
bool
- is_member_change_reseller_role()
Check if the union tag is
member_change_reseller_role.- Return type:
bool
- is_member_change_status()
Check if the union tag is
member_change_status.- Return type:
bool
- is_member_delete_manual_contacts()
Check if the union tag is
member_delete_manual_contacts.- Return type:
bool
- is_member_delete_profile_photo()
Check if the union tag is
member_delete_profile_photo.- Return type:
bool
- is_member_permanently_delete_account_contents()
Check if the union tag is
member_permanently_delete_account_contents.- Return type:
bool
- is_member_remove_external_id()
Check if the union tag is
member_remove_external_id.- Return type:
bool
- is_member_requests_change_policy()
Check if the union tag is
member_requests_change_policy.- Return type:
bool
- is_member_send_invite_policy_changed()
Check if the union tag is
member_send_invite_policy_changed.- Return type:
bool
- is_member_set_profile_photo()
Check if the union tag is
member_set_profile_photo.- Return type:
bool
- is_member_space_limits_add_custom_quota()
Check if the union tag is
member_space_limits_add_custom_quota.- Return type:
bool
- is_member_space_limits_add_exception()
Check if the union tag is
member_space_limits_add_exception.- Return type:
bool
- is_member_space_limits_change_caps_type_policy()
Check if the union tag is
member_space_limits_change_caps_type_policy.- Return type:
bool
- is_member_space_limits_change_custom_quota()
Check if the union tag is
member_space_limits_change_custom_quota.- Return type:
bool
- is_member_space_limits_change_policy()
Check if the union tag is
member_space_limits_change_policy.- Return type:
bool
- is_member_space_limits_change_status()
Check if the union tag is
member_space_limits_change_status.- Return type:
bool
- is_member_space_limits_remove_custom_quota()
Check if the union tag is
member_space_limits_remove_custom_quota.- Return type:
bool
- is_member_space_limits_remove_exception()
Check if the union tag is
member_space_limits_remove_exception.- Return type:
bool
- is_member_suggest()
Check if the union tag is
member_suggest.- Return type:
bool
- is_member_suggestions_change_policy()
Check if the union tag is
member_suggestions_change_policy.- Return type:
bool
- is_member_transfer_account_contents()
Check if the union tag is
member_transfer_account_contents.- Return type:
bool
- is_microsoft_login_change_policy()
Check if the union tag is
microsoft_login_change_policy.- Return type:
bool
- is_microsoft_office_addin_change_policy()
Check if the union tag is
microsoft_office_addin_change_policy.- Return type:
bool
- is_multi_team_identity_policy_changed()
Check if the union tag is
multi_team_identity_policy_changed.- Return type:
bool
- is_network_control_change_policy()
Check if the union tag is
network_control_change_policy.- Return type:
bool
- is_no_expiration_link_gen_create_report()
Check if the union tag is
no_expiration_link_gen_create_report.- Return type:
bool
- is_no_expiration_link_gen_report_failed()
Check if the union tag is
no_expiration_link_gen_report_failed.- Return type:
bool
- is_no_password_link_gen_create_report()
Check if the union tag is
no_password_link_gen_create_report.- Return type:
bool
- is_no_password_link_gen_report_failed()
Check if the union tag is
no_password_link_gen_report_failed.- Return type:
bool
- is_no_password_link_view_create_report()
Check if the union tag is
no_password_link_view_create_report.- Return type:
bool
- is_no_password_link_view_report_failed()
Check if the union tag is
no_password_link_view_report_failed.- Return type:
bool
- is_note_acl_invite_only()
Check if the union tag is
note_acl_invite_only.- Return type:
bool
- is_note_acl_link()
Check if the union tag is
note_acl_link.- Return type:
bool
- is_note_acl_team_link()
Check if the union tag is
note_acl_team_link.- Return type:
bool
Check if the union tag is
note_share_receive.- Return type:
bool
Check if the union tag is
note_shared.- Return type:
bool
- is_object_label_added()
Check if the union tag is
object_label_added.- Return type:
bool
- is_object_label_removed()
Check if the union tag is
object_label_removed.- Return type:
bool
- is_object_label_updated_value()
Check if the union tag is
object_label_updated_value.- Return type:
bool
Check if the union tag is
open_note_shared.- Return type:
bool
- is_organize_folder_with_tidy()
Check if the union tag is
organize_folder_with_tidy.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- is_outdated_link_view_create_report()
Check if the union tag is
outdated_link_view_create_report.- Return type:
bool
- is_outdated_link_view_report_failed()
Check if the union tag is
outdated_link_view_report_failed.- Return type:
bool
- is_paper_admin_export_start()
Check if the union tag is
paper_admin_export_start.- Return type:
bool
- is_paper_change_deployment_policy()
Check if the union tag is
paper_change_deployment_policy.- Return type:
bool
- is_paper_change_member_link_policy()
Check if the union tag is
paper_change_member_link_policy.- Return type:
bool
- is_paper_change_member_policy()
Check if the union tag is
paper_change_member_policy.- Return type:
bool
- is_paper_change_policy()
Check if the union tag is
paper_change_policy.- Return type:
bool
- is_paper_content_add_member()
Check if the union tag is
paper_content_add_member.- Return type:
bool
- is_paper_content_add_to_folder()
Check if the union tag is
paper_content_add_to_folder.- Return type:
bool
- is_paper_content_archive()
Check if the union tag is
paper_content_archive.- Return type:
bool
- is_paper_content_create()
Check if the union tag is
paper_content_create.- Return type:
bool
- is_paper_content_permanently_delete()
Check if the union tag is
paper_content_permanently_delete.- Return type:
bool
- is_paper_content_remove_from_folder()
Check if the union tag is
paper_content_remove_from_folder.- Return type:
bool
- is_paper_content_remove_member()
Check if the union tag is
paper_content_remove_member.- Return type:
bool
- is_paper_content_rename()
Check if the union tag is
paper_content_rename.- Return type:
bool
- is_paper_content_restore()
Check if the union tag is
paper_content_restore.- Return type:
bool
- is_paper_default_folder_policy_changed()
Check if the union tag is
paper_default_folder_policy_changed.- Return type:
bool
- is_paper_desktop_policy_changed()
Check if the union tag is
paper_desktop_policy_changed.- Return type:
bool
- is_paper_doc_add_comment()
Check if the union tag is
paper_doc_add_comment.- Return type:
bool
- is_paper_doc_change_member_role()
Check if the union tag is
paper_doc_change_member_role.- Return type:
bool
- is_paper_doc_change_sharing_policy()
Check if the union tag is
paper_doc_change_sharing_policy.- Return type:
bool
- is_paper_doc_change_subscription()
Check if the union tag is
paper_doc_change_subscription.- Return type:
bool
- is_paper_doc_delete_comment()
Check if the union tag is
paper_doc_delete_comment.- Return type:
bool
- is_paper_doc_deleted()
Check if the union tag is
paper_doc_deleted.- Return type:
bool
- is_paper_doc_download()
Check if the union tag is
paper_doc_download.- Return type:
bool
- is_paper_doc_edit()
Check if the union tag is
paper_doc_edit.- Return type:
bool
- is_paper_doc_edit_comment()
Check if the union tag is
paper_doc_edit_comment.- Return type:
bool
- is_paper_doc_followed()
Check if the union tag is
paper_doc_followed.- Return type:
bool
- is_paper_doc_mention()
Check if the union tag is
paper_doc_mention.- Return type:
bool
- is_paper_doc_ownership_changed()
Check if the union tag is
paper_doc_ownership_changed.- Return type:
bool
- is_paper_doc_request_access()
Check if the union tag is
paper_doc_request_access.- Return type:
bool
- is_paper_doc_resolve_comment()
Check if the union tag is
paper_doc_resolve_comment.- Return type:
bool
- is_paper_doc_revert()
Check if the union tag is
paper_doc_revert.- Return type:
bool
Check if the union tag is
paper_doc_slack_share.- Return type:
bool
- is_paper_doc_team_invite()
Check if the union tag is
paper_doc_team_invite.- Return type:
bool
- is_paper_doc_trashed()
Check if the union tag is
paper_doc_trashed.- Return type:
bool
- is_paper_doc_unresolve_comment()
Check if the union tag is
paper_doc_unresolve_comment.- Return type:
bool
- is_paper_doc_untrashed()
Check if the union tag is
paper_doc_untrashed.- Return type:
bool
- is_paper_doc_view()
Check if the union tag is
paper_doc_view.- Return type:
bool
- is_paper_enabled_users_group_addition()
Check if the union tag is
paper_enabled_users_group_addition.- Return type:
bool
- is_paper_enabled_users_group_removal()
Check if the union tag is
paper_enabled_users_group_removal.- Return type:
bool
- is_paper_external_view_allow()
Check if the union tag is
paper_external_view_allow.- Return type:
bool
- is_paper_external_view_default_team()
Check if the union tag is
paper_external_view_default_team.- Return type:
bool
- is_paper_external_view_forbid()
Check if the union tag is
paper_external_view_forbid.- Return type:
bool
- is_paper_folder_change_subscription()
Check if the union tag is
paper_folder_change_subscription.- Return type:
bool
- is_paper_folder_deleted()
Check if the union tag is
paper_folder_deleted.- Return type:
bool
- is_paper_folder_followed()
Check if the union tag is
paper_folder_followed.- Return type:
bool
- is_paper_folder_team_invite()
Check if the union tag is
paper_folder_team_invite.- Return type:
bool
- is_paper_published_link_change_permission()
Check if the union tag is
paper_published_link_change_permission.- Return type:
bool
- is_paper_published_link_create()
Check if the union tag is
paper_published_link_create.- Return type:
bool
- is_paper_published_link_disabled()
Check if the union tag is
paper_published_link_disabled.- Return type:
bool
- is_paper_published_link_view()
Check if the union tag is
paper_published_link_view.- Return type:
bool
- is_passkey_add()
Check if the union tag is
passkey_add.- Return type:
bool
- is_passkey_login_policy_changed()
Check if the union tag is
passkey_login_policy_changed.- Return type:
bool
- is_passkey_remove()
Check if the union tag is
passkey_remove.- Return type:
bool
- is_password_change()
Check if the union tag is
password_change.- Return type:
bool
- is_password_reset()
Check if the union tag is
password_reset.- Return type:
bool
- is_password_reset_all()
Check if the union tag is
password_reset_all.- Return type:
bool
- is_password_strength_requirements_change_policy()
Check if the union tag is
password_strength_requirements_change_policy.- Return type:
bool
- is_pending_secondary_email_added()
Check if the union tag is
pending_secondary_email_added.- Return type:
bool
- is_permanent_delete_change_policy()
Check if the union tag is
permanent_delete_change_policy.- Return type:
bool
- is_previews_ai_policy_changed()
Check if the union tag is
previews_ai_policy_changed.- Return type:
bool
- is_product_assigned_to_member()
Check if the union tag is
product_assigned_to_member.- Return type:
bool
- is_product_removed_from_member()
Check if the union tag is
product_removed_from_member.- Return type:
bool
- is_protect_internal_domains_changed()
Check if the union tag is
protect_internal_domains_changed.- Return type:
bool
- is_ransomware_alert_create_report()
Check if the union tag is
ransomware_alert_create_report.- Return type:
bool
- is_ransomware_alert_create_report_failed()
Check if the union tag is
ransomware_alert_create_report_failed.- Return type:
bool
- is_ransomware_restore_process_completed()
Check if the union tag is
ransomware_restore_process_completed.- Return type:
bool
- is_ransomware_restore_process_started()
Check if the union tag is
ransomware_restore_process_started.- Return type:
bool
- is_replay_adding_people_policy_changed()
Check if the union tag is
replay_adding_people_policy_changed.- Return type:
bool
- is_replay_file_delete()
Check if the union tag is
replay_file_delete.- Return type:
bool
- is_replay_file_downloaded()
Check if the union tag is
replay_file_downloaded.- Return type:
bool
Check if the union tag is
replay_file_shared_link_created.- Return type:
bool
Check if the union tag is
replay_file_shared_link_modified.- Return type:
bool
- is_replay_project_team_add()
Check if the union tag is
replay_project_team_add.- Return type:
bool
- is_replay_project_team_delete()
Check if the union tag is
replay_project_team_delete.- Return type:
bool
- is_replay_sharing_policy_changed()
Check if the union tag is
replay_sharing_policy_changed.- Return type:
bool
- is_replay_team_project_created()
Check if the union tag is
replay_team_project_created.- Return type:
bool
- is_reseller_support_change_policy()
Check if the union tag is
reseller_support_change_policy.- Return type:
bool
- is_reseller_support_session_end()
Check if the union tag is
reseller_support_session_end.- Return type:
bool
- is_reseller_support_session_start()
Check if the union tag is
reseller_support_session_start.- Return type:
bool
- is_rewind_folder()
Check if the union tag is
rewind_folder.- Return type:
bool
- is_rewind_policy_changed()
Check if the union tag is
rewind_policy_changed.- Return type:
bool
- is_risc_security_event()
Check if the union tag is
risc_security_event.- Return type:
bool
- is_secondary_email_deleted()
Check if the union tag is
secondary_email_deleted.- Return type:
bool
- is_secondary_email_verified()
Check if the union tag is
secondary_email_verified.- Return type:
bool
- is_secondary_mails_policy_changed()
Check if the union tag is
secondary_mails_policy_changed.- Return type:
bool
- is_send_and_track_file_added()
Check if the union tag is
send_and_track_file_added.- Return type:
bool
- is_send_and_track_file_renamed()
Check if the union tag is
send_and_track_file_renamed.- Return type:
bool
- is_send_and_track_file_updated()
Check if the union tag is
send_and_track_file_updated.- Return type:
bool
- is_send_and_track_link_created()
Check if the union tag is
send_and_track_link_created.- Return type:
bool
- is_send_and_track_link_deleted()
Check if the union tag is
send_and_track_link_deleted.- Return type:
bool
- is_send_and_track_link_updated()
Check if the union tag is
send_and_track_link_updated.- Return type:
bool
- is_send_and_track_link_viewed()
Check if the union tag is
send_and_track_link_viewed.- Return type:
bool
- is_send_and_track_policy_changed()
Check if the union tag is
send_and_track_policy_changed.- Return type:
bool
- is_send_and_track_removed_file_and_associated_links()
Check if the union tag is
send_and_track_removed_file_and_associated_links.- Return type:
bool
- is_send_external_sharing_policy_changed()
Check if the union tag is
send_external_sharing_policy_changed.- Return type:
bool
- is_send_for_signature_policy_changed()
Check if the union tag is
send_for_signature_policy_changed.- Return type:
bool
- is_sf_add_group()
Check if the union tag is
sf_add_group.- Return type:
bool
Check if the union tag is
sf_allow_non_members_to_view_shared_links.- Return type:
bool
- is_sf_external_invite_warn()
Check if the union tag is
sf_external_invite_warn.- Return type:
bool
- is_sf_fb_invite()
Check if the union tag is
sf_fb_invite.- Return type:
bool
- is_sf_fb_invite_change_role()
Check if the union tag is
sf_fb_invite_change_role.- Return type:
bool
- is_sf_fb_uninvite()
Check if the union tag is
sf_fb_uninvite.- Return type:
bool
- is_sf_invite_group()
Check if the union tag is
sf_invite_group.- Return type:
bool
- is_sf_team_grant_access()
Check if the union tag is
sf_team_grant_access.- Return type:
bool
- is_sf_team_invite()
Check if the union tag is
sf_team_invite.- Return type:
bool
- is_sf_team_invite_change_role()
Check if the union tag is
sf_team_invite_change_role.- Return type:
bool
- is_sf_team_join()
Check if the union tag is
sf_team_join.- Return type:
bool
- is_sf_team_join_from_oob_link()
Check if the union tag is
sf_team_join_from_oob_link.- Return type:
bool
- is_sf_team_uninvite()
Check if the union tag is
sf_team_uninvite.- Return type:
bool
Check if the union tag is
shared_content_add_invitees.- Return type:
bool
Check if the union tag is
shared_content_add_link_expiry.- Return type:
bool
Check if the union tag is
shared_content_add_link_password.- Return type:
bool
Check if the union tag is
shared_content_add_member.- Return type:
bool
Check if the union tag is
shared_content_change_downloads_policy.- Return type:
bool
Check if the union tag is
shared_content_change_invitee_role.- Return type:
bool
Check if the union tag is
shared_content_change_link_audience.- Return type:
bool
Check if the union tag is
shared_content_change_link_expiry.- Return type:
bool
Check if the union tag is
shared_content_change_link_password.- Return type:
bool
Check if the union tag is
shared_content_change_member_role.- Return type:
bool
Check if the union tag is
shared_content_change_viewer_info_policy.- Return type:
bool
Check if the union tag is
shared_content_claim_invitation.- Return type:
bool
Check if the union tag is
shared_content_copy.- Return type:
bool
Check if the union tag is
shared_content_download.- Return type:
bool
Check if the union tag is
shared_content_relinquish_membership.- Return type:
bool
Check if the union tag is
shared_content_remove_invitees.- Return type:
bool
Check if the union tag is
shared_content_remove_link_expiry.- Return type:
bool
Check if the union tag is
shared_content_remove_link_password.- Return type:
bool
Check if the union tag is
shared_content_remove_member.- Return type:
bool
Check if the union tag is
shared_content_request_access.- Return type:
bool
Check if the union tag is
shared_content_restore_invitees.- Return type:
bool
Check if the union tag is
shared_content_restore_member.- Return type:
bool
Check if the union tag is
shared_content_unshare.- Return type:
bool
Check if the union tag is
shared_content_view.- Return type:
bool
Check if the union tag is
shared_folder_change_link_policy.- Return type:
bool
Check if the union tag is
shared_folder_change_members_inheritance_policy.- Return type:
bool
Check if the union tag is
shared_folder_change_members_management_policy.- Return type:
bool
Check if the union tag is
shared_folder_change_members_policy.- Return type:
bool
Check if the union tag is
shared_folder_create.- Return type:
bool
Check if the union tag is
shared_folder_decline_invitation.- Return type:
bool
Check if the union tag is
shared_folder_mount.- Return type:
bool
Check if the union tag is
shared_folder_nest.- Return type:
bool
Check if the union tag is
shared_folder_transfer_ownership.- Return type:
bool
Check if the union tag is
shared_folder_unmount.- Return type:
bool
Check if the union tag is
shared_folders_create_report.- Return type:
bool
Check if the union tag is
shared_folders_create_report_failed.- Return type:
bool
Check if the union tag is
shared_link_add_expiry.- Return type:
bool
Check if the union tag is
shared_link_change_expiry.- Return type:
bool
Check if the union tag is
shared_link_change_visibility.- Return type:
bool
Check if the union tag is
shared_link_copy.- Return type:
bool
Check if the union tag is
shared_link_create.- Return type:
bool
Check if the union tag is
shared_link_default_permissions_policy_changed.- Return type:
bool
Check if the union tag is
shared_link_disable.- Return type:
bool
Check if the union tag is
shared_link_download.- Return type:
bool
Check if the union tag is
shared_link_remove_expiry.- Return type:
bool
Check if the union tag is
shared_link_remove_visitor.- Return type:
bool
Check if the union tag is
shared_link_settings_add_expiration.- Return type:
bool
Check if the union tag is
shared_link_settings_add_password.- Return type:
bool
Check if the union tag is
shared_link_settings_allow_download_disabled.- Return type:
bool
Check if the union tag is
shared_link_settings_allow_download_enabled.- Return type:
bool
Check if the union tag is
shared_link_settings_change_audience.- Return type:
bool
Check if the union tag is
shared_link_settings_change_expiration.- Return type:
bool
Check if the union tag is
shared_link_settings_change_password.- Return type:
bool
Check if the union tag is
shared_link_settings_remove_expiration.- Return type:
bool
Check if the union tag is
shared_link_settings_remove_password.- Return type:
bool
Check if the union tag is
shared_link_share.- Return type:
bool
Check if the union tag is
shared_link_view.- Return type:
bool
Check if the union tag is
shared_note_opened.- Return type:
bool
- is_sharing_change_folder_join_policy()
Check if the union tag is
sharing_change_folder_join_policy.- Return type:
bool
- is_sharing_change_link_allow_change_expiration_policy()
Check if the union tag is
sharing_change_link_allow_change_expiration_policy.- Return type:
bool
- is_sharing_change_link_default_expiration_policy()
Check if the union tag is
sharing_change_link_default_expiration_policy.- Return type:
bool
- is_sharing_change_link_enforce_password_policy()
Check if the union tag is
sharing_change_link_enforce_password_policy.- Return type:
bool
- is_sharing_change_link_policy()
Check if the union tag is
sharing_change_link_policy.- Return type:
bool
- is_sharing_change_member_policy()
Check if the union tag is
sharing_change_member_policy.- Return type:
bool
- is_shmodel_disable_downloads()
Check if the union tag is
shmodel_disable_downloads.- Return type:
bool
- is_shmodel_enable_downloads()
Check if the union tag is
shmodel_enable_downloads.- Return type:
bool
Check if the union tag is
shmodel_group_share.- Return type:
bool
- is_showcase_access_granted()
Check if the union tag is
showcase_access_granted.- Return type:
bool
- is_showcase_add_member()
Check if the union tag is
showcase_add_member.- Return type:
bool
- is_showcase_archived()
Check if the union tag is
showcase_archived.- Return type:
bool
- is_showcase_change_download_policy()
Check if the union tag is
showcase_change_download_policy.- Return type:
bool
- is_showcase_change_enabled_policy()
Check if the union tag is
showcase_change_enabled_policy.- Return type:
bool
- is_showcase_change_external_sharing_policy()
Check if the union tag is
showcase_change_external_sharing_policy.- Return type:
bool
- is_showcase_created()
Check if the union tag is
showcase_created.- Return type:
bool
- is_showcase_delete_comment()
Check if the union tag is
showcase_delete_comment.- Return type:
bool
- is_showcase_edit_comment()
Check if the union tag is
showcase_edit_comment.- Return type:
bool
- is_showcase_edited()
Check if the union tag is
showcase_edited.- Return type:
bool
- is_showcase_file_added()
Check if the union tag is
showcase_file_added.- Return type:
bool
- is_showcase_file_download()
Check if the union tag is
showcase_file_download.- Return type:
bool
- is_showcase_file_removed()
Check if the union tag is
showcase_file_removed.- Return type:
bool
- is_showcase_file_view()
Check if the union tag is
showcase_file_view.- Return type:
bool
- is_showcase_permanently_deleted()
Check if the union tag is
showcase_permanently_deleted.- Return type:
bool
- is_showcase_post_comment()
Check if the union tag is
showcase_post_comment.- Return type:
bool
- is_showcase_remove_member()
Check if the union tag is
showcase_remove_member.- Return type:
bool
- is_showcase_renamed()
Check if the union tag is
showcase_renamed.- Return type:
bool
- is_showcase_request_access()
Check if the union tag is
showcase_request_access.- Return type:
bool
- is_showcase_resolve_comment()
Check if the union tag is
showcase_resolve_comment.- Return type:
bool
- is_showcase_restored()
Check if the union tag is
showcase_restored.- Return type:
bool
- is_showcase_trashed()
Check if the union tag is
showcase_trashed.- Return type:
bool
- is_showcase_trashed_deprecated()
Check if the union tag is
showcase_trashed_deprecated.- Return type:
bool
- is_showcase_unresolve_comment()
Check if the union tag is
showcase_unresolve_comment.- Return type:
bool
- is_showcase_untrashed()
Check if the union tag is
showcase_untrashed.- Return type:
bool
- is_showcase_untrashed_deprecated()
Check if the union tag is
showcase_untrashed_deprecated.- Return type:
bool
- is_showcase_view()
Check if the union tag is
showcase_view.- Return type:
bool
- is_sign_external_sharing_policy_changed()
Check if the union tag is
sign_external_sharing_policy_changed.- Return type:
bool
- is_sign_in_as_session_end()
Check if the union tag is
sign_in_as_session_end.- Return type:
bool
- is_sign_in_as_session_start()
Check if the union tag is
sign_in_as_session_start.- Return type:
bool
- is_sign_signature_request_canceled()
Check if the union tag is
sign_signature_request_canceled.- Return type:
bool
- is_sign_signature_request_completed()
Check if the union tag is
sign_signature_request_completed.- Return type:
bool
- is_sign_signature_request_declined()
Check if the union tag is
sign_signature_request_declined.- Return type:
bool
- is_sign_signature_request_opened()
Check if the union tag is
sign_signature_request_opened.- Return type:
bool
- is_sign_signature_request_reminder_sent()
Check if the union tag is
sign_signature_request_reminder_sent.- Return type:
bool
- is_sign_signature_request_sent()
Check if the union tag is
sign_signature_request_sent.- Return type:
bool
- is_sign_template_created()
Check if the union tag is
sign_template_created.- Return type:
bool
- is_sign_template_creation_permission_changed()
Check if the union tag is
sign_template_creation_permission_changed.- Return type:
bool
Check if the union tag is
sign_template_shared.- Return type:
bool
- is_smart_sync_change_policy()
Check if the union tag is
smart_sync_change_policy.- Return type:
bool
- is_smart_sync_create_admin_privilege_report()
Check if the union tag is
smart_sync_create_admin_privilege_report.- Return type:
bool
- is_smart_sync_not_opt_out()
Check if the union tag is
smart_sync_not_opt_out.- Return type:
bool
- is_smart_sync_opt_out()
Check if the union tag is
smart_sync_opt_out.- Return type:
bool
- is_smarter_smart_sync_policy_changed()
Check if the union tag is
smarter_smart_sync_policy_changed.- Return type:
bool
- is_sso_add_cert()
Check if the union tag is
sso_add_cert.- Return type:
bool
- is_sso_add_login_url()
Check if the union tag is
sso_add_login_url.- Return type:
bool
- is_sso_add_logout_url()
Check if the union tag is
sso_add_logout_url.- Return type:
bool
- is_sso_change_cert()
Check if the union tag is
sso_change_cert.- Return type:
bool
- is_sso_change_login_url()
Check if the union tag is
sso_change_login_url.- Return type:
bool
- is_sso_change_logout_url()
Check if the union tag is
sso_change_logout_url.- Return type:
bool
- is_sso_change_policy()
Check if the union tag is
sso_change_policy.- Return type:
bool
- is_sso_change_saml_identity_mode()
Check if the union tag is
sso_change_saml_identity_mode.- Return type:
bool
- is_sso_error()
Check if the union tag is
sso_error.- Return type:
bool
- is_sso_remove_cert()
Check if the union tag is
sso_remove_cert.- Return type:
bool
- is_sso_remove_login_url()
Check if the union tag is
sso_remove_login_url.- Return type:
bool
- is_sso_remove_logout_url()
Check if the union tag is
sso_remove_logout_url.- Return type:
bool
- is_stack_cross_team_access_policy_changed()
Check if the union tag is
stack_cross_team_access_policy_changed.- Return type:
bool
- is_started_enterprise_admin_session()
Check if the union tag is
started_enterprise_admin_session.- Return type:
bool
- is_team_activity_create_report()
Check if the union tag is
team_activity_create_report.- Return type:
bool
- is_team_activity_create_report_fail()
Check if the union tag is
team_activity_create_report_fail.- Return type:
bool
- is_team_branding_policy_changed()
Check if the union tag is
team_branding_policy_changed.- Return type:
bool
- is_team_encryption_key_activate_key()
Check if the union tag is
team_encryption_key_activate_key.- Return type:
bool
- is_team_encryption_key_cancel_key_deletion()
Check if the union tag is
team_encryption_key_cancel_key_deletion.- Return type:
bool
- is_team_encryption_key_create_key()
Check if the union tag is
team_encryption_key_create_key.- Return type:
bool
- is_team_encryption_key_deactivate_key()
Check if the union tag is
team_encryption_key_deactivate_key.- Return type:
bool
- is_team_encryption_key_delete_key()
Check if the union tag is
team_encryption_key_delete_key.- Return type:
bool
- is_team_encryption_key_disable_key()
Check if the union tag is
team_encryption_key_disable_key.- Return type:
bool
- is_team_encryption_key_enable_key()
Check if the union tag is
team_encryption_key_enable_key.- Return type:
bool
- is_team_encryption_key_rotate_key()
Check if the union tag is
team_encryption_key_rotate_key.- Return type:
bool
- is_team_encryption_key_schedule_key_deletion()
Check if the union tag is
team_encryption_key_schedule_key_deletion.- Return type:
bool
- is_team_extensions_policy_changed()
Check if the union tag is
team_extensions_policy_changed.- Return type:
bool
- is_team_folder_change_status()
Check if the union tag is
team_folder_change_status.- Return type:
bool
- is_team_folder_create()
Check if the union tag is
team_folder_create.- Return type:
bool
- is_team_folder_downgrade()
Check if the union tag is
team_folder_downgrade.- Return type:
bool
- is_team_folder_permanently_delete()
Check if the union tag is
team_folder_permanently_delete.- Return type:
bool
- is_team_folder_rename()
Check if the union tag is
team_folder_rename.- Return type:
bool
- is_team_folder_space_limits_change_caps_type()
Check if the union tag is
team_folder_space_limits_change_caps_type.- Return type:
bool
- is_team_folder_space_limits_change_limit()
Check if the union tag is
team_folder_space_limits_change_limit.- Return type:
bool
- is_team_folder_space_limits_change_notification_target()
Check if the union tag is
team_folder_space_limits_change_notification_target.- Return type:
bool
- is_team_folders_create_report()
Check if the union tag is
team_folders_create_report.- Return type:
bool
- is_team_folders_create_report_failed()
Check if the union tag is
team_folders_create_report_failed.- Return type:
bool
- is_team_member_storage_request_policy_changed()
Check if the union tag is
team_member_storage_request_policy_changed.- Return type:
bool
- is_team_merge_from()
Check if the union tag is
team_merge_from.- Return type:
bool
- is_team_merge_request_accepted()
Check if the union tag is
team_merge_request_accepted.- Return type:
bool
- is_team_merge_request_accepted_shown_to_primary_team()
Check if the union tag is
team_merge_request_accepted_shown_to_primary_team.- Return type:
bool
- is_team_merge_request_accepted_shown_to_secondary_team()
Check if the union tag is
team_merge_request_accepted_shown_to_secondary_team.- Return type:
bool
- is_team_merge_request_auto_canceled()
Check if the union tag is
team_merge_request_auto_canceled.- Return type:
bool
- is_team_merge_request_canceled()
Check if the union tag is
team_merge_request_canceled.- Return type:
bool
- is_team_merge_request_canceled_shown_to_primary_team()
Check if the union tag is
team_merge_request_canceled_shown_to_primary_team.- Return type:
bool
- is_team_merge_request_canceled_shown_to_secondary_team()
Check if the union tag is
team_merge_request_canceled_shown_to_secondary_team.- Return type:
bool
- is_team_merge_request_expired()
Check if the union tag is
team_merge_request_expired.- Return type:
bool
- is_team_merge_request_expired_shown_to_primary_team()
Check if the union tag is
team_merge_request_expired_shown_to_primary_team.- Return type:
bool
- is_team_merge_request_expired_shown_to_secondary_team()
Check if the union tag is
team_merge_request_expired_shown_to_secondary_team.- Return type:
bool
- is_team_merge_request_rejected_shown_to_primary_team()
Check if the union tag is
team_merge_request_rejected_shown_to_primary_team.- Return type:
bool
- is_team_merge_request_rejected_shown_to_secondary_team()
Check if the union tag is
team_merge_request_rejected_shown_to_secondary_team.- Return type:
bool
- is_team_merge_request_reminder()
Check if the union tag is
team_merge_request_reminder.- Return type:
bool
- is_team_merge_request_reminder_shown_to_primary_team()
Check if the union tag is
team_merge_request_reminder_shown_to_primary_team.- Return type:
bool
- is_team_merge_request_reminder_shown_to_secondary_team()
Check if the union tag is
team_merge_request_reminder_shown_to_secondary_team.- Return type:
bool
- is_team_merge_request_revoked()
Check if the union tag is
team_merge_request_revoked.- Return type:
bool
- is_team_merge_request_sent_shown_to_primary_team()
Check if the union tag is
team_merge_request_sent_shown_to_primary_team.- Return type:
bool
- is_team_merge_request_sent_shown_to_secondary_team()
Check if the union tag is
team_merge_request_sent_shown_to_secondary_team.- Return type:
bool
- is_team_merge_to()
Check if the union tag is
team_merge_to.- Return type:
bool
- is_team_profile_add_background()
Check if the union tag is
team_profile_add_background.- Return type:
bool
- is_team_profile_add_logo()
Check if the union tag is
team_profile_add_logo.- Return type:
bool
- is_team_profile_change_background()
Check if the union tag is
team_profile_change_background.- Return type:
bool
- is_team_profile_change_default_language()
Check if the union tag is
team_profile_change_default_language.- Return type:
bool
- is_team_profile_change_logo()
Check if the union tag is
team_profile_change_logo.- Return type:
bool
- is_team_profile_change_name()
Check if the union tag is
team_profile_change_name.- Return type:
bool
- is_team_profile_remove_background()
Check if the union tag is
team_profile_remove_background.- Return type:
bool
- is_team_profile_remove_logo()
Check if the union tag is
team_profile_remove_logo.- Return type:
bool
- is_team_selective_sync_policy_changed()
Check if the union tag is
team_selective_sync_policy_changed.- Return type:
bool
- is_team_selective_sync_settings_changed()
Check if the union tag is
team_selective_sync_settings_changed.- Return type:
bool
- is_team_sharing_whitelist_subjects_changed()
Check if the union tag is
team_sharing_whitelist_subjects_changed.- Return type:
bool
- is_team_storage_create_report()
Check if the union tag is
team_storage_create_report.- Return type:
bool
- is_team_storage_create_report_failed()
Check if the union tag is
team_storage_create_report_failed.- Return type:
bool
- is_tfa_add_backup_phone()
Check if the union tag is
tfa_add_backup_phone.- Return type:
bool
- is_tfa_add_exception()
Check if the union tag is
tfa_add_exception.- Return type:
bool
- is_tfa_add_security_key()
Check if the union tag is
tfa_add_security_key.- Return type:
bool
- is_tfa_change_backup_phone()
Check if the union tag is
tfa_change_backup_phone.- Return type:
bool
- is_tfa_change_policy()
Check if the union tag is
tfa_change_policy.- Return type:
bool
- is_tfa_change_status()
Check if the union tag is
tfa_change_status.- Return type:
bool
- is_tfa_remove_backup_phone()
Check if the union tag is
tfa_remove_backup_phone.- Return type:
bool
- is_tfa_remove_exception()
Check if the union tag is
tfa_remove_exception.- Return type:
bool
- is_tfa_remove_security_key()
Check if the union tag is
tfa_remove_security_key.- Return type:
bool
- is_tfa_reset()
Check if the union tag is
tfa_reset.- Return type:
bool
- is_top_level_content_policy_changed()
Check if the union tag is
top_level_content_policy_changed.- Return type:
bool
- is_two_account_change_policy()
Check if the union tag is
two_account_change_policy.- Return type:
bool
- is_undo_naming_convention()
Check if the union tag is
undo_naming_convention.- Return type:
bool
- is_undo_organize_folder_with_tidy()
Check if the union tag is
undo_organize_folder_with_tidy.- Return type:
bool
- is_user_tags_added()
Check if the union tag is
user_tags_added.- Return type:
bool
- is_user_tags_removed()
Check if the union tag is
user_tags_removed.- Return type:
bool
- is_viewer_info_policy_changed()
Check if the union tag is
viewer_info_policy_changed.- Return type:
bool
- is_watermarking_policy_changed()
Check if the union tag is
watermarking_policy_changed.- Return type:
bool
- is_web_sessions_change_active_session_limit()
Check if the union tag is
web_sessions_change_active_session_limit.- Return type:
bool
- is_web_sessions_change_fixed_length_policy()
Check if the union tag is
web_sessions_change_fixed_length_policy.- Return type:
bool
- is_web_sessions_change_idle_length_policy()
Check if the union tag is
web_sessions_change_idle_length_policy.- Return type:
bool
- legal_holds_activate_a_hold = EventTypeArg('legal_holds_activate_a_hold', None)
- legal_holds_add_members = EventTypeArg('legal_holds_add_members', None)
- legal_holds_change_hold_details = EventTypeArg('legal_holds_change_hold_details', None)
- legal_holds_change_hold_name = EventTypeArg('legal_holds_change_hold_name', None)
- legal_holds_export_a_hold = EventTypeArg('legal_holds_export_a_hold', None)
- legal_holds_export_cancelled = EventTypeArg('legal_holds_export_cancelled', None)
- legal_holds_export_downloaded = EventTypeArg('legal_holds_export_downloaded', None)
- legal_holds_export_removed = EventTypeArg('legal_holds_export_removed', None)
- legal_holds_release_a_hold = EventTypeArg('legal_holds_release_a_hold', None)
- legal_holds_remove_members = EventTypeArg('legal_holds_remove_members', None)
- legal_holds_report_a_hold = EventTypeArg('legal_holds_report_a_hold', None)
- login_fail = EventTypeArg('login_fail', None)
- login_success = EventTypeArg('login_success', None)
- logout = EventTypeArg('logout', None)
- media_hub_adding_people_policy_changed = EventTypeArg('media_hub_adding_people_policy_changed', None)
- media_hub_download_policy_changed = EventTypeArg('media_hub_download_policy_changed', None)
- media_hub_file_downloaded = EventTypeArg('media_hub_file_downloaded', None)
- media_hub_link_sharing_policy_changed = EventTypeArg('media_hub_link_sharing_policy_changed', None)
- media_hub_project_team_add = EventTypeArg('media_hub_project_team_add', None)
- media_hub_project_team_delete = EventTypeArg('media_hub_project_team_delete', None)
- media_hub_project_team_role_changed = EventTypeArg('media_hub_project_team_role_changed', None)
- member_access_details_create_report = EventTypeArg('member_access_details_create_report', None)
- member_access_details_create_report_failed = EventTypeArg('member_access_details_create_report_failed', None)
- member_add_external_id = EventTypeArg('member_add_external_id', None)
- member_add_name = EventTypeArg('member_add_name', None)
- member_change_admin_role = EventTypeArg('member_change_admin_role', None)
- member_change_email = EventTypeArg('member_change_email', None)
- member_change_external_id = EventTypeArg('member_change_external_id', None)
- member_change_membership_type = EventTypeArg('member_change_membership_type', None)
- member_change_name = EventTypeArg('member_change_name', None)
- member_change_reseller_role = EventTypeArg('member_change_reseller_role', None)
- member_change_status = EventTypeArg('member_change_status', None)
- member_delete_manual_contacts = EventTypeArg('member_delete_manual_contacts', None)
- member_delete_profile_photo = EventTypeArg('member_delete_profile_photo', None)
- member_permanently_delete_account_contents = EventTypeArg('member_permanently_delete_account_contents', None)
- member_remove_external_id = EventTypeArg('member_remove_external_id', None)
- member_requests_change_policy = EventTypeArg('member_requests_change_policy', None)
- member_send_invite_policy_changed = EventTypeArg('member_send_invite_policy_changed', None)
- member_set_profile_photo = EventTypeArg('member_set_profile_photo', None)
- member_space_limits_add_custom_quota = EventTypeArg('member_space_limits_add_custom_quota', None)
- member_space_limits_add_exception = EventTypeArg('member_space_limits_add_exception', None)
- member_space_limits_change_caps_type_policy = EventTypeArg('member_space_limits_change_caps_type_policy', None)
- member_space_limits_change_custom_quota = EventTypeArg('member_space_limits_change_custom_quota', None)
- member_space_limits_change_policy = EventTypeArg('member_space_limits_change_policy', None)
- member_space_limits_change_status = EventTypeArg('member_space_limits_change_status', None)
- member_space_limits_remove_custom_quota = EventTypeArg('member_space_limits_remove_custom_quota', None)
- member_space_limits_remove_exception = EventTypeArg('member_space_limits_remove_exception', None)
- member_suggest = EventTypeArg('member_suggest', None)
- member_suggestions_change_policy = EventTypeArg('member_suggestions_change_policy', None)
- member_transfer_account_contents = EventTypeArg('member_transfer_account_contents', None)
- microsoft_login_change_policy = EventTypeArg('microsoft_login_change_policy', None)
- microsoft_office_addin_change_policy = EventTypeArg('microsoft_office_addin_change_policy', None)
- multi_team_identity_policy_changed = EventTypeArg('multi_team_identity_policy_changed', None)
- network_control_change_policy = EventTypeArg('network_control_change_policy', None)
- no_expiration_link_gen_create_report = EventTypeArg('no_expiration_link_gen_create_report', None)
- no_expiration_link_gen_report_failed = EventTypeArg('no_expiration_link_gen_report_failed', None)
- no_password_link_gen_create_report = EventTypeArg('no_password_link_gen_create_report', None)
- no_password_link_gen_report_failed = EventTypeArg('no_password_link_gen_report_failed', None)
- no_password_link_view_create_report = EventTypeArg('no_password_link_view_create_report', None)
- no_password_link_view_report_failed = EventTypeArg('no_password_link_view_report_failed', None)
- note_acl_invite_only = EventTypeArg('note_acl_invite_only', None)
- note_acl_link = EventTypeArg('note_acl_link', None)
- note_acl_team_link = EventTypeArg('note_acl_team_link', None)
- object_label_added = EventTypeArg('object_label_added', None)
- object_label_removed = EventTypeArg('object_label_removed', None)
- object_label_updated_value = EventTypeArg('object_label_updated_value', None)
- organize_folder_with_tidy = EventTypeArg('organize_folder_with_tidy', None)
- other = EventTypeArg('other', None)
- outdated_link_view_create_report = EventTypeArg('outdated_link_view_create_report', None)
- outdated_link_view_report_failed = EventTypeArg('outdated_link_view_report_failed', None)
- paper_admin_export_start = EventTypeArg('paper_admin_export_start', None)
- paper_change_deployment_policy = EventTypeArg('paper_change_deployment_policy', None)
- paper_change_member_link_policy = EventTypeArg('paper_change_member_link_policy', None)
- paper_change_member_policy = EventTypeArg('paper_change_member_policy', None)
- paper_change_policy = EventTypeArg('paper_change_policy', None)
- paper_content_add_member = EventTypeArg('paper_content_add_member', None)
- paper_content_add_to_folder = EventTypeArg('paper_content_add_to_folder', None)
- paper_content_archive = EventTypeArg('paper_content_archive', None)
- paper_content_create = EventTypeArg('paper_content_create', None)
- paper_content_permanently_delete = EventTypeArg('paper_content_permanently_delete', None)
- paper_content_remove_from_folder = EventTypeArg('paper_content_remove_from_folder', None)
- paper_content_remove_member = EventTypeArg('paper_content_remove_member', None)
- paper_content_rename = EventTypeArg('paper_content_rename', None)
- paper_content_restore = EventTypeArg('paper_content_restore', None)
- paper_default_folder_policy_changed = EventTypeArg('paper_default_folder_policy_changed', None)
- paper_desktop_policy_changed = EventTypeArg('paper_desktop_policy_changed', None)
- paper_doc_add_comment = EventTypeArg('paper_doc_add_comment', None)
- paper_doc_change_member_role = EventTypeArg('paper_doc_change_member_role', None)
- paper_doc_change_sharing_policy = EventTypeArg('paper_doc_change_sharing_policy', None)
- paper_doc_change_subscription = EventTypeArg('paper_doc_change_subscription', None)
- paper_doc_delete_comment = EventTypeArg('paper_doc_delete_comment', None)
- paper_doc_deleted = EventTypeArg('paper_doc_deleted', None)
- paper_doc_download = EventTypeArg('paper_doc_download', None)
- paper_doc_edit = EventTypeArg('paper_doc_edit', None)
- paper_doc_edit_comment = EventTypeArg('paper_doc_edit_comment', None)
- paper_doc_followed = EventTypeArg('paper_doc_followed', None)
- paper_doc_mention = EventTypeArg('paper_doc_mention', None)
- paper_doc_ownership_changed = EventTypeArg('paper_doc_ownership_changed', None)
- paper_doc_request_access = EventTypeArg('paper_doc_request_access', None)
- paper_doc_resolve_comment = EventTypeArg('paper_doc_resolve_comment', None)
- paper_doc_revert = EventTypeArg('paper_doc_revert', None)
- paper_doc_team_invite = EventTypeArg('paper_doc_team_invite', None)
- paper_doc_trashed = EventTypeArg('paper_doc_trashed', None)
- paper_doc_unresolve_comment = EventTypeArg('paper_doc_unresolve_comment', None)
- paper_doc_untrashed = EventTypeArg('paper_doc_untrashed', None)
- paper_doc_view = EventTypeArg('paper_doc_view', None)
- paper_enabled_users_group_addition = EventTypeArg('paper_enabled_users_group_addition', None)
- paper_enabled_users_group_removal = EventTypeArg('paper_enabled_users_group_removal', None)
- paper_external_view_allow = EventTypeArg('paper_external_view_allow', None)
- paper_external_view_default_team = EventTypeArg('paper_external_view_default_team', None)
- paper_external_view_forbid = EventTypeArg('paper_external_view_forbid', None)
- paper_folder_change_subscription = EventTypeArg('paper_folder_change_subscription', None)
- paper_folder_deleted = EventTypeArg('paper_folder_deleted', None)
- paper_folder_followed = EventTypeArg('paper_folder_followed', None)
- paper_folder_team_invite = EventTypeArg('paper_folder_team_invite', None)
- paper_published_link_change_permission = EventTypeArg('paper_published_link_change_permission', None)
- paper_published_link_create = EventTypeArg('paper_published_link_create', None)
- paper_published_link_disabled = EventTypeArg('paper_published_link_disabled', None)
- paper_published_link_view = EventTypeArg('paper_published_link_view', None)
- passkey_add = EventTypeArg('passkey_add', None)
- passkey_login_policy_changed = EventTypeArg('passkey_login_policy_changed', None)
- passkey_remove = EventTypeArg('passkey_remove', None)
- password_change = EventTypeArg('password_change', None)
- password_reset = EventTypeArg('password_reset', None)
- password_reset_all = EventTypeArg('password_reset_all', None)
- password_strength_requirements_change_policy = EventTypeArg('password_strength_requirements_change_policy', None)
- pending_secondary_email_added = EventTypeArg('pending_secondary_email_added', None)
- permanent_delete_change_policy = EventTypeArg('permanent_delete_change_policy', None)
- previews_ai_policy_changed = EventTypeArg('previews_ai_policy_changed', None)
- product_assigned_to_member = EventTypeArg('product_assigned_to_member', None)
- product_removed_from_member = EventTypeArg('product_removed_from_member', None)
- protect_internal_domains_changed = EventTypeArg('protect_internal_domains_changed', None)
- ransomware_alert_create_report = EventTypeArg('ransomware_alert_create_report', None)
- ransomware_alert_create_report_failed = EventTypeArg('ransomware_alert_create_report_failed', None)
- ransomware_restore_process_completed = EventTypeArg('ransomware_restore_process_completed', None)
- ransomware_restore_process_started = EventTypeArg('ransomware_restore_process_started', None)
- replay_adding_people_policy_changed = EventTypeArg('replay_adding_people_policy_changed', None)
- replay_file_delete = EventTypeArg('replay_file_delete', None)
- replay_file_downloaded = EventTypeArg('replay_file_downloaded', None)
- replay_project_team_add = EventTypeArg('replay_project_team_add', None)
- replay_project_team_delete = EventTypeArg('replay_project_team_delete', None)
- replay_sharing_policy_changed = EventTypeArg('replay_sharing_policy_changed', None)
- replay_team_project_created = EventTypeArg('replay_team_project_created', None)
- reseller_support_change_policy = EventTypeArg('reseller_support_change_policy', None)
- reseller_support_session_end = EventTypeArg('reseller_support_session_end', None)
- reseller_support_session_start = EventTypeArg('reseller_support_session_start', None)
- rewind_folder = EventTypeArg('rewind_folder', None)
- rewind_policy_changed = EventTypeArg('rewind_policy_changed', None)
- risc_security_event = EventTypeArg('risc_security_event', None)
- secondary_email_deleted = EventTypeArg('secondary_email_deleted', None)
- secondary_email_verified = EventTypeArg('secondary_email_verified', None)
- secondary_mails_policy_changed = EventTypeArg('secondary_mails_policy_changed', None)
- send_and_track_file_added = EventTypeArg('send_and_track_file_added', None)
- send_and_track_file_renamed = EventTypeArg('send_and_track_file_renamed', None)
- send_and_track_file_updated = EventTypeArg('send_and_track_file_updated', None)
- send_and_track_link_created = EventTypeArg('send_and_track_link_created', None)
- send_and_track_link_deleted = EventTypeArg('send_and_track_link_deleted', None)
- send_and_track_link_updated = EventTypeArg('send_and_track_link_updated', None)
- send_and_track_link_viewed = EventTypeArg('send_and_track_link_viewed', None)
- send_and_track_policy_changed = EventTypeArg('send_and_track_policy_changed', None)
- send_and_track_removed_file_and_associated_links = EventTypeArg('send_and_track_removed_file_and_associated_links', None)
- send_external_sharing_policy_changed = EventTypeArg('send_external_sharing_policy_changed', None)
- send_for_signature_policy_changed = EventTypeArg('send_for_signature_policy_changed', None)
- sf_add_group = EventTypeArg('sf_add_group', None)
- sf_external_invite_warn = EventTypeArg('sf_external_invite_warn', None)
- sf_fb_invite = EventTypeArg('sf_fb_invite', None)
- sf_fb_invite_change_role = EventTypeArg('sf_fb_invite_change_role', None)
- sf_fb_uninvite = EventTypeArg('sf_fb_uninvite', None)
- sf_invite_group = EventTypeArg('sf_invite_group', None)
- sf_team_grant_access = EventTypeArg('sf_team_grant_access', None)
- sf_team_invite = EventTypeArg('sf_team_invite', None)
- sf_team_invite_change_role = EventTypeArg('sf_team_invite_change_role', None)
- sf_team_join = EventTypeArg('sf_team_join', None)
- sf_team_join_from_oob_link = EventTypeArg('sf_team_join_from_oob_link', None)
- sf_team_uninvite = EventTypeArg('sf_team_uninvite', None)
- sharing_change_folder_join_policy = EventTypeArg('sharing_change_folder_join_policy', None)
- sharing_change_link_allow_change_expiration_policy = EventTypeArg('sharing_change_link_allow_change_expiration_policy', None)
- sharing_change_link_default_expiration_policy = EventTypeArg('sharing_change_link_default_expiration_policy', None)
- sharing_change_link_enforce_password_policy = EventTypeArg('sharing_change_link_enforce_password_policy', None)
- sharing_change_link_policy = EventTypeArg('sharing_change_link_policy', None)
- sharing_change_member_policy = EventTypeArg('sharing_change_member_policy', None)
- shmodel_disable_downloads = EventTypeArg('shmodel_disable_downloads', None)
- shmodel_enable_downloads = EventTypeArg('shmodel_enable_downloads', None)
- showcase_access_granted = EventTypeArg('showcase_access_granted', None)
- showcase_add_member = EventTypeArg('showcase_add_member', None)
- showcase_archived = EventTypeArg('showcase_archived', None)
- showcase_change_download_policy = EventTypeArg('showcase_change_download_policy', None)
- showcase_change_enabled_policy = EventTypeArg('showcase_change_enabled_policy', None)
- showcase_change_external_sharing_policy = EventTypeArg('showcase_change_external_sharing_policy', None)
- showcase_created = EventTypeArg('showcase_created', None)
- showcase_delete_comment = EventTypeArg('showcase_delete_comment', None)
- showcase_edit_comment = EventTypeArg('showcase_edit_comment', None)
- showcase_edited = EventTypeArg('showcase_edited', None)
- showcase_file_added = EventTypeArg('showcase_file_added', None)
- showcase_file_download = EventTypeArg('showcase_file_download', None)
- showcase_file_removed = EventTypeArg('showcase_file_removed', None)
- showcase_file_view = EventTypeArg('showcase_file_view', None)
- showcase_permanently_deleted = EventTypeArg('showcase_permanently_deleted', None)
- showcase_post_comment = EventTypeArg('showcase_post_comment', None)
- showcase_remove_member = EventTypeArg('showcase_remove_member', None)
- showcase_renamed = EventTypeArg('showcase_renamed', None)
- showcase_request_access = EventTypeArg('showcase_request_access', None)
- showcase_resolve_comment = EventTypeArg('showcase_resolve_comment', None)
- showcase_restored = EventTypeArg('showcase_restored', None)
- showcase_trashed = EventTypeArg('showcase_trashed', None)
- showcase_trashed_deprecated = EventTypeArg('showcase_trashed_deprecated', None)
- showcase_unresolve_comment = EventTypeArg('showcase_unresolve_comment', None)
- showcase_untrashed = EventTypeArg('showcase_untrashed', None)
- showcase_untrashed_deprecated = EventTypeArg('showcase_untrashed_deprecated', None)
- showcase_view = EventTypeArg('showcase_view', None)
- sign_external_sharing_policy_changed = EventTypeArg('sign_external_sharing_policy_changed', None)
- sign_in_as_session_end = EventTypeArg('sign_in_as_session_end', None)
- sign_in_as_session_start = EventTypeArg('sign_in_as_session_start', None)
- sign_signature_request_canceled = EventTypeArg('sign_signature_request_canceled', None)
- sign_signature_request_completed = EventTypeArg('sign_signature_request_completed', None)
- sign_signature_request_declined = EventTypeArg('sign_signature_request_declined', None)
- sign_signature_request_opened = EventTypeArg('sign_signature_request_opened', None)
- sign_signature_request_reminder_sent = EventTypeArg('sign_signature_request_reminder_sent', None)
- sign_signature_request_sent = EventTypeArg('sign_signature_request_sent', None)
- sign_template_created = EventTypeArg('sign_template_created', None)
- sign_template_creation_permission_changed = EventTypeArg('sign_template_creation_permission_changed', None)
- smart_sync_change_policy = EventTypeArg('smart_sync_change_policy', None)
- smart_sync_create_admin_privilege_report = EventTypeArg('smart_sync_create_admin_privilege_report', None)
- smart_sync_not_opt_out = EventTypeArg('smart_sync_not_opt_out', None)
- smart_sync_opt_out = EventTypeArg('smart_sync_opt_out', None)
- smarter_smart_sync_policy_changed = EventTypeArg('smarter_smart_sync_policy_changed', None)
- sso_add_cert = EventTypeArg('sso_add_cert', None)
- sso_add_login_url = EventTypeArg('sso_add_login_url', None)
- sso_add_logout_url = EventTypeArg('sso_add_logout_url', None)
- sso_change_cert = EventTypeArg('sso_change_cert', None)
- sso_change_login_url = EventTypeArg('sso_change_login_url', None)
- sso_change_logout_url = EventTypeArg('sso_change_logout_url', None)
- sso_change_policy = EventTypeArg('sso_change_policy', None)
- sso_change_saml_identity_mode = EventTypeArg('sso_change_saml_identity_mode', None)
- sso_error = EventTypeArg('sso_error', None)
- sso_remove_cert = EventTypeArg('sso_remove_cert', None)
- sso_remove_login_url = EventTypeArg('sso_remove_login_url', None)
- sso_remove_logout_url = EventTypeArg('sso_remove_logout_url', None)
- stack_cross_team_access_policy_changed = EventTypeArg('stack_cross_team_access_policy_changed', None)
- started_enterprise_admin_session = EventTypeArg('started_enterprise_admin_session', None)
- team_activity_create_report = EventTypeArg('team_activity_create_report', None)
- team_activity_create_report_fail = EventTypeArg('team_activity_create_report_fail', None)
- team_branding_policy_changed = EventTypeArg('team_branding_policy_changed', None)
- team_encryption_key_activate_key = EventTypeArg('team_encryption_key_activate_key', None)
- team_encryption_key_cancel_key_deletion = EventTypeArg('team_encryption_key_cancel_key_deletion', None)
- team_encryption_key_create_key = EventTypeArg('team_encryption_key_create_key', None)
- team_encryption_key_deactivate_key = EventTypeArg('team_encryption_key_deactivate_key', None)
- team_encryption_key_delete_key = EventTypeArg('team_encryption_key_delete_key', None)
- team_encryption_key_disable_key = EventTypeArg('team_encryption_key_disable_key', None)
- team_encryption_key_enable_key = EventTypeArg('team_encryption_key_enable_key', None)
- team_encryption_key_rotate_key = EventTypeArg('team_encryption_key_rotate_key', None)
- team_encryption_key_schedule_key_deletion = EventTypeArg('team_encryption_key_schedule_key_deletion', None)
- team_extensions_policy_changed = EventTypeArg('team_extensions_policy_changed', None)
- team_folder_change_status = EventTypeArg('team_folder_change_status', None)
- team_folder_create = EventTypeArg('team_folder_create', None)
- team_folder_downgrade = EventTypeArg('team_folder_downgrade', None)
- team_folder_permanently_delete = EventTypeArg('team_folder_permanently_delete', None)
- team_folder_rename = EventTypeArg('team_folder_rename', None)
- team_folder_space_limits_change_caps_type = EventTypeArg('team_folder_space_limits_change_caps_type', None)
- team_folder_space_limits_change_limit = EventTypeArg('team_folder_space_limits_change_limit', None)
- team_folder_space_limits_change_notification_target = EventTypeArg('team_folder_space_limits_change_notification_target', None)
- team_folders_create_report = EventTypeArg('team_folders_create_report', None)
- team_folders_create_report_failed = EventTypeArg('team_folders_create_report_failed', None)
- team_member_storage_request_policy_changed = EventTypeArg('team_member_storage_request_policy_changed', None)
- team_merge_from = EventTypeArg('team_merge_from', None)
- team_merge_request_accepted = EventTypeArg('team_merge_request_accepted', None)
- team_merge_request_accepted_shown_to_primary_team = EventTypeArg('team_merge_request_accepted_shown_to_primary_team', None)
- team_merge_request_accepted_shown_to_secondary_team = EventTypeArg('team_merge_request_accepted_shown_to_secondary_team', None)
- team_merge_request_auto_canceled = EventTypeArg('team_merge_request_auto_canceled', None)
- team_merge_request_canceled = EventTypeArg('team_merge_request_canceled', None)
- team_merge_request_canceled_shown_to_primary_team = EventTypeArg('team_merge_request_canceled_shown_to_primary_team', None)
- team_merge_request_canceled_shown_to_secondary_team = EventTypeArg('team_merge_request_canceled_shown_to_secondary_team', None)
- team_merge_request_expired = EventTypeArg('team_merge_request_expired', None)
- team_merge_request_expired_shown_to_primary_team = EventTypeArg('team_merge_request_expired_shown_to_primary_team', None)
- team_merge_request_expired_shown_to_secondary_team = EventTypeArg('team_merge_request_expired_shown_to_secondary_team', None)
- team_merge_request_rejected_shown_to_primary_team = EventTypeArg('team_merge_request_rejected_shown_to_primary_team', None)
- team_merge_request_rejected_shown_to_secondary_team = EventTypeArg('team_merge_request_rejected_shown_to_secondary_team', None)
- team_merge_request_reminder = EventTypeArg('team_merge_request_reminder', None)
- team_merge_request_reminder_shown_to_primary_team = EventTypeArg('team_merge_request_reminder_shown_to_primary_team', None)
- team_merge_request_reminder_shown_to_secondary_team = EventTypeArg('team_merge_request_reminder_shown_to_secondary_team', None)
- team_merge_request_revoked = EventTypeArg('team_merge_request_revoked', None)
- team_merge_request_sent_shown_to_primary_team = EventTypeArg('team_merge_request_sent_shown_to_primary_team', None)
- team_merge_request_sent_shown_to_secondary_team = EventTypeArg('team_merge_request_sent_shown_to_secondary_team', None)
- team_merge_to = EventTypeArg('team_merge_to', None)
- team_profile_add_background = EventTypeArg('team_profile_add_background', None)
- team_profile_add_logo = EventTypeArg('team_profile_add_logo', None)
- team_profile_change_background = EventTypeArg('team_profile_change_background', None)
- team_profile_change_default_language = EventTypeArg('team_profile_change_default_language', None)
- team_profile_change_logo = EventTypeArg('team_profile_change_logo', None)
- team_profile_change_name = EventTypeArg('team_profile_change_name', None)
- team_profile_remove_background = EventTypeArg('team_profile_remove_background', None)
- team_profile_remove_logo = EventTypeArg('team_profile_remove_logo', None)
- team_selective_sync_policy_changed = EventTypeArg('team_selective_sync_policy_changed', None)
- team_selective_sync_settings_changed = EventTypeArg('team_selective_sync_settings_changed', None)
- team_sharing_whitelist_subjects_changed = EventTypeArg('team_sharing_whitelist_subjects_changed', None)
- team_storage_create_report = EventTypeArg('team_storage_create_report', None)
- team_storage_create_report_failed = EventTypeArg('team_storage_create_report_failed', None)
- tfa_add_backup_phone = EventTypeArg('tfa_add_backup_phone', None)
- tfa_add_exception = EventTypeArg('tfa_add_exception', None)
- tfa_add_security_key = EventTypeArg('tfa_add_security_key', None)
- tfa_change_backup_phone = EventTypeArg('tfa_change_backup_phone', None)
- tfa_change_policy = EventTypeArg('tfa_change_policy', None)
- tfa_change_status = EventTypeArg('tfa_change_status', None)
- tfa_remove_backup_phone = EventTypeArg('tfa_remove_backup_phone', None)
- tfa_remove_exception = EventTypeArg('tfa_remove_exception', None)
- tfa_remove_security_key = EventTypeArg('tfa_remove_security_key', None)
- tfa_reset = EventTypeArg('tfa_reset', None)
- top_level_content_policy_changed = EventTypeArg('top_level_content_policy_changed', None)
- two_account_change_policy = EventTypeArg('two_account_change_policy', None)
- undo_naming_convention = EventTypeArg('undo_naming_convention', None)
- undo_organize_folder_with_tidy = EventTypeArg('undo_organize_folder_with_tidy', None)
- user_tags_added = EventTypeArg('user_tags_added', None)
- user_tags_removed = EventTypeArg('user_tags_removed', None)
- viewer_info_policy_changed = EventTypeArg('viewer_info_policy_changed', None)
- watermarking_policy_changed = EventTypeArg('watermarking_policy_changed', None)
- web_sessions_change_active_session_limit = EventTypeArg('web_sessions_change_active_session_limit', None)
- web_sessions_change_fixed_length_policy = EventTypeArg('web_sessions_change_fixed_length_policy', None)
- web_sessions_change_idle_length_policy = EventTypeArg('web_sessions_change_idle_length_policy', None)
- class dropbox.team_log.ExportMembersReportDetails
Bases:
StructCreated member data report.
- __init__()
- class dropbox.team_log.ExportMembersReportFailDetails(failure_reason=None)
Bases:
StructFailed to create members data report.
- Variables:
ExportMembersReportFailDetails.failure_reason – Failure reason.
- __init__(failure_reason=None)
- failure_reason
- class dropbox.team_log.ExportMembersReportFailType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.ExportMembersReportType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.ExtendedVersionHistoryChangePolicyDetails(new_value=None, previous_value=None)
Bases:
StructAccepted/opted out of extended version history.
- Variables:
ExtendedVersionHistoryChangePolicyDetails.new_value – New extended version history policy.
ExtendedVersionHistoryChangePolicyDetails.previous_value – Previous extended version history policy. Might be missing due to historical data gap.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.ExtendedVersionHistoryChangePolicyType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.ExtendedVersionHistoryPolicy(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.- explicitly_limited = ExtendedVersionHistoryPolicy('explicitly_limited', None)
- explicitly_unlimited = ExtendedVersionHistoryPolicy('explicitly_unlimited', None)
- implicitly_limited = ExtendedVersionHistoryPolicy('implicitly_limited', None)
- implicitly_unlimited = ExtendedVersionHistoryPolicy('implicitly_unlimited', None)
- is_explicitly_limited()
Check if the union tag is
explicitly_limited.- Return type:
bool
- is_explicitly_unlimited()
Check if the union tag is
explicitly_unlimited.- Return type:
bool
- is_implicitly_limited()
Check if the union tag is
implicitly_limited.- Return type:
bool
- is_implicitly_unlimited()
Check if the union tag is
implicitly_unlimited.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- other = ExtendedVersionHistoryPolicy('other', None)
- class dropbox.team_log.ExternalDriveBackupEligibilityStatus(tag, value=None)
Bases:
UnionExternal Drive Backup eligibility 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.- exceed_license_cap = ExternalDriveBackupEligibilityStatus('exceed_license_cap', None)
- is_exceed_license_cap()
Check if the union tag is
exceed_license_cap.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- is_skip()
Check if the union tag is
skip.- Return type:
bool
- is_success()
Check if the union tag is
success.- Return type:
bool
- other = ExternalDriveBackupEligibilityStatus('other', None)
- skip = ExternalDriveBackupEligibilityStatus('skip', None)
- success = ExternalDriveBackupEligibilityStatus('success', None)
- class dropbox.team_log.ExternalDriveBackupEligibilityStatusCheckedDetails(desktop_device_session_info=None, status=None, number_of_external_drive_backup=None)
Bases:
StructChecked external drive backup eligibility status.
- Variables:
ExternalDriveBackupEligibilityStatusCheckedDetails.desktop_device_session_info – Device’s session logged information.
ExternalDriveBackupEligibilityStatusCheckedDetails.status – Current eligibility status of external drive backup.
ExternalDriveBackupEligibilityStatusCheckedDetails.number_of_external_drive_backup – Total number of valid external drive backup for all the team members.
- __init__(desktop_device_session_info=None, status=None, number_of_external_drive_backup=None)
- desktop_device_session_info
- number_of_external_drive_backup
- status
- class dropbox.team_log.ExternalDriveBackupEligibilityStatusCheckedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.ExternalDriveBackupPolicy(tag, value=None)
Bases:
UnionPolicy for controlling team access to external drive 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 = ExternalDriveBackupPolicy('default', None)
- disabled = ExternalDriveBackupPolicy('disabled', None)
- enabled = ExternalDriveBackupPolicy('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 = ExternalDriveBackupPolicy('other', None)
- class dropbox.team_log.ExternalDriveBackupPolicyChangedDetails(new_value=None, previous_value=None)
Bases:
StructChanged external drive backup policy for team.
- Variables:
ExternalDriveBackupPolicyChangedDetails.new_value – New external drive backup policy.
ExternalDriveBackupPolicyChangedDetails.previous_value – Previous external drive backup policy.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.ExternalDriveBackupPolicyChangedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.ExternalDriveBackupStatus(tag, value=None)
Bases:
UnionExternal Drive Backup 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.- broken = ExternalDriveBackupStatus('broken', None)
- created = ExternalDriveBackupStatus('created', None)
- created_or_broken = ExternalDriveBackupStatus('created_or_broken', None)
- deleted = ExternalDriveBackupStatus('deleted', None)
- empty = ExternalDriveBackupStatus('empty', None)
- is_broken()
Check if the union tag is
broken.- Return type:
bool
- is_created()
Check if the union tag is
created.- Return type:
bool
- is_created_or_broken()
Check if the union tag is
created_or_broken.- Return type:
bool
- is_deleted()
Check if the union tag is
deleted.- Return type:
bool
- is_empty()
Check if the union tag is
empty.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- is_unknown()
Check if the union tag is
unknown.- Return type:
bool
- other = ExternalDriveBackupStatus('other', None)
- unknown = ExternalDriveBackupStatus('unknown', None)
- class dropbox.team_log.ExternalDriveBackupStatusChangedDetails(desktop_device_session_info=None, previous_value=None, new_value=None)
Bases:
StructModified external drive backup.
- Variables:
ExternalDriveBackupStatusChangedDetails.desktop_device_session_info – Device’s session logged information.
ExternalDriveBackupStatusChangedDetails.previous_value – Previous status of this external drive backup.
ExternalDriveBackupStatusChangedDetails.new_value – Next status of this external drive backup.
- __init__(desktop_device_session_info=None, previous_value=None, new_value=None)
- desktop_device_session_info
- new_value
- previous_value
- class dropbox.team_log.ExternalDriveBackupStatusChangedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.ExternalSharingCreateReportDetails
Bases:
StructCreated External sharing report.
- __init__()
- class dropbox.team_log.ExternalSharingCreateReportType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.ExternalSharingReportFailedDetails(failure_reason=None)
Bases:
StructCouldn’t create External sharing report.
- Variables:
ExternalSharingReportFailedDetails.failure_reason – Failure reason.
- __init__(failure_reason=None)
- failure_reason
- class dropbox.team_log.ExternalSharingReportFailedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.ExternalSharingSetting(tag, value=None)
Bases:
UnionExternal sharing setting
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 = ExternalSharingSetting('allow', None)
- forbid = ExternalSharingSetting('forbid', None)
- is_allow()
Check if the union tag is
allow.- Return type:
bool
- is_forbid()
Check if the union tag is
forbid.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- is_unset()
Check if the union tag is
unset.- Return type:
bool
- other = ExternalSharingSetting('other', None)
- unset = ExternalSharingSetting('unset', None)
- class dropbox.team_log.ExternalUserLogInfo(user_identifier=None, identifier_type=None)
Bases:
StructA user without a Dropbox account.
- Variables:
ExternalUserLogInfo.user_identifier – An external user identifier.
ExternalUserLogInfo.identifier_type – Identifier type.
- __init__(user_identifier=None, identifier_type=None)
- identifier_type
- user_identifier
- class dropbox.team_log.FailureDetailsLogInfo(user_friendly_message=None, technical_error_message=None)
Bases:
StructProvides details about a failure
- Variables:
FailureDetailsLogInfo.user_friendly_message – A user friendly explanation of the error.
FailureDetailsLogInfo.technical_error_message – A technical explanation of the error. This is relevant for some errors.
- __init__(user_friendly_message=None, technical_error_message=None)
- technical_error_message
- user_friendly_message
- class dropbox.team_log.FedAdminRole(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.- enterprise_admin = FedAdminRole('enterprise_admin', None)
- is_enterprise_admin()
Check if the union tag is
enterprise_admin.- Return type:
bool
- is_not_enterprise_admin()
Check if the union tag is
not_enterprise_admin.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- not_enterprise_admin = FedAdminRole('not_enterprise_admin', None)
- other = FedAdminRole('other', None)
- class dropbox.team_log.FedExtraDetails(tag, value=None)
Bases:
UnionMore details about the organization or 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.- Variables:
FedExtraDetails.organization (OrganizationDetails) – More details about the organization.
FedExtraDetails.team (TeamDetails) – More details about the team.
- get_organization()
More details about the organization.
Only call this if
is_organization()is true.- Return type:
- is_organization()
Check if the union tag is
organization.- 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
- classmethod organization(val)
Create an instance of this class set to the
organizationtag with valueval.- Parameters:
val (OrganizationDetails)
- Return type:
- other = FedExtraDetails('other', None)
- classmethod team(val)
Create an instance of this class set to the
teamtag with valueval.- Parameters:
val (TeamDetails)
- Return type:
- class dropbox.team_log.FedHandshakeAction(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.- accepted_invite = FedHandshakeAction('accepted_invite', None)
- canceled_invite = FedHandshakeAction('canceled_invite', None)
- invite_expired = FedHandshakeAction('invite_expired', None)
- invited = FedHandshakeAction('invited', None)
- is_accepted_invite()
Check if the union tag is
accepted_invite.- Return type:
bool
- is_canceled_invite()
Check if the union tag is
canceled_invite.- Return type:
bool
- is_invite_expired()
Check if the union tag is
invite_expired.- Return type:
bool
- 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_rejected_invite()
Check if the union tag is
rejected_invite.- Return type:
bool
- is_removed_team()
Check if the union tag is
removed_team.- Return type:
bool
- other = FedHandshakeAction('other', None)
- rejected_invite = FedHandshakeAction('rejected_invite', None)
- removed_team = FedHandshakeAction('removed_team', None)
- class dropbox.team_log.FederationStatusChangeAdditionalInfo(tag, value=None)
Bases:
UnionAdditional information about the organization or connected 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.- Variables:
FederationStatusChangeAdditionalInfo.connected_team_name (ConnectedTeamName) – The name of the team
FederationStatusChangeAdditionalInfo.non_trusted_team_details (NonTrustedTeamDetails) – The email to which the request was sent
FederationStatusChangeAdditionalInfo.organization_name (OrganizationName) – The name of the organization
- classmethod connected_team_name(val)
Create an instance of this class set to the
connected_team_nametag with valueval.- Parameters:
val (ConnectedTeamName)
- Return type:
- get_connected_team_name()
The name of the team
Only call this if
is_connected_team_name()is true.- Return type:
- get_non_trusted_team_details()
The email to which the request was sent
Only call this if
is_non_trusted_team_details()is true.- Return type:
- get_organization_name()
The name of the organization
Only call this if
is_organization_name()is true.- Return type:
- is_connected_team_name()
Check if the union tag is
connected_team_name.- Return type:
bool
- is_non_trusted_team_details()
Check if the union tag is
non_trusted_team_details.- Return type:
bool
- is_organization_name()
Check if the union tag is
organization_name.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- classmethod non_trusted_team_details(val)
Create an instance of this class set to the
non_trusted_team_detailstag with valueval.- Parameters:
val (NonTrustedTeamDetails)
- Return type:
- classmethod organization_name(val)
Create an instance of this class set to the
organization_nametag with valueval.- Parameters:
val (OrganizationName)
- Return type:
- other = FederationStatusChangeAdditionalInfo('other', None)
- class dropbox.team_log.FileAddCommentDetails(comment_text=None)
Bases:
StructAdded file comment.
- Variables:
FileAddCommentDetails.comment_text – Comment text.
- __init__(comment_text=None)
- comment_text
- class dropbox.team_log.FileAddCommentType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.FileAddFromAutomationDetails
Bases:
StructAdded files and/or folders from automation.
- __init__()
- class dropbox.team_log.FileAddFromAutomationType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.FileAddType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.FileChangeCommentSubscriptionDetails(new_value=None, previous_value=None)
Bases:
StructSubscribed to or unsubscribed from comment notifications for file.
- Variables:
FileChangeCommentSubscriptionDetails.new_value – New file comment subscription.
FileChangeCommentSubscriptionDetails.previous_value – Previous file comment subscription. Might be missing due to historical data gap.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.FileChangeCommentSubscriptionType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.FileCommentNotificationPolicy(tag, value=None)
Bases:
UnionEnable or disable file comments notifications
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 = FileCommentNotificationPolicy('disabled', None)
- enabled = FileCommentNotificationPolicy('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 = FileCommentNotificationPolicy('other', None)
- class dropbox.team_log.FileCommentsChangePolicyDetails(new_value=None, previous_value=None)
Bases:
StructEnabled/disabled commenting on team files.
- Variables:
FileCommentsChangePolicyDetails.new_value – New commenting on team files policy.
FileCommentsChangePolicyDetails.previous_value – Previous commenting on team files policy. Might be missing due to historical data gap.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.FileCommentsChangePolicyType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.FileCommentsPolicy(tag, value=None)
Bases:
UnionFile comments 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.- disabled = FileCommentsPolicy('disabled', None)
- enabled = FileCommentsPolicy('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 = FileCommentsPolicy('other', None)
- class dropbox.team_log.FileCopyDetails(relocate_action_details=None)
Bases:
StructCopied files and/or folders.
- Variables:
FileCopyDetails.relocate_action_details – Relocate action details.
- __init__(relocate_action_details=None)
- relocate_action_details
- class dropbox.team_log.FileCopyType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.FileDeleteCommentDetails(comment_text=None)
Bases:
StructDeleted file comment.
- Variables:
FileDeleteCommentDetails.comment_text – Comment text.
- __init__(comment_text=None)
- comment_text
- class dropbox.team_log.FileDeleteCommentType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.FileDeleteType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.FileDownloadDetails
Bases:
StructDownloaded files and/or folders.
- __init__()
- class dropbox.team_log.FileDownloadType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.FileEditCommentDetails(previous_comment_text=None, comment_text=None)
Bases:
StructEdited file comment.
- Variables:
FileEditCommentDetails.comment_text – Comment text.
FileEditCommentDetails.previous_comment_text – Previous comment text.
- __init__(previous_comment_text=None, comment_text=None)
- comment_text
- previous_comment_text
- class dropbox.team_log.FileEditCommentType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.FileEditType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.FileGetCopyReferenceDetails
Bases:
StructCreated copy reference to file/folder.
- __init__()
- class dropbox.team_log.FileGetCopyReferenceType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.FileLikeCommentDetails(comment_text=None)
Bases:
StructLiked file comment.
- Variables:
FileLikeCommentDetails.comment_text – Comment text.
- __init__(comment_text=None)
- comment_text
- class dropbox.team_log.FileLikeCommentType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.FileLockingLockStatusChangedDetails(previous_value=None, new_value=None)
Bases:
StructLocked/unlocked editing for a file.
- Variables:
FileLockingLockStatusChangedDetails.previous_value – Previous lock status of the file.
FileLockingLockStatusChangedDetails.new_value – New lock status of the file.
- __init__(previous_value=None, new_value=None)
- new_value
- previous_value
- class dropbox.team_log.FileLockingLockStatusChangedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.FileLockingPolicyChangedDetails(new_value=None, previous_value=None)
Bases:
StructChanged file locking policy for team.
- Variables:
FileLockingPolicyChangedDetails.new_value – New file locking policy.
FileLockingPolicyChangedDetails.previous_value – Previous file locking policy.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.FileLockingPolicyChangedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.FileLogInfo(path=None, display_name=None, file_id=None, file_size=None)
Bases:
FileOrFolderLogInfoFile’s logged information.
- __init__(path=None, display_name=None, file_id=None, file_size=None)
- class dropbox.team_log.FileMoveDetails(relocate_action_details=None)
Bases:
StructMoved files and/or folders.
- Variables:
FileMoveDetails.relocate_action_details – Relocate action details.
- __init__(relocate_action_details=None)
- relocate_action_details
- class dropbox.team_log.FileMoveType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.FileOrFolderLogInfo(path=None, display_name=None, file_id=None, file_size=None)
Bases:
StructGeneric information relevant both for files and folders
- Variables:
FileOrFolderLogInfo.path – Path relative to event context.
FileOrFolderLogInfo.display_name – Display name.
FileOrFolderLogInfo.file_id – Unique ID.
FileOrFolderLogInfo.file_size – File or folder size in bytes.
- __init__(path=None, display_name=None, file_id=None, file_size=None)
- display_name
- file_id
- file_size
- path
- class dropbox.team_log.FilePermanentlyDeleteDetails
Bases:
StructPermanently deleted files and/or folders.
- __init__()
- class dropbox.team_log.FilePermanentlyDeleteType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.FilePreviewDetails
Bases:
StructPreviewed files and/or folders.
- __init__()
- class dropbox.team_log.FilePreviewType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.FileProviderMigrationPolicyChangedDetails(new_value=None, previous_value=None)
Bases:
StructChanged File Provider Migration policy for team.
- Variables:
FileProviderMigrationPolicyChangedDetails.new_value – To.
FileProviderMigrationPolicyChangedDetails.previous_value – From.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.FileProviderMigrationPolicyChangedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.FileRenameDetails(relocate_action_details=None)
Bases:
StructRenamed files and/or folders.
- Variables:
FileRenameDetails.relocate_action_details – Relocate action details.
- __init__(relocate_action_details=None)
- relocate_action_details
- class dropbox.team_log.FileRenameType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.FileRequestAutoCloseDetails(file_request_id=None, reason=None, previous_details=None)
Bases:
StructAuto closed file request.
- Variables:
FileRequestAutoCloseDetails.file_request_id – File request id. Might be missing due to historical data gap.
FileRequestAutoCloseDetails.reason – Reason for the auto close.
FileRequestAutoCloseDetails.previous_details – Previous file request details. Might be missing due to historical data gap.
- __init__(file_request_id=None, reason=None, previous_details=None)
- file_request_id
- previous_details
- reason
- class dropbox.team_log.FileRequestAutoCloseType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.FileRequestChangeDetails(new_details=None, file_request_id=None, previous_details=None)
Bases:
StructChanged file request.
- Variables:
FileRequestChangeDetails.file_request_id – File request id. Might be missing due to historical data gap.
FileRequestChangeDetails.previous_details – Previous file request details. Might be missing due to historical data gap.
FileRequestChangeDetails.new_details – New file request details.
- __init__(new_details=None, file_request_id=None, previous_details=None)
- file_request_id
- new_details
- previous_details
- class dropbox.team_log.FileRequestChangeType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.FileRequestCloseDetails(file_request_id=None, previous_details=None)
Bases:
StructClosed file request.
- Variables:
FileRequestCloseDetails.file_request_id – File request id. Might be missing due to historical data gap.
FileRequestCloseDetails.previous_details – Previous file request details. Might be missing due to historical data gap.
- __init__(file_request_id=None, previous_details=None)
- file_request_id
- previous_details
- class dropbox.team_log.FileRequestCloseType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.FileRequestCreateDetails(file_request_id=None, request_details=None)
Bases:
StructCreated file request.
- Variables:
FileRequestCreateDetails.file_request_id – File request id. Might be missing due to historical data gap.
FileRequestCreateDetails.request_details – File request details. Might be missing due to historical data gap.
- __init__(file_request_id=None, request_details=None)
- file_request_id
- request_details
- class dropbox.team_log.FileRequestCreateType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.FileRequestDeadline(deadline=None, allow_late_uploads=None)
Bases:
StructFile request deadline
- Variables:
FileRequestDeadline.deadline – The deadline for this file request. Might be missing due to historical data gap.
FileRequestDeadline.allow_late_uploads – If set, allow uploads after the deadline has passed.
- __init__(deadline=None, allow_late_uploads=None)
- allow_late_uploads
- deadline
- class dropbox.team_log.FileRequestDeleteDetails(file_request_id=None, previous_details=None)
Bases:
StructDelete file request.
- Variables:
FileRequestDeleteDetails.file_request_id – File request id. Might be missing due to historical data gap.
FileRequestDeleteDetails.previous_details – Previous file request details. Might be missing due to historical data gap.
- __init__(file_request_id=None, previous_details=None)
- file_request_id
- previous_details
- class dropbox.team_log.FileRequestDeleteType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.FileRequestDetails(asset_index=None, deadline=None, has_password=None)
Bases:
StructFile request details
- Variables:
FileRequestDetails.asset_index – Asset position in the Assets list.
FileRequestDetails.deadline – File request deadline.
FileRequestDetails.has_password – Flag represents if this file request has password.
- __init__(asset_index=None, deadline=None, has_password=None)
- asset_index
- deadline
- has_password
- class dropbox.team_log.FileRequestReceiveFileDetails(submitted_file_names=None, file_request_id=None, file_request_details=None, submitter_name=None, submitter_email=None)
Bases:
StructReceived files for file request.
- Variables:
FileRequestReceiveFileDetails.file_request_id – File request id. Might be missing due to historical data gap.
FileRequestReceiveFileDetails.file_request_details – File request details. Might be missing due to historical data gap.
FileRequestReceiveFileDetails.submitted_file_names – Submitted file names.
FileRequestReceiveFileDetails.submitter_name – The name as provided by the submitter.
FileRequestReceiveFileDetails.submitter_email – The email as provided by the submitter.
- __init__(submitted_file_names=None, file_request_id=None, file_request_details=None, submitter_name=None, submitter_email=None)
- file_request_details
- file_request_id
- submitted_file_names
- submitter_email
- submitter_name
- class dropbox.team_log.FileRequestReceiveFileType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.FileRequestsChangePolicyDetails(new_value=None, previous_value=None)
Bases:
StructEnabled/disabled file requests.
- Variables:
FileRequestsChangePolicyDetails.new_value – New file requests policy.
FileRequestsChangePolicyDetails.previous_value – Previous file requests policy. Might be missing due to historical data gap.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.FileRequestsChangePolicyType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.FileRequestsEmailsEnabledDetails
Bases:
StructEnabled file request emails for everyone.
- __init__()
- class dropbox.team_log.FileRequestsEmailsEnabledType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.FileRequestsEmailsRestrictedToTeamOnlyDetails
Bases:
StructEnabled file request emails for team.
- __init__()
- class dropbox.team_log.FileRequestsEmailsRestrictedToTeamOnlyType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.FileRequestsPolicy(tag, value=None)
Bases:
UnionFile requests 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.- disabled = FileRequestsPolicy('disabled', None)
- enabled = FileRequestsPolicy('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 = FileRequestsPolicy('other', None)
- class dropbox.team_log.FileResolveCommentDetails(comment_text=None)
Bases:
StructResolved file comment.
- Variables:
FileResolveCommentDetails.comment_text – Comment text.
- __init__(comment_text=None)
- comment_text
- class dropbox.team_log.FileResolveCommentType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.FileRestoreDetails
Bases:
StructRestored deleted files and/or folders.
- __init__()
- class dropbox.team_log.FileRestoreType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.FileRevertDetails
Bases:
StructReverted files to previous version.
- __init__()
- class dropbox.team_log.FileRevertType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.FileRollbackChangesDetails
Bases:
StructRolled back file actions.
- __init__()
- class dropbox.team_log.FileRollbackChangesType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.FileSaveCopyReferenceDetails(relocate_action_details=None)
Bases:
StructSaved file/folder using copy reference.
- Variables:
FileSaveCopyReferenceDetails.relocate_action_details – Relocate action details.
- __init__(relocate_action_details=None)
- relocate_action_details
- class dropbox.team_log.FileSaveCopyReferenceType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.FileTransfersFileAddDetails(file_transfer_id=None)
Bases:
StructTransfer files added.
- Variables:
FileTransfersFileAddDetails.file_transfer_id – Transfer id.
- __init__(file_transfer_id=None)
- file_transfer_id
- class dropbox.team_log.FileTransfersFileAddType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.FileTransfersPolicy(tag, value=None)
Bases:
UnionFile transfers 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.- disabled = FileTransfersPolicy('disabled', None)
- enabled = FileTransfersPolicy('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 = FileTransfersPolicy('other', None)
- class dropbox.team_log.FileTransfersPolicyChangedDetails(new_value=None, previous_value=None)
Bases:
StructChanged file transfers policy for team.
- Variables:
FileTransfersPolicyChangedDetails.new_value – New file transfers policy.
FileTransfersPolicyChangedDetails.previous_value – Previous file transfers policy.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.FileTransfersPolicyChangedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.FileTransfersTransferDeleteDetails(file_transfer_id=None)
Bases:
StructDeleted transfer.
- Variables:
FileTransfersTransferDeleteDetails.file_transfer_id – Transfer id.
- __init__(file_transfer_id=None)
- file_transfer_id
- class dropbox.team_log.FileTransfersTransferDeleteType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.FileTransfersTransferDownloadDetails(file_transfer_id=None)
Bases:
StructTransfer downloaded.
- Variables:
FileTransfersTransferDownloadDetails.file_transfer_id – Transfer id.
- __init__(file_transfer_id=None)
- file_transfer_id
- class dropbox.team_log.FileTransfersTransferDownloadType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.FileTransfersTransferSendDetails(file_transfer_id=None)
Bases:
StructSent transfer.
- Variables:
FileTransfersTransferSendDetails.file_transfer_id – Transfer id.
- __init__(file_transfer_id=None)
- file_transfer_id
- class dropbox.team_log.FileTransfersTransferSendType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.FileTransfersTransferViewDetails(file_transfer_id=None)
Bases:
StructViewed transfer.
- Variables:
FileTransfersTransferViewDetails.file_transfer_id – Transfer id.
- __init__(file_transfer_id=None)
- file_transfer_id
- class dropbox.team_log.FileTransfersTransferViewType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.FileUnlikeCommentDetails(comment_text=None)
Bases:
StructUnliked file comment.
- Variables:
FileUnlikeCommentDetails.comment_text – Comment text.
- __init__(comment_text=None)
- comment_text
- class dropbox.team_log.FileUnlikeCommentType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.FileUnresolveCommentDetails(comment_text=None)
Bases:
StructUnresolved file comment.
- Variables:
FileUnresolveCommentDetails.comment_text – Comment text.
- __init__(comment_text=None)
- comment_text
- class dropbox.team_log.FileUnresolveCommentType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.FlexibleFileNamesPolicy(tag, value=None)
Bases:
UnionFlexible file names 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_off_default()
Check if the union tag is
off_default.- Return type:
bool
- is_optional()
Check if the union tag is
optional.- Return type:
bool
- is_optional_default()
Check if the union tag is
optional_default.- 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
- is_required_default()
Check if the union tag is
required_default.- Return type:
bool
- off = FlexibleFileNamesPolicy('off', None)
- off_default = FlexibleFileNamesPolicy('off_default', None)
- optional = FlexibleFileNamesPolicy('optional', None)
- optional_default = FlexibleFileNamesPolicy('optional_default', None)
- other = FlexibleFileNamesPolicy('other', None)
- required = FlexibleFileNamesPolicy('required', None)
- required_default = FlexibleFileNamesPolicy('required_default', None)
- class dropbox.team_log.FlexibleFileNamesPolicyChangedDetails(new_value=None, previous_value=None)
Bases:
StructChanged flexible file names policy for team.
- Variables:
FlexibleFileNamesPolicyChangedDetails.new_value – New flexible file names policy.
FlexibleFileNamesPolicyChangedDetails.previous_value – Previous flexible file names policy. Might be missing due to historical data gap.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.FlexibleFileNamesPolicyChangedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.FolderLinkRestrictionPolicy(tag, value=None)
Bases:
UnionPolicy for deciding whether applying link restrictions on all team owned folders
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 = FolderLinkRestrictionPolicy('disabled', None)
- enabled = FolderLinkRestrictionPolicy('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 = FolderLinkRestrictionPolicy('other', None)
- class dropbox.team_log.FolderLinkRestrictionPolicyChangedDetails(new_value=None, previous_value=None)
Bases:
StructChanged folder link restrictions policy for team.
- Variables:
FolderLinkRestrictionPolicyChangedDetails.new_value – To.
FolderLinkRestrictionPolicyChangedDetails.previous_value – From.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.FolderLinkRestrictionPolicyChangedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.FolderLogInfo(path=None, display_name=None, file_id=None, file_size=None, file_count=None)
Bases:
FileOrFolderLogInfoFolder’s logged information.
- Variables:
FolderLogInfo.file_count – Number of files within the folder.
- __init__(path=None, display_name=None, file_id=None, file_size=None, file_count=None)
- file_count
- class dropbox.team_log.FolderOverviewDescriptionChangedDetails(folder_overview_location_asset=None)
Bases:
StructUpdated folder overview.
- Variables:
FolderOverviewDescriptionChangedDetails.folder_overview_location_asset – Folder Overview location position in the Assets list.
- __init__(folder_overview_location_asset=None)
- folder_overview_location_asset
- class dropbox.team_log.FolderOverviewDescriptionChangedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.FolderOverviewItemPinnedDetails(folder_overview_location_asset=None, pinned_items_asset_indices=None)
Bases:
StructPinned item to folder overview.
- Variables:
FolderOverviewItemPinnedDetails.folder_overview_location_asset – Folder Overview location position in the Assets list.
FolderOverviewItemPinnedDetails.pinned_items_asset_indices – Pinned items positions in the Assets list.
- __init__(folder_overview_location_asset=None, pinned_items_asset_indices=None)
- folder_overview_location_asset
- pinned_items_asset_indices
- class dropbox.team_log.FolderOverviewItemPinnedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.FolderOverviewItemUnpinnedDetails(folder_overview_location_asset=None, pinned_items_asset_indices=None)
Bases:
StructUnpinned item from folder overview.
- Variables:
FolderOverviewItemUnpinnedDetails.folder_overview_location_asset – Folder Overview location position in the Assets list.
FolderOverviewItemUnpinnedDetails.pinned_items_asset_indices – Pinned items positions in the Assets list.
- __init__(folder_overview_location_asset=None, pinned_items_asset_indices=None)
- folder_overview_location_asset
- pinned_items_asset_indices
- class dropbox.team_log.FolderOverviewItemUnpinnedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.GeoLocationLogInfo(ip_address=None, city=None, region=None, country=None)
Bases:
StructGeographic location details.
- Variables:
GeoLocationLogInfo.city – City name.
GeoLocationLogInfo.region – Region name.
GeoLocationLogInfo.country – Country code.
GeoLocationLogInfo.ip_address – IP address.
- __init__(ip_address=None, city=None, region=None, country=None)
- city
- country
- ip_address
- region
- class dropbox.team_log.GetTeamEventsArg(limit=None, account_id=None, time=None, category=None, event_type=None)
Bases:
Struct- Variables:
GetTeamEventsArg.limit – The maximal number of results to return per call. Note that some calls may not return
limitnumber of events, and may even return no events, even with has_more set to true. In this case, callers should fetch again usingdropbox.dropbox_client.Dropbox.team_log_get_events_continue().GetTeamEventsArg.account_id – Filter the events by account ID. Return only events with this account_id as either Actor, Context, or Participants.
GetTeamEventsArg.time – Filter by time range.
GetTeamEventsArg.category – Filter the returned events to a single category. Note that category shouldn’t be provided together with event_type.
GetTeamEventsArg.event_type – Filter the returned events to a single event type. Note that event_type shouldn’t be provided together with category.
- __init__(limit=None, account_id=None, time=None, category=None, event_type=None)
- account_id
- category
- event_type
- limit
- time
- class dropbox.team_log.GetTeamEventsContinueArg(cursor=None)
Bases:
Struct- Variables:
GetTeamEventsContinueArg.cursor – Indicates from what point to get the next set of events.
- __init__(cursor=None)
- cursor
- class dropbox.team_log.GetTeamEventsContinueError(tag, value=None)
Bases:
UnionErrors that can be raised when calling
dropbox.dropbox_client.Dropbox.team_log_get_events_continue().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:
GetTeamEventsContinueError.bad_cursor – Bad cursor.
GetTeamEventsContinueError.reset (datetime.datetime) – Cursors are intended to be used quickly. Individual cursor values are normally valid for days, but in rare cases may be reset sooner. Cursor reset errors should be handled by fetching a new cursor from
dropbox.dropbox_client.Dropbox.team_log_get_events(). The associated value is the approximate timestamp of the most recent event returned by the cursor. This should be used as a resumption point when callingdropbox.dropbox_client.Dropbox.team_log_get_events()to obtain a new cursor.
- bad_cursor = GetTeamEventsContinueError('bad_cursor', None)
- get_reset()
Cursors are intended to be used quickly. Individual cursor values are normally valid for days, but in rare cases may be reset sooner. Cursor reset errors should be handled by fetching a new cursor from
dropbox.dropbox_client.Dropbox.team_log_get_events(). The associated value is the approximate timestamp of the most recent event returned by the cursor. This should be used as a resumption point when callingdropbox.dropbox_client.Dropbox.team_log_get_events()to obtain a new cursor.Only call this if
is_reset()is true.- Return type:
datetime.datetime
- is_bad_cursor()
Check if the union tag is
bad_cursor.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- is_reset()
Check if the union tag is
reset.- Return type:
bool
- other = GetTeamEventsContinueError('other', None)
- classmethod reset(val)
Create an instance of this class set to the
resettag with valueval.- Parameters:
val (datetime.datetime)
- Return type:
- class dropbox.team_log.GetTeamEventsError(tag, value=None)
Bases:
UnionErrors that can be raised when calling
dropbox.dropbox_client.Dropbox.team_log_get_events().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:
GetTeamEventsError.account_id_not_found – No user found matching the provided account_id.
GetTeamEventsError.invalid_time_range – Invalid time range.
GetTeamEventsError.invalid_filters – Invalid filters. Do not specify both event_type and category parameters for the same call.
- account_id_not_found = GetTeamEventsError('account_id_not_found', None)
- invalid_filters = GetTeamEventsError('invalid_filters', None)
- invalid_time_range = GetTeamEventsError('invalid_time_range', None)
- is_account_id_not_found()
Check if the union tag is
account_id_not_found.- Return type:
bool
- is_invalid_filters()
Check if the union tag is
invalid_filters.- Return type:
bool
- is_invalid_time_range()
Check if the union tag is
invalid_time_range.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- other = GetTeamEventsError('other', None)
- class dropbox.team_log.GetTeamEventsResult(events=None, cursor=None, has_more=None)
Bases:
Struct- Variables:
GetTeamEventsResult.events – List of events. Note that events are not guaranteed to be sorted by their timestamp value.
GetTeamEventsResult.cursor – Pass the cursor into
dropbox.dropbox_client.Dropbox.team_log_get_events_continue()to obtain additional events. The value ofcursormay change for each response fromdropbox.dropbox_client.Dropbox.team_log_get_events_continue(), regardless of the value ofhas_more; older cursor strings may expire. Thus, callers should ensure that they update their cursor based on the latest value ofcursorafter each call, and poll regularly if they wish to poll for new events. Callers should handle reset exceptions for expired cursors.GetTeamEventsResult.has_more – Is true if there may be additional events that have not been returned yet. An additional call to
dropbox.dropbox_client.Dropbox.team_log_get_events_continue()can retrieve them. Note thathas_moremay beTrue, even ifeventsis empty.
- __init__(events=None, cursor=None, has_more=None)
- cursor
- events
- has_more
- class dropbox.team_log.GoogleSsoChangePolicyDetails(new_value=None, previous_value=None)
Bases:
StructEnabled/disabled Google single sign-on for team.
- Variables:
GoogleSsoChangePolicyDetails.new_value – New Google single sign-on policy.
GoogleSsoChangePolicyDetails.previous_value – Previous Google single sign-on policy. Might be missing due to historical data gap.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.GoogleSsoChangePolicyType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.GoogleSsoPolicy(tag, value=None)
Bases:
UnionGoogle SSO 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.- disabled = GoogleSsoPolicy('disabled', None)
- enabled = GoogleSsoPolicy('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 = GoogleSsoPolicy('other', None)
- class dropbox.team_log.GovernancePolicyAddFolderFailedDetails(governance_policy_id=None, name=None, folder=None, policy_type=None, reason=None)
Bases:
StructCouldn’t add a folder to a policy.
- Variables:
GovernancePolicyAddFolderFailedDetails.governance_policy_id – Policy ID.
GovernancePolicyAddFolderFailedDetails.name – Policy name.
GovernancePolicyAddFolderFailedDetails.policy_type – Policy type.
GovernancePolicyAddFolderFailedDetails.folder – Folder.
GovernancePolicyAddFolderFailedDetails.reason – Reason.
- __init__(governance_policy_id=None, name=None, folder=None, policy_type=None, reason=None)
- folder
- governance_policy_id
- name
- policy_type
- reason
- class dropbox.team_log.GovernancePolicyAddFolderFailedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.GovernancePolicyAddFoldersDetails(governance_policy_id=None, name=None, policy_type=None, folders=None)
Bases:
StructAdded folders to policy.
- Variables:
GovernancePolicyAddFoldersDetails.governance_policy_id – Policy ID.
GovernancePolicyAddFoldersDetails.name – Policy name.
GovernancePolicyAddFoldersDetails.policy_type – Policy type.
GovernancePolicyAddFoldersDetails.folders – Folders.
- __init__(governance_policy_id=None, name=None, policy_type=None, folders=None)
- folders
- governance_policy_id
- name
- policy_type
- class dropbox.team_log.GovernancePolicyAddFoldersType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.GovernancePolicyContentDisposedDetails(governance_policy_id=None, name=None, disposition_type=None, policy_type=None)
Bases:
StructContent disposed.
- Variables:
GovernancePolicyContentDisposedDetails.governance_policy_id – Policy ID.
GovernancePolicyContentDisposedDetails.name – Policy name.
GovernancePolicyContentDisposedDetails.policy_type – Policy type.
GovernancePolicyContentDisposedDetails.disposition_type – Disposition type.
- __init__(governance_policy_id=None, name=None, disposition_type=None, policy_type=None)
- disposition_type
- governance_policy_id
- name
- policy_type
- class dropbox.team_log.GovernancePolicyContentDisposedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.GovernancePolicyCreateDetails(governance_policy_id=None, name=None, duration=None, policy_type=None, folders=None)
Bases:
StructActivated a new policy.
- Variables:
GovernancePolicyCreateDetails.governance_policy_id – Policy ID.
GovernancePolicyCreateDetails.name – Policy name.
GovernancePolicyCreateDetails.policy_type – Policy type.
GovernancePolicyCreateDetails.duration – Duration in days.
GovernancePolicyCreateDetails.folders – Folders.
- __init__(governance_policy_id=None, name=None, duration=None, policy_type=None, folders=None)
- duration
- folders
- governance_policy_id
- name
- policy_type
- class dropbox.team_log.GovernancePolicyCreateType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.GovernancePolicyDeleteDetails(governance_policy_id=None, name=None, policy_type=None)
Bases:
StructDeleted a policy.
- Variables:
GovernancePolicyDeleteDetails.governance_policy_id – Policy ID.
GovernancePolicyDeleteDetails.name – Policy name.
GovernancePolicyDeleteDetails.policy_type – Policy type.
- __init__(governance_policy_id=None, name=None, policy_type=None)
- governance_policy_id
- name
- policy_type
- class dropbox.team_log.GovernancePolicyDeleteType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.GovernancePolicyEditDetailsDetails(governance_policy_id=None, name=None, attribute=None, previous_value=None, new_value=None, policy_type=None)
Bases:
StructEdited policy.
- Variables:
GovernancePolicyEditDetailsDetails.governance_policy_id – Policy ID.
GovernancePolicyEditDetailsDetails.name – Policy name.
GovernancePolicyEditDetailsDetails.policy_type – Policy type.
GovernancePolicyEditDetailsDetails.attribute – Attribute.
GovernancePolicyEditDetailsDetails.previous_value – From.
GovernancePolicyEditDetailsDetails.new_value – To.
- __init__(governance_policy_id=None, name=None, attribute=None, previous_value=None, new_value=None, policy_type=None)
- attribute
- governance_policy_id
- name
- new_value
- policy_type
- previous_value
- class dropbox.team_log.GovernancePolicyEditDetailsType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.GovernancePolicyEditDurationDetails(governance_policy_id=None, name=None, previous_value=None, new_value=None, policy_type=None)
Bases:
StructChanged policy duration.
- Variables:
GovernancePolicyEditDurationDetails.governance_policy_id – Policy ID.
GovernancePolicyEditDurationDetails.name – Policy name.
GovernancePolicyEditDurationDetails.policy_type – Policy type.
GovernancePolicyEditDurationDetails.previous_value – From.
GovernancePolicyEditDurationDetails.new_value – To.
- __init__(governance_policy_id=None, name=None, previous_value=None, new_value=None, policy_type=None)
- governance_policy_id
- name
- new_value
- policy_type
- previous_value
- class dropbox.team_log.GovernancePolicyEditDurationType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.GovernancePolicyExportCreatedDetails(governance_policy_id=None, name=None, export_name=None, policy_type=None)
Bases:
StructCreated a policy download.
- Variables:
GovernancePolicyExportCreatedDetails.governance_policy_id – Policy ID.
GovernancePolicyExportCreatedDetails.name – Policy name.
GovernancePolicyExportCreatedDetails.policy_type – Policy type.
GovernancePolicyExportCreatedDetails.export_name – Export name.
- __init__(governance_policy_id=None, name=None, export_name=None, policy_type=None)
- export_name
- governance_policy_id
- name
- policy_type
- class dropbox.team_log.GovernancePolicyExportCreatedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.GovernancePolicyExportRemovedDetails(governance_policy_id=None, name=None, export_name=None, policy_type=None)
Bases:
StructRemoved a policy download.
- Variables:
GovernancePolicyExportRemovedDetails.governance_policy_id – Policy ID.
GovernancePolicyExportRemovedDetails.name – Policy name.
GovernancePolicyExportRemovedDetails.policy_type – Policy type.
GovernancePolicyExportRemovedDetails.export_name – Export name.
- __init__(governance_policy_id=None, name=None, export_name=None, policy_type=None)
- export_name
- governance_policy_id
- name
- policy_type
- class dropbox.team_log.GovernancePolicyExportRemovedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.GovernancePolicyRemoveFoldersDetails(governance_policy_id=None, name=None, policy_type=None, folders=None, reason=None)
Bases:
StructRemoved folders from policy.
- Variables:
GovernancePolicyRemoveFoldersDetails.governance_policy_id – Policy ID.
GovernancePolicyRemoveFoldersDetails.name – Policy name.
GovernancePolicyRemoveFoldersDetails.policy_type – Policy type.
GovernancePolicyRemoveFoldersDetails.folders – Folders.
GovernancePolicyRemoveFoldersDetails.reason – Reason.
- __init__(governance_policy_id=None, name=None, policy_type=None, folders=None, reason=None)
- folders
- governance_policy_id
- name
- policy_type
- reason
- class dropbox.team_log.GovernancePolicyRemoveFoldersType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.GovernancePolicyReportCreatedDetails(governance_policy_id=None, name=None, policy_type=None)
Bases:
StructCreated a summary report for a policy.
- Variables:
GovernancePolicyReportCreatedDetails.governance_policy_id – Policy ID.
GovernancePolicyReportCreatedDetails.name – Policy name.
GovernancePolicyReportCreatedDetails.policy_type – Policy type.
- __init__(governance_policy_id=None, name=None, policy_type=None)
- governance_policy_id
- name
- policy_type
- class dropbox.team_log.GovernancePolicyReportCreatedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.GovernancePolicyZipPartDownloadedDetails(governance_policy_id=None, name=None, export_name=None, policy_type=None, part=None)
Bases:
StructDownloaded content from a policy.
- Variables:
GovernancePolicyZipPartDownloadedDetails.governance_policy_id – Policy ID.
GovernancePolicyZipPartDownloadedDetails.name – Policy name.
GovernancePolicyZipPartDownloadedDetails.policy_type – Policy type.
GovernancePolicyZipPartDownloadedDetails.export_name – Export name.
GovernancePolicyZipPartDownloadedDetails.part – Part.
- __init__(governance_policy_id=None, name=None, export_name=None, policy_type=None, part=None)
- export_name
- governance_policy_id
- name
- part
- policy_type
- class dropbox.team_log.GovernancePolicyZipPartDownloadedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.GroupAddExternalIdDetails(new_value=None)
Bases:
StructAdded external ID for group.
- Variables:
GroupAddExternalIdDetails.new_value – Current external id.
- __init__(new_value=None)
- new_value
- class dropbox.team_log.GroupAddExternalIdType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.GroupAddMemberDetails(is_group_owner=None)
Bases:
StructAdded team members to group.
- Variables:
GroupAddMemberDetails.is_group_owner – Is group owner.
- __init__(is_group_owner=None)
- is_group_owner
- class dropbox.team_log.GroupAddMemberType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.GroupChangeExternalIdDetails(new_value=None, previous_value=None)
Bases:
StructChanged external ID for group.
- Variables:
GroupChangeExternalIdDetails.new_value – Current external id.
GroupChangeExternalIdDetails.previous_value – Old external id.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.GroupChangeExternalIdType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.GroupChangeManagementTypeDetails(new_value=None, previous_value=None)
Bases:
StructChanged group management type.
- Variables:
GroupChangeManagementTypeDetails.new_value – New group management type.
GroupChangeManagementTypeDetails.previous_value – Previous group management type. Might be missing due to historical data gap.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.GroupChangeManagementTypeType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.GroupChangeMemberRoleDetails(is_group_owner=None)
Bases:
StructChanged manager permissions of group member.
- Variables:
GroupChangeMemberRoleDetails.is_group_owner – Is group owner.
- __init__(is_group_owner=None)
- is_group_owner
- class dropbox.team_log.GroupChangeMemberRoleType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.GroupCreateDetails(is_company_managed=None, join_policy=None)
Bases:
StructCreated group.
- Variables:
GroupCreateDetails.is_company_managed – Is company managed group.
GroupCreateDetails.join_policy – Group join policy.
- __init__(is_company_managed=None, join_policy=None)
- is_company_managed
- join_policy
- class dropbox.team_log.GroupCreateType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.GroupDeleteDetails(is_company_managed=None)
Bases:
StructDeleted group.
- Variables:
GroupDeleteDetails.is_company_managed – Is company managed group.
- __init__(is_company_managed=None)
- is_company_managed
- class dropbox.team_log.GroupDeleteType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.GroupDescriptionUpdatedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.GroupExternalSharingSettingOverrideChangedDetails(new_value=None, previous_value=None)
Bases:
StructChanged group’s external sharing setting.
- Variables:
GroupExternalSharingSettingOverrideChangedDetails.new_value – New external sharing setting.
GroupExternalSharingSettingOverrideChangedDetails.previous_value – Previous external sharing setting.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.GroupExternalSharingSettingOverrideChangedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.GroupJoinPolicy(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_open()
Check if the union tag is
open.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- is_request_to_join()
Check if the union tag is
request_to_join.- Return type:
bool
- open = GroupJoinPolicy('open', None)
- other = GroupJoinPolicy('other', None)
- request_to_join = GroupJoinPolicy('request_to_join', None)
- class dropbox.team_log.GroupJoinPolicyUpdatedDetails(is_company_managed=None, join_policy=None)
Bases:
StructUpdated group join policy.
- Variables:
GroupJoinPolicyUpdatedDetails.is_company_managed – Is company managed group.
GroupJoinPolicyUpdatedDetails.join_policy – Group join policy.
- __init__(is_company_managed=None, join_policy=None)
- is_company_managed
- join_policy
- class dropbox.team_log.GroupJoinPolicyUpdatedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.GroupLogInfo(display_name=None, group_id=None, external_id=None)
Bases:
StructGroup’s logged information.
- Variables:
GroupLogInfo.group_id – The unique id of this group.
GroupLogInfo.display_name – The name of this group.
GroupLogInfo.external_id – External group ID.
- __init__(display_name=None, group_id=None, external_id=None)
- display_name
- external_id
- group_id
- class dropbox.team_log.GroupMovedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.GroupRemoveExternalIdDetails(previous_value=None)
Bases:
StructRemoved external ID for group.
- Variables:
GroupRemoveExternalIdDetails.previous_value – Old external id.
- __init__(previous_value=None)
- previous_value
- class dropbox.team_log.GroupRemoveExternalIdType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.GroupRemoveMemberDetails
Bases:
StructRemoved team members from group.
- __init__()
- class dropbox.team_log.GroupRemoveMemberType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.GroupRenameDetails(previous_value=None, new_value=None)
Bases:
StructRenamed group.
- Variables:
GroupRenameDetails.previous_value – Previous display name.
GroupRenameDetails.new_value – New display name.
- __init__(previous_value=None, new_value=None)
- new_value
- previous_value
- class dropbox.team_log.GroupRenameType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.GroupUserManagementChangePolicyDetails(new_value=None, previous_value=None)
Bases:
StructChanged who can create groups.
- Variables:
GroupUserManagementChangePolicyDetails.new_value – New group users management policy.
GroupUserManagementChangePolicyDetails.previous_value – Previous group users 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.GroupUserManagementChangePolicyType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.GuestAdminChangeStatusDetails(is_guest=None, previous_value=None, new_value=None, action_details=None, guest_team_name=None, host_team_name=None)
Bases:
StructChanged guest team admin status.
- Variables:
GuestAdminChangeStatusDetails.is_guest – True for guest, false for host.
GuestAdminChangeStatusDetails.guest_team_name – The name of the guest team.
GuestAdminChangeStatusDetails.host_team_name – The name of the host team.
GuestAdminChangeStatusDetails.previous_value – Previous request state.
GuestAdminChangeStatusDetails.new_value – New request state.
GuestAdminChangeStatusDetails.action_details – Action details.
- __init__(is_guest=None, previous_value=None, new_value=None, action_details=None, guest_team_name=None, host_team_name=None)
- action_details
- guest_team_name
- host_team_name
- is_guest
- new_value
- previous_value
- class dropbox.team_log.GuestAdminChangeStatusType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.GuestAdminSignedInViaTrustedTeamsDetails(team_name=None, trusted_team_name=None)
Bases:
StructStarted trusted team admin session.
- Variables:
GuestAdminSignedInViaTrustedTeamsDetails.team_name – Host team name.
GuestAdminSignedInViaTrustedTeamsDetails.trusted_team_name – Trusted team name.
- __init__(team_name=None, trusted_team_name=None)
- team_name
- trusted_team_name
- class dropbox.team_log.GuestAdminSignedInViaTrustedTeamsType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.GuestAdminSignedOutViaTrustedTeamsDetails(team_name=None, trusted_team_name=None)
Bases:
StructEnded trusted team admin session.
- Variables:
GuestAdminSignedOutViaTrustedTeamsDetails.team_name – Host team name.
GuestAdminSignedOutViaTrustedTeamsDetails.trusted_team_name – Trusted team name.
- __init__(team_name=None, trusted_team_name=None)
- team_name
- trusted_team_name
- class dropbox.team_log.GuestAdminSignedOutViaTrustedTeamsType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.IdentifierType(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.- email = IdentifierType('email', None)
- facebook_profile_name = IdentifierType('facebook_profile_name', None)
- is_email()
Check if the union tag is
email.- Return type:
bool
- is_facebook_profile_name()
Check if the union tag is
facebook_profile_name.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- other = IdentifierType('other', None)
- class dropbox.team_log.IntegrationConnectedDetails(integration_name=None)
Bases:
StructConnected integration for member.
- Variables:
IntegrationConnectedDetails.integration_name – Name of the third-party integration.
- __init__(integration_name=None)
- integration_name
- class dropbox.team_log.IntegrationConnectedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.IntegrationDisconnectedDetails(integration_name=None)
Bases:
StructDisconnected integration for member.
- Variables:
IntegrationDisconnectedDetails.integration_name – Name of the third-party integration.
- __init__(integration_name=None)
- integration_name
- class dropbox.team_log.IntegrationDisconnectedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.IntegrationPolicy(tag, value=None)
Bases:
UnionPolicy for controlling whether a service integration is enabled for 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.- disabled = IntegrationPolicy('disabled', None)
- enabled = IntegrationPolicy('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 = IntegrationPolicy('other', None)
- class dropbox.team_log.IntegrationPolicyChangedDetails(integration_name=None, new_value=None, previous_value=None)
Bases:
StructChanged integration policy for team.
- Variables:
IntegrationPolicyChangedDetails.integration_name – Name of the third-party integration.
IntegrationPolicyChangedDetails.new_value – New integration policy.
IntegrationPolicyChangedDetails.previous_value – Previous integration policy.
- __init__(integration_name=None, new_value=None, previous_value=None)
- integration_name
- new_value
- previous_value
- class dropbox.team_log.IntegrationPolicyChangedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.InviteAcceptanceEmailPolicy(tag, value=None)
Bases:
UnionPolicy for deciding whether team admins receive email when an invitation to join the team is accepted
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 = InviteAcceptanceEmailPolicy('disabled', None)
- enabled = InviteAcceptanceEmailPolicy('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 = InviteAcceptanceEmailPolicy('other', None)
- class dropbox.team_log.InviteAcceptanceEmailPolicyChangedDetails(new_value=None, previous_value=None)
Bases:
StructChanged invite accept email policy for team.
- Variables:
InviteAcceptanceEmailPolicyChangedDetails.new_value – To.
InviteAcceptanceEmailPolicyChangedDetails.previous_value – From.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.InviteAcceptanceEmailPolicyChangedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.InviteMethod(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.- auto_approve = InviteMethod('auto_approve', None)
- invite_link = InviteMethod('invite_link', None)
- is_auto_approve()
Check if the union tag is
auto_approve.- Return type:
bool
- is_invite_link()
Check if the union tag is
invite_link.- Return type:
bool
- is_member_invite()
Check if the union tag is
member_invite.- Return type:
bool
- is_moved_from_another_team()
Check if the union tag is
moved_from_another_team.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- member_invite = InviteMethod('member_invite', None)
- moved_from_another_team = InviteMethod('moved_from_another_team', None)
- other = InviteMethod('other', None)
- class dropbox.team_log.JoinTeamDetails(linked_apps=None, linked_devices=None, linked_shared_folders=None, was_linked_apps_truncated=None, was_linked_devices_truncated=None, was_linked_shared_folders_truncated=None, has_linked_apps=None, has_linked_devices=None, has_linked_shared_folders=None)
Bases:
StructAdditional information relevant when a new member joins the team.
- Variables:
JoinTeamDetails.linked_apps – Field is deprecated. Linked applications. (Deprecated) Please use has_linked_apps boolean field instead.
JoinTeamDetails.linked_devices – Field is deprecated. Linked devices. (Deprecated) Please use has_linked_devices boolean field instead.
JoinTeamDetails.linked_shared_folders – Field is deprecated. Linked shared folders. (Deprecated) Please use has_linked_shared_folders boolean field instead.
JoinTeamDetails.was_linked_apps_truncated – Field is deprecated. (Deprecated) True if the linked_apps list was truncated to the maximum supported length (50).
JoinTeamDetails.was_linked_devices_truncated – Field is deprecated. (Deprecated) True if the linked_devices list was truncated to the maximum supported length (50).
JoinTeamDetails.was_linked_shared_folders_truncated – Field is deprecated. (Deprecated) True if the linked_shared_folders list was truncated to the maximum supported length (50).
JoinTeamDetails.has_linked_apps – True if the user had linked apps at event time.
JoinTeamDetails.has_linked_devices – True if the user had linked apps at event time.
JoinTeamDetails.has_linked_shared_folders – True if the user had linked shared folders at event time.
- __init__(linked_apps=None, linked_devices=None, linked_shared_folders=None, was_linked_apps_truncated=None, was_linked_devices_truncated=None, was_linked_shared_folders_truncated=None, has_linked_apps=None, has_linked_devices=None, has_linked_shared_folders=None)
- has_linked_apps
- has_linked_devices
- linked_apps
- linked_devices
- was_linked_apps_truncated
- was_linked_devices_truncated
- class dropbox.team_log.LabelType(tag, value=None)
Bases:
UnionLabel 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.- 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_test_only()
Check if the union tag is
test_only.- Return type:
bool
- is_user_defined_tag()
Check if the union tag is
user_defined_tag.- Return type:
bool
- other = LabelType('other', None)
- personal_information = LabelType('personal_information', None)
- test_only = LabelType('test_only', None)
- user_defined_tag = LabelType('user_defined_tag', None)
- class dropbox.team_log.LegacyDeviceSessionLogInfo(ip_address=None, created=None, updated=None, session_info=None, display_name=None, is_emm_managed=None, platform=None, mac_address=None, os_version=None, device_type=None, client_version=None, legacy_uniq_id=None)
Bases:
DeviceSessionLogInfoInformation on sessions, in legacy format
- Variables:
LegacyDeviceSessionLogInfo.session_info – Session unique id.
LegacyDeviceSessionLogInfo.display_name – The device name. Might be missing due to historical data gap.
LegacyDeviceSessionLogInfo.is_emm_managed – Is device managed by emm. Might be missing due to historical data gap.
LegacyDeviceSessionLogInfo.platform – Information on the hosting platform. Might be missing due to historical data gap.
LegacyDeviceSessionLogInfo.mac_address – The mac address of the last activity from this session. Might be missing due to historical data gap.
LegacyDeviceSessionLogInfo.os_version – The hosting OS version. Might be missing due to historical data gap.
LegacyDeviceSessionLogInfo.device_type – Information on the hosting device type. Might be missing due to historical data gap.
LegacyDeviceSessionLogInfo.client_version – The Dropbox client version. Might be missing due to historical data gap.
LegacyDeviceSessionLogInfo.legacy_uniq_id – Alternative unique device session id, instead of session id field. Might be missing due to historical data gap.
- __init__(ip_address=None, created=None, updated=None, session_info=None, display_name=None, is_emm_managed=None, platform=None, mac_address=None, os_version=None, device_type=None, client_version=None, legacy_uniq_id=None)
- client_version
- device_type
- display_name
- is_emm_managed
- legacy_uniq_id
- mac_address
- os_version
- platform
- session_info
- class dropbox.team_log.LegalHoldsActivateAHoldDetails(legal_hold_id=None, name=None, start_date=None, end_date=None)
Bases:
StructActivated a hold.
- Variables:
LegalHoldsActivateAHoldDetails.legal_hold_id – Hold ID.
LegalHoldsActivateAHoldDetails.name – Hold name.
LegalHoldsActivateAHoldDetails.start_date – Hold start date.
LegalHoldsActivateAHoldDetails.end_date – Hold end date.
- __init__(legal_hold_id=None, name=None, start_date=None, end_date=None)
- end_date
- legal_hold_id
- name
- start_date
- class dropbox.team_log.LegalHoldsActivateAHoldType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.LegalHoldsAddMembersDetails(legal_hold_id=None, name=None)
Bases:
StructAdded members to a hold.
- Variables:
LegalHoldsAddMembersDetails.legal_hold_id – Hold ID.
LegalHoldsAddMembersDetails.name – Hold name.
- __init__(legal_hold_id=None, name=None)
- legal_hold_id
- name
- class dropbox.team_log.LegalHoldsAddMembersType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.LegalHoldsChangeHoldDetailsDetails(legal_hold_id=None, name=None, previous_value=None, new_value=None)
Bases:
StructEdited details for a hold.
- Variables:
LegalHoldsChangeHoldDetailsDetails.legal_hold_id – Hold ID.
LegalHoldsChangeHoldDetailsDetails.name – Hold name.
LegalHoldsChangeHoldDetailsDetails.previous_value – Previous details.
LegalHoldsChangeHoldDetailsDetails.new_value – New details.
- __init__(legal_hold_id=None, name=None, previous_value=None, new_value=None)
- legal_hold_id
- name
- new_value
- previous_value
- class dropbox.team_log.LegalHoldsChangeHoldDetailsType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.LegalHoldsChangeHoldNameDetails(legal_hold_id=None, previous_value=None, new_value=None)
Bases:
StructRenamed a hold.
- Variables:
LegalHoldsChangeHoldNameDetails.legal_hold_id – Hold ID.
LegalHoldsChangeHoldNameDetails.previous_value – Previous Name.
LegalHoldsChangeHoldNameDetails.new_value – New Name.
- __init__(legal_hold_id=None, previous_value=None, new_value=None)
- legal_hold_id
- new_value
- previous_value
- class dropbox.team_log.LegalHoldsChangeHoldNameType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.LegalHoldsExportAHoldDetails(legal_hold_id=None, name=None, export_name=None)
Bases:
StructExported hold.
- Variables:
LegalHoldsExportAHoldDetails.legal_hold_id – Hold ID.
LegalHoldsExportAHoldDetails.name – Hold name.
LegalHoldsExportAHoldDetails.export_name – Export name.
- __init__(legal_hold_id=None, name=None, export_name=None)
- export_name
- legal_hold_id
- name
- class dropbox.team_log.LegalHoldsExportAHoldType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.LegalHoldsExportCancelledDetails(legal_hold_id=None, name=None, export_name=None)
Bases:
StructCanceled export for a hold.
- Variables:
LegalHoldsExportCancelledDetails.legal_hold_id – Hold ID.
LegalHoldsExportCancelledDetails.name – Hold name.
LegalHoldsExportCancelledDetails.export_name – Export name.
- __init__(legal_hold_id=None, name=None, export_name=None)
- export_name
- legal_hold_id
- name
- class dropbox.team_log.LegalHoldsExportCancelledType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.LegalHoldsExportDownloadedDetails(legal_hold_id=None, name=None, export_name=None, part=None, file_name=None)
Bases:
StructDownloaded export for a hold.
- Variables:
LegalHoldsExportDownloadedDetails.legal_hold_id – Hold ID.
LegalHoldsExportDownloadedDetails.name – Hold name.
LegalHoldsExportDownloadedDetails.export_name – Export name.
LegalHoldsExportDownloadedDetails.part – Part.
LegalHoldsExportDownloadedDetails.file_name – Filename.
- __init__(legal_hold_id=None, name=None, export_name=None, part=None, file_name=None)
- export_name
- file_name
- legal_hold_id
- name
- part
- class dropbox.team_log.LegalHoldsExportDownloadedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.LegalHoldsExportRemovedDetails(legal_hold_id=None, name=None, export_name=None)
Bases:
StructRemoved export for a hold.
- Variables:
LegalHoldsExportRemovedDetails.legal_hold_id – Hold ID.
LegalHoldsExportRemovedDetails.name – Hold name.
LegalHoldsExportRemovedDetails.export_name – Export name.
- __init__(legal_hold_id=None, name=None, export_name=None)
- export_name
- legal_hold_id
- name
- class dropbox.team_log.LegalHoldsExportRemovedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.LegalHoldsReleaseAHoldDetails(legal_hold_id=None, name=None)
Bases:
StructReleased a hold.
- Variables:
LegalHoldsReleaseAHoldDetails.legal_hold_id – Hold ID.
LegalHoldsReleaseAHoldDetails.name – Hold name.
- __init__(legal_hold_id=None, name=None)
- legal_hold_id
- name
- class dropbox.team_log.LegalHoldsReleaseAHoldType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.LegalHoldsRemoveMembersDetails(legal_hold_id=None, name=None)
Bases:
StructRemoved members from a hold.
- Variables:
LegalHoldsRemoveMembersDetails.legal_hold_id – Hold ID.
LegalHoldsRemoveMembersDetails.name – Hold name.
- __init__(legal_hold_id=None, name=None)
- legal_hold_id
- name
- class dropbox.team_log.LegalHoldsRemoveMembersType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.LegalHoldsReportAHoldDetails(legal_hold_id=None, name=None)
Bases:
StructCreated a summary report for a hold.
- Variables:
LegalHoldsReportAHoldDetails.legal_hold_id – Hold ID.
LegalHoldsReportAHoldDetails.name – Hold name.
- __init__(legal_hold_id=None, name=None)
- legal_hold_id
- name
- class dropbox.team_log.LegalHoldsReportAHoldType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.LinkSettingsLogInfo(name=None, require_email=None, downloadable=None, password_required=None, url=None, expire_at=None)
Bases:
StructLink Settings
- Variables:
LinkSettingsLogInfo.name – Link Name.
LinkSettingsLogInfo.require_email – Email Required.
LinkSettingsLogInfo.downloadable – Downloadable.
LinkSettingsLogInfo.expire_at – Expires at.
LinkSettingsLogInfo.password_required – Password required.
LinkSettingsLogInfo.url – Link URL.
- __init__(name=None, require_email=None, downloadable=None, password_required=None, url=None, expire_at=None)
- downloadable
- expire_at
- name
- password_required
- require_email
- url
- class dropbox.team_log.LinkedDeviceLogInfo(tag, value=None)
Bases:
UnionThe device sessions that user is linked to.
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:
LinkedDeviceLogInfo.desktop_device_session (DesktopDeviceSessionLogInfo) – desktop device session’s details.
LinkedDeviceLogInfo.legacy_device_session (LegacyDeviceSessionLogInfo) – legacy device session’s details.
LinkedDeviceLogInfo.mobile_device_session (MobileDeviceSessionLogInfo) – mobile device session’s details.
LinkedDeviceLogInfo.web_device_session (WebDeviceSessionLogInfo) – web device session’s details.
- classmethod desktop_device_session(val)
Create an instance of this class set to the
desktop_device_sessiontag with valueval.- Parameters:
- Return type:
- get_desktop_device_session()
desktop device session’s details.
Only call this if
is_desktop_device_session()is true.- Return type:
- get_legacy_device_session()
legacy device session’s details.
Only call this if
is_legacy_device_session()is true.- Return type:
- get_mobile_device_session()
mobile device session’s details.
Only call this if
is_mobile_device_session()is true.- Return type:
- get_web_device_session()
web device session’s details.
Only call this if
is_web_device_session()is true.- Return type:
- is_desktop_device_session()
Check if the union tag is
desktop_device_session.- Return type:
bool
- is_legacy_device_session()
Check if the union tag is
legacy_device_session.- Return type:
bool
- is_mobile_device_session()
Check if the union tag is
mobile_device_session.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- is_web_device_session()
Check if the union tag is
web_device_session.- Return type:
bool
- classmethod legacy_device_session(val)
Create an instance of this class set to the
legacy_device_sessiontag with valueval.- Parameters:
- Return type:
- classmethod mobile_device_session(val)
Create an instance of this class set to the
mobile_device_sessiontag with valueval.- Parameters:
- Return type:
- other = LinkedDeviceLogInfo('other', None)
- classmethod web_device_session(val)
Create an instance of this class set to the
web_device_sessiontag with valueval.- Parameters:
val (WebDeviceSessionLogInfo)
- Return type:
- class dropbox.team_log.LockStatus(tag, value=None)
Bases:
UnionFile lock 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_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 = LockStatus('locked', None)
- other = LockStatus('other', None)
- unlocked = LockStatus('unlocked', None)
- class dropbox.team_log.LoginFailDetails(login_method=None, error_details=None, is_emm_managed=None)
Bases:
StructFailed to sign in.
- Variables:
LoginFailDetails.is_emm_managed – Tells if the login device is EMM managed. Might be missing due to historical data gap.
LoginFailDetails.login_method – Login method.
LoginFailDetails.error_details – Error details.
- __init__(login_method=None, error_details=None, is_emm_managed=None)
- error_details
- is_emm_managed
- login_method
- class dropbox.team_log.LoginFailType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.LoginMethod(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.- apple_oauth = LoginMethod('apple_oauth', None)
- first_party_token_exchange = LoginMethod('first_party_token_exchange', None)
- google_oauth = LoginMethod('google_oauth', None)
- is_apple_oauth()
Check if the union tag is
apple_oauth.- Return type:
bool
- is_first_party_token_exchange()
Check if the union tag is
first_party_token_exchange.- Return type:
bool
- is_google_oauth()
Check if the union tag is
google_oauth.- Return type:
bool
- is_kakao_oauth()
Check if the union tag is
kakao_oauth.- Return type:
bool
- is_lenovo_oauth()
Check if the union tag is
lenovo_oauth.- Return type:
bool
- is_microsoft_oauth()
Check if the union tag is
microsoft_oauth.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- is_passkey()
Check if the union tag is
passkey.- Return type:
bool
- is_password()
Check if the union tag is
password.- Return type:
bool
- is_qr_code()
Check if the union tag is
qr_code.- Return type:
bool
- is_saml()
Check if the union tag is
saml.- Return type:
bool
- is_two_factor_authentication()
Check if the union tag is
two_factor_authentication.- Return type:
bool
- is_web_session()
Check if the union tag is
web_session.- Return type:
bool
- kakao_oauth = LoginMethod('kakao_oauth', None)
- lenovo_oauth = LoginMethod('lenovo_oauth', None)
- microsoft_oauth = LoginMethod('microsoft_oauth', None)
- other = LoginMethod('other', None)
- passkey = LoginMethod('passkey', None)
- password = LoginMethod('password', None)
- qr_code = LoginMethod('qr_code', None)
- saml = LoginMethod('saml', None)
- two_factor_authentication = LoginMethod('two_factor_authentication', None)
- web_session = LoginMethod('web_session', None)
- class dropbox.team_log.LoginSuccessDetails(login_method=None, is_emm_managed=None)
Bases:
StructSigned in.
- Variables:
LoginSuccessDetails.is_emm_managed – Tells if the login device is EMM managed. Might be missing due to historical data gap.
LoginSuccessDetails.login_method – Login method.
- __init__(login_method=None, is_emm_managed=None)
- is_emm_managed
- login_method
- class dropbox.team_log.LoginSuccessType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.LogoutDetails(login_id=None)
Bases:
StructSigned out.
- Variables:
LogoutDetails.login_id – Login session id.
- __init__(login_id=None)
- login_id
- class dropbox.team_log.LogoutType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.MalwareExclusionState(excluded_file_hashes_count=None, file_path_from_last_exclusion=None, file_path_from_last_inclusion=None)
Bases:
StructMalware exclusion list state
- Variables:
MalwareExclusionState.excluded_file_hashes_count – The number of files that are excluded from the monitoring for malware alerts.
MalwareExclusionState.file_path_from_last_exclusion – The file path of the last exclusion operation.
MalwareExclusionState.file_path_from_last_inclusion – The file path of the last inclusion operation.
- __init__(excluded_file_hashes_count=None, file_path_from_last_exclusion=None, file_path_from_last_inclusion=None)
- excluded_file_hashes_count
- file_path_from_last_exclusion
- file_path_from_last_inclusion
- class dropbox.team_log.MediaHubAddingPeoplePolicy(tag, value=None)
Bases:
UnionPolicy for deciding who can be added to Media Hub content
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.- anyone = MediaHubAddingPeoplePolicy('anyone', None)
- is_anyone()
Check if the union tag is
anyone.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- is_team_only()
Check if the union tag is
team_only.- Return type:
bool
- other = MediaHubAddingPeoplePolicy('other', None)
- team_only = MediaHubAddingPeoplePolicy('team_only', None)
- class dropbox.team_log.MediaHubAddingPeoplePolicyChangedDetails(new_value=None, previous_value=None)
Bases:
StructChanged the policy for adding people to Media Hub content.
- Variables:
MediaHubAddingPeoplePolicyChangedDetails.new_value – To.
MediaHubAddingPeoplePolicyChangedDetails.previous_value – From.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.MediaHubAddingPeoplePolicyChangedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.MediaHubDownloadPolicy(tag, value=None)
Bases:
UnionPolicy for deciding whether Media Hub content can be downloaded
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 = MediaHubDownloadPolicy('disabled', None)
- enabled = MediaHubDownloadPolicy('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 = MediaHubDownloadPolicy('other', None)
- class dropbox.team_log.MediaHubDownloadPolicyChangedDetails(new_value=None, previous_value=None)
Bases:
StructChanged the policy for downloading Media Hub content.
- Variables:
MediaHubDownloadPolicyChangedDetails.new_value – To.
MediaHubDownloadPolicyChangedDetails.previous_value – From.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.MediaHubDownloadPolicyChangedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.MediaHubFileDownloadedDetails
Bases:
StructDownloaded files in Media Hub.
- __init__()
- class dropbox.team_log.MediaHubFileDownloadedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.MediaHubLinkSharingPolicy(tag, value=None)
Bases:
UnionPolicy for deciding who Media Hub content can be shared with through links
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_no_one()
Check if the union tag is
no_one.- 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_only()
Check if the union tag is
team_only.- Return type:
bool
- no_one = MediaHubLinkSharingPolicy('no_one', None)
- other = MediaHubLinkSharingPolicy('other', None)
- public = MediaHubLinkSharingPolicy('public', None)
- team_only = MediaHubLinkSharingPolicy('team_only', None)
- class dropbox.team_log.MediaHubLinkSharingPolicyChangedDetails(new_value=None, previous_value=None)
Bases:
StructChanged the policy for sharing Media Hub content.
- Variables:
MediaHubLinkSharingPolicyChangedDetails.new_value – To.
MediaHubLinkSharingPolicyChangedDetails.previous_value – From.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.MediaHubLinkSharingPolicyChangedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.MediaHubProjectRole(tag, value=None)
Bases:
UnionMedia Hub project role
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.- editor = MediaHubProjectRole('editor', None)
- is_editor()
Check if the union tag is
editor.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- is_owner()
Check if the union tag is
owner.- Return type:
bool
- is_reviewer()
Check if the union tag is
reviewer.- Return type:
bool
- other = MediaHubProjectRole('other', None)
- owner = MediaHubProjectRole('owner', None)
- reviewer = MediaHubProjectRole('reviewer', None)
- class dropbox.team_log.MediaHubProjectTeamAddDetails
Bases:
StructAdded member to Media Hub project.
- __init__()
- class dropbox.team_log.MediaHubProjectTeamAddType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.MediaHubProjectTeamDeleteDetails
Bases:
StructRemoved member from Media Hub project.
- __init__()
- class dropbox.team_log.MediaHubProjectTeamDeleteType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.MediaHubProjectTeamRoleChangedDetails(previous_role=None, new_role=None)
Bases:
StructChanged member role in Media Hub project.
- Variables:
MediaHubProjectTeamRoleChangedDetails.previous_role – Previous Media Hub project role.
MediaHubProjectTeamRoleChangedDetails.new_role – New Media Hub project role.
- __init__(previous_role=None, new_role=None)
- new_role
- previous_role
- class dropbox.team_log.MediaHubProjectTeamRoleChangedType(description=None)
Bases:
Struct- __init__(description=None)
- description
Bases:
UnionMedia Hub shared link audience
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.Check if the union tag is
no_one.- Return type:
bool
Check if the union tag is
other.- Return type:
bool
Check if the union tag is
public.- Return type:
bool
Check if the union tag is
team_only.- Return type:
bool
Bases:
StructChanged Media Hub shared link audience.
- Variables:
MediaHubSharedLinkAudienceChangedDetails.target_type – Media Hub shared link target type.
MediaHubSharedLinkAudienceChangedDetails.previous_value – Previous Media Hub shared link audience.
MediaHubSharedLinkAudienceChangedDetails.new_value – New Media Hub shared link audience.
Bases:
Struct
Bases:
StructCreated Media Hub shared link.
- Variables:
MediaHubSharedLinkCreatedDetails.target_type – Media Hub shared link target type.
MediaHubSharedLinkCreatedDetails.audience – Media Hub shared link audience.
Bases:
Struct
Bases:
UnionMedia Hub shared link download setting
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.Check if the union tag is
disabled.- Return type:
bool
Check if the union tag is
enabled.- Return type:
bool
Check if the union tag is
other.- Return type:
bool
Bases:
StructChanged Media Hub shared link download setting.
- Variables:
MediaHubSharedLinkDownloadSettingChangedDetails.target_type – Media Hub shared link target type.
MediaHubSharedLinkDownloadSettingChangedDetails.previous_value – Previous Media Hub shared link download setting.
MediaHubSharedLinkDownloadSettingChangedDetails.new_value – New Media Hub shared link download setting.
Bases:
Struct
Bases:
StructRevoked Media Hub shared link.
- Variables:
MediaHubSharedLinkRevokedDetails.target_type – Media Hub shared link target type.
Bases:
Struct
Bases:
UnionMedia Hub shared link target 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.Check if the union tag is
bundle.- Return type:
bool
Check if the union tag is
other.- Return type:
bool
Check if the union tag is
project.- Return type:
bool
- class dropbox.team_log.MemberAccessDetailsCreateReportDetails
Bases:
StructCreated member access report.
- __init__()
- class dropbox.team_log.MemberAccessDetailsCreateReportFailedDetails(failure_reason=None)
Bases:
StructCouldn’t generate member access report.
- Variables:
MemberAccessDetailsCreateReportFailedDetails.failure_reason – Failure reason.
- __init__(failure_reason=None)
- failure_reason
- class dropbox.team_log.MemberAccessDetailsCreateReportFailedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.MemberAccessDetailsCreateReportType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.MemberAddExternalIdDetails(new_value=None)
Bases:
StructAdded an external ID for team member.
- Variables:
MemberAddExternalIdDetails.new_value – Current external id.
- __init__(new_value=None)
- new_value
- class dropbox.team_log.MemberAddExternalIdType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.MemberAddNameDetails(new_value=None)
Bases:
StructAdded team member name.
- Variables:
MemberAddNameDetails.new_value – New user’s name.
- __init__(new_value=None)
- new_value
- class dropbox.team_log.MemberAddNameType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.MemberChangeAdminRoleDetails(new_value=None, previous_value=None)
Bases:
StructChanged team member admin role.
- Variables:
MemberChangeAdminRoleDetails.new_value – New admin role. This field is relevant when the admin role is changed or whenthe user role changes from no admin rights to with admin rights.
MemberChangeAdminRoleDetails.previous_value – Previous admin role. This field is relevant when the admin role is changed or when the admin role is removed.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.MemberChangeAdminRoleType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.MemberChangeEmailDetails(new_value=None, previous_value=None)
Bases:
StructChanged team member email.
- Variables:
MemberChangeEmailDetails.new_value – New email.
MemberChangeEmailDetails.previous_value – Previous email. Might be missing due to historical data gap.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.MemberChangeEmailType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.MemberChangeExternalIdDetails(new_value=None, previous_value=None)
Bases:
StructChanged the external ID for team member.
- Variables:
MemberChangeExternalIdDetails.new_value – Current external id.
MemberChangeExternalIdDetails.previous_value – Old external id.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.MemberChangeExternalIdType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.MemberChangeMembershipTypeDetails(prev_value=None, new_value=None)
Bases:
StructChanged membership type (limited/full) of member.
- Variables:
MemberChangeMembershipTypeDetails.prev_value – Previous membership type.
MemberChangeMembershipTypeDetails.new_value – New membership type.
- __init__(prev_value=None, new_value=None)
- new_value
- prev_value
- class dropbox.team_log.MemberChangeMembershipTypeType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.MemberChangeNameDetails(new_value=None, previous_value=None)
Bases:
StructChanged team member name.
- Variables:
MemberChangeNameDetails.new_value – New user’s name.
MemberChangeNameDetails.previous_value – Previous user’s name. Might be missing due to historical data gap.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.MemberChangeNameType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.MemberChangeResellerRoleDetails(new_value=None, previous_value=None)
Bases:
StructChanged team member reseller role.
- Variables:
MemberChangeResellerRoleDetails.new_value – New reseller role. This field is relevant when the reseller role is changed.
MemberChangeResellerRoleDetails.previous_value – Previous reseller role. This field is relevant when the reseller role is changed or when the reseller role is removed.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.MemberChangeResellerRoleType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.MemberChangeStatusDetails(new_value=None, previous_value=None, action=None, new_team=None, previous_team=None)
Bases:
StructChanged member status (invited, joined, suspended, etc.).
- Variables:
MemberChangeStatusDetails.previous_value – Previous member status. Might be missing due to historical data gap.
MemberChangeStatusDetails.new_value – New member status.
MemberChangeStatusDetails.action – Additional information indicating the action taken that caused status change.
MemberChangeStatusDetails.new_team – The user’s new team name. This field is relevant when the user is transferred off the team.
MemberChangeStatusDetails.previous_team – The user’s previous team name. This field is relevant when the user is transferred onto the team.
- __init__(new_value=None, previous_value=None, action=None, new_team=None, previous_team=None)
- action
- new_team
- new_value
- previous_team
- previous_value
- class dropbox.team_log.MemberChangeStatusType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.MemberDeleteManualContactsDetails
Bases:
StructCleared manually added contacts.
- __init__()
- class dropbox.team_log.MemberDeleteManualContactsType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.MemberDeleteProfilePhotoDetails
Bases:
StructDeleted team member profile photo.
- __init__()
- class dropbox.team_log.MemberDeleteProfilePhotoType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.MemberPermanentlyDeleteAccountContentsDetails
Bases:
StructPermanently deleted contents of deleted team member account.
- __init__()
- class dropbox.team_log.MemberPermanentlyDeleteAccountContentsType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.MemberRemoveActionType(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.- delete = MemberRemoveActionType('delete', None)
- is_delete()
Check if the union tag is
delete.- Return type:
bool
- is_leave()
Check if the union tag is
leave.- Return type:
bool
- is_offboard()
Check if the union tag is
offboard.- Return type:
bool
- is_offboard_and_retain_team_folders()
Check if the union tag is
offboard_and_retain_team_folders.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- leave = MemberRemoveActionType('leave', None)
- offboard = MemberRemoveActionType('offboard', None)
- offboard_and_retain_team_folders = MemberRemoveActionType('offboard_and_retain_team_folders', None)
- other = MemberRemoveActionType('other', None)
- class dropbox.team_log.MemberRemoveExternalIdDetails(previous_value=None)
Bases:
StructRemoved the external ID for team member.
- Variables:
MemberRemoveExternalIdDetails.previous_value – Old external id.
- __init__(previous_value=None)
- previous_value
- class dropbox.team_log.MemberRemoveExternalIdType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.MemberRequestsChangePolicyDetails(new_value=None, previous_value=None)
Bases:
StructChanged whether users can find team when not invited.
- Variables:
MemberRequestsChangePolicyDetails.new_value – New member change requests policy.
MemberRequestsChangePolicyDetails.previous_value – Previous member change requests policy. Might be missing due to historical data gap.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.MemberRequestsChangePolicyType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.MemberRequestsPolicy(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.- auto_accept = MemberRequestsPolicy('auto_accept', None)
- disabled = MemberRequestsPolicy('disabled', None)
- is_auto_accept()
Check if the union tag is
auto_accept.- Return type:
bool
- is_disabled()
Check if the union tag is
disabled.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- is_require_approval()
Check if the union tag is
require_approval.- Return type:
bool
- other = MemberRequestsPolicy('other', None)
- require_approval = MemberRequestsPolicy('require_approval', None)
- class dropbox.team_log.MemberSendInvitePolicy(tag, value=None)
Bases:
UnionPolicy for controlling whether team members can send team invites
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 = MemberSendInvitePolicy('disabled', None)
- everyone = MemberSendInvitePolicy('everyone', None)
- is_disabled()
Check if the union tag is
disabled.- Return type:
bool
- is_everyone()
Check if the union tag is
everyone.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- is_specific_members()
Check if the union tag is
specific_members.- Return type:
bool
- other = MemberSendInvitePolicy('other', None)
- specific_members = MemberSendInvitePolicy('specific_members', None)
- class dropbox.team_log.MemberSendInvitePolicyChangedDetails(new_value=None, previous_value=None)
Bases:
StructChanged member send invite policy for team.
- Variables:
MemberSendInvitePolicyChangedDetails.new_value – New team member send invite policy.
MemberSendInvitePolicyChangedDetails.previous_value – Previous team member send invite policy.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.MemberSendInvitePolicyChangedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.MemberSetProfilePhotoDetails
Bases:
StructSet team member profile photo.
- __init__()
- class dropbox.team_log.MemberSetProfilePhotoType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.MemberSpaceLimitsAddCustomQuotaDetails(new_value=None)
Bases:
StructSet custom member space limit.
- Variables:
MemberSpaceLimitsAddCustomQuotaDetails.new_value – New custom quota value in bytes.
- __init__(new_value=None)
- new_value
- class dropbox.team_log.MemberSpaceLimitsAddCustomQuotaType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.MemberSpaceLimitsAddExceptionDetails
Bases:
StructAdded members to member space limit exception list.
- __init__()
- class dropbox.team_log.MemberSpaceLimitsAddExceptionType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.MemberSpaceLimitsChangeCapsTypePolicyDetails(previous_value=None, new_value=None)
Bases:
StructChanged member space limit type for team.
- Variables:
MemberSpaceLimitsChangeCapsTypePolicyDetails.previous_value – Previous space limit type.
MemberSpaceLimitsChangeCapsTypePolicyDetails.new_value – New space limit type.
- __init__(previous_value=None, new_value=None)
- new_value
- previous_value
- class dropbox.team_log.MemberSpaceLimitsChangeCapsTypePolicyType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.MemberSpaceLimitsChangeCustomQuotaDetails(previous_value=None, new_value=None)
Bases:
StructChanged custom member space limit.
- Variables:
MemberSpaceLimitsChangeCustomQuotaDetails.previous_value – Previous custom quota value in bytes.
MemberSpaceLimitsChangeCustomQuotaDetails.new_value – New custom quota value in bytes.
- __init__(previous_value=None, new_value=None)
- new_value
- previous_value
- class dropbox.team_log.MemberSpaceLimitsChangeCustomQuotaType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.MemberSpaceLimitsChangePolicyDetails(previous_value=None, new_value=None)
Bases:
StructChanged team default member space limit.
- Variables:
MemberSpaceLimitsChangePolicyDetails.previous_value – Previous team default limit value in bytes. Might be missing due to historical data gap.
MemberSpaceLimitsChangePolicyDetails.new_value – New team default limit value in bytes. Might be missing due to historical data gap.
- __init__(previous_value=None, new_value=None)
- new_value
- previous_value
- class dropbox.team_log.MemberSpaceLimitsChangePolicyType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.MemberSpaceLimitsChangeStatusDetails(previous_value=None, new_value=None)
Bases:
StructChanged space limit status.
- Variables:
MemberSpaceLimitsChangeStatusDetails.previous_value – Previous storage quota status.
MemberSpaceLimitsChangeStatusDetails.new_value – New storage quota status.
- __init__(previous_value=None, new_value=None)
- new_value
- previous_value
- class dropbox.team_log.MemberSpaceLimitsChangeStatusType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.MemberSpaceLimitsRemoveCustomQuotaDetails
Bases:
StructRemoved custom member space limit.
- __init__()
- class dropbox.team_log.MemberSpaceLimitsRemoveCustomQuotaType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.MemberSpaceLimitsRemoveExceptionDetails
Bases:
StructRemoved members from member space limit exception list.
- __init__()
- class dropbox.team_log.MemberSpaceLimitsRemoveExceptionType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.MemberStatus(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.- active = MemberStatus('active', None)
- invited = MemberStatus('invited', None)
- is_active()
Check if the union tag is
active.- Return type:
bool
- is_invited()
Check if the union tag is
invited.- Return type:
bool
- is_moved_to_another_team()
Check if the union tag is
moved_to_another_team.- Return type:
bool
- is_not_joined()
Check if the union tag is
not_joined.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- is_removed()
Check if the union tag is
removed.- Return type:
bool
- is_suspended()
Check if the union tag is
suspended.- Return type:
bool
- moved_to_another_team = MemberStatus('moved_to_another_team', None)
- not_joined = MemberStatus('not_joined', None)
- other = MemberStatus('other', None)
- removed = MemberStatus('removed', None)
- suspended = MemberStatus('suspended', None)
- class dropbox.team_log.MemberSuggestDetails(suggested_members=None)
Bases:
StructSuggested person to add to team.
- Variables:
MemberSuggestDetails.suggested_members – suggested users emails.
- __init__(suggested_members=None)
- suggested_members
- class dropbox.team_log.MemberSuggestType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.MemberSuggestionsChangePolicyDetails(new_value=None, previous_value=None)
Bases:
StructEnabled/disabled option for team members to suggest people to add to team.
- Variables:
MemberSuggestionsChangePolicyDetails.new_value – New team member suggestions policy.
MemberSuggestionsChangePolicyDetails.previous_value – Previous team member suggestions policy. Might be missing due to historical data gap.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.MemberSuggestionsChangePolicyType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.MemberSuggestionsPolicy(tag, value=None)
Bases:
UnionMember suggestions 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.- disabled = MemberSuggestionsPolicy('disabled', None)
- enabled = MemberSuggestionsPolicy('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 = MemberSuggestionsPolicy('other', None)
- class dropbox.team_log.MemberTransferAccountContentsDetails
Bases:
StructTransferred contents of deleted member account to another member.
- __init__()
- class dropbox.team_log.MemberTransferAccountContentsType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.MemberTransferredInternalFields(source_team_id=None, target_team_id=None)
Bases:
StructInternal only - fields for target team computations
- Variables:
MemberTransferredInternalFields.source_team_id – Internal only - team user was moved from.
MemberTransferredInternalFields.target_team_id – Internal only - team user was moved to.
- __init__(source_team_id=None, target_team_id=None)
- source_team_id
- target_team_id
- class dropbox.team_log.MicrosoftLoginChangePolicyDetails(new_value=None, previous_value=None)
Bases:
StructEnabled/disabled Microsoft login for team.
- Variables:
MicrosoftLoginChangePolicyDetails.new_value – New Microsoft login policy.
MicrosoftLoginChangePolicyDetails.previous_value – Previous Microsoft 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.MicrosoftLoginChangePolicyType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.MicrosoftLoginPolicy(tag, value=None)
Bases:
UnionMicrosoft 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 = MicrosoftLoginPolicy('default', None)
- disabled = MicrosoftLoginPolicy('disabled', None)
- enabled = MicrosoftLoginPolicy('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 = MicrosoftLoginPolicy('other', None)
- class dropbox.team_log.MicrosoftOfficeAddinChangePolicyDetails(new_value=None, previous_value=None)
Bases:
StructEnabled/disabled Microsoft Office add-in.
- Variables:
MicrosoftOfficeAddinChangePolicyDetails.new_value – New Microsoft Office addin policy.
MicrosoftOfficeAddinChangePolicyDetails.previous_value – Previous Microsoft Office addin policy. Might be missing due to historical data gap.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.MicrosoftOfficeAddinChangePolicyType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.MicrosoftOfficeAddinPolicy(tag, value=None)
Bases:
UnionMicrosoft Office addin 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.- disabled = MicrosoftOfficeAddinPolicy('disabled', None)
- enabled = MicrosoftOfficeAddinPolicy('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 = MicrosoftOfficeAddinPolicy('other', None)
- class dropbox.team_log.MissingDetails(source_event_fields=None)
Bases:
StructAn indication that an error occurred while retrieving the event. Some attributes of the event may be omitted as a result.
- Variables:
MissingDetails.source_event_fields – All the data that could be retrieved and converted from the source event.
- __init__(source_event_fields=None)
- source_event_fields
- class dropbox.team_log.MobileDeviceSessionLogInfo(device_name=None, client_type=None, ip_address=None, created=None, updated=None, session_info=None, client_version=None, os_version=None, last_carrier=None)
Bases:
DeviceSessionLogInfoInformation about linked Dropbox mobile client sessions
- Variables:
MobileDeviceSessionLogInfo.session_info – Mobile session unique id.
MobileDeviceSessionLogInfo.device_name – The device name.
MobileDeviceSessionLogInfo.client_type – The mobile application type.
MobileDeviceSessionLogInfo.client_version – The Dropbox client version.
MobileDeviceSessionLogInfo.os_version – The hosting OS version.
MobileDeviceSessionLogInfo.last_carrier – last carrier used by the device.
- __init__(device_name=None, client_type=None, ip_address=None, created=None, updated=None, session_info=None, client_version=None, os_version=None, last_carrier=None)
- client_type
- client_version
- device_name
- last_carrier
- os_version
- session_info
- class dropbox.team_log.MobileSessionLogInfo(session_id=None)
Bases:
SessionLogInfoMobile session.
- __init__(session_id=None)
- class dropbox.team_log.MultiTeamIdentityPolicy(tag, value=None)
Bases:
UnionMulti-team identity 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 = MultiTeamIdentityPolicy('default', None)
- disabled = MultiTeamIdentityPolicy('disabled', None)
- enabled = MultiTeamIdentityPolicy('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 = MultiTeamIdentityPolicy('other', None)
- class dropbox.team_log.MultiTeamIdentityPolicyChangedDetails(new_value=None, previous_value=None)
Bases:
StructChanged multi-team identity policy for team.
- Variables:
MultiTeamIdentityPolicyChangedDetails.new_value – New multi-team identity policy.
MultiTeamIdentityPolicyChangedDetails.previous_value – Previous multi-team identity policy. Might be missing due to historical data gap.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.MultiTeamIdentityPolicyChangedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.NamespaceRelativePathLogInfo(ns_id=None, relative_path=None, is_shared_namespace=None)
Bases:
StructNamespace relative path details.
- Variables:
NamespaceRelativePathLogInfo.ns_id – Namespace ID.
NamespaceRelativePathLogInfo.relative_path – A path relative to the specified namespace ID.
NamespaceRelativePathLogInfo.is_shared_namespace – True if the namespace is shared.
- __init__(ns_id=None, relative_path=None, is_shared_namespace=None)
- ns_id
- relative_path
- class dropbox.team_log.NetworkControlChangePolicyDetails(new_value=None, previous_value=None)
Bases:
StructEnabled/disabled network control.
- Variables:
NetworkControlChangePolicyDetails.new_value – New network control policy.
NetworkControlChangePolicyDetails.previous_value – Previous network control policy. Might be missing due to historical data gap.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.NetworkControlChangePolicyType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.NetworkControlPolicy(tag, value=None)
Bases:
UnionNetwork control 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.- disabled = NetworkControlPolicy('disabled', None)
- enabled = NetworkControlPolicy('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 = NetworkControlPolicy('other', None)
- class dropbox.team_log.NoExpirationLinkGenCreateReportDetails(start_date=None, end_date=None)
Bases:
StructReport created: Links created with no expiration.
- Variables:
NoExpirationLinkGenCreateReportDetails.start_date – Report start date.
NoExpirationLinkGenCreateReportDetails.end_date – Report end date.
- __init__(start_date=None, end_date=None)
- end_date
- start_date
- class dropbox.team_log.NoExpirationLinkGenCreateReportType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.NoExpirationLinkGenReportFailedDetails(failure_reason=None)
Bases:
StructCouldn’t create report: Links created with no expiration.
- Variables:
NoExpirationLinkGenReportFailedDetails.failure_reason – Failure reason.
- __init__(failure_reason=None)
- failure_reason
- class dropbox.team_log.NoExpirationLinkGenReportFailedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.NoPasswordLinkGenCreateReportDetails(start_date=None, end_date=None)
Bases:
StructReport created: Links created without passwords.
- Variables:
NoPasswordLinkGenCreateReportDetails.start_date – Report start date.
NoPasswordLinkGenCreateReportDetails.end_date – Report end date.
- __init__(start_date=None, end_date=None)
- end_date
- start_date
- class dropbox.team_log.NoPasswordLinkGenCreateReportType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.NoPasswordLinkGenReportFailedDetails(failure_reason=None)
Bases:
StructCouldn’t create report: Links created without passwords.
- Variables:
NoPasswordLinkGenReportFailedDetails.failure_reason – Failure reason.
- __init__(failure_reason=None)
- failure_reason
- class dropbox.team_log.NoPasswordLinkGenReportFailedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.NoPasswordLinkViewCreateReportDetails(start_date=None, end_date=None)
Bases:
StructReport created: Views of links without passwords.
- Variables:
NoPasswordLinkViewCreateReportDetails.start_date – Report start date.
NoPasswordLinkViewCreateReportDetails.end_date – Report end date.
- __init__(start_date=None, end_date=None)
- end_date
- start_date
- class dropbox.team_log.NoPasswordLinkViewCreateReportType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.NoPasswordLinkViewReportFailedDetails(failure_reason=None)
Bases:
StructCouldn’t create report: Views of links without passwords.
- Variables:
NoPasswordLinkViewReportFailedDetails.failure_reason – Failure reason.
- __init__(failure_reason=None)
- failure_reason
- class dropbox.team_log.NoPasswordLinkViewReportFailedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.NonTeamMemberLogInfo(account_id=None, display_name=None, email=None)
Bases:
UserLogInfoNon team member’s logged information.
- __init__(account_id=None, display_name=None, email=None)
- class dropbox.team_log.NonTrustedTeamDetails(team=None)
Bases:
StructThe email to which the request was sent
- Variables:
NonTrustedTeamDetails.team – The email to which the request was sent.
- __init__(team=None)
- team
- class dropbox.team_log.NoteAclInviteOnlyDetails
Bases:
StructChanged Paper doc to invite-only.
- __init__()
- class dropbox.team_log.NoteAclInviteOnlyType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.NoteAclLinkDetails
Bases:
StructChanged Paper doc to link-accessible.
- __init__()
- class dropbox.team_log.NoteAclLinkType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.NoteAclTeamLinkDetails
Bases:
StructChanged Paper doc to link-accessible for team.
- __init__()
- class dropbox.team_log.NoteAclTeamLinkType(description=None)
Bases:
Struct- __init__(description=None)
- description
Bases:
StructShared received Paper doc.
Bases:
Struct
Bases:
StructShared Paper doc.
Bases:
Struct
- class dropbox.team_log.ObjectLabelAddedDetails(label_type=None)
Bases:
StructAdded a label.
- Variables:
ObjectLabelAddedDetails.label_type – Labels mark a file or folder.
- __init__(label_type=None)
- label_type
- class dropbox.team_log.ObjectLabelAddedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.ObjectLabelRemovedDetails(label_type=None)
Bases:
StructRemoved a label.
- Variables:
ObjectLabelRemovedDetails.label_type – Labels mark a file or folder.
- __init__(label_type=None)
- label_type
- class dropbox.team_log.ObjectLabelRemovedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.ObjectLabelUpdatedValueDetails(label_type=None)
Bases:
StructUpdated a label’s value.
- Variables:
ObjectLabelUpdatedValueDetails.label_type – Labels mark a file or folder.
- __init__(label_type=None)
- label_type
- class dropbox.team_log.ObjectLabelUpdatedValueType(description=None)
Bases:
Struct- __init__(description=None)
- description
Bases:
StructOpened shared Paper doc.
Bases:
Struct
- class dropbox.team_log.OrganizationDetails(organization=None)
Bases:
StructMore details about the organization.
- Variables:
OrganizationDetails.organization – The name of the organization.
- __init__(organization=None)
- organization
- class dropbox.team_log.OrganizationName(organization=None)
Bases:
StructThe name of the organization
- Variables:
OrganizationName.organization – The name of the organization.
- __init__(organization=None)
- organization
- class dropbox.team_log.OrganizeFolderWithTidyDetails
Bases:
StructOrganized a folder with multi-file organize.
- __init__()
- class dropbox.team_log.OrganizeFolderWithTidyType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.OriginLogInfo(access_method=None, geo_location=None)
Bases:
StructThe origin from which the actor performed the action.
- Variables:
OriginLogInfo.geo_location – Geographic location details.
OriginLogInfo.access_method – The method that was used to perform the action.
- __init__(access_method=None, geo_location=None)
- access_method
- geo_location
- class dropbox.team_log.OutdatedLinkViewCreateReportDetails(start_date=None, end_date=None)
Bases:
StructReport created: Views of old links.
- Variables:
OutdatedLinkViewCreateReportDetails.start_date – Report start date.
OutdatedLinkViewCreateReportDetails.end_date – Report end date.
- __init__(start_date=None, end_date=None)
- end_date
- start_date
- class dropbox.team_log.OutdatedLinkViewCreateReportType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.OutdatedLinkViewReportFailedDetails(failure_reason=None)
Bases:
StructCouldn’t create report: Views of old links.
- Variables:
OutdatedLinkViewReportFailedDetails.failure_reason – Failure reason.
- __init__(failure_reason=None)
- failure_reason
- class dropbox.team_log.OutdatedLinkViewReportFailedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.PaperAccessType(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.- commenter = PaperAccessType('commenter', None)
- editor = PaperAccessType('editor', None)
- is_commenter()
Check if the union tag is
commenter.- Return type:
bool
- is_editor()
Check if the union tag is
editor.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- is_viewer()
Check if the union tag is
viewer.- Return type:
bool
- other = PaperAccessType('other', None)
- viewer = PaperAccessType('viewer', None)
- class dropbox.team_log.PaperAdminExportStartDetails
Bases:
StructExported all team Paper docs.
- __init__()
- class dropbox.team_log.PaperAdminExportStartType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.PaperChangeDeploymentPolicyDetails(new_value=None, previous_value=None)
Bases:
StructChanged whether Dropbox Paper, when enabled, is deployed to all members or to specific members.
- Variables:
PaperChangeDeploymentPolicyDetails.new_value – New Dropbox Paper deployment policy.
PaperChangeDeploymentPolicyDetails.previous_value – Previous Dropbox Paper deployment policy. Might be missing due to historical data gap.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.PaperChangeDeploymentPolicyType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.PaperChangeMemberLinkPolicyDetails(new_value=None)
Bases:
StructChanged whether non-members can view Paper docs with link.
- Variables:
PaperChangeMemberLinkPolicyDetails.new_value – New paper external link accessibility policy.
- __init__(new_value=None)
- new_value
- class dropbox.team_log.PaperChangeMemberLinkPolicyType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.PaperChangeMemberPolicyDetails(new_value=None, previous_value=None)
Bases:
StructChanged whether members can share Paper docs outside team, and if docs are accessible only by team members or anyone by default.
- Variables:
PaperChangeMemberPolicyDetails.new_value – New paper external accessibility policy.
PaperChangeMemberPolicyDetails.previous_value – Previous paper external accessibility policy. Might be missing due to historical data gap.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.PaperChangeMemberPolicyType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.PaperChangePolicyDetails(new_value=None, previous_value=None)
Bases:
StructEnabled/disabled Dropbox Paper for team.
- Variables:
PaperChangePolicyDetails.new_value – New Dropbox Paper policy.
PaperChangePolicyDetails.previous_value – Previous Dropbox Paper policy. Might be missing due to historical data gap.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.PaperChangePolicyType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.PaperContentAddMemberDetails(event_uuid=None)
Bases:
StructAdded users and/or groups to Paper doc/folder.
- Variables:
PaperContentAddMemberDetails.event_uuid – Event unique identifier.
- __init__(event_uuid=None)
- event_uuid
- class dropbox.team_log.PaperContentAddMemberType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.PaperContentAddToFolderDetails(event_uuid=None, target_asset_index=None, parent_asset_index=None)
Bases:
StructAdded Paper doc/folder to folder.
- Variables:
PaperContentAddToFolderDetails.event_uuid – Event unique identifier.
PaperContentAddToFolderDetails.target_asset_index – Target asset position in the Assets list.
PaperContentAddToFolderDetails.parent_asset_index – Parent asset position in the Assets list.
- __init__(event_uuid=None, target_asset_index=None, parent_asset_index=None)
- event_uuid
- parent_asset_index
- target_asset_index
- class dropbox.team_log.PaperContentAddToFolderType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.PaperContentArchiveDetails(event_uuid=None)
Bases:
StructArchived Paper doc/folder.
- Variables:
PaperContentArchiveDetails.event_uuid – Event unique identifier.
- __init__(event_uuid=None)
- event_uuid
- class dropbox.team_log.PaperContentArchiveType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.PaperContentCreateDetails(event_uuid=None)
Bases:
StructCreated Paper doc/folder.
- Variables:
PaperContentCreateDetails.event_uuid – Event unique identifier.
- __init__(event_uuid=None)
- event_uuid
- class dropbox.team_log.PaperContentCreateType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.PaperContentPermanentlyDeleteDetails(event_uuid=None)
Bases:
StructPermanently deleted Paper doc/folder.
- Variables:
PaperContentPermanentlyDeleteDetails.event_uuid – Event unique identifier.
- __init__(event_uuid=None)
- event_uuid
- class dropbox.team_log.PaperContentPermanentlyDeleteType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.PaperContentRemoveFromFolderDetails(event_uuid=None, target_asset_index=None, parent_asset_index=None)
Bases:
StructRemoved Paper doc/folder from folder.
- Variables:
PaperContentRemoveFromFolderDetails.event_uuid – Event unique identifier.
PaperContentRemoveFromFolderDetails.target_asset_index – Target asset position in the Assets list.
PaperContentRemoveFromFolderDetails.parent_asset_index – Parent asset position in the Assets list.
- __init__(event_uuid=None, target_asset_index=None, parent_asset_index=None)
- event_uuid
- parent_asset_index
- target_asset_index
- class dropbox.team_log.PaperContentRemoveFromFolderType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.PaperContentRemoveMemberDetails(event_uuid=None)
Bases:
StructRemoved users and/or groups from Paper doc/folder.
- Variables:
PaperContentRemoveMemberDetails.event_uuid – Event unique identifier.
- __init__(event_uuid=None)
- event_uuid
- class dropbox.team_log.PaperContentRemoveMemberType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.PaperContentRenameDetails(event_uuid=None)
Bases:
StructRenamed Paper doc/folder.
- Variables:
PaperContentRenameDetails.event_uuid – Event unique identifier.
- __init__(event_uuid=None)
- event_uuid
- class dropbox.team_log.PaperContentRenameType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.PaperContentRestoreDetails(event_uuid=None)
Bases:
StructRestored archived Paper doc/folder.
- Variables:
PaperContentRestoreDetails.event_uuid – Event unique identifier.
- __init__(event_uuid=None)
- event_uuid
- class dropbox.team_log.PaperContentRestoreType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.PaperDefaultFolderPolicy(tag, value=None)
Bases:
UnionPolicy to set default access for newly created Paper folders.
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.- everyone_in_team = PaperDefaultFolderPolicy('everyone_in_team', None)
- invite_only = PaperDefaultFolderPolicy('invite_only', None)
- is_everyone_in_team()
Check if the union tag is
everyone_in_team.- Return type:
bool
- is_invite_only()
Check if the union tag is
invite_only.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- other = PaperDefaultFolderPolicy('other', None)
- class dropbox.team_log.PaperDefaultFolderPolicyChangedDetails(new_value=None, previous_value=None)
Bases:
StructChanged Paper Default Folder Policy setting for team.
- Variables:
PaperDefaultFolderPolicyChangedDetails.new_value – New Paper Default Folder Policy.
PaperDefaultFolderPolicyChangedDetails.previous_value – Previous Paper Default Folder Policy.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.PaperDefaultFolderPolicyChangedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.PaperDesktopPolicy(tag, value=None)
Bases:
UnionPolicy for controlling if team members can use Paper Desktop
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 = PaperDesktopPolicy('disabled', None)
- enabled = PaperDesktopPolicy('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 = PaperDesktopPolicy('other', None)
- class dropbox.team_log.PaperDesktopPolicyChangedDetails(new_value=None, previous_value=None)
Bases:
StructEnabled/disabled Paper Desktop for team.
- Variables:
PaperDesktopPolicyChangedDetails.new_value – New Paper Desktop policy.
PaperDesktopPolicyChangedDetails.previous_value – Previous Paper Desktop policy.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.PaperDesktopPolicyChangedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.PaperDocAddCommentDetails(event_uuid=None, comment_text=None)
Bases:
StructAdded Paper doc comment.
- Variables:
PaperDocAddCommentDetails.event_uuid – Event unique identifier.
PaperDocAddCommentDetails.comment_text – Comment text.
- __init__(event_uuid=None, comment_text=None)
- comment_text
- event_uuid
- class dropbox.team_log.PaperDocAddCommentType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.PaperDocChangeMemberRoleDetails(event_uuid=None, access_type=None)
Bases:
StructChanged member permissions for Paper doc.
- Variables:
PaperDocChangeMemberRoleDetails.event_uuid – Event unique identifier.
PaperDocChangeMemberRoleDetails.access_type – Paper doc access type.
- __init__(event_uuid=None, access_type=None)
- access_type
- event_uuid
- class dropbox.team_log.PaperDocChangeMemberRoleType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.PaperDocChangeSharingPolicyDetails(event_uuid=None, public_sharing_policy=None, team_sharing_policy=None)
Bases:
StructChanged sharing setting for Paper doc.
- Variables:
PaperDocChangeSharingPolicyDetails.event_uuid – Event unique identifier.
PaperDocChangeSharingPolicyDetails.public_sharing_policy – Sharing policy with external users.
PaperDocChangeSharingPolicyDetails.team_sharing_policy – Sharing policy with team.
- __init__(event_uuid=None, public_sharing_policy=None, team_sharing_policy=None)
- event_uuid
- public_sharing_policy
- team_sharing_policy
- class dropbox.team_log.PaperDocChangeSharingPolicyType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.PaperDocChangeSubscriptionDetails(event_uuid=None, new_subscription_level=None, previous_subscription_level=None)
Bases:
StructFollowed/unfollowed Paper doc.
- Variables:
PaperDocChangeSubscriptionDetails.event_uuid – Event unique identifier.
PaperDocChangeSubscriptionDetails.new_subscription_level – New doc subscription level.
PaperDocChangeSubscriptionDetails.previous_subscription_level – Previous doc subscription level. Might be missing due to historical data gap.
- __init__(event_uuid=None, new_subscription_level=None, previous_subscription_level=None)
- event_uuid
- new_subscription_level
- previous_subscription_level
- class dropbox.team_log.PaperDocChangeSubscriptionType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.PaperDocDeleteCommentDetails(event_uuid=None, comment_text=None)
Bases:
StructDeleted Paper doc comment.
- Variables:
PaperDocDeleteCommentDetails.event_uuid – Event unique identifier.
PaperDocDeleteCommentDetails.comment_text – Comment text.
- __init__(event_uuid=None, comment_text=None)
- comment_text
- event_uuid
- class dropbox.team_log.PaperDocDeleteCommentType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.PaperDocDeletedDetails(event_uuid=None)
Bases:
StructArchived Paper doc.
- Variables:
PaperDocDeletedDetails.event_uuid – Event unique identifier.
- __init__(event_uuid=None)
- event_uuid
- class dropbox.team_log.PaperDocDeletedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.PaperDocDownloadDetails(event_uuid=None, export_file_format=None)
Bases:
StructDownloaded Paper doc in specific format.
- Variables:
PaperDocDownloadDetails.event_uuid – Event unique identifier.
PaperDocDownloadDetails.export_file_format – Export file format.
- __init__(event_uuid=None, export_file_format=None)
- event_uuid
- export_file_format
- class dropbox.team_log.PaperDocDownloadType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.PaperDocEditCommentDetails(event_uuid=None, comment_text=None)
Bases:
StructEdited Paper doc comment.
- Variables:
PaperDocEditCommentDetails.event_uuid – Event unique identifier.
PaperDocEditCommentDetails.comment_text – Comment text.
- __init__(event_uuid=None, comment_text=None)
- comment_text
- event_uuid
- class dropbox.team_log.PaperDocEditCommentType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.PaperDocEditDetails(event_uuid=None)
Bases:
StructEdited Paper doc.
- Variables:
PaperDocEditDetails.event_uuid – Event unique identifier.
- __init__(event_uuid=None)
- event_uuid
- class dropbox.team_log.PaperDocEditType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.PaperDocFollowedDetails(event_uuid=None)
Bases:
StructFollowed Paper doc.
- Variables:
PaperDocFollowedDetails.event_uuid – Event unique identifier.
- __init__(event_uuid=None)
- event_uuid
- class dropbox.team_log.PaperDocFollowedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.PaperDocMentionDetails(event_uuid=None)
Bases:
StructMentioned user in Paper doc.
- Variables:
PaperDocMentionDetails.event_uuid – Event unique identifier.
- __init__(event_uuid=None)
- event_uuid
- class dropbox.team_log.PaperDocMentionType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.PaperDocOwnershipChangedDetails(event_uuid=None, new_owner_user_id=None, old_owner_user_id=None)
Bases:
StructTransferred ownership of Paper doc.
- Variables:
PaperDocOwnershipChangedDetails.event_uuid – Event unique identifier.
PaperDocOwnershipChangedDetails.old_owner_user_id – Previous owner.
PaperDocOwnershipChangedDetails.new_owner_user_id – New owner.
- __init__(event_uuid=None, new_owner_user_id=None, old_owner_user_id=None)
- event_uuid
- new_owner_user_id
- old_owner_user_id
- class dropbox.team_log.PaperDocOwnershipChangedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.PaperDocRequestAccessDetails(event_uuid=None)
Bases:
StructRequested access to Paper doc.
- Variables:
PaperDocRequestAccessDetails.event_uuid – Event unique identifier.
- __init__(event_uuid=None)
- event_uuid
- class dropbox.team_log.PaperDocRequestAccessType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.PaperDocResolveCommentDetails(event_uuid=None, comment_text=None)
Bases:
StructResolved Paper doc comment.
- Variables:
PaperDocResolveCommentDetails.event_uuid – Event unique identifier.
PaperDocResolveCommentDetails.comment_text – Comment text.
- __init__(event_uuid=None, comment_text=None)
- comment_text
- event_uuid
- class dropbox.team_log.PaperDocResolveCommentType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.PaperDocRevertDetails(event_uuid=None)
Bases:
StructRestored Paper doc to previous version.
- Variables:
PaperDocRevertDetails.event_uuid – Event unique identifier.
- __init__(event_uuid=None)
- event_uuid
- class dropbox.team_log.PaperDocRevertType(description=None)
Bases:
Struct- __init__(description=None)
- description
Bases:
StructShared Paper doc via Slack.
- Variables:
PaperDocSlackShareDetails.event_uuid – Event unique identifier.
Bases:
Struct
- class dropbox.team_log.PaperDocTeamInviteDetails(event_uuid=None)
Bases:
StructShared Paper doc with users and/or groups.
- Variables:
PaperDocTeamInviteDetails.event_uuid – Event unique identifier.
- __init__(event_uuid=None)
- event_uuid
- class dropbox.team_log.PaperDocTeamInviteType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.PaperDocTrashedDetails(event_uuid=None)
Bases:
StructDeleted Paper doc.
- Variables:
PaperDocTrashedDetails.event_uuid – Event unique identifier.
- __init__(event_uuid=None)
- event_uuid
- class dropbox.team_log.PaperDocTrashedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.PaperDocUnresolveCommentDetails(event_uuid=None, comment_text=None)
Bases:
StructUnresolved Paper doc comment.
- Variables:
PaperDocUnresolveCommentDetails.event_uuid – Event unique identifier.
PaperDocUnresolveCommentDetails.comment_text – Comment text.
- __init__(event_uuid=None, comment_text=None)
- comment_text
- event_uuid
- class dropbox.team_log.PaperDocUnresolveCommentType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.PaperDocUntrashedDetails(event_uuid=None)
Bases:
StructRestored Paper doc.
- Variables:
PaperDocUntrashedDetails.event_uuid – Event unique identifier.
- __init__(event_uuid=None)
- event_uuid
- class dropbox.team_log.PaperDocUntrashedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.PaperDocViewDetails(event_uuid=None)
Bases:
StructViewed Paper doc.
- Variables:
PaperDocViewDetails.event_uuid – Event unique identifier.
- __init__(event_uuid=None)
- event_uuid
- class dropbox.team_log.PaperDocViewType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.PaperDocumentLogInfo(doc_id=None, doc_title=None)
Bases:
StructPaper document’s logged information.
- Variables:
PaperDocumentLogInfo.doc_id – Papers document Id.
PaperDocumentLogInfo.doc_title – Paper document title.
- __init__(doc_id=None, doc_title=None)
- doc_id
- doc_title
- class dropbox.team_log.PaperDownloadFormat(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.- docx = PaperDownloadFormat('docx', None)
- html = PaperDownloadFormat('html', None)
- is_docx()
Check if the union tag is
docx.- Return type:
bool
- is_html()
Check if the union tag is
html.- Return type:
bool
- is_markdown()
Check if the union tag is
markdown.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- is_pdf()
Check if the union tag is
pdf.- Return type:
bool
- markdown = PaperDownloadFormat('markdown', None)
- other = PaperDownloadFormat('other', None)
- pdf = PaperDownloadFormat('pdf', None)
- class dropbox.team_log.PaperEnabledUsersGroupAdditionDetails
Bases:
StructAdded users to Paper-enabled users list.
- __init__()
- class dropbox.team_log.PaperEnabledUsersGroupAdditionType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.PaperEnabledUsersGroupRemovalDetails
Bases:
StructRemoved users from Paper-enabled users list.
- __init__()
- class dropbox.team_log.PaperEnabledUsersGroupRemovalType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.PaperExternalViewAllowDetails(event_uuid=None)
Bases:
StructChanged Paper external sharing setting to anyone.
- Variables:
PaperExternalViewAllowDetails.event_uuid – Event unique identifier.
- __init__(event_uuid=None)
- event_uuid
- class dropbox.team_log.PaperExternalViewAllowType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.PaperExternalViewDefaultTeamDetails(event_uuid=None)
Bases:
StructChanged Paper external sharing setting to default team.
- Variables:
PaperExternalViewDefaultTeamDetails.event_uuid – Event unique identifier.
- __init__(event_uuid=None)
- event_uuid
- class dropbox.team_log.PaperExternalViewDefaultTeamType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.PaperExternalViewForbidDetails(event_uuid=None)
Bases:
StructChanged Paper external sharing setting to team-only.
- Variables:
PaperExternalViewForbidDetails.event_uuid – Event unique identifier.
- __init__(event_uuid=None)
- event_uuid
- class dropbox.team_log.PaperExternalViewForbidType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.PaperFolderChangeSubscriptionDetails(event_uuid=None, new_subscription_level=None, previous_subscription_level=None)
Bases:
StructFollowed/unfollowed Paper folder.
- Variables:
PaperFolderChangeSubscriptionDetails.event_uuid – Event unique identifier.
PaperFolderChangeSubscriptionDetails.new_subscription_level – New folder subscription level.
PaperFolderChangeSubscriptionDetails.previous_subscription_level – Previous folder subscription level. Might be missing due to historical data gap.
- __init__(event_uuid=None, new_subscription_level=None, previous_subscription_level=None)
- event_uuid
- new_subscription_level
- previous_subscription_level
- class dropbox.team_log.PaperFolderChangeSubscriptionType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.PaperFolderDeletedDetails(event_uuid=None)
Bases:
StructArchived Paper folder.
- Variables:
PaperFolderDeletedDetails.event_uuid – Event unique identifier.
- __init__(event_uuid=None)
- event_uuid
- class dropbox.team_log.PaperFolderDeletedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.PaperFolderFollowedDetails(event_uuid=None)
Bases:
StructFollowed Paper folder.
- Variables:
PaperFolderFollowedDetails.event_uuid – Event unique identifier.
- __init__(event_uuid=None)
- event_uuid
- class dropbox.team_log.PaperFolderFollowedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.PaperFolderLogInfo(folder_id=None, folder_name=None)
Bases:
StructPaper folder’s logged information.
- Variables:
PaperFolderLogInfo.folder_id – Papers folder Id.
PaperFolderLogInfo.folder_name – Paper folder name.
- __init__(folder_id=None, folder_name=None)
- folder_id
- folder_name
- class dropbox.team_log.PaperFolderTeamInviteDetails(event_uuid=None)
Bases:
StructShared Paper folder with users and/or groups.
- Variables:
PaperFolderTeamInviteDetails.event_uuid – Event unique identifier.
- __init__(event_uuid=None)
- event_uuid
- class dropbox.team_log.PaperFolderTeamInviteType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.PaperMemberPolicy(tag, value=None)
Bases:
UnionPolicy for controlling if team members can share Paper documents 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.- anyone_with_link = PaperMemberPolicy('anyone_with_link', None)
- is_anyone_with_link()
Check if the union tag is
anyone_with_link.- Return type:
bool
- is_only_team()
Check if the union tag is
only_team.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
Check if the union tag is
team_and_explicitly_shared.- Return type:
bool
- only_team = PaperMemberPolicy('only_team', None)
- other = PaperMemberPolicy('other', None)
- class dropbox.team_log.PaperPublishedLinkChangePermissionDetails(event_uuid=None, new_permission_level=None, previous_permission_level=None)
Bases:
StructChanged permissions for published doc.
- Variables:
PaperPublishedLinkChangePermissionDetails.event_uuid – Event unique identifier.
PaperPublishedLinkChangePermissionDetails.new_permission_level – New permission level.
PaperPublishedLinkChangePermissionDetails.previous_permission_level – Previous permission level.
- __init__(event_uuid=None, new_permission_level=None, previous_permission_level=None)
- event_uuid
- new_permission_level
- previous_permission_level
- class dropbox.team_log.PaperPublishedLinkChangePermissionType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.PaperPublishedLinkCreateDetails(event_uuid=None)
Bases:
StructPublished doc.
- Variables:
PaperPublishedLinkCreateDetails.event_uuid – Event unique identifier.
- __init__(event_uuid=None)
- event_uuid
- class dropbox.team_log.PaperPublishedLinkCreateType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.PaperPublishedLinkDisabledDetails(event_uuid=None)
Bases:
StructUnpublished doc.
- Variables:
PaperPublishedLinkDisabledDetails.event_uuid – Event unique identifier.
- __init__(event_uuid=None)
- event_uuid
- class dropbox.team_log.PaperPublishedLinkDisabledType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.PaperPublishedLinkViewDetails(event_uuid=None)
Bases:
StructViewed published doc.
- Variables:
PaperPublishedLinkViewDetails.event_uuid – Event unique identifier.
- __init__(event_uuid=None)
- event_uuid
- class dropbox.team_log.PaperPublishedLinkViewType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.ParticipantLogInfo(tag, value=None)
Bases:
UnionA user or group
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:
ParticipantLogInfo.group (GroupLogInfo) – Group details.
ParticipantLogInfo.user (UserLogInfo) – A user with a Dropbox account.
- get_group()
Group details.
Only call this if
is_group()is true.- Return type:
- classmethod group(val)
Create an instance of this class set to the
grouptag with valueval.- Parameters:
val (GroupLogInfo)
- Return type:
- is_group()
Check if the union tag is
group.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- is_user()
Check if the union tag is
user.- Return type:
bool
- other = ParticipantLogInfo('other', None)
- classmethod user(val)
Create an instance of this class set to the
usertag with valueval.- Parameters:
val (UserLogInfo)
- Return type:
- class dropbox.team_log.PassPolicy(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 = PassPolicy('allow', None)
- disabled = PassPolicy('disabled', None)
- enabled = PassPolicy('enabled', None)
- is_allow()
Check if the union tag is
allow.- 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 = PassPolicy('other', None)
- class dropbox.team_log.PasskeyAddType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.PasskeyLoginPolicy(tag, value=None)
Bases:
UnionPasskey 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 = PasskeyLoginPolicy('default', None)
- disabled = PasskeyLoginPolicy('disabled', None)
- enabled = PasskeyLoginPolicy('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 = PasskeyLoginPolicy('other', None)
- class dropbox.team_log.PasskeyLoginPolicyChangedDetails(new_value=None, previous_value=None)
Bases:
StructChanged passkey login policy for team.
- Variables:
PasskeyLoginPolicyChangedDetails.new_value – New passkey login policy.
PasskeyLoginPolicyChangedDetails.previous_value – Previous passkey 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.PasskeyLoginPolicyChangedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.PasskeyRemoveType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.PasswordChangeType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.PasswordResetAllDetails
Bases:
StructReset all team member passwords.
- __init__()
- class dropbox.team_log.PasswordResetAllType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.PasswordResetType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.PasswordStrengthRequirementsChangePolicyDetails(previous_value=None, new_value=None)
Bases:
StructChanged team password strength requirements.
- Variables:
PasswordStrengthRequirementsChangePolicyDetails.previous_value – Old password strength policy.
PasswordStrengthRequirementsChangePolicyDetails.new_value – New password strength policy.
- __init__(previous_value=None, new_value=None)
- new_value
- previous_value
- class dropbox.team_log.PasswordStrengthRequirementsChangePolicyType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.PathLogInfo(namespace_relative=None, contextual=None)
Bases:
StructPath’s details.
- Variables:
PathLogInfo.contextual – Fully qualified path relative to event’s context.
PathLogInfo.namespace_relative – Path relative to the namespace containing the content.
- __init__(namespace_relative=None, contextual=None)
- contextual
- namespace_relative
- class dropbox.team_log.PendingSecondaryEmailAddedDetails(secondary_email=None)
Bases:
StructAdded pending secondary email.
- Variables:
PendingSecondaryEmailAddedDetails.secondary_email – New pending secondary email.
- __init__(secondary_email=None)
- secondary_email
- class dropbox.team_log.PendingSecondaryEmailAddedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.PermanentDeleteChangePolicyDetails(new_value=None, previous_value=None)
Bases:
StructEnabled/disabled ability of team members to permanently delete content.
- Variables:
PermanentDeleteChangePolicyDetails.new_value – New permanent delete content policy.
PermanentDeleteChangePolicyDetails.previous_value – Previous permanent delete content policy. Might be missing due to historical data gap.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.PermanentDeleteChangePolicyType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.PlacementRestriction(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.- australia_only = PlacementRestriction('australia_only', None)
- canada_only = PlacementRestriction('canada_only', None)
- europe_only = PlacementRestriction('europe_only', None)
- is_australia_only()
Check if the union tag is
australia_only.- Return type:
bool
- is_canada_only()
Check if the union tag is
canada_only.- Return type:
bool
- is_europe_only()
Check if the union tag is
europe_only.- Return type:
bool
- is_japan_only()
Check if the union tag is
japan_only.- 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_uk_only()
Check if the union tag is
uk_only.- Return type:
bool
- is_us_s3_only()
Check if the union tag is
us_s3_only.- Return type:
bool
- japan_only = PlacementRestriction('japan_only', None)
- none = PlacementRestriction('none', None)
- other = PlacementRestriction('other', None)
- uk_only = PlacementRestriction('uk_only', None)
- us_s3_only = PlacementRestriction('us_s3_only', None)
- class dropbox.team_log.PolicyType(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.- disposition = PolicyType('disposition', None)
- is_disposition()
Check if the union tag is
disposition.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- is_retention()
Check if the union tag is
retention.- Return type:
bool
- other = PolicyType('other', None)
- retention = PolicyType('retention', None)
- class dropbox.team_log.PreviewsAiPolicy(tag, value=None)
Bases:
UnionPolicy for deciding whether team users can use Previews AI
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 = PreviewsAiPolicy('default', None)
- disabled = PreviewsAiPolicy('disabled', None)
- enabled = PreviewsAiPolicy('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 = PreviewsAiPolicy('other', None)
- class dropbox.team_log.PreviewsAiPolicyChangedDetails(new_value=None, previous_value=None)
Bases:
StructChanged Dropbox AI policy for team.
- Variables:
PreviewsAiPolicyChangedDetails.new_value – To.
PreviewsAiPolicyChangedDetails.previous_value – From.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.PreviewsAiPolicyChangedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.PrimaryTeamRequestAcceptedDetails(secondary_team=None, sent_by=None)
Bases:
StructTeam merge request acceptance details shown to the primary team
- Variables:
PrimaryTeamRequestAcceptedDetails.secondary_team – The secondary team name.
PrimaryTeamRequestAcceptedDetails.sent_by – The name of the secondary team admin who sent the request originally.
- __init__(secondary_team=None, sent_by=None)
- secondary_team
- sent_by
- class dropbox.team_log.PrimaryTeamRequestCanceledDetails(secondary_team=None, sent_by=None)
Bases:
StructTeam merge request cancellation details shown to the primary team
- Variables:
PrimaryTeamRequestCanceledDetails.secondary_team – The secondary team name.
PrimaryTeamRequestCanceledDetails.sent_by – The name of the secondary team admin who sent the request originally.
- __init__(secondary_team=None, sent_by=None)
- secondary_team
- sent_by
- class dropbox.team_log.PrimaryTeamRequestExpiredDetails(secondary_team=None, sent_by=None)
Bases:
StructTeam merge request expiration details shown to the primary team
- Variables:
PrimaryTeamRequestExpiredDetails.secondary_team – The secondary team name.
PrimaryTeamRequestExpiredDetails.sent_by – The name of the secondary team admin who sent the request originally.
- __init__(secondary_team=None, sent_by=None)
- secondary_team
- sent_by
- class dropbox.team_log.PrimaryTeamRequestReminderDetails(secondary_team=None, sent_to=None)
Bases:
StructTeam merge request reminder details shown to the primary team
- Variables:
PrimaryTeamRequestReminderDetails.secondary_team – The secondary team name.
PrimaryTeamRequestReminderDetails.sent_to – The name of the primary team admin the request was sent to.
- __init__(secondary_team=None, sent_to=None)
- secondary_team
- sent_to
- class dropbox.team_log.ProductAssignedToMemberDetails(user_name=None, product_name=None)
Bases:
StructProduct assigned to team member.
- Variables:
ProductAssignedToMemberDetails.user_name – User’s name.
ProductAssignedToMemberDetails.product_name – Product name.
- __init__(user_name=None, product_name=None)
- product_name
- user_name
- class dropbox.team_log.ProductAssignedToMemberType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.ProductLogInfo(product_name=None)
Bases:
StructProduct logged information
- Variables:
ProductLogInfo.product_name – Product name.
- __init__(product_name=None)
- product_name
- class dropbox.team_log.ProductRemovedFromMemberDetails(user_name=None, product_name=None)
Bases:
StructProduct removed from team member.
- Variables:
ProductRemovedFromMemberDetails.user_name – User’s name.
ProductRemovedFromMemberDetails.product_name – Product name.
- __init__(user_name=None, product_name=None)
- product_name
- user_name
- class dropbox.team_log.ProductRemovedFromMemberType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.ProtectInternalDomainsChangedDetails(domains_added=None, domains_removed=None)
Bases:
StructModified Protect internal domains list.
- Variables:
ProtectInternalDomainsChangedDetails.domains_added – Domains added to the internal domains list.
ProtectInternalDomainsChangedDetails.domains_removed – Domains removed from the internal domains list.
- __init__(domains_added=None, domains_removed=None)
- domains_added
- domains_removed
- class dropbox.team_log.ProtectInternalDomainsChangedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.QuickActionType(tag, value=None)
Bases:
UnionQuick action 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.Check if the union tag is
delete_shared_link.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- is_reset_password()
Check if the union tag is
reset_password.- Return type:
bool
- is_restore_file_or_folder()
Check if the union tag is
restore_file_or_folder.- Return type:
bool
- is_unlink_app()
Check if the union tag is
unlink_app.- Return type:
bool
- is_unlink_device()
Check if the union tag is
unlink_device.- Return type:
bool
- is_unlink_session()
Check if the union tag is
unlink_session.- Return type:
bool
- other = QuickActionType('other', None)
- reset_password = QuickActionType('reset_password', None)
- restore_file_or_folder = QuickActionType('restore_file_or_folder', None)
- unlink_app = QuickActionType('unlink_app', None)
- unlink_device = QuickActionType('unlink_device', None)
- unlink_session = QuickActionType('unlink_session', None)
- class dropbox.team_log.RansomwareAlertCreateReportDetails
Bases:
StructCreated ransomware report.
- __init__()
- class dropbox.team_log.RansomwareAlertCreateReportFailedDetails(failure_reason=None)
Bases:
StructCouldn’t generate ransomware report.
- Variables:
RansomwareAlertCreateReportFailedDetails.failure_reason – Failure reason.
- __init__(failure_reason=None)
- failure_reason
- class dropbox.team_log.RansomwareAlertCreateReportFailedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.RansomwareAlertCreateReportType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.RansomwareRestoreProcessCompletedDetails(status=None, restored_files_count=None, restored_files_failed_count=None)
Bases:
StructCompleted ransomware restore process.
- Variables:
RansomwareRestoreProcessCompletedDetails.status – The status of the restore process.
RansomwareRestoreProcessCompletedDetails.restored_files_count – Restored files count.
RansomwareRestoreProcessCompletedDetails.restored_files_failed_count – Restored files failed count.
- __init__(status=None, restored_files_count=None, restored_files_failed_count=None)
- restored_files_count
- restored_files_failed_count
- status
- class dropbox.team_log.RansomwareRestoreProcessCompletedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.RansomwareRestoreProcessStartedDetails(extension=None)
Bases:
StructStarted ransomware restore process.
- Variables:
RansomwareRestoreProcessStartedDetails.extension – Ransomware filename extension.
- __init__(extension=None)
- extension
- class dropbox.team_log.RansomwareRestoreProcessStartedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.RecipientsConfiguration(recipient_setting_type=None, emails=None, groups=None)
Bases:
StructRecipients Configuration
- Variables:
RecipientsConfiguration.recipient_setting_type – Recipients setting type.
RecipientsConfiguration.emails – A list of user emails to notify.
RecipientsConfiguration.groups – A list of groups to notify.
- __init__(recipient_setting_type=None, emails=None, groups=None)
- emails
- groups
- recipient_setting_type
- class dropbox.team_log.RelocateAssetReferencesLogInfo(src_asset_index=None, dest_asset_index=None)
Bases:
StructProvides the indices of the source asset and the destination asset for a relocate action.
- Variables:
RelocateAssetReferencesLogInfo.src_asset_index – Source asset position in the Assets list.
RelocateAssetReferencesLogInfo.dest_asset_index – Destination asset position in the Assets list.
- __init__(src_asset_index=None, dest_asset_index=None)
- dest_asset_index
- src_asset_index
- class dropbox.team_log.ReplayAddingPeoplePolicy(tag, value=None)
Bases:
UnionPolicy for deciding who can be added to Replay content
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.- anyone = ReplayAddingPeoplePolicy('anyone', None)
- is_anyone()
Check if the union tag is
anyone.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- is_team_and_allowlist()
Check if the union tag is
team_and_allowlist.- Return type:
bool
- is_team_only()
Check if the union tag is
team_only.- Return type:
bool
- other = ReplayAddingPeoplePolicy('other', None)
- team_and_allowlist = ReplayAddingPeoplePolicy('team_and_allowlist', None)
- team_only = ReplayAddingPeoplePolicy('team_only', None)
- class dropbox.team_log.ReplayAddingPeoplePolicyChangedDetails(new_value=None, previous_value=None)
Bases:
StructChanged the policy for adding people to Replay content.
- Variables:
ReplayAddingPeoplePolicyChangedDetails.new_value – To.
ReplayAddingPeoplePolicyChangedDetails.previous_value – From.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.ReplayAddingPeoplePolicyChangedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.ReplayFileDeleteType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.ReplayFileDownloadedDetails
Bases:
StructDownloaded files in Replay.
- __init__()
- class dropbox.team_log.ReplayFileDownloadedType(description=None)
Bases:
Struct- __init__(description=None)
- description
Bases:
StructCreated shared link in Replay.
- Variables:
ReplayFileSharedLinkCreatedDetails.is_watermarked – Indicates whether it was a watermark share link.
ReplayFileSharedLinkCreatedDetails.access – The Replay sharing policy in place when the link was created. Might be missing due to historical data gap.
Bases:
Struct
Bases:
StructChanged shared link in Replay.
- Variables:
ReplayFileSharedLinkModifiedDetails.is_watermarked – Indicates whether it was a watermark share link.
ReplayFileSharedLinkModifiedDetails.access – The Replay sharing policy in place when the link was modified. Might be missing due to historical data gap.
Bases:
Struct
- class dropbox.team_log.ReplayLinkAccess(tag, value=None)
Bases:
UnionWho can access this Replay link
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.- anyone_logged_in = ReplayLinkAccess('anyone_logged_in', None)
- is_anyone_logged_in()
Check if the union tag is
anyone_logged_in.- Return type:
bool
- is_no_login_required()
Check if the union tag is
no_login_required.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- is_team_and_approved()
Check if the union tag is
team_and_approved.- Return type:
bool
- is_team_only()
Check if the union tag is
team_only.- Return type:
bool
- no_login_required = ReplayLinkAccess('no_login_required', None)
- other = ReplayLinkAccess('other', None)
- team_and_approved = ReplayLinkAccess('team_and_approved', None)
- team_only = ReplayLinkAccess('team_only', None)
- class dropbox.team_log.ReplayProjectTeamAddDetails
Bases:
StructAdded member to Replay Project.
- __init__()
- class dropbox.team_log.ReplayProjectTeamAddType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.ReplayProjectTeamDeleteDetails
Bases:
StructRemoved member from Replay Project.
- __init__()
- class dropbox.team_log.ReplayProjectTeamDeleteType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.ReplaySharingPolicy(tag, value=None)
Bases:
UnionPolicy for deciding who Replay content can be shared with through links
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.- anyone = ReplaySharingPolicy('anyone', None)
- is_anyone()
Check if the union tag is
anyone.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- is_team_and_allowlist()
Check if the union tag is
team_and_allowlist.- Return type:
bool
- is_team_only()
Check if the union tag is
team_only.- Return type:
bool
- other = ReplaySharingPolicy('other', None)
- team_and_allowlist = ReplaySharingPolicy('team_and_allowlist', None)
- team_only = ReplaySharingPolicy('team_only', None)
- class dropbox.team_log.ReplaySharingPolicyChangedDetails(new_value=None, previous_value=None)
Bases:
StructChanged the policy for sharing Replay content.
- Variables:
ReplaySharingPolicyChangedDetails.new_value – To.
ReplaySharingPolicyChangedDetails.previous_value – From.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.ReplaySharingPolicyChangedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.ReplayTeamProjectCreatedDetails(name=None)
Bases:
StructCreated a team project in Replay.
- Variables:
ReplayTeamProjectCreatedDetails.name – Name of the newly created team project.
- __init__(name=None)
- name
- class dropbox.team_log.ReplayTeamProjectCreatedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.ResellerLogInfo(reseller_name=None, reseller_email=None)
Bases:
StructReseller information.
- Variables:
ResellerLogInfo.reseller_name – Reseller name.
ResellerLogInfo.reseller_email – Reseller email.
- __init__(reseller_name=None, reseller_email=None)
- reseller_email
- reseller_name
- class dropbox.team_log.ResellerRole(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_not_reseller()
Check if the union tag is
not_reseller.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- is_reseller_admin()
Check if the union tag is
reseller_admin.- Return type:
bool
- not_reseller = ResellerRole('not_reseller', None)
- other = ResellerRole('other', None)
- reseller_admin = ResellerRole('reseller_admin', None)
- class dropbox.team_log.ResellerSupportChangePolicyDetails(new_value=None, previous_value=None)
Bases:
StructEnabled/disabled reseller support.
- Variables:
ResellerSupportChangePolicyDetails.new_value – New Reseller support policy.
ResellerSupportChangePolicyDetails.previous_value – Previous Reseller support policy.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.ResellerSupportChangePolicyType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.ResellerSupportPolicy(tag, value=None)
Bases:
UnionPolicy for controlling if reseller can access the admin console as administrator
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 = ResellerSupportPolicy('disabled', None)
- enabled = ResellerSupportPolicy('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 = ResellerSupportPolicy('other', None)
- class dropbox.team_log.ResellerSupportSessionEndDetails
Bases:
StructEnded reseller support session.
- __init__()
- class dropbox.team_log.ResellerSupportSessionEndType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.ResellerSupportSessionStartDetails
Bases:
StructStarted reseller support session.
- __init__()
- class dropbox.team_log.ResellerSupportSessionStartType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.RewindFolderDetails(rewind_folder_target_ts_ms=None)
Bases:
StructRewound a folder.
- Variables:
RewindFolderDetails.rewind_folder_target_ts_ms – Folder was Rewound to this date.
- __init__(rewind_folder_target_ts_ms=None)
- rewind_folder_target_ts_ms
- class dropbox.team_log.RewindFolderType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.RewindPolicy(tag, value=None)
Bases:
UnionPolicy for controlling whether team members can rewind
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 = RewindPolicy('admins_only', None)
- everyone = RewindPolicy('everyone', None)
- is_admins_only()
Check if the union tag is
admins_only.- Return type:
bool
- is_everyone()
Check if the union tag is
everyone.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- other = RewindPolicy('other', None)
- class dropbox.team_log.RewindPolicyChangedDetails(new_value=None, previous_value=None)
Bases:
StructChanged Rewind policy for team.
- Variables:
RewindPolicyChangedDetails.new_value – New Dropbox Rewind policy.
RewindPolicyChangedDetails.previous_value – Previous Dropbox Rewind policy.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.RewindPolicyChangedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.RiscSecurityEventDetails(event_type=None, reason=None, issuer=None)
Bases:
StructRISC security event received from external provider.
- Variables:
RiscSecurityEventDetails.event_type – RISC event type (e.g., account-disabled, token-revoked).
RiscSecurityEventDetails.reason – Reason for the RISC event.
RiscSecurityEventDetails.issuer – Identity provider issuer (e.g., https://accounts.google.com).
- __init__(event_type=None, reason=None, issuer=None)
- event_type
- issuer
- reason
- class dropbox.team_log.RiscSecurityEventType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.SecondaryEmailDeletedDetails(secondary_email=None)
Bases:
StructDeleted secondary email.
- Variables:
SecondaryEmailDeletedDetails.secondary_email – Deleted secondary email.
- __init__(secondary_email=None)
- secondary_email
- class dropbox.team_log.SecondaryEmailDeletedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.SecondaryEmailVerifiedDetails(secondary_email=None)
Bases:
StructVerified secondary email.
- Variables:
SecondaryEmailVerifiedDetails.secondary_email – Verified secondary email.
- __init__(secondary_email=None)
- secondary_email
- class dropbox.team_log.SecondaryEmailVerifiedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.SecondaryMailsPolicy(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.- disabled = SecondaryMailsPolicy('disabled', None)
- enabled = SecondaryMailsPolicy('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 = SecondaryMailsPolicy('other', None)
- class dropbox.team_log.SecondaryMailsPolicyChangedDetails(previous_value=None, new_value=None)
Bases:
StructSecondary mails policy changed.
- Variables:
SecondaryMailsPolicyChangedDetails.previous_value – Previous secondary mails policy.
SecondaryMailsPolicyChangedDetails.new_value – New secondary mails policy.
- __init__(previous_value=None, new_value=None)
- new_value
- previous_value
- class dropbox.team_log.SecondaryMailsPolicyChangedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.SecondaryTeamRequestAcceptedDetails(primary_team=None, sent_by=None)
Bases:
StructTeam merge request acceptance details shown to the secondary team
- Variables:
SecondaryTeamRequestAcceptedDetails.primary_team – The primary team name.
SecondaryTeamRequestAcceptedDetails.sent_by – The name of the secondary team admin who sent the request originally.
- __init__(primary_team=None, sent_by=None)
- primary_team
- sent_by
- class dropbox.team_log.SecondaryTeamRequestCanceledDetails(sent_to=None, sent_by=None)
Bases:
StructTeam merge request cancellation details shown to the secondary team
- Variables:
SecondaryTeamRequestCanceledDetails.sent_to – The email of the primary team admin that the request was sent to.
SecondaryTeamRequestCanceledDetails.sent_by – The name of the secondary team admin who sent the request originally.
- __init__(sent_to=None, sent_by=None)
- sent_by
- sent_to
- class dropbox.team_log.SecondaryTeamRequestExpiredDetails(sent_to=None)
Bases:
StructTeam merge request expiration details shown to the secondary team
- Variables:
SecondaryTeamRequestExpiredDetails.sent_to – The email of the primary team admin the request was sent to.
- __init__(sent_to=None)
- sent_to
- class dropbox.team_log.SecondaryTeamRequestReminderDetails(sent_to=None)
Bases:
StructTeam merge request reminder details shown to the secondary team
- Variables:
SecondaryTeamRequestReminderDetails.sent_to – The email of the primary team admin the request was sent to.
- __init__(sent_to=None)
- sent_to
- class dropbox.team_log.SendAndTrackFileAddedDetails
Bases:
StructFile added to Send and Track.
- __init__()
- class dropbox.team_log.SendAndTrackFileAddedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.SendAndTrackFileRenamedDetails(previous_value=None)
Bases:
StructFile renamed in Send and Track.
- Variables:
SendAndTrackFileRenamedDetails.previous_value – Previous file name.
- __init__(previous_value=None)
- previous_value
- class dropbox.team_log.SendAndTrackFileRenamedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.SendAndTrackFileUpdatedDetails
Bases:
StructFile updated in Send and Track.
- __init__()
- class dropbox.team_log.SendAndTrackFileUpdatedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.SendAndTrackLinkCreatedDetails(link_settings=None)
Bases:
StructLink created in Send and Track.
- Variables:
SendAndTrackLinkCreatedDetails.link_settings – Link Settings.
- __init__(link_settings=None)
- link_settings
- class dropbox.team_log.SendAndTrackLinkCreatedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.SendAndTrackLinkDeletedDetails(shared_content_link=None)
Bases:
StructLink deleted in Send and Track.
- Variables:
SendAndTrackLinkDeletedDetails.shared_content_link – Shared content link.
- __init__(shared_content_link=None)
- class dropbox.team_log.SendAndTrackLinkDeletedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.SendAndTrackLinkUpdatedDetails(link_settings=None, previous_link_name=None)
Bases:
StructSend and Track Link Updated.
- Variables:
SendAndTrackLinkUpdatedDetails.link_settings – Link Settings.
SendAndTrackLinkUpdatedDetails.previous_link_name – Previous link name.
- __init__(link_settings=None, previous_link_name=None)
- link_settings
- previous_link_name
- class dropbox.team_log.SendAndTrackLinkUpdatedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.SendAndTrackLinkViewedDetails(link_settings=None, email_address=None, link_owner=None)
Bases:
StructSend and Track Link Visited.
- Variables:
SendAndTrackLinkViewedDetails.link_settings – Link Settings.
SendAndTrackLinkViewedDetails.email_address – Visitor Email address.
SendAndTrackLinkViewedDetails.link_owner – Link Owner.
- __init__(link_settings=None, email_address=None, link_owner=None)
- email_address
- link_owner
- link_settings
- class dropbox.team_log.SendAndTrackLinkViewedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.SendAndTrackPolicy(tag, value=None)
Bases:
UnionPolicy for deciding whether team users can use Send and Track
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 = SendAndTrackPolicy('default', None)
- disabled = SendAndTrackPolicy('disabled', None)
- enabled = SendAndTrackPolicy('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 = SendAndTrackPolicy('other', None)
- class dropbox.team_log.SendAndTrackPolicyChangedDetails(new_value=None, previous_value=None)
Bases:
StructChanged “Send and track” policy for team.
- Variables:
SendAndTrackPolicyChangedDetails.new_value – To.
SendAndTrackPolicyChangedDetails.previous_value – From.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.SendAndTrackPolicyChangedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.SendAndTrackRemovedFileAndAssociatedLinksDetails
Bases:
StructSend and Track file and associated links deleted.
- __init__()
- class dropbox.team_log.SendAndTrackRemovedFileAndAssociatedLinksType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.SendExternalSharingPolicy(tag, value=None)
Bases:
UnionPolicy for deciding whether team users can share Send 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 = SendExternalSharingPolicy('default', None)
- disabled = SendExternalSharingPolicy('disabled', None)
- enabled = SendExternalSharingPolicy('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 = SendExternalSharingPolicy('other', None)
- class dropbox.team_log.SendExternalSharingPolicyChangedDetails(new_value=None, previous_value=None)
Bases:
StructChanged “Send and track” external sharing policy for team.
- Variables:
SendExternalSharingPolicyChangedDetails.new_value – To.
SendExternalSharingPolicyChangedDetails.previous_value – From.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.SendExternalSharingPolicyChangedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.SendForSignaturePolicy(tag, value=None)
Bases:
UnionPolicy for controlling team access to send for signature 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 = SendForSignaturePolicy('disabled', None)
- enabled = SendForSignaturePolicy('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 = SendForSignaturePolicy('other', None)
- class dropbox.team_log.SendForSignaturePolicyChangedDetails(new_value=None, previous_value=None)
Bases:
StructChanged send for signature policy for team.
- Variables:
SendForSignaturePolicyChangedDetails.new_value – New send for signature policy.
SendForSignaturePolicyChangedDetails.previous_value – Previous send for signature policy.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.SendForSignaturePolicyChangedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.SessionLogInfo(session_id=None)
Bases:
StructSession’s logged information.
- Variables:
SessionLogInfo.session_id – Session ID.
- __init__(session_id=None)
- session_id
- class dropbox.team_log.SfAddGroupDetails(target_asset_index=None, original_folder_name=None, team_name=None, sharing_permission=None)
Bases:
StructAdded team to shared folder.
- Variables:
SfAddGroupDetails.target_asset_index – Target asset position in the Assets list.
SfAddGroupDetails.original_folder_name – Original shared folder name.
SfAddGroupDetails.sharing_permission – Sharing permission.
SfAddGroupDetails.team_name – Team name.
- __init__(target_asset_index=None, original_folder_name=None, team_name=None, sharing_permission=None)
- original_folder_name
- sharing_permission
- target_asset_index
- team_name
- class dropbox.team_log.SfAddGroupType(description=None)
Bases:
Struct- __init__(description=None)
- description
Bases:
StructAllowed non-collaborators to view links to files in shared folder.
- Variables:
SfAllowNonMembersToViewSharedLinksDetails.target_asset_index – Target asset position in the Assets list.
SfAllowNonMembersToViewSharedLinksDetails.original_folder_name – Original shared folder name.
SfAllowNonMembersToViewSharedLinksDetails.shared_folder_type – Shared folder type.
Bases:
Struct
- class dropbox.team_log.SfExternalInviteWarnDetails(target_asset_index=None, original_folder_name=None, new_sharing_permission=None, previous_sharing_permission=None)
Bases:
StructSet team members to see warning before sharing folders outside team.
- Variables:
SfExternalInviteWarnDetails.target_asset_index – Target asset position in the Assets list.
SfExternalInviteWarnDetails.original_folder_name – Original shared folder name.
SfExternalInviteWarnDetails.new_sharing_permission – New sharing permission.
SfExternalInviteWarnDetails.previous_sharing_permission – Previous sharing permission.
- __init__(target_asset_index=None, original_folder_name=None, new_sharing_permission=None, previous_sharing_permission=None)
- new_sharing_permission
- original_folder_name
- previous_sharing_permission
- target_asset_index
- class dropbox.team_log.SfExternalInviteWarnType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.SfFbInviteChangeRoleDetails(target_asset_index=None, original_folder_name=None, previous_sharing_permission=None, new_sharing_permission=None)
Bases:
StructChanged Facebook user’s role in shared folder.
- Variables:
SfFbInviteChangeRoleDetails.target_asset_index – Target asset position in the Assets list.
SfFbInviteChangeRoleDetails.original_folder_name – Original shared folder name.
SfFbInviteChangeRoleDetails.previous_sharing_permission – Previous sharing permission.
SfFbInviteChangeRoleDetails.new_sharing_permission – New sharing permission.
- __init__(target_asset_index=None, original_folder_name=None, previous_sharing_permission=None, new_sharing_permission=None)
- new_sharing_permission
- original_folder_name
- previous_sharing_permission
- target_asset_index
- class dropbox.team_log.SfFbInviteChangeRoleType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.SfFbInviteDetails(target_asset_index=None, original_folder_name=None, sharing_permission=None)
Bases:
StructInvited Facebook users to shared folder.
- Variables:
SfFbInviteDetails.target_asset_index – Target asset position in the Assets list.
SfFbInviteDetails.original_folder_name – Original shared folder name.
SfFbInviteDetails.sharing_permission – Sharing permission.
- __init__(target_asset_index=None, original_folder_name=None, sharing_permission=None)
- original_folder_name
- sharing_permission
- target_asset_index
- class dropbox.team_log.SfFbInviteType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.SfFbUninviteDetails(target_asset_index=None, original_folder_name=None)
Bases:
StructUninvited Facebook user from shared folder.
- Variables:
SfFbUninviteDetails.target_asset_index – Target asset position in the Assets list.
SfFbUninviteDetails.original_folder_name – Original shared folder name.
- __init__(target_asset_index=None, original_folder_name=None)
- original_folder_name
- target_asset_index
- class dropbox.team_log.SfFbUninviteType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.SfInviteGroupDetails(target_asset_index=None)
Bases:
StructInvited group to shared folder.
- Variables:
SfInviteGroupDetails.target_asset_index – Target asset position in the Assets list.
- __init__(target_asset_index=None)
- target_asset_index
- class dropbox.team_log.SfInviteGroupType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.SfTeamGrantAccessDetails(target_asset_index=None, original_folder_name=None)
Bases:
StructGranted access to shared folder.
- Variables:
SfTeamGrantAccessDetails.target_asset_index – Target asset position in the Assets list.
SfTeamGrantAccessDetails.original_folder_name – Original shared folder name.
- __init__(target_asset_index=None, original_folder_name=None)
- original_folder_name
- target_asset_index
- class dropbox.team_log.SfTeamGrantAccessType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.SfTeamInviteChangeRoleDetails(target_asset_index=None, original_folder_name=None, new_sharing_permission=None, previous_sharing_permission=None)
Bases:
StructChanged team member’s role in shared folder.
- Variables:
SfTeamInviteChangeRoleDetails.target_asset_index – Target asset position in the Assets list.
SfTeamInviteChangeRoleDetails.original_folder_name – Original shared folder name.
SfTeamInviteChangeRoleDetails.new_sharing_permission – New sharing permission.
SfTeamInviteChangeRoleDetails.previous_sharing_permission – Previous sharing permission.
- __init__(target_asset_index=None, original_folder_name=None, new_sharing_permission=None, previous_sharing_permission=None)
- new_sharing_permission
- original_folder_name
- previous_sharing_permission
- target_asset_index
- class dropbox.team_log.SfTeamInviteChangeRoleType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.SfTeamInviteDetails(target_asset_index=None, original_folder_name=None, sharing_permission=None)
Bases:
StructInvited team members to shared folder.
- Variables:
SfTeamInviteDetails.target_asset_index – Target asset position in the Assets list.
SfTeamInviteDetails.original_folder_name – Original shared folder name.
SfTeamInviteDetails.sharing_permission – Sharing permission.
- __init__(target_asset_index=None, original_folder_name=None, sharing_permission=None)
- original_folder_name
- sharing_permission
- target_asset_index
- class dropbox.team_log.SfTeamInviteType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.SfTeamJoinDetails(target_asset_index=None, original_folder_name=None)
Bases:
StructJoined team member’s shared folder.
- Variables:
SfTeamJoinDetails.target_asset_index – Target asset position in the Assets list.
SfTeamJoinDetails.original_folder_name – Original shared folder name.
- __init__(target_asset_index=None, original_folder_name=None)
- original_folder_name
- target_asset_index
- class dropbox.team_log.SfTeamJoinFromOobLinkDetails(target_asset_index=None, original_folder_name=None, token_key=None, sharing_permission=None)
Bases:
StructJoined team member’s shared folder from link.
- Variables:
SfTeamJoinFromOobLinkDetails.target_asset_index – Target asset position in the Assets list.
SfTeamJoinFromOobLinkDetails.original_folder_name – Original shared folder name.
SfTeamJoinFromOobLinkDetails.token_key – Shared link token key.
SfTeamJoinFromOobLinkDetails.sharing_permission – Sharing permission.
- __init__(target_asset_index=None, original_folder_name=None, token_key=None, sharing_permission=None)
- original_folder_name
- sharing_permission
- target_asset_index
- token_key
- class dropbox.team_log.SfTeamJoinFromOobLinkType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.SfTeamJoinType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.SfTeamUninviteDetails(target_asset_index=None, original_folder_name=None)
Bases:
StructUnshared folder with team member.
- Variables:
SfTeamUninviteDetails.target_asset_index – Target asset position in the Assets list.
SfTeamUninviteDetails.original_folder_name – Original shared folder name.
- __init__(target_asset_index=None, original_folder_name=None)
- original_folder_name
- target_asset_index
- class dropbox.team_log.SfTeamUninviteType(description=None)
Bases:
Struct- __init__(description=None)
- description
Bases:
StructInvited user to Dropbox and added them to shared file/folder.
- Variables:
SharedContentAddInviteesDetails.shared_content_access_level – Shared content access level.
SharedContentAddInviteesDetails.invitees – A list of invitees.
Bases:
Struct
Bases:
StructAdded expiration date to link for shared file/folder.
- Variables:
SharedContentAddLinkExpiryDetails.new_value – New shared content link expiration date. Might be missing due to historical data gap.
Bases:
Struct
Bases:
StructAdded password to link for shared file/folder.
Bases:
Struct
Bases:
StructAdded users and/or groups to shared file/folder.
- Variables:
SharedContentAddMemberDetails.shared_content_access_level – Shared content access level.
Bases:
Struct
Bases:
StructChanged whether members can download shared file/folder.
- Variables:
SharedContentChangeDownloadsPolicyDetails.new_value – New downloads policy.
SharedContentChangeDownloadsPolicyDetails.previous_value – Previous downloads policy. Might be missing due to historical data gap.
Bases:
Struct
Bases:
StructChanged access type of invitee to shared file/folder before invite was accepted.
- Variables:
SharedContentChangeInviteeRoleDetails.previous_access_level – Previous access level. Might be missing due to historical data gap.
SharedContentChangeInviteeRoleDetails.new_access_level – New access level.
SharedContentChangeInviteeRoleDetails.invitee – The invitee whose role was changed.
Bases:
Struct
Bases:
StructChanged link audience of shared file/folder.
- Variables:
SharedContentChangeLinkAudienceDetails.new_value – New link audience value.
SharedContentChangeLinkAudienceDetails.previous_value – Previous link audience value.
Bases:
Struct
Bases:
StructChanged link expiration of shared file/folder.
- Variables:
SharedContentChangeLinkExpiryDetails.new_value – New shared content link expiration date. Might be missing due to historical data gap.
SharedContentChangeLinkExpiryDetails.previous_value – Previous shared content link expiration date. Might be missing due to historical data gap.
Bases:
Struct
Bases:
StructChanged link password of shared file/folder.
Bases:
Struct
Bases:
StructChanged access type of shared file/folder member.
- Variables:
SharedContentChangeMemberRoleDetails.previous_access_level – Previous access level. Might be missing due to historical data gap.
SharedContentChangeMemberRoleDetails.new_access_level – New access level.
Bases:
Struct
Bases:
StructChanged whether members can see who viewed shared file/folder.
- Variables:
SharedContentChangeViewerInfoPolicyDetails.new_value – New viewer info policy.
SharedContentChangeViewerInfoPolicyDetails.previous_value – Previous view info policy.
Bases:
Struct
Bases:
StructAcquired membership of shared file/folder by accepting invite.
- Variables:
SharedContentClaimInvitationDetails.shared_content_link – Shared content link.
Bases:
Struct
Bases:
StructCopied shared file/folder to own Dropbox.
- Variables:
SharedContentCopyDetails.shared_content_link – Shared content link.
SharedContentCopyDetails.shared_content_owner – The shared content owner.
SharedContentCopyDetails.shared_content_access_level – Shared content access level.
SharedContentCopyDetails.destination_path – The path where the member saved the content.
Bases:
Struct
Bases:
StructDownloaded shared file/folder.
- Variables:
SharedContentDownloadDetails.shared_content_link – Shared content link.
SharedContentDownloadDetails.shared_content_owner – The shared content owner.
SharedContentDownloadDetails.shared_content_access_level – Shared content access level.
Bases:
Struct
Bases:
StructLeft shared file/folder.
Bases:
Struct
Bases:
StructRemoved invitee from shared file/folder before invite was accepted.
- Variables:
SharedContentRemoveInviteesDetails.invitees – A list of invitees.
Bases:
Struct
Bases:
StructRemoved link expiration date of shared file/folder.
- Variables:
SharedContentRemoveLinkExpiryDetails.previous_value – Previous shared content link expiration date. Might be missing due to historical data gap.
Bases:
Struct
Bases:
StructRemoved link password of shared file/folder.
Bases:
Struct
Bases:
StructRemoved user/group from shared file/folder.
- Variables:
SharedContentRemoveMemberDetails.shared_content_access_level – Shared content access level.
Bases:
Struct
Bases:
StructRequested access to shared file/folder.
- Variables:
SharedContentRequestAccessDetails.shared_content_link – Shared content link.
Bases:
Struct
Bases:
StructRestored shared file/folder invitees.
- Variables:
SharedContentRestoreInviteesDetails.shared_content_access_level – Shared content access level.
SharedContentRestoreInviteesDetails.invitees – A list of invitees.
Bases:
Struct
Bases:
StructRestored users and/or groups to membership of shared file/folder.
- Variables:
SharedContentRestoreMemberDetails.shared_content_access_level – Shared content access level.
Bases:
Struct
Bases:
StructUnshared file/folder by clearing membership.
Bases:
Struct
Bases:
StructPreviewed shared file/folder.
- Variables:
SharedContentViewDetails.shared_content_link – Shared content link.
SharedContentViewDetails.shared_content_owner – The shared content owner.
SharedContentViewDetails.shared_content_access_level – Shared content access level.
Bases:
Struct
Bases:
StructChanged who can access shared folder via link.
- Variables:
SharedFolderChangeLinkPolicyDetails.new_value – New shared folder link policy.
SharedFolderChangeLinkPolicyDetails.previous_value – Previous shared folder link policy. Might be missing due to historical data gap.
Bases:
Struct
Bases:
StructChanged whether shared folder inherits members from parent folder.
- Variables:
SharedFolderChangeMembersInheritancePolicyDetails.new_value – New member inheritance policy.
SharedFolderChangeMembersInheritancePolicyDetails.previous_value – Previous member inheritance policy. Might be missing due to historical data gap.
Bases:
Struct
Bases:
StructChanged who can add/remove members of shared folder.
- Variables:
SharedFolderChangeMembersManagementPolicyDetails.new_value – New members management policy.
SharedFolderChangeMembersManagementPolicyDetails.previous_value – Previous members management policy. Might be missing due to historical data gap.
Bases:
Struct
Bases:
StructChanged who can become member of shared folder.
- Variables:
SharedFolderChangeMembersPolicyDetails.new_value – New external invite policy.
SharedFolderChangeMembersPolicyDetails.previous_value – Previous external invite policy. Might be missing due to historical data gap.
Bases:
Struct
Bases:
StructCreated shared folder.
- Variables:
SharedFolderCreateDetails.target_ns_id – Target namespace ID.
Bases:
Struct
Bases:
StructDeclined team member’s invite to shared folder.
Bases:
Struct
Bases:
UnionSpecifies if a shared folder inherits its members from the parent folder.
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.Check if the union tag is
dont_inherit_members.- Return type:
bool
Check if the union tag is
inherit_members.- Return type:
bool
Check if the union tag is
other.- Return type:
bool
Bases:
StructAdded shared folder to own Dropbox.
Bases:
Struct
Bases:
StructChanged parent of shared folder.
- Variables:
SharedFolderNestDetails.previous_parent_ns_id – Previous parent namespace ID.
SharedFolderNestDetails.new_parent_ns_id – New parent namespace ID.
SharedFolderNestDetails.previous_ns_path – Previous namespace path.
SharedFolderNestDetails.new_ns_path – New namespace path.
Bases:
Struct
Bases:
StructTransferred ownership of shared folder to another member.
- Variables:
SharedFolderTransferOwnershipDetails.previous_owner_email – The email address of the previous shared folder owner.
SharedFolderTransferOwnershipDetails.new_owner_email – The email address of the new shared folder owner.
Bases:
Struct
Bases:
StructDeleted shared folder from Dropbox.
Bases:
Struct
Bases:
StructCreated shared folders report.
Bases:
StructCouldn’t generate shared folders report.
- Variables:
SharedFoldersCreateReportFailedDetails.failure_reason – Failure reason.
Bases:
Struct
Bases:
Struct
Bases:
UnionShared link access level.
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.Check if the union tag is
none.- Return type:
bool
Check if the union tag is
other.- Return type:
bool
Check if the union tag is
reader.- Return type:
bool
Check if the union tag is
writer.- Return type:
bool
Bases:
StructAdded shared link expiration date.
- Variables:
SharedLinkAddExpiryDetails.new_value – New shared link expiration date.
SharedLinkAddExpiryDetails.is_consolidation_action – Indicates whether this was a consolidation action by system.
Bases:
Struct
Bases:
StructChanged shared link expiration date.
- Variables:
SharedLinkChangeExpiryDetails.new_value – New shared link expiration date. Might be missing due to historical data gap.
SharedLinkChangeExpiryDetails.previous_value – Previous shared link expiration date. Might be missing due to historical data gap.
SharedLinkChangeExpiryDetails.is_consolidation_action – Indicates whether this was a consolidation action by system.
Bases:
Struct
Bases:
StructChanged visibility of shared link.
- Variables:
SharedLinkChangeVisibilityDetails.new_value – New shared link visibility.
SharedLinkChangeVisibilityDetails.previous_value – Previous shared link visibility. Might be missing due to historical data gap.
SharedLinkChangeVisibilityDetails.is_consolidation_action – Indicates whether this was a consolidation action by system.
Bases:
Struct
Bases:
StructAdded file/folder to Dropbox from shared link.
- Variables:
SharedLinkCopyDetails.shared_link_owner – Shared link owner details. Might be missing due to historical data gap.
Bases:
Struct
Bases:
StructCreated shared link.
- Variables:
SharedLinkCreateDetails.shared_link_access_level – Defines who can access the shared link. Might be missing due to historical data gap.
Bases:
Struct
Bases:
UnionPolicy for deciding the default permissions granted through shared links
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.Check if the union tag is
default.- Return type:
bool
Check if the union tag is
edit.- Return type:
bool
Check if the union tag is
other.- Return type:
bool
Check if the union tag is
view.- Return type:
bool
Bases:
StructChanged shared link default permissions policy for team.
- Variables:
SharedLinkDefaultPermissionsPolicyChangedDetails.new_value – To.
SharedLinkDefaultPermissionsPolicyChangedDetails.previous_value – From.
Bases:
Struct
Bases:
StructRemoved shared link.
- Variables:
SharedLinkDisableDetails.shared_link_owner – Shared link owner details. Might be missing due to historical data gap.
Bases:
Struct
Bases:
StructDownloaded file/folder from shared link.
- Variables:
SharedLinkDownloadDetails.shared_link_owner – Shared link owner details. Might be missing due to historical data gap.
Bases:
Struct
Bases:
StructRemoved shared link expiration date.
- Variables:
SharedLinkRemoveExpiryDetails.previous_value – Previous shared link expiration date. Might be missing due to historical data gap.
Bases:
Struct
Bases:
StructRemoved link visitor.
Bases:
Struct
Bases:
StructAdded an expiration date to the shared link.
- Variables:
SharedLinkSettingsAddExpirationDetails.shared_content_access_level – Shared content access level.
SharedLinkSettingsAddExpirationDetails.shared_content_link – Shared content link.
SharedLinkSettingsAddExpirationDetails.new_value – New shared content link expiration date. Might be missing due to historical data gap.
Bases:
Struct
Bases:
StructAdded a password to the shared link.
- Variables:
SharedLinkSettingsAddPasswordDetails.shared_content_access_level – Shared content access level.
SharedLinkSettingsAddPasswordDetails.shared_content_link – Shared content link.
Bases:
Struct
Bases:
StructDisabled downloads.
- Variables:
SharedLinkSettingsAllowDownloadDisabledDetails.shared_content_access_level – Shared content access level.
SharedLinkSettingsAllowDownloadDisabledDetails.shared_content_link – Shared content link.
Bases:
Struct
Bases:
StructEnabled downloads.
- Variables:
SharedLinkSettingsAllowDownloadEnabledDetails.shared_content_access_level – Shared content access level.
SharedLinkSettingsAllowDownloadEnabledDetails.shared_content_link – Shared content link.
Bases:
Struct
Bases:
StructChanged the audience of the shared link.
- Variables:
SharedLinkSettingsChangeAudienceDetails.shared_content_access_level – Shared content access level.
SharedLinkSettingsChangeAudienceDetails.shared_content_link – Shared content link.
SharedLinkSettingsChangeAudienceDetails.new_value – New link audience value.
SharedLinkSettingsChangeAudienceDetails.previous_value – Previous link audience value.
Bases:
Struct
Bases:
StructChanged the expiration date of the shared link.
- Variables:
SharedLinkSettingsChangeExpirationDetails.shared_content_access_level – Shared content access level.
SharedLinkSettingsChangeExpirationDetails.shared_content_link – Shared content link.
SharedLinkSettingsChangeExpirationDetails.new_value – New shared content link expiration date. Might be missing due to historical data gap.
SharedLinkSettingsChangeExpirationDetails.previous_value – Previous shared content link expiration date. Might be missing due to historical data gap.
Bases:
Struct
Bases:
StructChanged the password of the shared link.
- Variables:
SharedLinkSettingsChangePasswordDetails.shared_content_access_level – Shared content access level.
SharedLinkSettingsChangePasswordDetails.shared_content_link – Shared content link.
Bases:
Struct
Bases:
StructRemoved the expiration date from the shared link.
- Variables:
SharedLinkSettingsRemoveExpirationDetails.shared_content_access_level – Shared content access level.
SharedLinkSettingsRemoveExpirationDetails.shared_content_link – Shared content link.
SharedLinkSettingsRemoveExpirationDetails.previous_value – Previous shared link expiration date. Might be missing due to historical data gap.
Bases:
Struct
Bases:
StructRemoved the password from the shared link.
- Variables:
SharedLinkSettingsRemovePasswordDetails.shared_content_access_level – Shared content access level.
SharedLinkSettingsRemovePasswordDetails.shared_content_link – Shared content link.
Bases:
Struct
Bases:
StructAdded members as audience of shared link.
- Variables:
SharedLinkShareDetails.shared_link_owner – Shared link owner details. Might be missing due to historical data gap.
SharedLinkShareDetails.external_users – Users without a Dropbox account that were added as shared link audience.
Bases:
Struct
Bases:
StructOpened shared link.
- Variables:
SharedLinkViewDetails.shared_link_owner – Shared link owner details. Might be missing due to historical data gap.
Bases:
Struct
Bases:
UnionDefines who has access to a shared link.
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.Check if the union tag is
no_one.- Return type:
bool
Check if the union tag is
other.- Return type:
bool
Check if the union tag is
password.- Return type:
bool
Check if the union tag is
public.- Return type:
bool
Check if the union tag is
team_only.- Return type:
bool
Bases:
StructOpened shared Paper doc.
Bases:
Struct
- class dropbox.team_log.SharingChangeFolderJoinPolicyDetails(new_value=None, previous_value=None)
Bases:
StructChanged whether team members can join shared folders owned outside team.
- Variables:
SharingChangeFolderJoinPolicyDetails.new_value – New external join policy.
SharingChangeFolderJoinPolicyDetails.previous_value – Previous external join policy. Might be missing due to historical data gap.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.SharingChangeFolderJoinPolicyType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.SharingChangeLinkAllowChangeExpirationPolicyDetails(new_value=None, previous_value=None)
Bases:
StructChanged the allow remove or change expiration policy for the links shared outside of the team.
- Variables:
SharingChangeLinkAllowChangeExpirationPolicyDetails.new_value – To.
SharingChangeLinkAllowChangeExpirationPolicyDetails.previous_value – From.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.SharingChangeLinkAllowChangeExpirationPolicyType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.SharingChangeLinkDefaultExpirationPolicyDetails(new_value=None, previous_value=None)
Bases:
StructChanged the default expiration for the links shared outside of the team.
- Variables:
SharingChangeLinkDefaultExpirationPolicyDetails.new_value – To.
SharingChangeLinkDefaultExpirationPolicyDetails.previous_value – From.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.SharingChangeLinkDefaultExpirationPolicyType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.SharingChangeLinkEnforcePasswordPolicyDetails(new_value=None, previous_value=None)
Bases:
StructChanged the password requirement for the links shared outside of the team.
- Variables:
SharingChangeLinkEnforcePasswordPolicyDetails.new_value – To.
SharingChangeLinkEnforcePasswordPolicyDetails.previous_value – From.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.SharingChangeLinkEnforcePasswordPolicyType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.SharingChangeLinkPolicyDetails(new_value=None, previous_value=None)
Bases:
StructChanged whether members can share links outside team, and if links are accessible only by team members or anyone by default.
- Variables:
SharingChangeLinkPolicyDetails.new_value – New external link accessibility policy.
SharingChangeLinkPolicyDetails.previous_value – Previous external link accessibility policy. Might be missing due to historical data gap.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.SharingChangeLinkPolicyType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.SharingChangeMemberPolicyDetails(new_value=None, previous_value=None)
Bases:
StructChanged whether members can share files/folders outside team.
- Variables:
SharingChangeMemberPolicyDetails.new_value – New external invite policy.
SharingChangeMemberPolicyDetails.previous_value – Previous external invite policy. Might be missing due to historical data gap.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.SharingChangeMemberPolicyType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.SharingFolderJoinPolicy(tag, value=None)
Bases:
UnionPolicy for controlling if team members can join shared folders owned by non team members.
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.- from_anyone = SharingFolderJoinPolicy('from_anyone', None)
- from_team_only = SharingFolderJoinPolicy('from_team_only', None)
- is_from_anyone()
Check if the union tag is
from_anyone.- Return type:
bool
- is_from_team_only()
Check if the union tag is
from_team_only.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- other = SharingFolderJoinPolicy('other', None)
- class dropbox.team_log.SharingLinkPolicy(tag, value=None)
Bases:
UnionPolicy for controlling if team members can share links 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_no_one = SharingLinkPolicy('default_no_one', None)
- default_private = SharingLinkPolicy('default_private', None)
- default_public = SharingLinkPolicy('default_public', None)
- is_default_no_one()
Check if the union tag is
default_no_one.- Return type:
bool
- is_default_private()
Check if the union tag is
default_private.- Return type:
bool
- is_default_public()
Check if the union tag is
default_public.- Return type:
bool
- is_only_private()
Check if the union tag is
only_private.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- only_private = SharingLinkPolicy('only_private', None)
- other = SharingLinkPolicy('other', None)
- class dropbox.team_log.SharingMemberPolicy(tag, value=None)
Bases:
UnionExternal sharing 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 = SharingMemberPolicy('allow', None)
- forbid = SharingMemberPolicy('forbid', None)
- forbid_with_exclusions = SharingMemberPolicy('forbid_with_exclusions', None)
- is_allow()
Check if the union tag is
allow.- Return type:
bool
- is_forbid()
Check if the union tag is
forbid.- Return type:
bool
- is_forbid_with_exclusions()
Check if the union tag is
forbid_with_exclusions.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- other = SharingMemberPolicy('other', None)
- class dropbox.team_log.ShmodelDisableDownloadsDetails(shared_link_owner=None)
Bases:
StructDisabled downloads for link.
- Variables:
ShmodelDisableDownloadsDetails.shared_link_owner – Shared link owner details. Might be missing due to historical data gap.
- __init__(shared_link_owner=None)
- class dropbox.team_log.ShmodelDisableDownloadsType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.ShmodelEnableDownloadsDetails(shared_link_owner=None)
Bases:
StructEnabled downloads for link.
- Variables:
ShmodelEnableDownloadsDetails.shared_link_owner – Shared link owner details. Might be missing due to historical data gap.
- __init__(shared_link_owner=None)
- class dropbox.team_log.ShmodelEnableDownloadsType(description=None)
Bases:
Struct- __init__(description=None)
- description
Bases:
StructShared link with group.
Bases:
Struct
- class dropbox.team_log.ShowcaseAccessGrantedDetails(event_uuid=None)
Bases:
StructGranted access to showcase.
- Variables:
ShowcaseAccessGrantedDetails.event_uuid – Event unique identifier.
- __init__(event_uuid=None)
- event_uuid
- class dropbox.team_log.ShowcaseAccessGrantedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.ShowcaseAddMemberDetails(event_uuid=None)
Bases:
StructAdded member to showcase.
- Variables:
ShowcaseAddMemberDetails.event_uuid – Event unique identifier.
- __init__(event_uuid=None)
- event_uuid
- class dropbox.team_log.ShowcaseAddMemberType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.ShowcaseArchivedDetails(event_uuid=None)
Bases:
StructArchived showcase.
- Variables:
ShowcaseArchivedDetails.event_uuid – Event unique identifier.
- __init__(event_uuid=None)
- event_uuid
- class dropbox.team_log.ShowcaseArchivedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.ShowcaseChangeDownloadPolicyDetails(new_value=None, previous_value=None)
Bases:
StructEnabled/disabled downloading files from Dropbox Showcase for team.
- Variables:
ShowcaseChangeDownloadPolicyDetails.new_value – New Dropbox Showcase download policy.
ShowcaseChangeDownloadPolicyDetails.previous_value – Previous Dropbox Showcase download policy.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.ShowcaseChangeDownloadPolicyType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.ShowcaseChangeEnabledPolicyDetails(new_value=None, previous_value=None)
Bases:
StructEnabled/disabled Dropbox Showcase for team.
- Variables:
ShowcaseChangeEnabledPolicyDetails.new_value – New Dropbox Showcase policy.
ShowcaseChangeEnabledPolicyDetails.previous_value – Previous Dropbox Showcase policy.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.ShowcaseChangeEnabledPolicyType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.ShowcaseChangeExternalSharingPolicyDetails(new_value=None, previous_value=None)
Bases:
StructEnabled/disabled sharing Dropbox Showcase externally for team.
- Variables:
ShowcaseChangeExternalSharingPolicyDetails.new_value – New Dropbox Showcase external sharing policy.
ShowcaseChangeExternalSharingPolicyDetails.previous_value – Previous Dropbox Showcase external sharing policy.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.ShowcaseChangeExternalSharingPolicyType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.ShowcaseCreatedDetails(event_uuid=None)
Bases:
StructCreated showcase.
- Variables:
ShowcaseCreatedDetails.event_uuid – Event unique identifier.
- __init__(event_uuid=None)
- event_uuid
- class dropbox.team_log.ShowcaseCreatedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.ShowcaseDeleteCommentDetails(event_uuid=None, comment_text=None)
Bases:
StructDeleted showcase comment.
- Variables:
ShowcaseDeleteCommentDetails.event_uuid – Event unique identifier.
ShowcaseDeleteCommentDetails.comment_text – Comment text.
- __init__(event_uuid=None, comment_text=None)
- comment_text
- event_uuid
- class dropbox.team_log.ShowcaseDeleteCommentType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.ShowcaseDocumentLogInfo(showcase_id=None, showcase_title=None)
Bases:
StructShowcase document’s logged information.
- Variables:
ShowcaseDocumentLogInfo.showcase_id – Showcase document Id.
ShowcaseDocumentLogInfo.showcase_title – Showcase document title.
- __init__(showcase_id=None, showcase_title=None)
- showcase_id
- showcase_title
- class dropbox.team_log.ShowcaseDownloadPolicy(tag, value=None)
Bases:
UnionPolicy for controlling if files can be downloaded from Showcases by team members
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 = ShowcaseDownloadPolicy('disabled', None)
- enabled = ShowcaseDownloadPolicy('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 = ShowcaseDownloadPolicy('other', None)
- class dropbox.team_log.ShowcaseEditCommentDetails(event_uuid=None, comment_text=None)
Bases:
StructEdited showcase comment.
- Variables:
ShowcaseEditCommentDetails.event_uuid – Event unique identifier.
ShowcaseEditCommentDetails.comment_text – Comment text.
- __init__(event_uuid=None, comment_text=None)
- comment_text
- event_uuid
- class dropbox.team_log.ShowcaseEditCommentType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.ShowcaseEditedDetails(event_uuid=None)
Bases:
StructEdited showcase.
- Variables:
ShowcaseEditedDetails.event_uuid – Event unique identifier.
- __init__(event_uuid=None)
- event_uuid
- class dropbox.team_log.ShowcaseEditedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.ShowcaseEnabledPolicy(tag, value=None)
Bases:
UnionPolicy for controlling whether Showcase is enabled.
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 = ShowcaseEnabledPolicy('disabled', None)
- enabled = ShowcaseEnabledPolicy('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 = ShowcaseEnabledPolicy('other', None)
- class dropbox.team_log.ShowcaseExternalSharingPolicy(tag, value=None)
Bases:
UnionPolicy for controlling if team members can share Showcases 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.- disabled = ShowcaseExternalSharingPolicy('disabled', None)
- enabled = ShowcaseExternalSharingPolicy('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 = ShowcaseExternalSharingPolicy('other', None)
- class dropbox.team_log.ShowcaseFileAddedDetails(event_uuid=None)
Bases:
StructAdded file to showcase.
- Variables:
ShowcaseFileAddedDetails.event_uuid – Event unique identifier.
- __init__(event_uuid=None)
- event_uuid
- class dropbox.team_log.ShowcaseFileAddedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.ShowcaseFileDownloadDetails(event_uuid=None, download_type=None)
Bases:
StructDownloaded file from showcase.
- Variables:
ShowcaseFileDownloadDetails.event_uuid – Event unique identifier.
ShowcaseFileDownloadDetails.download_type – Showcase download type.
- __init__(event_uuid=None, download_type=None)
- download_type
- event_uuid
- class dropbox.team_log.ShowcaseFileDownloadType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.ShowcaseFileRemovedDetails(event_uuid=None)
Bases:
StructRemoved file from showcase.
- Variables:
ShowcaseFileRemovedDetails.event_uuid – Event unique identifier.
- __init__(event_uuid=None)
- event_uuid
- class dropbox.team_log.ShowcaseFileRemovedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.ShowcaseFileViewDetails(event_uuid=None)
Bases:
StructViewed file in showcase.
- Variables:
ShowcaseFileViewDetails.event_uuid – Event unique identifier.
- __init__(event_uuid=None)
- event_uuid
- class dropbox.team_log.ShowcaseFileViewType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.ShowcasePermanentlyDeletedDetails(event_uuid=None)
Bases:
StructPermanently deleted showcase.
- Variables:
ShowcasePermanentlyDeletedDetails.event_uuid – Event unique identifier.
- __init__(event_uuid=None)
- event_uuid
- class dropbox.team_log.ShowcasePermanentlyDeletedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.ShowcasePostCommentDetails(event_uuid=None, comment_text=None)
Bases:
StructAdded showcase comment.
- Variables:
ShowcasePostCommentDetails.event_uuid – Event unique identifier.
ShowcasePostCommentDetails.comment_text – Comment text.
- __init__(event_uuid=None, comment_text=None)
- comment_text
- event_uuid
- class dropbox.team_log.ShowcasePostCommentType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.ShowcaseRemoveMemberDetails(event_uuid=None)
Bases:
StructRemoved member from showcase.
- Variables:
ShowcaseRemoveMemberDetails.event_uuid – Event unique identifier.
- __init__(event_uuid=None)
- event_uuid
- class dropbox.team_log.ShowcaseRemoveMemberType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.ShowcaseRenamedDetails(event_uuid=None)
Bases:
StructRenamed showcase.
- Variables:
ShowcaseRenamedDetails.event_uuid – Event unique identifier.
- __init__(event_uuid=None)
- event_uuid
- class dropbox.team_log.ShowcaseRenamedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.ShowcaseRequestAccessDetails(event_uuid=None)
Bases:
StructRequested access to showcase.
- Variables:
ShowcaseRequestAccessDetails.event_uuid – Event unique identifier.
- __init__(event_uuid=None)
- event_uuid
- class dropbox.team_log.ShowcaseRequestAccessType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.ShowcaseResolveCommentDetails(event_uuid=None, comment_text=None)
Bases:
StructResolved showcase comment.
- Variables:
ShowcaseResolveCommentDetails.event_uuid – Event unique identifier.
ShowcaseResolveCommentDetails.comment_text – Comment text.
- __init__(event_uuid=None, comment_text=None)
- comment_text
- event_uuid
- class dropbox.team_log.ShowcaseResolveCommentType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.ShowcaseRestoredDetails(event_uuid=None)
Bases:
StructUnarchived showcase.
- Variables:
ShowcaseRestoredDetails.event_uuid – Event unique identifier.
- __init__(event_uuid=None)
- event_uuid
- class dropbox.team_log.ShowcaseRestoredType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.ShowcaseTrashedDeprecatedDetails(event_uuid=None)
Bases:
StructDeleted showcase (old version).
- Variables:
ShowcaseTrashedDeprecatedDetails.event_uuid – Event unique identifier.
- __init__(event_uuid=None)
- event_uuid
- class dropbox.team_log.ShowcaseTrashedDeprecatedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.ShowcaseTrashedDetails(event_uuid=None)
Bases:
StructDeleted showcase.
- Variables:
ShowcaseTrashedDetails.event_uuid – Event unique identifier.
- __init__(event_uuid=None)
- event_uuid
- class dropbox.team_log.ShowcaseTrashedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.ShowcaseUnresolveCommentDetails(event_uuid=None, comment_text=None)
Bases:
StructUnresolved showcase comment.
- Variables:
ShowcaseUnresolveCommentDetails.event_uuid – Event unique identifier.
ShowcaseUnresolveCommentDetails.comment_text – Comment text.
- __init__(event_uuid=None, comment_text=None)
- comment_text
- event_uuid
- class dropbox.team_log.ShowcaseUnresolveCommentType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.ShowcaseUntrashedDeprecatedDetails(event_uuid=None)
Bases:
StructRestored showcase (old version).
- Variables:
ShowcaseUntrashedDeprecatedDetails.event_uuid – Event unique identifier.
- __init__(event_uuid=None)
- event_uuid
- class dropbox.team_log.ShowcaseUntrashedDeprecatedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.ShowcaseUntrashedDetails(event_uuid=None)
Bases:
StructRestored showcase.
- Variables:
ShowcaseUntrashedDetails.event_uuid – Event unique identifier.
- __init__(event_uuid=None)
- event_uuid
- class dropbox.team_log.ShowcaseUntrashedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.ShowcaseViewDetails(event_uuid=None)
Bases:
StructViewed showcase.
- Variables:
ShowcaseViewDetails.event_uuid – Event unique identifier.
- __init__(event_uuid=None)
- event_uuid
- class dropbox.team_log.ShowcaseViewType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.SignExternalSharingPolicy(tag, value=None)
Bases:
UnionPolicy for deciding whether team users can share Sign 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 = SignExternalSharingPolicy('default', None)
- disabled = SignExternalSharingPolicy('disabled', None)
- enabled = SignExternalSharingPolicy('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 = SignExternalSharingPolicy('other', None)
- class dropbox.team_log.SignExternalSharingPolicyChangedDetails(new_value=None, previous_value=None)
Bases:
StructChanged Signatures external sharing policy for team.
- Variables:
SignExternalSharingPolicyChangedDetails.new_value – To.
SignExternalSharingPolicyChangedDetails.previous_value – From.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.SignExternalSharingPolicyChangedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.SignInAsSessionEndDetails
Bases:
StructEnded admin sign-in-as session.
- __init__()
- class dropbox.team_log.SignInAsSessionEndType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.SignInAsSessionStartDetails
Bases:
StructStarted admin sign-in-as session.
- __init__()
- class dropbox.team_log.SignInAsSessionStartType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.SignSignatureRequestCanceledDetails(recipient=None, file_name=None)
Bases:
StructCanceled signature request.
- Variables:
SignSignatureRequestCanceledDetails.recipient – The recipient of the signature request.
SignSignatureRequestCanceledDetails.file_name – The name of the related file.
- __init__(recipient=None, file_name=None)
- file_name
- recipient
- class dropbox.team_log.SignSignatureRequestCanceledType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.SignSignatureRequestCompletedDetails(recipient=None, file_name=None)
Bases:
StructCompleted signature request.
- Variables:
SignSignatureRequestCompletedDetails.recipient – The recipient of the signature request.
SignSignatureRequestCompletedDetails.file_name – The name of the related file.
- __init__(recipient=None, file_name=None)
- file_name
- recipient
- class dropbox.team_log.SignSignatureRequestCompletedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.SignSignatureRequestDeclinedDetails(recipient=None, file_name=None)
Bases:
StructDeclined signature request.
- Variables:
SignSignatureRequestDeclinedDetails.recipient – The recipient of the signature request.
SignSignatureRequestDeclinedDetails.file_name – The name of the related file.
- __init__(recipient=None, file_name=None)
- file_name
- recipient
- class dropbox.team_log.SignSignatureRequestDeclinedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.SignSignatureRequestOpenedDetails(recipient=None, file_name=None)
Bases:
StructOpened signature request.
- Variables:
SignSignatureRequestOpenedDetails.recipient – The recipient of the signature request.
SignSignatureRequestOpenedDetails.file_name – The name of the related file.
- __init__(recipient=None, file_name=None)
- file_name
- recipient
- class dropbox.team_log.SignSignatureRequestOpenedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.SignSignatureRequestReminderSentDetails(recipient=None, file_name=None)
Bases:
StructSent signature request reminder.
- Variables:
SignSignatureRequestReminderSentDetails.recipient – The recipient of the signature request.
SignSignatureRequestReminderSentDetails.file_name – The name of the related file.
- __init__(recipient=None, file_name=None)
- file_name
- recipient
- class dropbox.team_log.SignSignatureRequestReminderSentType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.SignSignatureRequestSentDetails(recipient=None, file_name=None)
Bases:
StructSent signature request.
- Variables:
SignSignatureRequestSentDetails.recipient – The recipient of the signature request.
SignSignatureRequestSentDetails.file_name – The name of the related file.
- __init__(recipient=None, file_name=None)
- file_name
- recipient
- class dropbox.team_log.SignSignatureRequestSentType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.SignTemplateCreatedDetails(access_level=None, file_name=None)
Bases:
StructCreated template.
- Variables:
SignTemplateCreatedDetails.access_level – The access level of the template.
SignTemplateCreatedDetails.file_name – The name of the related file.
- __init__(access_level=None, file_name=None)
- access_level
- file_name
- class dropbox.team_log.SignTemplateCreatedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.SignTemplateCreationPermissionChangedDetails(new_value=None, previous_value=None)
Bases:
StructChanged template creation permission.
- Variables:
SignTemplateCreationPermissionChangedDetails.new_value – New template creation permission policy.
SignTemplateCreationPermissionChangedDetails.previous_value – Previous template creation permission policy.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.SignTemplateCreationPermissionChangedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.SignTemplateCreationPermissionPolicy(tag, value=None)
Bases:
UnionPolicy for controlling if team members can create templates
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 = SignTemplateCreationPermissionPolicy('disabled', None)
- enabled = SignTemplateCreationPermissionPolicy('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 = SignTemplateCreationPermissionPolicy('other', None)
Bases:
StructShared template.
- Variables:
SignTemplateSharedDetails.access_level – The access level of the template.
SignTemplateSharedDetails.file_name – The name of the related file.
Bases:
Struct
- class dropbox.team_log.SmartSyncChangePolicyDetails(new_value=None, previous_value=None)
Bases:
StructChanged default Smart Sync setting for team members.
- Variables:
SmartSyncChangePolicyDetails.new_value – New smart sync policy.
SmartSyncChangePolicyDetails.previous_value – Previous smart sync policy.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.SmartSyncChangePolicyType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.SmartSyncCreateAdminPrivilegeReportDetails
Bases:
StructCreated Smart Sync non-admin devices report.
- __init__()
- class dropbox.team_log.SmartSyncCreateAdminPrivilegeReportType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.SmartSyncNotOptOutDetails(previous_value=None, new_value=None)
Bases:
StructOpted team into Smart Sync.
- Variables:
SmartSyncNotOptOutDetails.previous_value – Previous Smart Sync opt out policy.
SmartSyncNotOptOutDetails.new_value – New Smart Sync opt out policy.
- __init__(previous_value=None, new_value=None)
- new_value
- previous_value
- class dropbox.team_log.SmartSyncNotOptOutType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.SmartSyncOptOutDetails(previous_value=None, new_value=None)
Bases:
StructOpted team out of Smart Sync.
- Variables:
SmartSyncOptOutDetails.previous_value – Previous Smart Sync opt out policy.
SmartSyncOptOutDetails.new_value – New Smart Sync opt out policy.
- __init__(previous_value=None, new_value=None)
- new_value
- previous_value
- class dropbox.team_log.SmartSyncOptOutPolicy(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 = SmartSyncOptOutPolicy('default', None)
- is_default()
Check if the union tag is
default.- 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_out = SmartSyncOptOutPolicy('opted_out', None)
- other = SmartSyncOptOutPolicy('other', None)
- class dropbox.team_log.SmartSyncOptOutType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.SmarterSmartSyncPolicyChangedDetails(previous_value=None, new_value=None)
Bases:
StructChanged automatic Smart Sync setting for team.
- Variables:
SmarterSmartSyncPolicyChangedDetails.previous_value – Previous automatic Smart Sync setting.
SmarterSmartSyncPolicyChangedDetails.new_value – New automatic Smart Sync setting.
- __init__(previous_value=None, new_value=None)
- new_value
- previous_value
- class dropbox.team_log.SmarterSmartSyncPolicyChangedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.SpaceCapsType(tag, value=None)
Bases:
UnionSpace limit alert 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.- hard = SpaceCapsType('hard', None)
- is_hard()
Check if the union tag is
hard.- Return type:
bool
- is_off()
Check if the union tag is
off.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- is_soft()
Check if the union tag is
soft.- Return type:
bool
- off = SpaceCapsType('off', None)
- other = SpaceCapsType('other', None)
- soft = SpaceCapsType('soft', None)
- class dropbox.team_log.SpaceLimitsStatus(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_near_quota()
Check if the union tag is
near_quota.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- is_over_quota()
Check if the union tag is
over_quota.- Return type:
bool
- is_within_quota()
Check if the union tag is
within_quota.- Return type:
bool
- near_quota = SpaceLimitsStatus('near_quota', None)
- other = SpaceLimitsStatus('other', None)
- over_quota = SpaceLimitsStatus('over_quota', None)
- within_quota = SpaceLimitsStatus('within_quota', None)
- class dropbox.team_log.SsoAddCertDetails(certificate_details=None)
Bases:
StructAdded X.509 certificate for SSO.
- Variables:
SsoAddCertDetails.certificate_details – SSO certificate details.
- __init__(certificate_details=None)
- certificate_details
- class dropbox.team_log.SsoAddCertType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.SsoAddLoginUrlDetails(new_value=None)
Bases:
StructAdded sign-in URL for SSO.
- Variables:
SsoAddLoginUrlDetails.new_value – New single sign-on login URL.
- __init__(new_value=None)
- new_value
- class dropbox.team_log.SsoAddLoginUrlType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.SsoAddLogoutUrlDetails(new_value=None)
Bases:
StructAdded sign-out URL for SSO.
- Variables:
SsoAddLogoutUrlDetails.new_value – New single sign-on logout URL.
- __init__(new_value=None)
- new_value
- class dropbox.team_log.SsoAddLogoutUrlType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.SsoChangeCertDetails(new_certificate_details=None, previous_certificate_details=None)
Bases:
StructChanged X.509 certificate for SSO.
- Variables:
SsoChangeCertDetails.previous_certificate_details – Previous SSO certificate details. Might be missing due to historical data gap.
SsoChangeCertDetails.new_certificate_details – New SSO certificate details.
- __init__(new_certificate_details=None, previous_certificate_details=None)
- new_certificate_details
- previous_certificate_details
- class dropbox.team_log.SsoChangeCertType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.SsoChangeLoginUrlDetails(previous_value=None, new_value=None)
Bases:
StructChanged sign-in URL for SSO.
- Variables:
SsoChangeLoginUrlDetails.previous_value – Previous single sign-on login URL.
SsoChangeLoginUrlDetails.new_value – New single sign-on login URL.
- __init__(previous_value=None, new_value=None)
- new_value
- previous_value
- class dropbox.team_log.SsoChangeLoginUrlType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.SsoChangeLogoutUrlDetails(previous_value=None, new_value=None)
Bases:
StructChanged sign-out URL for SSO.
- Variables:
SsoChangeLogoutUrlDetails.previous_value – Previous single sign-on logout URL. Might be missing due to historical data gap.
SsoChangeLogoutUrlDetails.new_value – New single sign-on logout URL.
- __init__(previous_value=None, new_value=None)
- new_value
- previous_value
- class dropbox.team_log.SsoChangeLogoutUrlType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.SsoChangePolicyDetails(new_value=None, previous_value=None)
Bases:
StructChanged single sign-on setting for team.
- Variables:
SsoChangePolicyDetails.new_value – New single sign-on policy.
SsoChangePolicyDetails.previous_value – Previous single sign-on policy. Might be missing due to historical data gap.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.SsoChangePolicyType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.SsoChangeSamlIdentityModeDetails(previous_value=None, new_value=None)
Bases:
StructChanged SAML identity mode for SSO.
- Variables:
SsoChangeSamlIdentityModeDetails.previous_value – Previous single sign-on identity mode.
SsoChangeSamlIdentityModeDetails.new_value – New single sign-on identity mode.
- __init__(previous_value=None, new_value=None)
- new_value
- previous_value
- class dropbox.team_log.SsoChangeSamlIdentityModeType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.SsoErrorDetails(error_details=None)
Bases:
StructFailed to sign in via SSO.
- Variables:
SsoErrorDetails.error_details – Error details.
- __init__(error_details=None)
- error_details
- class dropbox.team_log.SsoErrorType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.SsoRemoveCertDetails
Bases:
StructRemoved X.509 certificate for SSO.
- __init__()
- class dropbox.team_log.SsoRemoveCertType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.SsoRemoveLoginUrlDetails(previous_value=None)
Bases:
StructRemoved sign-in URL for SSO.
- Variables:
SsoRemoveLoginUrlDetails.previous_value – Previous single sign-on login URL.
- __init__(previous_value=None)
- previous_value
- class dropbox.team_log.SsoRemoveLoginUrlType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.SsoRemoveLogoutUrlDetails(previous_value=None)
Bases:
StructRemoved sign-out URL for SSO.
- Variables:
SsoRemoveLogoutUrlDetails.previous_value – Previous single sign-on logout URL.
- __init__(previous_value=None)
- previous_value
- class dropbox.team_log.SsoRemoveLogoutUrlType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.StackCrossTeamAccessPolicy(tag, value=None)
Bases:
UnionPolicy for whether a team’s content can be reached via Stacks owned by other teams
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 = StackCrossTeamAccessPolicy('allowed', None)
- default = StackCrossTeamAccessPolicy('default', None)
- disallowed = StackCrossTeamAccessPolicy('disallowed', None)
- is_allowed()
Check if the union tag is
allowed.- Return type:
bool
- is_default()
Check if the union tag is
default.- Return type:
bool
- is_disallowed()
Check if the union tag is
disallowed.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- other = StackCrossTeamAccessPolicy('other', None)
- class dropbox.team_log.StackCrossTeamAccessPolicyChangedDetails(new_value=None, previous_value=None)
Bases:
StructChanged cross-team Stack access policy for team.
- Variables:
StackCrossTeamAccessPolicyChangedDetails.new_value – New cross-team Stack access policy.
StackCrossTeamAccessPolicyChangedDetails.previous_value – Previous cross-team Stack access policy. Might be missing due to historical data gap.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.StackCrossTeamAccessPolicyChangedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.StartedEnterpriseAdminSessionDetails(federation_extra_details=None)
Bases:
StructStarted enterprise admin session.
- Variables:
StartedEnterpriseAdminSessionDetails.federation_extra_details – More information about the organization or team.
- __init__(federation_extra_details=None)
- federation_extra_details
- class dropbox.team_log.StartedEnterpriseAdminSessionType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.TeamActivityCreateReportDetails(start_date=None, end_date=None)
Bases:
StructCreated team activity report.
- Variables:
TeamActivityCreateReportDetails.start_date – Report start date.
TeamActivityCreateReportDetails.end_date – Report end date.
- __init__(start_date=None, end_date=None)
- end_date
- start_date
- class dropbox.team_log.TeamActivityCreateReportFailDetails(failure_reason=None)
Bases:
StructCouldn’t generate team activity report.
- Variables:
TeamActivityCreateReportFailDetails.failure_reason – Failure reason.
- __init__(failure_reason=None)
- failure_reason
- class dropbox.team_log.TeamActivityCreateReportFailType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.TeamActivityCreateReportType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.TeamBrandingPolicy(tag, value=None)
Bases:
UnionPolicy for controlling team access to setting up branding 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 = TeamBrandingPolicy('disabled', None)
- enabled = TeamBrandingPolicy('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 = TeamBrandingPolicy('other', None)
- class dropbox.team_log.TeamBrandingPolicyChangedDetails(new_value=None, previous_value=None)
Bases:
StructChanged team branding policy for team.
- Variables:
TeamBrandingPolicyChangedDetails.new_value – New team branding policy.
TeamBrandingPolicyChangedDetails.previous_value – Previous team branding policy.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.TeamBrandingPolicyChangedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.TeamDetails(team=None)
Bases:
StructMore details about the team.
- Variables:
TeamDetails.team – The name of the team.
- __init__(team=None)
- team
- class dropbox.team_log.TeamEncryptionKeyActivateKeyDetails(key_management_type=None)
Bases:
StructActivated team encryption key.
- Variables:
TeamEncryptionKeyActivateKeyDetails.key_management_type – Type of key management.
- __init__(key_management_type=None)
- key_management_type
- class dropbox.team_log.TeamEncryptionKeyActivateKeyType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.TeamEncryptionKeyCancelKeyDeletionDetails
Bases:
StructCanceled team encryption key deletion.
- __init__()
- class dropbox.team_log.TeamEncryptionKeyCancelKeyDeletionType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.TeamEncryptionKeyCreateKeyDetails
Bases:
StructCreated team encryption key.
- __init__()
- class dropbox.team_log.TeamEncryptionKeyCreateKeyType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.TeamEncryptionKeyDeactivateKeyDetails
Bases:
StructDeactivated team encryption key.
- __init__()
- class dropbox.team_log.TeamEncryptionKeyDeactivateKeyType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.TeamEncryptionKeyDeleteKeyDetails
Bases:
StructDeleted team encryption key.
- __init__()
- class dropbox.team_log.TeamEncryptionKeyDeleteKeyType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.TeamEncryptionKeyDisableKeyDetails
Bases:
StructDisabled team encryption key.
- __init__()
- class dropbox.team_log.TeamEncryptionKeyDisableKeyType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.TeamEncryptionKeyEnableKeyDetails
Bases:
StructEnabled team encryption key.
- __init__()
- class dropbox.team_log.TeamEncryptionKeyEnableKeyType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.TeamEncryptionKeyRotateKeyDetails
Bases:
StructRotated team encryption key.
- __init__()
- class dropbox.team_log.TeamEncryptionKeyRotateKeyType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.TeamEncryptionKeyScheduleKeyDeletionDetails
Bases:
StructScheduled encryption key deletion.
- __init__()
- class dropbox.team_log.TeamEncryptionKeyScheduleKeyDeletionType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.TeamEvent(timestamp=None, event_category=None, event_type=None, details=None, actor=None, origin=None, involve_non_team_member=None, context=None, participants=None, assets=None)
Bases:
StructAn audit log event.
- Variables:
TeamEvent.timestamp – The Dropbox timestamp representing when the action was taken.
TeamEvent.event_category – The category that this type of action belongs to.
TeamEvent.actor – The entity who actually performed the action.
TeamEvent.origin – The origin from which the actor performed the action including information about host, ip address, location, session, etc. If the action was performed programmatically via the API the origin represents the API client.
TeamEvent.involve_non_team_member – True if the action involved a non team member either as the actor or as one of the affected users.
TeamEvent.context – The user or team on whose behalf the actor performed the action.
TeamEvent.participants – Zero or more users and/or groups that are affected by the action. Note that this list doesn’t include any actors or users in context.
TeamEvent.assets – Zero or more content assets involved in the action. Currently these include Dropbox files and folders but in the future we might add other asset types such as Paper documents, folders, projects, etc.
TeamEvent.event_type – The particular type of action taken.
TeamEvent.details – The variable event schema applicable to this type of action, instantiated with respect to this particular action.
- __init__(timestamp=None, event_category=None, event_type=None, details=None, actor=None, origin=None, involve_non_team_member=None, context=None, participants=None, assets=None)
- actor
- assets
- context
- details
- event_category
- event_type
- involve_non_team_member
- origin
- participants
- timestamp
- class dropbox.team_log.TeamExtensionsPolicy(tag, value=None)
Bases:
UnionPolicy for controlling whether App Integrations are enabled for 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.- disabled = TeamExtensionsPolicy('disabled', None)
- enabled = TeamExtensionsPolicy('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 = TeamExtensionsPolicy('other', None)
- class dropbox.team_log.TeamExtensionsPolicyChangedDetails(new_value=None, previous_value=None)
Bases:
StructChanged App Integrations setting for team.
- Variables:
TeamExtensionsPolicyChangedDetails.new_value – New Extensions policy.
TeamExtensionsPolicyChangedDetails.previous_value – Previous Extensions policy.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.TeamExtensionsPolicyChangedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.TeamFolderChangeStatusDetails(new_value=None, previous_value=None)
Bases:
StructChanged archival status of team folder.
- Variables:
TeamFolderChangeStatusDetails.new_value – New team folder status.
TeamFolderChangeStatusDetails.previous_value – Previous team folder status. Might be missing due to historical data gap.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.TeamFolderChangeStatusType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.TeamFolderCreateDetails
Bases:
StructCreated team folder in active status.
- __init__()
- class dropbox.team_log.TeamFolderCreateType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.TeamFolderDowngradeDetails(target_asset_index=None)
Bases:
StructDowngraded team folder to regular shared folder.
- Variables:
TeamFolderDowngradeDetails.target_asset_index – Target asset position in the Assets list.
- __init__(target_asset_index=None)
- target_asset_index
- class dropbox.team_log.TeamFolderDowngradeType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.TeamFolderNotificationTarget(tag, value=None)
Bases:
UnionTeam folder space limit notification target
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 = TeamFolderNotificationTarget('admins', None)
- both = TeamFolderNotificationTarget('both', None)
- editors = TeamFolderNotificationTarget('editors', None)
- is_admins()
Check if the union tag is
admins.- Return type:
bool
- is_both()
Check if the union tag is
both.- Return type:
bool
- is_editors()
Check if the union tag is
editors.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- is_silent()
Check if the union tag is
silent.- Return type:
bool
- other = TeamFolderNotificationTarget('other', None)
- silent = TeamFolderNotificationTarget('silent', None)
- class dropbox.team_log.TeamFolderPermanentlyDeleteDetails
Bases:
StructPermanently deleted archived team folder.
- __init__()
- class dropbox.team_log.TeamFolderPermanentlyDeleteType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.TeamFolderRenameDetails(previous_folder_name=None, new_folder_name=None)
Bases:
StructRenamed active/archived team folder.
- Variables:
TeamFolderRenameDetails.previous_folder_name – Previous folder name.
TeamFolderRenameDetails.new_folder_name – New folder name.
- __init__(previous_folder_name=None, new_folder_name=None)
- new_folder_name
- previous_folder_name
- class dropbox.team_log.TeamFolderRenameType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.TeamFolderSpaceCapsType(tag, value=None)
Bases:
UnionTeam folder space limit enforcement 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.- hard = TeamFolderSpaceCapsType('hard', None)
- is_hard()
Check if the union tag is
hard.- Return type:
bool
- is_off()
Check if the union tag is
off.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- is_soft()
Check if the union tag is
soft.- Return type:
bool
- off = TeamFolderSpaceCapsType('off', None)
- other = TeamFolderSpaceCapsType('other', None)
- soft = TeamFolderSpaceCapsType('soft', None)
- class dropbox.team_log.TeamFolderSpaceLimitsChangeCapsTypeDetails(new_caps_type=None, previous_caps_type=None)
Bases:
StructChanged team folder space limit enforcement type.
- Variables:
TeamFolderSpaceLimitsChangeCapsTypeDetails.previous_caps_type – Previous enforcement type.
TeamFolderSpaceLimitsChangeCapsTypeDetails.new_caps_type – New enforcement type.
- __init__(new_caps_type=None, previous_caps_type=None)
- new_caps_type
- previous_caps_type
- class dropbox.team_log.TeamFolderSpaceLimitsChangeCapsTypeType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.TeamFolderSpaceLimitsChangeLimitDetails(new_limit_bytes=None, previous_limit_bytes=None)
Bases:
StructChanged team folder space limit.
- Variables:
TeamFolderSpaceLimitsChangeLimitDetails.previous_limit_bytes – Previous limit in bytes.
TeamFolderSpaceLimitsChangeLimitDetails.new_limit_bytes – New limit in bytes.
- __init__(new_limit_bytes=None, previous_limit_bytes=None)
- new_limit_bytes
- previous_limit_bytes
- class dropbox.team_log.TeamFolderSpaceLimitsChangeLimitType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.TeamFolderSpaceLimitsChangeNotificationTargetDetails(new_target=None, previous_target=None)
Bases:
StructChanged team folder space limit notification target.
- Variables:
TeamFolderSpaceLimitsChangeNotificationTargetDetails.previous_target – Previous notification target.
TeamFolderSpaceLimitsChangeNotificationTargetDetails.new_target – New notification target.
- __init__(new_target=None, previous_target=None)
- new_target
- previous_target
- class dropbox.team_log.TeamFolderSpaceLimitsChangeNotificationTargetType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.TeamFoldersCreateReportDetails
Bases:
StructCreated team folders report.
- __init__()
- class dropbox.team_log.TeamFoldersCreateReportFailedDetails(failure_reason=None)
Bases:
StructCouldn’t generate team folders report.
- Variables:
TeamFoldersCreateReportFailedDetails.failure_reason – Failure reason.
- __init__(failure_reason=None)
- failure_reason
- class dropbox.team_log.TeamFoldersCreateReportFailedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.TeamFoldersCreateReportType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.TeamInviteDetails(invite_method=None, additional_license_purchase=None)
Bases:
StructDetails about team invites
- Variables:
TeamInviteDetails.invite_method – How the user was invited to the team.
TeamInviteDetails.additional_license_purchase – True if the invitation incurred an additional license purchase.
- __init__(invite_method=None, additional_license_purchase=None)
- additional_license_purchase
- invite_method
- class dropbox.team_log.TeamLinkedAppLogInfo(app_id=None, display_name=None)
Bases:
AppLogInfoTeam linked app
- __init__(app_id=None, display_name=None)
- class dropbox.team_log.TeamLogInfo(display_name=None)
Bases:
StructTeam’s logged information.
- Variables:
TeamLogInfo.display_name – Team display name.
- __init__(display_name=None)
- display_name
- class dropbox.team_log.TeamMemberLogInfo(account_id=None, display_name=None, email=None, team_member_id=None, member_external_id=None, team=None)
Bases:
UserLogInfoTeam member’s logged information.
- Variables:
TeamMemberLogInfo.team_member_id – Team member ID.
TeamMemberLogInfo.member_external_id – Team member external ID.
TeamMemberLogInfo.team – Details about this user’s team for enterprise event.
- __init__(account_id=None, display_name=None, email=None, team_member_id=None, member_external_id=None, team=None)
- member_external_id
- team
- team_member_id
- class dropbox.team_log.TeamMemberStorageRequestPolicy(tag, value=None)
Bases:
UnionPolicy for deciding whether team members can request increased storage limits from admins
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 = TeamMemberStorageRequestPolicy('default', None)
- disabled = TeamMemberStorageRequestPolicy('disabled', None)
- enabled = TeamMemberStorageRequestPolicy('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 = TeamMemberStorageRequestPolicy('other', None)
- class dropbox.team_log.TeamMemberStorageRequestPolicyChangedDetails(new_value=None, previous_value=None)
Bases:
StructChanged team member storage request policy for team.
- Variables:
TeamMemberStorageRequestPolicyChangedDetails.new_value – New team member storage request policy.
TeamMemberStorageRequestPolicyChangedDetails.previous_value – Previous team member storage request policy. Might be missing due to historical data gap.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.TeamMemberStorageRequestPolicyChangedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.TeamMembershipType(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.- free = TeamMembershipType('free', None)
- full = TeamMembershipType('full', None)
- guest = TeamMembershipType('guest', None)
- is_free()
Check if the union tag is
free.- Return type:
bool
- is_full()
Check if the union tag is
full.- Return type:
bool
- is_guest()
Check if the union tag is
guest.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- other = TeamMembershipType('other', None)
- class dropbox.team_log.TeamMergeFromDetails(team_name=None)
Bases:
StructMerged another team into this team.
- Variables:
TeamMergeFromDetails.team_name – The name of the team that was merged into this team.
- __init__(team_name=None)
- team_name
- class dropbox.team_log.TeamMergeFromType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.TeamMergeRequestAcceptedDetails(request_accepted_details=None)
Bases:
StructAccepted a team merge request.
- Variables:
TeamMergeRequestAcceptedDetails.request_accepted_details – Team merge request acceptance details.
- __init__(request_accepted_details=None)
- request_accepted_details
- class dropbox.team_log.TeamMergeRequestAcceptedExtraDetails(tag, value=None)
Bases:
UnionTeam merge request acceptance 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:
TeamMergeRequestAcceptedExtraDetails.primary_team (PrimaryTeamRequestAcceptedDetails) – Team merge request accepted details shown to the primary team
TeamMergeRequestAcceptedExtraDetails.secondary_team (SecondaryTeamRequestAcceptedDetails) – Team merge request accepted details shown to the secondary team
- get_primary_team()
Team merge request accepted details shown to the primary team
Only call this if
is_primary_team()is true.- Return type:
- get_secondary_team()
Team merge request accepted details shown to the secondary team
Only call this if
is_secondary_team()is true.- Return type:
- is_other()
Check if the union tag is
other.- Return type:
bool
- is_primary_team()
Check if the union tag is
primary_team.- Return type:
bool
- is_secondary_team()
Check if the union tag is
secondary_team.- Return type:
bool
- other = TeamMergeRequestAcceptedExtraDetails('other', None)
- classmethod primary_team(val)
Create an instance of this class set to the
primary_teamtag with valueval.- Parameters:
- Return type:
- classmethod secondary_team(val)
Create an instance of this class set to the
secondary_teamtag with valueval.- Parameters:
- Return type:
- class dropbox.team_log.TeamMergeRequestAcceptedShownToPrimaryTeamDetails(secondary_team=None, sent_by=None)
Bases:
StructAccepted a team merge request.
- Variables:
TeamMergeRequestAcceptedShownToPrimaryTeamDetails.secondary_team – The secondary team name.
TeamMergeRequestAcceptedShownToPrimaryTeamDetails.sent_by – The name of the secondary team admin who sent the request originally.
- __init__(secondary_team=None, sent_by=None)
- secondary_team
- sent_by
- class dropbox.team_log.TeamMergeRequestAcceptedShownToPrimaryTeamType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.TeamMergeRequestAcceptedShownToSecondaryTeamDetails(primary_team=None, sent_by=None)
Bases:
StructAccepted a team merge request.
- Variables:
TeamMergeRequestAcceptedShownToSecondaryTeamDetails.primary_team – The primary team name.
TeamMergeRequestAcceptedShownToSecondaryTeamDetails.sent_by – The name of the secondary team admin who sent the request originally.
- __init__(primary_team=None, sent_by=None)
- primary_team
- sent_by
- class dropbox.team_log.TeamMergeRequestAcceptedShownToSecondaryTeamType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.TeamMergeRequestAcceptedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.TeamMergeRequestAutoCanceledDetails(details=None)
Bases:
StructAutomatically canceled team merge request.
- Variables:
TeamMergeRequestAutoCanceledDetails.details – The cancellation reason.
- __init__(details=None)
- details
- class dropbox.team_log.TeamMergeRequestAutoCanceledType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.TeamMergeRequestCanceledDetails(request_canceled_details=None)
Bases:
StructCanceled a team merge request.
- Variables:
TeamMergeRequestCanceledDetails.request_canceled_details – Team merge request cancellation details.
- __init__(request_canceled_details=None)
- request_canceled_details
- class dropbox.team_log.TeamMergeRequestCanceledExtraDetails(tag, value=None)
Bases:
UnionTeam merge request cancellation 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:
TeamMergeRequestCanceledExtraDetails.primary_team (PrimaryTeamRequestCanceledDetails) – Team merge request cancellation details shown to the primary team
TeamMergeRequestCanceledExtraDetails.secondary_team (SecondaryTeamRequestCanceledDetails) – Team merge request cancellation details shown to the secondary team
- get_primary_team()
Team merge request cancellation details shown to the primary team
Only call this if
is_primary_team()is true.- Return type:
- get_secondary_team()
Team merge request cancellation details shown to the secondary team
Only call this if
is_secondary_team()is true.- Return type:
- is_other()
Check if the union tag is
other.- Return type:
bool
- is_primary_team()
Check if the union tag is
primary_team.- Return type:
bool
- is_secondary_team()
Check if the union tag is
secondary_team.- Return type:
bool
- other = TeamMergeRequestCanceledExtraDetails('other', None)
- classmethod primary_team(val)
Create an instance of this class set to the
primary_teamtag with valueval.- Parameters:
- Return type:
- classmethod secondary_team(val)
Create an instance of this class set to the
secondary_teamtag with valueval.- Parameters:
- Return type:
- class dropbox.team_log.TeamMergeRequestCanceledShownToPrimaryTeamDetails(secondary_team=None, sent_by=None)
Bases:
StructCanceled a team merge request.
- Variables:
TeamMergeRequestCanceledShownToPrimaryTeamDetails.secondary_team – The secondary team name.
TeamMergeRequestCanceledShownToPrimaryTeamDetails.sent_by – The name of the secondary team admin who sent the request originally.
- __init__(secondary_team=None, sent_by=None)
- secondary_team
- sent_by
- class dropbox.team_log.TeamMergeRequestCanceledShownToPrimaryTeamType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.TeamMergeRequestCanceledShownToSecondaryTeamDetails(sent_to=None, sent_by=None)
Bases:
StructCanceled a team merge request.
- Variables:
TeamMergeRequestCanceledShownToSecondaryTeamDetails.sent_to – The email of the primary team admin that the request was sent to.
TeamMergeRequestCanceledShownToSecondaryTeamDetails.sent_by – The name of the secondary team admin who sent the request originally.
- __init__(sent_to=None, sent_by=None)
- sent_by
- sent_to
- class dropbox.team_log.TeamMergeRequestCanceledShownToSecondaryTeamType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.TeamMergeRequestCanceledType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.TeamMergeRequestExpiredDetails(request_expired_details=None)
Bases:
StructTeam merge request expired.
- Variables:
TeamMergeRequestExpiredDetails.request_expired_details – Team merge request expiration details.
- __init__(request_expired_details=None)
- request_expired_details
- class dropbox.team_log.TeamMergeRequestExpiredExtraDetails(tag, value=None)
Bases:
UnionTeam merge request expiration 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:
TeamMergeRequestExpiredExtraDetails.primary_team (PrimaryTeamRequestExpiredDetails) – Team merge request canceled details shown to the primary team
TeamMergeRequestExpiredExtraDetails.secondary_team (SecondaryTeamRequestExpiredDetails) – Team merge request canceled details shown to the secondary team
- get_primary_team()
Team merge request canceled details shown to the primary team
Only call this if
is_primary_team()is true.- Return type:
- get_secondary_team()
Team merge request canceled details shown to the secondary team
Only call this if
is_secondary_team()is true.- Return type:
- is_other()
Check if the union tag is
other.- Return type:
bool
- is_primary_team()
Check if the union tag is
primary_team.- Return type:
bool
- is_secondary_team()
Check if the union tag is
secondary_team.- Return type:
bool
- other = TeamMergeRequestExpiredExtraDetails('other', None)
- classmethod primary_team(val)
Create an instance of this class set to the
primary_teamtag with valueval.- Parameters:
- Return type:
- classmethod secondary_team(val)
Create an instance of this class set to the
secondary_teamtag with valueval.- Parameters:
- Return type:
- class dropbox.team_log.TeamMergeRequestExpiredShownToPrimaryTeamDetails(secondary_team=None, sent_by=None)
Bases:
StructTeam merge request expired.
- Variables:
TeamMergeRequestExpiredShownToPrimaryTeamDetails.secondary_team – The secondary team name.
TeamMergeRequestExpiredShownToPrimaryTeamDetails.sent_by – The name of the secondary team admin who sent the request originally.
- __init__(secondary_team=None, sent_by=None)
- secondary_team
- sent_by
- class dropbox.team_log.TeamMergeRequestExpiredShownToPrimaryTeamType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.TeamMergeRequestExpiredShownToSecondaryTeamDetails(sent_to=None)
Bases:
StructTeam merge request expired.
- Variables:
TeamMergeRequestExpiredShownToSecondaryTeamDetails.sent_to – The email of the primary team admin the request was sent to.
- __init__(sent_to=None)
- sent_to
- class dropbox.team_log.TeamMergeRequestExpiredShownToSecondaryTeamType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.TeamMergeRequestExpiredType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.TeamMergeRequestRejectedShownToPrimaryTeamDetails(secondary_team=None, sent_by=None)
Bases:
StructRejected a team merge request.
- Variables:
TeamMergeRequestRejectedShownToPrimaryTeamDetails.secondary_team – The secondary team name.
TeamMergeRequestRejectedShownToPrimaryTeamDetails.sent_by – The name of the secondary team admin who sent the request originally.
- __init__(secondary_team=None, sent_by=None)
- secondary_team
- sent_by
- class dropbox.team_log.TeamMergeRequestRejectedShownToPrimaryTeamType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.TeamMergeRequestRejectedShownToSecondaryTeamDetails(sent_by=None)
Bases:
StructRejected a team merge request.
- Variables:
TeamMergeRequestRejectedShownToSecondaryTeamDetails.sent_by – The name of the secondary team admin who sent the request originally.
- __init__(sent_by=None)
- sent_by
- class dropbox.team_log.TeamMergeRequestRejectedShownToSecondaryTeamType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.TeamMergeRequestReminderDetails(request_reminder_details=None)
Bases:
StructSent a team merge request reminder.
- Variables:
TeamMergeRequestReminderDetails.request_reminder_details – Team merge request reminder details.
- __init__(request_reminder_details=None)
- request_reminder_details
- class dropbox.team_log.TeamMergeRequestReminderExtraDetails(tag, value=None)
Bases:
UnionTeam merge request reminder 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:
TeamMergeRequestReminderExtraDetails.primary_team (PrimaryTeamRequestReminderDetails) – Team merge request reminder details shown to the primary team
TeamMergeRequestReminderExtraDetails.secondary_team (SecondaryTeamRequestReminderDetails) – Team merge request reminder details shown to the secondary team
- get_primary_team()
Team merge request reminder details shown to the primary team
Only call this if
is_primary_team()is true.- Return type:
- get_secondary_team()
Team merge request reminder details shown to the secondary team
Only call this if
is_secondary_team()is true.- Return type:
- is_other()
Check if the union tag is
other.- Return type:
bool
- is_primary_team()
Check if the union tag is
primary_team.- Return type:
bool
- is_secondary_team()
Check if the union tag is
secondary_team.- Return type:
bool
- other = TeamMergeRequestReminderExtraDetails('other', None)
- classmethod primary_team(val)
Create an instance of this class set to the
primary_teamtag with valueval.- Parameters:
- Return type:
- classmethod secondary_team(val)
Create an instance of this class set to the
secondary_teamtag with valueval.- Parameters:
- Return type:
- class dropbox.team_log.TeamMergeRequestReminderShownToPrimaryTeamDetails(secondary_team=None, sent_to=None)
Bases:
StructSent a team merge request reminder.
- Variables:
TeamMergeRequestReminderShownToPrimaryTeamDetails.secondary_team – The secondary team name.
TeamMergeRequestReminderShownToPrimaryTeamDetails.sent_to – The name of the primary team admin the request was sent to.
- __init__(secondary_team=None, sent_to=None)
- secondary_team
- sent_to
- class dropbox.team_log.TeamMergeRequestReminderShownToPrimaryTeamType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.TeamMergeRequestReminderShownToSecondaryTeamDetails(sent_to=None)
Bases:
StructSent a team merge request reminder.
- Variables:
TeamMergeRequestReminderShownToSecondaryTeamDetails.sent_to – The email of the primary team admin the request was sent to.
- __init__(sent_to=None)
- sent_to
- class dropbox.team_log.TeamMergeRequestReminderShownToSecondaryTeamType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.TeamMergeRequestReminderType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.TeamMergeRequestRevokedDetails(team=None)
Bases:
StructCanceled the team merge.
- Variables:
TeamMergeRequestRevokedDetails.team – The name of the other team.
- __init__(team=None)
- team
- class dropbox.team_log.TeamMergeRequestRevokedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.TeamMergeRequestSentShownToPrimaryTeamDetails(secondary_team=None, sent_to=None)
Bases:
StructRequested to merge their Dropbox team into yours.
- Variables:
TeamMergeRequestSentShownToPrimaryTeamDetails.secondary_team – The secondary team name.
TeamMergeRequestSentShownToPrimaryTeamDetails.sent_to – The name of the primary team admin the request was sent to.
- __init__(secondary_team=None, sent_to=None)
- secondary_team
- sent_to
- class dropbox.team_log.TeamMergeRequestSentShownToPrimaryTeamType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.TeamMergeRequestSentShownToSecondaryTeamDetails(sent_to=None)
Bases:
StructRequested to merge your team into another Dropbox team.
- Variables:
TeamMergeRequestSentShownToSecondaryTeamDetails.sent_to – The email of the primary team admin the request was sent to.
- __init__(sent_to=None)
- sent_to
- class dropbox.team_log.TeamMergeRequestSentShownToSecondaryTeamType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.TeamMergeToDetails(team_name=None)
Bases:
StructMerged this team into another team.
- Variables:
TeamMergeToDetails.team_name – The name of the team that this team was merged into.
- __init__(team_name=None)
- team_name
- class dropbox.team_log.TeamMergeToType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.TeamName(team_display_name=None, team_legal_name=None)
Bases:
StructTeam name details
- Variables:
TeamName.team_display_name – Team’s display name.
TeamName.team_legal_name – Team’s legal name.
- __init__(team_display_name=None, team_legal_name=None)
- team_display_name
- team_legal_name
- class dropbox.team_log.TeamProfileAddBackgroundDetails
Bases:
StructAdded team background to display on shared link headers.
- __init__()
- class dropbox.team_log.TeamProfileAddBackgroundType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.TeamProfileAddLogoDetails
Bases:
StructAdded team logo to display on shared link headers.
- __init__()
- class dropbox.team_log.TeamProfileAddLogoType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.TeamProfileChangeBackgroundDetails
Bases:
StructChanged team background displayed on shared link headers.
- __init__()
- class dropbox.team_log.TeamProfileChangeBackgroundType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.TeamProfileChangeDefaultLanguageDetails(new_value=None, previous_value=None)
Bases:
StructChanged default language for team.
- Variables:
TeamProfileChangeDefaultLanguageDetails.new_value – New team’s default language.
TeamProfileChangeDefaultLanguageDetails.previous_value – Previous team’s default language.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.TeamProfileChangeDefaultLanguageType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.TeamProfileChangeLogoDetails
Bases:
StructChanged team logo displayed on shared link headers.
- __init__()
- class dropbox.team_log.TeamProfileChangeLogoType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.TeamProfileChangeNameDetails(new_value=None, previous_value=None)
Bases:
StructChanged team name.
- Variables:
TeamProfileChangeNameDetails.previous_value – Previous teams name. Might be missing due to historical data gap.
TeamProfileChangeNameDetails.new_value – New team name.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.TeamProfileChangeNameType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.TeamProfileRemoveBackgroundDetails
Bases:
StructRemoved team background displayed on shared link headers.
- __init__()
- class dropbox.team_log.TeamProfileRemoveBackgroundType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.TeamProfileRemoveLogoDetails
Bases:
StructRemoved team logo displayed on shared link headers.
- __init__()
- class dropbox.team_log.TeamProfileRemoveLogoType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.TeamSelectiveSyncPolicy(tag, value=None)
Bases:
UnionPolicy for controlling whether team selective sync is enabled for 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.- disabled = TeamSelectiveSyncPolicy('disabled', None)
- enabled = TeamSelectiveSyncPolicy('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 = TeamSelectiveSyncPolicy('other', None)
- class dropbox.team_log.TeamSelectiveSyncPolicyChangedDetails(new_value=None, previous_value=None)
Bases:
StructEnabled/disabled Team Selective Sync for team.
- Variables:
TeamSelectiveSyncPolicyChangedDetails.new_value – New Team Selective Sync policy.
TeamSelectiveSyncPolicyChangedDetails.previous_value – Previous Team Selective Sync policy.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.TeamSelectiveSyncPolicyChangedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.TeamSelectiveSyncSettingsChangedDetails(previous_value=None, new_value=None)
Bases:
StructChanged sync default.
- Variables:
TeamSelectiveSyncSettingsChangedDetails.previous_value – Previous value.
TeamSelectiveSyncSettingsChangedDetails.new_value – New value.
- __init__(previous_value=None, new_value=None)
- new_value
- previous_value
- class dropbox.team_log.TeamSelectiveSyncSettingsChangedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.TeamSharingWhitelistSubjectsChangedDetails(added_whitelist_subjects=None, removed_whitelist_subjects=None)
Bases:
StructEdited the approved list for sharing externally.
- Variables:
TeamSharingWhitelistSubjectsChangedDetails.added_whitelist_subjects – Domains or emails added to the approved list for sharing externally.
TeamSharingWhitelistSubjectsChangedDetails.removed_whitelist_subjects – Domains or emails removed from the approved list for sharing externally.
- __init__(added_whitelist_subjects=None, removed_whitelist_subjects=None)
- added_whitelist_subjects
- removed_whitelist_subjects
- class dropbox.team_log.TeamSharingWhitelistSubjectsChangedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.TeamStorageCreateReportDetails
Bases:
StructCreated team storage report.
- __init__()
- class dropbox.team_log.TeamStorageCreateReportFailedDetails(failure_reason=None)
Bases:
StructCouldn’t generate team storage report.
- Variables:
TeamStorageCreateReportFailedDetails.failure_reason – Failure reason.
- __init__(failure_reason=None)
- failure_reason
- class dropbox.team_log.TeamStorageCreateReportFailedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.TeamStorageCreateReportType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.TfaAddBackupPhoneDetails
Bases:
StructAdded backup phone for two-factor authentication.
- __init__()
- class dropbox.team_log.TfaAddBackupPhoneType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.TfaAddExceptionDetails
Bases:
StructAdded members to two factor authentication exception list.
- __init__()
- class dropbox.team_log.TfaAddExceptionType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.TfaAddSecurityKeyDetails
Bases:
StructAdded security key for two-factor authentication.
- __init__()
- class dropbox.team_log.TfaAddSecurityKeyType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.TfaChangeBackupPhoneDetails
Bases:
StructChanged backup phone for two-factor authentication.
- __init__()
- class dropbox.team_log.TfaChangeBackupPhoneType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.TfaChangePolicyDetails(new_value=None, previous_value=None)
Bases:
StructChanged two-factor authentication setting for team.
- Variables:
TfaChangePolicyDetails.new_value – New change policy.
TfaChangePolicyDetails.previous_value – Previous change policy. Might be missing due to historical data gap.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.TfaChangePolicyType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.TfaChangeStatusDetails(new_value=None, previous_value=None, used_rescue_code=None)
Bases:
StructEnabled/disabled/changed two-factor authentication setting.
- Variables:
TfaChangeStatusDetails.new_value – The new two factor authentication configuration.
TfaChangeStatusDetails.previous_value – The previous two factor authentication configuration. Might be missing due to historical data gap.
TfaChangeStatusDetails.used_rescue_code – Used two factor authentication rescue code. This flag is relevant when the two factor authentication configuration is disabled.
- __init__(new_value=None, previous_value=None, used_rescue_code=None)
- new_value
- previous_value
- used_rescue_code
- class dropbox.team_log.TfaChangeStatusType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.TfaConfiguration(tag, value=None)
Bases:
UnionTwo factor authentication configuration. Note: the enabled option is deprecated.
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.- authenticator = TfaConfiguration('authenticator', None)
- disabled = TfaConfiguration('disabled', None)
- enabled = TfaConfiguration('enabled', None)
- is_authenticator()
Check if the union tag is
authenticator.- 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
- is_sms()
Check if the union tag is
sms.- Return type:
bool
- other = TfaConfiguration('other', None)
- sms = TfaConfiguration('sms', None)
- class dropbox.team_log.TfaRemoveBackupPhoneDetails
Bases:
StructRemoved backup phone for two-factor authentication.
- __init__()
- class dropbox.team_log.TfaRemoveBackupPhoneType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.TfaRemoveExceptionDetails
Bases:
StructRemoved members from two factor authentication exception list.
- __init__()
- class dropbox.team_log.TfaRemoveExceptionType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.TfaRemoveSecurityKeyDetails
Bases:
StructRemoved security key for two-factor authentication.
- __init__()
- class dropbox.team_log.TfaRemoveSecurityKeyType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.TfaResetDetails
Bases:
StructReset two-factor authentication for team member.
- __init__()
- class dropbox.team_log.TfaResetType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.TimeUnit(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.- days = TimeUnit('days', None)
- hours = TimeUnit('hours', None)
- is_days()
Check if the union tag is
days.- Return type:
bool
- is_hours()
Check if the union tag is
hours.- Return type:
bool
- is_milliseconds()
Check if the union tag is
milliseconds.- Return type:
bool
- is_minutes()
Check if the union tag is
minutes.- Return type:
bool
- is_months()
Check if the union tag is
months.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- is_seconds()
Check if the union tag is
seconds.- Return type:
bool
- is_weeks()
Check if the union tag is
weeks.- Return type:
bool
- is_years()
Check if the union tag is
years.- Return type:
bool
- milliseconds = TimeUnit('milliseconds', None)
- minutes = TimeUnit('minutes', None)
- months = TimeUnit('months', None)
- other = TimeUnit('other', None)
- seconds = TimeUnit('seconds', None)
- weeks = TimeUnit('weeks', None)
- years = TimeUnit('years', None)
- class dropbox.team_log.TopLevelContentPolicy(tag, value=None)
Bases:
UnionPolicy for deciding whether members can edit team folders at the top level of the 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.- admins_only = TopLevelContentPolicy('admins_only', None)
- everyone = TopLevelContentPolicy('everyone', None)
- is_admins_only()
Check if the union tag is
admins_only.- Return type:
bool
- is_everyone()
Check if the union tag is
everyone.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- other = TopLevelContentPolicy('other', None)
- class dropbox.team_log.TopLevelContentPolicyChangedDetails(new_value=None, previous_value=None)
Bases:
StructChanged top level content setting for team.
- Variables:
TopLevelContentPolicyChangedDetails.new_value – To.
TopLevelContentPolicyChangedDetails.previous_value – From.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.TopLevelContentPolicyChangedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.TrustedNonTeamMemberLogInfo(trusted_non_team_member_type=None, account_id=None, display_name=None, email=None, team=None)
Bases:
UserLogInfoUser that is not a member of the team but considered trusted.
- Variables:
TrustedNonTeamMemberLogInfo.trusted_non_team_member_type – Indicates the type of the member of a trusted team.
TrustedNonTeamMemberLogInfo.team – Details about this user’s trusted team.
- __init__(trusted_non_team_member_type=None, account_id=None, display_name=None, email=None, team=None)
- team
- trusted_non_team_member_type
- class dropbox.team_log.TrustedNonTeamMemberType(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.- enterprise_admin = TrustedNonTeamMemberType('enterprise_admin', None)
- is_enterprise_admin()
Check if the union tag is
enterprise_admin.- Return type:
bool
- is_multi_instance_admin()
Check if the union tag is
multi_instance_admin.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- multi_instance_admin = TrustedNonTeamMemberType('multi_instance_admin', None)
- other = TrustedNonTeamMemberType('other', None)
- class dropbox.team_log.TrustedTeamsRequestAction(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.- accepted = TrustedTeamsRequestAction('accepted', None)
- declined = TrustedTeamsRequestAction('declined', None)
- expired = TrustedTeamsRequestAction('expired', None)
- invited = TrustedTeamsRequestAction('invited', None)
- is_accepted()
Check if the union tag is
accepted.- Return type:
bool
- is_declined()
Check if the union tag is
declined.- Return type:
bool
- is_expired()
Check if the union tag is
expired.- Return type:
bool
- 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_revoked()
Check if the union tag is
revoked.- Return type:
bool
- other = TrustedTeamsRequestAction('other', None)
- revoked = TrustedTeamsRequestAction('revoked', None)
- class dropbox.team_log.TrustedTeamsRequestState(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.- invited = TrustedTeamsRequestState('invited', None)
- is_invited()
Check if the union tag is
invited.- Return type:
bool
- is_linked()
Check if the union tag is
linked.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- is_unlinked()
Check if the union tag is
unlinked.- Return type:
bool
- linked = TrustedTeamsRequestState('linked', None)
- other = TrustedTeamsRequestState('other', None)
- unlinked = TrustedTeamsRequestState('unlinked', None)
- class dropbox.team_log.TwoAccountChangePolicyDetails(new_value=None, previous_value=None)
Bases:
StructEnabled/disabled option for members to link personal Dropbox account and team account to same computer.
- Variables:
TwoAccountChangePolicyDetails.new_value – New two account policy.
TwoAccountChangePolicyDetails.previous_value – Previous two account policy. Might be missing due to historical data gap.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.TwoAccountChangePolicyType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.TwoAccountPolicy(tag, value=None)
Bases:
UnionPolicy for pairing personal account to work account
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 = TwoAccountPolicy('disabled', None)
- enabled = TwoAccountPolicy('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 = TwoAccountPolicy('other', None)
- class dropbox.team_log.UndoNamingConventionDetails
Bases:
StructReverted naming convention.
- __init__()
- class dropbox.team_log.UndoNamingConventionType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.UndoOrganizeFolderWithTidyDetails
Bases:
StructRemoved multi-file organize.
- __init__()
- class dropbox.team_log.UndoOrganizeFolderWithTidyType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.UserLinkedAppLogInfo(app_id=None, display_name=None)
Bases:
AppLogInfoUser linked app
- __init__(app_id=None, display_name=None)
- class dropbox.team_log.UserLogInfo(account_id=None, display_name=None, email=None)
Bases:
StructUser’s logged information.
- Variables:
UserLogInfo.account_id – User unique ID.
UserLogInfo.display_name – User display name.
UserLogInfo.email – User email address.
- __init__(account_id=None, display_name=None, email=None)
- account_id
- display_name
- email
- class dropbox.team_log.UserNameLogInfo(given_name=None, surname=None, locale=None)
Bases:
StructUser’s name logged information
- Variables:
UserNameLogInfo.given_name – Given name.
UserNameLogInfo.surname – Surname.
UserNameLogInfo.locale – Locale. Might be missing due to historical data gap.
- __init__(given_name=None, surname=None, locale=None)
- given_name
- locale
- surname
- class dropbox.team_log.UserOrTeamLinkedAppLogInfo(app_id=None, display_name=None)
Bases:
AppLogInfoUser or team linked app. Used when linked type is missing due to historical data gap.
- __init__(app_id=None, display_name=None)
- class dropbox.team_log.UserTagsAddedDetails(values=None)
Bases:
StructTagged a file.
- Variables:
UserTagsAddedDetails.values – values.
- __init__(values=None)
- values
- class dropbox.team_log.UserTagsAddedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.UserTagsRemovedDetails(values=None)
Bases:
StructRemoved tags.
- Variables:
UserTagsRemovedDetails.values – values.
- __init__(values=None)
- values
- class dropbox.team_log.UserTagsRemovedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.ViewerInfoPolicyChangedDetails(previous_value=None, new_value=None)
Bases:
StructChanged team policy for viewer info.
- Variables:
ViewerInfoPolicyChangedDetails.previous_value – Previous Viewer Info policy.
ViewerInfoPolicyChangedDetails.new_value – New Viewer Info policy.
- __init__(previous_value=None, new_value=None)
- new_value
- previous_value
- class dropbox.team_log.ViewerInfoPolicyChangedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.WatermarkingPolicy(tag, value=None)
Bases:
UnionPolicy for controlling team access to watermarking 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 = WatermarkingPolicy('disabled', None)
- enabled = WatermarkingPolicy('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 = WatermarkingPolicy('other', None)
- class dropbox.team_log.WatermarkingPolicyChangedDetails(new_value=None, previous_value=None)
Bases:
StructChanged watermarking policy for team.
- Variables:
WatermarkingPolicyChangedDetails.new_value – New watermarking policy.
WatermarkingPolicyChangedDetails.previous_value – Previous watermarking policy.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.WatermarkingPolicyChangedType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.WebDeviceSessionLogInfo(user_agent=None, os=None, browser=None, ip_address=None, created=None, updated=None, session_info=None)
Bases:
DeviceSessionLogInfoInformation on active web sessions
- Variables:
WebDeviceSessionLogInfo.session_info – Web session unique id.
WebDeviceSessionLogInfo.user_agent – Information on the hosting device.
WebDeviceSessionLogInfo.os – Information on the hosting operating system.
WebDeviceSessionLogInfo.browser – Information on the browser used for this web session.
- __init__(user_agent=None, os=None, browser=None, ip_address=None, created=None, updated=None, session_info=None)
- browser
- os
- session_info
- user_agent
- class dropbox.team_log.WebSessionLogInfo(session_id=None)
Bases:
SessionLogInfoWeb session.
- __init__(session_id=None)
- class dropbox.team_log.WebSessionsChangeActiveSessionLimitDetails(previous_value=None, new_value=None)
Bases:
StructChanged limit on active sessions per member.
- Variables:
WebSessionsChangeActiveSessionLimitDetails.previous_value – Previous max number of concurrent active sessions policy.
WebSessionsChangeActiveSessionLimitDetails.new_value – New max number of concurrent active sessions policy.
- __init__(previous_value=None, new_value=None)
- new_value
- previous_value
- class dropbox.team_log.WebSessionsChangeActiveSessionLimitType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.WebSessionsChangeFixedLengthPolicyDetails(new_value=None, previous_value=None)
Bases:
StructChanged how long members can stay signed in to Dropbox.com.
- Variables:
WebSessionsChangeFixedLengthPolicyDetails.new_value – New session length policy. Might be missing due to historical data gap.
WebSessionsChangeFixedLengthPolicyDetails.previous_value – Previous session length policy. Might be missing due to historical data gap.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.WebSessionsChangeFixedLengthPolicyType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.WebSessionsChangeIdleLengthPolicyDetails(new_value=None, previous_value=None)
Bases:
StructChanged how long team members can be idle while signed in to Dropbox.com.
- Variables:
WebSessionsChangeIdleLengthPolicyDetails.new_value – New idle length policy. Might be missing due to historical data gap.
WebSessionsChangeIdleLengthPolicyDetails.previous_value – Previous idle length policy. Might be missing due to historical data gap.
- __init__(new_value=None, previous_value=None)
- new_value
- previous_value
- class dropbox.team_log.WebSessionsChangeIdleLengthPolicyType(description=None)
Bases:
Struct- __init__(description=None)
- description
- class dropbox.team_log.WebSessionsFixedLengthPolicy(tag, value=None)
Bases:
UnionWeb sessions fixed length 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.- Variables:
WebSessionsFixedLengthPolicy.defined (DurationLogInfo) – Defined fixed session length.
WebSessionsFixedLengthPolicy.undefined – Undefined fixed session length.
- classmethod defined(val)
Create an instance of this class set to the
definedtag with valueval.- Parameters:
val (DurationLogInfo)
- Return type:
- get_defined()
Defined fixed session length.
Only call this if
is_defined()is true.- Return type:
- is_defined()
Check if the union tag is
defined.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- is_undefined()
Check if the union tag is
undefined.- Return type:
bool
- other = WebSessionsFixedLengthPolicy('other', None)
- undefined = WebSessionsFixedLengthPolicy('undefined', None)
- class dropbox.team_log.WebSessionsIdleLengthPolicy(tag, value=None)
Bases:
UnionWeb sessions idle length 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.- Variables:
WebSessionsIdleLengthPolicy.defined (DurationLogInfo) – Defined idle session length.
WebSessionsIdleLengthPolicy.undefined – Undefined idle session length.
- classmethod defined(val)
Create an instance of this class set to the
definedtag with valueval.- Parameters:
val (DurationLogInfo)
- Return type:
- get_defined()
Defined idle session length.
Only call this if
is_defined()is true.- Return type:
- is_defined()
Check if the union tag is
defined.- Return type:
bool
- is_other()
Check if the union tag is
other.- Return type:
bool
- is_undefined()
Check if the union tag is
undefined.- Return type:
bool
- other = WebSessionsIdleLengthPolicy('other', None)
- undefined = WebSessionsIdleLengthPolicy('undefined', None)