-
Notifications
You must be signed in to change notification settings - Fork 13
/
searchrequest.go
110 lines (66 loc) · 2.58 KB
/
searchrequest.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
package platformclientv2
import (
"github.com/leekchan/timeutil"
"encoding/json"
"strconv"
"strings"
)
// Searchrequest
type Searchrequest struct {
// SortOrder - The sort order for results
SortOrder *string `json:"sortOrder,omitempty"`
// SortBy - The field in the resource that you want to sort the results by
SortBy *string `json:"sortBy,omitempty"`
// PageSize - The number of results per page
PageSize *int `json:"pageSize,omitempty"`
// PageNumber - The page of resources you want to retrieve
PageNumber *int `json:"pageNumber,omitempty"`
// Sort - Multi-value sort order, list of multiple sort values
Sort *[]Searchsort `json:"sort,omitempty"`
// ReturnFields - A List of strings. Possible values are any field in the resource you are searching on. The other option is to use ALL_FIELDS, when this is provided all fields in the resource will be returned in the search results.
ReturnFields *[]string `json:"returnFields,omitempty"`
// Expand - Provides more details about a specified resource
Expand *[]string `json:"expand,omitempty"`
// Types - Resource domain type to search
Types *[]string `json:"types,omitempty"`
// Query - The search criteria
Query *[]Searchcriteria `json:"query,omitempty"`
// Aggregations - Aggregation criteria
Aggregations *[]Searchaggregation `json:"aggregations,omitempty"`
}
func (u *Searchrequest) MarshalJSON() ([]byte, error) {
// Redundant initialization to avoid unused import errors for models with no Time values
_ = timeutil.Timedelta{}
type Alias Searchrequest
return json.Marshal(&struct {
SortOrder *string `json:"sortOrder,omitempty"`
SortBy *string `json:"sortBy,omitempty"`
PageSize *int `json:"pageSize,omitempty"`
PageNumber *int `json:"pageNumber,omitempty"`
Sort *[]Searchsort `json:"sort,omitempty"`
ReturnFields *[]string `json:"returnFields,omitempty"`
Expand *[]string `json:"expand,omitempty"`
Types *[]string `json:"types,omitempty"`
Query *[]Searchcriteria `json:"query,omitempty"`
Aggregations *[]Searchaggregation `json:"aggregations,omitempty"`
*Alias
}{
SortOrder: u.SortOrder,
SortBy: u.SortBy,
PageSize: u.PageSize,
PageNumber: u.PageNumber,
Sort: u.Sort,
ReturnFields: u.ReturnFields,
Expand: u.Expand,
Types: u.Types,
Query: u.Query,
Aggregations: u.Aggregations,
Alias: (*Alias)(u),
})
}
// String returns a JSON representation of the model
func (o *Searchrequest) String() string {
j, _ := json.Marshal(o)
str, _ := strconv.Unquote(strings.Replace(strconv.Quote(string(j)), `\\u`, `\u`, -1))
return str
}