// Code generated by go-swagger; DO NOT EDIT. // All Code Copyright(c) 2018-2020 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" "code.tnxs.net/taxnexus/lib/api/geo/geo_models" ) // NewPostCountriesParams creates a new PostCountriesParams object // with the default values initialized. func NewPostCountriesParams() *PostCountriesParams { var () return &PostCountriesParams{ timeout: cr.DefaultTimeout, } } // NewPostCountriesParamsWithTimeout creates a new PostCountriesParams object // with the default values initialized, and the ability to set a timeout on a request func NewPostCountriesParamsWithTimeout(timeout time.Duration) *PostCountriesParams { var () return &PostCountriesParams{ timeout: timeout, } } // NewPostCountriesParamsWithContext creates a new PostCountriesParams object // with the default values initialized, and the ability to set a context for a request func NewPostCountriesParamsWithContext(ctx context.Context) *PostCountriesParams { var () return &PostCountriesParams{ Context: ctx, } } // NewPostCountriesParamsWithHTTPClient creates a new PostCountriesParams object // with the default values initialized, and the ability to set a custom HTTPClient for a request func NewPostCountriesParamsWithHTTPClient(client *http.Client) *PostCountriesParams { var () return &PostCountriesParams{ HTTPClient: client, } } /*PostCountriesParams contains all the parameters to send to the API endpoint for the post countries operation typically these are written to a http.Request */ type PostCountriesParams struct { /*CountryRequest*/ CountryRequest *geo_models.CountryRequest timeout time.Duration Context context.Context HTTPClient *http.Client } // WithTimeout adds the timeout to the post countries params func (o *PostCountriesParams) WithTimeout(timeout time.Duration) *PostCountriesParams { o.SetTimeout(timeout) return o } // SetTimeout adds the timeout to the post countries params func (o *PostCountriesParams) SetTimeout(timeout time.Duration) { o.timeout = timeout } // WithContext adds the context to the post countries params func (o *PostCountriesParams) WithContext(ctx context.Context) *PostCountriesParams { o.SetContext(ctx) return o } // SetContext adds the context to the post countries params func (o *PostCountriesParams) SetContext(ctx context.Context) { o.Context = ctx } // WithHTTPClient adds the HTTPClient to the post countries params func (o *PostCountriesParams) WithHTTPClient(client *http.Client) *PostCountriesParams { o.SetHTTPClient(client) return o } // SetHTTPClient adds the HTTPClient to the post countries params func (o *PostCountriesParams) SetHTTPClient(client *http.Client) { o.HTTPClient = client } // WithCountryRequest adds the countryRequest to the post countries params func (o *PostCountriesParams) WithCountryRequest(countryRequest *geo_models.CountryRequest) *PostCountriesParams { o.SetCountryRequest(countryRequest) return o } // SetCountryRequest adds the countryRequest to the post countries params func (o *PostCountriesParams) SetCountryRequest(countryRequest *geo_models.CountryRequest) { o.CountryRequest = countryRequest } // WriteToRequest writes these params to a swagger request func (o *PostCountriesParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error { if err := r.SetTimeout(o.timeout); err != nil { return err } var res []error if o.CountryRequest != nil { if err := r.SetBodyParam(o.CountryRequest); err != nil { return err } } if len(res) > 0 { return errors.CompositeValidationError(res...) } return nil }