-
Notifications
You must be signed in to change notification settings - Fork 15
/
create_payment_advice_requests.go
126 lines (89 loc) · 2.76 KB
/
create_payment_advice_requests.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
// Code generated by go-swagger; DO NOT EDIT.
package payments
import (
"context"
"encoding/json"
"fmt"
"net/http"
"time"
"github.com/go-openapi/errors"
"github.com/go-openapi/runtime"
cr "github.com/go-openapi/runtime/client"
strfmt "github.com/go-openapi/strfmt"
"github.com/form3tech-oss/go-form3/v3/pkg/generated/models"
)
// Client.CreatePaymentAdvice creates a new CreatePaymentAdviceRequest object
// with the default values initialized.
func (c *Client) CreatePaymentAdvice() *CreatePaymentAdviceRequest {
var ()
return &CreatePaymentAdviceRequest{
AdviceCreation: models.AdviceCreationWithDefaults(c.Defaults),
ID: c.Defaults.GetStrfmtUUID("CreatePaymentAdvice", "id"),
timeout: cr.DefaultTimeout,
transport: c.transport,
formats: c.formats,
}
}
type CreatePaymentAdviceRequest struct {
/*AdviceCreationRequest*/
*models.AdviceCreation
/*ID Payment Id */
ID strfmt.UUID
timeout time.Duration
Context context.Context
HTTPClient *http.Client
transport runtime.ClientTransport
formats strfmt.Registry
}
func (o *CreatePaymentAdviceRequest) FromJson(j string) (*CreatePaymentAdviceRequest, error) {
var m models.AdviceCreation
if err := json.Unmarshal([]byte(j), &m); err != nil {
return nil, fmt.Errorf("could not unmarshal JSON: %w", err)
}
o.AdviceCreation = &m
return o, nil
}
func (o *CreatePaymentAdviceRequest) WithAdviceCreationRequest(adviceCreationRequest models.AdviceCreation) *CreatePaymentAdviceRequest {
o.AdviceCreation = &adviceCreationRequest
return o
}
func (o *CreatePaymentAdviceRequest) WithoutAdviceCreationRequest() *CreatePaymentAdviceRequest {
o.AdviceCreation = &models.AdviceCreation{}
return o
}
func (o *CreatePaymentAdviceRequest) WithID(id strfmt.UUID) *CreatePaymentAdviceRequest {
o.ID = id
return o
}
//////////////////
// WithContext adds the context to the create payment advice Request
func (o *CreatePaymentAdviceRequest) WithContext(ctx context.Context) *CreatePaymentAdviceRequest {
o.Context = ctx
return o
}
// WithHTTPClient adds the HTTPClient to the create payment advice Request
func (o *CreatePaymentAdviceRequest) WithHTTPClient(client *http.Client) *CreatePaymentAdviceRequest {
o.HTTPClient = client
return o
}
// WriteToRequest writes these Request to a swagger request
func (o *CreatePaymentAdviceRequest) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error {
if err := r.SetTimeout(o.timeout); err != nil {
return err
}
var res []error
// ISBODYPARAM
if o.AdviceCreation != nil {
if err := r.SetBodyParam(o.AdviceCreation); err != nil {
return err
}
}
// path param id
if err := r.SetPathParam("id", o.ID.String()); err != nil {
return err
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}