UpdateSubscriptionRequest.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_UPDATESUBSCRIPTIONREQUEST_H_
  17. #define ALIBABACLOUD_DYPLSAPI_MODEL_UPDATESUBSCRIPTIONREQUEST_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 UpdateSubscriptionRequest : public RpcServiceRequest
  29. {
  30. public:
  31. UpdateSubscriptionRequest();
  32. ~UpdateSubscriptionRequest();
  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 getProductType()const;
  40. void setProductType(const std::string& productType);
  41. std::string getSubsId()const;
  42. void setSubsId(const std::string& subsId);
  43. std::string getPhoneNoX()const;
  44. void setPhoneNoX(const std::string& phoneNoX);
  45. std::string getRingConfig()const;
  46. void setRingConfig(const std::string& ringConfig);
  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 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 getPoolKey()const;
  58. void setPoolKey(const std::string& poolKey);
  59. std::string getExpiration()const;
  60. void setExpiration(const std::string& expiration);
  61. std::string getOutId()const;
  62. void setOutId(const std::string& outId);
  63. bool getIsRecordingEnabled()const;
  64. void setIsRecordingEnabled(bool isRecordingEnabled);
  65. std::string getOperateType()const;
  66. void setOperateType(const std::string& operateType);
  67. std::string getCallRestrict()const;
  68. void setCallRestrict(const std::string& callRestrict);
  69. private:
  70. long resourceOwnerId_;
  71. int callDisplayType_;
  72. std::string accessKeyId_;
  73. std::string productType_;
  74. std::string subsId_;
  75. std::string phoneNoX_;
  76. std::string ringConfig_;
  77. std::string phoneNoB_;
  78. std::string phoneNoA_;
  79. std::string resourceOwnerAccount_;
  80. std::string groupId_;
  81. long ownerId_;
  82. std::string poolKey_;
  83. std::string expiration_;
  84. std::string outId_;
  85. bool isRecordingEnabled_;
  86. std::string operateType_;
  87. std::string callRestrict_;
  88. };
  89. }
  90. }
  91. }
  92. #endif // !ALIBABACLOUD_DYPLSAPI_MODEL_UPDATESUBSCRIPTIONREQUEST_H_