/** * This file is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ #include "Company.h" namespace models { Company::Company() : name("") , headquarters(Address()) , departments(std::vector()) , metadata(std::map()) { } // ========================================= // ===== Getters/Setters ===== // ========================================= // =================== // ===== Getters ===== // =================== std::string Company::getName() const { return name; } Address Company::getHeadquarters() const { return headquarters; } std::vector Company::getDepartments() const { return departments; } std::map Company::getMetadata() const { return metadata; } // =================== // ===== Setters ===== // =================== void Company::setName(const std::string& nameObj) { name = nameObj; } void Company::setHeadquarters(const Address& headquartersObj) { headquarters = headquartersObj; } void Company::setDepartments(const std::vector& departmentsObj) { departments = departmentsObj; } void Company::setMetadata(const std::map& metadataObj) { metadata = metadataObj; } } // namespace models