174 lines
5.0 KiB
Go
174 lines
5.0 KiB
Go
// Code generated by go-swagger; DO NOT EDIT.
|
|
|
|
package activity
|
|
|
|
// 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"
|
|
|
|
"decentral1se/go-kimai/models"
|
|
)
|
|
|
|
// NewPatchAPIActivitiesIDParams creates a new PatchAPIActivitiesIDParams 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 NewPatchAPIActivitiesIDParams() *PatchAPIActivitiesIDParams {
|
|
return &PatchAPIActivitiesIDParams{
|
|
timeout: cr.DefaultTimeout,
|
|
}
|
|
}
|
|
|
|
// NewPatchAPIActivitiesIDParamsWithTimeout creates a new PatchAPIActivitiesIDParams object
|
|
// with the ability to set a timeout on a request.
|
|
func NewPatchAPIActivitiesIDParamsWithTimeout(timeout time.Duration) *PatchAPIActivitiesIDParams {
|
|
return &PatchAPIActivitiesIDParams{
|
|
timeout: timeout,
|
|
}
|
|
}
|
|
|
|
// NewPatchAPIActivitiesIDParamsWithContext creates a new PatchAPIActivitiesIDParams object
|
|
// with the ability to set a context for a request.
|
|
func NewPatchAPIActivitiesIDParamsWithContext(ctx context.Context) *PatchAPIActivitiesIDParams {
|
|
return &PatchAPIActivitiesIDParams{
|
|
Context: ctx,
|
|
}
|
|
}
|
|
|
|
// NewPatchAPIActivitiesIDParamsWithHTTPClient creates a new PatchAPIActivitiesIDParams object
|
|
// with the ability to set a custom HTTPClient for a request.
|
|
func NewPatchAPIActivitiesIDParamsWithHTTPClient(client *http.Client) *PatchAPIActivitiesIDParams {
|
|
return &PatchAPIActivitiesIDParams{
|
|
HTTPClient: client,
|
|
}
|
|
}
|
|
|
|
/*
|
|
PatchAPIActivitiesIDParams contains all the parameters to send to the API endpoint
|
|
|
|
for the patch API activities ID operation.
|
|
|
|
Typically these are written to a http.Request.
|
|
*/
|
|
type PatchAPIActivitiesIDParams struct {
|
|
|
|
// Body.
|
|
Body *models.ActivityEditForm
|
|
|
|
/* ID.
|
|
|
|
Activity ID to update
|
|
*/
|
|
ID int64
|
|
|
|
timeout time.Duration
|
|
Context context.Context
|
|
HTTPClient *http.Client
|
|
}
|
|
|
|
// WithDefaults hydrates default values in the patch API activities ID params (not the query body).
|
|
//
|
|
// All values with no default are reset to their zero value.
|
|
func (o *PatchAPIActivitiesIDParams) WithDefaults() *PatchAPIActivitiesIDParams {
|
|
o.SetDefaults()
|
|
return o
|
|
}
|
|
|
|
// SetDefaults hydrates default values in the patch API activities ID params (not the query body).
|
|
//
|
|
// All values with no default are reset to their zero value.
|
|
func (o *PatchAPIActivitiesIDParams) SetDefaults() {
|
|
// no default values defined for this parameter
|
|
}
|
|
|
|
// WithTimeout adds the timeout to the patch API activities ID params
|
|
func (o *PatchAPIActivitiesIDParams) WithTimeout(timeout time.Duration) *PatchAPIActivitiesIDParams {
|
|
o.SetTimeout(timeout)
|
|
return o
|
|
}
|
|
|
|
// SetTimeout adds the timeout to the patch API activities ID params
|
|
func (o *PatchAPIActivitiesIDParams) SetTimeout(timeout time.Duration) {
|
|
o.timeout = timeout
|
|
}
|
|
|
|
// WithContext adds the context to the patch API activities ID params
|
|
func (o *PatchAPIActivitiesIDParams) WithContext(ctx context.Context) *PatchAPIActivitiesIDParams {
|
|
o.SetContext(ctx)
|
|
return o
|
|
}
|
|
|
|
// SetContext adds the context to the patch API activities ID params
|
|
func (o *PatchAPIActivitiesIDParams) SetContext(ctx context.Context) {
|
|
o.Context = ctx
|
|
}
|
|
|
|
// WithHTTPClient adds the HTTPClient to the patch API activities ID params
|
|
func (o *PatchAPIActivitiesIDParams) WithHTTPClient(client *http.Client) *PatchAPIActivitiesIDParams {
|
|
o.SetHTTPClient(client)
|
|
return o
|
|
}
|
|
|
|
// SetHTTPClient adds the HTTPClient to the patch API activities ID params
|
|
func (o *PatchAPIActivitiesIDParams) SetHTTPClient(client *http.Client) {
|
|
o.HTTPClient = client
|
|
}
|
|
|
|
// WithBody adds the body to the patch API activities ID params
|
|
func (o *PatchAPIActivitiesIDParams) WithBody(body *models.ActivityEditForm) *PatchAPIActivitiesIDParams {
|
|
o.SetBody(body)
|
|
return o
|
|
}
|
|
|
|
// SetBody adds the body to the patch API activities ID params
|
|
func (o *PatchAPIActivitiesIDParams) SetBody(body *models.ActivityEditForm) {
|
|
o.Body = body
|
|
}
|
|
|
|
// WithID adds the id to the patch API activities ID params
|
|
func (o *PatchAPIActivitiesIDParams) WithID(id int64) *PatchAPIActivitiesIDParams {
|
|
o.SetID(id)
|
|
return o
|
|
}
|
|
|
|
// SetID adds the id to the patch API activities ID params
|
|
func (o *PatchAPIActivitiesIDParams) SetID(id int64) {
|
|
o.ID = id
|
|
}
|
|
|
|
// WriteToRequest writes these params to a swagger request
|
|
func (o *PatchAPIActivitiesIDParams) 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 id
|
|
if err := r.SetPathParam("id", swag.FormatInt64(o.ID)); err != nil {
|
|
return err
|
|
}
|
|
|
|
if len(res) > 0 {
|
|
return errors.CompositeValidationError(res...)
|
|
}
|
|
return nil
|
|
}
|