فهرست منبع

Generated 2020-06-06 for cams.

sdk-team 3 سال پیش
والد
کامیت
5021fa7e0a

+ 1 - 1
VERSION

@@ -1 +1 @@
-1.36.1766
+1.36.1767

+ 3 - 0
cams/include/alibabacloud/cams/model/SendChatappMassMessageRequest.h

@@ -66,6 +66,8 @@ public:
 	void setFrom(const std::string &from);
 	std::string getTag() const;
 	void setTag(const std::string &tag);
+	std::string getFallBackRule() const;
+	void setFallBackRule(const std::string &fallBackRule);
 	std::string getTaskId() const;
 	void setTaskId(const std::string &taskId);
 	std::string getIsvCode() const;
@@ -94,6 +96,7 @@ private:
 	std::string channelType_;
 	std::string from_;
 	std::string tag_;
+	std::string fallBackRule_;
 	std::string taskId_;
 	std::string isvCode_;
 	std::string prodCode_;

+ 3 - 0
cams/include/alibabacloud/cams/model/SendChatappMessageRequest.h

@@ -69,6 +69,8 @@ public:
 	void setFrom(const std::string &from);
 	std::string getTag() const;
 	void setTag(const std::string &tag);
+	std::string getFallBackRule() const;
+	void setFallBackRule(const std::string &fallBackRule);
 	std::string getTrackingData() const;
 	void setTrackingData(const std::string &trackingData);
 	std::string getTaskId() const;
@@ -108,6 +110,7 @@ private:
 	std::string channelType_;
 	std::string from_;
 	std::string tag_;
+	std::string fallBackRule_;
 	std::string trackingData_;
 	std::string taskId_;
 	std::string isvCode_;

+ 9 - 0
cams/src/model/SendChatappMassMessageRequest.cc

@@ -112,6 +112,15 @@ void SendChatappMassMessageRequest::setTag(const std::string &tag) {
   setBodyParameter(std::string("Tag"), tag);
 }
 
+std::string SendChatappMassMessageRequest::getFallBackRule() const {
+  return fallBackRule_;
+}
+
+void SendChatappMassMessageRequest::setFallBackRule(const std::string &fallBackRule) {
+  fallBackRule_ = fallBackRule;
+  setBodyParameter(std::string("FallBackRule"), fallBackRule);
+}
+
 std::string SendChatappMassMessageRequest::getTaskId() const {
   return taskId_;
 }

+ 9 - 0
cams/src/model/SendChatappMessageRequest.cc

@@ -152,6 +152,15 @@ void SendChatappMessageRequest::setTag(const std::string &tag) {
   setBodyParameter(std::string("Tag"), tag);
 }
 
+std::string SendChatappMessageRequest::getFallBackRule() const {
+  return fallBackRule_;
+}
+
+void SendChatappMessageRequest::setFallBackRule(const std::string &fallBackRule) {
+  fallBackRule_ = fallBackRule;
+  setBodyParameter(std::string("FallBackRule"), fallBackRule);
+}
+
 std::string SendChatappMessageRequest::getTrackingData() const {
   return trackingData_;
 }