-
Notifications
You must be signed in to change notification settings - Fork 15
/
account_number.go
228 lines (174 loc) · 4.78 KB
/
account_number.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
// 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/v4/pkg/client"
strfmt "github.com/go-openapi/strfmt"
"github.com/go-openapi/errors"
"github.com/go-openapi/swag"
"github.com/go-openapi/validate"
)
// AccountNumber account number
// swagger:model AccountNumber
type AccountNumber struct {
// id
ID string `json:"id,omitempty"`
// relationships
Relationships *AccountNumberRelationships `json:"relationships,omitempty"`
// type
// Pattern: ^[A-Za-z_]*$
Type string `json:"type,omitempty"`
}
func AccountNumberWithDefaults(defaults client.Defaults) *AccountNumber {
return &AccountNumber{
ID: defaults.GetString("AccountNumber", "id"),
Relationships: AccountNumberRelationshipsWithDefaults(defaults),
Type: defaults.GetString("AccountNumber", "type"),
}
}
func (m *AccountNumber) WithID(id string) *AccountNumber {
m.ID = id
return m
}
func (m *AccountNumber) WithRelationships(relationships AccountNumberRelationships) *AccountNumber {
m.Relationships = &relationships
return m
}
func (m *AccountNumber) WithoutRelationships() *AccountNumber {
m.Relationships = nil
return m
}
func (m *AccountNumber) WithType(typeVar string) *AccountNumber {
m.Type = typeVar
return m
}
// Validate validates this account number
func (m *AccountNumber) Validate(formats strfmt.Registry) error {
var res []error
if err := m.validateRelationships(formats); err != nil {
res = append(res, err)
}
if err := m.validateType(formats); err != nil {
res = append(res, err)
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}
func (m *AccountNumber) validateRelationships(formats strfmt.Registry) error {
if swag.IsZero(m.Relationships) { // not required
return nil
}
if m.Relationships != nil {
if err := m.Relationships.Validate(formats); err != nil {
if ve, ok := err.(*errors.Validation); ok {
return ve.ValidateName("relationships")
}
return err
}
}
return nil
}
func (m *AccountNumber) validateType(formats strfmt.Registry) error {
if swag.IsZero(m.Type) { // not required
return nil
}
if err := validate.Pattern("type", "body", string(m.Type), `^[A-Za-z_]*$`); err != nil {
return err
}
return nil
}
// MarshalBinary interface implementation
func (m *AccountNumber) MarshalBinary() ([]byte, error) {
if m == nil {
return nil, nil
}
return swag.WriteJSON(m)
}
// UnmarshalBinary interface implementation
func (m *AccountNumber) UnmarshalBinary(b []byte) error {
var res AccountNumber
if err := swag.ReadJSON(b, &res); err != nil {
return err
}
*m = res
return nil
}
func (m *AccountNumber) Json() string {
json, err := json.MarshalIndent(m, " ", " ")
if err != nil {
log.Fatal(err)
}
return string(json)
}
// AccountNumberRelationships account number relationships
// swagger:model AccountNumberRelationships
type AccountNumberRelationships struct {
// sort code
SortCode *SortCode `json:"sort_code,omitempty"`
}
func AccountNumberRelationshipsWithDefaults(defaults client.Defaults) *AccountNumberRelationships {
return &AccountNumberRelationships{
SortCode: SortCodeWithDefaults(defaults),
}
}
func (m *AccountNumberRelationships) WithSortCode(sortCode SortCode) *AccountNumberRelationships {
m.SortCode = &sortCode
return m
}
func (m *AccountNumberRelationships) WithoutSortCode() *AccountNumberRelationships {
m.SortCode = nil
return m
}
// Validate validates this account number relationships
func (m *AccountNumberRelationships) Validate(formats strfmt.Registry) error {
var res []error
if err := m.validateSortCode(formats); err != nil {
res = append(res, err)
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}
func (m *AccountNumberRelationships) validateSortCode(formats strfmt.Registry) error {
if swag.IsZero(m.SortCode) { // not required
return nil
}
if m.SortCode != nil {
if err := m.SortCode.Validate(formats); err != nil {
if ve, ok := err.(*errors.Validation); ok {
return ve.ValidateName("relationships" + "." + "sort_code")
}
return err
}
}
return nil
}
// MarshalBinary interface implementation
func (m *AccountNumberRelationships) MarshalBinary() ([]byte, error) {
if m == nil {
return nil, nil
}
return swag.WriteJSON(m)
}
// UnmarshalBinary interface implementation
func (m *AccountNumberRelationships) UnmarshalBinary(b []byte) error {
var res AccountNumberRelationships
if err := swag.ReadJSON(b, &res); err != nil {
return err
}
*m = res
return nil
}
func (m *AccountNumberRelationships) Json() string {
json, err := json.MarshalIndent(m, " ", " ")
if err != nil {
log.Fatal(err)
}
return string(json)
}