// 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 courses // 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" "code.tnxs.net/vernonkeenan/lib/api/members/members_models" ) // NewUpdateCourseLessonsParams creates a new UpdateCourseLessonsParams 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 NewUpdateCourseLessonsParams() *UpdateCourseLessonsParams { return &UpdateCourseLessonsParams{ timeout: cr.DefaultTimeout, } } // NewUpdateCourseLessonsParamsWithTimeout creates a new UpdateCourseLessonsParams object // with the ability to set a timeout on a request. func NewUpdateCourseLessonsParamsWithTimeout(timeout time.Duration) *UpdateCourseLessonsParams { return &UpdateCourseLessonsParams{ timeout: timeout, } } // NewUpdateCourseLessonsParamsWithContext creates a new UpdateCourseLessonsParams object // with the ability to set a context for a request. func NewUpdateCourseLessonsParamsWithContext(ctx context.Context) *UpdateCourseLessonsParams { return &UpdateCourseLessonsParams{ Context: ctx, } } // NewUpdateCourseLessonsParamsWithHTTPClient creates a new UpdateCourseLessonsParams object // with the ability to set a custom HTTPClient for a request. func NewUpdateCourseLessonsParamsWithHTTPClient(client *http.Client) *UpdateCourseLessonsParams { return &UpdateCourseLessonsParams{ HTTPClient: client, } } /* UpdateCourseLessonsParams contains all the parameters to send to the API endpoint for the update course lessons operation. Typically these are written to a http.Request. */ type UpdateCourseLessonsParams struct { /* CourselessonRequest. An array of new CourseLesson records */ CourselessonRequest *members_models.CourseLessonRequest timeout time.Duration Context context.Context HTTPClient *http.Client } // WithDefaults hydrates default values in the update course lessons params (not the query body). // // All values with no default are reset to their zero value. func (o *UpdateCourseLessonsParams) WithDefaults() *UpdateCourseLessonsParams { o.SetDefaults() return o } // SetDefaults hydrates default values in the update course lessons params (not the query body). // // All values with no default are reset to their zero value. func (o *UpdateCourseLessonsParams) SetDefaults() { // no default values defined for this parameter } // WithTimeout adds the timeout to the update course lessons params func (o *UpdateCourseLessonsParams) WithTimeout(timeout time.Duration) *UpdateCourseLessonsParams { o.SetTimeout(timeout) return o } // SetTimeout adds the timeout to the update course lessons params func (o *UpdateCourseLessonsParams) SetTimeout(timeout time.Duration) { o.timeout = timeout } // WithContext adds the context to the update course lessons params func (o *UpdateCourseLessonsParams) WithContext(ctx context.Context) *UpdateCourseLessonsParams { o.SetContext(ctx) return o } // SetContext adds the context to the update course lessons params func (o *UpdateCourseLessonsParams) SetContext(ctx context.Context) { o.Context = ctx } // WithHTTPClient adds the HTTPClient to the update course lessons params func (o *UpdateCourseLessonsParams) WithHTTPClient(client *http.Client) *UpdateCourseLessonsParams { o.SetHTTPClient(client) return o } // SetHTTPClient adds the HTTPClient to the update course lessons params func (o *UpdateCourseLessonsParams) SetHTTPClient(client *http.Client) { o.HTTPClient = client } // WithCourselessonRequest adds the courselessonRequest to the update course lessons params func (o *UpdateCourseLessonsParams) WithCourselessonRequest(courselessonRequest *members_models.CourseLessonRequest) *UpdateCourseLessonsParams { o.SetCourselessonRequest(courselessonRequest) return o } // SetCourselessonRequest adds the courselessonRequest to the update course lessons params func (o *UpdateCourseLessonsParams) SetCourselessonRequest(courselessonRequest *members_models.CourseLessonRequest) { o.CourselessonRequest = courselessonRequest } // WriteToRequest writes these params to a swagger request func (o *UpdateCourseLessonsParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error { if err := r.SetTimeout(o.timeout); err != nil { return err } var res []error if o.CourselessonRequest != nil { if err := r.SetBodyParam(o.CourselessonRequest); err != nil { return err } } if len(res) > 0 { return errors.CompositeValidationError(res...) } return nil }