RunMedQARequest.h 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. /*
  2. * Copyright 2009-2017 Alibaba Cloud All rights reserved.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. #ifndef ALIBABACLOUD_IMAGEPROCESS_MODEL_RUNMEDQAREQUEST_H_
  17. #define ALIBABACLOUD_IMAGEPROCESS_MODEL_RUNMEDQAREQUEST_H_
  18. #include <string>
  19. #include <vector>
  20. #include <alibabacloud/core/RpcServiceRequest.h>
  21. #include <alibabacloud/imageprocess/ImageprocessExport.h>
  22. namespace AlibabaCloud
  23. {
  24. namespace Imageprocess
  25. {
  26. namespace Model
  27. {
  28. class ALIBABACLOUD_IMAGEPROCESS_EXPORT RunMedQARequest : public RpcServiceRequest
  29. {
  30. public:
  31. struct AnswerImageDataList
  32. {
  33. std::string answerImageData;
  34. };
  35. struct AnswerTextList
  36. {
  37. std::string answerText;
  38. };
  39. struct AnswerImageURLList
  40. {
  41. std::string answerImageURL;
  42. };
  43. public:
  44. RunMedQARequest();
  45. ~RunMedQARequest();
  46. std::string getSessionId()const;
  47. void setSessionId(const std::string& sessionId);
  48. std::string getOrgName()const;
  49. void setOrgName(const std::string& orgName);
  50. std::vector<AnswerImageDataList> getAnswerImageDataList()const;
  51. void setAnswerImageDataList(const std::vector<AnswerImageDataList>& answerImageDataList);
  52. std::vector<AnswerTextList> getAnswerTextList()const;
  53. void setAnswerTextList(const std::vector<AnswerTextList>& answerTextList);
  54. std::string getDepartment()const;
  55. void setDepartment(const std::string& department);
  56. std::vector<AnswerImageURLList> getAnswerImageURLList()const;
  57. void setAnswerImageURLList(const std::vector<AnswerImageURLList>& answerImageURLList);
  58. std::string getQuestionType()const;
  59. void setQuestionType(const std::string& questionType);
  60. std::string getOrgId()const;
  61. void setOrgId(const std::string& orgId);
  62. private:
  63. std::string sessionId_;
  64. std::string orgName_;
  65. std::vector<AnswerImageDataList> answerImageDataList_;
  66. std::vector<AnswerTextList> answerTextList_;
  67. std::string department_;
  68. std::vector<AnswerImageURLList> answerImageURLList_;
  69. std::string questionType_;
  70. std::string orgId_;
  71. };
  72. }
  73. }
  74. }
  75. #endif // !ALIBABACLOUD_IMAGEPROCESS_MODEL_RUNMEDQAREQUEST_H_