import "github.com/go-swagger/go-swagger/examples/generated/restapi/operations/store"
delete_order.go delete_order_parameters.go delete_order_responses.go delete_order_urlbuilder.go get_order_by_id.go get_order_by_id_parameters.go get_order_by_id_responses.go get_order_by_id_urlbuilder.go place_order.go place_order_parameters.go place_order_responses.go place_order_urlbuilder.go
DeleteOrderBadRequestCode is the HTTP code returned for type DeleteOrderBadRequest
DeleteOrderNotFoundCode is the HTTP code returned for type DeleteOrderNotFound
GetOrderByIDBadRequestCode is the HTTP code returned for type GetOrderByIDBadRequest
GetOrderByIDNotFoundCode is the HTTP code returned for type GetOrderByIDNotFound
GetOrderByIDOKCode is the HTTP code returned for type GetOrderByIDOK
PlaceOrderBadRequestCode is the HTTP code returned for type PlaceOrderBadRequest
PlaceOrderOKCode is the HTTP code returned for type PlaceOrderOK
type DeleteOrder struct { Context *middleware.Context Handler DeleteOrderHandler }
DeleteOrder swagger:route DELETE /stores/order/{orderId} store deleteOrder
For valid response try integer IDs with value < 1000. Anything above 1000 or nonintegers will generate API errors
func NewDeleteOrder(ctx *middleware.Context, handler DeleteOrderHandler) *DeleteOrder
NewDeleteOrder creates a new http.Handler for the delete order operation
func (o *DeleteOrder) ServeHTTP(rw http.ResponseWriter, r *http.Request)
type DeleteOrderBadRequest struct { }
DeleteOrderBadRequest Invalid ID supplied
swagger:response deleteOrderBadRequest
func NewDeleteOrderBadRequest() *DeleteOrderBadRequest
NewDeleteOrderBadRequest creates DeleteOrderBadRequest with default headers values
func (o *DeleteOrderBadRequest) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)
WriteResponse to the client
type DeleteOrderHandler interface { Handle(DeleteOrderParams) middleware.Responder }
DeleteOrderHandler interface for that can handle valid delete order params
type DeleteOrderHandlerFunc func(DeleteOrderParams) middleware.Responder
DeleteOrderHandlerFunc turns a function with the right signature into a delete order handler
func (fn DeleteOrderHandlerFunc) Handle(params DeleteOrderParams) middleware.Responder
Handle executing the request and returning a response
type DeleteOrderNotFound struct { }
DeleteOrderNotFound Order not found
swagger:response deleteOrderNotFound
func NewDeleteOrderNotFound() *DeleteOrderNotFound
NewDeleteOrderNotFound creates DeleteOrderNotFound with default headers values
func (o *DeleteOrderNotFound) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)
WriteResponse to the client
type DeleteOrderParams struct { // HTTP Request Object HTTPRequest *http.Request `json:"-"` /*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() DeleteOrderParams
NewDeleteOrderParams creates a new DeleteOrderParams object
There are no default values defined in the spec.
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.
To ensure default values, the struct must have been initialized with NewDeleteOrderParams() beforehand.
DeleteOrderURL generates an URL for the delete order operation
func (o *DeleteOrderURL) Build() (*url.URL, error)
Build a url path and query string
BuildFull builds a full url with scheme, host, path and query string
Must is a helper function to panic when the url builder returns an error
func (o *DeleteOrderURL) SetBasePath(bp string)
SetBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string
func (o *DeleteOrderURL) String() string
String returns the string representation of the path with query string
func (o *DeleteOrderURL) StringFull(scheme, host string) string
StringFull returns the string representation of a complete url
func (o *DeleteOrderURL) WithBasePath(bp string) *DeleteOrderURL
WithBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string
type GetOrderByID struct { Context *middleware.Context Handler GetOrderByIDHandler }
GetOrderByID swagger:route GET /stores/order/{orderId} store getOrderById
For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
func NewGetOrderByID(ctx *middleware.Context, handler GetOrderByIDHandler) *GetOrderByID
NewGetOrderByID creates a new http.Handler for the get order by Id operation
func (o *GetOrderByID) ServeHTTP(rw http.ResponseWriter, r *http.Request)
type GetOrderByIDBadRequest struct { }
GetOrderByIDBadRequest Invalid ID supplied
swagger:response getOrderByIdBadRequest
func NewGetOrderByIDBadRequest() *GetOrderByIDBadRequest
NewGetOrderByIDBadRequest creates GetOrderByIDBadRequest with default headers values
func (o *GetOrderByIDBadRequest) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)
WriteResponse to the client
type GetOrderByIDHandler interface { Handle(GetOrderByIDParams) middleware.Responder }
GetOrderByIDHandler interface for that can handle valid get order by Id params
type GetOrderByIDHandlerFunc func(GetOrderByIDParams) middleware.Responder
GetOrderByIDHandlerFunc turns a function with the right signature into a get order by Id handler
func (fn GetOrderByIDHandlerFunc) Handle(params GetOrderByIDParams) middleware.Responder
Handle executing the request and returning a response
type GetOrderByIDNotFound struct { }
GetOrderByIDNotFound Order not found
swagger:response getOrderByIdNotFound
func NewGetOrderByIDNotFound() *GetOrderByIDNotFound
NewGetOrderByIDNotFound creates GetOrderByIDNotFound with default headers values
func (o *GetOrderByIDNotFound) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)
WriteResponse to the client
GetOrderByIDOK successful operation
swagger:response getOrderByIdOK
func NewGetOrderByIDOK() *GetOrderByIDOK
NewGetOrderByIDOK creates GetOrderByIDOK with default headers values
func (o *GetOrderByIDOK) SetPayload(payload *models.Order)
SetPayload sets the payload to the get order by Id o k response
func (o *GetOrderByIDOK) WithPayload(payload *models.Order) *GetOrderByIDOK
WithPayload adds the payload to the get order by Id o k response
func (o *GetOrderByIDOK) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)
WriteResponse to the client
type GetOrderByIDParams struct { // HTTP Request Object HTTPRequest *http.Request `json:"-"` /*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() GetOrderByIDParams
NewGetOrderByIDParams creates a new GetOrderByIDParams object
There are no default values defined in the spec.
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.
To ensure default values, the struct must have been initialized with NewGetOrderByIDParams() beforehand.
GetOrderByIDURL generates an URL for the get order by Id operation
func (o *GetOrderByIDURL) Build() (*url.URL, error)
Build a url path and query string
BuildFull builds a full url with scheme, host, path and query string
Must is a helper function to panic when the url builder returns an error
func (o *GetOrderByIDURL) SetBasePath(bp string)
SetBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string
func (o *GetOrderByIDURL) String() string
String returns the string representation of the path with query string
func (o *GetOrderByIDURL) StringFull(scheme, host string) string
StringFull returns the string representation of a complete url
func (o *GetOrderByIDURL) WithBasePath(bp string) *GetOrderByIDURL
WithBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string
type PlaceOrder struct { Context *middleware.Context Handler PlaceOrderHandler }
PlaceOrder swagger:route POST /stores/order store placeOrder
Place an order for a pet
func NewPlaceOrder(ctx *middleware.Context, handler PlaceOrderHandler) *PlaceOrder
NewPlaceOrder creates a new http.Handler for the place order operation
func (o *PlaceOrder) ServeHTTP(rw http.ResponseWriter, r *http.Request)
type PlaceOrderBadRequest struct { }
PlaceOrderBadRequest Invalid Order
swagger:response placeOrderBadRequest
func NewPlaceOrderBadRequest() *PlaceOrderBadRequest
NewPlaceOrderBadRequest creates PlaceOrderBadRequest with default headers values
func (o *PlaceOrderBadRequest) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)
WriteResponse to the client
type PlaceOrderHandler interface { Handle(PlaceOrderParams) middleware.Responder }
PlaceOrderHandler interface for that can handle valid place order params
type PlaceOrderHandlerFunc func(PlaceOrderParams) middleware.Responder
PlaceOrderHandlerFunc turns a function with the right signature into a place order handler
func (fn PlaceOrderHandlerFunc) Handle(params PlaceOrderParams) middleware.Responder
Handle executing the request and returning a response
PlaceOrderOK successful operation
swagger:response placeOrderOK
func NewPlaceOrderOK() *PlaceOrderOK
NewPlaceOrderOK creates PlaceOrderOK with default headers values
func (o *PlaceOrderOK) SetPayload(payload *models.Order)
SetPayload sets the payload to the place order o k response
func (o *PlaceOrderOK) WithPayload(payload *models.Order) *PlaceOrderOK
WithPayload adds the payload to the place order o k response
func (o *PlaceOrderOK) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)
WriteResponse to the client
type PlaceOrderParams struct { // HTTP Request Object HTTPRequest *http.Request `json:"-"` /*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() PlaceOrderParams
NewPlaceOrderParams creates a new PlaceOrderParams object
There are no default values defined in the spec.
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.
To ensure default values, the struct must have been initialized with NewPlaceOrderParams() beforehand.
type PlaceOrderURL struct {
// contains filtered or unexported fields
}
PlaceOrderURL generates an URL for the place order operation
func (o *PlaceOrderURL) Build() (*url.URL, error)
Build a url path and query string
BuildFull builds a full url with scheme, host, path and query string
Must is a helper function to panic when the url builder returns an error
func (o *PlaceOrderURL) SetBasePath(bp string)
SetBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string
func (o *PlaceOrderURL) String() string
String returns the string representation of the path with query string
func (o *PlaceOrderURL) StringFull(scheme, host string) string
StringFull returns the string representation of a complete url
func (o *PlaceOrderURL) WithBasePath(bp string) *PlaceOrderURL
WithBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string
Package store imports 12 packages (graph) and is imported by 28 packages. Updated 2021-01-18. Refresh now. Tools for package owners.