-
Notifications
You must be signed in to change notification settings - Fork 2
/
openbanking_brasil_consent_v2_data.go
247 lines (191 loc) · 6.6 KB
/
openbanking_brasil_consent_v2_data.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
// Code generated by go-swagger; DO NOT EDIT.
package models
// This file was generated by the swagger tool.
// Editing this file might prove futile when you re-run the swagger generate command
import (
"context"
"strconv"
"github.com/go-openapi/errors"
"github.com/go-openapi/strfmt"
"github.com/go-openapi/swag"
"github.com/go-openapi/validate"
)
// OpenbankingBrasilConsentV2Data OpenbankingBrasilConsentV2Data Data
//
// swagger:model OpenbankingBrasilConsentV2Data
type OpenbankingBrasilConsentV2Data struct {
// business entity
BusinessEntity *OpenbankingBrasilConsentV2BusinessEntity `json:"businessEntity,omitempty" yaml:"businessEntity,omitempty"`
// Data e hora de expirao da permisso. De preenchimento obrigatrio, reflete a data limite de validade do consentimento. Uma string com data e hora conforme especificao RFC-3339, sempre com a utilizao de timezone UTC (UTC time format).
// Example: 2021-05-21T08:30:00Z
// Required: true
// Format: date-time
ExpirationDateTime strfmt.DateTime `json:"expirationDateTime" yaml:"expirationDateTime"`
// logged user
// Required: true
LoggedUser *OpenbankingBrasilConsentV2LoggedUser `json:"loggedUser" yaml:"loggedUser"`
// permissions
// Example: ["ACCOUNTS_READ","ACCOUNTS_OVERDRAFT_LIMITS_READ","RESOURCES_READ"]
// Required: true
// Min Items: 1
Permissions []OpenbankingBrasilConsentV2Permission `json:"permissions" yaml:"permissions"`
}
// Validate validates this openbanking brasil consent v2 data
func (m *OpenbankingBrasilConsentV2Data) Validate(formats strfmt.Registry) error {
var res []error
if err := m.validateBusinessEntity(formats); err != nil {
res = append(res, err)
}
if err := m.validateExpirationDateTime(formats); err != nil {
res = append(res, err)
}
if err := m.validateLoggedUser(formats); err != nil {
res = append(res, err)
}
if err := m.validatePermissions(formats); err != nil {
res = append(res, err)
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}
func (m *OpenbankingBrasilConsentV2Data) validateBusinessEntity(formats strfmt.Registry) error {
if swag.IsZero(m.BusinessEntity) { // not required
return nil
}
if m.BusinessEntity != nil {
if err := m.BusinessEntity.Validate(formats); err != nil {
if ve, ok := err.(*errors.Validation); ok {
return ve.ValidateName("businessEntity")
} else if ce, ok := err.(*errors.CompositeError); ok {
return ce.ValidateName("businessEntity")
}
return err
}
}
return nil
}
func (m *OpenbankingBrasilConsentV2Data) validateExpirationDateTime(formats strfmt.Registry) error {
if err := validate.Required("expirationDateTime", "body", strfmt.DateTime(m.ExpirationDateTime)); err != nil {
return err
}
if err := validate.FormatOf("expirationDateTime", "body", "date-time", m.ExpirationDateTime.String(), formats); err != nil {
return err
}
return nil
}
func (m *OpenbankingBrasilConsentV2Data) validateLoggedUser(formats strfmt.Registry) error {
if err := validate.Required("loggedUser", "body", m.LoggedUser); err != nil {
return err
}
if m.LoggedUser != nil {
if err := m.LoggedUser.Validate(formats); err != nil {
if ve, ok := err.(*errors.Validation); ok {
return ve.ValidateName("loggedUser")
} else if ce, ok := err.(*errors.CompositeError); ok {
return ce.ValidateName("loggedUser")
}
return err
}
}
return nil
}
func (m *OpenbankingBrasilConsentV2Data) validatePermissions(formats strfmt.Registry) error {
if err := validate.Required("permissions", "body", m.Permissions); err != nil {
return err
}
iPermissionsSize := int64(len(m.Permissions))
if err := validate.MinItems("permissions", "body", iPermissionsSize, 1); err != nil {
return err
}
for i := 0; i < len(m.Permissions); i++ {
if err := m.Permissions[i].Validate(formats); err != nil {
if ve, ok := err.(*errors.Validation); ok {
return ve.ValidateName("permissions" + "." + strconv.Itoa(i))
} else if ce, ok := err.(*errors.CompositeError); ok {
return ce.ValidateName("permissions" + "." + strconv.Itoa(i))
}
return err
}
}
return nil
}
// ContextValidate validate this openbanking brasil consent v2 data based on the context it is used
func (m *OpenbankingBrasilConsentV2Data) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
var res []error
if err := m.contextValidateBusinessEntity(ctx, formats); err != nil {
res = append(res, err)
}
if err := m.contextValidateLoggedUser(ctx, formats); err != nil {
res = append(res, err)
}
if err := m.contextValidatePermissions(ctx, formats); err != nil {
res = append(res, err)
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}
func (m *OpenbankingBrasilConsentV2Data) contextValidateBusinessEntity(ctx context.Context, formats strfmt.Registry) error {
if m.BusinessEntity != nil {
if swag.IsZero(m.BusinessEntity) { // not required
return nil
}
if err := m.BusinessEntity.ContextValidate(ctx, formats); err != nil {
if ve, ok := err.(*errors.Validation); ok {
return ve.ValidateName("businessEntity")
} else if ce, ok := err.(*errors.CompositeError); ok {
return ce.ValidateName("businessEntity")
}
return err
}
}
return nil
}
func (m *OpenbankingBrasilConsentV2Data) contextValidateLoggedUser(ctx context.Context, formats strfmt.Registry) error {
if m.LoggedUser != nil {
if err := m.LoggedUser.ContextValidate(ctx, formats); err != nil {
if ve, ok := err.(*errors.Validation); ok {
return ve.ValidateName("loggedUser")
} else if ce, ok := err.(*errors.CompositeError); ok {
return ce.ValidateName("loggedUser")
}
return err
}
}
return nil
}
func (m *OpenbankingBrasilConsentV2Data) contextValidatePermissions(ctx context.Context, formats strfmt.Registry) error {
for i := 0; i < len(m.Permissions); i++ {
if swag.IsZero(m.Permissions[i]) { // not required
return nil
}
if err := m.Permissions[i].ContextValidate(ctx, formats); err != nil {
if ve, ok := err.(*errors.Validation); ok {
return ve.ValidateName("permissions" + "." + strconv.Itoa(i))
} else if ce, ok := err.(*errors.CompositeError); ok {
return ce.ValidateName("permissions" + "." + strconv.Itoa(i))
}
return err
}
}
return nil
}
// MarshalBinary interface implementation
func (m *OpenbankingBrasilConsentV2Data) MarshalBinary() ([]byte, error) {
if m == nil {
return nil, nil
}
return swag.WriteJSON(m)
}
// UnmarshalBinary interface implementation
func (m *OpenbankingBrasilConsentV2Data) UnmarshalBinary(b []byte) error {
var res OpenbankingBrasilConsentV2Data
if err := swag.ReadJSON(b, &res); err != nil {
return err
}
*m = res
return nil
}