// Code generated by go-swagger; DO NOT EDIT. // (c) 2012-2020 by Taxnexus, Inc. // All rights reserved worldwide. // Proprietary product; unlicensed use is not allowed package service // 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/strfmt" ) // NewGetServiceParams creates a new GetServiceParams object, // with the default timeout for this client. // // Default values are not hydrated, since defaults are normally applied by the API server side. // // To enforce default values in parameter, use SetDefaults or WithDefaults. func NewGetServiceParams() *GetServiceParams { return &GetServiceParams{ timeout: cr.DefaultTimeout, } } // NewGetServiceParamsWithTimeout creates a new GetServiceParams object // with the ability to set a timeout on a request. func NewGetServiceParamsWithTimeout(timeout time.Duration) *GetServiceParams { return &GetServiceParams{ timeout: timeout, } } // NewGetServiceParamsWithContext creates a new GetServiceParams object // with the ability to set a context for a request. func NewGetServiceParamsWithContext(ctx context.Context) *GetServiceParams { return &GetServiceParams{ Context: ctx, } } // NewGetServiceParamsWithHTTPClient creates a new GetServiceParams object // with the ability to set a custom HTTPClient for a request. func NewGetServiceParamsWithHTTPClient(client *http.Client) *GetServiceParams { return &GetServiceParams{ HTTPClient: client, } } /* GetServiceParams contains all the parameters to send to the API endpoint for the get service operation. Typically these are written to a http.Request. */ type GetServiceParams struct { /* ServiceIDPath. Taxnexus Record Id of a Service */ ServiceIDPath string timeout time.Duration Context context.Context HTTPClient *http.Client } // WithDefaults hydrates default values in the get service params (not the query body). // // All values with no default are reset to their zero value. func (o *GetServiceParams) WithDefaults() *GetServiceParams { o.SetDefaults() return o } // SetDefaults hydrates default values in the get service params (not the query body). // // All values with no default are reset to their zero value. func (o *GetServiceParams) SetDefaults() { // no default values defined for this parameter } // WithTimeout adds the timeout to the get service params func (o *GetServiceParams) WithTimeout(timeout time.Duration) *GetServiceParams { o.SetTimeout(timeout) return o } // SetTimeout adds the timeout to the get service params func (o *GetServiceParams) SetTimeout(timeout time.Duration) { o.timeout = timeout } // WithContext adds the context to the get service params func (o *GetServiceParams) WithContext(ctx context.Context) *GetServiceParams { o.SetContext(ctx) return o } // SetContext adds the context to the get service params func (o *GetServiceParams) SetContext(ctx context.Context) { o.Context = ctx } // WithHTTPClient adds the HTTPClient to the get service params func (o *GetServiceParams) WithHTTPClient(client *http.Client) *GetServiceParams { o.SetHTTPClient(client) return o } // SetHTTPClient adds the HTTPClient to the get service params func (o *GetServiceParams) SetHTTPClient(client *http.Client) { o.HTTPClient = client } // WithServiceIDPath adds the serviceIDPath to the get service params func (o *GetServiceParams) WithServiceIDPath(serviceIDPath string) *GetServiceParams { o.SetServiceIDPath(serviceIDPath) return o } // SetServiceIDPath adds the serviceIdPath to the get service params func (o *GetServiceParams) SetServiceIDPath(serviceIDPath string) { o.ServiceIDPath = serviceIDPath } // WriteToRequest writes these params to a swagger request func (o *GetServiceParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error { if err := r.SetTimeout(o.timeout); err != nil { return err } var res []error // path param serviceIdPath if err := r.SetPathParam("serviceIdPath", o.ServiceIDPath); err != nil { return err } if len(res) > 0 { return errors.CompositeValidationError(res...) } return nil }