BatchRobotSmartCallRequest.h 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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_DYVMSAPI_MODEL_BATCHROBOTSMARTCALLREQUEST_H_
  17. #define ALIBABACLOUD_DYVMSAPI_MODEL_BATCHROBOTSMARTCALLREQUEST_H_
  18. #include <string>
  19. #include <vector>
  20. #include <alibabacloud/core/RpcServiceRequest.h>
  21. #include <alibabacloud/dyvmsapi/DyvmsapiExport.h>
  22. namespace AlibabaCloud
  23. {
  24. namespace Dyvmsapi
  25. {
  26. namespace Model
  27. {
  28. class ALIBABACLOUD_DYVMSAPI_EXPORT BatchRobotSmartCallRequest : public RpcServiceRequest
  29. {
  30. public:
  31. BatchRobotSmartCallRequest();
  32. ~BatchRobotSmartCallRequest();
  33. long getResourceOwnerId()const;
  34. void setResourceOwnerId(long resourceOwnerId);
  35. bool getEarlyMediaAsr()const;
  36. void setEarlyMediaAsr(bool earlyMediaAsr);
  37. std::string getTtsParamHead()const;
  38. void setTtsParamHead(const std::string& ttsParamHead);
  39. std::string getTaskName()const;
  40. void setTaskName(const std::string& taskName);
  41. std::string getTtsParam()const;
  42. void setTtsParam(const std::string& ttsParam);
  43. std::string getAccessKeyId()const;
  44. void setAccessKeyId(const std::string& accessKeyId);
  45. std::string getCalledNumber()const;
  46. void setCalledNumber(const std::string& calledNumber);
  47. std::string getCalledShowNumber()const;
  48. void setCalledShowNumber(const std::string& calledShowNumber);
  49. bool getIsSelfLine()const;
  50. void setIsSelfLine(bool isSelfLine);
  51. std::string getResourceOwnerAccount()const;
  52. void setResourceOwnerAccount(const std::string& resourceOwnerAccount);
  53. long getOwnerId()const;
  54. void setOwnerId(long ownerId);
  55. std::string getDialogId()const;
  56. void setDialogId(const std::string& dialogId);
  57. long getScheduleTime()const;
  58. void setScheduleTime(long scheduleTime);
  59. std::string getCorpName()const;
  60. void setCorpName(const std::string& corpName);
  61. bool getScheduleCall()const;
  62. void setScheduleCall(bool scheduleCall);
  63. private:
  64. long resourceOwnerId_;
  65. bool earlyMediaAsr_;
  66. std::string ttsParamHead_;
  67. std::string taskName_;
  68. std::string ttsParam_;
  69. std::string accessKeyId_;
  70. std::string calledNumber_;
  71. std::string calledShowNumber_;
  72. bool isSelfLine_;
  73. std::string resourceOwnerAccount_;
  74. long ownerId_;
  75. std::string dialogId_;
  76. long scheduleTime_;
  77. std::string corpName_;
  78. bool scheduleCall_;
  79. };
  80. }
  81. }
  82. }
  83. #endif // !ALIBABACLOUD_DYVMSAPI_MODEL_BATCHROBOTSMARTCALLREQUEST_H_