This repository has been archived by the owner on Jul 18, 2023. It is now read-only.
forked from ory/kratos-client-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodel_admin_create_identity_body.go
286 lines (239 loc) · 9.36 KB
/
model_admin_create_identity_body.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
/*
Ory Kratos API
Documentation for all public and administrative Ory Kratos APIs. Public and administrative APIs are exposed on different ports. Public APIs can face the public internet without any protection while administrative APIs should never be exposed without prior authorization. To protect the administative API port you should use something like Nginx, Ory Oathkeeper, or any other technology capable of authorizing incoming requests.
API version: latest
Contact: [email protected]
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
package client
import (
"encoding/json"
)
// AdminCreateIdentityBody struct for AdminCreateIdentityBody
type AdminCreateIdentityBody struct {
Credentials *AdminIdentityImportCredentials `json:"credentials,omitempty"`
// RecoveryAddresses contains all the addresses that can be used to recover an identity. Use this structure to import recovery addresses for an identity. Please keep in mind that the address needs to be represented in the Identity Schema or this field will be overwritten on the next identity update.
RecoveryAddresses []RecoveryAddress `json:"recovery_addresses,omitempty"`
// SchemaID is the ID of the JSON Schema to be used for validating the identity's traits.
SchemaId string `json:"schema_id"`
State *IdentityState `json:"state,omitempty"`
// Traits represent an identity's traits. The identity is able to create, modify, and delete traits in a self-service manner. The input will always be validated against the JSON Schema defined in `schema_url`.
Traits map[string]interface{} `json:"traits"`
// VerifiableAddresses contains all the addresses that can be verified by the user. Use this structure to import verified addresses for an identity. Please keep in mind that the address needs to be represented in the Identity Schema or this field will be overwritten on the next identity update.
VerifiableAddresses []VerifiableIdentityAddress `json:"verifiable_addresses,omitempty"`
}
// NewAdminCreateIdentityBody instantiates a new AdminCreateIdentityBody 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 NewAdminCreateIdentityBody(schemaId string, traits map[string]interface{}) *AdminCreateIdentityBody {
this := AdminCreateIdentityBody{}
this.SchemaId = schemaId
this.Traits = traits
return &this
}
// NewAdminCreateIdentityBodyWithDefaults instantiates a new AdminCreateIdentityBody 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 NewAdminCreateIdentityBodyWithDefaults() *AdminCreateIdentityBody {
this := AdminCreateIdentityBody{}
return &this
}
// GetCredentials returns the Credentials field value if set, zero value otherwise.
func (o *AdminCreateIdentityBody) GetCredentials() AdminIdentityImportCredentials {
if o == nil || o.Credentials == nil {
var ret AdminIdentityImportCredentials
return ret
}
return *o.Credentials
}
// GetCredentialsOk returns a tuple with the Credentials field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *AdminCreateIdentityBody) GetCredentialsOk() (*AdminIdentityImportCredentials, bool) {
if o == nil || o.Credentials == nil {
return nil, false
}
return o.Credentials, true
}
// HasCredentials returns a boolean if a field has been set.
func (o *AdminCreateIdentityBody) HasCredentials() bool {
if o != nil && o.Credentials != nil {
return true
}
return false
}
// SetCredentials gets a reference to the given AdminIdentityImportCredentials and assigns it to the Credentials field.
func (o *AdminCreateIdentityBody) SetCredentials(v AdminIdentityImportCredentials) {
o.Credentials = &v
}
// GetRecoveryAddresses returns the RecoveryAddresses field value if set, zero value otherwise.
func (o *AdminCreateIdentityBody) GetRecoveryAddresses() []RecoveryAddress {
if o == nil || o.RecoveryAddresses == nil {
var ret []RecoveryAddress
return ret
}
return o.RecoveryAddresses
}
// GetRecoveryAddressesOk returns a tuple with the RecoveryAddresses field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *AdminCreateIdentityBody) GetRecoveryAddressesOk() ([]RecoveryAddress, bool) {
if o == nil || o.RecoveryAddresses == nil {
return nil, false
}
return o.RecoveryAddresses, true
}
// HasRecoveryAddresses returns a boolean if a field has been set.
func (o *AdminCreateIdentityBody) HasRecoveryAddresses() bool {
if o != nil && o.RecoveryAddresses != nil {
return true
}
return false
}
// SetRecoveryAddresses gets a reference to the given []RecoveryAddress and assigns it to the RecoveryAddresses field.
func (o *AdminCreateIdentityBody) SetRecoveryAddresses(v []RecoveryAddress) {
o.RecoveryAddresses = v
}
// GetSchemaId returns the SchemaId field value
func (o *AdminCreateIdentityBody) GetSchemaId() string {
if o == nil {
var ret string
return ret
}
return o.SchemaId
}
// GetSchemaIdOk returns a tuple with the SchemaId field value
// and a boolean to check if the value has been set.
func (o *AdminCreateIdentityBody) GetSchemaIdOk() (*string, bool) {
if o == nil {
return nil, false
}
return &o.SchemaId, true
}
// SetSchemaId sets field value
func (o *AdminCreateIdentityBody) SetSchemaId(v string) {
o.SchemaId = v
}
// GetState returns the State field value if set, zero value otherwise.
func (o *AdminCreateIdentityBody) GetState() IdentityState {
if o == nil || o.State == nil {
var ret IdentityState
return ret
}
return *o.State
}
// GetStateOk returns a tuple with the State field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *AdminCreateIdentityBody) GetStateOk() (*IdentityState, bool) {
if o == nil || o.State == nil {
return nil, false
}
return o.State, true
}
// HasState returns a boolean if a field has been set.
func (o *AdminCreateIdentityBody) HasState() bool {
if o != nil && o.State != nil {
return true
}
return false
}
// SetState gets a reference to the given IdentityState and assigns it to the State field.
func (o *AdminCreateIdentityBody) SetState(v IdentityState) {
o.State = &v
}
// GetTraits returns the Traits field value
func (o *AdminCreateIdentityBody) GetTraits() map[string]interface{} {
if o == nil {
var ret map[string]interface{}
return ret
}
return o.Traits
}
// GetTraitsOk returns a tuple with the Traits field value
// and a boolean to check if the value has been set.
func (o *AdminCreateIdentityBody) GetTraitsOk() (map[string]interface{}, bool) {
if o == nil {
return nil, false
}
return o.Traits, true
}
// SetTraits sets field value
func (o *AdminCreateIdentityBody) SetTraits(v map[string]interface{}) {
o.Traits = v
}
// GetVerifiableAddresses returns the VerifiableAddresses field value if set, zero value otherwise.
func (o *AdminCreateIdentityBody) GetVerifiableAddresses() []VerifiableIdentityAddress {
if o == nil || o.VerifiableAddresses == nil {
var ret []VerifiableIdentityAddress
return ret
}
return o.VerifiableAddresses
}
// GetVerifiableAddressesOk returns a tuple with the VerifiableAddresses field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *AdminCreateIdentityBody) GetVerifiableAddressesOk() ([]VerifiableIdentityAddress, bool) {
if o == nil || o.VerifiableAddresses == nil {
return nil, false
}
return o.VerifiableAddresses, true
}
// HasVerifiableAddresses returns a boolean if a field has been set.
func (o *AdminCreateIdentityBody) HasVerifiableAddresses() bool {
if o != nil && o.VerifiableAddresses != nil {
return true
}
return false
}
// SetVerifiableAddresses gets a reference to the given []VerifiableIdentityAddress and assigns it to the VerifiableAddresses field.
func (o *AdminCreateIdentityBody) SetVerifiableAddresses(v []VerifiableIdentityAddress) {
o.VerifiableAddresses = v
}
func (o AdminCreateIdentityBody) MarshalJSON() ([]byte, error) {
toSerialize := map[string]interface{}{}
if o.Credentials != nil {
toSerialize["credentials"] = o.Credentials
}
if o.RecoveryAddresses != nil {
toSerialize["recovery_addresses"] = o.RecoveryAddresses
}
if true {
toSerialize["schema_id"] = o.SchemaId
}
if o.State != nil {
toSerialize["state"] = o.State
}
if true {
toSerialize["traits"] = o.Traits
}
if o.VerifiableAddresses != nil {
toSerialize["verifiable_addresses"] = o.VerifiableAddresses
}
return json.Marshal(toSerialize)
}
type NullableAdminCreateIdentityBody struct {
value *AdminCreateIdentityBody
isSet bool
}
func (v NullableAdminCreateIdentityBody) Get() *AdminCreateIdentityBody {
return v.value
}
func (v *NullableAdminCreateIdentityBody) Set(val *AdminCreateIdentityBody) {
v.value = val
v.isSet = true
}
func (v NullableAdminCreateIdentityBody) IsSet() bool {
return v.isSet
}
func (v *NullableAdminCreateIdentityBody) Unset() {
v.value = nil
v.isSet = false
}
func NewNullableAdminCreateIdentityBody(val *AdminCreateIdentityBody) *NullableAdminCreateIdentityBody {
return &NullableAdminCreateIdentityBody{value: val, isSet: true}
}
func (v NullableAdminCreateIdentityBody) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
func (v *NullableAdminCreateIdentityBody) UnmarshalJSON(src []byte) error {
v.isSet = true
return json.Unmarshal(src, &v.value)
}