class documentation

class LegalHoldStatus(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 team.LegalHoldStatus.active: The legal hold policy is active. :ivar team.LegalHoldStatus.released: The legal hold policy was released. :ivar team.LegalHoldStatus.activating: The legal hold policy is activating. :ivar team.LegalHoldStatus.updating: The legal hold policy is updating. :ivar team.LegalHoldStatus.exporting: The legal hold policy is exporting. :ivar team.LegalHoldStatus.releasing: The legal hold policy is releasing.

Method is_activating Check if the union tag is ``activating``.
Method is_active Check if the union tag is ``active``.
Method is_exporting Check if the union tag is ``exporting``.
Method is_other Check if the union tag is ``other``.
Method is_released Check if the union tag is ``released``.
Method is_releasing Check if the union tag is ``releasing``.
Method is_updating Check if the union tag is ``updating``.
Class Variable activating Undocumented
Class Variable active Undocumented
Class Variable exporting Undocumented
Class Variable other Undocumented
Class Variable released Undocumented
Class Variable releasing Undocumented
Class Variable updating Undocumented
Method _process_custom_annotations Undocumented
Class Variable _catch_all Undocumented
def is_activating(self): (source)

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

def is_active(self): (source)

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

def is_exporting(self): (source)

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

def is_other(self): (source)

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

def is_released(self): (source)

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

def is_releasing(self): (source)

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

def is_updating(self): (source)

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

activating = (source)

Undocumented

Undocumented

exporting = (source)

Undocumented

Undocumented

released = (source)

Undocumented

releasing = (source)

Undocumented

updating = (source)

Undocumented

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

Undocumented

_catch_all: str = (source)

Undocumented