// Code generated by go-swagger; DO NOT EDIT. package user // 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" "github.com/go-openapi/swag" ) // NewUserGetOauth2ApplicationParams creates a new UserGetOauth2ApplicationParams 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 NewUserGetOauth2ApplicationParams() *UserGetOauth2ApplicationParams { return &UserGetOauth2ApplicationParams{ timeout: cr.DefaultTimeout, } } // NewUserGetOauth2ApplicationParamsWithTimeout creates a new UserGetOauth2ApplicationParams object // with the ability to set a timeout on a request. func NewUserGetOauth2ApplicationParamsWithTimeout(timeout time.Duration) *UserGetOauth2ApplicationParams { return &UserGetOauth2ApplicationParams{ timeout: timeout, } } // NewUserGetOauth2ApplicationParamsWithContext creates a new UserGetOauth2ApplicationParams object // with the ability to set a context for a request. func NewUserGetOauth2ApplicationParamsWithContext(ctx context.Context) *UserGetOauth2ApplicationParams { return &UserGetOauth2ApplicationParams{ Context: ctx, } } // NewUserGetOauth2ApplicationParamsWithHTTPClient creates a new UserGetOauth2ApplicationParams object // with the ability to set a custom HTTPClient for a request. func NewUserGetOauth2ApplicationParamsWithHTTPClient(client *http.Client) *UserGetOauth2ApplicationParams { return &UserGetOauth2ApplicationParams{ HTTPClient: client, } } /* UserGetOauth2ApplicationParams contains all the parameters to send to the API endpoint for the user get oauth2 application operation. Typically these are written to a http.Request. */ type UserGetOauth2ApplicationParams struct { /* Limit. page size of results */ Limit *int64 /* Page. page number of results to return (1-based) */ Page *int64 timeout time.Duration Context context.Context HTTPClient *http.Client } // WithDefaults hydrates default values in the user get oauth2 application params (not the query body). // // All values with no default are reset to their zero value. func (o *UserGetOauth2ApplicationParams) WithDefaults() *UserGetOauth2ApplicationParams { o.SetDefaults() return o } // SetDefaults hydrates default values in the user get oauth2 application params (not the query body). // // All values with no default are reset to their zero value. func (o *UserGetOauth2ApplicationParams) SetDefaults() { // no default values defined for this parameter } // WithTimeout adds the timeout to the user get oauth2 application params func (o *UserGetOauth2ApplicationParams) WithTimeout(timeout time.Duration) *UserGetOauth2ApplicationParams { o.SetTimeout(timeout) return o } // SetTimeout adds the timeout to the user get oauth2 application params func (o *UserGetOauth2ApplicationParams) SetTimeout(timeout time.Duration) { o.timeout = timeout } // WithContext adds the context to the user get oauth2 application params func (o *UserGetOauth2ApplicationParams) WithContext(ctx context.Context) *UserGetOauth2ApplicationParams { o.SetContext(ctx) return o } // SetContext adds the context to the user get oauth2 application params func (o *UserGetOauth2ApplicationParams) SetContext(ctx context.Context) { o.Context = ctx } // WithHTTPClient adds the HTTPClient to the user get oauth2 application params func (o *UserGetOauth2ApplicationParams) WithHTTPClient(client *http.Client) *UserGetOauth2ApplicationParams { o.SetHTTPClient(client) return o } // SetHTTPClient adds the HTTPClient to the user get oauth2 application params func (o *UserGetOauth2ApplicationParams) SetHTTPClient(client *http.Client) { o.HTTPClient = client } // WithLimit adds the limit to the user get oauth2 application params func (o *UserGetOauth2ApplicationParams) WithLimit(limit *int64) *UserGetOauth2ApplicationParams { o.SetLimit(limit) return o } // SetLimit adds the limit to the user get oauth2 application params func (o *UserGetOauth2ApplicationParams) SetLimit(limit *int64) { o.Limit = limit } // WithPage adds the page to the user get oauth2 application params func (o *UserGetOauth2ApplicationParams) WithPage(page *int64) *UserGetOauth2ApplicationParams { o.SetPage(page) return o } // SetPage adds the page to the user get oauth2 application params func (o *UserGetOauth2ApplicationParams) SetPage(page *int64) { o.Page = page } // WriteToRequest writes these params to a swagger request func (o *UserGetOauth2ApplicationParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error { if err := r.SetTimeout(o.timeout); err != nil { return err } var res []error if o.Limit != nil { // query param limit var qrLimit int64 if o.Limit != nil { qrLimit = *o.Limit } qLimit := swag.FormatInt64(qrLimit) if qLimit != "" { if err := r.SetQueryParam("limit", qLimit); err != nil { return err } } } if o.Page != nil { // query param page var qrPage int64 if o.Page != nil { qrPage = *o.Page } qPage := swag.FormatInt64(qrPage) if qPage != "" { if err := r.SetQueryParam("page", qPage); err != nil { return err } } } if len(res) > 0 { return errors.CompositeValidationError(res...) } return nil }