IsLastPage return true if there are no more items beyond this page
()
| 120 | |
| 121 | // IsLastPage return true if there are no more items beyond this page |
| 122 | func (cp *CommentPage) IsLastPage() bool { |
| 123 | return cp.NextStartAt() >= cp.Total |
| 124 | } |
| 125 | |
| 126 | // IssueFields the JSON object returned as the "fields" member of an issue. |
| 127 | // There are a very large number of fields and many of them are custom. We |
no test coverage detected