-
Notifications
You must be signed in to change notification settings - Fork 13
/
lineentitylisting.go
57 lines (35 loc) · 956 Bytes
/
lineentitylisting.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
package platformclientv2
import (
"encoding/json"
"strconv"
"strings"
)
// Lineentitylisting
type Lineentitylisting struct {
// Entities
Entities *[]Line `json:"entities,omitempty"`
// PageSize
PageSize *int `json:"pageSize,omitempty"`
// PageNumber
PageNumber *int `json:"pageNumber,omitempty"`
// Total
Total *int `json:"total,omitempty"`
// FirstUri
FirstUri *string `json:"firstUri,omitempty"`
// SelfUri
SelfUri *string `json:"selfUri,omitempty"`
// NextUri
NextUri *string `json:"nextUri,omitempty"`
// LastUri
LastUri *string `json:"lastUri,omitempty"`
// PreviousUri
PreviousUri *string `json:"previousUri,omitempty"`
// PageCount
PageCount *int `json:"pageCount,omitempty"`
}
// String returns a JSON representation of the model
func (o *Lineentitylisting) String() string {
j, _ := json.Marshal(o)
str, _ := strconv.Unquote(strings.Replace(strconv.Quote(string(j)), `\\u`, `\u`, -1))
return str
}