class documentation

Undocumented

Method __getitem__ Undocumented
Method __init__ Results List.
Method __iter__ Undocumented
Method __next__ Undocumented
Instance Variable current Undocumented
Instance Variable isLast Undocumented
Instance Variable iterable Undocumented
Instance Variable maxResults Undocumented
Instance Variable startAt Undocumented
Instance Variable total Undocumented
@overload
def __getitem__(self, i: SupportsIndex) -> ResourceType:
@overload
def __getitem__(self, s: slice) -> List[ResourceType]:
(source)

Undocumented

def __init__(self, iterable: Iterable = None, _startAt: int = 0, _maxResults: int = 0, _total: Optional[int] = None, _isLast: Optional[bool] = None): (source)

Results List. Args: iterable (Iterable): [description]. Defaults to None. _startAt (int): Start page. Defaults to 0. _maxResults (int): Max results per page. Defaults to 0. _total (Optional[int]): Total results from query. Defaults to 0. _isLast (Optional[bool]): True to mark this page is the last page? (Default: ``None``). see `The official API docs <https://developer.atlassian.com/cloud/jira/platform/rest/v3/intro/#expansion:~:text=for%20all%20operations.-,isLast,-indicates%20whether%20the>`_

def __iter__(self) -> Iterator[ResourceType]: (source)

Undocumented

def __next__(self) -> ResourceType: (source)

Undocumented

Undocumented

Undocumented

Undocumented

maxResults = (source)

Undocumented

Undocumented

Undocumented