mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-06-02 15:00:58 +00:00
63 lines
1.3 KiB
C++
63 lines
1.3 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;
|
|
};
|
|
|
|
}
|
|
|
|
#endif /* SWGApiResponse_H_ */
|