class documentation

class AccessInheritance(bb.Union): (source)

View In Hierarchy

Information about the inheritance policy of a shared folder. This class acts as a tagged union. Only one of the ``is_*`` methods will return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. :ivar sharing.AccessInheritance.inherit: The shared folder inherits its members from the parent folder. :ivar sharing.AccessInheritance.no_inherit: The shared folder does not inherit its members from the parent folder.

Method is_inherit Check if the union tag is ``inherit``.
Method is_no_inherit Check if the union tag is ``no_inherit``.
Method is_other Check if the union tag is ``other``.
Class Variable inherit Undocumented
Class Variable no_inherit Undocumented
Class Variable other Undocumented
Method _process_custom_annotations Undocumented
Class Variable _catch_all Undocumented
def is_inherit(self): (source)

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

def is_no_inherit(self): (source)

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

def is_other(self): (source)

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

Undocumented

no_inherit = (source)

Undocumented

Undocumented

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

Undocumented

_catch_all: str = (source)

Undocumented