lib/api/sfgate/sfgate_client/prompts/get_prompt_answers_paramete...

242 lines
6.0 KiB
Go
Raw Permalink Normal View History

2023-06-17 01:24:46 +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 prompts
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-06-17 01:24:46 +00:00
)
// NewGetPromptAnswersParams creates a new GetPromptAnswersParams 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 NewGetPromptAnswersParams() *GetPromptAnswersParams {
return NewGetPromptAnswersParamsWithTimeout(cr.DefaultTimeout)
2023-06-17 01:24:46 +00:00
}
// NewGetPromptAnswersParamsWithTimeout creates a new GetPromptAnswersParams object
// with the ability to set a timeout on a request.
func NewGetPromptAnswersParamsWithTimeout(timeout time.Duration) *GetPromptAnswersParams {
return &GetPromptAnswersParams{
inner: innerParams{
timeout: timeout,
},
2023-06-17 01:24:46 +00:00
}
}
// NewGetPromptAnswersParamsWithContext creates a new GetPromptAnswersParams object
// with the ability to set a context for a request.
//
// Deprecated: use the operation call with context to pass the context instead of [GetPromptAnswersParams].
2023-06-17 01:24:46 +00:00
func NewGetPromptAnswersParamsWithContext(ctx context.Context) *GetPromptAnswersParams {
return &GetPromptAnswersParams{
inner: innerParams{
ctx: ctx,
},
2023-06-17 01:24:46 +00:00
}
}
// NewGetPromptAnswersParamsWithHTTPClient creates a new GetPromptAnswersParams object
// with the ability to set a custom HTTPClient for a request.
func NewGetPromptAnswersParamsWithHTTPClient(client *http.Client) *GetPromptAnswersParams {
return &GetPromptAnswersParams{
HTTPClient: client,
}
}
/*
GetPromptAnswersParams contains all the parameters to send to the API endpoint
for the get prompt answers operation.
Typically these are written to a http.Request.
*/
type GetPromptAnswersParams struct {
// ID.
//
// Unique Record ID
2023-06-17 01:24:46 +00:00
ID *string
// Limit.
//
// How many objects to return at one time
//
// Format: int64
2023-06-17 01:24:46 +00:00
Limit *int64
// Offset.
//
// How many objects to skip?
//
// Format: int64
2023-06-17 01:24:46 +00:00
Offset *int64
HTTPClient *http.Client
inner innerParams
2023-06-17 01:24:46 +00:00
}
// WithDefaults hydrates default values in the get prompt answers params (not the query body).
//
// All values with no default are reset to their zero value.
func (o *GetPromptAnswersParams) WithDefaults() *GetPromptAnswersParams {
o.SetDefaults()
return o
}
// SetDefaults hydrates default values in the get prompt answers params (not the query body).
//
// All values with no default are reset to their zero value.
func (o *GetPromptAnswersParams) SetDefaults() {
// no default values defined for this parameter
}
// WithTimeout adds the timeout to the get prompt answers params.
2023-06-17 01:24:46 +00:00
func (o *GetPromptAnswersParams) WithTimeout(timeout time.Duration) *GetPromptAnswersParams {
o.SetTimeout(timeout)
return o
}
// SetTimeout adds the timeout to the get prompt answers params.
2023-06-17 01:24:46 +00:00
func (o *GetPromptAnswersParams) SetTimeout(timeout time.Duration) {
o.inner.timeout = timeout
2023-06-17 01:24:46 +00:00
}
// WithContext adds the context to the get prompt answers params.
//
// Deprecated: use the operation call with context to pass the context instead of [GetPromptAnswersParams].
2023-06-17 01:24:46 +00:00
func (o *GetPromptAnswersParams) WithContext(ctx context.Context) *GetPromptAnswersParams {
o.SetContext(ctx)
return o
}
// SetContext adds the context to the get prompt answers params.
//
// Deprecated: use the operation call with context to pass the context instead of [GetPromptAnswersParams].
2023-06-17 01:24:46 +00:00
func (o *GetPromptAnswersParams) SetContext(ctx context.Context) {
o.inner.ctx = ctx
2023-06-17 01:24:46 +00:00
}
// WithHTTPClient adds the HTTPClient to the get prompt answers params.
2023-06-17 01:24:46 +00:00
func (o *GetPromptAnswersParams) WithHTTPClient(client *http.Client) *GetPromptAnswersParams {
o.SetHTTPClient(client)
return o
}
// SetHTTPClient adds the HTTPClient to the get prompt answers params.
2023-06-17 01:24:46 +00:00
func (o *GetPromptAnswersParams) SetHTTPClient(client *http.Client) {
o.HTTPClient = client
}
// WithID adds the id to the get prompt answers params.
2023-06-17 01:24:46 +00:00
func (o *GetPromptAnswersParams) WithID(id *string) *GetPromptAnswersParams {
o.SetID(id)
return o
}
// SetID adds the id to the get prompt answers params.
2023-06-17 01:24:46 +00:00
func (o *GetPromptAnswersParams) SetID(id *string) {
o.ID = id
}
// WithLimit adds the limit to the get prompt answers params.
2023-06-17 01:24:46 +00:00
func (o *GetPromptAnswersParams) WithLimit(limit *int64) *GetPromptAnswersParams {
o.SetLimit(limit)
return o
}
// SetLimit adds the limit to the get prompt answers params.
2023-06-17 01:24:46 +00:00
func (o *GetPromptAnswersParams) SetLimit(limit *int64) {
o.Limit = limit
}
// WithOffset adds the offset to the get prompt answers params.
2023-06-17 01:24:46 +00:00
func (o *GetPromptAnswersParams) WithOffset(offset *int64) *GetPromptAnswersParams {
o.SetOffset(offset)
return o
}
// SetOffset adds the offset to the get prompt answers params.
2023-06-17 01:24:46 +00:00
func (o *GetPromptAnswersParams) SetOffset(offset *int64) {
o.Offset = offset
}
// WriteToRequest writes these params to a [runtime.ClientRequest].
2023-06-17 01:24:46 +00:00
func (o *GetPromptAnswersParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error {
if err := r.SetTimeout(o.inner.timeout); err != nil {
2023-06-17 01:24:46 +00:00
return err
}
var res []error
if o.ID != nil {
// query param id
var qrID string
if o.ID != nil {
qrID = *o.ID
}
qID := qrID
if qID != "" {
if err := r.SetQueryParam("id", qID); 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-06-17 01:24:46 +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-06-17 01:24:46 +00:00
if qOffset != "" {
if err := r.SetQueryParam("offset", qOffset); err != nil {
return err
}
}
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}