forked from loafle/openapi-generator-original
64 lines
1.7 KiB
C++
64 lines
1.7 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 3.0.0-SNAPSHOT.
|
|
* https://github.com/swagger-api/swagger-codegen.git
|
|
* Do not edit the class manually.
|
|
*/
|
|
|
|
/*
|
|
* Object.h
|
|
*
|
|
* This is the implementation of a JSON object.
|
|
*/
|
|
|
|
#ifndef IO_SWAGGER_CLIENT_MODEL_Object_H_
|
|
#define IO_SWAGGER_CLIENT_MODEL_Object_H_
|
|
|
|
|
|
#include "ModelBase.h"
|
|
|
|
#include <cpprest/details/basic_types.h>
|
|
#include <cpprest/json.h>
|
|
|
|
namespace io {
|
|
namespace swagger {
|
|
namespace client {
|
|
namespace model {
|
|
|
|
class Object : public ModelBase
|
|
{
|
|
public:
|
|
Object();
|
|
virtual ~Object();
|
|
|
|
/////////////////////////////////////////////
|
|
/// ModelBase overrides
|
|
void validate() override;
|
|
|
|
web::json::value toJson() const override;
|
|
void fromJson(web::json::value& json) override;
|
|
|
|
void toMultipart(std::shared_ptr<MultipartFormData> multipart, const utility::string_t& namePrefix) const override;
|
|
void fromMultiPart(std::shared_ptr<MultipartFormData> multipart, const utility::string_t& namePrefix) override;
|
|
|
|
/////////////////////////////////////////////
|
|
/// Object manipulation
|
|
web::json::value getValue(const utility::string_t& key) const;
|
|
void setValue(const utility::string_t& key, const web::json::value& value);
|
|
|
|
private:
|
|
web::json::value m_object;
|
|
};
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
#endif /* IO_SWAGGER_CLIENT_MODEL_Object_H_ */
|