/** * This file is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ #include "SimpleObject.h" namespace models { SimpleObject::SimpleObject() : id(0) , name("") , description("") { } // ========================================= // ===== Getters/Setters ===== // ========================================= // =================== // ===== Getters ===== // =================== int SimpleObject::getId() const { return id; } std::string SimpleObject::getName() const { return name; } std::string SimpleObject::getDescription() const { return description; } // =================== // ===== Setters ===== // =================== void SimpleObject::setId(const int& idObj) { id = idObj; } void SimpleObject::setName(const std::string& nameObj) { name = nameObj; } void SimpleObject::setDescription(const std::string& descriptionObj) { description = descriptionObj; } } // namespace models