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