/** * This file is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ #include "CreatedResponse.h" namespace models { CreatedResponse::CreatedResponse() : status("") , id(0) , location("") { } // ========================================= // ===== Getters/Setters ===== // ========================================= // =================== // ===== Getters ===== // =================== std::string CreatedResponse::getStatus() const { return status; } int CreatedResponse::getId() const { return id; } std::string CreatedResponse::getLocation() const { return location; } // =================== // ===== Setters ===== // =================== void CreatedResponse::setStatus(const std::string& statusObj) { status = statusObj; } void CreatedResponse::setId(const int& idObj) { id = idObj; } void CreatedResponse::setLocation(const std::string& locationObj) { location = locationObj; } } // namespace models