/** * OpenAPI Petstore * This is a sample server Petstore server. For this sample, you can use the api key `special-key` to test the authorization filters. * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ #include "PetApiController.hpp" namespace org { namespace openapitools { namespace server { namespace api { std::shared_ptr PetApiController::add_pet(const std::shared_ptr &request, const oatpp::Object &pet) { (void)request; (void)pet; return createResponse(Status::CODE_501, "TODO: Implement API Handler"); } std::shared_ptr PetApiController::delete_pet(const std::shared_ptr &request, const oatpp::Int64 &petId, const oatpp::String &apiKey) { (void)request; (void)petId; (void)apiKey; return createResponse(Status::CODE_501, "TODO: Implement API Handler"); } std::shared_ptr PetApiController::find_pets_by_status(const std::shared_ptr &request, const oatpp::Vector &status) { (void)request; (void)status; return createResponse(Status::CODE_501, "TODO: Implement API Handler"); } std::shared_ptr PetApiController::find_pets_by_tags(const std::shared_ptr &request, const oatpp::Vector &tags) { (void)request; (void)tags; return createResponse(Status::CODE_501, "TODO: Implement API Handler"); } std::shared_ptr PetApiController::get_pet_by_id(const std::shared_ptr &request, const oatpp::Int64 &petId) { (void)request; (void)petId; return createResponse(Status::CODE_501, "TODO: Implement API Handler"); } std::shared_ptr PetApiController::update_pet(const std::shared_ptr &request, const oatpp::Object &pet) { (void)request; (void)pet; return createResponse(Status::CODE_501, "TODO: Implement API Handler"); } std::shared_ptr PetApiController::update_pet_with_form(const std::shared_ptr &request, const oatpp::Int64 &petId) { (void)request; (void)petId; return createResponse(Status::CODE_501, "TODO: Implement API Handler"); } std::shared_ptr PetApiController::upload_file(const std::shared_ptr &request, const oatpp::Int64 &petId) { (void)request; (void)petId; return createResponse(Status::CODE_501, "TODO: Implement API Handler"); } } } } }