class documentation

class TeamReportFailureReason(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.TeamReportFailureReason.temporary_error: We couldn't create the report, but we think this was a fluke. Everything should work if you try it again. :ivar team.TeamReportFailureReason.many_reports_at_once: Too many other reports are being created right now. Try creating this report again once the others finish. :ivar team.TeamReportFailureReason.too_much_data: We couldn't create the report. Try creating the report again with less data.

Method is_many_reports_at_once Check if the union tag is ``many_reports_at_once``.
Method is_other Check if the union tag is ``other``.
Method is_temporary_error Check if the union tag is ``temporary_error``.
Method is_too_much_data Check if the union tag is ``too_much_data``.
Class Variable many_reports_at_once Undocumented
Class Variable other Undocumented
Class Variable temporary_error Undocumented
Class Variable too_much_data Undocumented
Method _process_custom_annotations Undocumented
Class Variable _catch_all Undocumented
def is_many_reports_at_once(self): (source)

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

def is_other(self): (source)

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

def is_temporary_error(self): (source)

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

def is_too_much_data(self): (source)

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

many_reports_at_once = (source)

Undocumented

Undocumented

temporary_error = (source)

Undocumented

too_much_data = (source)

Undocumented

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

Undocumented

_catch_all: str = (source)

Undocumented