class documentation

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

Class Method property_group_lookup Create an instance of this class set to the ``property_group_lookup`` tag with value ``val``.
Method get_property_group_lookup Only call this if :meth:`is_property_group_lookup` is true.
Method is_other Check if the union tag is ``other``.
Method is_property_group_lookup Check if the union tag is ``property_group_lookup``.
Class Variable other Undocumented
Method _process_custom_annotations Undocumented
Class Variable _catch_all Undocumented
@classmethod
def property_group_lookup(cls, val): (source)

Create an instance of this class set to the ``property_group_lookup`` tag with value ``val``. :param LookUpPropertiesError val: :rtype: PropertiesSearchError

def get_property_group_lookup(self): (source)

Only call this if :meth:`is_property_group_lookup` is true. :rtype: LookUpPropertiesError

def is_other(self): (source)

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

def is_property_group_lookup(self): (source)

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

Undocumented

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

Undocumented

_catch_all: str = (source)

Undocumented