dropbox.team_log – Team Log

class dropbox.team_log.AccessMethodLogInfo(tag, value=None)

Bases: Union

Indicates 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 corresponding get_* 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_console tag with value val.

Parameters:

val (WebSessionLogInfo)

Return type:

AccessMethodLogInfo

classmethod api(val)

Create an instance of this class set to the api tag with value val.

Parameters:

val (ApiSessionLogInfo)

Return type:

AccessMethodLogInfo

classmethod content_manager(val)

Create an instance of this class set to the content_manager tag with value val.

Parameters:

val (WebSessionLogInfo)

Return type:

AccessMethodLogInfo

classmethod end_user(val)

Create an instance of this class set to the end_user tag with value val.

Parameters:

val (SessionLogInfo)

Return type:

AccessMethodLogInfo

classmethod enterprise_console(val)

Create an instance of this class set to the enterprise_console tag with value val.

Parameters:

val (WebSessionLogInfo)

Return type:

AccessMethodLogInfo

get_admin_console()

Admin console session details.

Only call this if is_admin_console() is true.

Return type:

WebSessionLogInfo

get_api()

Api session details.

Only call this if is_api() is true.

Return type:

ApiSessionLogInfo

get_content_manager()

Content manager session details.

Only call this if is_content_manager() is true.

Return type:

WebSessionLogInfo

get_end_user()

End user session details.

Only call this if is_end_user() is true.

Return type:

SessionLogInfo

get_enterprise_console()

Enterprise console session details.

Only call this if is_enterprise_console() is true.

Return type:

WebSessionLogInfo

get_sign_in_as()

Sign in as session details.

Only call this if is_sign_in_as() is true.

Return type:

WebSessionLogInfo

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_as tag with value val.

Parameters:

val (WebSessionLogInfo)

Return type:

AccessMethodLogInfo

class dropbox.team_log.AccountCaptureAvailability(tag, value=None)

Bases: Union

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 corresponding get_* 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

is_unavailable()

Check if the union tag is unavailable.

Return type:

bool

other = AccountCaptureAvailability('other', None)
unavailable = AccountCaptureAvailability('unavailable', None)
class dropbox.team_log.AccountCaptureChangeAvailabilityDetails(new_value=None, previous_value=None)

Bases: Struct

Granted/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: Struct

Changed 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: Struct

Account-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: Struct

Sent 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: Union

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 corresponding get_* 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: Union

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 corresponding get_* 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: Struct

Account-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: Struct

Unlocked/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: Union

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 corresponding get_* 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: Union

Additional 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 corresponding get_* 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:

MemberRemoveActionType

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:

TeamInviteDetails

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:

JoinTeamDetails

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_action tag with value val.

Parameters:

val (MemberRemoveActionType)

Return type:

ActionDetails

classmethod team_invite_details(val)

Create an instance of this class set to the team_invite_details tag with value val.

Parameters:

val (TeamInviteDetails)

Return type:

ActionDetails

classmethod team_join_details(val)

Create an instance of this class set to the team_join_details tag with value val.

Parameters:

val (JoinTeamDetails)

Return type:

ActionDetails

class dropbox.team_log.ActorLogInfo(tag, value=None)

Bases: Union

The 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 corresponding get_* 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 admin tag with value val.

Parameters:

val (UserLogInfo)

Return type:

ActorLogInfo

anonymous = ActorLogInfo('anonymous', None)
classmethod app(val)

Create an instance of this class set to the app tag with value val.

Parameters:

val (AppLogInfo)

Return type:

ActorLogInfo

dropbox = ActorLogInfo('dropbox', None)
get_admin()

The admin who did the action.

Only call this if is_admin() is true.

Return type:

UserLogInfo

get_app()

The application who did the action.

Only call this if is_app() is true.

Return type:

AppLogInfo

get_reseller()

Action done by reseller.

Only call this if is_reseller() is true.

Return type:

ResellerLogInfo

get_user()

The user who did the action.

Only call this if is_user() is true.

Return type:

UserLogInfo

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 reseller tag with value val.

Parameters:

val (ResellerLogInfo)

Return type:

ActorLogInfo

classmethod user(val)

Create an instance of this class set to the user tag with value val.

Parameters:

val (UserLogInfo)

Return type:

ActorLogInfo

class dropbox.team_log.AddonAssignedDetails(user_name=None, addon_name=None)

Bases: Struct

Add-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: Struct

Add-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: Struct

Add-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: Union

Alert 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 corresponding get_* 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: Union

Alert 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 corresponding get_* 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: Union

Alert 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 corresponding get_* 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: Struct

Alert 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: Union

Alert 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 corresponding get_* 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: Struct

Changed 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: Union

Policy 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 corresponding get_* 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: Struct

Changed 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: Struct

Triggered 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: Union

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 corresponding get_* 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: Union

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 corresponding get_* 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: Struct

Changed 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: Union

Policy 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 corresponding get_* 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: Union

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 corresponding get_* 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: Union

Policy 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 corresponding get_* 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: Struct

Changed 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: Union

Alert 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 corresponding get_* 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.AllowDownloadDisabledDetails

Bases: Struct

Disabled downloads.

__init__()
class dropbox.team_log.AllowDownloadDisabledType(description=None)

Bases: Struct

__init__(description=None)
description
class dropbox.team_log.AllowDownloadEnabledDetails

Bases: Struct

Enabled downloads.

__init__()
class dropbox.team_log.AllowDownloadEnabledType(description=None)

Bases: Struct

__init__(description=None)
description
class dropbox.team_log.ApiSessionLogInfo(request_id=None)

Bases: Struct

Api session.

Variables:

ApiSessionLogInfo.request_id – Api request ID.

__init__(request_id=None)
request_id
class dropbox.team_log.AppBlockedByPermissionsDetails(app_info=None)

Bases: Struct

Failed 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: Struct

Linked 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: Struct

Linked 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: Struct

App’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: Struct

Changed 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: Struct

Unlinked 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: Struct

Unlinked 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: Struct

Enabled/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: Union

Apple 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 corresponding get_* 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: Struct

Applied 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: Union

Asset 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 corresponding get_* method.

Variables:
classmethod file(val)

Create an instance of this class set to the file tag with value val.

Parameters:

val (FileLogInfo)

Return type:

AssetLogInfo

classmethod folder(val)

Create an instance of this class set to the folder tag with value val.

Parameters:

val (FolderLogInfo)

Return type:

AssetLogInfo

get_file()

File’s details.

Only call this if is_file() is true.

Return type:

FileLogInfo

get_folder()

Folder’s details.

Only call this if is_folder() is true.

Return type:

FolderLogInfo

get_paper_document()

Paper document’s details.

Only call this if is_paper_document() is true.

Return type:

PaperDocumentLogInfo

get_paper_folder()

Paper folder’s details.

Only call this if is_paper_folder() is true.

Return type:

PaperFolderLogInfo

get_showcase_document()

Showcase document’s details.

Only call this if is_showcase_document() is true.

Return type:

ShowcaseDocumentLogInfo

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_document tag with value val.

Parameters:

val (PaperDocumentLogInfo)

Return type:

AssetLogInfo

classmethod paper_folder(val)

Create an instance of this class set to the paper_folder tag with value val.

Parameters:

val (PaperFolderLogInfo)

Return type:

AssetLogInfo

classmethod showcase_document(val)

Create an instance of this class set to the showcase_document tag with value val.

Parameters:

val (ShowcaseDocumentLogInfo)

Return type:

AssetLogInfo

class dropbox.team_log.BackupAdminInvitationSentDetails

Bases: Struct

Invited members to activate Backup.

__init__()
class dropbox.team_log.BackupAdminInvitationSentType(description=None)

Bases: Struct

__init__(description=None)
description
class dropbox.team_log.BackupInvitationOpenedDetails

Bases: Struct

Opened 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: Union

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 corresponding get_* 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: Struct

Added 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: Struct

Added 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: Struct

Removed 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: Struct

Removed 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: Struct

Renamed 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: Struct

Renamed 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: Struct

Reordered 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: Struct

Reordered 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: Union

Policy 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 corresponding get_* 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: Struct

Changed 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: Union

Policy 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 corresponding get_* 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: Struct

Changed 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: Union

Policy 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 corresponding get_* 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: Struct

Changed 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: Struct

Certificate 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: Union

Policy 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 corresponding get_* 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: Struct

Changed enterprise admin role.

Variables:
  • ChangedEnterpriseAdminRoleDetails.previous_value – The member&#x2019s previous enterprise admin role.

  • ChangedEnterpriseAdminRoleDetails.new_value – The member&#x2019s new enterprise admin role.

  • ChangedEnterpriseAdminRoleDetails.team_name – The name of the member&#x2019s 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: Struct

Changed enterprise-connected team status.

Variables:
  • ChangedEnterpriseConnectedTeamStatusDetails.action – The preformed change in the team&#x2019s 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: Struct

Changed 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: Struct

Created Classification report.

__init__()
class dropbox.team_log.ClassificationCreateReportFailDetails(failure_reason=None)

Bases: Struct

Couldn’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: Union

Policy 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 corresponding get_* 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: Union

The 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 corresponding get_* 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)
class dropbox.team_log.CollectionShareDetails(album_name=None)

Bases: Struct

Shared album.

Variables:

CollectionShareDetails.album_name – Album name.

__init__(album_name=None)
album_name
class dropbox.team_log.CollectionShareType(description=None)

Bases: Struct

__init__(description=None)
description
class dropbox.team_log.ComputerBackupPolicy(tag, value=None)

Bases: Union

Policy 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 corresponding get_* 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: Struct

Changed 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: Struct

The 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: Struct

Changed 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: Struct

Changed 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: Union

Content 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 corresponding get_* 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: Union

Policy 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 corresponding get_* 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: Union

The 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 corresponding get_* 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:

NonTeamMemberLogInfo

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:

TeamLogInfo

get_team_member()

Action was done on behalf of a team member.

Only call this if is_team_member() is true.

Return type:

TeamMemberLogInfo

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:

TrustedNonTeamMemberLogInfo

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_member tag with value val.

Parameters:

val (NonTeamMemberLogInfo)

Return type:

ContextLogInfo

classmethod organization_team(val)

Create an instance of this class set to the organization_team tag with value val.

Parameters:

val (TeamLogInfo)

Return type:

ContextLogInfo

other = ContextLogInfo('other', None)
team = ContextLogInfo('team', None)
classmethod team_member(val)

Create an instance of this class set to the team_member tag with value val.

Parameters:

val (TeamMemberLogInfo)

Return type:

ContextLogInfo

classmethod trusted_non_team_member(val)

Create an instance of this class set to the trusted_non_team_member tag with value val.

Parameters:

val (TrustedNonTeamMemberLogInfo)

Return type:

ContextLogInfo

class dropbox.team_log.CreateFolderDetails

Bases: Struct

Created folders.

__init__()
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: Struct

Created 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
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: Struct

Added 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: Struct

Connected 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: Struct

Added 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_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: Struct

Admin 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: Struct

Admin 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: Struct

Admin 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: Struct

Admin 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: Struct

Admin 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: Struct

Archived 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
class dropbox.team_log.DashChangedAudienceOfSharedLinkToStackDetails(stack_name=None, stack_type=None)

Bases: Struct

Changed 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.

__init__(stack_name=None, stack_type=None)
stack_name
stack_type
class dropbox.team_log.DashChangedAudienceOfSharedLinkToStackType(description=None)

Bases: Struct

__init__(description=None)
description
class dropbox.team_log.DashClonedStackDetails(stack_name=None, actor_email=None, new_cloned_stack_name=None, stack_type=None)

Bases: Struct

Cloned 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: Union

The 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 corresponding get_* 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: Struct

Called 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: Struct

Created 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: Struct

Deleted 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: Struct

Deleted 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: Struct

Edited 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: Union

Policy 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 corresponding get_* 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: Struct

Changed 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: Struct

External 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: Struct

Opened 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: Struct

Opened 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: Struct

Opened 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
class dropbox.team_log.DashOpenedSharedLinkToStackDetails(stack_name=None, stack_type=None)

Bases: Struct

Checked access permissions to a stack.

Variables:
  • DashOpenedSharedLinkToStackDetails.stack_name – The name of the stack.

  • DashOpenedSharedLinkToStackDetails.stack_type – The type of stack backend.

__init__(stack_name=None, stack_type=None)
stack_name
stack_type
class dropbox.team_log.DashOpenedSharedLinkToStackType(description=None)

Bases: Struct

__init__(description=None)
description
class dropbox.team_log.DashOpenedStackDetails(stack_name=None, stack_type=None)

Bases: Struct

Opened 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: Union

The 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 corresponding get_* 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: Struct

Changed 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: Struct

Disconnected 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: Struct

Removed 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_name
stack_type
class dropbox.team_log.DashRemovedLinkFromStackType(description=None)

Bases: Struct

__init__(description=None)
description
class dropbox.team_log.DashRemovedSharedLinkToStackDetails(stack_name=None, stack_type=None)

Bases: Struct

Removed a shared link to a stack.

Variables:
  • DashRemovedSharedLinkToStackDetails.stack_name – The name of the stack.

  • DashRemovedSharedLinkToStackDetails.stack_type – The type of stack backend.

__init__(stack_name=None, stack_type=None)
stack_name
stack_type
class dropbox.team_log.DashRemovedSharedLinkToStackType(description=None)

Bases: Struct

__init__(description=None)
description
class dropbox.team_log.DashRemovedTeamEmailDomainAllowlistDetails(email_domain=None)

Bases: Struct

Admin 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: Struct

Renamed 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
class dropbox.team_log.DashSharedLinkToStackDetails(stack_name=None, stack_type=None)

Bases: Struct

Shared a link to a stack.

Variables:
  • DashSharedLinkToStackDetails.stack_name – The name of the stack.

  • DashSharedLinkToStackDetails.stack_type – The type of stack backend.

__init__(stack_name=None, stack_type=None)
stack_name
stack_type
class dropbox.team_log.DashSharedLinkToStackType(description=None)

Bases: Struct

__init__(description=None)
description
class dropbox.team_log.DashStackSharingScope(tag, value=None)

Bases: Union

The 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 corresponding get_* 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: Union

The 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 corresponding get_* 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: Struct

Unarchived 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: Struct

Member 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: Struct

Admin 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: Struct

Set 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: Struct

Completed 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: Struct

Requested 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: Struct

Request 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: Union

Policy 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 corresponding get_* 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: Struct

Deleted team invite link.

Variables:

DeleteTeamInviteLinkDetails.link_url – The invite link url that was deleted.

__init__(link_url=None)
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: DeviceSessionLogInfo

Information 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
platform
session_info
class dropbox.team_log.DesktopSessionLogInfo(session_id=None)

Bases: SessionLogInfo

Desktop session.

__init__(session_id=None)
class dropbox.team_log.DeviceApprovalsAddExceptionDetails

Bases: Struct

Added 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: Struct

Set/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: Struct

Set/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: Struct

Changed 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: Struct

Changed 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: Union

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 corresponding get_* 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: Struct

Removed 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: Struct

Changed 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: Struct

Changed 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: Struct

Changed 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: Struct

Failed 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: Struct

Deleted 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: Struct

Failed 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: Struct

Linked 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: Struct

Disabled device management.

__init__()
class dropbox.team_log.DeviceManagementDisabledType(description=None)

Bases: Struct

__init__(description=None)
description
class dropbox.team_log.DeviceManagementEnabledDetails

Bases: Struct

Enabled 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: Struct

Device’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: Struct

Enabled/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: Union

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 corresponding get_* 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: Struct

Disconnected 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: Union

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 corresponding get_* 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: Struct

Added 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: Struct

Removed 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: Struct

Disabled 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: Union

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 corresponding get_* 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: Struct

Approved 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: Struct

Declined 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: Struct

Sent 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: Struct

Requested to join team.

__init__()
class dropbox.team_log.DomainInvitesRequestToJoinTeamType(description=None)

Bases: Struct

__init__(description=None)
description
class dropbox.team_log.DomainInvitesSetInviteNewUserPrefToNoDetails

Bases: Struct

Disabled “Automatically invite new users”.

__init__()
class dropbox.team_log.DomainInvitesSetInviteNewUserPrefToNoType(description=None)

Bases: Struct

__init__(description=None)
description
class dropbox.team_log.DomainInvitesSetInviteNewUserPrefToYesDetails

Bases: Struct

Enabled “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: Struct

Failed 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: Struct

Verified 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: Struct

Removed 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: Union

Shared 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 corresponding get_* 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: Struct

Exported 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: Struct

Enrolled 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: Union

Policy 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 corresponding get_* 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: Struct

Changed 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: Struct

Represents 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: Union

Policy 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 corresponding get_* 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: Struct

Changed 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: Struct

Received 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: Struct

Added 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: Struct

Enabled/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: Struct

Created EMM-excluded users report.

__init__()
class dropbox.team_log.EmmCreateExceptionsReportType(description=None)

Bases: Struct

__init__(description=None)
description
class dropbox.team_log.EmmCreateUsageReportDetails

Bases: Struct

Created 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: Struct

Failed 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: Struct

Refreshed 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: Struct

Removed 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: Struct

Enabled 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: Struct

Canceled 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: Struct

Added 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: Struct

Enrolled 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: Struct

Activated team folder encryption.

__init__()
class dropbox.team_log.EncryptedFolderEnrollTeamType(description=None)

Bases: Struct

__init__(description=None)
description
class dropbox.team_log.EncryptedFolderFinishTeamUnenrollmentDetails

Bases: Struct

Deactivated 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: Struct

Initiated 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: Struct

Initiated 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: Struct

Removed 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: Struct

Rotated 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: Struct

Unenrolled 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: Struct

Ended 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: Struct

Ended 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: Union

Policy 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 corresponding get_* 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: Struct

Changed 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: Union

Category 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 corresponding get_* 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: Union

Additional 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 corresponding get_* 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_details tag with value val.

Parameters:

val (AccountCaptureChangeAvailabilityDetails)

Return type:

EventDetails

classmethod account_capture_change_policy_details(val)

Create an instance of this class set to the account_capture_change_policy_details tag with value val.

Parameters:

val (AccountCaptureChangePolicyDetails)

Return type:

EventDetails

classmethod account_capture_migrate_account_details(val)

Create an instance of this class set to the account_capture_migrate_account_details tag with value val.

Parameters:

val (AccountCaptureMigrateAccountDetails)

Return type:

EventDetails

classmethod account_capture_notification_emails_sent_details(val)

Create an instance of this class set to the account_capture_notification_emails_sent_details tag with value val.

Parameters:

val (AccountCaptureNotificationEmailsSentDetails)

Return type:

EventDetails

classmethod account_capture_relinquish_account_details(val)

Create an instance of this class set to the account_capture_relinquish_account_details tag with value val.

Parameters:

val (AccountCaptureRelinquishAccountDetails)

Return type:

EventDetails

classmethod account_lock_or_unlocked_details(val)

Create an instance of this class set to the account_lock_or_unlocked_details tag with value val.

Parameters:

val (AccountLockOrUnlockedDetails)

Return type:

EventDetails

classmethod addon_assigned_details(val)

Create an instance of this class set to the addon_assigned_details tag with value val.

Parameters:

val (AddonAssignedDetails)

Return type:

EventDetails

classmethod addon_removed_details(val)

Create an instance of this class set to the addon_removed_details tag with value val.

Parameters:

val (AddonRemovedDetails)

Return type:

EventDetails

classmethod admin_alerting_alert_state_changed_details(val)

Create an instance of this class set to the admin_alerting_alert_state_changed_details tag with value val.

Parameters:

val (AdminAlertingAlertStateChangedDetails)

Return type:

EventDetails

classmethod admin_alerting_changed_alert_config_details(val)

Create an instance of this class set to the admin_alerting_changed_alert_config_details tag with value val.

Parameters:

val (AdminAlertingChangedAlertConfigDetails)

Return type:

EventDetails

classmethod admin_alerting_triggered_alert_details(val)

Create an instance of this class set to the admin_alerting_triggered_alert_details tag with value val.

Parameters:

val (AdminAlertingTriggeredAlertDetails)

Return type:

EventDetails

classmethod admin_email_reminders_changed_details(val)

Create an instance of this class set to the admin_email_reminders_changed_details tag with value val.

Parameters:

val (AdminEmailRemindersChangedDetails)

Return type:

EventDetails

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_details tag with value val.

Parameters:

val (AiThirdPartySharingDropboxBasePolicyChangedDetails)

Return type:

EventDetails

classmethod allow_download_disabled_details(val)

Create an instance of this class set to the allow_download_disabled_details tag with value val.

Parameters:

val (AllowDownloadDisabledDetails)

Return type:

EventDetails

classmethod allow_download_enabled_details(val)

Create an instance of this class set to the allow_download_enabled_details tag with value val.

Parameters:

val (AllowDownloadEnabledDetails)

Return type:

EventDetails

classmethod app_blocked_by_permissions_details(val)

Create an instance of this class set to the app_blocked_by_permissions_details tag with value val.

Parameters:

val (AppBlockedByPermissionsDetails)

Return type:

EventDetails

Create an instance of this class set to the app_link_team_details tag with value val.

Parameters:

val (AppLinkTeamDetails)

Return type:

EventDetails

Create an instance of this class set to the app_link_user_details tag with value val.

Parameters:

val (AppLinkUserDetails)

Return type:

EventDetails

classmethod app_permissions_changed_details(val)

Create an instance of this class set to the app_permissions_changed_details tag with value val.

Parameters:

val (AppPermissionsChangedDetails)

Return type:

EventDetails

Create an instance of this class set to the app_unlink_team_details tag with value val.

Parameters:

val (AppUnlinkTeamDetails)

Return type:

EventDetails

Create an instance of this class set to the app_unlink_user_details tag with value val.

Parameters:

val (AppUnlinkUserDetails)

Return type:

EventDetails

classmethod apple_login_change_policy_details(val)

Create an instance of this class set to the apple_login_change_policy_details tag with value val.

Parameters:

val (AppleLoginChangePolicyDetails)

Return type:

EventDetails

classmethod apply_naming_convention_details(val)

Create an instance of this class set to the apply_naming_convention_details tag with value val.

Parameters:

val (ApplyNamingConventionDetails)

Return type:

EventDetails

classmethod backup_admin_invitation_sent_details(val)

Create an instance of this class set to the backup_admin_invitation_sent_details tag with value val.

Parameters:

val (BackupAdminInvitationSentDetails)

Return type:

EventDetails

classmethod backup_invitation_opened_details(val)

Create an instance of this class set to the backup_invitation_opened_details tag with value val.

Parameters:

val (BackupInvitationOpenedDetails)

Return type:

EventDetails

classmethod binder_add_page_details(val)

Create an instance of this class set to the binder_add_page_details tag with value val.

Parameters:

val (BinderAddPageDetails)

Return type:

EventDetails

classmethod binder_add_section_details(val)

Create an instance of this class set to the binder_add_section_details tag with value val.

Parameters:

val (BinderAddSectionDetails)

Return type:

EventDetails

classmethod binder_remove_page_details(val)

Create an instance of this class set to the binder_remove_page_details tag with value val.

Parameters:

val (BinderRemovePageDetails)

Return type:

EventDetails

classmethod binder_remove_section_details(val)

Create an instance of this class set to the binder_remove_section_details tag with value val.

Parameters:

val (BinderRemoveSectionDetails)

Return type:

EventDetails

classmethod binder_rename_page_details(val)

Create an instance of this class set to the binder_rename_page_details tag with value val.

Parameters:

val (BinderRenamePageDetails)

Return type:

EventDetails

classmethod binder_rename_section_details(val)

Create an instance of this class set to the binder_rename_section_details tag with value val.

Parameters:

val (BinderRenameSectionDetails)

Return type:

EventDetails

classmethod binder_reorder_page_details(val)

Create an instance of this class set to the binder_reorder_page_details tag with value val.

Parameters:

val (BinderReorderPageDetails)

Return type:

EventDetails

classmethod binder_reorder_section_details(val)

Create an instance of this class set to the binder_reorder_section_details tag with value val.

Parameters:

val (BinderReorderSectionDetails)

Return type:

EventDetails

classmethod camera_uploads_policy_changed_details(val)

Create an instance of this class set to the camera_uploads_policy_changed_details tag with value val.

Parameters:

val (CameraUploadsPolicyChangedDetails)

Return type:

EventDetails

classmethod capture_team_space_policy_changed_details(val)

Create an instance of this class set to the capture_team_space_policy_changed_details tag with value val.

Parameters:

val (CaptureTeamSpacePolicyChangedDetails)

Return type:

EventDetails

classmethod capture_transcript_policy_changed_details(val)

Create an instance of this class set to the capture_transcript_policy_changed_details tag with value val.

Parameters:

val (CaptureTranscriptPolicyChangedDetails)

Return type:

EventDetails

classmethod changed_enterprise_admin_role_details(val)

Create an instance of this class set to the changed_enterprise_admin_role_details tag with value val.

Parameters:

val (ChangedEnterpriseAdminRoleDetails)

Return type:

EventDetails

classmethod changed_enterprise_connected_team_status_details(val)

Create an instance of this class set to the changed_enterprise_connected_team_status_details tag with value val.

Parameters:

val (ChangedEnterpriseConnectedTeamStatusDetails)

Return type:

EventDetails

classmethod classification_change_policy_details(val)

Create an instance of this class set to the classification_change_policy_details tag with value val.

Parameters:

val (ClassificationChangePolicyDetails)

Return type:

EventDetails

classmethod classification_create_report_details(val)

Create an instance of this class set to the classification_create_report_details tag with value val.

Parameters:

val (ClassificationCreateReportDetails)

Return type:

EventDetails

classmethod classification_create_report_fail_details(val)

Create an instance of this class set to the classification_create_report_fail_details tag with value val.

Parameters:

val (ClassificationCreateReportFailDetails)

Return type:

EventDetails

classmethod collection_share_details(val)

Create an instance of this class set to the collection_share_details tag with value val.

Parameters:

val (CollectionShareDetails)

Return type:

EventDetails

classmethod computer_backup_policy_changed_details(val)

Create an instance of this class set to the computer_backup_policy_changed_details tag with value val.

Parameters:

val (ComputerBackupPolicyChangedDetails)

Return type:

EventDetails

classmethod content_administration_policy_changed_details(val)

Create an instance of this class set to the content_administration_policy_changed_details tag with value val.

Parameters:

val (ContentAdministrationPolicyChangedDetails)

Return type:

EventDetails

classmethod content_deletion_protection_change_policy_details(val)

Create an instance of this class set to the content_deletion_protection_change_policy_details tag with value val.

Parameters:

val (ContentDeletionProtectionChangePolicyDetails)

Return type:

EventDetails

classmethod create_folder_details(val)

Create an instance of this class set to the create_folder_details tag with value val.

Parameters:

val (CreateFolderDetails)

Return type:

EventDetails

Create an instance of this class set to the create_team_invite_link_details tag with value val.

Parameters:

val (CreateTeamInviteLinkDetails)

Return type:

EventDetails

classmethod dash_added_comment_to_stack_details(val)

Create an instance of this class set to the dash_added_comment_to_stack_details tag with value val.

Parameters:

val (DashAddedCommentToStackDetails)

Return type:

EventDetails

classmethod dash_added_connector_details(val)

Create an instance of this class set to the dash_added_connector_details tag with value val.

Parameters:

val (DashAddedConnectorDetails)

Return type:

EventDetails

Create an instance of this class set to the dash_added_link_to_stack_details tag with value val.

Parameters:

val (DashAddedLinkToStackDetails)

Return type:

EventDetails

classmethod dash_added_team_email_domain_allowlist_details(val)

Create an instance of this class set to the dash_added_team_email_domain_allowlist_details tag with value val.

Parameters:

val (DashAddedTeamEmailDomainAllowlistDetails)

Return type:

EventDetails

classmethod dash_admin_added_org_wide_connector_details(val)

Create an instance of this class set to the dash_admin_added_org_wide_connector_details tag with value val.

Parameters:

val (DashAdminAddedOrgWideConnectorDetails)

Return type:

EventDetails

classmethod dash_admin_disabled_connector_details(val)

Create an instance of this class set to the dash_admin_disabled_connector_details tag with value val.

Parameters:

val (DashAdminDisabledConnectorDetails)

Return type:

EventDetails

classmethod dash_admin_enabled_connector_details(val)

Create an instance of this class set to the dash_admin_enabled_connector_details tag with value val.

Parameters:

val (DashAdminEnabledConnectorDetails)

Return type:

EventDetails

classmethod dash_admin_removed_org_wide_connector_details(val)

Create an instance of this class set to the dash_admin_removed_org_wide_connector_details tag with value val.

Parameters:

val (DashAdminRemovedOrgWideConnectorDetails)

Return type:

EventDetails

classmethod dash_archived_stack_details(val)

Create an instance of this class set to the dash_archived_stack_details tag with value val.

Parameters:

val (DashArchivedStackDetails)

Return type:

EventDetails

Create an instance of this class set to the dash_changed_audience_of_shared_link_to_stack_details tag with value val.

Parameters:

val (DashChangedAudienceOfSharedLinkToStackDetails)

Return type:

EventDetails

classmethod dash_cloned_stack_details(val)

Create an instance of this class set to the dash_cloned_stack_details tag with value val.

Parameters:

val (DashClonedStackDetails)

Return type:

EventDetails

classmethod dash_connector_tools_call_details(val)

Create an instance of this class set to the dash_connector_tools_call_details tag with value val.

Parameters:

val (DashConnectorToolsCallDetails)

Return type:

EventDetails

classmethod dash_created_stack_details(val)

Create an instance of this class set to the dash_created_stack_details tag with value val.

Parameters:

val (DashCreatedStackDetails)

Return type:

EventDetails

classmethod dash_deleted_comment_from_stack_details(val)

Create an instance of this class set to the dash_deleted_comment_from_stack_details tag with value val.

Parameters:

val (DashDeletedCommentFromStackDetails)

Return type:

EventDetails

classmethod dash_deleted_stack_details(val)

Create an instance of this class set to the dash_deleted_stack_details tag with value val.

Parameters:

val (DashDeletedStackDetails)

Return type:

EventDetails

classmethod dash_edited_comment_in_stack_details(val)

Create an instance of this class set to the dash_edited_comment_in_stack_details tag with value val.

Parameters:

val (DashEditedCommentInStackDetails)

Return type:

EventDetails

classmethod dash_external_sharing_policy_changed_details(val)

Create an instance of this class set to the dash_external_sharing_policy_changed_details tag with value val.

Parameters:

val (DashExternalSharingPolicyChangedDetails)

Return type:

EventDetails

classmethod dash_external_user_opened_stack_details(val)

Create an instance of this class set to the dash_external_user_opened_stack_details tag with value val.

Parameters:

val (DashExternalUserOpenedStackDetails)

Return type:

EventDetails

classmethod dash_first_launched_desktop_details(val)

Create an instance of this class set to the dash_first_launched_desktop_details tag with value val.

Parameters:

val (DashFirstLaunchedDesktopDetails)

Return type:

EventDetails

classmethod dash_first_launched_extension_details(val)

Create an instance of this class set to the dash_first_launched_extension_details tag with value val.

Parameters:

val (DashFirstLaunchedExtensionDetails)

Return type:

EventDetails

classmethod dash_first_launched_web_start_page_details(val)

Create an instance of this class set to the dash_first_launched_web_start_page_details tag with value val.

Parameters:

val (DashFirstLaunchedWebStartPageDetails)

Return type:

EventDetails

Create an instance of this class set to the dash_opened_shared_link_to_stack_details tag with value val.

Parameters:

val (DashOpenedSharedLinkToStackDetails)

Return type:

EventDetails

classmethod dash_opened_stack_details(val)

Create an instance of this class set to the dash_opened_stack_details tag with value val.

Parameters:

val (DashOpenedStackDetails)

Return type:

EventDetails

classmethod dash_preview_opt_out_status_changed_details(val)

Create an instance of this class set to the dash_preview_opt_out_status_changed_details tag with value val.

Parameters:

val (DashPreviewOptOutStatusChangedDetails)

Return type:

EventDetails

classmethod dash_removed_connector_details(val)

Create an instance of this class set to the dash_removed_connector_details tag with value val.

Parameters:

val (DashRemovedConnectorDetails)

Return type:

EventDetails

Create an instance of this class set to the dash_removed_link_from_stack_details tag with value val.

Parameters:

val (DashRemovedLinkFromStackDetails)

Return type:

EventDetails

Create an instance of this class set to the dash_removed_shared_link_to_stack_details tag with value val.

Parameters:

val (DashRemovedSharedLinkToStackDetails)

Return type:

EventDetails

classmethod dash_removed_team_email_domain_allowlist_details(val)

Create an instance of this class set to the dash_removed_team_email_domain_allowlist_details tag with value val.

Parameters:

val (DashRemovedTeamEmailDomainAllowlistDetails)

Return type:

EventDetails

classmethod dash_renamed_stack_details(val)

Create an instance of this class set to the dash_renamed_stack_details tag with value val.

Parameters:

val (DashRenamedStackDetails)

Return type:

EventDetails

Create an instance of this class set to the dash_shared_link_to_stack_details tag with value val.

Parameters:

val (DashSharedLinkToStackDetails)

Return type:

EventDetails

classmethod dash_unarchived_stack_details(val)

Create an instance of this class set to the dash_unarchived_stack_details tag with value val.

Parameters:

val (DashUnarchivedStackDetails)

Return type:

EventDetails

classmethod dash_viewed_company_stack_details(val)

Create an instance of this class set to the dash_viewed_company_stack_details tag with value val.

Parameters:

val (DashViewedCompanyStackDetails)

Return type:

EventDetails

classmethod dash_viewed_external_ai_activity_report_details(val)

Create an instance of this class set to the dash_viewed_external_ai_activity_report_details tag with value val.

Parameters:

val (DashViewedExternalAiActivityReportDetails)

Return type:

EventDetails

classmethod data_placement_restriction_change_policy_details(val)

Create an instance of this class set to the data_placement_restriction_change_policy_details tag with value val.

Parameters:

val (DataPlacementRestrictionChangePolicyDetails)

Return type:

EventDetails

classmethod data_placement_restriction_satisfy_policy_details(val)

Create an instance of this class set to the data_placement_restriction_satisfy_policy_details tag with value val.

Parameters:

val (DataPlacementRestrictionSatisfyPolicyDetails)

Return type:

EventDetails

classmethod data_residency_migration_request_successful_details(val)

Create an instance of this class set to the data_residency_migration_request_successful_details tag with value val.

Parameters:

val (DataResidencyMigrationRequestSuccessfulDetails)

Return type:

EventDetails

classmethod data_residency_migration_request_unsuccessful_details(val)

Create an instance of this class set to the data_residency_migration_request_unsuccessful_details tag with value val.

Parameters:

val (DataResidencyMigrationRequestUnsuccessfulDetails)

Return type:

EventDetails

Create an instance of this class set to the delete_team_invite_link_details tag with value val.

Parameters:

val (DeleteTeamInviteLinkDetails)

Return type:

EventDetails

classmethod device_approvals_add_exception_details(val)

Create an instance of this class set to the device_approvals_add_exception_details tag with value val.

Parameters:

val (DeviceApprovalsAddExceptionDetails)

Return type:

EventDetails

classmethod device_approvals_change_desktop_policy_details(val)

Create an instance of this class set to the device_approvals_change_desktop_policy_details tag with value val.

Parameters:

val (DeviceApprovalsChangeDesktopPolicyDetails)

Return type:

EventDetails

classmethod device_approvals_change_mobile_policy_details(val)

Create an instance of this class set to the device_approvals_change_mobile_policy_details tag with value val.

Parameters:

val (DeviceApprovalsChangeMobilePolicyDetails)

Return type:

EventDetails

classmethod device_approvals_change_overage_action_details(val)

Create an instance of this class set to the device_approvals_change_overage_action_details tag with value val.

Parameters:

val (DeviceApprovalsChangeOverageActionDetails)

Return type:

EventDetails

Create an instance of this class set to the device_approvals_change_unlink_action_details tag with value val.

Parameters:

val (DeviceApprovalsChangeUnlinkActionDetails)

Return type:

EventDetails

classmethod device_approvals_remove_exception_details(val)

Create an instance of this class set to the device_approvals_remove_exception_details tag with value val.

Parameters:

val (DeviceApprovalsRemoveExceptionDetails)

Return type:

EventDetails

classmethod device_change_ip_desktop_details(val)

Create an instance of this class set to the device_change_ip_desktop_details tag with value val.

Parameters:

val (DeviceChangeIpDesktopDetails)

Return type:

EventDetails

classmethod device_change_ip_mobile_details(val)

Create an instance of this class set to the device_change_ip_mobile_details tag with value val.

Parameters:

val (DeviceChangeIpMobileDetails)

Return type:

EventDetails

classmethod device_change_ip_web_details(val)

Create an instance of this class set to the device_change_ip_web_details tag with value val.

Parameters:

val (DeviceChangeIpWebDetails)

Return type:

EventDetails

Create an instance of this class set to the device_delete_on_unlink_fail_details tag with value val.

Parameters:

val (DeviceDeleteOnUnlinkFailDetails)

Return type:

EventDetails

Create an instance of this class set to the device_delete_on_unlink_success_details tag with value val.

Parameters:

val (DeviceDeleteOnUnlinkSuccessDetails)

Return type:

EventDetails

Create an instance of this class set to the device_link_fail_details tag with value val.

Parameters:

val (DeviceLinkFailDetails)

Return type:

EventDetails

Create an instance of this class set to the device_link_success_details tag with value val.

Parameters:

val (DeviceLinkSuccessDetails)

Return type:

EventDetails

classmethod device_management_disabled_details(val)

Create an instance of this class set to the device_management_disabled_details tag with value val.

Parameters:

val (DeviceManagementDisabledDetails)

Return type:

EventDetails

classmethod device_management_enabled_details(val)

Create an instance of this class set to the device_management_enabled_details tag with value val.

Parameters:

val (DeviceManagementEnabledDetails)

Return type:

EventDetails

classmethod device_sync_backup_status_changed_details(val)

Create an instance of this class set to the device_sync_backup_status_changed_details tag with value val.

Parameters:

val (DeviceSyncBackupStatusChangedDetails)

Return type:

EventDetails

Create an instance of this class set to the device_unlink_details tag with value val.

Parameters:

val (DeviceUnlinkDetails)

Return type:

EventDetails

classmethod directory_restrictions_add_members_details(val)

Create an instance of this class set to the directory_restrictions_add_members_details tag with value val.

Parameters:

val (DirectoryRestrictionsAddMembersDetails)

Return type:

EventDetails

classmethod directory_restrictions_remove_members_details(val)

Create an instance of this class set to the directory_restrictions_remove_members_details tag with value val.

Parameters:

val (DirectoryRestrictionsRemoveMembersDetails)

Return type:

EventDetails

classmethod disabled_domain_invites_details(val)

Create an instance of this class set to the disabled_domain_invites_details tag with value val.

Parameters:

val (DisabledDomainInvitesDetails)

Return type:

EventDetails

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_details tag with value val.

Parameters:

val (DomainInvitesApproveRequestToJoinTeamDetails)

Return type:

EventDetails

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_details tag with value val.

Parameters:

val (DomainInvitesDeclineRequestToJoinTeamDetails)

Return type:

EventDetails

classmethod domain_invites_email_existing_users_details(val)

Create an instance of this class set to the domain_invites_email_existing_users_details tag with value val.

Parameters:

val (DomainInvitesEmailExistingUsersDetails)

Return type:

EventDetails

classmethod domain_invites_request_to_join_team_details(val)

Create an instance of this class set to the domain_invites_request_to_join_team_details tag with value val.

Parameters:

val (DomainInvitesRequestToJoinTeamDetails)

Return type:

EventDetails

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_details tag with value val.

Parameters:

val (DomainInvitesSetInviteNewUserPrefToNoDetails)

Return type:

EventDetails

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_details tag with value val.

Parameters:

val (DomainInvitesSetInviteNewUserPrefToYesDetails)

Return type:

EventDetails

classmethod domain_verification_add_domain_fail_details(val)

Create an instance of this class set to the domain_verification_add_domain_fail_details tag with value val.

Parameters:

val (DomainVerificationAddDomainFailDetails)

Return type:

EventDetails

classmethod domain_verification_add_domain_success_details(val)

Create an instance of this class set to the domain_verification_add_domain_success_details tag with value val.

Parameters:

val (DomainVerificationAddDomainSuccessDetails)

Return type:

EventDetails

classmethod domain_verification_remove_domain_details(val)

Create an instance of this class set to the domain_verification_remove_domain_details tag with value val.

Parameters:

val (DomainVerificationRemoveDomainDetails)

Return type:

EventDetails

classmethod dropbox_passwords_exported_details(val)

Create an instance of this class set to the dropbox_passwords_exported_details tag with value val.

Parameters:

val (DropboxPasswordsExportedDetails)

Return type:

EventDetails

classmethod dropbox_passwords_new_device_enrolled_details(val)

Create an instance of this class set to the dropbox_passwords_new_device_enrolled_details tag with value val.

Parameters:

val (DropboxPasswordsNewDeviceEnrolledDetails)

Return type:

EventDetails

classmethod dropbox_passwords_policy_changed_details(val)

Create an instance of this class set to the dropbox_passwords_policy_changed_details tag with value val.

Parameters:

val (DropboxPasswordsPolicyChangedDetails)

Return type:

EventDetails

classmethod email_ingest_policy_changed_details(val)

Create an instance of this class set to the email_ingest_policy_changed_details tag with value val.

Parameters:

val (EmailIngestPolicyChangedDetails)

Return type:

EventDetails

classmethod email_ingest_receive_file_details(val)

Create an instance of this class set to the email_ingest_receive_file_details tag with value val.

Parameters:

val (EmailIngestReceiveFileDetails)

Return type:

EventDetails

classmethod emm_add_exception_details(val)

Create an instance of this class set to the emm_add_exception_details tag with value val.

Parameters:

val (EmmAddExceptionDetails)

Return type:

EventDetails

classmethod emm_change_policy_details(val)

Create an instance of this class set to the emm_change_policy_details tag with value val.

Parameters:

val (EmmChangePolicyDetails)

Return type:

EventDetails

classmethod emm_create_exceptions_report_details(val)

Create an instance of this class set to the emm_create_exceptions_report_details tag with value val.

Parameters:

val (EmmCreateExceptionsReportDetails)

Return type:

EventDetails

classmethod emm_create_usage_report_details(val)

Create an instance of this class set to the emm_create_usage_report_details tag with value val.

Parameters:

val (EmmCreateUsageReportDetails)

Return type:

EventDetails

classmethod emm_error_details(val)

Create an instance of this class set to the emm_error_details tag with value val.

Parameters:

val (EmmErrorDetails)

Return type:

EventDetails

classmethod emm_refresh_auth_token_details(val)

Create an instance of this class set to the emm_refresh_auth_token_details tag with value val.

Parameters:

val (EmmRefreshAuthTokenDetails)

Return type:

EventDetails

classmethod emm_remove_exception_details(val)

Create an instance of this class set to the emm_remove_exception_details tag with value val.

Parameters:

val (EmmRemoveExceptionDetails)

Return type:

EventDetails

classmethod enabled_domain_invites_details(val)

Create an instance of this class set to the enabled_domain_invites_details tag with value val.

Parameters:

val (EnabledDomainInvitesDetails)

Return type:

EventDetails

classmethod encrypted_folder_cancel_team_key_rotation_details(val)

Create an instance of this class set to the encrypted_folder_cancel_team_key_rotation_details tag with value val.

Parameters:

val (EncryptedFolderCancelTeamKeyRotationDetails)

Return type:

EventDetails

classmethod encrypted_folder_enroll_backup_key_details(val)

Create an instance of this class set to the encrypted_folder_enroll_backup_key_details tag with value val.

Parameters:

val (EncryptedFolderEnrollBackupKeyDetails)

Return type:

EventDetails

classmethod encrypted_folder_enroll_client_details(val)

Create an instance of this class set to the encrypted_folder_enroll_client_details tag with value val.

Parameters:

val (EncryptedFolderEnrollClientDetails)

Return type:

EventDetails

classmethod encrypted_folder_enroll_team_details(val)

Create an instance of this class set to the encrypted_folder_enroll_team_details tag with value val.

Parameters:

val (EncryptedFolderEnrollTeamDetails)

Return type:

EventDetails

classmethod encrypted_folder_finish_team_unenrollment_details(val)

Create an instance of this class set to the encrypted_folder_finish_team_unenrollment_details tag with value val.

Parameters:

val (EncryptedFolderFinishTeamUnenrollmentDetails)

Return type:

EventDetails

classmethod encrypted_folder_init_team_key_rotation_details(val)

Create an instance of this class set to the encrypted_folder_init_team_key_rotation_details tag with value val.

Parameters:

val (EncryptedFolderInitTeamKeyRotationDetails)

Return type:

EventDetails

classmethod encrypted_folder_init_team_unenrollment_details(val)

Create an instance of this class set to the encrypted_folder_init_team_unenrollment_details tag with value val.

Parameters:

val (EncryptedFolderInitTeamUnenrollmentDetails)

Return type:

EventDetails

classmethod encrypted_folder_remove_backup_key_details(val)

Create an instance of this class set to the encrypted_folder_remove_backup_key_details tag with value val.

Parameters:

val (EncryptedFolderRemoveBackupKeyDetails)

Return type:

EventDetails

classmethod encrypted_folder_rotate_team_key_details(val)

Create an instance of this class set to the encrypted_folder_rotate_team_key_details tag with value val.

Parameters:

val (EncryptedFolderRotateTeamKeyDetails)

Return type:

EventDetails

classmethod encrypted_folder_unenroll_client_details(val)

Create an instance of this class set to the encrypted_folder_unenroll_client_details tag with value val.

Parameters:

val (EncryptedFolderUnenrollClientDetails)

Return type:

EventDetails

classmethod ended_enterprise_admin_session_deprecated_details(val)

Create an instance of this class set to the ended_enterprise_admin_session_deprecated_details tag with value val.

Parameters:

val (EndedEnterpriseAdminSessionDeprecatedDetails)

Return type:

EventDetails

classmethod ended_enterprise_admin_session_details(val)

Create an instance of this class set to the ended_enterprise_admin_session_details tag with value val.

Parameters:

val (EndedEnterpriseAdminSessionDetails)

Return type:

EventDetails

classmethod enterprise_settings_locking_details(val)

Create an instance of this class set to the enterprise_settings_locking_details tag with value val.

Parameters:

val (EnterpriseSettingsLockingDetails)

Return type:

EventDetails

classmethod export_members_report_details(val)

Create an instance of this class set to the export_members_report_details tag with value val.

Parameters:

val (ExportMembersReportDetails)

Return type:

EventDetails

classmethod export_members_report_fail_details(val)

Create an instance of this class set to the export_members_report_fail_details tag with value val.

Parameters:

val (ExportMembersReportFailDetails)

Return type:

EventDetails

classmethod extended_version_history_change_policy_details(val)

Create an instance of this class set to the extended_version_history_change_policy_details tag with value val.

Parameters:

val (ExtendedVersionHistoryChangePolicyDetails)

Return type:

EventDetails

classmethod external_drive_backup_eligibility_status_checked_details(val)

Create an instance of this class set to the external_drive_backup_eligibility_status_checked_details tag with value val.

Parameters:

val (ExternalDriveBackupEligibilityStatusCheckedDetails)

Return type:

EventDetails

classmethod external_drive_backup_policy_changed_details(val)

Create an instance of this class set to the external_drive_backup_policy_changed_details tag with value val.

Parameters:

val (ExternalDriveBackupPolicyChangedDetails)

Return type:

EventDetails

classmethod external_drive_backup_status_changed_details(val)

Create an instance of this class set to the external_drive_backup_status_changed_details tag with value val.

Parameters:

val (ExternalDriveBackupStatusChangedDetails)

Return type:

EventDetails

classmethod external_sharing_create_report_details(val)

Create an instance of this class set to the external_sharing_create_report_details tag with value val.

Parameters:

val (ExternalSharingCreateReportDetails)

Return type:

EventDetails

classmethod external_sharing_report_failed_details(val)

Create an instance of this class set to the external_sharing_report_failed_details tag with value val.

Parameters:

val (ExternalSharingReportFailedDetails)

Return type:

EventDetails

classmethod file_add_comment_details(val)

Create an instance of this class set to the file_add_comment_details tag with value val.

Parameters:

val (FileAddCommentDetails)

Return type:

EventDetails

classmethod file_add_details(val)

Create an instance of this class set to the file_add_details tag with value val.

Parameters:

val (FileAddDetails)

Return type:

EventDetails

classmethod file_add_from_automation_details(val)

Create an instance of this class set to the file_add_from_automation_details tag with value val.

Parameters:

val (FileAddFromAutomationDetails)

Return type:

EventDetails

classmethod file_change_comment_subscription_details(val)

Create an instance of this class set to the file_change_comment_subscription_details tag with value val.

Parameters:

val (FileChangeCommentSubscriptionDetails)

Return type:

EventDetails

classmethod file_comments_change_policy_details(val)

Create an instance of this class set to the file_comments_change_policy_details tag with value val.

Parameters:

val (FileCommentsChangePolicyDetails)

Return type:

EventDetails

classmethod file_copy_details(val)

Create an instance of this class set to the file_copy_details tag with value val.

Parameters:

val (FileCopyDetails)

Return type:

EventDetails

classmethod file_delete_comment_details(val)

Create an instance of this class set to the file_delete_comment_details tag with value val.

Parameters:

val (FileDeleteCommentDetails)

Return type:

EventDetails

classmethod file_delete_details(val)

Create an instance of this class set to the file_delete_details tag with value val.

Parameters:

val (FileDeleteDetails)

Return type:

EventDetails

classmethod file_download_details(val)

Create an instance of this class set to the file_download_details tag with value val.

Parameters:

val (FileDownloadDetails)

Return type:

EventDetails

classmethod file_edit_comment_details(val)

Create an instance of this class set to the file_edit_comment_details tag with value val.

Parameters:

val (FileEditCommentDetails)

Return type:

EventDetails

classmethod file_edit_details(val)

Create an instance of this class set to the file_edit_details tag with value val.

Parameters:

val (FileEditDetails)

Return type:

EventDetails

classmethod file_get_copy_reference_details(val)

Create an instance of this class set to the file_get_copy_reference_details tag with value val.

Parameters:

val (FileGetCopyReferenceDetails)

Return type:

EventDetails

classmethod file_like_comment_details(val)

Create an instance of this class set to the file_like_comment_details tag with value val.

Parameters:

val (FileLikeCommentDetails)

Return type:

EventDetails

classmethod file_locking_lock_status_changed_details(val)

Create an instance of this class set to the file_locking_lock_status_changed_details tag with value val.

Parameters:

val (FileLockingLockStatusChangedDetails)

Return type:

EventDetails

classmethod file_locking_policy_changed_details(val)

Create an instance of this class set to the file_locking_policy_changed_details tag with value val.

Parameters:

val (FileLockingPolicyChangedDetails)

Return type:

EventDetails

classmethod file_move_details(val)

Create an instance of this class set to the file_move_details tag with value val.

Parameters:

val (FileMoveDetails)

Return type:

EventDetails

classmethod file_permanently_delete_details(val)

Create an instance of this class set to the file_permanently_delete_details tag with value val.

Parameters:

val (FilePermanentlyDeleteDetails)

Return type:

EventDetails

classmethod file_preview_details(val)

Create an instance of this class set to the file_preview_details tag with value val.

Parameters:

val (FilePreviewDetails)

Return type:

EventDetails

classmethod file_provider_migration_policy_changed_details(val)

Create an instance of this class set to the file_provider_migration_policy_changed_details tag with value val.

Parameters:

val (FileProviderMigrationPolicyChangedDetails)

Return type:

EventDetails

classmethod file_rename_details(val)

Create an instance of this class set to the file_rename_details tag with value val.

Parameters:

val (FileRenameDetails)

Return type:

EventDetails

classmethod file_request_auto_close_details(val)

Create an instance of this class set to the file_request_auto_close_details tag with value val.

Parameters:

val (FileRequestAutoCloseDetails)

Return type:

EventDetails

classmethod file_request_change_details(val)

Create an instance of this class set to the file_request_change_details tag with value val.

Parameters:

val (FileRequestChangeDetails)

Return type:

EventDetails

classmethod file_request_close_details(val)

Create an instance of this class set to the file_request_close_details tag with value val.

Parameters:

val (FileRequestCloseDetails)

Return type:

EventDetails

classmethod file_request_create_details(val)

Create an instance of this class set to the file_request_create_details tag with value val.

Parameters:

val (FileRequestCreateDetails)

Return type:

EventDetails

classmethod file_request_delete_details(val)

Create an instance of this class set to the file_request_delete_details tag with value val.

Parameters:

val (FileRequestDeleteDetails)

Return type:

EventDetails

classmethod file_request_receive_file_details(val)

Create an instance of this class set to the file_request_receive_file_details tag with value val.

Parameters:

val (FileRequestReceiveFileDetails)

Return type:

EventDetails

classmethod file_requests_change_policy_details(val)

Create an instance of this class set to the file_requests_change_policy_details tag with value val.

Parameters:

val (FileRequestsChangePolicyDetails)

Return type:

EventDetails

classmethod file_requests_emails_enabled_details(val)

Create an instance of this class set to the file_requests_emails_enabled_details tag with value val.

Parameters:

val (FileRequestsEmailsEnabledDetails)

Return type:

EventDetails

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_details tag with value val.

Parameters:

val (FileRequestsEmailsRestrictedToTeamOnlyDetails)

Return type:

EventDetails

classmethod file_resolve_comment_details(val)

Create an instance of this class set to the file_resolve_comment_details tag with value val.

Parameters:

val (FileResolveCommentDetails)

Return type:

EventDetails

classmethod file_restore_details(val)

Create an instance of this class set to the file_restore_details tag with value val.

Parameters:

val (FileRestoreDetails)

Return type:

EventDetails

classmethod file_revert_details(val)

Create an instance of this class set to the file_revert_details tag with value val.

Parameters:

val (FileRevertDetails)

Return type:

EventDetails

classmethod file_rollback_changes_details(val)

Create an instance of this class set to the file_rollback_changes_details tag with value val.

Parameters:

val (FileRollbackChangesDetails)

Return type:

EventDetails

classmethod file_save_copy_reference_details(val)

Create an instance of this class set to the file_save_copy_reference_details tag with value val.

Parameters:

val (FileSaveCopyReferenceDetails)

Return type:

EventDetails

classmethod file_transfers_file_add_details(val)

Create an instance of this class set to the file_transfers_file_add_details tag with value val.

Parameters:

val (FileTransfersFileAddDetails)

Return type:

EventDetails

classmethod file_transfers_policy_changed_details(val)

Create an instance of this class set to the file_transfers_policy_changed_details tag with value val.

Parameters:

val (FileTransfersPolicyChangedDetails)

Return type:

EventDetails

classmethod file_transfers_transfer_delete_details(val)

Create an instance of this class set to the file_transfers_transfer_delete_details tag with value val.

Parameters:

val (FileTransfersTransferDeleteDetails)

Return type:

EventDetails

classmethod file_transfers_transfer_download_details(val)

Create an instance of this class set to the file_transfers_transfer_download_details tag with value val.

Parameters:

val (FileTransfersTransferDownloadDetails)

Return type:

EventDetails

classmethod file_transfers_transfer_send_details(val)

Create an instance of this class set to the file_transfers_transfer_send_details tag with value val.

Parameters:

val (FileTransfersTransferSendDetails)

Return type:

EventDetails

classmethod file_transfers_transfer_view_details(val)

Create an instance of this class set to the file_transfers_transfer_view_details tag with value val.

Parameters:

val (FileTransfersTransferViewDetails)

Return type:

EventDetails

classmethod file_unlike_comment_details(val)

Create an instance of this class set to the file_unlike_comment_details tag with value val.

Parameters:

val (FileUnlikeCommentDetails)

Return type:

EventDetails

classmethod file_unresolve_comment_details(val)

Create an instance of this class set to the file_unresolve_comment_details tag with value val.

Parameters:

val (FileUnresolveCommentDetails)

Return type:

EventDetails

classmethod flexible_file_names_policy_changed_details(val)

Create an instance of this class set to the flexible_file_names_policy_changed_details tag with value val.

Parameters:

val (FlexibleFileNamesPolicyChangedDetails)

Return type:

EventDetails

Create an instance of this class set to the folder_link_restriction_policy_changed_details tag with value val.

Parameters:

val (FolderLinkRestrictionPolicyChangedDetails)

Return type:

EventDetails

classmethod folder_overview_description_changed_details(val)

Create an instance of this class set to the folder_overview_description_changed_details tag with value val.

Parameters:

val (FolderOverviewDescriptionChangedDetails)

Return type:

EventDetails

classmethod folder_overview_item_pinned_details(val)

Create an instance of this class set to the folder_overview_item_pinned_details tag with value val.

Parameters:

val (FolderOverviewItemPinnedDetails)

Return type:

EventDetails

classmethod folder_overview_item_unpinned_details(val)

Create an instance of this class set to the folder_overview_item_unpinned_details tag with value val.

Parameters:

val (FolderOverviewItemUnpinnedDetails)

Return type:

EventDetails

get_account_capture_change_availability_details()

Only call this if is_account_capture_change_availability_details() is true.

Return type:

AccountCaptureChangeAvailabilityDetails

get_account_capture_change_policy_details()

Only call this if is_account_capture_change_policy_details() is true.

Return type:

AccountCaptureChangePolicyDetails

get_account_capture_migrate_account_details()

Only call this if is_account_capture_migrate_account_details() is true.

Return type:

AccountCaptureMigrateAccountDetails

get_account_capture_notification_emails_sent_details()

Only call this if is_account_capture_notification_emails_sent_details() is true.

Return type:

AccountCaptureNotificationEmailsSentDetails

get_account_capture_relinquish_account_details()

Only call this if is_account_capture_relinquish_account_details() is true.

Return type:

AccountCaptureRelinquishAccountDetails

get_account_lock_or_unlocked_details()

Only call this if is_account_lock_or_unlocked_details() is true.

Return type:

AccountLockOrUnlockedDetails

get_addon_assigned_details()

Only call this if is_addon_assigned_details() is true.

Return type:

AddonAssignedDetails

get_addon_removed_details()

Only call this if is_addon_removed_details() is true.

Return type:

AddonRemovedDetails

get_admin_alerting_alert_state_changed_details()

Only call this if is_admin_alerting_alert_state_changed_details() is true.

Return type:

AdminAlertingAlertStateChangedDetails

get_admin_alerting_changed_alert_config_details()

Only call this if is_admin_alerting_changed_alert_config_details() is true.

Return type:

AdminAlertingChangedAlertConfigDetails

get_admin_alerting_triggered_alert_details()

Only call this if is_admin_alerting_triggered_alert_details() is true.

Return type:

AdminAlertingTriggeredAlertDetails

get_admin_email_reminders_changed_details()

Only call this if is_admin_email_reminders_changed_details() is true.

Return type:

AdminEmailRemindersChangedDetails

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:

AiThirdPartySharingDropboxBasePolicyChangedDetails

get_allow_download_disabled_details()

Only call this if is_allow_download_disabled_details() is true.

Return type:

AllowDownloadDisabledDetails

get_allow_download_enabled_details()

Only call this if is_allow_download_enabled_details() is true.

Return type:

AllowDownloadEnabledDetails

get_app_blocked_by_permissions_details()

Only call this if is_app_blocked_by_permissions_details() is true.

Return type:

AppBlockedByPermissionsDetails

Only call this if is_app_link_team_details() is true.

Return type:

AppLinkTeamDetails

Only call this if is_app_link_user_details() is true.

Return type:

AppLinkUserDetails

get_app_permissions_changed_details()

Only call this if is_app_permissions_changed_details() is true.

Return type:

AppPermissionsChangedDetails

Only call this if is_app_unlink_team_details() is true.

Return type:

AppUnlinkTeamDetails

Only call this if is_app_unlink_user_details() is true.

Return type:

AppUnlinkUserDetails

get_apple_login_change_policy_details()

Only call this if is_apple_login_change_policy_details() is true.

Return type:

AppleLoginChangePolicyDetails

get_apply_naming_convention_details()

Only call this if is_apply_naming_convention_details() is true.

Return type:

ApplyNamingConventionDetails

get_backup_admin_invitation_sent_details()

Only call this if is_backup_admin_invitation_sent_details() is true.

Return type:

BackupAdminInvitationSentDetails

get_backup_invitation_opened_details()

Only call this if is_backup_invitation_opened_details() is true.

Return type:

BackupInvitationOpenedDetails

get_binder_add_page_details()

Only call this if is_binder_add_page_details() is true.

Return type:

BinderAddPageDetails

get_binder_add_section_details()

Only call this if is_binder_add_section_details() is true.

Return type:

BinderAddSectionDetails

get_binder_remove_page_details()

Only call this if is_binder_remove_page_details() is true.

Return type:

BinderRemovePageDetails

get_binder_remove_section_details()

Only call this if is_binder_remove_section_details() is true.

Return type:

BinderRemoveSectionDetails

get_binder_rename_page_details()

Only call this if is_binder_rename_page_details() is true.

Return type:

BinderRenamePageDetails

get_binder_rename_section_details()

Only call this if is_binder_rename_section_details() is true.

Return type:

BinderRenameSectionDetails

get_binder_reorder_page_details()

Only call this if is_binder_reorder_page_details() is true.

Return type:

BinderReorderPageDetails

get_binder_reorder_section_details()

Only call this if is_binder_reorder_section_details() is true.

Return type:

BinderReorderSectionDetails

get_camera_uploads_policy_changed_details()

Only call this if is_camera_uploads_policy_changed_details() is true.

Return type:

CameraUploadsPolicyChangedDetails

get_capture_team_space_policy_changed_details()

Only call this if is_capture_team_space_policy_changed_details() is true.

Return type:

CaptureTeamSpacePolicyChangedDetails

get_capture_transcript_policy_changed_details()

Only call this if is_capture_transcript_policy_changed_details() is true.

Return type:

CaptureTranscriptPolicyChangedDetails

get_changed_enterprise_admin_role_details()

Only call this if is_changed_enterprise_admin_role_details() is true.

Return type:

ChangedEnterpriseAdminRoleDetails

get_changed_enterprise_connected_team_status_details()

Only call this if is_changed_enterprise_connected_team_status_details() is true.

Return type:

ChangedEnterpriseConnectedTeamStatusDetails

get_classification_change_policy_details()

Only call this if is_classification_change_policy_details() is true.

Return type:

ClassificationChangePolicyDetails

get_classification_create_report_details()

Only call this if is_classification_create_report_details() is true.

Return type:

ClassificationCreateReportDetails

get_classification_create_report_fail_details()

Only call this if is_classification_create_report_fail_details() is true.

Return type:

ClassificationCreateReportFailDetails

get_collection_share_details()

Only call this if is_collection_share_details() is true.

Return type:

CollectionShareDetails

get_computer_backup_policy_changed_details()

Only call this if is_computer_backup_policy_changed_details() is true.

Return type:

ComputerBackupPolicyChangedDetails

get_content_administration_policy_changed_details()

Only call this if is_content_administration_policy_changed_details() is true.

Return type:

ContentAdministrationPolicyChangedDetails

get_content_deletion_protection_change_policy_details()

Only call this if is_content_deletion_protection_change_policy_details() is true.

Return type:

ContentDeletionProtectionChangePolicyDetails

get_create_folder_details()

Only call this if is_create_folder_details() is true.

Return type:

CreateFolderDetails

Only call this if is_create_team_invite_link_details() is true.

Return type:

CreateTeamInviteLinkDetails

get_dash_added_comment_to_stack_details()

Only call this if is_dash_added_comment_to_stack_details() is true.

Return type:

DashAddedCommentToStackDetails

get_dash_added_connector_details()

Only call this if is_dash_added_connector_details() is true.

Return type:

DashAddedConnectorDetails

Only call this if is_dash_added_link_to_stack_details() is true.

Return type:

DashAddedLinkToStackDetails

get_dash_added_team_email_domain_allowlist_details()

Only call this if is_dash_added_team_email_domain_allowlist_details() is true.

Return type:

DashAddedTeamEmailDomainAllowlistDetails

get_dash_admin_added_org_wide_connector_details()

Only call this if is_dash_admin_added_org_wide_connector_details() is true.

Return type:

DashAdminAddedOrgWideConnectorDetails

get_dash_admin_disabled_connector_details()

Only call this if is_dash_admin_disabled_connector_details() is true.

Return type:

DashAdminDisabledConnectorDetails

get_dash_admin_enabled_connector_details()

Only call this if is_dash_admin_enabled_connector_details() is true.

Return type:

DashAdminEnabledConnectorDetails

get_dash_admin_removed_org_wide_connector_details()

Only call this if is_dash_admin_removed_org_wide_connector_details() is true.

Return type:

DashAdminRemovedOrgWideConnectorDetails

get_dash_archived_stack_details()

Only call this if is_dash_archived_stack_details() is true.

Return type:

DashArchivedStackDetails

Only call this if is_dash_changed_audience_of_shared_link_to_stack_details() is true.

Return type:

DashChangedAudienceOfSharedLinkToStackDetails

get_dash_cloned_stack_details()

Only call this if is_dash_cloned_stack_details() is true.

Return type:

DashClonedStackDetails

get_dash_connector_tools_call_details()

Only call this if is_dash_connector_tools_call_details() is true.

Return type:

DashConnectorToolsCallDetails

get_dash_created_stack_details()

Only call this if is_dash_created_stack_details() is true.

Return type:

DashCreatedStackDetails

get_dash_deleted_comment_from_stack_details()

Only call this if is_dash_deleted_comment_from_stack_details() is true.

Return type:

DashDeletedCommentFromStackDetails

get_dash_deleted_stack_details()

Only call this if is_dash_deleted_stack_details() is true.

Return type:

DashDeletedStackDetails

get_dash_edited_comment_in_stack_details()

Only call this if is_dash_edited_comment_in_stack_details() is true.

Return type:

DashEditedCommentInStackDetails

get_dash_external_sharing_policy_changed_details()

Only call this if is_dash_external_sharing_policy_changed_details() is true.

Return type:

DashExternalSharingPolicyChangedDetails

get_dash_external_user_opened_stack_details()

Only call this if is_dash_external_user_opened_stack_details() is true.

Return type:

DashExternalUserOpenedStackDetails

get_dash_first_launched_desktop_details()

Only call this if is_dash_first_launched_desktop_details() is true.

Return type:

DashFirstLaunchedDesktopDetails

get_dash_first_launched_extension_details()

Only call this if is_dash_first_launched_extension_details() is true.

Return type:

DashFirstLaunchedExtensionDetails

get_dash_first_launched_web_start_page_details()

Only call this if is_dash_first_launched_web_start_page_details() is true.

Return type:

DashFirstLaunchedWebStartPageDetails

Only call this if is_dash_opened_shared_link_to_stack_details() is true.

Return type:

DashOpenedSharedLinkToStackDetails

get_dash_opened_stack_details()

Only call this if is_dash_opened_stack_details() is true.

Return type:

DashOpenedStackDetails

get_dash_preview_opt_out_status_changed_details()

Only call this if is_dash_preview_opt_out_status_changed_details() is true.

Return type:

DashPreviewOptOutStatusChangedDetails

get_dash_removed_connector_details()

Only call this if is_dash_removed_connector_details() is true.

Return type:

DashRemovedConnectorDetails

Only call this if is_dash_removed_link_from_stack_details() is true.

Return type:

DashRemovedLinkFromStackDetails

Only call this if is_dash_removed_shared_link_to_stack_details() is true.

Return type:

DashRemovedSharedLinkToStackDetails

get_dash_removed_team_email_domain_allowlist_details()

Only call this if is_dash_removed_team_email_domain_allowlist_details() is true.

Return type:

DashRemovedTeamEmailDomainAllowlistDetails

get_dash_renamed_stack_details()

Only call this if is_dash_renamed_stack_details() is true.

Return type:

DashRenamedStackDetails

Only call this if is_dash_shared_link_to_stack_details() is true.

Return type:

DashSharedLinkToStackDetails

get_dash_unarchived_stack_details()

Only call this if is_dash_unarchived_stack_details() is true.

Return type:

DashUnarchivedStackDetails

get_dash_viewed_company_stack_details()

Only call this if is_dash_viewed_company_stack_details() is true.

Return type:

DashViewedCompanyStackDetails

get_dash_viewed_external_ai_activity_report_details()

Only call this if is_dash_viewed_external_ai_activity_report_details() is true.

Return type:

DashViewedExternalAiActivityReportDetails

get_data_placement_restriction_change_policy_details()

Only call this if is_data_placement_restriction_change_policy_details() is true.

Return type:

DataPlacementRestrictionChangePolicyDetails

get_data_placement_restriction_satisfy_policy_details()

Only call this if is_data_placement_restriction_satisfy_policy_details() is true.

Return type:

DataPlacementRestrictionSatisfyPolicyDetails

get_data_residency_migration_request_successful_details()

Only call this if is_data_residency_migration_request_successful_details() is true.

Return type:

DataResidencyMigrationRequestSuccessfulDetails

get_data_residency_migration_request_unsuccessful_details()

Only call this if is_data_residency_migration_request_unsuccessful_details() is true.

Return type:

DataResidencyMigrationRequestUnsuccessfulDetails

Only call this if is_delete_team_invite_link_details() is true.

Return type:

DeleteTeamInviteLinkDetails

get_device_approvals_add_exception_details()

Only call this if is_device_approvals_add_exception_details() is true.

Return type:

DeviceApprovalsAddExceptionDetails

get_device_approvals_change_desktop_policy_details()

Only call this if is_device_approvals_change_desktop_policy_details() is true.

Return type:

DeviceApprovalsChangeDesktopPolicyDetails

get_device_approvals_change_mobile_policy_details()

Only call this if is_device_approvals_change_mobile_policy_details() is true.

Return type:

DeviceApprovalsChangeMobilePolicyDetails

get_device_approvals_change_overage_action_details()

Only call this if is_device_approvals_change_overage_action_details() is true.

Return type:

DeviceApprovalsChangeOverageActionDetails

Only call this if is_device_approvals_change_unlink_action_details() is true.

Return type:

DeviceApprovalsChangeUnlinkActionDetails

get_device_approvals_remove_exception_details()

Only call this if is_device_approvals_remove_exception_details() is true.

Return type:

DeviceApprovalsRemoveExceptionDetails

get_device_change_ip_desktop_details()

Only call this if is_device_change_ip_desktop_details() is true.

Return type:

DeviceChangeIpDesktopDetails

get_device_change_ip_mobile_details()

Only call this if is_device_change_ip_mobile_details() is true.

Return type:

DeviceChangeIpMobileDetails

get_device_change_ip_web_details()

Only call this if is_device_change_ip_web_details() is true.

Return type:

DeviceChangeIpWebDetails

Only call this if is_device_delete_on_unlink_fail_details() is true.

Return type:

DeviceDeleteOnUnlinkFailDetails

Only call this if is_device_delete_on_unlink_success_details() is true.

Return type:

DeviceDeleteOnUnlinkSuccessDetails

Only call this if is_device_link_fail_details() is true.

Return type:

DeviceLinkFailDetails

Only call this if is_device_link_success_details() is true.

Return type:

DeviceLinkSuccessDetails

get_device_management_disabled_details()

Only call this if is_device_management_disabled_details() is true.

Return type:

DeviceManagementDisabledDetails

get_device_management_enabled_details()

Only call this if is_device_management_enabled_details() is true.

Return type:

DeviceManagementEnabledDetails

get_device_sync_backup_status_changed_details()

Only call this if is_device_sync_backup_status_changed_details() is true.

Return type:

DeviceSyncBackupStatusChangedDetails

Only call this if is_device_unlink_details() is true.

Return type:

DeviceUnlinkDetails

get_directory_restrictions_add_members_details()

Only call this if is_directory_restrictions_add_members_details() is true.

Return type:

DirectoryRestrictionsAddMembersDetails

get_directory_restrictions_remove_members_details()

Only call this if is_directory_restrictions_remove_members_details() is true.

Return type:

DirectoryRestrictionsRemoveMembersDetails

get_disabled_domain_invites_details()

Only call this if is_disabled_domain_invites_details() is true.

Return type:

DisabledDomainInvitesDetails

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:

DomainInvitesApproveRequestToJoinTeamDetails

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:

DomainInvitesDeclineRequestToJoinTeamDetails

get_domain_invites_email_existing_users_details()

Only call this if is_domain_invites_email_existing_users_details() is true.

Return type:

DomainInvitesEmailExistingUsersDetails

get_domain_invites_request_to_join_team_details()

Only call this if is_domain_invites_request_to_join_team_details() is true.

Return type:

DomainInvitesRequestToJoinTeamDetails

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:

DomainInvitesSetInviteNewUserPrefToNoDetails

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:

DomainInvitesSetInviteNewUserPrefToYesDetails

get_domain_verification_add_domain_fail_details()

Only call this if is_domain_verification_add_domain_fail_details() is true.

Return type:

DomainVerificationAddDomainFailDetails

get_domain_verification_add_domain_success_details()

Only call this if is_domain_verification_add_domain_success_details() is true.

Return type:

DomainVerificationAddDomainSuccessDetails

get_domain_verification_remove_domain_details()

Only call this if is_domain_verification_remove_domain_details() is true.

Return type:

DomainVerificationRemoveDomainDetails

get_dropbox_passwords_exported_details()

Only call this if is_dropbox_passwords_exported_details() is true.

Return type:

DropboxPasswordsExportedDetails

get_dropbox_passwords_new_device_enrolled_details()

Only call this if is_dropbox_passwords_new_device_enrolled_details() is true.

Return type:

DropboxPasswordsNewDeviceEnrolledDetails

get_dropbox_passwords_policy_changed_details()

Only call this if is_dropbox_passwords_policy_changed_details() is true.

Return type:

DropboxPasswordsPolicyChangedDetails

get_email_ingest_policy_changed_details()

Only call this if is_email_ingest_policy_changed_details() is true.

Return type:

EmailIngestPolicyChangedDetails

get_email_ingest_receive_file_details()

Only call this if is_email_ingest_receive_file_details() is true.

Return type:

EmailIngestReceiveFileDetails

get_emm_add_exception_details()

Only call this if is_emm_add_exception_details() is true.

Return type:

EmmAddExceptionDetails

get_emm_change_policy_details()

Only call this if is_emm_change_policy_details() is true.

Return type:

EmmChangePolicyDetails

get_emm_create_exceptions_report_details()

Only call this if is_emm_create_exceptions_report_details() is true.

Return type:

EmmCreateExceptionsReportDetails

get_emm_create_usage_report_details()

Only call this if is_emm_create_usage_report_details() is true.

Return type:

EmmCreateUsageReportDetails

get_emm_error_details()

Only call this if is_emm_error_details() is true.

Return type:

EmmErrorDetails

get_emm_refresh_auth_token_details()

Only call this if is_emm_refresh_auth_token_details() is true.

Return type:

EmmRefreshAuthTokenDetails

get_emm_remove_exception_details()

Only call this if is_emm_remove_exception_details() is true.

Return type:

EmmRemoveExceptionDetails

get_enabled_domain_invites_details()

Only call this if is_enabled_domain_invites_details() is true.

Return type:

EnabledDomainInvitesDetails

get_encrypted_folder_cancel_team_key_rotation_details()

Only call this if is_encrypted_folder_cancel_team_key_rotation_details() is true.

Return type:

EncryptedFolderCancelTeamKeyRotationDetails

get_encrypted_folder_enroll_backup_key_details()

Only call this if is_encrypted_folder_enroll_backup_key_details() is true.

Return type:

EncryptedFolderEnrollBackupKeyDetails

get_encrypted_folder_enroll_client_details()

Only call this if is_encrypted_folder_enroll_client_details() is true.

Return type:

EncryptedFolderEnrollClientDetails

get_encrypted_folder_enroll_team_details()

Only call this if is_encrypted_folder_enroll_team_details() is true.

Return type:

EncryptedFolderEnrollTeamDetails

get_encrypted_folder_finish_team_unenrollment_details()

Only call this if is_encrypted_folder_finish_team_unenrollment_details() is true.

Return type:

EncryptedFolderFinishTeamUnenrollmentDetails

get_encrypted_folder_init_team_key_rotation_details()

Only call this if is_encrypted_folder_init_team_key_rotation_details() is true.

Return type:

EncryptedFolderInitTeamKeyRotationDetails

get_encrypted_folder_init_team_unenrollment_details()

Only call this if is_encrypted_folder_init_team_unenrollment_details() is true.

Return type:

EncryptedFolderInitTeamUnenrollmentDetails

get_encrypted_folder_remove_backup_key_details()

Only call this if is_encrypted_folder_remove_backup_key_details() is true.

Return type:

EncryptedFolderRemoveBackupKeyDetails

get_encrypted_folder_rotate_team_key_details()

Only call this if is_encrypted_folder_rotate_team_key_details() is true.

Return type:

EncryptedFolderRotateTeamKeyDetails

get_encrypted_folder_unenroll_client_details()

Only call this if is_encrypted_folder_unenroll_client_details() is true.

Return type:

EncryptedFolderUnenrollClientDetails

get_ended_enterprise_admin_session_deprecated_details()

Only call this if is_ended_enterprise_admin_session_deprecated_details() is true.

Return type:

EndedEnterpriseAdminSessionDeprecatedDetails

get_ended_enterprise_admin_session_details()

Only call this if is_ended_enterprise_admin_session_details() is true.

Return type:

EndedEnterpriseAdminSessionDetails

get_enterprise_settings_locking_details()

Only call this if is_enterprise_settings_locking_details() is true.

Return type:

EnterpriseSettingsLockingDetails

get_export_members_report_details()

Only call this if is_export_members_report_details() is true.

Return type:

ExportMembersReportDetails

get_export_members_report_fail_details()

Only call this if is_export_members_report_fail_details() is true.

Return type:

ExportMembersReportFailDetails

get_extended_version_history_change_policy_details()

Only call this if is_extended_version_history_change_policy_details() is true.

Return type:

ExtendedVersionHistoryChangePolicyDetails

get_external_drive_backup_eligibility_status_checked_details()

Only call this if is_external_drive_backup_eligibility_status_checked_details() is true.

Return type:

ExternalDriveBackupEligibilityStatusCheckedDetails

get_external_drive_backup_policy_changed_details()

Only call this if is_external_drive_backup_policy_changed_details() is true.

Return type:

ExternalDriveBackupPolicyChangedDetails

get_external_drive_backup_status_changed_details()

Only call this if is_external_drive_backup_status_changed_details() is true.

Return type:

ExternalDriveBackupStatusChangedDetails

get_external_sharing_create_report_details()

Only call this if is_external_sharing_create_report_details() is true.

Return type:

ExternalSharingCreateReportDetails

get_external_sharing_report_failed_details()

Only call this if is_external_sharing_report_failed_details() is true.

Return type:

ExternalSharingReportFailedDetails

get_file_add_comment_details()

Only call this if is_file_add_comment_details() is true.

Return type:

FileAddCommentDetails

get_file_add_details()

Only call this if is_file_add_details() is true.

Return type:

FileAddDetails

get_file_add_from_automation_details()

Only call this if is_file_add_from_automation_details() is true.

Return type:

FileAddFromAutomationDetails

get_file_change_comment_subscription_details()

Only call this if is_file_change_comment_subscription_details() is true.

Return type:

FileChangeCommentSubscriptionDetails

get_file_comments_change_policy_details()

Only call this if is_file_comments_change_policy_details() is true.

Return type:

FileCommentsChangePolicyDetails

get_file_copy_details()

Only call this if is_file_copy_details() is true.

Return type:

FileCopyDetails

get_file_delete_comment_details()

Only call this if is_file_delete_comment_details() is true.

Return type:

FileDeleteCommentDetails

get_file_delete_details()

Only call this if is_file_delete_details() is true.

Return type:

FileDeleteDetails

get_file_download_details()

Only call this if is_file_download_details() is true.

Return type:

FileDownloadDetails

get_file_edit_comment_details()

Only call this if is_file_edit_comment_details() is true.

Return type:

FileEditCommentDetails

get_file_edit_details()

Only call this if is_file_edit_details() is true.

Return type:

FileEditDetails

get_file_get_copy_reference_details()

Only call this if is_file_get_copy_reference_details() is true.

Return type:

FileGetCopyReferenceDetails

get_file_like_comment_details()

Only call this if is_file_like_comment_details() is true.

Return type:

FileLikeCommentDetails

get_file_locking_lock_status_changed_details()

Only call this if is_file_locking_lock_status_changed_details() is true.

Return type:

FileLockingLockStatusChangedDetails

get_file_locking_policy_changed_details()

Only call this if is_file_locking_policy_changed_details() is true.

Return type:

FileLockingPolicyChangedDetails

get_file_move_details()

Only call this if is_file_move_details() is true.

Return type:

FileMoveDetails

get_file_permanently_delete_details()

Only call this if is_file_permanently_delete_details() is true.

Return type:

FilePermanentlyDeleteDetails

get_file_preview_details()

Only call this if is_file_preview_details() is true.

Return type:

FilePreviewDetails

get_file_provider_migration_policy_changed_details()

Only call this if is_file_provider_migration_policy_changed_details() is true.

Return type:

FileProviderMigrationPolicyChangedDetails

get_file_rename_details()

Only call this if is_file_rename_details() is true.

Return type:

FileRenameDetails

get_file_request_auto_close_details()

Only call this if is_file_request_auto_close_details() is true.

Return type:

FileRequestAutoCloseDetails

get_file_request_change_details()

Only call this if is_file_request_change_details() is true.

Return type:

FileRequestChangeDetails

get_file_request_close_details()

Only call this if is_file_request_close_details() is true.

Return type:

FileRequestCloseDetails

get_file_request_create_details()

Only call this if is_file_request_create_details() is true.

Return type:

FileRequestCreateDetails

get_file_request_delete_details()

Only call this if is_file_request_delete_details() is true.

Return type:

FileRequestDeleteDetails

get_file_request_receive_file_details()

Only call this if is_file_request_receive_file_details() is true.

Return type:

FileRequestReceiveFileDetails

get_file_requests_change_policy_details()

Only call this if is_file_requests_change_policy_details() is true.

Return type:

FileRequestsChangePolicyDetails

get_file_requests_emails_enabled_details()

Only call this if is_file_requests_emails_enabled_details() is true.

Return type:

FileRequestsEmailsEnabledDetails

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:

FileRequestsEmailsRestrictedToTeamOnlyDetails

get_file_resolve_comment_details()

Only call this if is_file_resolve_comment_details() is true.

Return type:

FileResolveCommentDetails

get_file_restore_details()

Only call this if is_file_restore_details() is true.

Return type:

FileRestoreDetails

get_file_revert_details()

Only call this if is_file_revert_details() is true.

Return type:

FileRevertDetails

get_file_rollback_changes_details()

Only call this if is_file_rollback_changes_details() is true.

Return type:

FileRollbackChangesDetails

get_file_save_copy_reference_details()

Only call this if is_file_save_copy_reference_details() is true.

Return type:

FileSaveCopyReferenceDetails

get_file_transfers_file_add_details()

Only call this if is_file_transfers_file_add_details() is true.

Return type:

FileTransfersFileAddDetails

get_file_transfers_policy_changed_details()

Only call this if is_file_transfers_policy_changed_details() is true.

Return type:

FileTransfersPolicyChangedDetails

get_file_transfers_transfer_delete_details()

Only call this if is_file_transfers_transfer_delete_details() is true.

Return type:

FileTransfersTransferDeleteDetails

get_file_transfers_transfer_download_details()

Only call this if is_file_transfers_transfer_download_details() is true.

Return type:

FileTransfersTransferDownloadDetails

get_file_transfers_transfer_send_details()

Only call this if is_file_transfers_transfer_send_details() is true.

Return type:

FileTransfersTransferSendDetails

get_file_transfers_transfer_view_details()

Only call this if is_file_transfers_transfer_view_details() is true.

Return type:

FileTransfersTransferViewDetails

get_file_unlike_comment_details()

Only call this if is_file_unlike_comment_details() is true.

Return type:

FileUnlikeCommentDetails

get_file_unresolve_comment_details()

Only call this if is_file_unresolve_comment_details() is true.

Return type:

FileUnresolveCommentDetails

get_flexible_file_names_policy_changed_details()

Only call this if is_flexible_file_names_policy_changed_details() is true.

Return type:

FlexibleFileNamesPolicyChangedDetails

Only call this if is_folder_link_restriction_policy_changed_details() is true.

Return type:

FolderLinkRestrictionPolicyChangedDetails

get_folder_overview_description_changed_details()

Only call this if is_folder_overview_description_changed_details() is true.

Return type:

FolderOverviewDescriptionChangedDetails

get_folder_overview_item_pinned_details()

Only call this if is_folder_overview_item_pinned_details() is true.

Return type:

FolderOverviewItemPinnedDetails

get_folder_overview_item_unpinned_details()

Only call this if is_folder_overview_item_unpinned_details() is true.

Return type:

FolderOverviewItemUnpinnedDetails

get_google_sso_change_policy_details()

Only call this if is_google_sso_change_policy_details() is true.

Return type:

GoogleSsoChangePolicyDetails

get_governance_policy_add_folder_failed_details()

Only call this if is_governance_policy_add_folder_failed_details() is true.

Return type:

GovernancePolicyAddFolderFailedDetails

get_governance_policy_add_folders_details()

Only call this if is_governance_policy_add_folders_details() is true.

Return type:

GovernancePolicyAddFoldersDetails

get_governance_policy_content_disposed_details()

Only call this if is_governance_policy_content_disposed_details() is true.

Return type:

GovernancePolicyContentDisposedDetails

get_governance_policy_create_details()

Only call this if is_governance_policy_create_details() is true.

Return type:

GovernancePolicyCreateDetails

get_governance_policy_delete_details()

Only call this if is_governance_policy_delete_details() is true.

Return type:

GovernancePolicyDeleteDetails

get_governance_policy_edit_details_details()

Only call this if is_governance_policy_edit_details_details() is true.

Return type:

GovernancePolicyEditDetailsDetails

get_governance_policy_edit_duration_details()

Only call this if is_governance_policy_edit_duration_details() is true.

Return type:

GovernancePolicyEditDurationDetails

get_governance_policy_export_created_details()

Only call this if is_governance_policy_export_created_details() is true.

Return type:

GovernancePolicyExportCreatedDetails

get_governance_policy_export_removed_details()

Only call this if is_governance_policy_export_removed_details() is true.

Return type:

GovernancePolicyExportRemovedDetails

get_governance_policy_remove_folders_details()

Only call this if is_governance_policy_remove_folders_details() is true.

Return type:

GovernancePolicyRemoveFoldersDetails

get_governance_policy_report_created_details()

Only call this if is_governance_policy_report_created_details() is true.

Return type:

GovernancePolicyReportCreatedDetails

get_governance_policy_zip_part_downloaded_details()

Only call this if is_governance_policy_zip_part_downloaded_details() is true.

Return type:

GovernancePolicyZipPartDownloadedDetails

get_group_add_external_id_details()

Only call this if is_group_add_external_id_details() is true.

Return type:

GroupAddExternalIdDetails

get_group_add_member_details()

Only call this if is_group_add_member_details() is true.

Return type:

GroupAddMemberDetails

get_group_change_external_id_details()

Only call this if is_group_change_external_id_details() is true.

Return type:

GroupChangeExternalIdDetails

get_group_change_management_type_details()

Only call this if is_group_change_management_type_details() is true.

Return type:

GroupChangeManagementTypeDetails

get_group_change_member_role_details()

Only call this if is_group_change_member_role_details() is true.

Return type:

GroupChangeMemberRoleDetails

get_group_create_details()

Only call this if is_group_create_details() is true.

Return type:

GroupCreateDetails

get_group_delete_details()

Only call this if is_group_delete_details() is true.

Return type:

GroupDeleteDetails

get_group_description_updated_details()

Only call this if is_group_description_updated_details() is true.

Return type:

GroupDescriptionUpdatedDetails

get_group_external_sharing_setting_override_changed_details()

Only call this if is_group_external_sharing_setting_override_changed_details() is true.

Return type:

GroupExternalSharingSettingOverrideChangedDetails

get_group_join_policy_updated_details()

Only call this if is_group_join_policy_updated_details() is true.

Return type:

GroupJoinPolicyUpdatedDetails

get_group_moved_details()

Only call this if is_group_moved_details() is true.

Return type:

GroupMovedDetails

get_group_remove_external_id_details()

Only call this if is_group_remove_external_id_details() is true.

Return type:

GroupRemoveExternalIdDetails

get_group_remove_member_details()

Only call this if is_group_remove_member_details() is true.

Return type:

GroupRemoveMemberDetails

get_group_rename_details()

Only call this if is_group_rename_details() is true.

Return type:

GroupRenameDetails

get_group_user_management_change_policy_details()

Only call this if is_group_user_management_change_policy_details() is true.

Return type:

GroupUserManagementChangePolicyDetails

get_guest_admin_change_status_details()

Only call this if is_guest_admin_change_status_details() is true.

Return type:

GuestAdminChangeStatusDetails

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:

GuestAdminSignedInViaTrustedTeamsDetails

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:

GuestAdminSignedOutViaTrustedTeamsDetails

get_integration_connected_details()

Only call this if is_integration_connected_details() is true.

Return type:

IntegrationConnectedDetails

get_integration_disconnected_details()

Only call this if is_integration_disconnected_details() is true.

Return type:

IntegrationDisconnectedDetails

get_integration_policy_changed_details()

Only call this if is_integration_policy_changed_details() is true.

Return type:

IntegrationPolicyChangedDetails

get_invite_acceptance_email_policy_changed_details()

Only call this if is_invite_acceptance_email_policy_changed_details() is true.

Return type:

InviteAcceptanceEmailPolicyChangedDetails

Only call this if is_legal_holds_activate_a_hold_details() is true.

Return type:

LegalHoldsActivateAHoldDetails

Only call this if is_legal_holds_add_members_details() is true.

Return type:

LegalHoldsAddMembersDetails

Only call this if is_legal_holds_change_hold_details_details() is true.

Return type:

LegalHoldsChangeHoldDetailsDetails

Only call this if is_legal_holds_change_hold_name_details() is true.

Return type:

LegalHoldsChangeHoldNameDetails

Only call this if is_legal_holds_export_a_hold_details() is true.

Return type:

LegalHoldsExportAHoldDetails

Only call this if is_legal_holds_export_cancelled_details() is true.

Return type:

LegalHoldsExportCancelledDetails

Only call this if is_legal_holds_export_downloaded_details() is true.

Return type:

LegalHoldsExportDownloadedDetails

Only call this if is_legal_holds_export_removed_details() is true.

Return type:

LegalHoldsExportRemovedDetails

Only call this if is_legal_holds_release_a_hold_details() is true.

Return type:

LegalHoldsReleaseAHoldDetails

Only call this if is_legal_holds_remove_members_details() is true.

Return type:

LegalHoldsRemoveMembersDetails

Only call this if is_legal_holds_report_a_hold_details() is true.

Return type:

LegalHoldsReportAHoldDetails

get_login_fail_details()

Only call this if is_login_fail_details() is true.

Return type:

LoginFailDetails

get_login_success_details()

Only call this if is_login_success_details() is true.

Return type:

LoginSuccessDetails

get_logout_details()

Only call this if is_logout_details() is true.

Return type:

LogoutDetails

get_media_hub_adding_people_policy_changed_details()

Only call this if is_media_hub_adding_people_policy_changed_details() is true.

Return type:

MediaHubAddingPeoplePolicyChangedDetails

get_media_hub_download_policy_changed_details()

Only call this if is_media_hub_download_policy_changed_details() is true.

Return type:

MediaHubDownloadPolicyChangedDetails

get_media_hub_file_downloaded_details()

Only call this if is_media_hub_file_downloaded_details() is true.

Return type:

MediaHubFileDownloadedDetails

Only call this if is_media_hub_link_sharing_policy_changed_details() is true.

Return type:

MediaHubLinkSharingPolicyChangedDetails

get_media_hub_project_team_add_details()

Only call this if is_media_hub_project_team_add_details() is true.

Return type:

MediaHubProjectTeamAddDetails

get_media_hub_project_team_delete_details()

Only call this if is_media_hub_project_team_delete_details() is true.

Return type:

MediaHubProjectTeamDeleteDetails

get_media_hub_project_team_role_changed_details()

Only call this if is_media_hub_project_team_role_changed_details() is true.

Return type:

MediaHubProjectTeamRoleChangedDetails

Only call this if is_media_hub_shared_link_audience_changed_details() is true.

Return type:

MediaHubSharedLinkAudienceChangedDetails

Only call this if is_media_hub_shared_link_created_details() is true.

Return type:

MediaHubSharedLinkCreatedDetails

Only call this if is_media_hub_shared_link_download_setting_changed_details() is true.

Return type:

MediaHubSharedLinkDownloadSettingChangedDetails

Only call this if is_media_hub_shared_link_revoked_details() is true.

Return type:

MediaHubSharedLinkRevokedDetails

get_member_access_details_create_report_details()

Only call this if is_member_access_details_create_report_details() is true.

Return type:

MemberAccessDetailsCreateReportDetails

get_member_access_details_create_report_failed_details()

Only call this if is_member_access_details_create_report_failed_details() is true.

Return type:

MemberAccessDetailsCreateReportFailedDetails

get_member_add_external_id_details()

Only call this if is_member_add_external_id_details() is true.

Return type:

MemberAddExternalIdDetails

get_member_add_name_details()

Only call this if is_member_add_name_details() is true.

Return type:

MemberAddNameDetails

get_member_change_admin_role_details()

Only call this if is_member_change_admin_role_details() is true.

Return type:

MemberChangeAdminRoleDetails

get_member_change_email_details()

Only call this if is_member_change_email_details() is true.

Return type:

MemberChangeEmailDetails

get_member_change_external_id_details()

Only call this if is_member_change_external_id_details() is true.

Return type:

MemberChangeExternalIdDetails

get_member_change_membership_type_details()

Only call this if is_member_change_membership_type_details() is true.

Return type:

MemberChangeMembershipTypeDetails

get_member_change_name_details()

Only call this if is_member_change_name_details() is true.

Return type:

MemberChangeNameDetails

get_member_change_reseller_role_details()

Only call this if is_member_change_reseller_role_details() is true.

Return type:

MemberChangeResellerRoleDetails

get_member_change_status_details()

Only call this if is_member_change_status_details() is true.

Return type:

MemberChangeStatusDetails

get_member_delete_manual_contacts_details()

Only call this if is_member_delete_manual_contacts_details() is true.

Return type:

MemberDeleteManualContactsDetails

get_member_delete_profile_photo_details()

Only call this if is_member_delete_profile_photo_details() is true.

Return type:

MemberDeleteProfilePhotoDetails

get_member_folder_contents_accessed_details()

Only call this if is_member_folder_contents_accessed_details() is true.

Return type:

MemberFolderContentsAccessedDetails

get_member_permanently_delete_account_contents_details()

Only call this if is_member_permanently_delete_account_contents_details() is true.

Return type:

MemberPermanentlyDeleteAccountContentsDetails

get_member_remove_external_id_details()

Only call this if is_member_remove_external_id_details() is true.

Return type:

MemberRemoveExternalIdDetails

get_member_requests_change_policy_details()

Only call this if is_member_requests_change_policy_details() is true.

Return type:

MemberRequestsChangePolicyDetails

get_member_send_invite_policy_changed_details()

Only call this if is_member_send_invite_policy_changed_details() is true.

Return type:

MemberSendInvitePolicyChangedDetails

get_member_set_profile_photo_details()

Only call this if is_member_set_profile_photo_details() is true.

Return type:

MemberSetProfilePhotoDetails

get_member_space_limits_add_custom_quota_details()

Only call this if is_member_space_limits_add_custom_quota_details() is true.

Return type:

MemberSpaceLimitsAddCustomQuotaDetails

get_member_space_limits_add_exception_details()

Only call this if is_member_space_limits_add_exception_details() is true.

Return type:

MemberSpaceLimitsAddExceptionDetails

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:

MemberSpaceLimitsChangeCapsTypePolicyDetails

get_member_space_limits_change_custom_quota_details()

Only call this if is_member_space_limits_change_custom_quota_details() is true.

Return type:

MemberSpaceLimitsChangeCustomQuotaDetails

get_member_space_limits_change_policy_details()

Only call this if is_member_space_limits_change_policy_details() is true.

Return type:

MemberSpaceLimitsChangePolicyDetails

get_member_space_limits_change_status_details()

Only call this if is_member_space_limits_change_status_details() is true.

Return type:

MemberSpaceLimitsChangeStatusDetails

get_member_space_limits_remove_custom_quota_details()

Only call this if is_member_space_limits_remove_custom_quota_details() is true.

Return type:

MemberSpaceLimitsRemoveCustomQuotaDetails

get_member_space_limits_remove_exception_details()

Only call this if is_member_space_limits_remove_exception_details() is true.

Return type:

MemberSpaceLimitsRemoveExceptionDetails

get_member_suggest_details()

Only call this if is_member_suggest_details() is true.

Return type:

MemberSuggestDetails

get_member_suggestions_change_policy_details()

Only call this if is_member_suggestions_change_policy_details() is true.

Return type:

MemberSuggestionsChangePolicyDetails

get_member_transfer_account_contents_details()

Only call this if is_member_transfer_account_contents_details() is true.

Return type:

MemberTransferAccountContentsDetails

get_microsoft_login_change_policy_details()

Only call this if is_microsoft_login_change_policy_details() is true.

Return type:

MicrosoftLoginChangePolicyDetails

get_microsoft_office_addin_change_policy_details()

Only call this if is_microsoft_office_addin_change_policy_details() is true.

Return type:

MicrosoftOfficeAddinChangePolicyDetails

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:

MissingDetails

get_multi_team_identity_policy_changed_details()

Only call this if is_multi_team_identity_policy_changed_details() is true.

Return type:

MultiTeamIdentityPolicyChangedDetails

get_network_control_change_policy_details()

Only call this if is_network_control_change_policy_details() is true.

Return type:

NetworkControlChangePolicyDetails

Only call this if is_no_expiration_link_gen_create_report_details() is true.

Return type:

NoExpirationLinkGenCreateReportDetails

Only call this if is_no_expiration_link_gen_report_failed_details() is true.

Return type:

NoExpirationLinkGenReportFailedDetails

Only call this if is_no_password_link_gen_create_report_details() is true.

Return type:

NoPasswordLinkGenCreateReportDetails

Only call this if is_no_password_link_gen_report_failed_details() is true.

Return type:

NoPasswordLinkGenReportFailedDetails

Only call this if is_no_password_link_view_create_report_details() is true.

Return type:

NoPasswordLinkViewCreateReportDetails

Only call this if is_no_password_link_view_report_failed_details() is true.

Return type:

NoPasswordLinkViewReportFailedDetails

get_note_acl_invite_only_details()

Only call this if is_note_acl_invite_only_details() is true.

Return type:

NoteAclInviteOnlyDetails

Only call this if is_note_acl_link_details() is true.

Return type:

NoteAclLinkDetails

Only call this if is_note_acl_team_link_details() is true.

Return type:

NoteAclTeamLinkDetails

get_note_share_receive_details()

Only call this if is_note_share_receive_details() is true.

Return type:

NoteShareReceiveDetails

get_note_shared_details()

Only call this if is_note_shared_details() is true.

Return type:

NoteSharedDetails

get_object_label_added_details()

Only call this if is_object_label_added_details() is true.

Return type:

ObjectLabelAddedDetails

get_object_label_removed_details()

Only call this if is_object_label_removed_details() is true.

Return type:

ObjectLabelRemovedDetails

get_object_label_updated_value_details()

Only call this if is_object_label_updated_value_details() is true.

Return type:

ObjectLabelUpdatedValueDetails

get_open_note_shared_details()

Only call this if is_open_note_shared_details() is true.

Return type:

OpenNoteSharedDetails

get_organize_folder_with_tidy_details()

Only call this if is_organize_folder_with_tidy_details() is true.

Return type:

OrganizeFolderWithTidyDetails

Only call this if is_outdated_link_view_create_report_details() is true.

Return type:

OutdatedLinkViewCreateReportDetails

Only call this if is_outdated_link_view_report_failed_details() is true.

Return type:

OutdatedLinkViewReportFailedDetails

get_paper_admin_export_start_details()

Only call this if is_paper_admin_export_start_details() is true.

Return type:

PaperAdminExportStartDetails

get_paper_change_deployment_policy_details()

Only call this if is_paper_change_deployment_policy_details() is true.

Return type:

PaperChangeDeploymentPolicyDetails

Only call this if is_paper_change_member_link_policy_details() is true.

Return type:

PaperChangeMemberLinkPolicyDetails

get_paper_change_member_policy_details()

Only call this if is_paper_change_member_policy_details() is true.

Return type:

PaperChangeMemberPolicyDetails

get_paper_change_policy_details()

Only call this if is_paper_change_policy_details() is true.

Return type:

PaperChangePolicyDetails

get_paper_content_add_member_details()

Only call this if is_paper_content_add_member_details() is true.

Return type:

PaperContentAddMemberDetails

get_paper_content_add_to_folder_details()

Only call this if is_paper_content_add_to_folder_details() is true.

Return type:

PaperContentAddToFolderDetails

get_paper_content_archive_details()

Only call this if is_paper_content_archive_details() is true.

Return type:

PaperContentArchiveDetails

get_paper_content_create_details()

Only call this if is_paper_content_create_details() is true.

Return type:

PaperContentCreateDetails

get_paper_content_permanently_delete_details()

Only call this if is_paper_content_permanently_delete_details() is true.

Return type:

PaperContentPermanentlyDeleteDetails

get_paper_content_remove_from_folder_details()

Only call this if is_paper_content_remove_from_folder_details() is true.

Return type:

PaperContentRemoveFromFolderDetails

get_paper_content_remove_member_details()

Only call this if is_paper_content_remove_member_details() is true.

Return type:

PaperContentRemoveMemberDetails

get_paper_content_rename_details()

Only call this if is_paper_content_rename_details() is true.

Return type:

PaperContentRenameDetails

get_paper_content_restore_details()

Only call this if is_paper_content_restore_details() is true.

Return type:

PaperContentRestoreDetails

get_paper_default_folder_policy_changed_details()

Only call this if is_paper_default_folder_policy_changed_details() is true.

Return type:

PaperDefaultFolderPolicyChangedDetails

get_paper_desktop_policy_changed_details()

Only call this if is_paper_desktop_policy_changed_details() is true.

Return type:

PaperDesktopPolicyChangedDetails

get_paper_doc_add_comment_details()

Only call this if is_paper_doc_add_comment_details() is true.

Return type:

PaperDocAddCommentDetails

get_paper_doc_change_member_role_details()

Only call this if is_paper_doc_change_member_role_details() is true.

Return type:

PaperDocChangeMemberRoleDetails

get_paper_doc_change_sharing_policy_details()

Only call this if is_paper_doc_change_sharing_policy_details() is true.

Return type:

PaperDocChangeSharingPolicyDetails

get_paper_doc_change_subscription_details()

Only call this if is_paper_doc_change_subscription_details() is true.

Return type:

PaperDocChangeSubscriptionDetails

get_paper_doc_delete_comment_details()

Only call this if is_paper_doc_delete_comment_details() is true.

Return type:

PaperDocDeleteCommentDetails

get_paper_doc_deleted_details()

Only call this if is_paper_doc_deleted_details() is true.

Return type:

PaperDocDeletedDetails

get_paper_doc_download_details()

Only call this if is_paper_doc_download_details() is true.

Return type:

PaperDocDownloadDetails

get_paper_doc_edit_comment_details()

Only call this if is_paper_doc_edit_comment_details() is true.

Return type:

PaperDocEditCommentDetails

get_paper_doc_edit_details()

Only call this if is_paper_doc_edit_details() is true.

Return type:

PaperDocEditDetails

get_paper_doc_followed_details()

Only call this if is_paper_doc_followed_details() is true.

Return type:

PaperDocFollowedDetails

get_paper_doc_mention_details()

Only call this if is_paper_doc_mention_details() is true.

Return type:

PaperDocMentionDetails

get_paper_doc_ownership_changed_details()

Only call this if is_paper_doc_ownership_changed_details() is true.

Return type:

PaperDocOwnershipChangedDetails

get_paper_doc_request_access_details()

Only call this if is_paper_doc_request_access_details() is true.

Return type:

PaperDocRequestAccessDetails

get_paper_doc_resolve_comment_details()

Only call this if is_paper_doc_resolve_comment_details() is true.

Return type:

PaperDocResolveCommentDetails

get_paper_doc_revert_details()

Only call this if is_paper_doc_revert_details() is true.

Return type:

PaperDocRevertDetails

get_paper_doc_slack_share_details()

Only call this if is_paper_doc_slack_share_details() is true.

Return type:

PaperDocSlackShareDetails

get_paper_doc_team_invite_details()

Only call this if is_paper_doc_team_invite_details() is true.

Return type:

PaperDocTeamInviteDetails

get_paper_doc_trashed_details()

Only call this if is_paper_doc_trashed_details() is true.

Return type:

PaperDocTrashedDetails

get_paper_doc_unresolve_comment_details()

Only call this if is_paper_doc_unresolve_comment_details() is true.

Return type:

PaperDocUnresolveCommentDetails

get_paper_doc_untrashed_details()

Only call this if is_paper_doc_untrashed_details() is true.

Return type:

PaperDocUntrashedDetails

get_paper_doc_view_details()

Only call this if is_paper_doc_view_details() is true.

Return type:

PaperDocViewDetails

get_paper_enabled_users_group_addition_details()

Only call this if is_paper_enabled_users_group_addition_details() is true.

Return type:

PaperEnabledUsersGroupAdditionDetails

get_paper_enabled_users_group_removal_details()

Only call this if is_paper_enabled_users_group_removal_details() is true.

Return type:

PaperEnabledUsersGroupRemovalDetails

get_paper_external_view_allow_details()

Only call this if is_paper_external_view_allow_details() is true.

Return type:

PaperExternalViewAllowDetails

get_paper_external_view_default_team_details()

Only call this if is_paper_external_view_default_team_details() is true.

Return type:

PaperExternalViewDefaultTeamDetails

get_paper_external_view_forbid_details()

Only call this if is_paper_external_view_forbid_details() is true.

Return type:

PaperExternalViewForbidDetails

get_paper_folder_change_subscription_details()

Only call this if is_paper_folder_change_subscription_details() is true.

Return type:

PaperFolderChangeSubscriptionDetails

get_paper_folder_deleted_details()

Only call this if is_paper_folder_deleted_details() is true.

Return type:

PaperFolderDeletedDetails

get_paper_folder_followed_details()

Only call this if is_paper_folder_followed_details() is true.

Return type:

PaperFolderFollowedDetails

get_paper_folder_team_invite_details()

Only call this if is_paper_folder_team_invite_details() is true.

Return type:

PaperFolderTeamInviteDetails

Only call this if is_paper_published_link_change_permission_details() is true.

Return type:

PaperPublishedLinkChangePermissionDetails

Only call this if is_paper_published_link_create_details() is true.

Return type:

PaperPublishedLinkCreateDetails

Only call this if is_paper_published_link_disabled_details() is true.

Return type:

PaperPublishedLinkDisabledDetails

Only call this if is_paper_published_link_view_details() is true.

Return type:

PaperPublishedLinkViewDetails

get_passkey_add_details()

Only call this if is_passkey_add_details() is true.

Return type:

PasskeyAddDetails

get_passkey_login_policy_changed_details()

Only call this if is_passkey_login_policy_changed_details() is true.

Return type:

PasskeyLoginPolicyChangedDetails

get_passkey_remove_details()

Only call this if is_passkey_remove_details() is true.

Return type:

PasskeyRemoveDetails

get_password_change_details()

Only call this if is_password_change_details() is true.

Return type:

PasswordChangeDetails

get_password_reset_all_details()

Only call this if is_password_reset_all_details() is true.

Return type:

PasswordResetAllDetails

get_password_reset_details()

Only call this if is_password_reset_details() is true.

Return type:

PasswordResetDetails

get_password_strength_requirements_change_policy_details()

Only call this if is_password_strength_requirements_change_policy_details() is true.

Return type:

PasswordStrengthRequirementsChangePolicyDetails

get_pending_secondary_email_added_details()

Only call this if is_pending_secondary_email_added_details() is true.

Return type:

PendingSecondaryEmailAddedDetails

get_permanent_delete_change_policy_details()

Only call this if is_permanent_delete_change_policy_details() is true.

Return type:

PermanentDeleteChangePolicyDetails

get_previews_ai_policy_changed_details()

Only call this if is_previews_ai_policy_changed_details() is true.

Return type:

PreviewsAiPolicyChangedDetails

get_product_assigned_to_member_details()

Only call this if is_product_assigned_to_member_details() is true.

Return type:

ProductAssignedToMemberDetails

get_product_removed_from_member_details()

Only call this if is_product_removed_from_member_details() is true.

Return type:

ProductRemovedFromMemberDetails

get_protect_action_add_collaborator_details()

Only call this if is_protect_action_add_collaborator_details() is true.

Return type:

ProtectActionAddCollaboratorDetails

Only call this if is_protect_action_add_link_details() is true.

Return type:

ProtectActionAddLinkDetails

get_protect_action_delete_details()

Only call this if is_protect_action_delete_details() is true.

Return type:

ProtectActionDeleteDetails

get_protect_action_export_details()

Only call this if is_protect_action_export_details() is true.

Return type:

ProtectActionExportDetails

get_protect_action_remove_collaborator_details()

Only call this if is_protect_action_remove_collaborator_details() is true.

Return type:

ProtectActionRemoveCollaboratorDetails

Only call this if is_protect_action_remove_link_details() is true.

Return type:

ProtectActionRemoveLinkDetails

get_protect_action_stop_sharing_details()

Only call this if is_protect_action_stop_sharing_details() is true.

Return type:

ProtectActionStopSharingDetails

get_protect_internal_domains_changed_details()

Only call this if is_protect_internal_domains_changed_details() is true.

Return type:

ProtectInternalDomainsChangedDetails

get_protect_policy_activated_details()

Only call this if is_protect_policy_activated_details() is true.

Return type:

ProtectPolicyActivatedDetails

get_protect_policy_deactivated_details()

Only call this if is_protect_policy_deactivated_details() is true.

Return type:

ProtectPolicyDeactivatedDetails

get_protect_policy_scheduled_details()

Only call this if is_protect_policy_scheduled_details() is true.

Return type:

ProtectPolicyScheduledDetails

get_protect_policy_updated_details()

Only call this if is_protect_policy_updated_details() is true.

Return type:

ProtectPolicyUpdatedDetails

get_protect_report_view_details()

Only call this if is_protect_report_view_details() is true.

Return type:

ProtectReportViewDetails

get_ransomware_alert_create_report_details()

Only call this if is_ransomware_alert_create_report_details() is true.

Return type:

RansomwareAlertCreateReportDetails

get_ransomware_alert_create_report_failed_details()

Only call this if is_ransomware_alert_create_report_failed_details() is true.

Return type:

RansomwareAlertCreateReportFailedDetails

get_ransomware_restore_process_completed_details()

Only call this if is_ransomware_restore_process_completed_details() is true.

Return type:

RansomwareRestoreProcessCompletedDetails

get_ransomware_restore_process_started_details()

Only call this if is_ransomware_restore_process_started_details() is true.

Return type:

RansomwareRestoreProcessStartedDetails

get_replay_adding_people_policy_changed_details()

Only call this if is_replay_adding_people_policy_changed_details() is true.

Return type:

ReplayAddingPeoplePolicyChangedDetails

get_replay_file_delete_details()

Only call this if is_replay_file_delete_details() is true.

Return type:

ReplayFileDeleteDetails

get_replay_file_downloaded_details()

Only call this if is_replay_file_downloaded_details() is true.

Return type:

ReplayFileDownloadedDetails

Only call this if is_replay_file_shared_link_created_details() is true.

Return type:

ReplayFileSharedLinkCreatedDetails

Only call this if is_replay_file_shared_link_modified_details() is true.

Return type:

ReplayFileSharedLinkModifiedDetails

get_replay_project_team_add_details()

Only call this if is_replay_project_team_add_details() is true.

Return type:

ReplayProjectTeamAddDetails

get_replay_project_team_delete_details()

Only call this if is_replay_project_team_delete_details() is true.

Return type:

ReplayProjectTeamDeleteDetails

get_replay_sharing_policy_changed_details()

Only call this if is_replay_sharing_policy_changed_details() is true.

Return type:

ReplaySharingPolicyChangedDetails

get_replay_team_project_created_details()

Only call this if is_replay_team_project_created_details() is true.

Return type:

ReplayTeamProjectCreatedDetails

get_reseller_support_change_policy_details()

Only call this if is_reseller_support_change_policy_details() is true.

Return type:

ResellerSupportChangePolicyDetails

get_reseller_support_session_end_details()

Only call this if is_reseller_support_session_end_details() is true.

Return type:

ResellerSupportSessionEndDetails

get_reseller_support_session_start_details()

Only call this if is_reseller_support_session_start_details() is true.

Return type:

ResellerSupportSessionStartDetails

get_rewind_folder_details()

Only call this if is_rewind_folder_details() is true.

Return type:

RewindFolderDetails

get_rewind_policy_changed_details()

Only call this if is_rewind_policy_changed_details() is true.

Return type:

RewindPolicyChangedDetails

get_risc_security_event_details()

Only call this if is_risc_security_event_details() is true.

Return type:

RiscSecurityEventDetails

get_secondary_email_deleted_details()

Only call this if is_secondary_email_deleted_details() is true.

Return type:

SecondaryEmailDeletedDetails

get_secondary_email_verified_details()

Only call this if is_secondary_email_verified_details() is true.

Return type:

SecondaryEmailVerifiedDetails

get_secondary_mails_policy_changed_details()

Only call this if is_secondary_mails_policy_changed_details() is true.

Return type:

SecondaryMailsPolicyChangedDetails

get_send_and_track_file_added_details()

Only call this if is_send_and_track_file_added_details() is true.

Return type:

SendAndTrackFileAddedDetails

get_send_and_track_file_renamed_details()

Only call this if is_send_and_track_file_renamed_details() is true.

Return type:

SendAndTrackFileRenamedDetails

get_send_and_track_file_updated_details()

Only call this if is_send_and_track_file_updated_details() is true.

Return type:

SendAndTrackFileUpdatedDetails

Only call this if is_send_and_track_link_created_details() is true.

Return type:

SendAndTrackLinkCreatedDetails

Only call this if is_send_and_track_link_deleted_details() is true.

Return type:

SendAndTrackLinkDeletedDetails

Only call this if is_send_and_track_link_updated_details() is true.

Return type:

SendAndTrackLinkUpdatedDetails

Only call this if is_send_and_track_link_viewed_details() is true.

Return type:

SendAndTrackLinkViewedDetails

get_send_and_track_policy_changed_details()

Only call this if is_send_and_track_policy_changed_details() is true.

Return type:

SendAndTrackPolicyChangedDetails

Only call this if is_send_and_track_removed_file_and_associated_links_details() is true.

Return type:

SendAndTrackRemovedFileAndAssociatedLinksDetails

get_send_external_sharing_policy_changed_details()

Only call this if is_send_external_sharing_policy_changed_details() is true.

Return type:

SendExternalSharingPolicyChangedDetails

get_send_for_signature_policy_changed_details()

Only call this if is_send_for_signature_policy_changed_details() is true.

Return type:

SendForSignaturePolicyChangedDetails

get_sf_add_group_details()

Only call this if is_sf_add_group_details() is true.

Return type:

SfAddGroupDetails

Only call this if is_sf_allow_non_members_to_view_shared_links_details() is true.

Return type:

SfAllowNonMembersToViewSharedLinksDetails

get_sf_external_invite_warn_details()

Only call this if is_sf_external_invite_warn_details() is true.

Return type:

SfExternalInviteWarnDetails

get_sf_fb_invite_change_role_details()

Only call this if is_sf_fb_invite_change_role_details() is true.

Return type:

SfFbInviteChangeRoleDetails

get_sf_fb_invite_details()

Only call this if is_sf_fb_invite_details() is true.

Return type:

SfFbInviteDetails

get_sf_fb_uninvite_details()

Only call this if is_sf_fb_uninvite_details() is true.

Return type:

SfFbUninviteDetails

get_sf_invite_group_details()

Only call this if is_sf_invite_group_details() is true.

Return type:

SfInviteGroupDetails

get_sf_team_grant_access_details()

Only call this if is_sf_team_grant_access_details() is true.

Return type:

SfTeamGrantAccessDetails

get_sf_team_invite_change_role_details()

Only call this if is_sf_team_invite_change_role_details() is true.

Return type:

SfTeamInviteChangeRoleDetails

get_sf_team_invite_details()

Only call this if is_sf_team_invite_details() is true.

Return type:

SfTeamInviteDetails

get_sf_team_join_details()

Only call this if is_sf_team_join_details() is true.

Return type:

SfTeamJoinDetails

Only call this if is_sf_team_join_from_oob_link_details() is true.

Return type:

SfTeamJoinFromOobLinkDetails

get_sf_team_uninvite_details()

Only call this if is_sf_team_uninvite_details() is true.

Return type:

SfTeamUninviteDetails

get_shared_content_add_invitees_details()

Only call this if is_shared_content_add_invitees_details() is true.

Return type:

SharedContentAddInviteesDetails

Only call this if is_shared_content_add_link_expiry_details() is true.

Return type:

SharedContentAddLinkExpiryDetails

Only call this if is_shared_content_add_link_password_details() is true.

Return type:

SharedContentAddLinkPasswordDetails

get_shared_content_add_member_details()

Only call this if is_shared_content_add_member_details() is true.

Return type:

SharedContentAddMemberDetails

get_shared_content_change_downloads_policy_details()

Only call this if is_shared_content_change_downloads_policy_details() is true.

Return type:

SharedContentChangeDownloadsPolicyDetails

get_shared_content_change_invitee_role_details()

Only call this if is_shared_content_change_invitee_role_details() is true.

Return type:

SharedContentChangeInviteeRoleDetails

Only call this if is_shared_content_change_link_audience_details() is true.

Return type:

SharedContentChangeLinkAudienceDetails

Only call this if is_shared_content_change_link_expiry_details() is true.

Return type:

SharedContentChangeLinkExpiryDetails

Only call this if is_shared_content_change_link_password_details() is true.

Return type:

SharedContentChangeLinkPasswordDetails

get_shared_content_change_member_role_details()

Only call this if is_shared_content_change_member_role_details() is true.

Return type:

SharedContentChangeMemberRoleDetails

get_shared_content_change_viewer_info_policy_details()

Only call this if is_shared_content_change_viewer_info_policy_details() is true.

Return type:

SharedContentChangeViewerInfoPolicyDetails

get_shared_content_claim_invitation_details()

Only call this if is_shared_content_claim_invitation_details() is true.

Return type:

SharedContentClaimInvitationDetails

get_shared_content_copy_details()

Only call this if is_shared_content_copy_details() is true.

Return type:

SharedContentCopyDetails

get_shared_content_download_details()

Only call this if is_shared_content_download_details() is true.

Return type:

SharedContentDownloadDetails

get_shared_content_relinquish_membership_details()

Only call this if is_shared_content_relinquish_membership_details() is true.

Return type:

SharedContentRelinquishMembershipDetails

get_shared_content_remove_invitees_details()

Only call this if is_shared_content_remove_invitees_details() is true.

Return type:

SharedContentRemoveInviteesDetails

Only call this if is_shared_content_remove_link_expiry_details() is true.

Return type:

SharedContentRemoveLinkExpiryDetails

Only call this if is_shared_content_remove_link_password_details() is true.

Return type:

SharedContentRemoveLinkPasswordDetails

get_shared_content_remove_member_details()

Only call this if is_shared_content_remove_member_details() is true.

Return type:

SharedContentRemoveMemberDetails

get_shared_content_request_access_details()

Only call this if is_shared_content_request_access_details() is true.

Return type:

SharedContentRequestAccessDetails

get_shared_content_restore_invitees_details()

Only call this if is_shared_content_restore_invitees_details() is true.

Return type:

SharedContentRestoreInviteesDetails

get_shared_content_restore_member_details()

Only call this if is_shared_content_restore_member_details() is true.

Return type:

SharedContentRestoreMemberDetails

get_shared_content_unshare_details()

Only call this if is_shared_content_unshare_details() is true.

Return type:

SharedContentUnshareDetails

get_shared_content_view_details()

Only call this if is_shared_content_view_details() is true.

Return type:

SharedContentViewDetails

Only call this if is_shared_folder_change_link_policy_details() is true.

Return type:

SharedFolderChangeLinkPolicyDetails

get_shared_folder_change_members_inheritance_policy_details()

Only call this if is_shared_folder_change_members_inheritance_policy_details() is true.

Return type:

SharedFolderChangeMembersInheritancePolicyDetails

get_shared_folder_change_members_management_policy_details()

Only call this if is_shared_folder_change_members_management_policy_details() is true.

Return type:

SharedFolderChangeMembersManagementPolicyDetails

get_shared_folder_change_members_policy_details()

Only call this if is_shared_folder_change_members_policy_details() is true.

Return type:

SharedFolderChangeMembersPolicyDetails

get_shared_folder_create_details()

Only call this if is_shared_folder_create_details() is true.

Return type:

SharedFolderCreateDetails

get_shared_folder_decline_invitation_details()

Only call this if is_shared_folder_decline_invitation_details() is true.

Return type:

SharedFolderDeclineInvitationDetails

get_shared_folder_mount_details()

Only call this if is_shared_folder_mount_details() is true.

Return type:

SharedFolderMountDetails

get_shared_folder_nest_details()

Only call this if is_shared_folder_nest_details() is true.

Return type:

SharedFolderNestDetails

get_shared_folder_transfer_ownership_details()

Only call this if is_shared_folder_transfer_ownership_details() is true.

Return type:

SharedFolderTransferOwnershipDetails

get_shared_folder_unmount_details()

Only call this if is_shared_folder_unmount_details() is true.

Return type:

SharedFolderUnmountDetails

get_shared_folders_create_report_details()

Only call this if is_shared_folders_create_report_details() is true.

Return type:

SharedFoldersCreateReportDetails

get_shared_folders_create_report_failed_details()

Only call this if is_shared_folders_create_report_failed_details() is true.

Return type:

SharedFoldersCreateReportFailedDetails

Only call this if is_shared_link_add_expiry_details() is true.

Return type:

SharedLinkAddExpiryDetails

Only call this if is_shared_link_change_expiry_details() is true.

Return type:

SharedLinkChangeExpiryDetails

Only call this if is_shared_link_change_visibility_details() is true.

Return type:

SharedLinkChangeVisibilityDetails

Only call this if is_shared_link_copy_details() is true.

Return type:

SharedLinkCopyDetails

Only call this if is_shared_link_create_details() is true.

Return type:

SharedLinkCreateDetails

Only call this if is_shared_link_default_permissions_policy_changed_details() is true.

Return type:

SharedLinkDefaultPermissionsPolicyChangedDetails

Only call this if is_shared_link_disable_details() is true.

Return type:

SharedLinkDisableDetails

Only call this if is_shared_link_download_details() is true.

Return type:

SharedLinkDownloadDetails

Only call this if is_shared_link_remove_expiry_details() is true.

Return type:

SharedLinkRemoveExpiryDetails

Only call this if is_shared_link_remove_visitor_details() is true.

Return type:

SharedLinkRemoveVisitorDetails

Only call this if is_shared_link_settings_add_expiration_details() is true.

Return type:

SharedLinkSettingsAddExpirationDetails

Only call this if is_shared_link_settings_add_password_details() is true.

Return type:

SharedLinkSettingsAddPasswordDetails

Only call this if is_shared_link_settings_allow_download_disabled_details() is true.

Return type:

SharedLinkSettingsAllowDownloadDisabledDetails

Only call this if is_shared_link_settings_allow_download_enabled_details() is true.

Return type:

SharedLinkSettingsAllowDownloadEnabledDetails

Only call this if is_shared_link_settings_change_audience_details() is true.

Return type:

SharedLinkSettingsChangeAudienceDetails

Only call this if is_shared_link_settings_change_expiration_details() is true.

Return type:

SharedLinkSettingsChangeExpirationDetails

Only call this if is_shared_link_settings_change_password_details() is true.

Return type:

SharedLinkSettingsChangePasswordDetails

Only call this if is_shared_link_settings_remove_expiration_details() is true.

Return type:

SharedLinkSettingsRemoveExpirationDetails

Only call this if is_shared_link_settings_remove_password_details() is true.

Return type:

SharedLinkSettingsRemovePasswordDetails

Only call this if is_shared_link_share_details() is true.

Return type:

SharedLinkShareDetails

Only call this if is_shared_link_view_details() is true.

Return type:

SharedLinkViewDetails

get_shared_note_opened_details()

Only call this if is_shared_note_opened_details() is true.

Return type:

SharedNoteOpenedDetails

get_sharing_change_folder_join_policy_details()

Only call this if is_sharing_change_folder_join_policy_details() is true.

Return type:

SharingChangeFolderJoinPolicyDetails

Only call this if is_sharing_change_link_allow_change_expiration_policy_details() is true.

Return type:

SharingChangeLinkAllowChangeExpirationPolicyDetails

Only call this if is_sharing_change_link_default_expiration_policy_details() is true.

Return type:

SharingChangeLinkDefaultExpirationPolicyDetails

Only call this if is_sharing_change_link_enforce_password_policy_details() is true.

Return type:

SharingChangeLinkEnforcePasswordPolicyDetails

Only call this if is_sharing_change_link_policy_details() is true.

Return type:

SharingChangeLinkPolicyDetails

get_sharing_change_member_policy_details()

Only call this if is_sharing_change_member_policy_details() is true.

Return type:

SharingChangeMemberPolicyDetails

get_shmodel_disable_downloads_details()

Only call this if is_shmodel_disable_downloads_details() is true.

Return type:

ShmodelDisableDownloadsDetails

get_shmodel_enable_downloads_details()

Only call this if is_shmodel_enable_downloads_details() is true.

Return type:

ShmodelEnableDownloadsDetails

get_shmodel_group_share_details()

Only call this if is_shmodel_group_share_details() is true.

Return type:

ShmodelGroupShareDetails

get_showcase_access_granted_details()

Only call this if is_showcase_access_granted_details() is true.

Return type:

ShowcaseAccessGrantedDetails

get_showcase_add_member_details()

Only call this if is_showcase_add_member_details() is true.

Return type:

ShowcaseAddMemberDetails

get_showcase_archived_details()

Only call this if is_showcase_archived_details() is true.

Return type:

ShowcaseArchivedDetails

get_showcase_change_download_policy_details()

Only call this if is_showcase_change_download_policy_details() is true.

Return type:

ShowcaseChangeDownloadPolicyDetails

get_showcase_change_enabled_policy_details()

Only call this if is_showcase_change_enabled_policy_details() is true.

Return type:

ShowcaseChangeEnabledPolicyDetails

get_showcase_change_external_sharing_policy_details()

Only call this if is_showcase_change_external_sharing_policy_details() is true.

Return type:

ShowcaseChangeExternalSharingPolicyDetails

get_showcase_created_details()

Only call this if is_showcase_created_details() is true.

Return type:

ShowcaseCreatedDetails

get_showcase_delete_comment_details()

Only call this if is_showcase_delete_comment_details() is true.

Return type:

ShowcaseDeleteCommentDetails

get_showcase_edit_comment_details()

Only call this if is_showcase_edit_comment_details() is true.

Return type:

ShowcaseEditCommentDetails

get_showcase_edited_details()

Only call this if is_showcase_edited_details() is true.

Return type:

ShowcaseEditedDetails

get_showcase_file_added_details()

Only call this if is_showcase_file_added_details() is true.

Return type:

ShowcaseFileAddedDetails

get_showcase_file_download_details()

Only call this if is_showcase_file_download_details() is true.

Return type:

ShowcaseFileDownloadDetails

get_showcase_file_removed_details()

Only call this if is_showcase_file_removed_details() is true.

Return type:

ShowcaseFileRemovedDetails

get_showcase_file_view_details()

Only call this if is_showcase_file_view_details() is true.

Return type:

ShowcaseFileViewDetails

get_showcase_permanently_deleted_details()

Only call this if is_showcase_permanently_deleted_details() is true.

Return type:

ShowcasePermanentlyDeletedDetails

get_showcase_post_comment_details()

Only call this if is_showcase_post_comment_details() is true.

Return type:

ShowcasePostCommentDetails

get_showcase_remove_member_details()

Only call this if is_showcase_remove_member_details() is true.

Return type:

ShowcaseRemoveMemberDetails

get_showcase_renamed_details()

Only call this if is_showcase_renamed_details() is true.

Return type:

ShowcaseRenamedDetails

get_showcase_request_access_details()

Only call this if is_showcase_request_access_details() is true.

Return type:

ShowcaseRequestAccessDetails

get_showcase_resolve_comment_details()

Only call this if is_showcase_resolve_comment_details() is true.

Return type:

ShowcaseResolveCommentDetails

get_showcase_restored_details()

Only call this if is_showcase_restored_details() is true.

Return type:

ShowcaseRestoredDetails

get_showcase_trashed_deprecated_details()

Only call this if is_showcase_trashed_deprecated_details() is true.

Return type:

ShowcaseTrashedDeprecatedDetails

get_showcase_trashed_details()

Only call this if is_showcase_trashed_details() is true.

Return type:

ShowcaseTrashedDetails

get_showcase_unresolve_comment_details()

Only call this if is_showcase_unresolve_comment_details() is true.

Return type:

ShowcaseUnresolveCommentDetails

get_showcase_untrashed_deprecated_details()

Only call this if is_showcase_untrashed_deprecated_details() is true.

Return type:

ShowcaseUntrashedDeprecatedDetails

get_showcase_untrashed_details()

Only call this if is_showcase_untrashed_details() is true.

Return type:

ShowcaseUntrashedDetails

get_showcase_view_details()

Only call this if is_showcase_view_details() is true.

Return type:

ShowcaseViewDetails

get_sign_external_sharing_policy_changed_details()

Only call this if is_sign_external_sharing_policy_changed_details() is true.

Return type:

SignExternalSharingPolicyChangedDetails

get_sign_in_as_session_end_details()

Only call this if is_sign_in_as_session_end_details() is true.

Return type:

SignInAsSessionEndDetails

get_sign_in_as_session_start_details()

Only call this if is_sign_in_as_session_start_details() is true.

Return type:

SignInAsSessionStartDetails

get_sign_signature_request_canceled_details()

Only call this if is_sign_signature_request_canceled_details() is true.

Return type:

SignSignatureRequestCanceledDetails

get_sign_signature_request_completed_details()

Only call this if is_sign_signature_request_completed_details() is true.

Return type:

SignSignatureRequestCompletedDetails

get_sign_signature_request_declined_details()

Only call this if is_sign_signature_request_declined_details() is true.

Return type:

SignSignatureRequestDeclinedDetails

get_sign_signature_request_opened_details()

Only call this if is_sign_signature_request_opened_details() is true.

Return type:

SignSignatureRequestOpenedDetails

get_sign_signature_request_reminder_sent_details()

Only call this if is_sign_signature_request_reminder_sent_details() is true.

Return type:

SignSignatureRequestReminderSentDetails

get_sign_signature_request_sent_details()

Only call this if is_sign_signature_request_sent_details() is true.

Return type:

SignSignatureRequestSentDetails

get_sign_template_created_details()

Only call this if is_sign_template_created_details() is true.

Return type:

SignTemplateCreatedDetails

get_sign_template_creation_permission_changed_details()

Only call this if is_sign_template_creation_permission_changed_details() is true.

Return type:

SignTemplateCreationPermissionChangedDetails

get_sign_template_shared_details()

Only call this if is_sign_template_shared_details() is true.

Return type:

SignTemplateSharedDetails

get_smart_sync_change_policy_details()

Only call this if is_smart_sync_change_policy_details() is true.

Return type:

SmartSyncChangePolicyDetails

get_smart_sync_create_admin_privilege_report_details()

Only call this if is_smart_sync_create_admin_privilege_report_details() is true.

Return type:

SmartSyncCreateAdminPrivilegeReportDetails

get_smart_sync_not_opt_out_details()

Only call this if is_smart_sync_not_opt_out_details() is true.

Return type:

SmartSyncNotOptOutDetails

get_smart_sync_opt_out_details()

Only call this if is_smart_sync_opt_out_details() is true.

Return type:

SmartSyncOptOutDetails

get_smarter_smart_sync_policy_changed_details()

Only call this if is_smarter_smart_sync_policy_changed_details() is true.

Return type:

SmarterSmartSyncPolicyChangedDetails

get_sso_add_cert_details()

Only call this if is_sso_add_cert_details() is true.

Return type:

SsoAddCertDetails

get_sso_add_login_url_details()

Only call this if is_sso_add_login_url_details() is true.

Return type:

SsoAddLoginUrlDetails

get_sso_add_logout_url_details()

Only call this if is_sso_add_logout_url_details() is true.

Return type:

SsoAddLogoutUrlDetails

get_sso_change_cert_details()

Only call this if is_sso_change_cert_details() is true.

Return type:

SsoChangeCertDetails

get_sso_change_login_url_details()

Only call this if is_sso_change_login_url_details() is true.

Return type:

SsoChangeLoginUrlDetails

get_sso_change_logout_url_details()

Only call this if is_sso_change_logout_url_details() is true.

Return type:

SsoChangeLogoutUrlDetails

get_sso_change_policy_details()

Only call this if is_sso_change_policy_details() is true.

Return type:

SsoChangePolicyDetails

get_sso_change_saml_identity_mode_details()

Only call this if is_sso_change_saml_identity_mode_details() is true.

Return type:

SsoChangeSamlIdentityModeDetails

get_sso_error_details()

Only call this if is_sso_error_details() is true.

Return type:

SsoErrorDetails

get_sso_remove_cert_details()

Only call this if is_sso_remove_cert_details() is true.

Return type:

SsoRemoveCertDetails

get_sso_remove_login_url_details()

Only call this if is_sso_remove_login_url_details() is true.

Return type:

SsoRemoveLoginUrlDetails

get_sso_remove_logout_url_details()

Only call this if is_sso_remove_logout_url_details() is true.

Return type:

SsoRemoveLogoutUrlDetails

get_stack_cross_team_access_policy_changed_details()

Only call this if is_stack_cross_team_access_policy_changed_details() is true.

Return type:

StackCrossTeamAccessPolicyChangedDetails

get_started_enterprise_admin_session_details()

Only call this if is_started_enterprise_admin_session_details() is true.

Return type:

StartedEnterpriseAdminSessionDetails

get_team_activity_create_report_details()

Only call this if is_team_activity_create_report_details() is true.

Return type:

TeamActivityCreateReportDetails

get_team_activity_create_report_fail_details()

Only call this if is_team_activity_create_report_fail_details() is true.

Return type:

TeamActivityCreateReportFailDetails

get_team_branding_policy_changed_details()

Only call this if is_team_branding_policy_changed_details() is true.

Return type:

TeamBrandingPolicyChangedDetails

get_team_encryption_key_activate_key_details()

Only call this if is_team_encryption_key_activate_key_details() is true.

Return type:

TeamEncryptionKeyActivateKeyDetails

get_team_encryption_key_cancel_key_deletion_details()

Only call this if is_team_encryption_key_cancel_key_deletion_details() is true.

Return type:

TeamEncryptionKeyCancelKeyDeletionDetails

get_team_encryption_key_create_key_details()

Only call this if is_team_encryption_key_create_key_details() is true.

Return type:

TeamEncryptionKeyCreateKeyDetails

get_team_encryption_key_deactivate_key_details()

Only call this if is_team_encryption_key_deactivate_key_details() is true.

Return type:

TeamEncryptionKeyDeactivateKeyDetails

get_team_encryption_key_delete_key_details()

Only call this if is_team_encryption_key_delete_key_details() is true.

Return type:

TeamEncryptionKeyDeleteKeyDetails

get_team_encryption_key_disable_key_details()

Only call this if is_team_encryption_key_disable_key_details() is true.

Return type:

TeamEncryptionKeyDisableKeyDetails

get_team_encryption_key_enable_key_details()

Only call this if is_team_encryption_key_enable_key_details() is true.

Return type:

TeamEncryptionKeyEnableKeyDetails

get_team_encryption_key_rotate_key_details()

Only call this if is_team_encryption_key_rotate_key_details() is true.

Return type:

TeamEncryptionKeyRotateKeyDetails

get_team_encryption_key_schedule_key_deletion_details()

Only call this if is_team_encryption_key_schedule_key_deletion_details() is true.

Return type:

TeamEncryptionKeyScheduleKeyDeletionDetails

get_team_extensions_policy_changed_details()

Only call this if is_team_extensions_policy_changed_details() is true.

Return type:

TeamExtensionsPolicyChangedDetails

get_team_folder_change_status_details()

Only call this if is_team_folder_change_status_details() is true.

Return type:

TeamFolderChangeStatusDetails

get_team_folder_create_details()

Only call this if is_team_folder_create_details() is true.

Return type:

TeamFolderCreateDetails

get_team_folder_downgrade_details()

Only call this if is_team_folder_downgrade_details() is true.

Return type:

TeamFolderDowngradeDetails

get_team_folder_permanently_delete_details()

Only call this if is_team_folder_permanently_delete_details() is true.

Return type:

TeamFolderPermanentlyDeleteDetails

get_team_folder_rename_details()

Only call this if is_team_folder_rename_details() is true.

Return type:

TeamFolderRenameDetails

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:

TeamFolderSpaceLimitsChangeCapsTypeDetails

get_team_folder_space_limits_change_limit_details()

Only call this if is_team_folder_space_limits_change_limit_details() is true.

Return type:

TeamFolderSpaceLimitsChangeLimitDetails

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:

TeamFolderSpaceLimitsChangeNotificationTargetDetails

get_team_folders_create_report_details()

Only call this if is_team_folders_create_report_details() is true.

Return type:

TeamFoldersCreateReportDetails

get_team_folders_create_report_failed_details()

Only call this if is_team_folders_create_report_failed_details() is true.

Return type:

TeamFoldersCreateReportFailedDetails

get_team_member_storage_request_policy_changed_details()

Only call this if is_team_member_storage_request_policy_changed_details() is true.

Return type:

TeamMemberStorageRequestPolicyChangedDetails

get_team_merge_from_details()

Only call this if is_team_merge_from_details() is true.

Return type:

TeamMergeFromDetails

get_team_merge_request_accepted_details()

Only call this if is_team_merge_request_accepted_details() is true.

Return type:

TeamMergeRequestAcceptedDetails

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:

TeamMergeRequestAcceptedShownToPrimaryTeamDetails

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:

TeamMergeRequestAcceptedShownToSecondaryTeamDetails

get_team_merge_request_auto_canceled_details()

Only call this if is_team_merge_request_auto_canceled_details() is true.

Return type:

TeamMergeRequestAutoCanceledDetails

get_team_merge_request_canceled_details()

Only call this if is_team_merge_request_canceled_details() is true.

Return type:

TeamMergeRequestCanceledDetails

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:

TeamMergeRequestCanceledShownToPrimaryTeamDetails

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:

TeamMergeRequestCanceledShownToSecondaryTeamDetails

get_team_merge_request_expired_details()

Only call this if is_team_merge_request_expired_details() is true.

Return type:

TeamMergeRequestExpiredDetails

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:

TeamMergeRequestExpiredShownToPrimaryTeamDetails

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:

TeamMergeRequestExpiredShownToSecondaryTeamDetails

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:

TeamMergeRequestRejectedShownToPrimaryTeamDetails

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:

TeamMergeRequestRejectedShownToSecondaryTeamDetails

get_team_merge_request_reminder_details()

Only call this if is_team_merge_request_reminder_details() is true.

Return type:

TeamMergeRequestReminderDetails

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:

TeamMergeRequestReminderShownToPrimaryTeamDetails

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:

TeamMergeRequestReminderShownToSecondaryTeamDetails

get_team_merge_request_revoked_details()

Only call this if is_team_merge_request_revoked_details() is true.

Return type:

TeamMergeRequestRevokedDetails

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:

TeamMergeRequestSentShownToPrimaryTeamDetails

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:

TeamMergeRequestSentShownToSecondaryTeamDetails

get_team_merge_to_details()

Only call this if is_team_merge_to_details() is true.

Return type:

TeamMergeToDetails

get_team_profile_add_background_details()

Only call this if is_team_profile_add_background_details() is true.

Return type:

TeamProfileAddBackgroundDetails

get_team_profile_add_logo_details()

Only call this if is_team_profile_add_logo_details() is true.

Return type:

TeamProfileAddLogoDetails

get_team_profile_change_background_details()

Only call this if is_team_profile_change_background_details() is true.

Return type:

TeamProfileChangeBackgroundDetails

get_team_profile_change_default_language_details()

Only call this if is_team_profile_change_default_language_details() is true.

Return type:

TeamProfileChangeDefaultLanguageDetails

get_team_profile_change_logo_details()

Only call this if is_team_profile_change_logo_details() is true.

Return type:

TeamProfileChangeLogoDetails

get_team_profile_change_name_details()

Only call this if is_team_profile_change_name_details() is true.

Return type:

TeamProfileChangeNameDetails

get_team_profile_remove_background_details()

Only call this if is_team_profile_remove_background_details() is true.

Return type:

TeamProfileRemoveBackgroundDetails

get_team_profile_remove_logo_details()

Only call this if is_team_profile_remove_logo_details() is true.

Return type:

TeamProfileRemoveLogoDetails

get_team_selective_sync_policy_changed_details()

Only call this if is_team_selective_sync_policy_changed_details() is true.

Return type:

TeamSelectiveSyncPolicyChangedDetails

get_team_selective_sync_settings_changed_details()

Only call this if is_team_selective_sync_settings_changed_details() is true.

Return type:

TeamSelectiveSyncSettingsChangedDetails

get_team_sharing_whitelist_subjects_changed_details()

Only call this if is_team_sharing_whitelist_subjects_changed_details() is true.

Return type:

TeamSharingWhitelistSubjectsChangedDetails

get_team_storage_create_report_details()

Only call this if is_team_storage_create_report_details() is true.

Return type:

TeamStorageCreateReportDetails

get_team_storage_create_report_failed_details()

Only call this if is_team_storage_create_report_failed_details() is true.

Return type:

TeamStorageCreateReportFailedDetails

get_tfa_add_backup_phone_details()

Only call this if is_tfa_add_backup_phone_details() is true.

Return type:

TfaAddBackupPhoneDetails

get_tfa_add_exception_details()

Only call this if is_tfa_add_exception_details() is true.

Return type:

TfaAddExceptionDetails

get_tfa_add_security_key_details()

Only call this if is_tfa_add_security_key_details() is true.

Return type:

TfaAddSecurityKeyDetails

get_tfa_change_backup_phone_details()

Only call this if is_tfa_change_backup_phone_details() is true.

Return type:

TfaChangeBackupPhoneDetails

get_tfa_change_policy_details()

Only call this if is_tfa_change_policy_details() is true.

Return type:

TfaChangePolicyDetails

get_tfa_change_status_details()

Only call this if is_tfa_change_status_details() is true.

Return type:

TfaChangeStatusDetails

get_tfa_remove_backup_phone_details()

Only call this if is_tfa_remove_backup_phone_details() is true.

Return type:

TfaRemoveBackupPhoneDetails

get_tfa_remove_exception_details()

Only call this if is_tfa_remove_exception_details() is true.

Return type:

TfaRemoveExceptionDetails

get_tfa_remove_security_key_details()

Only call this if is_tfa_remove_security_key_details() is true.

Return type:

TfaRemoveSecurityKeyDetails

get_tfa_reset_details()

Only call this if is_tfa_reset_details() is true.

Return type:

TfaResetDetails

get_top_level_content_policy_changed_details()

Only call this if is_top_level_content_policy_changed_details() is true.

Return type:

TopLevelContentPolicyChangedDetails

get_two_account_change_policy_details()

Only call this if is_two_account_change_policy_details() is true.

Return type:

TwoAccountChangePolicyDetails

get_undo_naming_convention_details()

Only call this if is_undo_naming_convention_details() is true.

Return type:

UndoNamingConventionDetails

get_undo_organize_folder_with_tidy_details()

Only call this if is_undo_organize_folder_with_tidy_details() is true.

Return type:

UndoOrganizeFolderWithTidyDetails

get_user_tags_added_details()

Only call this if is_user_tags_added_details() is true.

Return type:

UserTagsAddedDetails

get_user_tags_removed_details()

Only call this if is_user_tags_removed_details() is true.

Return type:

UserTagsRemovedDetails

get_viewer_info_policy_changed_details()

Only call this if is_viewer_info_policy_changed_details() is true.

Return type:

ViewerInfoPolicyChangedDetails

get_watermarking_policy_changed_details()

Only call this if is_watermarking_policy_changed_details() is true.

Return type:

WatermarkingPolicyChangedDetails

get_web_sessions_change_active_session_limit_details()

Only call this if is_web_sessions_change_active_session_limit_details() is true.

Return type:

WebSessionsChangeActiveSessionLimitDetails

get_web_sessions_change_fixed_length_policy_details()

Only call this if is_web_sessions_change_fixed_length_policy_details() is true.

Return type:

WebSessionsChangeFixedLengthPolicyDetails

get_web_sessions_change_idle_length_policy_details()

Only call this if is_web_sessions_change_idle_length_policy_details() is true.

Return type:

WebSessionsChangeIdleLengthPolicyDetails

classmethod google_sso_change_policy_details(val)

Create an instance of this class set to the google_sso_change_policy_details tag with value val.

Parameters:

val (GoogleSsoChangePolicyDetails)

Return type:

EventDetails

classmethod governance_policy_add_folder_failed_details(val)

Create an instance of this class set to the governance_policy_add_folder_failed_details tag with value val.

Parameters:

val (GovernancePolicyAddFolderFailedDetails)

Return type:

EventDetails

classmethod governance_policy_add_folders_details(val)

Create an instance of this class set to the governance_policy_add_folders_details tag with value val.

Parameters:

val (GovernancePolicyAddFoldersDetails)

Return type:

EventDetails

classmethod governance_policy_content_disposed_details(val)

Create an instance of this class set to the governance_policy_content_disposed_details tag with value val.

Parameters:

val (GovernancePolicyContentDisposedDetails)

Return type:

EventDetails

classmethod governance_policy_create_details(val)

Create an instance of this class set to the governance_policy_create_details tag with value val.

Parameters:

val (GovernancePolicyCreateDetails)

Return type:

EventDetails

classmethod governance_policy_delete_details(val)

Create an instance of this class set to the governance_policy_delete_details tag with value val.

Parameters:

val (GovernancePolicyDeleteDetails)

Return type:

EventDetails

classmethod governance_policy_edit_details_details(val)

Create an instance of this class set to the governance_policy_edit_details_details tag with value val.

Parameters:

val (GovernancePolicyEditDetailsDetails)

Return type:

EventDetails

classmethod governance_policy_edit_duration_details(val)

Create an instance of this class set to the governance_policy_edit_duration_details tag with value val.

Parameters:

val (GovernancePolicyEditDurationDetails)

Return type:

EventDetails

classmethod governance_policy_export_created_details(val)

Create an instance of this class set to the governance_policy_export_created_details tag with value val.

Parameters:

val (GovernancePolicyExportCreatedDetails)

Return type:

EventDetails

classmethod governance_policy_export_removed_details(val)

Create an instance of this class set to the governance_policy_export_removed_details tag with value val.

Parameters:

val (GovernancePolicyExportRemovedDetails)

Return type:

EventDetails

classmethod governance_policy_remove_folders_details(val)

Create an instance of this class set to the governance_policy_remove_folders_details tag with value val.

Parameters:

val (GovernancePolicyRemoveFoldersDetails)

Return type:

EventDetails

classmethod governance_policy_report_created_details(val)

Create an instance of this class set to the governance_policy_report_created_details tag with value val.

Parameters:

val (GovernancePolicyReportCreatedDetails)

Return type:

EventDetails

classmethod governance_policy_zip_part_downloaded_details(val)

Create an instance of this class set to the governance_policy_zip_part_downloaded_details tag with value val.

Parameters:

val (GovernancePolicyZipPartDownloadedDetails)

Return type:

EventDetails

classmethod group_add_external_id_details(val)

Create an instance of this class set to the group_add_external_id_details tag with value val.

Parameters:

val (GroupAddExternalIdDetails)

Return type:

EventDetails

classmethod group_add_member_details(val)

Create an instance of this class set to the group_add_member_details tag with value val.

Parameters:

val (GroupAddMemberDetails)

Return type:

EventDetails

classmethod group_change_external_id_details(val)

Create an instance of this class set to the group_change_external_id_details tag with value val.

Parameters:

val (GroupChangeExternalIdDetails)

Return type:

EventDetails

classmethod group_change_management_type_details(val)

Create an instance of this class set to the group_change_management_type_details tag with value val.

Parameters:

val (GroupChangeManagementTypeDetails)

Return type:

EventDetails

classmethod group_change_member_role_details(val)

Create an instance of this class set to the group_change_member_role_details tag with value val.

Parameters:

val (GroupChangeMemberRoleDetails)

Return type:

EventDetails

classmethod group_create_details(val)

Create an instance of this class set to the group_create_details tag with value val.

Parameters:

val (GroupCreateDetails)

Return type:

EventDetails

classmethod group_delete_details(val)

Create an instance of this class set to the group_delete_details tag with value val.

Parameters:

val (GroupDeleteDetails)

Return type:

EventDetails

classmethod group_description_updated_details(val)

Create an instance of this class set to the group_description_updated_details tag with value val.

Parameters:

val (GroupDescriptionUpdatedDetails)

Return type:

EventDetails

classmethod group_external_sharing_setting_override_changed_details(val)

Create an instance of this class set to the group_external_sharing_setting_override_changed_details tag with value val.

Parameters:

val (GroupExternalSharingSettingOverrideChangedDetails)

Return type:

EventDetails

classmethod group_join_policy_updated_details(val)

Create an instance of this class set to the group_join_policy_updated_details tag with value val.

Parameters:

val (GroupJoinPolicyUpdatedDetails)

Return type:

EventDetails

classmethod group_moved_details(val)

Create an instance of this class set to the group_moved_details tag with value val.

Parameters:

val (GroupMovedDetails)

Return type:

EventDetails

classmethod group_remove_external_id_details(val)

Create an instance of this class set to the group_remove_external_id_details tag with value val.

Parameters:

val (GroupRemoveExternalIdDetails)

Return type:

EventDetails

classmethod group_remove_member_details(val)

Create an instance of this class set to the group_remove_member_details tag with value val.

Parameters:

val (GroupRemoveMemberDetails)

Return type:

EventDetails

classmethod group_rename_details(val)

Create an instance of this class set to the group_rename_details tag with value val.

Parameters:

val (GroupRenameDetails)

Return type:

EventDetails

classmethod group_user_management_change_policy_details(val)

Create an instance of this class set to the group_user_management_change_policy_details tag with value val.

Parameters:

val (GroupUserManagementChangePolicyDetails)

Return type:

EventDetails

classmethod guest_admin_change_status_details(val)

Create an instance of this class set to the guest_admin_change_status_details tag with value val.

Parameters:

val (GuestAdminChangeStatusDetails)

Return type:

EventDetails

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_details tag with value val.

Parameters:

val (GuestAdminSignedInViaTrustedTeamsDetails)

Return type:

EventDetails

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_details tag with value val.

Parameters:

val (GuestAdminSignedOutViaTrustedTeamsDetails)

Return type:

EventDetails

classmethod integration_connected_details(val)

Create an instance of this class set to the integration_connected_details tag with value val.

Parameters:

val (IntegrationConnectedDetails)

Return type:

EventDetails

classmethod integration_disconnected_details(val)

Create an instance of this class set to the integration_disconnected_details tag with value val.

Parameters:

val (IntegrationDisconnectedDetails)

Return type:

EventDetails

classmethod integration_policy_changed_details(val)

Create an instance of this class set to the integration_policy_changed_details tag with value val.

Parameters:

val (IntegrationPolicyChangedDetails)

Return type:

EventDetails

classmethod invite_acceptance_email_policy_changed_details(val)

Create an instance of this class set to the invite_acceptance_email_policy_changed_details tag with value val.

Parameters:

val (InviteAcceptanceEmailPolicyChangedDetails)

Return type:

EventDetails

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

Check if the union tag is app_link_team_details.

Return type:

bool

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

Check if the union tag is app_unlink_team_details.

Return type:

bool

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

is_collection_share_details()

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

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

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

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

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

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

Check if the union tag is device_delete_on_unlink_fail_details.

Return type:

bool

Check if the union tag is device_delete_on_unlink_success_details.

Return type:

bool

Check if the union tag is device_link_fail_details.

Return type:

bool

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

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

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

Check if the union tag is legal_holds_activate_a_hold_details.

Return type:

bool

Check if the union tag is legal_holds_add_members_details.

Return type:

bool

Check if the union tag is legal_holds_change_hold_details_details.

Return type:

bool

Check if the union tag is legal_holds_change_hold_name_details.

Return type:

bool

Check if the union tag is legal_holds_export_a_hold_details.

Return type:

bool

Check if the union tag is legal_holds_export_cancelled_details.

Return type:

bool

Check if the union tag is legal_holds_export_downloaded_details.

Return type:

bool

Check if the union tag is legal_holds_export_removed_details.

Return type:

bool

Check if the union tag is legal_holds_release_a_hold_details.

Return type:

bool

Check if the union tag is legal_holds_remove_members_details.

Return type:

bool

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

Check if the union tag is media_hub_link_sharing_policy_changed_details.

Return type:

bool

is_media_hub_project_team_add_details()

Check if the union tag is media_hub_project_team_add_details.

Return type:

bool

is_media_hub_project_team_delete_details()

Check if the union tag is media_hub_project_team_delete_details.

Return type:

bool

is_media_hub_project_team_role_changed_details()

Check if the union tag is media_hub_project_team_role_changed_details.

Return type:

bool

Check if the union tag is media_hub_shared_link_audience_changed_details.

Return type:

bool

Check if the union tag is media_hub_shared_link_created_details.

Return type:

bool

Check if the union tag is media_hub_shared_link_download_setting_changed_details.

Return type:

bool

Check if the union tag is media_hub_shared_link_revoked_details.

Return type:

bool

is_member_access_details_create_report_details()

Check if the union tag is member_access_details_create_report_details.

Return type:

bool

is_member_access_details_create_report_failed_details()

Check if the union tag is member_access_details_create_report_failed_details.

Return type:

bool

is_member_add_external_id_details()

Check if the union tag is member_add_external_id_details.

Return type:

bool

is_member_add_name_details()

Check if the union tag is member_add_name_details.

Return type:

bool

is_member_change_admin_role_details()

Check if the union tag is member_change_admin_role_details.

Return type:

bool

is_member_change_email_details()

Check if the union tag is member_change_email_details.

Return type:

bool

is_member_change_external_id_details()

Check if the union tag is member_change_external_id_details.

Return type:

bool

is_member_change_membership_type_details()

Check if the union tag is member_change_membership_type_details.

Return type:

bool

is_member_change_name_details()

Check if the union tag is member_change_name_details.

Return type:

bool

is_member_change_reseller_role_details()

Check if the union tag is member_change_reseller_role_details.

Return type:

bool

is_member_change_status_details()

Check if the union tag is member_change_status_details.

Return type:

bool

is_member_delete_manual_contacts_details()

Check if the union tag is member_delete_manual_contacts_details.

Return type:

bool

is_member_delete_profile_photo_details()

Check if the union tag is member_delete_profile_photo_details.

Return type:

bool

is_member_folder_contents_accessed_details()

Check if the union tag is member_folder_contents_accessed_details.

Return type:

bool

is_member_permanently_delete_account_contents_details()

Check if the union tag is member_permanently_delete_account_contents_details.

Return type:

bool

is_member_remove_external_id_details()

Check if the union tag is member_remove_external_id_details.

Return type:

bool

is_member_requests_change_policy_details()

Check if the union tag is member_requests_change_policy_details.

Return type:

bool

is_member_send_invite_policy_changed_details()

Check if the union tag is member_send_invite_policy_changed_details.

Return type:

bool

is_member_set_profile_photo_details()

Check if the union tag is member_set_profile_photo_details.

Return type:

bool

is_member_space_limits_add_custom_quota_details()

Check if the union tag is member_space_limits_add_custom_quota_details.

Return type:

bool

is_member_space_limits_add_exception_details()

Check if the union tag is member_space_limits_add_exception_details.

Return type:

bool

is_member_space_limits_change_caps_type_policy_details()

Check if the union tag is member_space_limits_change_caps_type_policy_details.

Return type:

bool

is_member_space_limits_change_custom_quota_details()

Check if the union tag is member_space_limits_change_custom_quota_details.

Return type:

bool

is_member_space_limits_change_policy_details()

Check if the union tag is member_space_limits_change_policy_details.

Return type:

bool

is_member_space_limits_change_status_details()

Check if the union tag is member_space_limits_change_status_details.

Return type:

bool

is_member_space_limits_remove_custom_quota_details()

Check if the union tag is member_space_limits_remove_custom_quota_details.

Return type:

bool

is_member_space_limits_remove_exception_details()

Check if the union tag is member_space_limits_remove_exception_details.

Return type:

bool

is_member_suggest_details()

Check if the union tag is member_suggest_details.

Return type:

bool

is_member_suggestions_change_policy_details()

Check if the union tag is member_suggestions_change_policy_details.

Return type:

bool

is_member_transfer_account_contents_details()

Check if the union tag is member_transfer_account_contents_details.

Return type:

bool

is_microsoft_login_change_policy_details()

Check if the union tag is microsoft_login_change_policy_details.

Return type:

bool

is_microsoft_office_addin_change_policy_details()

Check if the union tag is microsoft_office_addin_change_policy_details.

Return type:

bool

is_missing_details()

Check if the union tag is missing_details.

Return type:

bool

is_multi_team_identity_policy_changed_details()

Check if the union tag is multi_team_identity_policy_changed_details.

Return type:

bool

is_network_control_change_policy_details()

Check if the union tag is network_control_change_policy_details.

Return type:

bool

Check if the union tag is no_expiration_link_gen_create_report_details.

Return type:

bool

Check if the union tag is no_expiration_link_gen_report_failed_details.

Return type:

bool

Check if the union tag is no_password_link_gen_create_report_details.

Return type:

bool

Check if the union tag is no_password_link_gen_report_failed_details.

Return type:

bool

Check if the union tag is no_password_link_view_create_report_details.

Return type:

bool

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

Check if the union tag is note_acl_link_details.

Return type:

bool

Check if the union tag is note_acl_team_link_details.

Return type:

bool

is_note_share_receive_details()

Check if the union tag is note_share_receive_details.

Return type:

bool

is_note_shared_details()

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

is_open_note_shared_details()

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

Check if the union tag is outdated_link_view_create_report_details.

Return type:

bool

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

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

is_paper_doc_slack_share_details()

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

Check if the union tag is paper_published_link_change_permission_details.

Return type:

bool

Check if the union tag is paper_published_link_create_details.

Return type:

bool

Check if the union tag is paper_published_link_disabled_details.

Return type:

bool

Check if the union tag is paper_published_link_view_details.

Return type:

bool

is_passkey_add_details()

Check if the union tag is passkey_add_details.

Return type:

bool

is_passkey_login_policy_changed_details()

Check if the union tag is passkey_login_policy_changed_details.

Return type:

bool

is_passkey_remove_details()

Check if the union tag is passkey_remove_details.

Return type:

bool

is_password_change_details()

Check if the union tag is password_change_details.

Return type:

bool

is_password_reset_all_details()

Check if the union tag is password_reset_all_details.

Return type:

bool

is_password_reset_details()

Check if the union tag is password_reset_details.

Return type:

bool

is_password_strength_requirements_change_policy_details()

Check if the union tag is password_strength_requirements_change_policy_details.

Return type:

bool

is_pending_secondary_email_added_details()

Check if the union tag is pending_secondary_email_added_details.

Return type:

bool

is_permanent_delete_change_policy_details()

Check if the union tag is permanent_delete_change_policy_details.

Return type:

bool

is_previews_ai_policy_changed_details()

Check if the union tag is previews_ai_policy_changed_details.

Return type:

bool

is_product_assigned_to_member_details()

Check if the union tag is product_assigned_to_member_details.

Return type:

bool

is_product_removed_from_member_details()

Check if the union tag is product_removed_from_member_details.

Return type:

bool

is_protect_action_add_collaborator_details()

Check if the union tag is protect_action_add_collaborator_details.

Return type:

bool

Check if the union tag is protect_action_add_link_details.

Return type:

bool

is_protect_action_delete_details()

Check if the union tag is protect_action_delete_details.

Return type:

bool

is_protect_action_export_details()

Check if the union tag is protect_action_export_details.

Return type:

bool

is_protect_action_remove_collaborator_details()

Check if the union tag is protect_action_remove_collaborator_details.

Return type:

bool

Check if the union tag is protect_action_remove_link_details.

Return type:

bool

is_protect_action_stop_sharing_details()

Check if the union tag is protect_action_stop_sharing_details.

Return type:

bool

is_protect_internal_domains_changed_details()

Check if the union tag is protect_internal_domains_changed_details.

Return type:

bool

is_protect_policy_activated_details()

Check if the union tag is protect_policy_activated_details.

Return type:

bool

is_protect_policy_deactivated_details()

Check if the union tag is protect_policy_deactivated_details.

Return type:

bool

is_protect_policy_scheduled_details()

Check if the union tag is protect_policy_scheduled_details.

Return type:

bool

is_protect_policy_updated_details()

Check if the union tag is protect_policy_updated_details.

Return type:

bool

is_protect_report_view_details()

Check if the union tag is protect_report_view_details.

Return type:

bool

is_ransomware_alert_create_report_details()

Check if the union tag is ransomware_alert_create_report_details.

Return type:

bool

is_ransomware_alert_create_report_failed_details()

Check if the union tag is ransomware_alert_create_report_failed_details.

Return type:

bool

is_ransomware_restore_process_completed_details()

Check if the union tag is ransomware_restore_process_completed_details.

Return type:

bool

is_ransomware_restore_process_started_details()

Check if the union tag is ransomware_restore_process_started_details.

Return type:

bool

is_replay_adding_people_policy_changed_details()

Check if the union tag is replay_adding_people_policy_changed_details.

Return type:

bool

is_replay_file_delete_details()

Check if the union tag is replay_file_delete_details.

Return type:

bool

is_replay_file_downloaded_details()

Check if the union tag is replay_file_downloaded_details.

Return type:

bool

Check if the union tag is replay_file_shared_link_created_details.

Return type:

bool

Check if the union tag is replay_file_shared_link_modified_details.

Return type:

bool

is_replay_project_team_add_details()

Check if the union tag is replay_project_team_add_details.

Return type:

bool

is_replay_project_team_delete_details()

Check if the union tag is replay_project_team_delete_details.

Return type:

bool

is_replay_sharing_policy_changed_details()

Check if the union tag is replay_sharing_policy_changed_details.

Return type:

bool

is_replay_team_project_created_details()

Check if the union tag is replay_team_project_created_details.

Return type:

bool

is_reseller_support_change_policy_details()

Check if the union tag is reseller_support_change_policy_details.

Return type:

bool

is_reseller_support_session_end_details()

Check if the union tag is reseller_support_session_end_details.

Return type:

bool

is_reseller_support_session_start_details()

Check if the union tag is reseller_support_session_start_details.

Return type:

bool

is_rewind_folder_details()

Check if the union tag is rewind_folder_details.

Return type:

bool

is_rewind_policy_changed_details()

Check if the union tag is rewind_policy_changed_details.

Return type:

bool

is_risc_security_event_details()

Check if the union tag is risc_security_event_details.

Return type:

bool

is_secondary_email_deleted_details()

Check if the union tag is secondary_email_deleted_details.

Return type:

bool

is_secondary_email_verified_details()

Check if the union tag is secondary_email_verified_details.

Return type:

bool

is_secondary_mails_policy_changed_details()

Check if the union tag is secondary_mails_policy_changed_details.

Return type:

bool

is_send_and_track_file_added_details()

Check if the union tag is send_and_track_file_added_details.

Return type:

bool

is_send_and_track_file_renamed_details()

Check if the union tag is send_and_track_file_renamed_details.

Return type:

bool

is_send_and_track_file_updated_details()

Check if the union tag is send_and_track_file_updated_details.

Return type:

bool

Check if the union tag is send_and_track_link_created_details.

Return type:

bool

Check if the union tag is send_and_track_link_deleted_details.

Return type:

bool

Check if the union tag is send_and_track_link_updated_details.

Return type:

bool

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

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

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

is_shared_content_add_invitees_details()

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

is_shared_content_add_member_details()

Check if the union tag is shared_content_add_member_details.

Return type:

bool

is_shared_content_change_downloads_policy_details()

Check if the union tag is shared_content_change_downloads_policy_details.

Return type:

bool

is_shared_content_change_invitee_role_details()

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

is_shared_content_change_member_role_details()

Check if the union tag is shared_content_change_member_role_details.

Return type:

bool

is_shared_content_change_viewer_info_policy_details()

Check if the union tag is shared_content_change_viewer_info_policy_details.

Return type:

bool

is_shared_content_claim_invitation_details()

Check if the union tag is shared_content_claim_invitation_details.

Return type:

bool

is_shared_content_copy_details()

Check if the union tag is shared_content_copy_details.

Return type:

bool

is_shared_content_download_details()

Check if the union tag is shared_content_download_details.

Return type:

bool

is_shared_content_relinquish_membership_details()

Check if the union tag is shared_content_relinquish_membership_details.

Return type:

bool

is_shared_content_remove_invitees_details()

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

is_shared_content_remove_member_details()

Check if the union tag is shared_content_remove_member_details.

Return type:

bool

is_shared_content_request_access_details()

Check if the union tag is shared_content_request_access_details.

Return type:

bool

is_shared_content_restore_invitees_details()

Check if the union tag is shared_content_restore_invitees_details.

Return type:

bool

is_shared_content_restore_member_details()

Check if the union tag is shared_content_restore_member_details.

Return type:

bool

is_shared_content_unshare_details()

Check if the union tag is shared_content_unshare_details.

Return type:

bool

is_shared_content_view_details()

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

is_shared_folder_change_members_inheritance_policy_details()

Check if the union tag is shared_folder_change_members_inheritance_policy_details.

Return type:

bool

is_shared_folder_change_members_management_policy_details()

Check if the union tag is shared_folder_change_members_management_policy_details.

Return type:

bool

is_shared_folder_change_members_policy_details()

Check if the union tag is shared_folder_change_members_policy_details.

Return type:

bool

is_shared_folder_create_details()

Check if the union tag is shared_folder_create_details.

Return type:

bool

is_shared_folder_decline_invitation_details()

Check if the union tag is shared_folder_decline_invitation_details.

Return type:

bool

is_shared_folder_mount_details()

Check if the union tag is shared_folder_mount_details.

Return type:

bool

is_shared_folder_nest_details()

Check if the union tag is shared_folder_nest_details.

Return type:

bool

is_shared_folder_transfer_ownership_details()

Check if the union tag is shared_folder_transfer_ownership_details.

Return type:

bool

is_shared_folder_unmount_details()

Check if the union tag is shared_folder_unmount_details.

Return type:

bool

is_shared_folders_create_report_details()

Check if the union tag is shared_folders_create_report_details.

Return type:

bool

is_shared_folders_create_report_failed_details()

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

is_shared_note_opened_details()

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

Check if the union tag is sharing_change_link_allow_change_expiration_policy_details.

Return type:

bool

Check if the union tag is sharing_change_link_default_expiration_policy_details.

Return type:

bool

Check if the union tag is sharing_change_link_enforce_password_policy_details.

Return type:

bool

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

is_shmodel_group_share_details()

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: