Generated 2020-06-06 for cams.

This commit is contained in:
sdk-team
2023-09-21 11:46:29 +00:00
parent 71e4c1576e
commit 5021fa7e0a
5 changed files with 25 additions and 1 deletions

View File

@@ -1 +1 @@
1.36.1766
1.36.1767

View File

@@ -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_;

View File

@@ -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_;

View File

@@ -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_;
}

View File

@@ -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_;
}