class documentation

class GroupsPollError(async_.PollError): (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.GroupsPollError.access_denied: You are not allowed to poll this job.

Method is_access_denied Check if the union tag is ``access_denied``.
Class Variable access_denied Undocumented
Method _process_custom_annotations Undocumented

Inherited from PollError:

Method is_internal_error Check if the union tag is ``internal_error``.
Method is_invalid_async_job_id Check if the union tag is ``invalid_async_job_id``.
Method is_other Check if the union tag is ``other``.
Class Variable internal_error Undocumented
Class Variable invalid_async_job_id Undocumented
Class Variable other Undocumented
Class Variable _catch_all Undocumented
def is_access_denied(self): (source)

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

access_denied = (source)

Undocumented

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