forked from loafle/openapi-generator-original
* Fix string types for cpprestsdk client generator * Regenerate the samples for restsdk-client
63 lines
1.5 KiB
C++
63 lines
1.5 KiB
C++
/**
|
|
* OpenAPI Petstore
|
|
* This is a sample server Petstore server. For this sample, you can use the api key `special-key` to test the authorization filters.
|
|
*
|
|
* OpenAPI spec version: 1.0.0
|
|
*
|
|
* NOTE: This class is auto generated by OpenAPI-Generator 3.3.4.
|
|
* https://openapi-generator.tech
|
|
* Do not edit the class manually.
|
|
*/
|
|
|
|
/*
|
|
* Object.h
|
|
*
|
|
* This is the implementation of a JSON object.
|
|
*/
|
|
|
|
#ifndef ORG_OPENAPITOOLS_CLIENT_MODEL_Object_H_
|
|
#define ORG_OPENAPITOOLS_CLIENT_MODEL_Object_H_
|
|
|
|
|
|
#include "ModelBase.h"
|
|
|
|
#include <cpprest/details/basic_types.h>
|
|
#include <cpprest/json.h>
|
|
|
|
namespace org {
|
|
namespace openapitools {
|
|
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(const 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 /* ORG_OPENAPITOOLS_CLIENT_MODEL_Object_H_ */
|