// Code generated by go-swagger; DO NOT EDIT. package operations // 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" "fiskerinc.com/modules/ota_api/models" ) // NewPostManifestParams creates a new PostManifestParams 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 NewPostManifestParams() *PostManifestParams { return &PostManifestParams{ timeout: cr.DefaultTimeout, } } // NewPostManifestParamsWithTimeout creates a new PostManifestParams object // with the ability to set a timeout on a request. func NewPostManifestParamsWithTimeout(timeout time.Duration) *PostManifestParams { return &PostManifestParams{ timeout: timeout, } } // NewPostManifestParamsWithContext creates a new PostManifestParams object // with the ability to set a context for a request. func NewPostManifestParamsWithContext(ctx context.Context) *PostManifestParams { return &PostManifestParams{ Context: ctx, } } // NewPostManifestParamsWithHTTPClient creates a new PostManifestParams object // with the ability to set a custom HTTPClient for a request. func NewPostManifestParamsWithHTTPClient(client *http.Client) *PostManifestParams { return &PostManifestParams{ HTTPClient: client, } } /* PostManifestParams contains all the parameters to send to the API endpoint for the post manifest operation. Typically these are written to a http.Request. */ type PostManifestParams struct { /* Manifest. Manifest data */ Manifest *models.CommonCreateUpdateManifest timeout time.Duration Context context.Context HTTPClient *http.Client } // WithDefaults hydrates default values in the post manifest params (not the query body). // // All values with no default are reset to their zero value. func (o *PostManifestParams) WithDefaults() *PostManifestParams { o.SetDefaults() return o } // SetDefaults hydrates default values in the post manifest params (not the query body). // // All values with no default are reset to their zero value. func (o *PostManifestParams) SetDefaults() { // no default values defined for this parameter } // WithTimeout adds the timeout to the post manifest params func (o *PostManifestParams) WithTimeout(timeout time.Duration) *PostManifestParams { o.SetTimeout(timeout) return o } // SetTimeout adds the timeout to the post manifest params func (o *PostManifestParams) SetTimeout(timeout time.Duration) { o.timeout = timeout } // WithContext adds the context to the post manifest params func (o *PostManifestParams) WithContext(ctx context.Context) *PostManifestParams { o.SetContext(ctx) return o } // SetContext adds the context to the post manifest params func (o *PostManifestParams) SetContext(ctx context.Context) { o.Context = ctx } // WithHTTPClient adds the HTTPClient to the post manifest params func (o *PostManifestParams) WithHTTPClient(client *http.Client) *PostManifestParams { o.SetHTTPClient(client) return o } // SetHTTPClient adds the HTTPClient to the post manifest params func (o *PostManifestParams) SetHTTPClient(client *http.Client) { o.HTTPClient = client } // WithManifest adds the manifest to the post manifest params func (o *PostManifestParams) WithManifest(manifest *models.CommonCreateUpdateManifest) *PostManifestParams { o.SetManifest(manifest) return o } // SetManifest adds the manifest to the post manifest params func (o *PostManifestParams) SetManifest(manifest *models.CommonCreateUpdateManifest) { o.Manifest = manifest } // WriteToRequest writes these params to a swagger request func (o *PostManifestParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error { if err := r.SetTimeout(o.timeout); err != nil { return err } var res []error if o.Manifest != nil { if err := r.SetBodyParam(o.Manifest); err != nil { return err } } if len(res) > 0 { return errors.CompositeValidationError(res...) } return nil }