class documentation

class AlertRecipientsSettingType(bb.Union): (source)

View In Hierarchy

Alert recipients setting type 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_custom_list Check if the union tag is ``custom_list``.
Method is_invalid Check if the union tag is ``invalid``.
Method is_none Check if the union tag is ``none``.
Method is_other Check if the union tag is ``other``.
Method is_team_admins Check if the union tag is ``team_admins``.
Class Variable custom_list Undocumented
Class Variable invalid Undocumented
Class Variable none Undocumented
Class Variable other Undocumented
Class Variable team_admins Undocumented
Method _process_custom_annotations Undocumented
Class Variable _catch_all Undocumented
def is_custom_list(self): (source)

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

def is_invalid(self): (source)

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

def is_none(self): (source)

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

def is_other(self): (source)

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

def is_team_admins(self): (source)

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

custom_list = (source)

Undocumented

Undocumented

Undocumented

Undocumented

team_admins = (source)

Undocumented

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

Undocumented

_catch_all: str = (source)

Undocumented