-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathmodel_continue_with.go
247 lines (206 loc) · 7.94 KB
/
model_continue_with.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
/*
Ory Identities API
This is the API specification for Ory Identities with features such as registration, login, recovery, account verification, profile settings, password reset, identity management, session management, email and sms delivery, and more.
API version: v1.2.1
Contact: [email protected]
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
package client
import (
"encoding/json"
"fmt"
)
// ContinueWith - struct for ContinueWith
type ContinueWith struct {
ContinueWithRecoveryUi *ContinueWithRecoveryUi
ContinueWithSetOrySessionToken *ContinueWithSetOrySessionToken
ContinueWithSettingsUi *ContinueWithSettingsUi
ContinueWithVerificationUi *ContinueWithVerificationUi
}
// ContinueWithRecoveryUiAsContinueWith is a convenience function that returns ContinueWithRecoveryUi wrapped in ContinueWith
func ContinueWithRecoveryUiAsContinueWith(v *ContinueWithRecoveryUi) ContinueWith {
return ContinueWith{
ContinueWithRecoveryUi: v,
}
}
// ContinueWithSetOrySessionTokenAsContinueWith is a convenience function that returns ContinueWithSetOrySessionToken wrapped in ContinueWith
func ContinueWithSetOrySessionTokenAsContinueWith(v *ContinueWithSetOrySessionToken) ContinueWith {
return ContinueWith{
ContinueWithSetOrySessionToken: v,
}
}
// ContinueWithSettingsUiAsContinueWith is a convenience function that returns ContinueWithSettingsUi wrapped in ContinueWith
func ContinueWithSettingsUiAsContinueWith(v *ContinueWithSettingsUi) ContinueWith {
return ContinueWith{
ContinueWithSettingsUi: v,
}
}
// ContinueWithVerificationUiAsContinueWith is a convenience function that returns ContinueWithVerificationUi wrapped in ContinueWith
func ContinueWithVerificationUiAsContinueWith(v *ContinueWithVerificationUi) ContinueWith {
return ContinueWith{
ContinueWithVerificationUi: v,
}
}
// Unmarshal JSON data into one of the pointers in the struct
func (dst *ContinueWith) 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 'set_ory_session_token'
if jsonDict["action"] == "set_ory_session_token" {
// try to unmarshal JSON data into ContinueWithSetOrySessionToken
err = json.Unmarshal(data, &dst.ContinueWithSetOrySessionToken)
if err == nil {
return nil // data stored in dst.ContinueWithSetOrySessionToken, return on the first match
} else {
dst.ContinueWithSetOrySessionToken = nil
return fmt.Errorf("failed to unmarshal ContinueWith as ContinueWithSetOrySessionToken: %s", err.Error())
}
}
// check if the discriminator value is 'show_recovery_ui'
if jsonDict["action"] == "show_recovery_ui" {
// try to unmarshal JSON data into ContinueWithRecoveryUi
err = json.Unmarshal(data, &dst.ContinueWithRecoveryUi)
if err == nil {
return nil // data stored in dst.ContinueWithRecoveryUi, return on the first match
} else {
dst.ContinueWithRecoveryUi = nil
return fmt.Errorf("failed to unmarshal ContinueWith as ContinueWithRecoveryUi: %s", err.Error())
}
}
// check if the discriminator value is 'show_settings_ui'
if jsonDict["action"] == "show_settings_ui" {
// try to unmarshal JSON data into ContinueWithSettingsUi
err = json.Unmarshal(data, &dst.ContinueWithSettingsUi)
if err == nil {
return nil // data stored in dst.ContinueWithSettingsUi, return on the first match
} else {
dst.ContinueWithSettingsUi = nil
return fmt.Errorf("failed to unmarshal ContinueWith as ContinueWithSettingsUi: %s", err.Error())
}
}
// check if the discriminator value is 'show_verification_ui'
if jsonDict["action"] == "show_verification_ui" {
// try to unmarshal JSON data into ContinueWithVerificationUi
err = json.Unmarshal(data, &dst.ContinueWithVerificationUi)
if err == nil {
return nil // data stored in dst.ContinueWithVerificationUi, return on the first match
} else {
dst.ContinueWithVerificationUi = nil
return fmt.Errorf("failed to unmarshal ContinueWith as ContinueWithVerificationUi: %s", err.Error())
}
}
// check if the discriminator value is 'continueWithRecoveryUi'
if jsonDict["action"] == "continueWithRecoveryUi" {
// try to unmarshal JSON data into ContinueWithRecoveryUi
err = json.Unmarshal(data, &dst.ContinueWithRecoveryUi)
if err == nil {
return nil // data stored in dst.ContinueWithRecoveryUi, return on the first match
} else {
dst.ContinueWithRecoveryUi = nil
return fmt.Errorf("failed to unmarshal ContinueWith as ContinueWithRecoveryUi: %s", err.Error())
}
}
// check if the discriminator value is 'continueWithSetOrySessionToken'
if jsonDict["action"] == "continueWithSetOrySessionToken" {
// try to unmarshal JSON data into ContinueWithSetOrySessionToken
err = json.Unmarshal(data, &dst.ContinueWithSetOrySessionToken)
if err == nil {
return nil // data stored in dst.ContinueWithSetOrySessionToken, return on the first match
} else {
dst.ContinueWithSetOrySessionToken = nil
return fmt.Errorf("failed to unmarshal ContinueWith as ContinueWithSetOrySessionToken: %s", err.Error())
}
}
// check if the discriminator value is 'continueWithSettingsUi'
if jsonDict["action"] == "continueWithSettingsUi" {
// try to unmarshal JSON data into ContinueWithSettingsUi
err = json.Unmarshal(data, &dst.ContinueWithSettingsUi)
if err == nil {
return nil // data stored in dst.ContinueWithSettingsUi, return on the first match
} else {
dst.ContinueWithSettingsUi = nil
return fmt.Errorf("failed to unmarshal ContinueWith as ContinueWithSettingsUi: %s", err.Error())
}
}
// check if the discriminator value is 'continueWithVerificationUi'
if jsonDict["action"] == "continueWithVerificationUi" {
// try to unmarshal JSON data into ContinueWithVerificationUi
err = json.Unmarshal(data, &dst.ContinueWithVerificationUi)
if err == nil {
return nil // data stored in dst.ContinueWithVerificationUi, return on the first match
} else {
dst.ContinueWithVerificationUi = nil
return fmt.Errorf("failed to unmarshal ContinueWith as ContinueWithVerificationUi: %s", err.Error())
}
}
return nil
}
// Marshal data from the first non-nil pointers in the struct to JSON
func (src ContinueWith) MarshalJSON() ([]byte, error) {
if src.ContinueWithRecoveryUi != nil {
return json.Marshal(&src.ContinueWithRecoveryUi)
}
if src.ContinueWithSetOrySessionToken != nil {
return json.Marshal(&src.ContinueWithSetOrySessionToken)
}
if src.ContinueWithSettingsUi != nil {
return json.Marshal(&src.ContinueWithSettingsUi)
}
if src.ContinueWithVerificationUi != nil {
return json.Marshal(&src.ContinueWithVerificationUi)
}
return nil, nil // no data in oneOf schemas
}
// Get the actual instance
func (obj *ContinueWith) GetActualInstance() (interface{}) {
if obj == nil {
return nil
}
if obj.ContinueWithRecoveryUi != nil {
return obj.ContinueWithRecoveryUi
}
if obj.ContinueWithSetOrySessionToken != nil {
return obj.ContinueWithSetOrySessionToken
}
if obj.ContinueWithSettingsUi != nil {
return obj.ContinueWithSettingsUi
}
if obj.ContinueWithVerificationUi != nil {
return obj.ContinueWithVerificationUi
}
// all schemas are nil
return nil
}
type NullableContinueWith struct {
value *ContinueWith
isSet bool
}
func (v NullableContinueWith) Get() *ContinueWith {
return v.value
}
func (v *NullableContinueWith) Set(val *ContinueWith) {
v.value = val
v.isSet = true
}
func (v NullableContinueWith) IsSet() bool {
return v.isSet
}
func (v *NullableContinueWith) Unset() {
v.value = nil
v.isSet = false
}
func NewNullableContinueWith(val *ContinueWith) *NullableContinueWith {
return &NullableContinueWith{value: val, isSet: true}
}
func (v NullableContinueWith) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
func (v *NullableContinueWith) UnmarshalJSON(src []byte) error {
v.isSet = true
return json.Unmarshal(src, &v.value)
}