// 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 state // 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" ) // NewPostStatesParams creates a new PostStatesParams 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 NewPostStatesParams() *PostStatesParams { return &PostStatesParams{ timeout: cr.DefaultTimeout, } } // NewPostStatesParamsWithTimeout creates a new PostStatesParams object // with the ability to set a timeout on a request. func NewPostStatesParamsWithTimeout(timeout time.Duration) *PostStatesParams { return &PostStatesParams{ timeout: timeout, } } // NewPostStatesParamsWithContext creates a new PostStatesParams object // with the ability to set a context for a request. func NewPostStatesParamsWithContext(ctx context.Context) *PostStatesParams { return &PostStatesParams{ Context: ctx, } } // NewPostStatesParamsWithHTTPClient creates a new PostStatesParams object // with the ability to set a custom HTTPClient for a request. func NewPostStatesParamsWithHTTPClient(client *http.Client) *PostStatesParams { return &PostStatesParams{ HTTPClient: client, } } /* PostStatesParams contains all the parameters to send to the API endpoint for the post states operation. Typically these are written to a http.Request. */ type PostStatesParams struct { /* StateRequest. The new Places request package */ StateRequest *geo_models.StateRequest timeout time.Duration Context context.Context HTTPClient *http.Client } // WithDefaults hydrates default values in the post states params (not the query body). // // All values with no default are reset to their zero value. func (o *PostStatesParams) WithDefaults() *PostStatesParams { o.SetDefaults() return o } // SetDefaults hydrates default values in the post states params (not the query body). // // All values with no default are reset to their zero value. func (o *PostStatesParams) SetDefaults() { // no default values defined for this parameter } // WithTimeout adds the timeout to the post states params func (o *PostStatesParams) WithTimeout(timeout time.Duration) *PostStatesParams { o.SetTimeout(timeout) return o } // SetTimeout adds the timeout to the post states params func (o *PostStatesParams) SetTimeout(timeout time.Duration) { o.timeout = timeout } // WithContext adds the context to the post states params func (o *PostStatesParams) WithContext(ctx context.Context) *PostStatesParams { o.SetContext(ctx) return o } // SetContext adds the context to the post states params func (o *PostStatesParams) SetContext(ctx context.Context) { o.Context = ctx } // WithHTTPClient adds the HTTPClient to the post states params func (o *PostStatesParams) WithHTTPClient(client *http.Client) *PostStatesParams { o.SetHTTPClient(client) return o } // SetHTTPClient adds the HTTPClient to the post states params func (o *PostStatesParams) SetHTTPClient(client *http.Client) { o.HTTPClient = client } // WithStateRequest adds the stateRequest to the post states params func (o *PostStatesParams) WithStateRequest(stateRequest *geo_models.StateRequest) *PostStatesParams { o.SetStateRequest(stateRequest) return o } // SetStateRequest adds the stateRequest to the post states params func (o *PostStatesParams) SetStateRequest(stateRequest *geo_models.StateRequest) { o.StateRequest = stateRequest } // WriteToRequest writes these params to a swagger request func (o *PostStatesParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error { if err := r.SetTimeout(o.timeout); err != nil { return err } var res []error if o.StateRequest != nil { if err := r.SetBodyParam(o.StateRequest); err != nil { return err } } if len(res) > 0 { return errors.CompositeValidationError(res...) } return nil }