class documentation

class TrustedTeamsRequestAction(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.

Method is_accepted Check if the union tag is ``accepted``.
Method is_declined Check if the union tag is ``declined``.
Method is_expired Check if the union tag is ``expired``.
Method is_invited Check if the union tag is ``invited``.
Method is_other Check if the union tag is ``other``.
Method is_revoked Check if the union tag is ``revoked``.
Class Variable accepted Undocumented
Class Variable declined Undocumented
Class Variable expired Undocumented
Class Variable invited Undocumented
Class Variable other Undocumented
Class Variable revoked Undocumented
Method _process_custom_annotations Undocumented
Class Variable _catch_all Undocumented
def is_accepted(self): (source)

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

def is_declined(self): (source)

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

def is_expired(self): (source)

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

def is_invited(self): (source)

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

def is_other(self): (source)

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

def is_revoked(self): (source)

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

accepted = (source)

Undocumented

declined = (source)

Undocumented

Undocumented

Undocumented

Undocumented

Undocumented

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

Undocumented

_catch_all: str = (source)

Undocumented