github.com/aeternity/aepp-sdk-go@v1.0.3-0.20190606142815-1c0ffdc21fd9/generated/client/external/get_transaction_info_by_hash_parameters.go (about)

     1  // Code generated by go-swagger; DO NOT EDIT.
     2  
     3  package external
     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  
    17  	strfmt "github.com/go-openapi/strfmt"
    18  )
    19  
    20  // NewGetTransactionInfoByHashParams creates a new GetTransactionInfoByHashParams object
    21  // with the default values initialized.
    22  func NewGetTransactionInfoByHashParams() *GetTransactionInfoByHashParams {
    23  	var ()
    24  	return &GetTransactionInfoByHashParams{
    25  
    26  		timeout: cr.DefaultTimeout,
    27  	}
    28  }
    29  
    30  // NewGetTransactionInfoByHashParamsWithTimeout creates a new GetTransactionInfoByHashParams object
    31  // with the default values initialized, and the ability to set a timeout on a request
    32  func NewGetTransactionInfoByHashParamsWithTimeout(timeout time.Duration) *GetTransactionInfoByHashParams {
    33  	var ()
    34  	return &GetTransactionInfoByHashParams{
    35  
    36  		timeout: timeout,
    37  	}
    38  }
    39  
    40  // NewGetTransactionInfoByHashParamsWithContext creates a new GetTransactionInfoByHashParams object
    41  // with the default values initialized, and the ability to set a context for a request
    42  func NewGetTransactionInfoByHashParamsWithContext(ctx context.Context) *GetTransactionInfoByHashParams {
    43  	var ()
    44  	return &GetTransactionInfoByHashParams{
    45  
    46  		Context: ctx,
    47  	}
    48  }
    49  
    50  // NewGetTransactionInfoByHashParamsWithHTTPClient creates a new GetTransactionInfoByHashParams object
    51  // with the default values initialized, and the ability to set a custom HTTPClient for a request
    52  func NewGetTransactionInfoByHashParamsWithHTTPClient(client *http.Client) *GetTransactionInfoByHashParams {
    53  	var ()
    54  	return &GetTransactionInfoByHashParams{
    55  		HTTPClient: client,
    56  	}
    57  }
    58  
    59  /*GetTransactionInfoByHashParams contains all the parameters to send to the API endpoint
    60  for the get transaction info by hash operation typically these are written to a http.Request
    61  */
    62  type GetTransactionInfoByHashParams struct {
    63  
    64  	/*Hash
    65  	  The hash of the transaction
    66  
    67  	*/
    68  	Hash string
    69  
    70  	timeout    time.Duration
    71  	Context    context.Context
    72  	HTTPClient *http.Client
    73  }
    74  
    75  // WithTimeout adds the timeout to the get transaction info by hash params
    76  func (o *GetTransactionInfoByHashParams) WithTimeout(timeout time.Duration) *GetTransactionInfoByHashParams {
    77  	o.SetTimeout(timeout)
    78  	return o
    79  }
    80  
    81  // SetTimeout adds the timeout to the get transaction info by hash params
    82  func (o *GetTransactionInfoByHashParams) SetTimeout(timeout time.Duration) {
    83  	o.timeout = timeout
    84  }
    85  
    86  // WithContext adds the context to the get transaction info by hash params
    87  func (o *GetTransactionInfoByHashParams) WithContext(ctx context.Context) *GetTransactionInfoByHashParams {
    88  	o.SetContext(ctx)
    89  	return o
    90  }
    91  
    92  // SetContext adds the context to the get transaction info by hash params
    93  func (o *GetTransactionInfoByHashParams) SetContext(ctx context.Context) {
    94  	o.Context = ctx
    95  }
    96  
    97  // WithHTTPClient adds the HTTPClient to the get transaction info by hash params
    98  func (o *GetTransactionInfoByHashParams) WithHTTPClient(client *http.Client) *GetTransactionInfoByHashParams {
    99  	o.SetHTTPClient(client)
   100  	return o
   101  }
   102  
   103  // SetHTTPClient adds the HTTPClient to the get transaction info by hash params
   104  func (o *GetTransactionInfoByHashParams) SetHTTPClient(client *http.Client) {
   105  	o.HTTPClient = client
   106  }
   107  
   108  // WithHash adds the hash to the get transaction info by hash params
   109  func (o *GetTransactionInfoByHashParams) WithHash(hash string) *GetTransactionInfoByHashParams {
   110  	o.SetHash(hash)
   111  	return o
   112  }
   113  
   114  // SetHash adds the hash to the get transaction info by hash params
   115  func (o *GetTransactionInfoByHashParams) SetHash(hash string) {
   116  	o.Hash = hash
   117  }
   118  
   119  // WriteToRequest writes these params to a swagger request
   120  func (o *GetTransactionInfoByHashParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error {
   121  
   122  	if err := r.SetTimeout(o.timeout); err != nil {
   123  		return err
   124  	}
   125  	var res []error
   126  
   127  	// path param hash
   128  	if err := r.SetPathParam("hash", o.Hash); err != nil {
   129  		return err
   130  	}
   131  
   132  	if len(res) > 0 {
   133  		return errors.CompositeValidationError(res...)
   134  	}
   135  	return nil
   136  }