1 Star 0 Fork 0

KathentGitee / go-swagger

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pet_list_parameters.go 3.47 KB
一键复制 编辑 原始数据 按行查看 历史
// Code generated by go-swagger; DO NOT EDIT.
package pet
// This file was generated by the swagger tool.
// Editing this file might prove futile when you re-run the swagger generate command
import (
"context"
"net/http"
"time"
"github.com/go-openapi/errors"
"github.com/go-openapi/runtime"
cr "github.com/go-openapi/runtime/client"
"github.com/go-openapi/swag"
strfmt "github.com/go-openapi/strfmt"
)
// NewPetListParams creates a new PetListParams object
// with the default values initialized.
func NewPetListParams() *PetListParams {
var ()
return &PetListParams{
timeout: cr.DefaultTimeout,
}
}
// NewPetListParamsWithTimeout creates a new PetListParams object
// with the default values initialized, and the ability to set a timeout on a request
func NewPetListParamsWithTimeout(timeout time.Duration) *PetListParams {
var ()
return &PetListParams{
timeout: timeout,
}
}
// NewPetListParamsWithContext creates a new PetListParams object
// with the default values initialized, and the ability to set a context for a request
func NewPetListParamsWithContext(ctx context.Context) *PetListParams {
var ()
return &PetListParams{
Context: ctx,
}
}
// NewPetListParamsWithHTTPClient creates a new PetListParams object
// with the default values initialized, and the ability to set a custom HTTPClient for a request
func NewPetListParamsWithHTTPClient(client *http.Client) *PetListParams {
var ()
return &PetListParams{
HTTPClient: client,
}
}
/*PetListParams contains all the parameters to send to the API endpoint
for the pet list operation typically these are written to a http.Request
*/
type PetListParams struct {
/*Status
Status values that need to be considered for filter
*/
Status []string
timeout time.Duration
Context context.Context
HTTPClient *http.Client
}
// WithTimeout adds the timeout to the pet list params
func (o *PetListParams) WithTimeout(timeout time.Duration) *PetListParams {
o.SetTimeout(timeout)
return o
}
// SetTimeout adds the timeout to the pet list params
func (o *PetListParams) SetTimeout(timeout time.Duration) {
o.timeout = timeout
}
// WithContext adds the context to the pet list params
func (o *PetListParams) WithContext(ctx context.Context) *PetListParams {
o.SetContext(ctx)
return o
}
// SetContext adds the context to the pet list params
func (o *PetListParams) SetContext(ctx context.Context) {
o.Context = ctx
}
// WithHTTPClient adds the HTTPClient to the pet list params
func (o *PetListParams) WithHTTPClient(client *http.Client) *PetListParams {
o.SetHTTPClient(client)
return o
}
// SetHTTPClient adds the HTTPClient to the pet list params
func (o *PetListParams) SetHTTPClient(client *http.Client) {
o.HTTPClient = client
}
// WithStatus adds the status to the pet list params
func (o *PetListParams) WithStatus(status []string) *PetListParams {
o.SetStatus(status)
return o
}
// SetStatus adds the status to the pet list params
func (o *PetListParams) SetStatus(status []string) {
o.Status = status
}
// WriteToRequest writes these params to a swagger request
func (o *PetListParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error {
if err := r.SetTimeout(o.timeout); err != nil {
return err
}
var res []error
valuesStatus := o.Status
joinedStatus := swag.JoinByFormat(valuesStatus, "multi")
// query array param status
if err := r.SetQueryParam("status", joinedStatus...); err != nil {
return err
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}
Go
1
https://gitee.com/kathent/go-swagger.git
git@gitee.com:kathent/go-swagger.git
kathent
go-swagger
go-swagger
v0.19.0

搜索帮助