BindAxgRequest.h 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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_BINDAXGREQUEST_H_
  17. #define ALIBABACLOUD_DYPLSAPI_MODEL_BINDAXGREQUEST_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 BindAxgRequest : public RpcServiceRequest
  29. {
  30. public:
  31. BindAxgRequest();
  32. ~BindAxgRequest();
  33. long getResourceOwnerId()const;
  34. void setResourceOwnerId(long resourceOwnerId);
  35. int getCallDisplayType()const;
  36. void setCallDisplayType(int callDisplayType);
  37. std::string getAccessKeyId()const;
  38. void setAccessKeyId(const std::string& accessKeyId);
  39. std::string getPhoneNoX()const;
  40. void setPhoneNoX(const std::string& phoneNoX);
  41. std::string getRingConfig()const;
  42. void setRingConfig(const std::string& ringConfig);
  43. bool getASRStatus()const;
  44. void setASRStatus(bool aSRStatus);
  45. std::string getPhoneNoB()const;
  46. void setPhoneNoB(const std::string& phoneNoB);
  47. std::string getPhoneNoA()const;
  48. void setPhoneNoA(const std::string& phoneNoA);
  49. std::string getExpectCity()const;
  50. void setExpectCity(const std::string& expectCity);
  51. std::string getResourceOwnerAccount()const;
  52. void setResourceOwnerAccount(const std::string& resourceOwnerAccount);
  53. std::string getGroupId()const;
  54. void setGroupId(const std::string& groupId);
  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. std::string getCallRestrict()const;
  70. void setCallRestrict(const std::string& callRestrict);
  71. private:
  72. long resourceOwnerId_;
  73. int callDisplayType_;
  74. std::string accessKeyId_;
  75. std::string phoneNoX_;
  76. std::string ringConfig_;
  77. bool aSRStatus_;
  78. std::string phoneNoB_;
  79. std::string phoneNoA_;
  80. std::string expectCity_;
  81. std::string resourceOwnerAccount_;
  82. std::string groupId_;
  83. long ownerId_;
  84. std::string outOrderId_;
  85. std::string poolKey_;
  86. std::string expiration_;
  87. bool isRecordingEnabled_;
  88. std::string outId_;
  89. std::string aSRModelId_;
  90. std::string callRestrict_;
  91. };
  92. }
  93. }
  94. }
  95. #endif // !ALIBABACLOUD_DYPLSAPI_MODEL_BINDAXGREQUEST_H_