// 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 tenants // 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" ) // NewGetTenantsParams creates a new GetTenantsParams object // with the default values initialized. func NewGetTenantsParams() *GetTenantsParams { var () return &GetTenantsParams{ timeout: cr.DefaultTimeout, } } // NewGetTenantsParamsWithTimeout creates a new GetTenantsParams object // with the default values initialized, and the ability to set a timeout on a request func NewGetTenantsParamsWithTimeout(timeout time.Duration) *GetTenantsParams { var () return &GetTenantsParams{ timeout: timeout, } } // NewGetTenantsParamsWithContext creates a new GetTenantsParams object // with the default values initialized, and the ability to set a context for a request func NewGetTenantsParamsWithContext(ctx context.Context) *GetTenantsParams { var () return &GetTenantsParams{ Context: ctx, } } // NewGetTenantsParamsWithHTTPClient creates a new GetTenantsParams object // with the default values initialized, and the ability to set a custom HTTPClient for a request func NewGetTenantsParamsWithHTTPClient(client *http.Client) *GetTenantsParams { var () return &GetTenantsParams{ HTTPClient: client, } } /*GetTenantsParams contains all the parameters to send to the API endpoint for the get tenants operation typically these are written to a http.Request */ type GetTenantsParams struct { /*CompanyID Taxnexus Id of the Company to be retrieved */ CompanyID *string /*Limit How many objects to return at one time */ Limit *int64 /*Offset How many objects to skip? (default 0) */ Offset *int64 /*TenantID Taxnexus Record Id of a Tenant */ TenantID *string timeout time.Duration Context context.Context HTTPClient *http.Client } // WithTimeout adds the timeout to the get tenants params func (o *GetTenantsParams) WithTimeout(timeout time.Duration) *GetTenantsParams { o.SetTimeout(timeout) return o } // SetTimeout adds the timeout to the get tenants params func (o *GetTenantsParams) SetTimeout(timeout time.Duration) { o.timeout = timeout } // WithContext adds the context to the get tenants params func (o *GetTenantsParams) WithContext(ctx context.Context) *GetTenantsParams { o.SetContext(ctx) return o } // SetContext adds the context to the get tenants params func (o *GetTenantsParams) SetContext(ctx context.Context) { o.Context = ctx } // WithHTTPClient adds the HTTPClient to the get tenants params func (o *GetTenantsParams) WithHTTPClient(client *http.Client) *GetTenantsParams { o.SetHTTPClient(client) return o } // SetHTTPClient adds the HTTPClient to the get tenants params func (o *GetTenantsParams) SetHTTPClient(client *http.Client) { o.HTTPClient = client } // WithCompanyID adds the companyID to the get tenants params func (o *GetTenantsParams) WithCompanyID(companyID *string) *GetTenantsParams { o.SetCompanyID(companyID) return o } // SetCompanyID adds the companyId to the get tenants params func (o *GetTenantsParams) SetCompanyID(companyID *string) { o.CompanyID = companyID } // WithLimit adds the limit to the get tenants params func (o *GetTenantsParams) WithLimit(limit *int64) *GetTenantsParams { o.SetLimit(limit) return o } // SetLimit adds the limit to the get tenants params func (o *GetTenantsParams) SetLimit(limit *int64) { o.Limit = limit } // WithOffset adds the offset to the get tenants params func (o *GetTenantsParams) WithOffset(offset *int64) *GetTenantsParams { o.SetOffset(offset) return o } // SetOffset adds the offset to the get tenants params func (o *GetTenantsParams) SetOffset(offset *int64) { o.Offset = offset } // WithTenantID adds the tenantID to the get tenants params func (o *GetTenantsParams) WithTenantID(tenantID *string) *GetTenantsParams { o.SetTenantID(tenantID) return o } // SetTenantID adds the tenantId to the get tenants params func (o *GetTenantsParams) SetTenantID(tenantID *string) { o.TenantID = tenantID } // WriteToRequest writes these params to a swagger request func (o *GetTenantsParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error { if err := r.SetTimeout(o.timeout); err != nil { return err } var res []error if o.CompanyID != nil { // query param companyId var qrCompanyID string if o.CompanyID != nil { qrCompanyID = *o.CompanyID } qCompanyID := qrCompanyID if qCompanyID != "" { if err := r.SetQueryParam("companyId", qCompanyID); 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 o.TenantID != nil { // query param tenantId var qrTenantID string if o.TenantID != nil { qrTenantID = *o.TenantID } qTenantID := qrTenantID if qTenantID != "" { if err := r.SetQueryParam("tenantId", qTenantID); err != nil { return err } } } if len(res) > 0 { return errors.CompositeValidationError(res...) } return nil }