-
Notifications
You must be signed in to change notification settings - Fork 13
/
scimv2schemalistresponse.go
104 lines (74 loc) · 2.82 KB
/
scimv2schemalistresponse.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
package platformclientv2
import (
"github.com/leekchan/timeutil"
"encoding/json"
"strconv"
"strings"
)
// Scimv2schemalistresponse - Defines the list response for SCIM resource types.
type Scimv2schemalistresponse struct {
// Schemas - The list of supported schemas.
Schemas *[]string `json:"schemas,omitempty"`
// TotalResults - The total number of results.
TotalResults *int `json:"totalResults,omitempty"`
// StartIndex - The 1-based index of the first result returned by this request. Add this to \"itemsPerPage\" when requesting the next page of results.
StartIndex *int `json:"startIndex,omitempty"`
// ItemsPerPage - The number of resources returned per page.
ItemsPerPage *int `json:"itemsPerPage,omitempty"`
// Resources - The list of requested resources.
Resources *[]Scimv2schemadefinition `json:"Resources,omitempty"`
}
func (o *Scimv2schemalistresponse) MarshalJSON() ([]byte, error) {
// Redundant initialization to avoid unused import errors for models with no Time values
_ = timeutil.Timedelta{}
type Alias Scimv2schemalistresponse
return json.Marshal(&struct {
Schemas *[]string `json:"schemas,omitempty"`
TotalResults *int `json:"totalResults,omitempty"`
StartIndex *int `json:"startIndex,omitempty"`
ItemsPerPage *int `json:"itemsPerPage,omitempty"`
Resources *[]Scimv2schemadefinition `json:"Resources,omitempty"`
*Alias
}{
Schemas: o.Schemas,
TotalResults: o.TotalResults,
StartIndex: o.StartIndex,
ItemsPerPage: o.ItemsPerPage,
Resources: o.Resources,
Alias: (*Alias)(o),
})
}
func (o *Scimv2schemalistresponse) UnmarshalJSON(b []byte) error {
var Scimv2schemalistresponseMap map[string]interface{}
err := json.Unmarshal(b, &Scimv2schemalistresponseMap)
if err != nil {
return err
}
if Schemas, ok := Scimv2schemalistresponseMap["schemas"].([]interface{}); ok {
SchemasString, _ := json.Marshal(Schemas)
json.Unmarshal(SchemasString, &o.Schemas)
}
if TotalResults, ok := Scimv2schemalistresponseMap["totalResults"].(float64); ok {
TotalResultsInt := int(TotalResults)
o.TotalResults = &TotalResultsInt
}
if StartIndex, ok := Scimv2schemalistresponseMap["startIndex"].(float64); ok {
StartIndexInt := int(StartIndex)
o.StartIndex = &StartIndexInt
}
if ItemsPerPage, ok := Scimv2schemalistresponseMap["itemsPerPage"].(float64); ok {
ItemsPerPageInt := int(ItemsPerPage)
o.ItemsPerPage = &ItemsPerPageInt
}
if Resources, ok := Scimv2schemalistresponseMap["Resources"].([]interface{}); ok {
ResourcesString, _ := json.Marshal(Resources)
json.Unmarshal(ResourcesString, &o.Resources)
}
return nil
}
// String returns a JSON representation of the model
func (o *Scimv2schemalistresponse) String() string {
j, _ := json.Marshal(o)
str, _ := strconv.Unquote(strings.Replace(strconv.Quote(string(j)), `\\u`, `\u`, -1))
return str
}