-
Notifications
You must be signed in to change notification settings - Fork 15
/
agent.go
266 lines (193 loc) · 5.41 KB
/
agent.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
// 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 (
"encoding/json"
"log"
"github.com/form3tech-oss/go-form3/v3/pkg/client"
strfmt "github.com/go-openapi/strfmt"
"github.com/go-openapi/errors"
"github.com/go-openapi/swag"
)
// Agent agent
// swagger:model Agent
type Agent struct {
// Account number of the financial institution. Can be BBAN or IBAN.
AccountNumber string `json:"account_number,omitempty"`
// account number code
AccountNumberCode AccountNumberCode `json:"account_number_code,omitempty"`
// address
Address []string `json:"address"`
// identification
Identification *AgentIdentification `json:"identification,omitempty"`
// Name by which the financial institution is known
Name string `json:"name,omitempty"`
// role
Role AgentRole `json:"role,omitempty"`
}
func AgentWithDefaults(defaults client.Defaults) *Agent {
return &Agent{
AccountNumber: defaults.GetString("Agent", "account_number"),
// TODO AccountNumberCode: AccountNumberCode,
Address: make([]string, 0),
Identification: AgentIdentificationWithDefaults(defaults),
Name: defaults.GetString("Agent", "name"),
// TODO Role: AgentRole,
}
}
func (m *Agent) WithAccountNumber(accountNumber string) *Agent {
m.AccountNumber = accountNumber
return m
}
func (m *Agent) WithAccountNumberCode(accountNumberCode AccountNumberCode) *Agent {
m.AccountNumberCode = accountNumberCode
return m
}
func (m *Agent) WithAddress(address []string) *Agent {
m.Address = address
return m
}
func (m *Agent) WithIdentification(identification AgentIdentification) *Agent {
m.Identification = &identification
return m
}
func (m *Agent) WithoutIdentification() *Agent {
m.Identification = nil
return m
}
func (m *Agent) WithName(name string) *Agent {
m.Name = name
return m
}
func (m *Agent) WithRole(role AgentRole) *Agent {
m.Role = role
return m
}
// Validate validates this agent
func (m *Agent) Validate(formats strfmt.Registry) error {
var res []error
if err := m.validateAccountNumberCode(formats); err != nil {
res = append(res, err)
}
if err := m.validateIdentification(formats); err != nil {
res = append(res, err)
}
if err := m.validateRole(formats); err != nil {
res = append(res, err)
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}
func (m *Agent) validateAccountNumberCode(formats strfmt.Registry) error {
if swag.IsZero(m.AccountNumberCode) { // not required
return nil
}
if err := m.AccountNumberCode.Validate(formats); err != nil {
if ve, ok := err.(*errors.Validation); ok {
return ve.ValidateName("account_number_code")
}
return err
}
return nil
}
func (m *Agent) validateIdentification(formats strfmt.Registry) error {
if swag.IsZero(m.Identification) { // not required
return nil
}
if m.Identification != nil {
if err := m.Identification.Validate(formats); err != nil {
if ve, ok := err.(*errors.Validation); ok {
return ve.ValidateName("identification")
}
return err
}
}
return nil
}
func (m *Agent) validateRole(formats strfmt.Registry) error {
if swag.IsZero(m.Role) { // not required
return nil
}
if err := m.Role.Validate(formats); err != nil {
if ve, ok := err.(*errors.Validation); ok {
return ve.ValidateName("role")
}
return err
}
return nil
}
// MarshalBinary interface implementation
func (m *Agent) MarshalBinary() ([]byte, error) {
if m == nil {
return nil, nil
}
return swag.WriteJSON(m)
}
// UnmarshalBinary interface implementation
func (m *Agent) UnmarshalBinary(b []byte) error {
var res Agent
if err := swag.ReadJSON(b, &res); err != nil {
return err
}
*m = res
return nil
}
func (m *Agent) Json() string {
json, err := json.MarshalIndent(m, " ", " ")
if err != nil {
log.Fatal(err)
}
return string(json)
}
// AgentIdentification agent identification
// swagger:model AgentIdentification
type AgentIdentification struct {
// Identification code of the financial institution.
BankID string `json:"bank_id,omitempty"`
// Type of identification provided in bank_id field. Required when bank_id is provided, not used otherwise.
BankIDCode string `json:"bank_id_code,omitempty"`
}
func AgentIdentificationWithDefaults(defaults client.Defaults) *AgentIdentification {
return &AgentIdentification{
BankID: defaults.GetString("AgentIdentification", "bank_id"),
BankIDCode: defaults.GetString("AgentIdentification", "bank_id_code"),
}
}
func (m *AgentIdentification) WithBankID(bankID string) *AgentIdentification {
m.BankID = bankID
return m
}
func (m *AgentIdentification) WithBankIDCode(bankIDCode string) *AgentIdentification {
m.BankIDCode = bankIDCode
return m
}
// Validate validates this agent identification
func (m *AgentIdentification) Validate(formats strfmt.Registry) error {
return nil
}
// MarshalBinary interface implementation
func (m *AgentIdentification) MarshalBinary() ([]byte, error) {
if m == nil {
return nil, nil
}
return swag.WriteJSON(m)
}
// UnmarshalBinary interface implementation
func (m *AgentIdentification) UnmarshalBinary(b []byte) error {
var res AgentIdentification
if err := swag.ReadJSON(b, &res); err != nil {
return err
}
*m = res
return nil
}
func (m *AgentIdentification) Json() string {
json, err := json.MarshalIndent(m, " ", " ")
if err != nil {
log.Fatal(err)
}
return string(json)
}