-
Notifications
You must be signed in to change notification settings - Fork 55
/
model_artifact_create.go
163 lines (135 loc) · 4.51 KB
/
model_artifact_create.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
/*
Model Registry REST API
REST API for Model Registry to create and manage ML model metadata
API version: v1alpha3
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
package openapi
import (
"encoding/json"
"fmt"
)
// ArtifactCreate - An Artifact to be created.
type ArtifactCreate struct {
DocArtifactCreate *DocArtifactCreate
ModelArtifactCreate *ModelArtifactCreate
}
// DocArtifactCreateAsArtifactCreate is a convenience function that returns DocArtifactCreate wrapped in ArtifactCreate
func DocArtifactCreateAsArtifactCreate(v *DocArtifactCreate) ArtifactCreate {
return ArtifactCreate{
DocArtifactCreate: v,
}
}
// ModelArtifactCreateAsArtifactCreate is a convenience function that returns ModelArtifactCreate wrapped in ArtifactCreate
func ModelArtifactCreateAsArtifactCreate(v *ModelArtifactCreate) ArtifactCreate {
return ArtifactCreate{
ModelArtifactCreate: v,
}
}
// Unmarshal JSON data into one of the pointers in the struct
func (dst *ArtifactCreate) UnmarshalJSON(data []byte) error {
var err error
// use discriminator value to speed up the lookup
var jsonDict map[string]interface{}
err = newStrictDecoder(data).Decode(&jsonDict)
if err != nil {
return fmt.Errorf("failed to unmarshal JSON into map for the discriminator lookup")
}
// check if the discriminator value is 'DocArtifactCreate'
if jsonDict["artifactType"] == "DocArtifactCreate" {
// try to unmarshal JSON data into DocArtifactCreate
err = json.Unmarshal(data, &dst.DocArtifactCreate)
if err == nil {
return nil // data stored in dst.DocArtifactCreate, return on the first match
} else {
dst.DocArtifactCreate = nil
return fmt.Errorf("failed to unmarshal ArtifactCreate as DocArtifactCreate: %s", err.Error())
}
}
// check if the discriminator value is 'ModelArtifactCreate'
if jsonDict["artifactType"] == "ModelArtifactCreate" {
// try to unmarshal JSON data into ModelArtifactCreate
err = json.Unmarshal(data, &dst.ModelArtifactCreate)
if err == nil {
return nil // data stored in dst.ModelArtifactCreate, return on the first match
} else {
dst.ModelArtifactCreate = nil
return fmt.Errorf("failed to unmarshal ArtifactCreate as ModelArtifactCreate: %s", err.Error())
}
}
// check if the discriminator value is 'doc-artifact'
if jsonDict["artifactType"] == "doc-artifact" {
// try to unmarshal JSON data into DocArtifactCreate
err = json.Unmarshal(data, &dst.DocArtifactCreate)
if err == nil {
return nil // data stored in dst.DocArtifactCreate, return on the first match
} else {
dst.DocArtifactCreate = nil
return fmt.Errorf("failed to unmarshal ArtifactCreate as DocArtifactCreate: %s", err.Error())
}
}
// check if the discriminator value is 'model-artifact'
if jsonDict["artifactType"] == "model-artifact" {
// try to unmarshal JSON data into ModelArtifactCreate
err = json.Unmarshal(data, &dst.ModelArtifactCreate)
if err == nil {
return nil // data stored in dst.ModelArtifactCreate, return on the first match
} else {
dst.ModelArtifactCreate = nil
return fmt.Errorf("failed to unmarshal ArtifactCreate as ModelArtifactCreate: %s", err.Error())
}
}
return nil
}
// Marshal data from the first non-nil pointers in the struct to JSON
func (src ArtifactCreate) MarshalJSON() ([]byte, error) {
if src.DocArtifactCreate != nil {
return json.Marshal(&src.DocArtifactCreate)
}
if src.ModelArtifactCreate != nil {
return json.Marshal(&src.ModelArtifactCreate)
}
return nil, nil // no data in oneOf schemas
}
// Get the actual instance
func (obj *ArtifactCreate) GetActualInstance() interface{} {
if obj == nil {
return nil
}
if obj.DocArtifactCreate != nil {
return obj.DocArtifactCreate
}
if obj.ModelArtifactCreate != nil {
return obj.ModelArtifactCreate
}
// all schemas are nil
return nil
}
type NullableArtifactCreate struct {
value *ArtifactCreate
isSet bool
}
func (v NullableArtifactCreate) Get() *ArtifactCreate {
return v.value
}
func (v *NullableArtifactCreate) Set(val *ArtifactCreate) {
v.value = val
v.isSet = true
}
func (v NullableArtifactCreate) IsSet() bool {
return v.isSet
}
func (v *NullableArtifactCreate) Unset() {
v.value = nil
v.isSet = false
}
func NewNullableArtifactCreate(val *ArtifactCreate) *NullableArtifactCreate {
return &NullableArtifactCreate{value: val, isSet: true}
}
func (v NullableArtifactCreate) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
func (v *NullableArtifactCreate) UnmarshalJSON(src []byte) error {
v.isSet = true
return json.Unmarshal(src, &v.value)
}