module documentation

Jira Client module. This module implements a friendly (well, friendlier) interface between the raw JSON responses from Jira and the Resource/dict abstractions provided by this library. Users will construct a JIRA object as described below. Full API documentation can be found at: https://jira.readthedocs.io/en/latest/.

Class JiraCookieAuth Jira Cookie Authentication.
Class QshGenerator Undocumented
Class ResultList No class docstring; 0/6 instance variable, 1/4 method documented
Class TokenAuth Bearer Token Authentication.
Function translate_resource_args Decorator that converts Issue and Project resources to their keys when used as arguments.
Constant LOG Undocumented
Type Variable ResourceType Undocumented
Function _field_worker Undocumented
def translate_resource_args(func: Callable): (source)

Decorator that converts Issue and Project resources to their keys when used as arguments. Args: func (Callable): the function to decorate

Undocumented

Value
_logging.getLogger('jira')
ResourceType = (source)

Undocumented

Value
TypeVar('ResourceType',
        contravariant=True, bound=Resource)
def _field_worker(fields: Dict[str, Any] = None, **fieldargs: Any) -> Union[Dict[str, Dict[str, Any]], Dict[str, Dict[str, str]]]: (source)

Undocumented