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

221 lines
5.4 KiB
Go

// 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"
)
// NewUserGetTokensParams creates a new UserGetTokensParams 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 NewUserGetTokensParams() *UserGetTokensParams {
return &UserGetTokensParams{
timeout: cr.DefaultTimeout,
}
}
// NewUserGetTokensParamsWithTimeout creates a new UserGetTokensParams object
// with the ability to set a timeout on a request.
func NewUserGetTokensParamsWithTimeout(timeout time.Duration) *UserGetTokensParams {
return &UserGetTokensParams{
timeout: timeout,
}
}
// NewUserGetTokensParamsWithContext creates a new UserGetTokensParams object
// with the ability to set a context for a request.
func NewUserGetTokensParamsWithContext(ctx context.Context) *UserGetTokensParams {
return &UserGetTokensParams{
Context: ctx,
}
}
// NewUserGetTokensParamsWithHTTPClient creates a new UserGetTokensParams object
// with the ability to set a custom HTTPClient for a request.
func NewUserGetTokensParamsWithHTTPClient(client *http.Client) *UserGetTokensParams {
return &UserGetTokensParams{
HTTPClient: client,
}
}
/*
UserGetTokensParams contains all the parameters to send to the API endpoint
for the user get tokens operation.
Typically these are written to a http.Request.
*/
type UserGetTokensParams struct {
/* Limit.
page size of results
*/
Limit *int64
/* Page.
page number of results to return (1-based)
*/
Page *int64
/* Username.
username of user
*/
Username string
timeout time.Duration
Context context.Context
HTTPClient *http.Client
}
// WithDefaults hydrates default values in the user get tokens params (not the query body).
//
// All values with no default are reset to their zero value.
func (o *UserGetTokensParams) WithDefaults() *UserGetTokensParams {
o.SetDefaults()
return o
}
// SetDefaults hydrates default values in the user get tokens params (not the query body).
//
// All values with no default are reset to their zero value.
func (o *UserGetTokensParams) SetDefaults() {
// no default values defined for this parameter
}
// WithTimeout adds the timeout to the user get tokens params
func (o *UserGetTokensParams) WithTimeout(timeout time.Duration) *UserGetTokensParams {
o.SetTimeout(timeout)
return o
}
// SetTimeout adds the timeout to the user get tokens params
func (o *UserGetTokensParams) SetTimeout(timeout time.Duration) {
o.timeout = timeout
}
// WithContext adds the context to the user get tokens params
func (o *UserGetTokensParams) WithContext(ctx context.Context) *UserGetTokensParams {
o.SetContext(ctx)
return o
}
// SetContext adds the context to the user get tokens params
func (o *UserGetTokensParams) SetContext(ctx context.Context) {
o.Context = ctx
}
// WithHTTPClient adds the HTTPClient to the user get tokens params
func (o *UserGetTokensParams) WithHTTPClient(client *http.Client) *UserGetTokensParams {
o.SetHTTPClient(client)
return o
}
// SetHTTPClient adds the HTTPClient to the user get tokens params
func (o *UserGetTokensParams) SetHTTPClient(client *http.Client) {
o.HTTPClient = client
}
// WithLimit adds the limit to the user get tokens params
func (o *UserGetTokensParams) WithLimit(limit *int64) *UserGetTokensParams {
o.SetLimit(limit)
return o
}
// SetLimit adds the limit to the user get tokens params
func (o *UserGetTokensParams) SetLimit(limit *int64) {
o.Limit = limit
}
// WithPage adds the page to the user get tokens params
func (o *UserGetTokensParams) WithPage(page *int64) *UserGetTokensParams {
o.SetPage(page)
return o
}
// SetPage adds the page to the user get tokens params
func (o *UserGetTokensParams) SetPage(page *int64) {
o.Page = page
}
// WithUsername adds the username to the user get tokens params
func (o *UserGetTokensParams) WithUsername(username string) *UserGetTokensParams {
o.SetUsername(username)
return o
}
// SetUsername adds the username to the user get tokens params
func (o *UserGetTokensParams) SetUsername(username string) {
o.Username = username
}
// WriteToRequest writes these params to a swagger request
func (o *UserGetTokensParams) 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
}
}
}
// path param username
if err := r.SetPathParam("username", o.Username); err != nil {
return err
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}