CreateDataLimit add enable filed.
This commit is contained in:
@@ -1,3 +1,6 @@
|
||||
2022-04-27 Version: 1.36.1118
|
||||
- CreateDataLimit add enable filed.
|
||||
|
||||
2022-04-26 Version: 1.36.1117
|
||||
- Support to pass variables to authentication IVR.
|
||||
|
||||
|
||||
@@ -40,6 +40,8 @@ public:
|
||||
void setBatchCreate(bool batchCreate);
|
||||
std::string getSourceIp() const;
|
||||
void setSourceIp(const std::string &sourceIp);
|
||||
int getEnable() const;
|
||||
void setEnable(int enable);
|
||||
std::string getDataLimitList() const;
|
||||
void setDataLimitList(const std::string &dataLimitList);
|
||||
std::string getLang() const;
|
||||
@@ -71,6 +73,7 @@ private:
|
||||
std::string password_;
|
||||
bool batchCreate_;
|
||||
std::string sourceIp_;
|
||||
int enable_;
|
||||
std::string dataLimitList_;
|
||||
std::string lang_;
|
||||
std::string serviceRegionId_;
|
||||
|
||||
@@ -70,6 +70,15 @@ void CreateDataLimitRequest::setSourceIp(const std::string &sourceIp) {
|
||||
setParameter(std::string("SourceIp"), sourceIp);
|
||||
}
|
||||
|
||||
int CreateDataLimitRequest::getEnable() const {
|
||||
return enable_;
|
||||
}
|
||||
|
||||
void CreateDataLimitRequest::setEnable(int enable) {
|
||||
enable_ = enable;
|
||||
setParameter(std::string("Enable"), std::to_string(enable));
|
||||
}
|
||||
|
||||
std::string CreateDataLimitRequest::getDataLimitList() const {
|
||||
return dataLimitList_;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user