autogits/bots-common/gitea-generated/client/miscellaneous/render_markdown_raw_parameters.go

150 lines
4.3 KiB
Go
Raw Normal View History

2024-07-07 21:08:41 +02:00
// Code generated by go-swagger; DO NOT EDIT.
package miscellaneous
// 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"
)
// NewRenderMarkdownRawParams creates a new RenderMarkdownRawParams 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 NewRenderMarkdownRawParams() *RenderMarkdownRawParams {
return &RenderMarkdownRawParams{
timeout: cr.DefaultTimeout,
}
}
// NewRenderMarkdownRawParamsWithTimeout creates a new RenderMarkdownRawParams object
// with the ability to set a timeout on a request.
func NewRenderMarkdownRawParamsWithTimeout(timeout time.Duration) *RenderMarkdownRawParams {
return &RenderMarkdownRawParams{
timeout: timeout,
}
}
// NewRenderMarkdownRawParamsWithContext creates a new RenderMarkdownRawParams object
// with the ability to set a context for a request.
func NewRenderMarkdownRawParamsWithContext(ctx context.Context) *RenderMarkdownRawParams {
return &RenderMarkdownRawParams{
Context: ctx,
}
}
// NewRenderMarkdownRawParamsWithHTTPClient creates a new RenderMarkdownRawParams object
// with the ability to set a custom HTTPClient for a request.
func NewRenderMarkdownRawParamsWithHTTPClient(client *http.Client) *RenderMarkdownRawParams {
return &RenderMarkdownRawParams{
HTTPClient: client,
}
}
/*
RenderMarkdownRawParams contains all the parameters to send to the API endpoint
for the render markdown raw operation.
Typically these are written to a http.Request.
*/
type RenderMarkdownRawParams struct {
/* Body.
Request body to render
*/
Body string
timeout time.Duration
Context context.Context
HTTPClient *http.Client
}
// WithDefaults hydrates default values in the render markdown raw params (not the query body).
//
// All values with no default are reset to their zero value.
func (o *RenderMarkdownRawParams) WithDefaults() *RenderMarkdownRawParams {
o.SetDefaults()
return o
}
// SetDefaults hydrates default values in the render markdown raw params (not the query body).
//
// All values with no default are reset to their zero value.
func (o *RenderMarkdownRawParams) SetDefaults() {
// no default values defined for this parameter
}
// WithTimeout adds the timeout to the render markdown raw params
func (o *RenderMarkdownRawParams) WithTimeout(timeout time.Duration) *RenderMarkdownRawParams {
o.SetTimeout(timeout)
return o
}
// SetTimeout adds the timeout to the render markdown raw params
func (o *RenderMarkdownRawParams) SetTimeout(timeout time.Duration) {
o.timeout = timeout
}
// WithContext adds the context to the render markdown raw params
func (o *RenderMarkdownRawParams) WithContext(ctx context.Context) *RenderMarkdownRawParams {
o.SetContext(ctx)
return o
}
// SetContext adds the context to the render markdown raw params
func (o *RenderMarkdownRawParams) SetContext(ctx context.Context) {
o.Context = ctx
}
// WithHTTPClient adds the HTTPClient to the render markdown raw params
func (o *RenderMarkdownRawParams) WithHTTPClient(client *http.Client) *RenderMarkdownRawParams {
o.SetHTTPClient(client)
return o
}
// SetHTTPClient adds the HTTPClient to the render markdown raw params
func (o *RenderMarkdownRawParams) SetHTTPClient(client *http.Client) {
o.HTTPClient = client
}
// WithBody adds the body to the render markdown raw params
func (o *RenderMarkdownRawParams) WithBody(body string) *RenderMarkdownRawParams {
o.SetBody(body)
return o
}
// SetBody adds the body to the render markdown raw params
func (o *RenderMarkdownRawParams) SetBody(body string) {
o.Body = body
}
// WriteToRequest writes these params to a swagger request
func (o *RenderMarkdownRawParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error {
if err := r.SetTimeout(o.timeout); err != nil {
return err
}
var res []error
if err := r.SetBodyParam(o.Body); err != nil {
return err
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}