github.com/thetreep/go-swagger@v0.0.0-20240223100711-35af64f14f01/examples/task-tracker/client/tasks/delete_task_parameters.go (about)

     1  // Code generated by go-swagger; DO NOT EDIT.
     2  
     3  package tasks
     4  
     5  // This file was generated by the swagger tool.
     6  // Editing this file might prove futile when you re-run the swagger generate command
     7  
     8  import (
     9  	"context"
    10  	"net/http"
    11  	"time"
    12  
    13  	"github.com/go-openapi/errors"
    14  	"github.com/go-openapi/runtime"
    15  	cr "github.com/go-openapi/runtime/client"
    16  	"github.com/go-openapi/strfmt"
    17  	"github.com/go-openapi/swag"
    18  )
    19  
    20  // NewDeleteTaskParams creates a new DeleteTaskParams object,
    21  // with the default timeout for this client.
    22  //
    23  // Default values are not hydrated, since defaults are normally applied by the API server side.
    24  //
    25  // To enforce default values in parameter, use SetDefaults or WithDefaults.
    26  func NewDeleteTaskParams() *DeleteTaskParams {
    27  	return &DeleteTaskParams{
    28  		timeout: cr.DefaultTimeout,
    29  	}
    30  }
    31  
    32  // NewDeleteTaskParamsWithTimeout creates a new DeleteTaskParams object
    33  // with the ability to set a timeout on a request.
    34  func NewDeleteTaskParamsWithTimeout(timeout time.Duration) *DeleteTaskParams {
    35  	return &DeleteTaskParams{
    36  		timeout: timeout,
    37  	}
    38  }
    39  
    40  // NewDeleteTaskParamsWithContext creates a new DeleteTaskParams object
    41  // with the ability to set a context for a request.
    42  func NewDeleteTaskParamsWithContext(ctx context.Context) *DeleteTaskParams {
    43  	return &DeleteTaskParams{
    44  		Context: ctx,
    45  	}
    46  }
    47  
    48  // NewDeleteTaskParamsWithHTTPClient creates a new DeleteTaskParams object
    49  // with the ability to set a custom HTTPClient for a request.
    50  func NewDeleteTaskParamsWithHTTPClient(client *http.Client) *DeleteTaskParams {
    51  	return &DeleteTaskParams{
    52  		HTTPClient: client,
    53  	}
    54  }
    55  
    56  /*
    57  DeleteTaskParams contains all the parameters to send to the API endpoint
    58  
    59  	for the delete task operation.
    60  
    61  	Typically these are written to a http.Request.
    62  */
    63  type DeleteTaskParams struct {
    64  
    65  	/* ID.
    66  
    67  	   The id of the item
    68  
    69  	   Format: int64
    70  	*/
    71  	ID int64
    72  
    73  	timeout    time.Duration
    74  	Context    context.Context
    75  	HTTPClient *http.Client
    76  }
    77  
    78  // WithDefaults hydrates default values in the delete task params (not the query body).
    79  //
    80  // All values with no default are reset to their zero value.
    81  func (o *DeleteTaskParams) WithDefaults() *DeleteTaskParams {
    82  	o.SetDefaults()
    83  	return o
    84  }
    85  
    86  // SetDefaults hydrates default values in the delete task params (not the query body).
    87  //
    88  // All values with no default are reset to their zero value.
    89  func (o *DeleteTaskParams) SetDefaults() {
    90  	// no default values defined for this parameter
    91  }
    92  
    93  // WithTimeout adds the timeout to the delete task params
    94  func (o *DeleteTaskParams) WithTimeout(timeout time.Duration) *DeleteTaskParams {
    95  	o.SetTimeout(timeout)
    96  	return o
    97  }
    98  
    99  // SetTimeout adds the timeout to the delete task params
   100  func (o *DeleteTaskParams) SetTimeout(timeout time.Duration) {
   101  	o.timeout = timeout
   102  }
   103  
   104  // WithContext adds the context to the delete task params
   105  func (o *DeleteTaskParams) WithContext(ctx context.Context) *DeleteTaskParams {
   106  	o.SetContext(ctx)
   107  	return o
   108  }
   109  
   110  // SetContext adds the context to the delete task params
   111  func (o *DeleteTaskParams) SetContext(ctx context.Context) {
   112  	o.Context = ctx
   113  }
   114  
   115  // WithHTTPClient adds the HTTPClient to the delete task params
   116  func (o *DeleteTaskParams) WithHTTPClient(client *http.Client) *DeleteTaskParams {
   117  	o.SetHTTPClient(client)
   118  	return o
   119  }
   120  
   121  // SetHTTPClient adds the HTTPClient to the delete task params
   122  func (o *DeleteTaskParams) SetHTTPClient(client *http.Client) {
   123  	o.HTTPClient = client
   124  }
   125  
   126  // WithID adds the id to the delete task params
   127  func (o *DeleteTaskParams) WithID(id int64) *DeleteTaskParams {
   128  	o.SetID(id)
   129  	return o
   130  }
   131  
   132  // SetID adds the id to the delete task params
   133  func (o *DeleteTaskParams) SetID(id int64) {
   134  	o.ID = id
   135  }
   136  
   137  // WriteToRequest writes these params to a swagger request
   138  func (o *DeleteTaskParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error {
   139  
   140  	if err := r.SetTimeout(o.timeout); err != nil {
   141  		return err
   142  	}
   143  	var res []error
   144  
   145  	// path param id
   146  	if err := r.SetPathParam("id", swag.FormatInt64(o.ID)); err != nil {
   147  		return err
   148  	}
   149  
   150  	if len(res) > 0 {
   151  		return errors.CompositeValidationError(res...)
   152  	}
   153  	return nil
   154  }