forked from loafle/openapi-generator-original
16 lines
343 B
Go
16 lines
343 B
Go
package swagger
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type Order struct {
|
|
id int64 `json:"id,omitempty"`
|
|
petId int64 `json:"petId,omitempty"`
|
|
quantity int32 `json:"quantity,omitempty"`
|
|
shipDate time.Time `json:"shipDate,omitempty"`
|
|
status string `json:"status,omitempty"`
|
|
complete bool `json:"complete,omitempty"`
|
|
|
|
}
|