// 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 role // 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/auth0/auth0_models" ) // NewPostRoleUsersParams creates a new PostRoleUsersParams object // with the default values initialized. func NewPostRoleUsersParams() *PostRoleUsersParams { var () return &PostRoleUsersParams{ timeout: cr.DefaultTimeout, } } // NewPostRoleUsersParamsWithTimeout creates a new PostRoleUsersParams object // with the default values initialized, and the ability to set a timeout on a request func NewPostRoleUsersParamsWithTimeout(timeout time.Duration) *PostRoleUsersParams { var () return &PostRoleUsersParams{ timeout: timeout, } } // NewPostRoleUsersParamsWithContext creates a new PostRoleUsersParams object // with the default values initialized, and the ability to set a context for a request func NewPostRoleUsersParamsWithContext(ctx context.Context) *PostRoleUsersParams { var () return &PostRoleUsersParams{ Context: ctx, } } // NewPostRoleUsersParamsWithHTTPClient creates a new PostRoleUsersParams object // with the default values initialized, and the ability to set a custom HTTPClient for a request func NewPostRoleUsersParamsWithHTTPClient(client *http.Client) *PostRoleUsersParams { var () return &PostRoleUsersParams{ HTTPClient: client, } } /*PostRoleUsersParams contains all the parameters to send to the API endpoint for the post role users operation typically these are written to a http.Request */ type PostRoleUsersParams struct { /*Authorization*/ Authorization string /*RoleUsersRequest An array of User IDs to add to a Role */ RoleUsersRequest *auth0_models.RoleUsersRequest /*RoleID An Auth0 Role ID */ RoleID string timeout time.Duration Context context.Context HTTPClient *http.Client } // WithTimeout adds the timeout to the post role users params func (o *PostRoleUsersParams) WithTimeout(timeout time.Duration) *PostRoleUsersParams { o.SetTimeout(timeout) return o } // SetTimeout adds the timeout to the post role users params func (o *PostRoleUsersParams) SetTimeout(timeout time.Duration) { o.timeout = timeout } // WithContext adds the context to the post role users params func (o *PostRoleUsersParams) WithContext(ctx context.Context) *PostRoleUsersParams { o.SetContext(ctx) return o } // SetContext adds the context to the post role users params func (o *PostRoleUsersParams) SetContext(ctx context.Context) { o.Context = ctx } // WithHTTPClient adds the HTTPClient to the post role users params func (o *PostRoleUsersParams) WithHTTPClient(client *http.Client) *PostRoleUsersParams { o.SetHTTPClient(client) return o } // SetHTTPClient adds the HTTPClient to the post role users params func (o *PostRoleUsersParams) SetHTTPClient(client *http.Client) { o.HTTPClient = client } // WithAuthorization adds the authorization to the post role users params func (o *PostRoleUsersParams) WithAuthorization(authorization string) *PostRoleUsersParams { o.SetAuthorization(authorization) return o } // SetAuthorization adds the authorization to the post role users params func (o *PostRoleUsersParams) SetAuthorization(authorization string) { o.Authorization = authorization } // WithRoleUsersRequest adds the roleUsersRequest to the post role users params func (o *PostRoleUsersParams) WithRoleUsersRequest(roleUsersRequest *auth0_models.RoleUsersRequest) *PostRoleUsersParams { o.SetRoleUsersRequest(roleUsersRequest) return o } // SetRoleUsersRequest adds the roleUsersRequest to the post role users params func (o *PostRoleUsersParams) SetRoleUsersRequest(roleUsersRequest *auth0_models.RoleUsersRequest) { o.RoleUsersRequest = roleUsersRequest } // WithRoleID adds the roleID to the post role users params func (o *PostRoleUsersParams) WithRoleID(roleID string) *PostRoleUsersParams { o.SetRoleID(roleID) return o } // SetRoleID adds the roleId to the post role users params func (o *PostRoleUsersParams) SetRoleID(roleID string) { o.RoleID = roleID } // WriteToRequest writes these params to a swagger request func (o *PostRoleUsersParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error { if err := r.SetTimeout(o.timeout); err != nil { return err } var res []error // header param Authorization if err := r.SetHeaderParam("Authorization", o.Authorization); err != nil { return err } if o.RoleUsersRequest != nil { if err := r.SetBodyParam(o.RoleUsersRequest); err != nil { return err } } // path param roleId if err := r.SetPathParam("roleId", o.RoleID); err != nil { return err } if len(res) > 0 { return errors.CompositeValidationError(res...) } return nil }