// Code generated by go-swagger; DO NOT EDIT. // All Code Copyright(c) 2018-2021 by Taxnexus, Inc. // All rights reserved worldwide. // Proprietary product; unlicensed use is not allowed package country // 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" ) // NewGetCountriesObservableParams creates a new GetCountriesObservableParams 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 NewGetCountriesObservableParams() *GetCountriesObservableParams { return &GetCountriesObservableParams{ timeout: cr.DefaultTimeout, } } // NewGetCountriesObservableParamsWithTimeout creates a new GetCountriesObservableParams object // with the ability to set a timeout on a request. func NewGetCountriesObservableParamsWithTimeout(timeout time.Duration) *GetCountriesObservableParams { return &GetCountriesObservableParams{ timeout: timeout, } } // NewGetCountriesObservableParamsWithContext creates a new GetCountriesObservableParams object // with the ability to set a context for a request. func NewGetCountriesObservableParamsWithContext(ctx context.Context) *GetCountriesObservableParams { return &GetCountriesObservableParams{ Context: ctx, } } // NewGetCountriesObservableParamsWithHTTPClient creates a new GetCountriesObservableParams object // with the ability to set a custom HTTPClient for a request. func NewGetCountriesObservableParamsWithHTTPClient(client *http.Client) *GetCountriesObservableParams { return &GetCountriesObservableParams{ HTTPClient: client, } } /* GetCountriesObservableParams contains all the parameters to send to the API endpoint for the get countries observable operation. Typically these are written to a http.Request. */ type GetCountriesObservableParams struct { /* CountryCode. The Country abbreviation (2 char) */ CountryCode *string /* CountryID. The ID of this Object */ CountryID *string timeout time.Duration Context context.Context HTTPClient *http.Client } // WithDefaults hydrates default values in the get countries observable params (not the query body). // // All values with no default are reset to their zero value. func (o *GetCountriesObservableParams) WithDefaults() *GetCountriesObservableParams { o.SetDefaults() return o } // SetDefaults hydrates default values in the get countries observable params (not the query body). // // All values with no default are reset to their zero value. func (o *GetCountriesObservableParams) SetDefaults() { // no default values defined for this parameter } // WithTimeout adds the timeout to the get countries observable params func (o *GetCountriesObservableParams) WithTimeout(timeout time.Duration) *GetCountriesObservableParams { o.SetTimeout(timeout) return o } // SetTimeout adds the timeout to the get countries observable params func (o *GetCountriesObservableParams) SetTimeout(timeout time.Duration) { o.timeout = timeout } // WithContext adds the context to the get countries observable params func (o *GetCountriesObservableParams) WithContext(ctx context.Context) *GetCountriesObservableParams { o.SetContext(ctx) return o } // SetContext adds the context to the get countries observable params func (o *GetCountriesObservableParams) SetContext(ctx context.Context) { o.Context = ctx } // WithHTTPClient adds the HTTPClient to the get countries observable params func (o *GetCountriesObservableParams) WithHTTPClient(client *http.Client) *GetCountriesObservableParams { o.SetHTTPClient(client) return o } // SetHTTPClient adds the HTTPClient to the get countries observable params func (o *GetCountriesObservableParams) SetHTTPClient(client *http.Client) { o.HTTPClient = client } // WithCountryCode adds the countryCode to the get countries observable params func (o *GetCountriesObservableParams) WithCountryCode(countryCode *string) *GetCountriesObservableParams { o.SetCountryCode(countryCode) return o } // SetCountryCode adds the countryCode to the get countries observable params func (o *GetCountriesObservableParams) SetCountryCode(countryCode *string) { o.CountryCode = countryCode } // WithCountryID adds the countryID to the get countries observable params func (o *GetCountriesObservableParams) WithCountryID(countryID *string) *GetCountriesObservableParams { o.SetCountryID(countryID) return o } // SetCountryID adds the countryId to the get countries observable params func (o *GetCountriesObservableParams) SetCountryID(countryID *string) { o.CountryID = countryID } // WriteToRequest writes these params to a swagger request func (o *GetCountriesObservableParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error { if err := r.SetTimeout(o.timeout); err != nil { return err } var res []error if o.CountryCode != nil { // query param countryCode var qrCountryCode string if o.CountryCode != nil { qrCountryCode = *o.CountryCode } qCountryCode := qrCountryCode if qCountryCode != "" { if err := r.SetQueryParam("countryCode", qCountryCode); err != nil { return err } } } if o.CountryID != nil { // query param countryId var qrCountryID string if o.CountryID != nil { qrCountryID = *o.CountryID } qCountryID := qrCountryID if qCountryID != "" { if err := r.SetQueryParam("countryId", qCountryID); err != nil { return err } } } if len(res) > 0 { return errors.CompositeValidationError(res...) } return nil }