forked from gridly-spreadsheet-CMS/gridly-go-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
model_share_view.go
333 lines (279 loc) · 8.39 KB
/
model_share_view.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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
/*
Gridly API
Gridly API documentation
API version: 4.33.0
Contact: [email protected]
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
package gridly
import (
"encoding/json"
"time"
)
// ShareView struct for ShareView
type ShareView struct {
CompanyId *string `json:"companyId,omitempty"`
Link *string `json:"link,omitempty"`
Active *bool `json:"active,omitempty"`
ViewId *string `json:"viewId,omitempty"`
IncludeGridHistory *bool `json:"includeGridHistory,omitempty"`
CreatedDate *time.Time `json:"createdDate,omitempty"`
LastModifiedDate *time.Time `json:"lastModifiedDate,omitempty"`
}
// NewShareView instantiates a new ShareView 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 NewShareView() *ShareView {
this := ShareView{}
return &this
}
// NewShareViewWithDefaults instantiates a new ShareView 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 NewShareViewWithDefaults() *ShareView {
this := ShareView{}
return &this
}
// GetCompanyId returns the CompanyId field value if set, zero value otherwise.
func (o *ShareView) GetCompanyId() string {
if o == nil || isNil(o.CompanyId) {
var ret string
return ret
}
return *o.CompanyId
}
// GetCompanyIdOk returns a tuple with the CompanyId field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ShareView) GetCompanyIdOk() (*string, bool) {
if o == nil || isNil(o.CompanyId) {
return nil, false
}
return o.CompanyId, true
}
// HasCompanyId returns a boolean if a field has been set.
func (o *ShareView) HasCompanyId() bool {
if o != nil && !isNil(o.CompanyId) {
return true
}
return false
}
// SetCompanyId gets a reference to the given string and assigns it to the CompanyId field.
func (o *ShareView) SetCompanyId(v string) {
o.CompanyId = &v
}
// GetLink returns the Link field value if set, zero value otherwise.
func (o *ShareView) GetLink() string {
if o == nil || isNil(o.Link) {
var ret string
return ret
}
return *o.Link
}
// GetLinkOk returns a tuple with the Link field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ShareView) GetLinkOk() (*string, bool) {
if o == nil || isNil(o.Link) {
return nil, false
}
return o.Link, true
}
// HasLink returns a boolean if a field has been set.
func (o *ShareView) HasLink() bool {
if o != nil && !isNil(o.Link) {
return true
}
return false
}
// SetLink gets a reference to the given string and assigns it to the Link field.
func (o *ShareView) SetLink(v string) {
o.Link = &v
}
// GetActive returns the Active field value if set, zero value otherwise.
func (o *ShareView) GetActive() bool {
if o == nil || isNil(o.Active) {
var ret bool
return ret
}
return *o.Active
}
// GetActiveOk returns a tuple with the Active field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ShareView) GetActiveOk() (*bool, bool) {
if o == nil || isNil(o.Active) {
return nil, false
}
return o.Active, true
}
// HasActive returns a boolean if a field has been set.
func (o *ShareView) HasActive() bool {
if o != nil && !isNil(o.Active) {
return true
}
return false
}
// SetActive gets a reference to the given bool and assigns it to the Active field.
func (o *ShareView) SetActive(v bool) {
o.Active = &v
}
// GetViewId returns the ViewId field value if set, zero value otherwise.
func (o *ShareView) GetViewId() string {
if o == nil || isNil(o.ViewId) {
var ret string
return ret
}
return *o.ViewId
}
// GetViewIdOk returns a tuple with the ViewId field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ShareView) GetViewIdOk() (*string, bool) {
if o == nil || isNil(o.ViewId) {
return nil, false
}
return o.ViewId, true
}
// HasViewId returns a boolean if a field has been set.
func (o *ShareView) HasViewId() bool {
if o != nil && !isNil(o.ViewId) {
return true
}
return false
}
// SetViewId gets a reference to the given string and assigns it to the ViewId field.
func (o *ShareView) SetViewId(v string) {
o.ViewId = &v
}
// GetIncludeGridHistory returns the IncludeGridHistory field value if set, zero value otherwise.
func (o *ShareView) GetIncludeGridHistory() bool {
if o == nil || isNil(o.IncludeGridHistory) {
var ret bool
return ret
}
return *o.IncludeGridHistory
}
// GetIncludeGridHistoryOk returns a tuple with the IncludeGridHistory field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ShareView) GetIncludeGridHistoryOk() (*bool, bool) {
if o == nil || isNil(o.IncludeGridHistory) {
return nil, false
}
return o.IncludeGridHistory, true
}
// HasIncludeGridHistory returns a boolean if a field has been set.
func (o *ShareView) HasIncludeGridHistory() bool {
if o != nil && !isNil(o.IncludeGridHistory) {
return true
}
return false
}
// SetIncludeGridHistory gets a reference to the given bool and assigns it to the IncludeGridHistory field.
func (o *ShareView) SetIncludeGridHistory(v bool) {
o.IncludeGridHistory = &v
}
// GetCreatedDate returns the CreatedDate field value if set, zero value otherwise.
func (o *ShareView) GetCreatedDate() time.Time {
if o == nil || isNil(o.CreatedDate) {
var ret time.Time
return ret
}
return *o.CreatedDate
}
// GetCreatedDateOk returns a tuple with the CreatedDate field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ShareView) GetCreatedDateOk() (*time.Time, bool) {
if o == nil || isNil(o.CreatedDate) {
return nil, false
}
return o.CreatedDate, true
}
// HasCreatedDate returns a boolean if a field has been set.
func (o *ShareView) HasCreatedDate() bool {
if o != nil && !isNil(o.CreatedDate) {
return true
}
return false
}
// SetCreatedDate gets a reference to the given time.Time and assigns it to the CreatedDate field.
func (o *ShareView) SetCreatedDate(v time.Time) {
o.CreatedDate = &v
}
// GetLastModifiedDate returns the LastModifiedDate field value if set, zero value otherwise.
func (o *ShareView) GetLastModifiedDate() time.Time {
if o == nil || isNil(o.LastModifiedDate) {
var ret time.Time
return ret
}
return *o.LastModifiedDate
}
// GetLastModifiedDateOk returns a tuple with the LastModifiedDate field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ShareView) GetLastModifiedDateOk() (*time.Time, bool) {
if o == nil || isNil(o.LastModifiedDate) {
return nil, false
}
return o.LastModifiedDate, true
}
// HasLastModifiedDate returns a boolean if a field has been set.
func (o *ShareView) HasLastModifiedDate() bool {
if o != nil && !isNil(o.LastModifiedDate) {
return true
}
return false
}
// SetLastModifiedDate gets a reference to the given time.Time and assigns it to the LastModifiedDate field.
func (o *ShareView) SetLastModifiedDate(v time.Time) {
o.LastModifiedDate = &v
}
func (o ShareView) MarshalJSON() ([]byte, error) {
toSerialize := map[string]interface{}{}
if !isNil(o.CompanyId) {
toSerialize["companyId"] = o.CompanyId
}
if !isNil(o.Link) {
toSerialize["link"] = o.Link
}
if !isNil(o.Active) {
toSerialize["active"] = o.Active
}
if !isNil(o.ViewId) {
toSerialize["viewId"] = o.ViewId
}
if !isNil(o.IncludeGridHistory) {
toSerialize["includeGridHistory"] = o.IncludeGridHistory
}
if !isNil(o.CreatedDate) {
toSerialize["createdDate"] = o.CreatedDate
}
if !isNil(o.LastModifiedDate) {
toSerialize["lastModifiedDate"] = o.LastModifiedDate
}
return json.Marshal(toSerialize)
}
type NullableShareView struct {
value *ShareView
isSet bool
}
func (v NullableShareView) Get() *ShareView {
return v.value
}
func (v *NullableShareView) Set(val *ShareView) {
v.value = val
v.isSet = true
}
func (v NullableShareView) IsSet() bool {
return v.isSet
}
func (v *NullableShareView) Unset() {
v.value = nil
v.isSet = false
}
func NewNullableShareView(val *ShareView) *NullableShareView {
return &NullableShareView{value: val, isSet: true}
}
func (v NullableShareView) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
func (v *NullableShareView) UnmarshalJSON(src []byte) error {
v.isSet = true
return json.Unmarshal(src, &v.value)
}