forked from loafle/openapi-generator-original
* remove php apache license * remove apache license from C# * remove apache license in objc code * remove license from swift 3 code * remove apache license from perl code * remove license from scala code * remove license from ts, go, android, cpp, scala * remove license from java api client * restore clojure petstore files * remove license from travis file * clean up apache-related terms in php, ruby, python mustache tempaltes * remove license from JS API cilent
64 lines
1.4 KiB
C++
64 lines
1.4 KiB
C++
/**
|
|
* 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.
|
|
*/
|
|
|
|
/*
|
|
* SWGApiResponse.h
|
|
*
|
|
* Describes the result of uploading an image resource
|
|
*/
|
|
|
|
#ifndef SWGApiResponse_H_
|
|
#define SWGApiResponse_H_
|
|
|
|
#include <QJsonObject>
|
|
|
|
|
|
#include <QString>
|
|
|
|
#include "SWGObject.h"
|
|
|
|
|
|
namespace Swagger {
|
|
|
|
class SWGApiResponse: public SWGObject {
|
|
public:
|
|
SWGApiResponse();
|
|
SWGApiResponse(QString* json);
|
|
virtual ~SWGApiResponse();
|
|
void init();
|
|
void cleanup();
|
|
|
|
QString asJson ();
|
|
QJsonObject* asJsonObject();
|
|
void fromJsonObject(QJsonObject &json);
|
|
SWGApiResponse* fromJson(QString &jsonString);
|
|
|
|
qint32 getCode();
|
|
void setCode(qint32 code);
|
|
|
|
QString* getType();
|
|
void setType(QString* type);
|
|
|
|
QString* getMessage();
|
|
void setMessage(QString* message);
|
|
|
|
|
|
private:
|
|
qint32 code;
|
|
QString* type;
|
|
QString* message;
|
|
};
|
|
|
|
} /* namespace Swagger */
|
|
|
|
#endif /* SWGApiResponse_H_ */
|