We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2693f63 commit 1ac0a75Copy full SHA for 1ac0a75
models/repository.go
@@ -2,8 +2,10 @@ package models
2
3
// RepositoryList contains code repositories implemented by a certain paper.
4
type RepositoryList struct {
5
- Count int `json:"count"`
6
- Results []Repository `json:"results"`
+ Count int64 `json:"count"`
+ Next *string `json:"next"`
7
+ Previous *string `json:"previous"`
8
+ Results []Repository `json:"results"`
9
}
10
11
type Repository struct {
0 commit comments