class documentation

class AclUpdatePolicy(bb.Union): (source)

View In Hierarchy

Who can change a shared folder's access control list (ACL). In other words, who can add, remove, or change the privileges of members. This class acts as a tagged union. Only one of the ``is_*`` methods will return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. :ivar sharing.AclUpdatePolicy.owner: Only the owner can update the ACL. :ivar sharing.AclUpdatePolicy.editors: Any editor can update the ACL. This may be further restricted to editors on the same team.

Method is_editors Check if the union tag is ``editors``.
Method is_other Check if the union tag is ``other``.
Method is_owner Check if the union tag is ``owner``.
Class Variable editors Undocumented
Class Variable other Undocumented
Class Variable owner Undocumented
Method _process_custom_annotations Undocumented
Class Variable _catch_all Undocumented
def is_editors(self): (source)

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

def is_other(self): (source)

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

def is_owner(self): (source)

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

Undocumented

Undocumented

Undocumented

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

Undocumented

_catch_all: str = (source)

Undocumented