forked from loafle/openapi-generator-original
* Output swagger models. Fix route verbs and formatting * Remove backup files * Make postProcessOperations consistent with go client
33 lines
824 B
Go
33 lines
824 B
Go
/*
|
|
* Swagger Petstore
|
|
*
|
|
* This is a sample server Petstore server. You can find out more about Swagger at [http://swagger.io](http://swagger.io) or on [irc.freenode.net, #swagger](http://swagger.io/irc/). For this sample, you can use the api key `special-key` to test the authorization filters.
|
|
*
|
|
* API version: 1.0.0
|
|
* Contact: apiteam@swagger.io
|
|
* Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
|
|
*/
|
|
|
|
package petstoreserver
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
// An order for a pets from the pet store
|
|
type Order struct {
|
|
|
|
Id int64 `json:"id,omitempty"`
|
|
|
|
PetId int64 `json:"petId,omitempty"`
|
|
|
|
Quantity int32 `json:"quantity,omitempty"`
|
|
|
|
ShipDate time.Time `json:"shipDate,omitempty"`
|
|
|
|
// Order Status
|
|
Status string `json:"status,omitempty"`
|
|
|
|
Complete bool `json:"complete,omitempty"`
|
|
}
|