class documentation

class SyncSetting(bb.Union): (source)

View In Hierarchy

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 files.SyncSetting.default: On first sync to members' computers, the specified folder will follow its parent folder's setting or otherwise follow default sync behavior. :ivar files.SyncSetting.not_synced: On first sync to members' computers, the specified folder will be set to not sync with selective sync. :ivar files.SyncSetting.not_synced_inactive: The specified folder's not_synced setting is inactive due to its location or other configuration changes. It will follow its parent folder's setting.

Method is_default Check if the union tag is ``default``.
Method is_not_synced Check if the union tag is ``not_synced``.
Method is_not_synced_inactive Check if the union tag is ``not_synced_inactive``.
Method is_other Check if the union tag is ``other``.
Class Variable default Undocumented
Class Variable not_synced Undocumented
Class Variable not_synced_inactive Undocumented
Class Variable other Undocumented
Method _process_custom_annotations Undocumented
Class Variable _catch_all Undocumented
def is_default(self): (source)

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

def is_not_synced(self): (source)

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

def is_not_synced_inactive(self): (source)

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

def is_other(self): (source)

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

Undocumented

not_synced = (source)

Undocumented

not_synced_inactive = (source)

Undocumented

Undocumented

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

Undocumented

_catch_all: str = (source)

Undocumented