/** * 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. */ #include "Pet_bestFriends.h" #include "Helpers.h" #include namespace org::openapitools::server::model { Pet_bestFriends::Pet_bestFriends() { } void Pet_bestFriends::validate() const { std::stringstream msg; if (!validate(msg)) { throw org::openapitools::server::helpers::ValidationException(msg.str()); } } bool Pet_bestFriends::validate(std::stringstream& msg) const { return validate(msg, ""); } bool Pet_bestFriends::validate(std::stringstream& msg, const std::string& pathPrefix) const { bool success = true; const std::string _pathPrefix = pathPrefix.empty() ? "Pet_bestFriends" : pathPrefix; /* BestFriends */ { const std::vector& value = m_BestFriends; const std::string currentValuePath = _pathPrefix + ".bestFriends"; if (!org::openapitools::server::helpers::hasOnlyUniqueItems(value)) { success = false; msg << currentValuePath << ": may not contain the same item more than once;"; } { // Recursive validation of array elements const std::string oldValuePath = currentValuePath; int i = 0; for (const std::string& value : value) { const std::string currentValuePath = oldValuePath + "[" + std::to_string(i) + "]"; i++; } } } return success; } bool Pet_bestFriends::operator==(const Pet_bestFriends& rhs) const { return (getBestFriends() == rhs.getBestFriends()) ; } bool Pet_bestFriends::operator!=(const Pet_bestFriends& rhs) const { return !(*this == rhs); } void to_json(nlohmann::json& j, const Pet_bestFriends& o) { j = nlohmann::json::object(); j["bestFriends"] = o.m_BestFriends; } void from_json(const nlohmann::json& j, Pet_bestFriends& o) { j.at("bestFriends").get_to(o.m_BestFriends); } std::vector Pet_bestFriends::getBestFriends() const { return m_BestFriends; } void Pet_bestFriends::setBestFriends(std::vector const& value) { m_BestFriends = value; } } // namespace org::openapitools::server::model