class documentation

class ExternalDriveBackupStatus(bb.Union): (source)

View In Hierarchy

External Drive Backup status 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_broken Check if the union tag is ``broken``.
Method is_created Check if the union tag is ``created``.
Method is_created_or_broken Check if the union tag is ``created_or_broken``.
Method is_deleted Check if the union tag is ``deleted``.
Method is_empty Check if the union tag is ``empty``.
Method is_other Check if the union tag is ``other``.
Method is_unknown Check if the union tag is ``unknown``.
Class Variable broken Undocumented
Class Variable created Undocumented
Class Variable created_or_broken Undocumented
Class Variable deleted Undocumented
Class Variable empty Undocumented
Class Variable other Undocumented
Class Variable unknown Undocumented
Method _process_custom_annotations Undocumented
Class Variable _catch_all Undocumented
def is_broken(self): (source)

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

def is_created(self): (source)

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

def is_created_or_broken(self): (source)

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

def is_deleted(self): (source)

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

def is_empty(self): (source)

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

def is_other(self): (source)

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

def is_unknown(self): (source)

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

Undocumented

Undocumented

created_or_broken = (source)

Undocumented

Undocumented

Undocumented

Undocumented

Undocumented

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

Undocumented

_catch_all: str = (source)

Undocumented