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