Martin Delille 9bd94b4dbb [qt] Fix warning message (#7815)
* [qt] fix warning message

* remove unused model.mustache file
2018-03-12 23:00:45 +08:00

71 lines
1.5 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);
~SWGApiResponse();
void init();
void cleanup();
QString asJson () override;
QJsonObject asJsonObject() override;
void fromJsonObject(QJsonObject json) override;
SWGApiResponse* fromJson(QString jsonString) override;
qint32 getCode();
void setCode(qint32 code);
QString* getType();
void setType(QString* type);
QString* getMessage();
void setMessage(QString* message);
virtual bool isSet() override;
private:
qint32 code;
bool m_code_isSet;
QString* type;
bool m_type_isSet;
QString* message;
bool m_message_isSet;
};
}
#endif /* SWGApiResponse_H_ */