class documentation

class FolderSharingPolicyType(bb.Union): (source)

View In Hierarchy

The sharing policy of a Paper folder. The sharing policy of subfolders is inherited from the root 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 paper.FolderSharingPolicyType.team: Everyone in your team and anyone directly invited can access this folder. :ivar paper.FolderSharingPolicyType.invite_only: Only people directly invited can access this folder.

Method is_invite_only Check if the union tag is ``invite_only``.
Method is_team Check if the union tag is ``team``.
Class Variable invite_only Undocumented
Class Variable team Undocumented
Method _process_custom_annotations Undocumented
Class Variable _catch_all Undocumented
def is_invite_only(self): (source)

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

def is_team(self): (source)

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

invite_only = (source)

Undocumented

Undocumented

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

Undocumented

_catch_all = (source)

Undocumented