class documentation

class QuickActionType(bb.Union): (source)

View In Hierarchy

Quick action type. This class acts as a tagged union. Only one of the ``is_*`` methods will return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method.

Method is_delete_shared_link Check if the union tag is ``delete_shared_link``.
Method is_other Check if the union tag is ``other``.
Method is_reset_password Check if the union tag is ``reset_password``.
Method is_restore_file_or_folder Check if the union tag is ``restore_file_or_folder``.
Method is_unlink_app Check if the union tag is ``unlink_app``.
Method is_unlink_device Check if the union tag is ``unlink_device``.
Method is_unlink_session Check if the union tag is ``unlink_session``.
Class Variable delete_shared_link Undocumented
Class Variable other Undocumented
Class Variable reset_password Undocumented
Class Variable restore_file_or_folder Undocumented
Class Variable unlink_app Undocumented
Class Variable unlink_device Undocumented
Class Variable unlink_session Undocumented
Method _process_custom_annotations Undocumented
Class Variable _catch_all Undocumented
def is_delete_shared_link(self): (source)

Check if the union tag is ``delete_shared_link``. :rtype: bool

def is_other(self): (source)

Check if the union tag is ``other``. :rtype: bool

def is_reset_password(self): (source)

Check if the union tag is ``reset_password``. :rtype: bool

def is_restore_file_or_folder(self): (source)

Check if the union tag is ``restore_file_or_folder``. :rtype: bool

def is_unlink_app(self): (source)

Check if the union tag is ``unlink_app``. :rtype: bool

def is_unlink_device(self): (source)

Check if the union tag is ``unlink_device``. :rtype: bool

def is_unlink_session(self): (source)

Check if the union tag is ``unlink_session``. :rtype: bool

delete_shared_link = (source)

Undocumented

Undocumented

reset_password = (source)

Undocumented

restore_file_or_folder = (source)

Undocumented

unlink_app = (source)

Undocumented

unlink_device = (source)

Undocumented

unlink_session = (source)

Undocumented

def _process_custom_annotations(self, annotation_type, field_path, processor): (source)

Undocumented

_catch_all: str = (source)

Undocumented