lib/api/members/members_client/emails/get_email_messages_paramete...

242 lines
6.3 KiB
Go
Raw Normal View History

2023-04-17 22:11:43 +00:00
// 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"
2023-04-17 22:11:43 +00:00
)
// 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)
2023-04-17 22:11:43 +00:00
}
// 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,
},
2023-04-17 22:11:43 +00:00
}
}
// 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].
2023-04-17 22:11:43 +00:00
func NewGetEmailMessagesParamsWithContext(ctx context.Context) *GetEmailMessagesParams {
return &GetEmailMessagesParams{
inner: innerParams{
ctx: ctx,
},
2023-04-17 22:11:43 +00:00
}
}
// 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
2023-04-17 22:11:43 +00:00
EmailMessageID *string
// Limit.
//
// How many objects to return at one time
//
// Format: int64
2023-04-17 22:11:43 +00:00
Limit *int64
// Offset.
//
// How many objects to skip?
//
// Format: int64
2023-04-17 22:11:43 +00:00
Offset *int64
HTTPClient *http.Client
inner innerParams
2023-04-17 22:11:43 +00:00
}
// 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.
2023-04-17 22:11:43 +00:00
func (o *GetEmailMessagesParams) WithTimeout(timeout time.Duration) *GetEmailMessagesParams {
o.SetTimeout(timeout)
return o
}
// SetTimeout adds the timeout to the get email messages params.
2023-04-17 22:11:43 +00:00
func (o *GetEmailMessagesParams) SetTimeout(timeout time.Duration) {
o.inner.timeout = timeout
2023-04-17 22:11:43 +00:00
}
// WithContext adds the context to the get email messages params.
//
// Deprecated: use the operation call with context to pass the context instead of [GetEmailMessagesParams].
2023-04-17 22:11:43 +00:00
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].
2023-04-17 22:11:43 +00:00
func (o *GetEmailMessagesParams) SetContext(ctx context.Context) {
o.inner.ctx = ctx
2023-04-17 22:11:43 +00:00
}
// WithHTTPClient adds the HTTPClient to the get email messages params.
2023-04-17 22:11:43 +00:00
func (o *GetEmailMessagesParams) WithHTTPClient(client *http.Client) *GetEmailMessagesParams {
o.SetHTTPClient(client)
return o
}
// SetHTTPClient adds the HTTPClient to the get email messages params.
2023-04-17 22:11:43 +00:00
func (o *GetEmailMessagesParams) SetHTTPClient(client *http.Client) {
o.HTTPClient = client
}
// WithEmailMessageID adds the emailMessageID to the get email messages params.
2023-04-17 22:11:43 +00:00
func (o *GetEmailMessagesParams) WithEmailMessageID(emailMessageID *string) *GetEmailMessagesParams {
o.SetEmailMessageID(emailMessageID)
return o
}
// SetEmailMessageID adds the emailMessageId to the get email messages params.
2023-04-17 22:11:43 +00:00
func (o *GetEmailMessagesParams) SetEmailMessageID(emailMessageID *string) {
o.EmailMessageID = emailMessageID
}
// WithLimit adds the limit to the get email messages params.
2023-04-17 22:11:43 +00:00
func (o *GetEmailMessagesParams) WithLimit(limit *int64) *GetEmailMessagesParams {
o.SetLimit(limit)
return o
}
// SetLimit adds the limit to the get email messages params.
2023-04-17 22:11:43 +00:00
func (o *GetEmailMessagesParams) SetLimit(limit *int64) {
o.Limit = limit
}
// WithOffset adds the offset to the get email messages params.
2023-04-17 22:11:43 +00:00
func (o *GetEmailMessagesParams) WithOffset(offset *int64) *GetEmailMessagesParams {
o.SetOffset(offset)
return o
}
// SetOffset adds the offset to the get email messages params.
2023-04-17 22:11:43 +00:00
func (o *GetEmailMessagesParams) SetOffset(offset *int64) {
o.Offset = offset
}
// WriteToRequest writes these params to a [runtime.ClientRequest].
2023-04-17 22:11:43 +00:00
func (o *GetEmailMessagesParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error {
if err := r.SetTimeout(o.inner.timeout); err != nil {
2023-04-17 22:11:43 +00:00
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)
2023-04-17 22:11:43 +00:00
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)
2023-04-17 22:11:43 +00:00
if qOffset != "" {
if err := r.SetQueryParam("offset", qOffset); err != nil {
return err
}
}
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}