class documentation

class SharedFolderJoinPolicy(bb.Union): (source)

View In Hierarchy

Policy governing which shared folders a team member can join. 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 team_policies.SharedFolderJoinPolicy.from_team_only: Team members can only join folders shared by teammates. :ivar team_policies.SharedFolderJoinPolicy.from_anyone: Team members can join any shared folder, including those shared by users outside the team.

Method is_from_anyone Check if the union tag is ``from_anyone``.
Method is_from_team_only Check if the union tag is ``from_team_only``.
Method is_other Check if the union tag is ``other``.
Class Variable from_anyone Undocumented
Class Variable from_team_only Undocumented
Class Variable other Undocumented
Method _process_custom_annotations Undocumented
Class Variable _catch_all Undocumented
def is_from_anyone(self): (source)

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

def is_from_team_only(self): (source)

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

def is_other(self): (source)

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

from_anyone = (source)

Undocumented

from_team_only = (source)

Undocumented

Undocumented

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

Undocumented

_catch_all: str = (source)

Undocumented