как использовать move_version в JIRA PYTHON - PullRequest
0 голосов
/ 05 октября 2018

Я пытаюсь использовать функцию move_version () в Python JIRA для выпуска версии.Но я хотел бы знать значение или использование каждого параметра в этой функции.

def move_version(self, id, after=None, position=None):
    """Move a version within a project's ordered version list and return a new version Resource for it.

    One, but not both, of ``after`` and ``position`` must be specified.

    :param id: ID of the version to move
    :param after: the self attribute of a version to place the specified version after (that is, higher in the list)
    :param position: the absolute position to move this version to: must be one of ``First``, ``Last``,
        ``Earlier``, or ``Later``

Что такое использование этой функции и что означают параметры после и позиции.

...