/** * This file is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ #include "Animal.h" namespace models { Animal::Animal() : name("") , type("") { } // ========================================= // ===== Getters/Setters ===== // ========================================= // =================== // ===== Getters ===== // =================== std::string Animal::getName() const { return name; } std::string Animal::getType() const { return type; } // =================== // ===== Setters ===== // =================== void Animal::setName(const std::string& nameObj) { name = nameObj; } void Animal::setType(const std::string& typeObj) { type = typeObj; } } // namespace models