-
Notifications
You must be signed in to change notification settings - Fork 94
/
Copy pathexchange_ticket_parameters.go
49 lines (38 loc) · 1.24 KB
/
exchange_ticket_parameters.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
package operations
// This file was generated by the swagger tool.
// Editing this file might prove futile when you re-run the swagger generate command
import (
"github.com/go-openapi/errors"
"github.com/go-openapi/runtime"
strfmt "github.com/go-openapi/strfmt"
)
// NewExchangeTicketParams creates a new ExchangeTicketParams object
// with the default values initialized.
func NewExchangeTicketParams() *ExchangeTicketParams {
var ()
return &ExchangeTicketParams{}
}
/*ExchangeTicketParams contains all the parameters to send to the API endpoint
for the exchange ticket operation typically these are written to a http.Request
*/
type ExchangeTicketParams struct {
/*TicketID*/
TicketID string
}
// WithTicketID adds the ticketId to the exchange ticket params
func (o *ExchangeTicketParams) WithTicketID(TicketID string) *ExchangeTicketParams {
o.TicketID = TicketID
return o
}
// WriteToRequest writes these params to a swagger request
func (o *ExchangeTicketParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error {
var res []error
// path param ticket_id
if err := r.SetPathParam("ticket_id", o.TicketID); err != nil {
return err
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}