/* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include using AlibabaCloud::VoiceNavigator::Model::CreateKnowledgeRequest; CreateKnowledgeRequest::CreateKnowledgeRequest() : RpcServiceRequest("voicenavigator", "2018-06-12", "CreateKnowledge") { setMethod(HttpRequest::Method::Post); } CreateKnowledgeRequest::~CreateKnowledgeRequest() {} std::string CreateKnowledgeRequest::getUserUtterance()const { return userUtterance_; } void CreateKnowledgeRequest::setUserUtterance(const std::string& userUtterance) { userUtterance_ = userUtterance; setParameter("UserUtterance", userUtterance); } bool CreateKnowledgeRequest::getInterruptible()const { return interruptible_; } void CreateKnowledgeRequest::setInterruptible(bool interruptible) { interruptible_ = interruptible; setParameter("Interruptible", interruptible ? "true" : "false"); } std::string CreateKnowledgeRequest::getInstanceId()const { return instanceId_; } void CreateKnowledgeRequest::setInstanceId(const std::string& instanceId) { instanceId_ = instanceId; setParameter("InstanceId", instanceId); } std::string CreateKnowledgeRequest::getAnswer()const { return answer_; } void CreateKnowledgeRequest::setAnswer(const std::string& answer) { answer_ = answer; setParameter("Answer", answer); } std::vector CreateKnowledgeRequest::getSimilarUtterances()const { return similarUtterances_; } void CreateKnowledgeRequest::setSimilarUtterances(const std::vector& similarUtterances) { similarUtterances_ = similarUtterances; for(int dep1 = 0; dep1!= similarUtterances.size(); dep1++) { setParameter("SimilarUtterances."+ std::to_string(dep1), similarUtterances.at(dep1)); } } std::string CreateKnowledgeRequest::getCategoryId()const { return categoryId_; } void CreateKnowledgeRequest::setCategoryId(const std::string& categoryId) { categoryId_ = categoryId; setParameter("CategoryId", categoryId); }