src.dualinventive.com/go/assets-service/rest/client/assets/get_assets_parameters.go

241 lines
5.4 KiB
Go

// Code generated by go-swagger; DO NOT EDIT.
package assets
// 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"
)
// NewGetAssetsParams creates a new GetAssetsParams object
// with the default values initialized.
func NewGetAssetsParams() *GetAssetsParams {
var (
pageDefault = int64(1)
perPageDefault = int64(200)
sortDefault = string("id")
)
return &GetAssetsParams{
Page: &pageDefault,
PerPage: &perPageDefault,
Sort: &sortDefault,
timeout: cr.DefaultTimeout,
}
}
// NewGetAssetsParamsWithTimeout creates a new GetAssetsParams object
// with the default values initialized, and the ability to set a timeout on a request
func NewGetAssetsParamsWithTimeout(timeout time.Duration) *GetAssetsParams {
var (
pageDefault = int64(1)
perPageDefault = int64(200)
sortDefault = string("id")
)
return &GetAssetsParams{
Page: &pageDefault,
PerPage: &perPageDefault,
Sort: &sortDefault,
timeout: timeout,
}
}
// NewGetAssetsParamsWithContext creates a new GetAssetsParams object
// with the default values initialized, and the ability to set a context for a request
func NewGetAssetsParamsWithContext(ctx context.Context) *GetAssetsParams {
var (
pageDefault = int64(1)
perPageDefault = int64(200)
sortDefault = string("id")
)
return &GetAssetsParams{
Page: &pageDefault,
PerPage: &perPageDefault,
Sort: &sortDefault,
Context: ctx,
}
}
// NewGetAssetsParamsWithHTTPClient creates a new GetAssetsParams object
// with the default values initialized, and the ability to set a custom HTTPClient for a request
func NewGetAssetsParamsWithHTTPClient(client *http.Client) *GetAssetsParams {
var (
pageDefault = int64(1)
perPageDefault = int64(200)
sortDefault = string("id")
)
return &GetAssetsParams{
Page: &pageDefault,
PerPage: &perPageDefault,
Sort: &sortDefault,
HTTPClient: client,
}
}
/*GetAssetsParams contains all the parameters to send to the API endpoint
for the get assets operation typically these are written to a http.Request
*/
type GetAssetsParams struct {
/*Page
Page number
*/
Page *int64
/*PerPage
Items per page
*/
PerPage *int64
/*Sort
Sorting column
*/
Sort *string
timeout time.Duration
Context context.Context
HTTPClient *http.Client
}
// WithTimeout adds the timeout to the get assets params
func (o *GetAssetsParams) WithTimeout(timeout time.Duration) *GetAssetsParams {
o.SetTimeout(timeout)
return o
}
// SetTimeout adds the timeout to the get assets params
func (o *GetAssetsParams) SetTimeout(timeout time.Duration) {
o.timeout = timeout
}
// WithContext adds the context to the get assets params
func (o *GetAssetsParams) WithContext(ctx context.Context) *GetAssetsParams {
o.SetContext(ctx)
return o
}
// SetContext adds the context to the get assets params
func (o *GetAssetsParams) SetContext(ctx context.Context) {
o.Context = ctx
}
// WithHTTPClient adds the HTTPClient to the get assets params
func (o *GetAssetsParams) WithHTTPClient(client *http.Client) *GetAssetsParams {
o.SetHTTPClient(client)
return o
}
// SetHTTPClient adds the HTTPClient to the get assets params
func (o *GetAssetsParams) SetHTTPClient(client *http.Client) {
o.HTTPClient = client
}
// WithPage adds the page to the get assets params
func (o *GetAssetsParams) WithPage(page *int64) *GetAssetsParams {
o.SetPage(page)
return o
}
// SetPage adds the page to the get assets params
func (o *GetAssetsParams) SetPage(page *int64) {
o.Page = page
}
// WithPerPage adds the perPage to the get assets params
func (o *GetAssetsParams) WithPerPage(perPage *int64) *GetAssetsParams {
o.SetPerPage(perPage)
return o
}
// SetPerPage adds the perPage to the get assets params
func (o *GetAssetsParams) SetPerPage(perPage *int64) {
o.PerPage = perPage
}
// WithSort adds the sort to the get assets params
func (o *GetAssetsParams) WithSort(sort *string) *GetAssetsParams {
o.SetSort(sort)
return o
}
// SetSort adds the sort to the get assets params
func (o *GetAssetsParams) SetSort(sort *string) {
o.Sort = sort
}
// WriteToRequest writes these params to a swagger request
func (o *GetAssetsParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error {
if err := r.SetTimeout(o.timeout); err != nil {
return err
}
var res []error
if o.Page != nil {
// query param page
var qrPage int64
if o.Page != nil {
qrPage = *o.Page
}
qPage := swag.FormatInt64(qrPage)
if qPage != "" {
if err := r.SetQueryParam("page", qPage); err != nil {
return err
}
}
}
if o.PerPage != nil {
// query param per_page
var qrPerPage int64
if o.PerPage != nil {
qrPerPage = *o.PerPage
}
qPerPage := swag.FormatInt64(qrPerPage)
if qPerPage != "" {
if err := r.SetQueryParam("per_page", qPerPage); err != nil {
return err
}
}
}
if o.Sort != nil {
// query param sort
var qrSort string
if o.Sort != nil {
qrSort = *o.Sort
}
qSort := qrSort
if qSort != "" {
if err := r.SetQueryParam("sort", qSort); err != nil {
return err
}
}
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}