class documentation

class SharedLinkPolicy(bb.Union): (source)

View In Hierarchy

Who can view shared links in this 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.SharedLinkPolicy.anyone: Links can be shared with anyone. :ivar sharing.SharedLinkPolicy.team: Links can be shared with anyone on the same team as the owner. :ivar sharing.SharedLinkPolicy.members: Links can only be shared among members of the shared folder.

Method is_anyone Check if the union tag is ``anyone``.
Method is_members Check if the union tag is ``members``.
Method is_other Check if the union tag is ``other``.
Method is_team Check if the union tag is ``team``.
Class Variable anyone Undocumented
Class Variable members Undocumented
Class Variable other Undocumented
Class Variable team Undocumented
Method _process_custom_annotations Undocumented
Class Variable _catch_all Undocumented
def is_anyone(self): (source)

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

def is_members(self): (source)

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

def is_other(self): (source)

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

def is_team(self): (source)

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

Undocumented

Undocumented

Undocumented

Undocumented

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

Undocumented

_catch_all: str = (source)

Undocumented