/** * 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. * * OpenAPI spec version: 1.0.0 * Contact: apiteam@swagger.io * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git * Do not edit the class manually. */ /* * SWGOrder.h * * An order for a pets from the pet store */ #ifndef SWGOrder_H_ #define SWGOrder_H_ #include #include #include #include "SWGObject.h" namespace Swagger { class SWGOrder: public SWGObject { public: SWGOrder(); SWGOrder(QString* json); virtual ~SWGOrder(); void init(); void cleanup(); QString asJson (); QJsonObject* asJsonObject(); void fromJsonObject(QJsonObject &json); SWGOrder* fromJson(QString &jsonString); qint64 getId(); void setId(qint64 id); qint64 getPetId(); void setPetId(qint64 pet_id); qint32 getQuantity(); void setQuantity(qint32 quantity); QDateTime* getShipDate(); void setShipDate(QDateTime* ship_date); QString* getStatus(); void setStatus(QString* status); bool isComplete(); void setComplete(bool complete); private: qint64 id; qint64 pet_id; qint32 quantity; QDateTime* ship_date; QString* status; bool complete; }; } #endif /* SWGOrder_H_ */