autogits/bots-common/gitea-generated/client/admin/admin_delete_user_badges_parameters.go
Adam Majer 598ecbbd5a .
2024-07-07 21:12:40 +02:00

173 lines
5.1 KiB
Go

// Code generated by go-swagger; DO NOT EDIT.
package admin
// 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"
"src.opensuse.org/autogits/common/gitea-generated/models"
)
// NewAdminDeleteUserBadgesParams creates a new AdminDeleteUserBadgesParams 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 NewAdminDeleteUserBadgesParams() *AdminDeleteUserBadgesParams {
return &AdminDeleteUserBadgesParams{
timeout: cr.DefaultTimeout,
}
}
// NewAdminDeleteUserBadgesParamsWithTimeout creates a new AdminDeleteUserBadgesParams object
// with the ability to set a timeout on a request.
func NewAdminDeleteUserBadgesParamsWithTimeout(timeout time.Duration) *AdminDeleteUserBadgesParams {
return &AdminDeleteUserBadgesParams{
timeout: timeout,
}
}
// NewAdminDeleteUserBadgesParamsWithContext creates a new AdminDeleteUserBadgesParams object
// with the ability to set a context for a request.
func NewAdminDeleteUserBadgesParamsWithContext(ctx context.Context) *AdminDeleteUserBadgesParams {
return &AdminDeleteUserBadgesParams{
Context: ctx,
}
}
// NewAdminDeleteUserBadgesParamsWithHTTPClient creates a new AdminDeleteUserBadgesParams object
// with the ability to set a custom HTTPClient for a request.
func NewAdminDeleteUserBadgesParamsWithHTTPClient(client *http.Client) *AdminDeleteUserBadgesParams {
return &AdminDeleteUserBadgesParams{
HTTPClient: client,
}
}
/*
AdminDeleteUserBadgesParams contains all the parameters to send to the API endpoint
for the admin delete user badges operation.
Typically these are written to a http.Request.
*/
type AdminDeleteUserBadgesParams struct {
// Body.
Body *models.UserBadgeOption
/* Username.
username of user
*/
Username string
timeout time.Duration
Context context.Context
HTTPClient *http.Client
}
// WithDefaults hydrates default values in the admin delete user badges params (not the query body).
//
// All values with no default are reset to their zero value.
func (o *AdminDeleteUserBadgesParams) WithDefaults() *AdminDeleteUserBadgesParams {
o.SetDefaults()
return o
}
// SetDefaults hydrates default values in the admin delete user badges params (not the query body).
//
// All values with no default are reset to their zero value.
func (o *AdminDeleteUserBadgesParams) SetDefaults() {
// no default values defined for this parameter
}
// WithTimeout adds the timeout to the admin delete user badges params
func (o *AdminDeleteUserBadgesParams) WithTimeout(timeout time.Duration) *AdminDeleteUserBadgesParams {
o.SetTimeout(timeout)
return o
}
// SetTimeout adds the timeout to the admin delete user badges params
func (o *AdminDeleteUserBadgesParams) SetTimeout(timeout time.Duration) {
o.timeout = timeout
}
// WithContext adds the context to the admin delete user badges params
func (o *AdminDeleteUserBadgesParams) WithContext(ctx context.Context) *AdminDeleteUserBadgesParams {
o.SetContext(ctx)
return o
}
// SetContext adds the context to the admin delete user badges params
func (o *AdminDeleteUserBadgesParams) SetContext(ctx context.Context) {
o.Context = ctx
}
// WithHTTPClient adds the HTTPClient to the admin delete user badges params
func (o *AdminDeleteUserBadgesParams) WithHTTPClient(client *http.Client) *AdminDeleteUserBadgesParams {
o.SetHTTPClient(client)
return o
}
// SetHTTPClient adds the HTTPClient to the admin delete user badges params
func (o *AdminDeleteUserBadgesParams) SetHTTPClient(client *http.Client) {
o.HTTPClient = client
}
// WithBody adds the body to the admin delete user badges params
func (o *AdminDeleteUserBadgesParams) WithBody(body *models.UserBadgeOption) *AdminDeleteUserBadgesParams {
o.SetBody(body)
return o
}
// SetBody adds the body to the admin delete user badges params
func (o *AdminDeleteUserBadgesParams) SetBody(body *models.UserBadgeOption) {
o.Body = body
}
// WithUsername adds the username to the admin delete user badges params
func (o *AdminDeleteUserBadgesParams) WithUsername(username string) *AdminDeleteUserBadgesParams {
o.SetUsername(username)
return o
}
// SetUsername adds the username to the admin delete user badges params
func (o *AdminDeleteUserBadgesParams) SetUsername(username string) {
o.Username = username
}
// WriteToRequest writes these params to a swagger request
func (o *AdminDeleteUserBadgesParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error {
if err := r.SetTimeout(o.timeout); err != nil {
return err
}
var res []error
if o.Body != nil {
if err := r.SetBodyParam(o.Body); err != nil {
return err
}
}
// path param username
if err := r.SetPathParam("username", o.Username); err != nil {
return err
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}