Generated 2020-06-06 for cams.
This commit is contained in:
@@ -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_;
|
||||
|
||||
@@ -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_;
|
||||
|
||||
@@ -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_;
|
||||
}
|
||||
|
||||
@@ -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_;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user