// 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 invoice // 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" ) // NewGetMedicinalParams creates a new GetMedicinalParams object // with the default values initialized. func NewGetMedicinalParams() *GetMedicinalParams { var () return &GetMedicinalParams{ timeout: cr.DefaultTimeout, } } // NewGetMedicinalParamsWithTimeout creates a new GetMedicinalParams object // with the default values initialized, and the ability to set a timeout on a request func NewGetMedicinalParamsWithTimeout(timeout time.Duration) *GetMedicinalParams { var () return &GetMedicinalParams{ timeout: timeout, } } // NewGetMedicinalParamsWithContext creates a new GetMedicinalParams object // with the default values initialized, and the ability to set a context for a request func NewGetMedicinalParamsWithContext(ctx context.Context) *GetMedicinalParams { var () return &GetMedicinalParams{ Context: ctx, } } // NewGetMedicinalParamsWithHTTPClient creates a new GetMedicinalParams object // with the default values initialized, and the ability to set a custom HTTPClient for a request func NewGetMedicinalParamsWithHTTPClient(client *http.Client) *GetMedicinalParams { var () return &GetMedicinalParams{ HTTPClient: client, } } /*GetMedicinalParams contains all the parameters to send to the API endpoint for the get medicinal operation typically these are written to a http.Request */ type GetMedicinalParams 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 medicinal params func (o *GetMedicinalParams) WithTimeout(timeout time.Duration) *GetMedicinalParams { o.SetTimeout(timeout) return o } // SetTimeout adds the timeout to the get medicinal params func (o *GetMedicinalParams) SetTimeout(timeout time.Duration) { o.timeout = timeout } // WithContext adds the context to the get medicinal params func (o *GetMedicinalParams) WithContext(ctx context.Context) *GetMedicinalParams { o.SetContext(ctx) return o } // SetContext adds the context to the get medicinal params func (o *GetMedicinalParams) SetContext(ctx context.Context) { o.Context = ctx } // WithHTTPClient adds the HTTPClient to the get medicinal params func (o *GetMedicinalParams) WithHTTPClient(client *http.Client) *GetMedicinalParams { o.SetHTTPClient(client) return o } // SetHTTPClient adds the HTTPClient to the get medicinal params func (o *GetMedicinalParams) SetHTTPClient(client *http.Client) { o.HTTPClient = client } // WithAccountID adds the accountID to the get medicinal params func (o *GetMedicinalParams) WithAccountID(accountID *string) *GetMedicinalParams { o.SetAccountID(accountID) return o } // SetAccountID adds the accountId to the get medicinal params func (o *GetMedicinalParams) SetAccountID(accountID *string) { o.AccountID = accountID } // WithMonth adds the month to the get medicinal params func (o *GetMedicinalParams) WithMonth(month *int64) *GetMedicinalParams { o.SetMonth(month) return o } // SetMonth adds the month to the get medicinal params func (o *GetMedicinalParams) SetMonth(month *int64) { o.Month = month } // WithQuarter adds the quarter to the get medicinal params func (o *GetMedicinalParams) WithQuarter(quarter *int64) *GetMedicinalParams { o.SetQuarter(quarter) return o } // SetQuarter adds the quarter to the get medicinal params func (o *GetMedicinalParams) SetQuarter(quarter *int64) { o.Quarter = quarter } // WithSemiannual adds the semiannual to the get medicinal params func (o *GetMedicinalParams) WithSemiannual(semiannual *int64) *GetMedicinalParams { o.SetSemiannual(semiannual) return o } // SetSemiannual adds the semiannual to the get medicinal params func (o *GetMedicinalParams) SetSemiannual(semiannual *int64) { o.Semiannual = semiannual } // WithYear adds the year to the get medicinal params func (o *GetMedicinalParams) WithYear(year *int64) *GetMedicinalParams { o.SetYear(year) return o } // SetYear adds the year to the get medicinal params func (o *GetMedicinalParams) SetYear(year *int64) { o.Year = year } // WriteToRequest writes these params to a swagger request func (o *GetMedicinalParams) 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 }