// Code generated by go-swagger; DO NOT EDIT. // (c) 2012-2020 by Taxnexus, Inc. // All rights reserved worldwide. // Proprietary product; unlicensed use is not allowed package emails 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/conv" ) // NewGetEmailMessagesParams creates a new GetEmailMessagesParams 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 NewGetEmailMessagesParams() *GetEmailMessagesParams { return NewGetEmailMessagesParamsWithTimeout(cr.DefaultTimeout) } // NewGetEmailMessagesParamsWithTimeout creates a new GetEmailMessagesParams object // with the ability to set a timeout on a request. func NewGetEmailMessagesParamsWithTimeout(timeout time.Duration) *GetEmailMessagesParams { return &GetEmailMessagesParams{ inner: innerParams{ timeout: timeout, }, } } // NewGetEmailMessagesParamsWithContext creates a new GetEmailMessagesParams object // with the ability to set a context for a request. // // Deprecated: use the operation call with context to pass the context instead of [GetEmailMessagesParams]. func NewGetEmailMessagesParamsWithContext(ctx context.Context) *GetEmailMessagesParams { return &GetEmailMessagesParams{ inner: innerParams{ ctx: ctx, }, } } // NewGetEmailMessagesParamsWithHTTPClient creates a new GetEmailMessagesParams object // with the ability to set a custom HTTPClient for a request. func NewGetEmailMessagesParamsWithHTTPClient(client *http.Client) *GetEmailMessagesParams { return &GetEmailMessagesParams{ HTTPClient: client, } } /* GetEmailMessagesParams contains all the parameters to send to the API endpoint for the get email messages operation. Typically these are written to a http.Request. */ type GetEmailMessagesParams struct { // EmailMessageID. // // Email Message ID EmailMessageID *string // Limit. // // How many objects to return at one time // // Format: int64 Limit *int64 // Offset. // // How many objects to skip? // // Format: int64 Offset *int64 HTTPClient *http.Client inner innerParams } // WithDefaults hydrates default values in the get email messages params (not the query body). // // All values with no default are reset to their zero value. func (o *GetEmailMessagesParams) WithDefaults() *GetEmailMessagesParams { o.SetDefaults() return o } // SetDefaults hydrates default values in the get email messages params (not the query body). // // All values with no default are reset to their zero value. func (o *GetEmailMessagesParams) SetDefaults() { // no default values defined for this parameter } // WithTimeout adds the timeout to the get email messages params. func (o *GetEmailMessagesParams) WithTimeout(timeout time.Duration) *GetEmailMessagesParams { o.SetTimeout(timeout) return o } // SetTimeout adds the timeout to the get email messages params. func (o *GetEmailMessagesParams) SetTimeout(timeout time.Duration) { o.inner.timeout = timeout } // WithContext adds the context to the get email messages params. // // Deprecated: use the operation call with context to pass the context instead of [GetEmailMessagesParams]. func (o *GetEmailMessagesParams) WithContext(ctx context.Context) *GetEmailMessagesParams { o.SetContext(ctx) return o } // SetContext adds the context to the get email messages params. // // Deprecated: use the operation call with context to pass the context instead of [GetEmailMessagesParams]. func (o *GetEmailMessagesParams) SetContext(ctx context.Context) { o.inner.ctx = ctx } // WithHTTPClient adds the HTTPClient to the get email messages params. func (o *GetEmailMessagesParams) WithHTTPClient(client *http.Client) *GetEmailMessagesParams { o.SetHTTPClient(client) return o } // SetHTTPClient adds the HTTPClient to the get email messages params. func (o *GetEmailMessagesParams) SetHTTPClient(client *http.Client) { o.HTTPClient = client } // WithEmailMessageID adds the emailMessageID to the get email messages params. func (o *GetEmailMessagesParams) WithEmailMessageID(emailMessageID *string) *GetEmailMessagesParams { o.SetEmailMessageID(emailMessageID) return o } // SetEmailMessageID adds the emailMessageId to the get email messages params. func (o *GetEmailMessagesParams) SetEmailMessageID(emailMessageID *string) { o.EmailMessageID = emailMessageID } // WithLimit adds the limit to the get email messages params. func (o *GetEmailMessagesParams) WithLimit(limit *int64) *GetEmailMessagesParams { o.SetLimit(limit) return o } // SetLimit adds the limit to the get email messages params. func (o *GetEmailMessagesParams) SetLimit(limit *int64) { o.Limit = limit } // WithOffset adds the offset to the get email messages params. func (o *GetEmailMessagesParams) WithOffset(offset *int64) *GetEmailMessagesParams { o.SetOffset(offset) return o } // SetOffset adds the offset to the get email messages params. func (o *GetEmailMessagesParams) SetOffset(offset *int64) { o.Offset = offset } // WriteToRequest writes these params to a [runtime.ClientRequest]. func (o *GetEmailMessagesParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error { if err := r.SetTimeout(o.inner.timeout); err != nil { return err } var res []error if o.EmailMessageID != nil { // query param emailMessageId var qrEmailMessageID string if o.EmailMessageID != nil { qrEmailMessageID = *o.EmailMessageID } qEmailMessageID := qrEmailMessageID if qEmailMessageID != "" { if err := r.SetQueryParam("emailMessageId", qEmailMessageID); err != nil { return err } } } if o.Limit != nil { // query param limit var qrLimit int64 if o.Limit != nil { qrLimit = *o.Limit } qLimit := conv.FormatInteger(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 := conv.FormatInteger(qrOffset) if qOffset != "" { if err := r.SetQueryParam("offset", qOffset); err != nil { return err } } } if len(res) > 0 { return errors.CompositeValidationError(res...) } return nil }