-
Notifications
You must be signed in to change notification settings - Fork 5
/
model_paginated_app_user.go
148 lines (124 loc) · 4.14 KB
/
model_paginated_app_user.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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
// Code based on the AtlasAPI V2 OpenAPI file
package admin
import (
"encoding/json"
)
// PaginatedAppUser struct for PaginatedAppUser
type PaginatedAppUser struct {
// List of one or more Uniform Resource Locators (URLs) that point to API sub-resources, related API resources, or both. RFC 5988 outlines these relationships.
// Read only field.
Links *[]Link `json:"links,omitempty"`
// List of returned documents that MongoDB Cloud providers when completing this request.
// Read only field.
Results *[]CloudAppUser `json:"results,omitempty"`
// Number of documents returned in this response.
// Read only field.
TotalCount *int `json:"totalCount,omitempty"`
}
// NewPaginatedAppUser instantiates a new PaginatedAppUser object
// This constructor will assign default values to properties that have it defined,
// and makes sure properties required by API are set, but the set of arguments
// will change when the set of required properties is changed
func NewPaginatedAppUser() *PaginatedAppUser {
this := PaginatedAppUser{}
return &this
}
// NewPaginatedAppUserWithDefaults instantiates a new PaginatedAppUser object
// This constructor will only assign default values to properties that have it defined,
// but it doesn't guarantee that properties required by API are set
func NewPaginatedAppUserWithDefaults() *PaginatedAppUser {
this := PaginatedAppUser{}
return &this
}
// GetLinks returns the Links field value if set, zero value otherwise
func (o *PaginatedAppUser) GetLinks() []Link {
if o == nil || IsNil(o.Links) {
var ret []Link
return ret
}
return *o.Links
}
// GetLinksOk returns a tuple with the Links field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *PaginatedAppUser) GetLinksOk() (*[]Link, bool) {
if o == nil || IsNil(o.Links) {
return nil, false
}
return o.Links, true
}
// HasLinks returns a boolean if a field has been set.
func (o *PaginatedAppUser) HasLinks() bool {
if o != nil && !IsNil(o.Links) {
return true
}
return false
}
// SetLinks gets a reference to the given []Link and assigns it to the Links field.
func (o *PaginatedAppUser) SetLinks(v []Link) {
o.Links = &v
}
// GetResults returns the Results field value if set, zero value otherwise
func (o *PaginatedAppUser) GetResults() []CloudAppUser {
if o == nil || IsNil(o.Results) {
var ret []CloudAppUser
return ret
}
return *o.Results
}
// GetResultsOk returns a tuple with the Results field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *PaginatedAppUser) GetResultsOk() (*[]CloudAppUser, bool) {
if o == nil || IsNil(o.Results) {
return nil, false
}
return o.Results, true
}
// HasResults returns a boolean if a field has been set.
func (o *PaginatedAppUser) HasResults() bool {
if o != nil && !IsNil(o.Results) {
return true
}
return false
}
// SetResults gets a reference to the given []CloudAppUser and assigns it to the Results field.
func (o *PaginatedAppUser) SetResults(v []CloudAppUser) {
o.Results = &v
}
// GetTotalCount returns the TotalCount field value if set, zero value otherwise
func (o *PaginatedAppUser) GetTotalCount() int {
if o == nil || IsNil(o.TotalCount) {
var ret int
return ret
}
return *o.TotalCount
}
// GetTotalCountOk returns a tuple with the TotalCount field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *PaginatedAppUser) GetTotalCountOk() (*int, bool) {
if o == nil || IsNil(o.TotalCount) {
return nil, false
}
return o.TotalCount, true
}
// HasTotalCount returns a boolean if a field has been set.
func (o *PaginatedAppUser) HasTotalCount() bool {
if o != nil && !IsNil(o.TotalCount) {
return true
}
return false
}
// SetTotalCount gets a reference to the given int and assigns it to the TotalCount field.
func (o *PaginatedAppUser) SetTotalCount(v int) {
o.TotalCount = &v
}
func (o PaginatedAppUser) MarshalJSONWithoutReadOnly() ([]byte, error) {
toSerialize, err := o.ToMap()
if err != nil {
return []byte{}, err
}
return json.Marshal(toSerialize)
}
func (o PaginatedAppUser) ToMap() (map[string]interface{}, error) {
toSerialize := map[string]interface{}{}
return toSerialize, nil
}