todos

package
v0.0.0-...-b072d08 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 3, 2016 License: Apache-2.0 Imports: 8 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type APIError

type APIError struct {
	OperationName string
	Response      interface{}
	Code          int
}

APIError wraps an error model and captures the status code

func NewAPIError

func NewAPIError(opName string, response interface{}, code int) APIError

NewAPIError creates a new API error

func (APIError) Error

func (a APIError) Error() string

type AddOneCreated

type AddOneCreated struct {
	Payload *models.Item
}

AddOneCreated handles this case with default header values.

Created

func NewAddOneCreated

func NewAddOneCreated() *AddOneCreated

NewAddOneCreated creates a AddOneCreated with default headers values

func (*AddOneCreated) Error

func (o *AddOneCreated) Error() string

type AddOneDefault

type AddOneDefault struct {
	Payload *models.Error
	// contains filtered or unexported fields
}

AddOneDefault handles this case with default header values.

error

func NewAddOneDefault

func NewAddOneDefault(code int) *AddOneDefault

NewAddOneDefault creates a AddOneDefault with default headers values

func (*AddOneDefault) Code

func (o *AddOneDefault) Code() int

Code gets the status code for the add one default response

func (*AddOneDefault) Error

func (o *AddOneDefault) Error() string

type AddOneParams

type AddOneParams struct {

	/*Body*/
	Body *models.Item
}

AddOneParams contains all the parameters to send to the API endpoint for the add one operation typically these are written to a http.Request

func NewAddOneParams

func NewAddOneParams() *AddOneParams

NewAddOneParams creates a new AddOneParams object with the default values initialized.

func (*AddOneParams) WithBody

func (o *AddOneParams) WithBody(body *models.Item) *AddOneParams

WithBody adds the body to the add one params

func (*AddOneParams) WriteToRequest

func (o *AddOneParams) WriteToRequest(r client.Request, reg strfmt.Registry) error

WriteToRequest writes these params to a swagger request

type AddOneReader

type AddOneReader struct {
	// contains filtered or unexported fields
}

AddOneReader is a Reader for the AddOne structure.

func (*AddOneReader) ReadResponse

func (o *AddOneReader) ReadResponse(response client.Response, consumer httpkit.Consumer) (interface{}, error)

ReadResponse reads a server response into the recieved o.

type Client

type Client struct {
	// contains filtered or unexported fields
}

Client for todos API

func New

func New(transport client.Transport, formats strfmt.Registry) *Client

New creates a new todos API client.

func (*Client) AddOne

func (a *Client) AddOne(params *AddOneParams, authInfo client.AuthInfoWriter) (*AddOneCreated, error)

AddOne add one API

func (*Client) DestroyOne

func (a *Client) DestroyOne(params *DestroyOneParams, authInfo client.AuthInfoWriter) (*DestroyOneNoContent, error)

DestroyOne destroy one API

func (*Client) Find

func (a *Client) Find(params *FindParams, authInfo client.AuthInfoWriter) (*FindOK, error)

Find find API

func (*Client) SetTransport

func (a *Client) SetTransport(transport client.Transport)

SetTransport changes the transport on the client

func (*Client) UpdateOne

func (a *Client) UpdateOne(params *UpdateOneParams, authInfo client.AuthInfoWriter) (*UpdateOneOK, error)

UpdateOne update one API

type DestroyOneDefault

type DestroyOneDefault struct {
	Payload *models.Error
	// contains filtered or unexported fields
}

DestroyOneDefault handles this case with default header values.

error

func NewDestroyOneDefault

func NewDestroyOneDefault(code int) *DestroyOneDefault

NewDestroyOneDefault creates a DestroyOneDefault with default headers values

func (*DestroyOneDefault) Code

func (o *DestroyOneDefault) Code() int

Code gets the status code for the destroy one default response

func (*DestroyOneDefault) Error

func (o *DestroyOneDefault) Error() string

type DestroyOneNoContent

type DestroyOneNoContent struct {
}

DestroyOneNoContent handles this case with default header values.

Deleted

func NewDestroyOneNoContent

func NewDestroyOneNoContent() *DestroyOneNoContent

NewDestroyOneNoContent creates a DestroyOneNoContent with default headers values

func (*DestroyOneNoContent) Error

func (o *DestroyOneNoContent) Error() string

type DestroyOneParams

type DestroyOneParams struct {

	/*ID*/
	ID string
}

DestroyOneParams contains all the parameters to send to the API endpoint for the destroy one operation typically these are written to a http.Request

func NewDestroyOneParams

func NewDestroyOneParams() *DestroyOneParams

NewDestroyOneParams creates a new DestroyOneParams object with the default values initialized.

func (*DestroyOneParams) WithID

func (o *DestroyOneParams) WithID(id string) *DestroyOneParams

WithID adds the id to the destroy one params

func (*DestroyOneParams) WriteToRequest

func (o *DestroyOneParams) WriteToRequest(r client.Request, reg strfmt.Registry) error

WriteToRequest writes these params to a swagger request

type DestroyOneReader

type DestroyOneReader struct {
	// contains filtered or unexported fields
}

DestroyOneReader is a Reader for the DestroyOne structure.

func (*DestroyOneReader) ReadResponse

func (o *DestroyOneReader) ReadResponse(response client.Response, consumer httpkit.Consumer) (interface{}, error)

ReadResponse reads a server response into the recieved o.

type FindDefault

type FindDefault struct {
	Payload *models.Error
	// contains filtered or unexported fields
}

FindDefault handles this case with default header values.

error

func NewFindDefault

func NewFindDefault(code int) *FindDefault

NewFindDefault creates a FindDefault with default headers values

func (*FindDefault) Code

func (o *FindDefault) Code() int

Code gets the status code for the find default response

func (*FindDefault) Error

func (o *FindDefault) Error() string

type FindOK

type FindOK struct {
	Payload []*models.Item
}

FindOK handles this case with default header values.

OK

func NewFindOK

func NewFindOK() *FindOK

NewFindOK creates a FindOK with default headers values

func (*FindOK) Error

func (o *FindOK) Error() string

type FindParams

type FindParams struct {

	/*XRateLimit*/
	XRateLimit int32
	/*Limit*/
	Limit int32
	/*Tags*/
	Tags []int32
}

FindParams contains all the parameters to send to the API endpoint for the find operation typically these are written to a http.Request

func NewFindParams

func NewFindParams() *FindParams

NewFindParams creates a new FindParams object with the default values initialized.

func (*FindParams) WithLimit

func (o *FindParams) WithLimit(limit int32) *FindParams

WithLimit adds the limit to the find params

func (*FindParams) WithTags

func (o *FindParams) WithTags(tags []int32) *FindParams

WithTags adds the tags to the find params

func (*FindParams) WithXRateLimit

func (o *FindParams) WithXRateLimit(xRateLimit int32) *FindParams

WithXRateLimit adds the xRateLimit to the find params

func (*FindParams) WriteToRequest

func (o *FindParams) WriteToRequest(r client.Request, reg strfmt.Registry) error

WriteToRequest writes these params to a swagger request

type FindReader

type FindReader struct {
	// contains filtered or unexported fields
}

FindReader is a Reader for the Find structure.

func (*FindReader) ReadResponse

func (o *FindReader) ReadResponse(response client.Response, consumer httpkit.Consumer) (interface{}, error)

ReadResponse reads a server response into the recieved o.

type UpdateOneDefault

type UpdateOneDefault struct {
	Payload *models.Error
	// contains filtered or unexported fields
}

UpdateOneDefault handles this case with default header values.

error

func NewUpdateOneDefault

func NewUpdateOneDefault(code int) *UpdateOneDefault

NewUpdateOneDefault creates a UpdateOneDefault with default headers values

func (*UpdateOneDefault) Code

func (o *UpdateOneDefault) Code() int

Code gets the status code for the update one default response

func (*UpdateOneDefault) Error

func (o *UpdateOneDefault) Error() string

type UpdateOneOK

type UpdateOneOK struct {
	Payload *models.Item
}

UpdateOneOK handles this case with default header values.

OK

func NewUpdateOneOK

func NewUpdateOneOK() *UpdateOneOK

NewUpdateOneOK creates a UpdateOneOK with default headers values

func (*UpdateOneOK) Error

func (o *UpdateOneOK) Error() string

type UpdateOneParams

type UpdateOneParams struct {

	/*Body*/
	Body *models.Item
	/*ID*/
	ID string
}

UpdateOneParams contains all the parameters to send to the API endpoint for the update one operation typically these are written to a http.Request

func NewUpdateOneParams

func NewUpdateOneParams() *UpdateOneParams

NewUpdateOneParams creates a new UpdateOneParams object with the default values initialized.

func (*UpdateOneParams) WithBody

func (o *UpdateOneParams) WithBody(body *models.Item) *UpdateOneParams

WithBody adds the body to the update one params

func (*UpdateOneParams) WithID

func (o *UpdateOneParams) WithID(id string) *UpdateOneParams

WithID adds the id to the update one params

func (*UpdateOneParams) WriteToRequest

func (o *UpdateOneParams) WriteToRequest(r client.Request, reg strfmt.Registry) error

WriteToRequest writes these params to a swagger request

type UpdateOneReader

type UpdateOneReader struct {
	// contains filtered or unexported fields
}

UpdateOneReader is a Reader for the UpdateOne structure.

func (*UpdateOneReader) ReadResponse

func (o *UpdateOneReader) ReadResponse(response client.Response, consumer httpkit.Consumer) (interface{}, error)

ReadResponse reads a server response into the recieved o.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL