-
Notifications
You must be signed in to change notification settings - Fork 2
/
openbanking_brasil_payment_v4_payment.go
257 lines (202 loc) · 7.11 KB
/
openbanking_brasil_payment_v4_payment.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
// 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"
"github.com/go-openapi/errors"
"github.com/go-openapi/strfmt"
"github.com/go-openapi/swag"
"github.com/go-openapi/validate"
)
// OpenbankingBrasilPaymentV4Payment OpenbankingBrasilPaymentV4Payment Payment
//
// Objeto contendo dados de pagamento para consentimento.
//
// swagger:model OpenbankingBrasilPaymentV4Payment
type OpenbankingBrasilPaymentV4Payment struct {
// Valor da transao com 2 casas decimais. O valor deve ser o mesmo enviado no consentimento.
//
// Para QR Code esttico com valor pr-determinado no QR Code ou para QR Code dinmico com indicao de que o valor no pode ser alterado: O campo amount deve ser preenchido com o valor estabelecido no QR Code.
// Caso seja preenchido com valor divergente do QR Code, deve ser retornado um erro HTTP Status 422.
// Example: 100000.12
// Required: true
// Max Length: 19
// Min Length: 4
// Pattern: ^((\d{1,16}\.\d{2}))$
Amount string `json:"amount" yaml:"amount"`
// Cdigo da moeda nacional segundo modelo ISO-4217, ou seja, 'BRL'.
// Todos os valores monetrios informados esto representados com a moeda vigente do Brasil.
// Example: BRL
// Required: true
// Max Length: 3
// Pattern: ^([A-Z]{3})$
Currency string `json:"currency" yaml:"currency"`
// [Restrio] Mutuamente excludente com o objeto schedule.
//
// Este campo obrigatrio no caso de pagamento nico.
//
// Neste caso, o objeto schedule no deve ser informado.
// Example: 2021-01-01
// Format: date
Date strfmt.Date `json:"date,omitempty" yaml:"date,omitempty"`
// details
// Required: true
Details *OpenbankingBrasilPaymentV4Details `json:"details" yaml:"details"`
// O campo ibgetowncode no arranjo PIX, tem o mesmo comportamento que o campo codMun descrito no item 1.6.6 do manual do PIX, conforme segue:
//
// 1. Caso a informao referente ao municpio no seja enviada; o PSP do recebedor assumir que no existem feriados estaduais e municipais no perodo em questo;
// Example: 5300108
// Max Length: 7
// Min Length: 7
// Pattern: ^\d{7}$
IbgeTownCode string `json:"ibgeTownCode,omitempty" yaml:"ibgeTownCode,omitempty"`
// [Restrio] Mutuamente excludente com o campo date.
// Este campo obrigatrio no caso de agendamento.
// Neste caso, o campo date no dever ser informado.
// O prazo mximo para o consentimento dever ser de dois anos, contando a partir da data de criao do consentimento retornada na criao do mesmo (campo /data/creationDateTime).
Schedule interface{} `json:"schedule,omitempty" yaml:"schedule,omitempty"`
// Este campo define o tipo de pagamento que ser iniciado aps a autorizao do consentimento.
// Example: PIX
// Required: true
Type string `json:"type" yaml:"type"`
}
// Validate validates this openbanking brasil payment v4 payment
func (m *OpenbankingBrasilPaymentV4Payment) Validate(formats strfmt.Registry) error {
var res []error
if err := m.validateAmount(formats); err != nil {
res = append(res, err)
}
if err := m.validateCurrency(formats); err != nil {
res = append(res, err)
}
if err := m.validateDate(formats); err != nil {
res = append(res, err)
}
if err := m.validateDetails(formats); err != nil {
res = append(res, err)
}
if err := m.validateIbgeTownCode(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 *OpenbankingBrasilPaymentV4Payment) validateAmount(formats strfmt.Registry) error {
if err := validate.RequiredString("amount", "body", m.Amount); err != nil {
return err
}
if err := validate.MinLength("amount", "body", m.Amount, 4); err != nil {
return err
}
if err := validate.MaxLength("amount", "body", m.Amount, 19); err != nil {
return err
}
if err := validate.Pattern("amount", "body", m.Amount, `^((\d{1,16}\.\d{2}))$`); err != nil {
return err
}
return nil
}
func (m *OpenbankingBrasilPaymentV4Payment) validateCurrency(formats strfmt.Registry) error {
if err := validate.RequiredString("currency", "body", m.Currency); err != nil {
return err
}
if err := validate.MaxLength("currency", "body", m.Currency, 3); err != nil {
return err
}
if err := validate.Pattern("currency", "body", m.Currency, `^([A-Z]{3})$`); err != nil {
return err
}
return nil
}
func (m *OpenbankingBrasilPaymentV4Payment) validateDate(formats strfmt.Registry) error {
if swag.IsZero(m.Date) { // not required
return nil
}
if err := validate.FormatOf("date", "body", "date", m.Date.String(), formats); err != nil {
return err
}
return nil
}
func (m *OpenbankingBrasilPaymentV4Payment) validateDetails(formats strfmt.Registry) error {
if err := validate.Required("details", "body", m.Details); err != nil {
return err
}
if m.Details != nil {
if err := m.Details.Validate(formats); err != nil {
if ve, ok := err.(*errors.Validation); ok {
return ve.ValidateName("details")
} else if ce, ok := err.(*errors.CompositeError); ok {
return ce.ValidateName("details")
}
return err
}
}
return nil
}
func (m *OpenbankingBrasilPaymentV4Payment) validateIbgeTownCode(formats strfmt.Registry) error {
if swag.IsZero(m.IbgeTownCode) { // not required
return nil
}
if err := validate.MinLength("ibgeTownCode", "body", m.IbgeTownCode, 7); err != nil {
return err
}
if err := validate.MaxLength("ibgeTownCode", "body", m.IbgeTownCode, 7); err != nil {
return err
}
if err := validate.Pattern("ibgeTownCode", "body", m.IbgeTownCode, `^\d{7}$`); err != nil {
return err
}
return nil
}
func (m *OpenbankingBrasilPaymentV4Payment) validateType(formats strfmt.Registry) error {
if err := validate.RequiredString("type", "body", m.Type); err != nil {
return err
}
return nil
}
// ContextValidate validate this openbanking brasil payment v4 payment based on the context it is used
func (m *OpenbankingBrasilPaymentV4Payment) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
var res []error
if err := m.contextValidateDetails(ctx, formats); err != nil {
res = append(res, err)
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}
func (m *OpenbankingBrasilPaymentV4Payment) contextValidateDetails(ctx context.Context, formats strfmt.Registry) error {
if m.Details != nil {
if err := m.Details.ContextValidate(ctx, formats); err != nil {
if ve, ok := err.(*errors.Validation); ok {
return ve.ValidateName("details")
} else if ce, ok := err.(*errors.CompositeError); ok {
return ce.ValidateName("details")
}
return err
}
}
return nil
}
// MarshalBinary interface implementation
func (m *OpenbankingBrasilPaymentV4Payment) MarshalBinary() ([]byte, error) {
if m == nil {
return nil, nil
}
return swag.WriteJSON(m)
}
// UnmarshalBinary interface implementation
func (m *OpenbankingBrasilPaymentV4Payment) UnmarshalBinary(b []byte) error {
var res OpenbankingBrasilPaymentV4Payment
if err := swag.ReadJSON(b, &res); err != nil {
return err
}
*m = res
return nil
}