We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 041e281 commit ed264d5Copy full SHA for ed264d5
models/paper_list_result.go
@@ -1,7 +1,5 @@
1
package models
2
3
-import "fmt"
4
-
5
// PaperListResult is the result of PaperListResult() function.
6
type PaperListResult struct {
7
Count int64 `json:"count"`
@@ -10,8 +8,6 @@ type PaperListResult struct {
10
8
Results []PaperListResultItem `json:"results"`
11
9
}
12
13
-var _ fmt.Stringer = (*PaperListResultItem)(nil)
14
15
type PaperListResultItem struct {
16
ID string `json:"id"`
17
ArxivID *string `json:"arxiv_id"`
@@ -26,4 +22,4 @@ type PaperListResultItem struct {
26
22
ConferenceURLAbs *string `json:"conference_url_abs"`
27
23
ConferenceURLPDF *string `json:"conference_url_pdf"`
28
24
Proceeding *string `json:"proceeding"`
29
-}
25
+}
0 commit comments