forked from loafle/openapi-generator-original
* [BUG] [C++][Pistache] cpp-pistache-server generating API include undefined "Object.h" (#2769) Should handle Object.h, AnyType.h correctly. Set.h also tested. - #include Object.h removed and replaced by a typeMapping.put(object, nlohmann::json) like suggested in other issues - object had an invalid syntax: ':' instead of '::' in types with namespace - extra include of #include nlohmann/json.h removed when there's already #include <nlohmann/json.hpp> - nlohmann::json is excluded from model namespace Tested with custom petstore played, with suggested openapi specs coming from issues #2769, #10266, #14234 ```bash rm -rf samples/server/petstore/cpp-pistache-everything/ && ./bin/generate-samples.sh ./bin/configs/cpp-pistache-server-cpp-pistache-everything.yaml && cd samples/server/petstore/cpp-pistache-everything/ && mkdir build && cd build && cmake .. && cmake --build . --parallel ``` * - Adding to samples/server/petstore cpp-pistache-everything * - .md and FILES missing
125 lines
3.0 KiB
C++
125 lines
3.0 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.
|
|
*
|
|
* The version of the OpenAPI document: 1.0.0
|
|
*
|
|
*
|
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
* https://openapi-generator.tech
|
|
* Do not edit the class manually.
|
|
*/
|
|
/*
|
|
* Order.h
|
|
*
|
|
* An order for a pets from the pet store
|
|
*/
|
|
|
|
#ifndef Order_H_
|
|
#define Order_H_
|
|
|
|
|
|
#include <string>
|
|
#include <nlohmann/json.hpp>
|
|
|
|
namespace org::openapitools::server::model
|
|
{
|
|
|
|
/// <summary>
|
|
/// An order for a pets from the pet store
|
|
/// </summary>
|
|
class Order
|
|
{
|
|
public:
|
|
Order();
|
|
virtual ~Order() = default;
|
|
|
|
|
|
/// <summary>
|
|
/// Validate the current data in the model. Throws a ValidationException on failure.
|
|
/// </summary>
|
|
void validate() const;
|
|
|
|
/// <summary>
|
|
/// Validate the current data in the model. Returns false on error and writes an error
|
|
/// message into the given stringstream.
|
|
/// </summary>
|
|
bool validate(std::stringstream& msg) const;
|
|
|
|
/// <summary>
|
|
/// Helper overload for validate. Used when one model stores another model and calls it's validate.
|
|
/// Not meant to be called outside that case.
|
|
/// </summary>
|
|
bool validate(std::stringstream& msg, const std::string& pathPrefix) const;
|
|
|
|
bool operator==(const Order& rhs) const;
|
|
bool operator!=(const Order& rhs) const;
|
|
|
|
/////////////////////////////////////////////
|
|
/// Order members
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
int64_t getId() const;
|
|
void setId(int64_t const value);
|
|
bool idIsSet() const;
|
|
void unsetId();
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
int64_t getPetId() const;
|
|
void setPetId(int64_t const value);
|
|
bool petIdIsSet() const;
|
|
void unsetPetId();
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
int32_t getQuantity() const;
|
|
void setQuantity(int32_t const value);
|
|
bool quantityIsSet() const;
|
|
void unsetQuantity();
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
std::string getShipDate() const;
|
|
void setShipDate(std::string const& value);
|
|
bool shipDateIsSet() const;
|
|
void unsetShipDate();
|
|
/// <summary>
|
|
/// Order Status
|
|
/// </summary>
|
|
std::string getStatus() const;
|
|
void setStatus(std::string const& value);
|
|
bool statusIsSet() const;
|
|
void unsetStatus();
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
bool isComplete() const;
|
|
void setComplete(bool const value);
|
|
bool completeIsSet() const;
|
|
void unsetComplete();
|
|
|
|
friend void to_json(nlohmann::json& j, const Order& o);
|
|
friend void from_json(const nlohmann::json& j, Order& o);
|
|
protected:
|
|
int64_t m_Id;
|
|
bool m_IdIsSet;
|
|
int64_t m_PetId;
|
|
bool m_PetIdIsSet;
|
|
int32_t m_Quantity;
|
|
bool m_QuantityIsSet;
|
|
std::string m_ShipDate;
|
|
bool m_ShipDateIsSet;
|
|
std::string m_Status;
|
|
bool m_StatusIsSet;
|
|
bool m_Complete;
|
|
bool m_CompleteIsSet;
|
|
|
|
};
|
|
|
|
} // namespace org::openapitools::server::model
|
|
|
|
#endif /* Order_H_ */
|