forked from loafle/openapi-generator-original
347 lines
9.1 KiB
C++
347 lines
9.1 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.
|
|
*/
|
|
|
|
|
|
|
|
#include "Pet.h"
|
|
|
|
namespace io {
|
|
namespace swagger {
|
|
namespace client {
|
|
namespace model {
|
|
|
|
Pet::Pet()
|
|
{
|
|
m_Id = 0L;
|
|
m_IdIsSet = false;
|
|
m_CategoryIsSet = false;
|
|
m_Name = utility::conversions::to_string_t("");
|
|
m_TagsIsSet = false;
|
|
m_Status = utility::conversions::to_string_t("");
|
|
m_StatusIsSet = false;
|
|
}
|
|
|
|
Pet::~Pet()
|
|
{
|
|
}
|
|
|
|
void Pet::validate()
|
|
{
|
|
// TODO: implement validation
|
|
}
|
|
|
|
web::json::value Pet::toJson() const
|
|
{
|
|
web::json::value val = web::json::value::object();
|
|
|
|
if(m_IdIsSet)
|
|
{
|
|
val[utility::conversions::to_string_t("id")] = ModelBase::toJson(m_Id);
|
|
}
|
|
if(m_CategoryIsSet)
|
|
{
|
|
val[utility::conversions::to_string_t("category")] = ModelBase::toJson(m_Category);
|
|
}
|
|
val[utility::conversions::to_string_t("name")] = ModelBase::toJson(m_Name);
|
|
{
|
|
std::vector<web::json::value> jsonArray;
|
|
for( auto& item : m_PhotoUrls )
|
|
{
|
|
jsonArray.push_back(ModelBase::toJson(item));
|
|
}
|
|
val[utility::conversions::to_string_t("photoUrls")] = web::json::value::array(jsonArray);
|
|
}
|
|
{
|
|
std::vector<web::json::value> jsonArray;
|
|
for( auto& item : m_Tags )
|
|
{
|
|
jsonArray.push_back(ModelBase::toJson(item));
|
|
}
|
|
if(jsonArray.size() > 0)
|
|
{
|
|
val[utility::conversions::to_string_t("tags")] = web::json::value::array(jsonArray);
|
|
}
|
|
}
|
|
if(m_StatusIsSet)
|
|
{
|
|
val[utility::conversions::to_string_t("status")] = ModelBase::toJson(m_Status);
|
|
}
|
|
|
|
return val;
|
|
}
|
|
|
|
void Pet::fromJson(web::json::value& val)
|
|
{
|
|
if(val.has_field(utility::conversions::to_string_t("id")))
|
|
{
|
|
setId(ModelBase::int64_tFromJson(val[utility::conversions::to_string_t("id")]));
|
|
}
|
|
if(val.has_field(utility::conversions::to_string_t("category")))
|
|
{
|
|
if(!val[utility::conversions::to_string_t("category")].is_null())
|
|
{
|
|
std::shared_ptr<Category> newItem(new Category());
|
|
newItem->fromJson(val[utility::conversions::to_string_t("category")]);
|
|
setCategory( newItem );
|
|
}
|
|
}
|
|
setName(ModelBase::stringFromJson(val[utility::conversions::to_string_t("name")]));
|
|
{
|
|
m_PhotoUrls.clear();
|
|
std::vector<web::json::value> jsonArray;
|
|
for( auto& item : val[utility::conversions::to_string_t("photoUrls")].as_array() )
|
|
{
|
|
m_PhotoUrls.push_back(ModelBase::stringFromJson(item));
|
|
}
|
|
}
|
|
{
|
|
m_Tags.clear();
|
|
std::vector<web::json::value> jsonArray;
|
|
if(val.has_field(utility::conversions::to_string_t("tags")))
|
|
{
|
|
for( auto& item : val[utility::conversions::to_string_t("tags")].as_array() )
|
|
{
|
|
if(item.is_null())
|
|
{
|
|
m_Tags.push_back( std::shared_ptr<Tag>(nullptr) );
|
|
}
|
|
else
|
|
{
|
|
std::shared_ptr<Tag> newItem(new Tag());
|
|
newItem->fromJson(item);
|
|
m_Tags.push_back( newItem );
|
|
}
|
|
}
|
|
}
|
|
}
|
|
if(val.has_field(utility::conversions::to_string_t("status")))
|
|
{
|
|
setStatus(ModelBase::stringFromJson(val[utility::conversions::to_string_t("status")]));
|
|
}
|
|
}
|
|
|
|
void Pet::toMultipart(std::shared_ptr<MultipartFormData> multipart, const utility::string_t& prefix) const
|
|
{
|
|
utility::string_t namePrefix = prefix;
|
|
if(namePrefix.size() > 0 && namePrefix.substr(namePrefix.size() - 1) != utility::conversions::to_string_t("."))
|
|
{
|
|
namePrefix += utility::conversions::to_string_t(".");
|
|
}
|
|
|
|
if(m_IdIsSet)
|
|
{
|
|
multipart->add(ModelBase::toHttpContent(namePrefix + utility::conversions::to_string_t("id"), m_Id));
|
|
}
|
|
if(m_CategoryIsSet)
|
|
{
|
|
if (m_Category.get())
|
|
{
|
|
m_Category->toMultipart(multipart, utility::conversions::to_string_t("category."));
|
|
}
|
|
|
|
}
|
|
multipart->add(ModelBase::toHttpContent(namePrefix + utility::conversions::to_string_t("name"), m_Name));
|
|
{
|
|
std::vector<web::json::value> jsonArray;
|
|
for( auto& item : m_PhotoUrls )
|
|
{
|
|
jsonArray.push_back(ModelBase::toJson(item));
|
|
}
|
|
multipart->add(ModelBase::toHttpContent(namePrefix + utility::conversions::to_string_t("photoUrls"), web::json::value::array(jsonArray), utility::conversions::to_string_t("application/json")));
|
|
}
|
|
{
|
|
std::vector<web::json::value> jsonArray;
|
|
for( auto& item : m_Tags )
|
|
{
|
|
jsonArray.push_back(ModelBase::toJson(item));
|
|
}
|
|
|
|
if(jsonArray.size() > 0)
|
|
{
|
|
multipart->add(ModelBase::toHttpContent(namePrefix + utility::conversions::to_string_t("tags"), web::json::value::array(jsonArray), utility::conversions::to_string_t("application/json")));
|
|
}
|
|
}
|
|
if(m_StatusIsSet)
|
|
{
|
|
multipart->add(ModelBase::toHttpContent(namePrefix + utility::conversions::to_string_t("status"), m_Status));
|
|
|
|
}
|
|
}
|
|
|
|
void Pet::fromMultiPart(std::shared_ptr<MultipartFormData> multipart, const utility::string_t& prefix)
|
|
{
|
|
utility::string_t namePrefix = prefix;
|
|
if(namePrefix.size() > 0 && namePrefix.substr(namePrefix.size() - 1) != utility::conversions::to_string_t("."))
|
|
{
|
|
namePrefix += utility::conversions::to_string_t(".");
|
|
}
|
|
|
|
if(multipart->hasContent(utility::conversions::to_string_t("id")))
|
|
{
|
|
setId(ModelBase::int64_tFromHttpContent(multipart->getContent(utility::conversions::to_string_t("id"))));
|
|
}
|
|
if(multipart->hasContent(utility::conversions::to_string_t("category")))
|
|
{
|
|
if(multipart->hasContent(utility::conversions::to_string_t("category")))
|
|
{
|
|
std::shared_ptr<Category> newItem(new Category());
|
|
newItem->fromMultiPart(multipart, utility::conversions::to_string_t("category."));
|
|
setCategory( newItem );
|
|
}
|
|
}
|
|
setName(ModelBase::stringFromHttpContent(multipart->getContent(utility::conversions::to_string_t("name"))));
|
|
{
|
|
m_PhotoUrls.clear();
|
|
|
|
web::json::value jsonArray = web::json::value::parse(ModelBase::stringFromHttpContent(multipart->getContent(utility::conversions::to_string_t("photoUrls"))));
|
|
for( auto& item : jsonArray.as_array() )
|
|
{
|
|
m_PhotoUrls.push_back(ModelBase::stringFromJson(item));
|
|
}
|
|
}
|
|
{
|
|
m_Tags.clear();
|
|
if(multipart->hasContent(utility::conversions::to_string_t("tags")))
|
|
{
|
|
|
|
web::json::value jsonArray = web::json::value::parse(ModelBase::stringFromHttpContent(multipart->getContent(utility::conversions::to_string_t("tags"))));
|
|
for( auto& item : jsonArray.as_array() )
|
|
{
|
|
if(item.is_null())
|
|
{
|
|
m_Tags.push_back( std::shared_ptr<Tag>(nullptr) );
|
|
}
|
|
else
|
|
{
|
|
std::shared_ptr<Tag> newItem(new Tag());
|
|
newItem->fromJson(item);
|
|
m_Tags.push_back( newItem );
|
|
}
|
|
}
|
|
}
|
|
}
|
|
if(multipart->hasContent(utility::conversions::to_string_t("status")))
|
|
{
|
|
setStatus(ModelBase::stringFromHttpContent(multipart->getContent(utility::conversions::to_string_t("status"))));
|
|
}
|
|
}
|
|
|
|
int64_t Pet::getId() const
|
|
{
|
|
return m_Id;
|
|
}
|
|
|
|
|
|
void Pet::setId(int64_t value)
|
|
{
|
|
m_Id = value;
|
|
m_IdIsSet = true;
|
|
}
|
|
bool Pet::idIsSet() const
|
|
{
|
|
return m_IdIsSet;
|
|
}
|
|
|
|
void Pet::unsetId()
|
|
{
|
|
m_IdIsSet = false;
|
|
}
|
|
|
|
std::shared_ptr<Category> Pet::getCategory() const
|
|
{
|
|
return m_Category;
|
|
}
|
|
|
|
|
|
void Pet::setCategory(std::shared_ptr<Category> value)
|
|
{
|
|
m_Category = value;
|
|
m_CategoryIsSet = true;
|
|
}
|
|
bool Pet::categoryIsSet() const
|
|
{
|
|
return m_CategoryIsSet;
|
|
}
|
|
|
|
void Pet::unsetCategory()
|
|
{
|
|
m_CategoryIsSet = false;
|
|
}
|
|
|
|
utility::string_t Pet::getName() const
|
|
{
|
|
return m_Name;
|
|
}
|
|
|
|
|
|
void Pet::setName(utility::string_t value)
|
|
{
|
|
m_Name = value;
|
|
|
|
}
|
|
std::vector<utility::string_t>& Pet::getPhotoUrls()
|
|
{
|
|
return m_PhotoUrls;
|
|
}
|
|
|
|
void Pet::setPhotoUrls(std::vector<utility::string_t> value)
|
|
{
|
|
m_PhotoUrls = value;
|
|
|
|
}
|
|
std::vector<std::shared_ptr<Tag>>& Pet::getTags()
|
|
{
|
|
return m_Tags;
|
|
}
|
|
|
|
void Pet::setTags(std::vector<std::shared_ptr<Tag>> value)
|
|
{
|
|
m_Tags = value;
|
|
m_TagsIsSet = true;
|
|
}
|
|
bool Pet::tagsIsSet() const
|
|
{
|
|
return m_TagsIsSet;
|
|
}
|
|
|
|
void Pet::unsetTags()
|
|
{
|
|
m_TagsIsSet = false;
|
|
}
|
|
|
|
utility::string_t Pet::getStatus() const
|
|
{
|
|
return m_Status;
|
|
}
|
|
|
|
|
|
void Pet::setStatus(utility::string_t value)
|
|
{
|
|
m_Status = value;
|
|
m_StatusIsSet = true;
|
|
}
|
|
bool Pet::statusIsSet() const
|
|
{
|
|
return m_StatusIsSet;
|
|
}
|
|
|
|
void Pet::unsetStatus()
|
|
{
|
|
m_StatusIsSet = false;
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|