// Code generated by go-swagger; DO NOT EDIT. package companies // 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" ) // NewGetCompaniesParams creates a new GetCompaniesParams object // with the default values initialized. func NewGetCompaniesParams() *GetCompaniesParams { var ( pageDefault = int64(1) perPageDefault = int64(200) sortDefault = string("id") ) return &GetCompaniesParams{ Page: &pageDefault, PerPage: &perPageDefault, Sort: &sortDefault, timeout: cr.DefaultTimeout, } } // NewGetCompaniesParamsWithTimeout creates a new GetCompaniesParams object // with the default values initialized, and the ability to set a timeout on a request func NewGetCompaniesParamsWithTimeout(timeout time.Duration) *GetCompaniesParams { var ( pageDefault = int64(1) perPageDefault = int64(200) sortDefault = string("id") ) return &GetCompaniesParams{ Page: &pageDefault, PerPage: &perPageDefault, Sort: &sortDefault, timeout: timeout, } } // NewGetCompaniesParamsWithContext creates a new GetCompaniesParams object // with the default values initialized, and the ability to set a context for a request func NewGetCompaniesParamsWithContext(ctx context.Context) *GetCompaniesParams { var ( pageDefault = int64(1) perPageDefault = int64(200) sortDefault = string("id") ) return &GetCompaniesParams{ Page: &pageDefault, PerPage: &perPageDefault, Sort: &sortDefault, Context: ctx, } } // NewGetCompaniesParamsWithHTTPClient creates a new GetCompaniesParams object // with the default values initialized, and the ability to set a custom HTTPClient for a request func NewGetCompaniesParamsWithHTTPClient(client *http.Client) *GetCompaniesParams { var ( pageDefault = int64(1) perPageDefault = int64(200) sortDefault = string("id") ) return &GetCompaniesParams{ Page: &pageDefault, PerPage: &perPageDefault, Sort: &sortDefault, HTTPClient: client, } } /*GetCompaniesParams contains all the parameters to send to the API endpoint for the get companies operation typically these are written to a http.Request */ type GetCompaniesParams 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 companies params func (o *GetCompaniesParams) WithTimeout(timeout time.Duration) *GetCompaniesParams { o.SetTimeout(timeout) return o } // SetTimeout adds the timeout to the get companies params func (o *GetCompaniesParams) SetTimeout(timeout time.Duration) { o.timeout = timeout } // WithContext adds the context to the get companies params func (o *GetCompaniesParams) WithContext(ctx context.Context) *GetCompaniesParams { o.SetContext(ctx) return o } // SetContext adds the context to the get companies params func (o *GetCompaniesParams) SetContext(ctx context.Context) { o.Context = ctx } // WithHTTPClient adds the HTTPClient to the get companies params func (o *GetCompaniesParams) WithHTTPClient(client *http.Client) *GetCompaniesParams { o.SetHTTPClient(client) return o } // SetHTTPClient adds the HTTPClient to the get companies params func (o *GetCompaniesParams) SetHTTPClient(client *http.Client) { o.HTTPClient = client } // WithPage adds the page to the get companies params func (o *GetCompaniesParams) WithPage(page *int64) *GetCompaniesParams { o.SetPage(page) return o } // SetPage adds the page to the get companies params func (o *GetCompaniesParams) SetPage(page *int64) { o.Page = page } // WithPerPage adds the perPage to the get companies params func (o *GetCompaniesParams) WithPerPage(perPage *int64) *GetCompaniesParams { o.SetPerPage(perPage) return o } // SetPerPage adds the perPage to the get companies params func (o *GetCompaniesParams) SetPerPage(perPage *int64) { o.PerPage = perPage } // WithSort adds the sort to the get companies params func (o *GetCompaniesParams) WithSort(sort *string) *GetCompaniesParams { o.SetSort(sort) return o } // SetSort adds the sort to the get companies params func (o *GetCompaniesParams) SetSort(sort *string) { o.Sort = sort } // WriteToRequest writes these params to a swagger request func (o *GetCompaniesParams) 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 }