BindAxnExtensionRequest.h 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  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_DYPLSAPI_MODEL_BINDAXNEXTENSIONREQUEST_H_
  17. #define ALIBABACLOUD_DYPLSAPI_MODEL_BINDAXNEXTENSIONREQUEST_H_
  18. #include <string>
  19. #include <vector>
  20. #include <alibabacloud/core/RpcServiceRequest.h>
  21. #include <alibabacloud/dyplsapi/DyplsapiExport.h>
  22. namespace AlibabaCloud
  23. {
  24. namespace Dyplsapi
  25. {
  26. namespace Model
  27. {
  28. class ALIBABACLOUD_DYPLSAPI_EXPORT BindAxnExtensionRequest : public RpcServiceRequest
  29. {
  30. public:
  31. BindAxnExtensionRequest();
  32. ~BindAxnExtensionRequest();
  33. long getResourceOwnerId()const;
  34. void setResourceOwnerId(long resourceOwnerId);
  35. std::string getExtension()const;
  36. void setExtension(const std::string& extension);
  37. int getCallDisplayType()const;
  38. void setCallDisplayType(int callDisplayType);
  39. std::string getAccessKeyId()const;
  40. void setAccessKeyId(const std::string& accessKeyId);
  41. std::string getPhoneNoX()const;
  42. void setPhoneNoX(const std::string& phoneNoX);
  43. std::string getRingConfig()const;
  44. void setRingConfig(const std::string& ringConfig);
  45. bool getASRStatus()const;
  46. void setASRStatus(bool aSRStatus);
  47. std::string getPhoneNoB()const;
  48. void setPhoneNoB(const std::string& phoneNoB);
  49. std::string getPhoneNoA()const;
  50. void setPhoneNoA(const std::string& phoneNoA);
  51. std::string getExpectCity()const;
  52. void setExpectCity(const std::string& expectCity);
  53. std::string getResourceOwnerAccount()const;
  54. void setResourceOwnerAccount(const std::string& resourceOwnerAccount);
  55. long getOwnerId()const;
  56. void setOwnerId(long ownerId);
  57. std::string getOutOrderId()const;
  58. void setOutOrderId(const std::string& outOrderId);
  59. std::string getPoolKey()const;
  60. void setPoolKey(const std::string& poolKey);
  61. std::string getExpiration()const;
  62. void setExpiration(const std::string& expiration);
  63. bool getIsRecordingEnabled()const;
  64. void setIsRecordingEnabled(bool isRecordingEnabled);
  65. std::string getOutId()const;
  66. void setOutId(const std::string& outId);
  67. std::string getASRModelId()const;
  68. void setASRModelId(const std::string& aSRModelId);
  69. private:
  70. long resourceOwnerId_;
  71. std::string extension_;
  72. int callDisplayType_;
  73. std::string accessKeyId_;
  74. std::string phoneNoX_;
  75. std::string ringConfig_;
  76. bool aSRStatus_;
  77. std::string phoneNoB_;
  78. std::string phoneNoA_;
  79. std::string expectCity_;
  80. std::string resourceOwnerAccount_;
  81. long ownerId_;
  82. std::string outOrderId_;
  83. std::string poolKey_;
  84. std::string expiration_;
  85. bool isRecordingEnabled_;
  86. std::string outId_;
  87. std::string aSRModelId_;
  88. };
  89. }
  90. }
  91. }
  92. #endif // !ALIBABACLOUD_DYPLSAPI_MODEL_BINDAXNEXTENSIONREQUEST_H_