lib/api/geo/geo_client/country/get_countries_parameters.go

248 lines
5.9 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"
"github.com/go-openapi/swag"
)
// NewGetCountriesParams creates a new GetCountriesParams object
// with the default values initialized.
func NewGetCountriesParams() *GetCountriesParams {
var ()
return &GetCountriesParams{
timeout: cr.DefaultTimeout,
}
}
// NewGetCountriesParamsWithTimeout creates a new GetCountriesParams object
// with the default values initialized, and the ability to set a timeout on a request
func NewGetCountriesParamsWithTimeout(timeout time.Duration) *GetCountriesParams {
var ()
return &GetCountriesParams{
timeout: timeout,
}
}
// NewGetCountriesParamsWithContext creates a new GetCountriesParams object
// with the default values initialized, and the ability to set a context for a request
func NewGetCountriesParamsWithContext(ctx context.Context) *GetCountriesParams {
var ()
return &GetCountriesParams{
Context: ctx,
}
}
// NewGetCountriesParamsWithHTTPClient creates a new GetCountriesParams object
// with the default values initialized, and the ability to set a custom HTTPClient for a request
func NewGetCountriesParamsWithHTTPClient(client *http.Client) *GetCountriesParams {
var ()
return &GetCountriesParams{
HTTPClient: client,
}
}
/*GetCountriesParams contains all the parameters to send to the API endpoint
for the get countries operation typically these are written to a http.Request
*/
type GetCountriesParams struct {
/*CountryCode
The Country abbreviation (2 char)
*/
CountryCode *string
/*CountryID
The ID of this Object
*/
CountryID *string
/*Limit
How many objects to return at one time
*/
Limit *int64
/*Offset
How many objects to skip? (default 0)
*/
Offset *int64
timeout time.Duration
Context context.Context
HTTPClient *http.Client
}
// WithTimeout adds the timeout to the get countries params
func (o *GetCountriesParams) WithTimeout(timeout time.Duration) *GetCountriesParams {
o.SetTimeout(timeout)
return o
}
// SetTimeout adds the timeout to the get countries params
func (o *GetCountriesParams) SetTimeout(timeout time.Duration) {
o.timeout = timeout
}
// WithContext adds the context to the get countries params
func (o *GetCountriesParams) WithContext(ctx context.Context) *GetCountriesParams {
o.SetContext(ctx)
return o
}
// SetContext adds the context to the get countries params
func (o *GetCountriesParams) SetContext(ctx context.Context) {
o.Context = ctx
}
// WithHTTPClient adds the HTTPClient to the get countries params
func (o *GetCountriesParams) WithHTTPClient(client *http.Client) *GetCountriesParams {
o.SetHTTPClient(client)
return o
}
// SetHTTPClient adds the HTTPClient to the get countries params
func (o *GetCountriesParams) SetHTTPClient(client *http.Client) {
o.HTTPClient = client
}
// WithCountryCode adds the countryCode to the get countries params
func (o *GetCountriesParams) WithCountryCode(countryCode *string) *GetCountriesParams {
o.SetCountryCode(countryCode)
return o
}
// SetCountryCode adds the countryCode to the get countries params
func (o *GetCountriesParams) SetCountryCode(countryCode *string) {
o.CountryCode = countryCode
}
// WithCountryID adds the countryID to the get countries params
func (o *GetCountriesParams) WithCountryID(countryID *string) *GetCountriesParams {
o.SetCountryID(countryID)
return o
}
// SetCountryID adds the countryId to the get countries params
func (o *GetCountriesParams) SetCountryID(countryID *string) {
o.CountryID = countryID
}
// WithLimit adds the limit to the get countries params
func (o *GetCountriesParams) WithLimit(limit *int64) *GetCountriesParams {
o.SetLimit(limit)
return o
}
// SetLimit adds the limit to the get countries params
func (o *GetCountriesParams) SetLimit(limit *int64) {
o.Limit = limit
}
// WithOffset adds the offset to the get countries params
func (o *GetCountriesParams) WithOffset(offset *int64) *GetCountriesParams {
o.SetOffset(offset)
return o
}
// SetOffset adds the offset to the get countries params
func (o *GetCountriesParams) SetOffset(offset *int64) {
o.Offset = offset
}
// WriteToRequest writes these params to a swagger request
func (o *GetCountriesParams) 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 o.Limit != nil {
// query param limit
var qrLimit int64
if o.Limit != nil {
qrLimit = *o.Limit
}
qLimit := swag.FormatInt64(qrLimit)
if qLimit != "" {
if err := r.SetQueryParam("limit", qLimit); err != nil {
return err
}
}
}
if o.Offset != nil {
// query param offset
var qrOffset int64
if o.Offset != nil {
qrOffset = *o.Offset
}
qOffset := swag.FormatInt64(qrOffset)
if qOffset != "" {
if err := r.SetQueryParam("offset", qOffset); err != nil {
return err
}
}
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}