lib/api/geo/geo_client/country/get_countries_observable_pa...

183 lines
5.1 KiB
Go

// 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"
)
// NewGetCountriesObservableParams creates a new GetCountriesObservableParams object
// with the default values initialized.
func NewGetCountriesObservableParams() *GetCountriesObservableParams {
var ()
return &GetCountriesObservableParams{
timeout: cr.DefaultTimeout,
}
}
// NewGetCountriesObservableParamsWithTimeout creates a new GetCountriesObservableParams object
// with the default values initialized, and the ability to set a timeout on a request
func NewGetCountriesObservableParamsWithTimeout(timeout time.Duration) *GetCountriesObservableParams {
var ()
return &GetCountriesObservableParams{
timeout: timeout,
}
}
// NewGetCountriesObservableParamsWithContext creates a new GetCountriesObservableParams object
// with the default values initialized, and the ability to set a context for a request
func NewGetCountriesObservableParamsWithContext(ctx context.Context) *GetCountriesObservableParams {
var ()
return &GetCountriesObservableParams{
Context: ctx,
}
}
// NewGetCountriesObservableParamsWithHTTPClient creates a new GetCountriesObservableParams object
// with the default values initialized, and the ability to set a custom HTTPClient for a request
func NewGetCountriesObservableParamsWithHTTPClient(client *http.Client) *GetCountriesObservableParams {
var ()
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
}
// 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
}