Documentation ¶
Index ¶
- type DeleteOrder
- type DeleteOrderBadRequest
- type DeleteOrderHandler
- type DeleteOrderHandlerFunc
- type DeleteOrderNotFound
- type DeleteOrderParams
- type GetOrderByID
- type GetOrderByIDBadRequest
- type GetOrderByIDHandler
- type GetOrderByIDHandlerFunc
- type GetOrderByIDNotFound
- type GetOrderByIDOK
- type GetOrderByIDParams
- type PlaceOrder
- type PlaceOrderBadRequest
- type PlaceOrderHandler
- type PlaceOrderHandlerFunc
- type PlaceOrderOK
- type PlaceOrderParams
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type DeleteOrder ¶
type DeleteOrder struct { Context *middleware.Context Handler DeleteOrderHandler }
DeleteOrder swagger:route DELETE /stores/order/{orderId} store deleteOrder
Delete purchase order by ID ¶
For valid response try integer IDs with value < 1000. Anything above 1000 or nonintegers will generate API errors
func NewDeleteOrder ¶
func NewDeleteOrder(ctx *middleware.Context, handler DeleteOrderHandler) *DeleteOrder
NewDeleteOrder creates a new http.Handler for the delete order operation
func (*DeleteOrder) ServeHTTP ¶
func (o *DeleteOrder) ServeHTTP(rw http.ResponseWriter, r *http.Request)
type DeleteOrderBadRequest ¶
type DeleteOrderBadRequest struct { }
DeleteOrderBadRequest Invalid ID supplied
swagger:response deleteOrderBadRequest
func NewDeleteOrderBadRequest ¶
func NewDeleteOrderBadRequest() *DeleteOrderBadRequest
NewDeleteOrderBadRequest creates DeleteOrderBadRequest with default headers values
func (*DeleteOrderBadRequest) WriteResponse ¶
func (o *DeleteOrderBadRequest) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)
WriteResponse to the client
type DeleteOrderHandler ¶
type DeleteOrderHandler interface {
Handle(DeleteOrderParams) middleware.Responder
}
DeleteOrderHandler interface for that can handle valid delete order params
type DeleteOrderHandlerFunc ¶
type DeleteOrderHandlerFunc func(DeleteOrderParams) middleware.Responder
DeleteOrderHandlerFunc turns a function with the right signature into a delete order handler
func (DeleteOrderHandlerFunc) Handle ¶
func (fn DeleteOrderHandlerFunc) Handle(params DeleteOrderParams) middleware.Responder
Handle executing the request and returning a response
type DeleteOrderNotFound ¶
type DeleteOrderNotFound struct { }
DeleteOrderNotFound Order not found
swagger:response deleteOrderNotFound
func NewDeleteOrderNotFound ¶
func NewDeleteOrderNotFound() *DeleteOrderNotFound
NewDeleteOrderNotFound creates DeleteOrderNotFound with default headers values
func (*DeleteOrderNotFound) WriteResponse ¶
func (o *DeleteOrderNotFound) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)
WriteResponse to the client
type DeleteOrderParams ¶
type DeleteOrderParams struct { // HTTP Request Object HTTPRequest *http.Request /*ID of the order that needs to be deleted Required: true In: path */ OrderID string }
DeleteOrderParams contains all the bound params for the delete order operation typically these are obtained from a http.Request
swagger:parameters deleteOrder
func NewDeleteOrderParams ¶
func NewDeleteOrderParams() DeleteOrderParams
NewDeleteOrderParams creates a new DeleteOrderParams object with the default values initialized.
func (*DeleteOrderParams) BindRequest ¶
func (o *DeleteOrderParams) BindRequest(r *http.Request, route *middleware.MatchedRoute) error
BindRequest both binds and validates a request, it assumes that complex things implement a Validatable(strfmt.Registry) error interface for simple values it will use straight method calls
type GetOrderByID ¶
type GetOrderByID struct { Context *middleware.Context Handler GetOrderByIDHandler }
GetOrderByID swagger:route GET /stores/order/{orderId} store getOrderById
Find purchase order by ID ¶
For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
func NewGetOrderByID ¶
func NewGetOrderByID(ctx *middleware.Context, handler GetOrderByIDHandler) *GetOrderByID
NewGetOrderByID creates a new http.Handler for the get order by Id operation
func (*GetOrderByID) ServeHTTP ¶
func (o *GetOrderByID) ServeHTTP(rw http.ResponseWriter, r *http.Request)
type GetOrderByIDBadRequest ¶
type GetOrderByIDBadRequest struct { }
GetOrderByIDBadRequest Invalid ID supplied
swagger:response getOrderByIdBadRequest
func NewGetOrderByIDBadRequest ¶
func NewGetOrderByIDBadRequest() *GetOrderByIDBadRequest
NewGetOrderByIDBadRequest creates GetOrderByIDBadRequest with default headers values
func (*GetOrderByIDBadRequest) WriteResponse ¶
func (o *GetOrderByIDBadRequest) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)
WriteResponse to the client
type GetOrderByIDHandler ¶
type GetOrderByIDHandler interface {
Handle(GetOrderByIDParams) middleware.Responder
}
GetOrderByIDHandler interface for that can handle valid get order by Id params
type GetOrderByIDHandlerFunc ¶
type GetOrderByIDHandlerFunc func(GetOrderByIDParams) middleware.Responder
GetOrderByIDHandlerFunc turns a function with the right signature into a get order by Id handler
func (GetOrderByIDHandlerFunc) Handle ¶
func (fn GetOrderByIDHandlerFunc) Handle(params GetOrderByIDParams) middleware.Responder
Handle executing the request and returning a response
type GetOrderByIDNotFound ¶
type GetOrderByIDNotFound struct { }
GetOrderByIDNotFound Order not found
swagger:response getOrderByIdNotFound
func NewGetOrderByIDNotFound ¶
func NewGetOrderByIDNotFound() *GetOrderByIDNotFound
NewGetOrderByIDNotFound creates GetOrderByIDNotFound with default headers values
func (*GetOrderByIDNotFound) WriteResponse ¶
func (o *GetOrderByIDNotFound) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)
WriteResponse to the client
type GetOrderByIDOK ¶
GetOrderByIDOK successful operation
swagger:response getOrderByIdOK
func NewGetOrderByIDOK ¶
func NewGetOrderByIDOK() *GetOrderByIDOK
NewGetOrderByIDOK creates GetOrderByIDOK with default headers values
func (*GetOrderByIDOK) SetPayload ¶
func (o *GetOrderByIDOK) SetPayload(payload *models.Order)
SetPayload sets the payload to the get order by Id o k response
func (*GetOrderByIDOK) WithPayload ¶
func (o *GetOrderByIDOK) WithPayload(payload *models.Order) *GetOrderByIDOK
WithPayload adds the payload to the get order by Id o k response
func (*GetOrderByIDOK) WriteResponse ¶
func (o *GetOrderByIDOK) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)
WriteResponse to the client
type GetOrderByIDParams ¶
type GetOrderByIDParams struct { // HTTP Request Object HTTPRequest *http.Request /*ID of pet that needs to be fetched Required: true In: path */ OrderID string }
GetOrderByIDParams contains all the bound params for the get order by Id operation typically these are obtained from a http.Request
swagger:parameters getOrderById
func NewGetOrderByIDParams ¶
func NewGetOrderByIDParams() GetOrderByIDParams
NewGetOrderByIDParams creates a new GetOrderByIDParams object with the default values initialized.
func (*GetOrderByIDParams) BindRequest ¶
func (o *GetOrderByIDParams) BindRequest(r *http.Request, route *middleware.MatchedRoute) error
BindRequest both binds and validates a request, it assumes that complex things implement a Validatable(strfmt.Registry) error interface for simple values it will use straight method calls
type PlaceOrder ¶
type PlaceOrder struct { Context *middleware.Context Handler PlaceOrderHandler }
PlaceOrder swagger:route POST /stores/order store placeOrder
Place an order for a pet
func NewPlaceOrder ¶
func NewPlaceOrder(ctx *middleware.Context, handler PlaceOrderHandler) *PlaceOrder
NewPlaceOrder creates a new http.Handler for the place order operation
func (*PlaceOrder) ServeHTTP ¶
func (o *PlaceOrder) ServeHTTP(rw http.ResponseWriter, r *http.Request)
type PlaceOrderBadRequest ¶
type PlaceOrderBadRequest struct { }
PlaceOrderBadRequest Invalid Order
swagger:response placeOrderBadRequest
func NewPlaceOrderBadRequest ¶
func NewPlaceOrderBadRequest() *PlaceOrderBadRequest
NewPlaceOrderBadRequest creates PlaceOrderBadRequest with default headers values
func (*PlaceOrderBadRequest) WriteResponse ¶
func (o *PlaceOrderBadRequest) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)
WriteResponse to the client
type PlaceOrderHandler ¶
type PlaceOrderHandler interface {
Handle(PlaceOrderParams) middleware.Responder
}
PlaceOrderHandler interface for that can handle valid place order params
type PlaceOrderHandlerFunc ¶
type PlaceOrderHandlerFunc func(PlaceOrderParams) middleware.Responder
PlaceOrderHandlerFunc turns a function with the right signature into a place order handler
func (PlaceOrderHandlerFunc) Handle ¶
func (fn PlaceOrderHandlerFunc) Handle(params PlaceOrderParams) middleware.Responder
Handle executing the request and returning a response
type PlaceOrderOK ¶
PlaceOrderOK successful operation
swagger:response placeOrderOK
func NewPlaceOrderOK ¶
func NewPlaceOrderOK() *PlaceOrderOK
NewPlaceOrderOK creates PlaceOrderOK with default headers values
func (*PlaceOrderOK) SetPayload ¶
func (o *PlaceOrderOK) SetPayload(payload *models.Order)
SetPayload sets the payload to the place order o k response
func (*PlaceOrderOK) WithPayload ¶
func (o *PlaceOrderOK) WithPayload(payload *models.Order) *PlaceOrderOK
WithPayload adds the payload to the place order o k response
func (*PlaceOrderOK) WriteResponse ¶
func (o *PlaceOrderOK) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)
WriteResponse to the client
type PlaceOrderParams ¶
type PlaceOrderParams struct { // HTTP Request Object HTTPRequest *http.Request /*order placed for purchasing the pet In: body */ Body *models.Order }
PlaceOrderParams contains all the bound params for the place order operation typically these are obtained from a http.Request
swagger:parameters placeOrder
func NewPlaceOrderParams ¶
func NewPlaceOrderParams() PlaceOrderParams
NewPlaceOrderParams creates a new PlaceOrderParams object with the default values initialized.
func (*PlaceOrderParams) BindRequest ¶
func (o *PlaceOrderParams) BindRequest(r *http.Request, route *middleware.MatchedRoute) error
BindRequest both binds and validates a request, it assumes that complex things implement a Validatable(strfmt.Registry) error interface for simple values it will use straight method calls