lib/api/sfgate/sfgate_client/assets/post_assets_parameters.go

160 lines
4.5 KiB
Go
Raw Permalink Normal View History

2022-09-05 00:01:32 +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 assets
import (
"context"
"net/http"
"time"
"code.tnxs.net/vernonkeenan/lib/api/sfgate/sfgate_models"
2022-09-05 00:01:32 +00:00
"github.com/go-openapi/errors"
"github.com/go-openapi/runtime"
cr "github.com/go-openapi/runtime/client"
"github.com/go-openapi/strfmt"
)
// NewPostAssetsParams creates a new PostAssetsParams 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 NewPostAssetsParams() *PostAssetsParams {
return NewPostAssetsParamsWithTimeout(cr.DefaultTimeout)
2022-09-05 00:01:32 +00:00
}
// NewPostAssetsParamsWithTimeout creates a new PostAssetsParams object
// with the ability to set a timeout on a request.
func NewPostAssetsParamsWithTimeout(timeout time.Duration) *PostAssetsParams {
return &PostAssetsParams{
inner: innerParams{
timeout: timeout,
},
2022-09-05 00:01:32 +00:00
}
}
// NewPostAssetsParamsWithContext creates a new PostAssetsParams object
// with the ability to set a context for a request.
//
// Deprecated: use the operation call with context to pass the context instead of [PostAssetsParams].
2022-09-05 00:01:32 +00:00
func NewPostAssetsParamsWithContext(ctx context.Context) *PostAssetsParams {
return &PostAssetsParams{
inner: innerParams{
ctx: ctx,
},
2022-09-05 00:01:32 +00:00
}
}
// NewPostAssetsParamsWithHTTPClient creates a new PostAssetsParams object
// with the ability to set a custom HTTPClient for a request.
func NewPostAssetsParamsWithHTTPClient(client *http.Client) *PostAssetsParams {
return &PostAssetsParams{
HTTPClient: client,
}
}
2023-03-22 20:49:01 +00:00
/*
PostAssetsParams contains all the parameters to send to the API endpoint
2022-09-05 00:01:32 +00:00
2023-03-22 20:49:01 +00:00
for the post assets operation.
Typically these are written to a http.Request.
2022-09-05 00:01:32 +00:00
*/
type PostAssetsParams struct {
// AssetRequest.
//
// An array of new Asset records
2022-09-05 00:01:32 +00:00
AssetRequest *sfgate_models.AssetRequest
HTTPClient *http.Client
inner innerParams
2022-09-05 00:01:32 +00:00
}
// WithDefaults hydrates default values in the post assets params (not the query body).
//
// All values with no default are reset to their zero value.
func (o *PostAssetsParams) WithDefaults() *PostAssetsParams {
o.SetDefaults()
return o
}
// SetDefaults hydrates default values in the post assets params (not the query body).
//
// All values with no default are reset to their zero value.
func (o *PostAssetsParams) SetDefaults() {
// no default values defined for this parameter
}
// WithTimeout adds the timeout to the post assets params.
2022-09-05 00:01:32 +00:00
func (o *PostAssetsParams) WithTimeout(timeout time.Duration) *PostAssetsParams {
o.SetTimeout(timeout)
return o
}
// SetTimeout adds the timeout to the post assets params.
2022-09-05 00:01:32 +00:00
func (o *PostAssetsParams) SetTimeout(timeout time.Duration) {
o.inner.timeout = timeout
2022-09-05 00:01:32 +00:00
}
// WithContext adds the context to the post assets params.
//
// Deprecated: use the operation call with context to pass the context instead of [PostAssetsParams].
2022-09-05 00:01:32 +00:00
func (o *PostAssetsParams) WithContext(ctx context.Context) *PostAssetsParams {
o.SetContext(ctx)
return o
}
// SetContext adds the context to the post assets params.
//
// Deprecated: use the operation call with context to pass the context instead of [PostAssetsParams].
2022-09-05 00:01:32 +00:00
func (o *PostAssetsParams) SetContext(ctx context.Context) {
o.inner.ctx = ctx
2022-09-05 00:01:32 +00:00
}
// WithHTTPClient adds the HTTPClient to the post assets params.
2022-09-05 00:01:32 +00:00
func (o *PostAssetsParams) WithHTTPClient(client *http.Client) *PostAssetsParams {
o.SetHTTPClient(client)
return o
}
// SetHTTPClient adds the HTTPClient to the post assets params.
2022-09-05 00:01:32 +00:00
func (o *PostAssetsParams) SetHTTPClient(client *http.Client) {
o.HTTPClient = client
}
// WithAssetRequest adds the assetRequest to the post assets params.
2022-09-05 00:01:32 +00:00
func (o *PostAssetsParams) WithAssetRequest(assetRequest *sfgate_models.AssetRequest) *PostAssetsParams {
o.SetAssetRequest(assetRequest)
return o
}
// SetAssetRequest adds the assetRequest to the post assets params.
2022-09-05 00:01:32 +00:00
func (o *PostAssetsParams) SetAssetRequest(assetRequest *sfgate_models.AssetRequest) {
o.AssetRequest = assetRequest
}
// WriteToRequest writes these params to a [runtime.ClientRequest].
2022-09-05 00:01:32 +00:00
func (o *PostAssetsParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error {
if err := r.SetTimeout(o.inner.timeout); err != nil {
2022-09-05 00:01:32 +00:00
return err
}
var res []error
if o.AssetRequest != nil {
if err := r.SetBodyParam(o.AssetRequest); err != nil {
return err
}
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}