class documentation

class FedHandshakeAction(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_invite Check if the union tag is ``accepted_invite``.
Method is_canceled_invite Check if the union tag is ``canceled_invite``.
Method is_invite_expired Check if the union tag is ``invite_expired``.
Method is_invited Check if the union tag is ``invited``.
Method is_other Check if the union tag is ``other``.
Method is_rejected_invite Check if the union tag is ``rejected_invite``.
Method is_removed_team Check if the union tag is ``removed_team``.
Class Variable accepted_invite Undocumented
Class Variable canceled_invite Undocumented
Class Variable invite_expired Undocumented
Class Variable invited Undocumented
Class Variable other Undocumented
Class Variable rejected_invite Undocumented
Class Variable removed_team Undocumented
Method _process_custom_annotations Undocumented
Class Variable _catch_all Undocumented
def is_accepted_invite(self): (source)

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

def is_canceled_invite(self): (source)

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

def is_invite_expired(self): (source)

Check if the union tag is ``invite_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_rejected_invite(self): (source)

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

def is_removed_team(self): (source)

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

accepted_invite = (source)

Undocumented

canceled_invite = (source)

Undocumented

invite_expired = (source)

Undocumented

Undocumented

Undocumented

rejected_invite = (source)

Undocumented

removed_team = (source)

Undocumented

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

Undocumented

_catch_all: str = (source)

Undocumented