/** * 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 4.0.1-SNAPSHOT. * https://openapi-generator.tech * Do not edit the class manually. */ #include "Pet.h" #include #include #include #include using boost::property_tree::ptree; using boost::property_tree::read_json; using boost::property_tree::write_json; namespace org { namespace openapitools { namespace server { namespace model { Pet::Pet() { m_Id = 0L; m_Name = ""; m_Status = ""; } Pet::~Pet() { } std::string Pet::toJsonString() { std::stringstream ss; ptree pt; pt.put("Id", m_Id); pt.put("Name", m_Name); pt.put("Status", m_Status); write_json(ss, pt, false); return ss.str(); } void Pet::fromJsonString(std::string const& jsonString) { std::stringstream ss(jsonString); ptree pt; read_json(ss,pt); m_Id = pt.get("Id", 0L); m_Name = pt.get("Name", ""); m_Status = pt.get("Status", ""); } int64_t Pet::getId() const { return m_Id; } void Pet::setId(int64_t value) { m_Id = value; } std::shared_ptr Pet::getCategory() const { return m_Category; } void Pet::setCategory(std::shared_ptr value) { m_Category = value; } std::string Pet::getName() const { return m_Name; } void Pet::setName(std::string value) { m_Name = value; } std::vector Pet::getPhotoUrls() const { return m_PhotoUrls; } void Pet::setPhotoUrls(std::vector value) { m_PhotoUrls = value; } std::vector> Pet::getTags() const { return m_Tags; } void Pet::setTags(std::vector> value) { m_Tags = value; } std::string Pet::getStatus() const { return m_Status; } void Pet::setStatus(std::string value) { m_Status = value; } } } } }