-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
✨ Added the v3.Project.Version.Gets method
- Loading branch information
1 parent
615a55b
commit 2ef0fbe
Showing
3 changed files
with
219 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
[ | ||
{ | ||
"self": "https://your-domain.atlassian.net/rest/api/3/version/10000", | ||
"id": "10000", | ||
"description": "An excellent version", | ||
"name": "New Version 1", | ||
"archived": false, | ||
"released": true, | ||
"releaseDate": "2010-07-06", | ||
"overdue": true, | ||
"userReleaseDate": "6/Jul/2010", | ||
"projectId": 10000 | ||
}, | ||
{ | ||
"self": "https://your-domain.atlassian.net/rest/api/3/version/10010", | ||
"id": "10010", | ||
"description": "Minor Bugfix version", | ||
"name": "Next Version", | ||
"archived": false, | ||
"released": false, | ||
"overdue": false, | ||
"projectId": 10000, | ||
"issuesStatusForFixVersion": { | ||
"unmapped": 0, | ||
"toDo": 10, | ||
"inProgress": 20, | ||
"done": 100 | ||
} | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters