-
Notifications
You must be signed in to change notification settings - Fork 15
/
get_payment_recall_requests.go
106 lines (75 loc) · 2.24 KB
/
get_payment_recall_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
// Code generated by go-swagger; DO NOT EDIT.
package payments
import (
"context"
"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"
)
// Client.GetPaymentRecall creates a new GetPaymentRecallRequest object
// with the default values initialized.
func (c *Client) GetPaymentRecall() *GetPaymentRecallRequest {
var ()
return &GetPaymentRecallRequest{
ID: c.Defaults.GetStrfmtUUID("GetPaymentRecall", "id"),
RecallID: c.Defaults.GetStrfmtUUID("GetPaymentRecall", "recallId"),
timeout: cr.DefaultTimeout,
transport: c.transport,
formats: c.formats,
}
}
type GetPaymentRecallRequest struct {
/*ID Payment Id */
ID strfmt.UUID
/*RecallID Recall Id */
RecallID strfmt.UUID
timeout time.Duration
Context context.Context
HTTPClient *http.Client
transport runtime.ClientTransport
formats strfmt.Registry
}
func (o *GetPaymentRecallRequest) FromJson(j string) (*GetPaymentRecallRequest, error) {
return o, nil
}
func (o *GetPaymentRecallRequest) WithID(id strfmt.UUID) *GetPaymentRecallRequest {
o.ID = id
return o
}
func (o *GetPaymentRecallRequest) WithRecallID(recallID strfmt.UUID) *GetPaymentRecallRequest {
o.RecallID = recallID
return o
}
//////////////////
// WithContext adds the context to the get payment recall Request
func (o *GetPaymentRecallRequest) WithContext(ctx context.Context) *GetPaymentRecallRequest {
o.Context = ctx
return o
}
// WithHTTPClient adds the HTTPClient to the get payment recall Request
func (o *GetPaymentRecallRequest) WithHTTPClient(client *http.Client) *GetPaymentRecallRequest {
o.HTTPClient = client
return o
}
// WriteToRequest writes these Request to a swagger request
func (o *GetPaymentRecallRequest) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error {
if err := r.SetTimeout(o.timeout); err != nil {
return err
}
var res []error
// path param id
if err := r.SetPathParam("id", o.ID.String()); err != nil {
return err
}
// path param recallId
if err := r.SetPathParam("recallId", o.RecallID.String()); err != nil {
return err
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}