/** * This file is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ #include "SuccessResponse.h" namespace models { SuccessResponse::SuccessResponse() : status("") { } // ========================================= // ===== Getters/Setters ===== // ========================================= // =================== // ===== Getters ===== // =================== std::string SuccessResponse::getStatus() const { return status; } nlohmann::json SuccessResponse::getData() const { return data; } // =================== // ===== Setters ===== // =================== void SuccessResponse::setStatus(const std::string& statusObj) { status = statusObj; } void SuccessResponse::setData(const nlohmann::json& dataObj) { data = dataObj; } } // namespace models