CreateOrUpdateIMRobotRequest.h 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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_ARMS_MODEL_CREATEORUPDATEIMROBOTREQUEST_H_
  17. #define ALIBABACLOUD_ARMS_MODEL_CREATEORUPDATEIMROBOTREQUEST_H_
  18. #include <alibabacloud/arms/ARMSExport.h>
  19. #include <alibabacloud/core/RpcServiceRequest.h>
  20. #include <string>
  21. #include <vector>
  22. #include <map>
  23. namespace AlibabaCloud {
  24. namespace ARMS {
  25. namespace Model {
  26. class ALIBABACLOUD_ARMS_EXPORT CreateOrUpdateIMRobotRequest : public RpcServiceRequest {
  27. public:
  28. CreateOrUpdateIMRobotRequest();
  29. ~CreateOrUpdateIMRobotRequest();
  30. bool getDailyNoc() const;
  31. void setDailyNoc(bool dailyNoc);
  32. std::string getRobotAddress() const;
  33. void setRobotAddress(const std::string &robotAddress);
  34. std::string getDingSignKey() const;
  35. void setDingSignKey(const std::string &dingSignKey);
  36. std::string getRobotName() const;
  37. void setRobotName(const std::string &robotName);
  38. long getRobotId() const;
  39. void setRobotId(long robotId);
  40. std::string getType() const;
  41. void setType(const std::string &type);
  42. std::string getProxyUserId() const;
  43. void setProxyUserId(const std::string &proxyUserId);
  44. std::string getDailyNocTime() const;
  45. void setDailyNocTime(const std::string &dailyNocTime);
  46. std::string getToken() const;
  47. void setToken(const std::string &token);
  48. std::string getCardTemplate() const;
  49. void setCardTemplate(const std::string &cardTemplate);
  50. bool getEnableOutgoing() const;
  51. void setEnableOutgoing(bool enableOutgoing);
  52. private:
  53. bool dailyNoc_;
  54. std::string robotAddress_;
  55. std::string dingSignKey_;
  56. std::string robotName_;
  57. long robotId_;
  58. std::string type_;
  59. std::string proxyUserId_;
  60. std::string dailyNocTime_;
  61. std::string token_;
  62. std::string cardTemplate_;
  63. bool enableOutgoing_;
  64. };
  65. } // namespace Model
  66. } // namespace ARMS
  67. } // namespace AlibabaCloud
  68. #endif // !ALIBABACLOUD_ARMS_MODEL_CREATEORUPDATEIMROBOTREQUEST_H_