/** * This file is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ #include "NotFoundResponse.h" namespace models { NotFoundResponse::NotFoundResponse() : error("") , resource("") { } // ========================================= // ===== Getters/Setters ===== // ========================================= // =================== // ===== Getters ===== // =================== std::string NotFoundResponse::getError() const { return error; } std::string NotFoundResponse::getResource() const { return resource; } // =================== // ===== Setters ===== // =================== void NotFoundResponse::setError(const std::string& errorObj) { error = errorObj; } void NotFoundResponse::setResource(const std::string& resourceObj) { resource = resourceObj; } } // namespace models