-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathmodel_intake_catalog_patch.go
More file actions
507 lines (419 loc) · 23.4 KB
/
model_intake_catalog_patch.go
File metadata and controls
507 lines (419 loc) · 23.4 KB
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
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
/*
STACKIT Intake API
This API provides endpoints for managing Intakes.
API version: 1beta.3.6
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
package intake
import (
"encoding/json"
)
// checks if the IntakeCatalogPatch type satisfies the MappedNullable interface at compile time
var _ MappedNullable = &IntakeCatalogPatch{}
/*
types and functions for auth
*/
// isModel
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type IntakeCatalogPatchGetAuthAttributeType = *CatalogAuthPatch
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type IntakeCatalogPatchGetAuthArgType = CatalogAuthPatch
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type IntakeCatalogPatchGetAuthRetType = CatalogAuthPatch
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func getIntakeCatalogPatchGetAuthAttributeTypeOk(arg IntakeCatalogPatchGetAuthAttributeType) (ret IntakeCatalogPatchGetAuthRetType, ok bool) {
if arg == nil {
return ret, false
}
return *arg, true
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func setIntakeCatalogPatchGetAuthAttributeType(arg *IntakeCatalogPatchGetAuthAttributeType, val IntakeCatalogPatchGetAuthRetType) {
*arg = &val
}
/*
types and functions for namespace
*/
// isNotNullableString
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type IntakeCatalogPatchGetNamespaceAttributeType = *string
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func getIntakeCatalogPatchGetNamespaceAttributeTypeOk(arg IntakeCatalogPatchGetNamespaceAttributeType) (ret IntakeCatalogPatchGetNamespaceRetType, ok bool) {
if arg == nil {
return ret, false
}
return *arg, true
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func setIntakeCatalogPatchGetNamespaceAttributeType(arg *IntakeCatalogPatchGetNamespaceAttributeType, val IntakeCatalogPatchGetNamespaceRetType) {
*arg = &val
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type IntakeCatalogPatchGetNamespaceArgType = string
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type IntakeCatalogPatchGetNamespaceRetType = string
/*
types and functions for partitionBy
*/
// isArray
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type IntakeCatalogPatchGetPartitionByAttributeType = *[]string
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type IntakeCatalogPatchGetPartitionByArgType = *[]string
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type IntakeCatalogPatchGetPartitionByRetType = *[]string
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func getIntakeCatalogPatchGetPartitionByAttributeTypeOk(arg IntakeCatalogPatchGetPartitionByAttributeType) (ret IntakeCatalogPatchGetPartitionByRetType, ok bool) {
if arg == nil {
return nil, false
}
return arg, true
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func setIntakeCatalogPatchGetPartitionByAttributeType(arg *IntakeCatalogPatchGetPartitionByAttributeType, val IntakeCatalogPatchGetPartitionByRetType) {
*arg = val
}
/*
types and functions for partitioning
*/
// isEnumRef
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type IntakeCatalogPatchGetPartitioningAttributeType = *PartitioningUpdateType
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type IntakeCatalogPatchGetPartitioningArgType = PartitioningUpdateType
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type IntakeCatalogPatchGetPartitioningRetType = PartitioningUpdateType
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func getIntakeCatalogPatchGetPartitioningAttributeTypeOk(arg IntakeCatalogPatchGetPartitioningAttributeType) (ret IntakeCatalogPatchGetPartitioningRetType, ok bool) {
if arg == nil {
return ret, false
}
return *arg, true
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func setIntakeCatalogPatchGetPartitioningAttributeType(arg *IntakeCatalogPatchGetPartitioningAttributeType, val IntakeCatalogPatchGetPartitioningRetType) {
*arg = &val
}
/*
types and functions for tableName
*/
// isNotNullableString
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type IntakeCatalogPatchGetTableNameAttributeType = *string
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func getIntakeCatalogPatchGetTableNameAttributeTypeOk(arg IntakeCatalogPatchGetTableNameAttributeType) (ret IntakeCatalogPatchGetTableNameRetType, ok bool) {
if arg == nil {
return ret, false
}
return *arg, true
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func setIntakeCatalogPatchGetTableNameAttributeType(arg *IntakeCatalogPatchGetTableNameAttributeType, val IntakeCatalogPatchGetTableNameRetType) {
*arg = &val
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type IntakeCatalogPatchGetTableNameArgType = string
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type IntakeCatalogPatchGetTableNameRetType = string
/*
types and functions for uri
*/
// isNotNullableString
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type IntakeCatalogPatchGetUriAttributeType = *string
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func getIntakeCatalogPatchGetUriAttributeTypeOk(arg IntakeCatalogPatchGetUriAttributeType) (ret IntakeCatalogPatchGetUriRetType, ok bool) {
if arg == nil {
return ret, false
}
return *arg, true
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func setIntakeCatalogPatchGetUriAttributeType(arg *IntakeCatalogPatchGetUriAttributeType, val IntakeCatalogPatchGetUriRetType) {
*arg = &val
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type IntakeCatalogPatchGetUriArgType = string
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type IntakeCatalogPatchGetUriRetType = string
/*
types and functions for warehouse
*/
// isNotNullableString
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type IntakeCatalogPatchGetWarehouseAttributeType = *string
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func getIntakeCatalogPatchGetWarehouseAttributeTypeOk(arg IntakeCatalogPatchGetWarehouseAttributeType) (ret IntakeCatalogPatchGetWarehouseRetType, ok bool) {
if arg == nil {
return ret, false
}
return *arg, true
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func setIntakeCatalogPatchGetWarehouseAttributeType(arg *IntakeCatalogPatchGetWarehouseAttributeType, val IntakeCatalogPatchGetWarehouseRetType) {
*arg = &val
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type IntakeCatalogPatchGetWarehouseArgType = string
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type IntakeCatalogPatchGetWarehouseRetType = string
// IntakeCatalogPatch The Iceberg catalog configuration
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type IntakeCatalogPatch struct {
Auth IntakeCatalogPatchGetAuthAttributeType `json:"auth,omitempty"`
// The namespace to which data shall be written. It will be automatically created, if it does not exist.
Namespace IntakeCatalogPatchGetNamespaceAttributeType `json:"namespace,omitempty"`
// List of Iceberg partitioning expressions to use when creating the target table. This setting can only be used when `partitioning` is set to `manual`. See the [Apache Iceberg spec](https://iceberg.apache.org/spec/#partitioning) for more details.
PartitionBy IntakeCatalogPatchGetPartitionByAttributeType `json:"partitionBy,omitempty"`
Partitioning IntakeCatalogPatchGetPartitioningAttributeType `json:"partitioning,omitempty"`
// The table name is a short name chosen by the user to identify the table in Iceberg.
TableName IntakeCatalogPatchGetTableNameAttributeType `json:"tableName,omitempty"`
// The URI to the Iceberg catalog endpoint
Uri IntakeCatalogPatchGetUriAttributeType `json:"uri,omitempty"`
// The Iceberg warehouse to connect to, required when the catalog has no default warehouse configured.
Warehouse IntakeCatalogPatchGetWarehouseAttributeType `json:"warehouse,omitempty"`
}
// NewIntakeCatalogPatch instantiates a new IntakeCatalogPatch 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
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func NewIntakeCatalogPatch() *IntakeCatalogPatch {
this := IntakeCatalogPatch{}
return &this
}
// NewIntakeCatalogPatchWithDefaults instantiates a new IntakeCatalogPatch 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
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func NewIntakeCatalogPatchWithDefaults() *IntakeCatalogPatch {
this := IntakeCatalogPatch{}
var namespace string = "intake"
this.Namespace = &namespace
return &this
}
// GetAuth returns the Auth field value if set, zero value otherwise.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o *IntakeCatalogPatch) GetAuth() (res IntakeCatalogPatchGetAuthRetType) {
res, _ = o.GetAuthOk()
return
}
// GetAuthOk returns a tuple with the Auth field value if set, nil otherwise
// and a boolean to check if the value has been set.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o *IntakeCatalogPatch) GetAuthOk() (ret IntakeCatalogPatchGetAuthRetType, ok bool) {
return getIntakeCatalogPatchGetAuthAttributeTypeOk(o.Auth)
}
// HasAuth returns a boolean if a field has been set.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o *IntakeCatalogPatch) HasAuth() bool {
_, ok := o.GetAuthOk()
return ok
}
// SetAuth gets a reference to the given CatalogAuthPatch and assigns it to the Auth field.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o *IntakeCatalogPatch) SetAuth(v IntakeCatalogPatchGetAuthRetType) {
setIntakeCatalogPatchGetAuthAttributeType(&o.Auth, v)
}
// GetNamespace returns the Namespace field value if set, zero value otherwise.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o *IntakeCatalogPatch) GetNamespace() (res IntakeCatalogPatchGetNamespaceRetType) {
res, _ = o.GetNamespaceOk()
return
}
// GetNamespaceOk returns a tuple with the Namespace field value if set, nil otherwise
// and a boolean to check if the value has been set.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o *IntakeCatalogPatch) GetNamespaceOk() (ret IntakeCatalogPatchGetNamespaceRetType, ok bool) {
return getIntakeCatalogPatchGetNamespaceAttributeTypeOk(o.Namespace)
}
// HasNamespace returns a boolean if a field has been set.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o *IntakeCatalogPatch) HasNamespace() bool {
_, ok := o.GetNamespaceOk()
return ok
}
// SetNamespace gets a reference to the given string and assigns it to the Namespace field.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o *IntakeCatalogPatch) SetNamespace(v IntakeCatalogPatchGetNamespaceRetType) {
setIntakeCatalogPatchGetNamespaceAttributeType(&o.Namespace, v)
}
// GetPartitionBy returns the PartitionBy field value if set, zero value otherwise (both if not set or set to explicit null).
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o *IntakeCatalogPatch) GetPartitionBy() (res IntakeCatalogPatchGetPartitionByRetType) {
res, _ = o.GetPartitionByOk()
return
}
// GetPartitionByOk returns a tuple with the PartitionBy field value if set, nil otherwise
// and a boolean to check if the value has been set.
// NOTE: If the value is an explicit nil, `nil, true` will be returned
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o *IntakeCatalogPatch) GetPartitionByOk() (ret IntakeCatalogPatchGetPartitionByRetType, ok bool) {
return getIntakeCatalogPatchGetPartitionByAttributeTypeOk(o.PartitionBy)
}
// HasPartitionBy returns a boolean if a field has been set.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o *IntakeCatalogPatch) HasPartitionBy() bool {
_, ok := o.GetPartitionByOk()
return ok
}
// SetPartitionBy gets a reference to the given []string and assigns it to the PartitionBy field.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o *IntakeCatalogPatch) SetPartitionBy(v IntakeCatalogPatchGetPartitionByRetType) {
setIntakeCatalogPatchGetPartitionByAttributeType(&o.PartitionBy, v)
}
// GetPartitioning returns the Partitioning field value if set, zero value otherwise.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o *IntakeCatalogPatch) GetPartitioning() (res IntakeCatalogPatchGetPartitioningRetType) {
res, _ = o.GetPartitioningOk()
return
}
// GetPartitioningOk returns a tuple with the Partitioning field value if set, nil otherwise
// and a boolean to check if the value has been set.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o *IntakeCatalogPatch) GetPartitioningOk() (ret IntakeCatalogPatchGetPartitioningRetType, ok bool) {
return getIntakeCatalogPatchGetPartitioningAttributeTypeOk(o.Partitioning)
}
// HasPartitioning returns a boolean if a field has been set.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o *IntakeCatalogPatch) HasPartitioning() bool {
_, ok := o.GetPartitioningOk()
return ok
}
// SetPartitioning gets a reference to the given PartitioningUpdateType and assigns it to the Partitioning field.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o *IntakeCatalogPatch) SetPartitioning(v IntakeCatalogPatchGetPartitioningRetType) {
setIntakeCatalogPatchGetPartitioningAttributeType(&o.Partitioning, v)
}
// GetTableName returns the TableName field value if set, zero value otherwise.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o *IntakeCatalogPatch) GetTableName() (res IntakeCatalogPatchGetTableNameRetType) {
res, _ = o.GetTableNameOk()
return
}
// GetTableNameOk returns a tuple with the TableName field value if set, nil otherwise
// and a boolean to check if the value has been set.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o *IntakeCatalogPatch) GetTableNameOk() (ret IntakeCatalogPatchGetTableNameRetType, ok bool) {
return getIntakeCatalogPatchGetTableNameAttributeTypeOk(o.TableName)
}
// HasTableName returns a boolean if a field has been set.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o *IntakeCatalogPatch) HasTableName() bool {
_, ok := o.GetTableNameOk()
return ok
}
// SetTableName gets a reference to the given string and assigns it to the TableName field.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o *IntakeCatalogPatch) SetTableName(v IntakeCatalogPatchGetTableNameRetType) {
setIntakeCatalogPatchGetTableNameAttributeType(&o.TableName, v)
}
// GetUri returns the Uri field value if set, zero value otherwise.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o *IntakeCatalogPatch) GetUri() (res IntakeCatalogPatchGetUriRetType) {
res, _ = o.GetUriOk()
return
}
// GetUriOk returns a tuple with the Uri field value if set, nil otherwise
// and a boolean to check if the value has been set.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o *IntakeCatalogPatch) GetUriOk() (ret IntakeCatalogPatchGetUriRetType, ok bool) {
return getIntakeCatalogPatchGetUriAttributeTypeOk(o.Uri)
}
// HasUri returns a boolean if a field has been set.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o *IntakeCatalogPatch) HasUri() bool {
_, ok := o.GetUriOk()
return ok
}
// SetUri gets a reference to the given string and assigns it to the Uri field.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o *IntakeCatalogPatch) SetUri(v IntakeCatalogPatchGetUriRetType) {
setIntakeCatalogPatchGetUriAttributeType(&o.Uri, v)
}
// GetWarehouse returns the Warehouse field value if set, zero value otherwise.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o *IntakeCatalogPatch) GetWarehouse() (res IntakeCatalogPatchGetWarehouseRetType) {
res, _ = o.GetWarehouseOk()
return
}
// GetWarehouseOk returns a tuple with the Warehouse field value if set, nil otherwise
// and a boolean to check if the value has been set.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o *IntakeCatalogPatch) GetWarehouseOk() (ret IntakeCatalogPatchGetWarehouseRetType, ok bool) {
return getIntakeCatalogPatchGetWarehouseAttributeTypeOk(o.Warehouse)
}
// HasWarehouse returns a boolean if a field has been set.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o *IntakeCatalogPatch) HasWarehouse() bool {
_, ok := o.GetWarehouseOk()
return ok
}
// SetWarehouse gets a reference to the given string and assigns it to the Warehouse field.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o *IntakeCatalogPatch) SetWarehouse(v IntakeCatalogPatchGetWarehouseRetType) {
setIntakeCatalogPatchGetWarehouseAttributeType(&o.Warehouse, v)
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o IntakeCatalogPatch) ToMap() (map[string]interface{}, error) {
toSerialize := map[string]interface{}{}
if val, ok := getIntakeCatalogPatchGetAuthAttributeTypeOk(o.Auth); ok {
toSerialize["Auth"] = val
}
if val, ok := getIntakeCatalogPatchGetNamespaceAttributeTypeOk(o.Namespace); ok {
toSerialize["Namespace"] = val
}
if val, ok := getIntakeCatalogPatchGetPartitionByAttributeTypeOk(o.PartitionBy); ok {
toSerialize["PartitionBy"] = val
}
if val, ok := getIntakeCatalogPatchGetPartitioningAttributeTypeOk(o.Partitioning); ok {
toSerialize["Partitioning"] = val
}
if val, ok := getIntakeCatalogPatchGetTableNameAttributeTypeOk(o.TableName); ok {
toSerialize["TableName"] = val
}
if val, ok := getIntakeCatalogPatchGetUriAttributeTypeOk(o.Uri); ok {
toSerialize["Uri"] = val
}
if val, ok := getIntakeCatalogPatchGetWarehouseAttributeTypeOk(o.Warehouse); ok {
toSerialize["Warehouse"] = val
}
return toSerialize, nil
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type NullableIntakeCatalogPatch struct {
value *IntakeCatalogPatch
isSet bool
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (v NullableIntakeCatalogPatch) Get() *IntakeCatalogPatch {
return v.value
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (v *NullableIntakeCatalogPatch) Set(val *IntakeCatalogPatch) {
v.value = val
v.isSet = true
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (v NullableIntakeCatalogPatch) IsSet() bool {
return v.isSet
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (v *NullableIntakeCatalogPatch) Unset() {
v.value = nil
v.isSet = false
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func NewNullableIntakeCatalogPatch(val *IntakeCatalogPatch) *NullableIntakeCatalogPatch {
return &NullableIntakeCatalogPatch{value: val, isSet: true}
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (v NullableIntakeCatalogPatch) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (v *NullableIntakeCatalogPatch) UnmarshalJSON(src []byte) error {
v.isSet = true
return json.Unmarshal(src, &v.value)
}