class documentation

class SharedLinkVisibility(bb.Union): (source)

View In Hierarchy

Defines who has access to a shared link. 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_no_one Check if the union tag is ``no_one``.
Method is_other Check if the union tag is ``other``.
Method is_password Check if the union tag is ``password``.
Method is_public Check if the union tag is ``public``.
Method is_team_only Check if the union tag is ``team_only``.
Class Variable no_one Undocumented
Class Variable other Undocumented
Class Variable password Undocumented
Class Variable public Undocumented
Class Variable team_only Undocumented
Method _process_custom_annotations Undocumented
Class Variable _catch_all Undocumented
def is_no_one(self): (source)

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

def is_other(self): (source)

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

def is_password(self): (source)

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

def is_public(self): (source)

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

def is_team_only(self): (source)

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

Undocumented

Undocumented

password = (source)

Undocumented

Undocumented

team_only = (source)

Undocumented

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

Undocumented

_catch_all: str = (source)

Undocumented