forked from ory/kratos-client-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
model_continue_with.go
209 lines (172 loc) · 5.77 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
/*
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.1.0
Contact: office@ory.sh
*/
// 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
match := 0
// try to unmarshal data into ContinueWithRecoveryUi
err = newStrictDecoder(data).Decode(&dst.ContinueWithRecoveryUi)
if err == nil {
jsonContinueWithRecoveryUi, _ := json.Marshal(dst.ContinueWithRecoveryUi)
if string(jsonContinueWithRecoveryUi) == "{}" { // empty struct
dst.ContinueWithRecoveryUi = nil
} else {
match++
}
} else {
dst.ContinueWithRecoveryUi = nil
}
// try to unmarshal data into ContinueWithSetOrySessionToken
err = newStrictDecoder(data).Decode(&dst.ContinueWithSetOrySessionToken)
if err == nil {
jsonContinueWithSetOrySessionToken, _ := json.Marshal(dst.ContinueWithSetOrySessionToken)
if string(jsonContinueWithSetOrySessionToken) == "{}" { // empty struct
dst.ContinueWithSetOrySessionToken = nil
} else {
match++
}
} else {
dst.ContinueWithSetOrySessionToken = nil
}
// try to unmarshal data into ContinueWithSettingsUi
err = newStrictDecoder(data).Decode(&dst.ContinueWithSettingsUi)
if err == nil {
jsonContinueWithSettingsUi, _ := json.Marshal(dst.ContinueWithSettingsUi)
if string(jsonContinueWithSettingsUi) == "{}" { // empty struct
dst.ContinueWithSettingsUi = nil
} else {
match++
}
} else {
dst.ContinueWithSettingsUi = nil
}
// try to unmarshal data into ContinueWithVerificationUi
err = newStrictDecoder(data).Decode(&dst.ContinueWithVerificationUi)
if err == nil {
jsonContinueWithVerificationUi, _ := json.Marshal(dst.ContinueWithVerificationUi)
if string(jsonContinueWithVerificationUi) == "{}" { // empty struct
dst.ContinueWithVerificationUi = nil
} else {
match++
}
} else {
dst.ContinueWithVerificationUi = nil
}
if match > 1 { // more than 1 match
// reset to nil
dst.ContinueWithRecoveryUi = nil
dst.ContinueWithSetOrySessionToken = nil
dst.ContinueWithSettingsUi = nil
dst.ContinueWithVerificationUi = nil
return fmt.Errorf("data matches more than one schema in oneOf(ContinueWith)")
} else if match == 1 {
return nil // exactly one match
} else { // no match
return fmt.Errorf("data failed to match schemas in oneOf(ContinueWith)")
}
}
// 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)
}