// 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 tax // 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" ) // NewGetDistrictTaxesParams creates a new GetDistrictTaxesParams object // with the default values initialized. func NewGetDistrictTaxesParams() *GetDistrictTaxesParams { var () return &GetDistrictTaxesParams{ timeout: cr.DefaultTimeout, } } // NewGetDistrictTaxesParamsWithTimeout creates a new GetDistrictTaxesParams object // with the default values initialized, and the ability to set a timeout on a request func NewGetDistrictTaxesParamsWithTimeout(timeout time.Duration) *GetDistrictTaxesParams { var () return &GetDistrictTaxesParams{ timeout: timeout, } } // NewGetDistrictTaxesParamsWithContext creates a new GetDistrictTaxesParams object // with the default values initialized, and the ability to set a context for a request func NewGetDistrictTaxesParamsWithContext(ctx context.Context) *GetDistrictTaxesParams { var () return &GetDistrictTaxesParams{ Context: ctx, } } // NewGetDistrictTaxesParamsWithHTTPClient creates a new GetDistrictTaxesParams object // with the default values initialized, and the ability to set a custom HTTPClient for a request func NewGetDistrictTaxesParamsWithHTTPClient(client *http.Client) *GetDistrictTaxesParams { var () return &GetDistrictTaxesParams{ HTTPClient: client, } } /*GetDistrictTaxesParams contains all the parameters to send to the API endpoint for the get district taxes operation typically these are written to a http.Request */ type GetDistrictTaxesParams struct { /*AccountID Taxnexus Record Id of an Account */ AccountID *string /*Month The Month Number (1,2, ..., 12) of the report */ Month *int64 /*Quarter The Quarter Number (1,2,3,4) of the report */ Quarter *int64 /*Semiannual The Semiannual Number (1,2) of the report */ Semiannual *int64 /*Year The year of the report */ Year *int64 timeout time.Duration Context context.Context HTTPClient *http.Client } // WithTimeout adds the timeout to the get district taxes params func (o *GetDistrictTaxesParams) WithTimeout(timeout time.Duration) *GetDistrictTaxesParams { o.SetTimeout(timeout) return o } // SetTimeout adds the timeout to the get district taxes params func (o *GetDistrictTaxesParams) SetTimeout(timeout time.Duration) { o.timeout = timeout } // WithContext adds the context to the get district taxes params func (o *GetDistrictTaxesParams) WithContext(ctx context.Context) *GetDistrictTaxesParams { o.SetContext(ctx) return o } // SetContext adds the context to the get district taxes params func (o *GetDistrictTaxesParams) SetContext(ctx context.Context) { o.Context = ctx } // WithHTTPClient adds the HTTPClient to the get district taxes params func (o *GetDistrictTaxesParams) WithHTTPClient(client *http.Client) *GetDistrictTaxesParams { o.SetHTTPClient(client) return o } // SetHTTPClient adds the HTTPClient to the get district taxes params func (o *GetDistrictTaxesParams) SetHTTPClient(client *http.Client) { o.HTTPClient = client } // WithAccountID adds the accountID to the get district taxes params func (o *GetDistrictTaxesParams) WithAccountID(accountID *string) *GetDistrictTaxesParams { o.SetAccountID(accountID) return o } // SetAccountID adds the accountId to the get district taxes params func (o *GetDistrictTaxesParams) SetAccountID(accountID *string) { o.AccountID = accountID } // WithMonth adds the month to the get district taxes params func (o *GetDistrictTaxesParams) WithMonth(month *int64) *GetDistrictTaxesParams { o.SetMonth(month) return o } // SetMonth adds the month to the get district taxes params func (o *GetDistrictTaxesParams) SetMonth(month *int64) { o.Month = month } // WithQuarter adds the quarter to the get district taxes params func (o *GetDistrictTaxesParams) WithQuarter(quarter *int64) *GetDistrictTaxesParams { o.SetQuarter(quarter) return o } // SetQuarter adds the quarter to the get district taxes params func (o *GetDistrictTaxesParams) SetQuarter(quarter *int64) { o.Quarter = quarter } // WithSemiannual adds the semiannual to the get district taxes params func (o *GetDistrictTaxesParams) WithSemiannual(semiannual *int64) *GetDistrictTaxesParams { o.SetSemiannual(semiannual) return o } // SetSemiannual adds the semiannual to the get district taxes params func (o *GetDistrictTaxesParams) SetSemiannual(semiannual *int64) { o.Semiannual = semiannual } // WithYear adds the year to the get district taxes params func (o *GetDistrictTaxesParams) WithYear(year *int64) *GetDistrictTaxesParams { o.SetYear(year) return o } // SetYear adds the year to the get district taxes params func (o *GetDistrictTaxesParams) SetYear(year *int64) { o.Year = year } // WriteToRequest writes these params to a swagger request func (o *GetDistrictTaxesParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error { if err := r.SetTimeout(o.timeout); err != nil { return err } var res []error if o.AccountID != nil { // query param accountId var qrAccountID string if o.AccountID != nil { qrAccountID = *o.AccountID } qAccountID := qrAccountID if qAccountID != "" { if err := r.SetQueryParam("accountId", qAccountID); err != nil { return err } } } if o.Month != nil { // query param month var qrMonth int64 if o.Month != nil { qrMonth = *o.Month } qMonth := swag.FormatInt64(qrMonth) if qMonth != "" { if err := r.SetQueryParam("month", qMonth); err != nil { return err } } } if o.Quarter != nil { // query param quarter var qrQuarter int64 if o.Quarter != nil { qrQuarter = *o.Quarter } qQuarter := swag.FormatInt64(qrQuarter) if qQuarter != "" { if err := r.SetQueryParam("quarter", qQuarter); err != nil { return err } } } if o.Semiannual != nil { // query param semiannual var qrSemiannual int64 if o.Semiannual != nil { qrSemiannual = *o.Semiannual } qSemiannual := swag.FormatInt64(qrSemiannual) if qSemiannual != "" { if err := r.SetQueryParam("semiannual", qSemiannual); err != nil { return err } } } if o.Year != nil { // query param year var qrYear int64 if o.Year != nil { qrYear = *o.Year } qYear := swag.FormatInt64(qrYear) if qYear != "" { if err := r.SetQueryParam("year", qYear); err != nil { return err } } } if len(res) > 0 { return errors.CompositeValidationError(res...) } return nil }