Update Parameter.
This commit is contained in:
@@ -1,3 +1,6 @@
|
||||
2020-09-01 Version: 1.36.624
|
||||
- Update Parameter.
|
||||
|
||||
2020-08-31 Version: 1.36.623
|
||||
- Support PersonList.
|
||||
|
||||
|
||||
@@ -47,12 +47,12 @@ namespace AlibabaCloud
|
||||
void setPageNumber(int pageNumber);
|
||||
std::string getTimeAggregateType()const;
|
||||
void setTimeAggregateType(const std::string& timeAggregateType);
|
||||
std::string getMaxVal()const;
|
||||
void setMaxVal(const std::string& maxVal);
|
||||
int getMaxVal()const;
|
||||
void setMaxVal(int maxVal);
|
||||
std::string getTagCode()const;
|
||||
void setTagCode(const std::string& tagCode);
|
||||
std::string getMinVal()const;
|
||||
void setMinVal(const std::string& minVal);
|
||||
int getMinVal()const;
|
||||
void setMinVal(int minVal);
|
||||
int getPageSize()const;
|
||||
void setPageSize(int pageSize);
|
||||
std::string getAggregateType()const;
|
||||
@@ -65,9 +65,9 @@ namespace AlibabaCloud
|
||||
std::string startTime_;
|
||||
int pageNumber_;
|
||||
std::string timeAggregateType_;
|
||||
std::string maxVal_;
|
||||
int maxVal_;
|
||||
std::string tagCode_;
|
||||
std::string minVal_;
|
||||
int minVal_;
|
||||
int pageSize_;
|
||||
std::string aggregateType_;
|
||||
|
||||
|
||||
@@ -93,15 +93,15 @@ void ListPersonVisitCountRequest::setTimeAggregateType(const std::string& timeAg
|
||||
setBodyParameter("TimeAggregateType", timeAggregateType);
|
||||
}
|
||||
|
||||
std::string ListPersonVisitCountRequest::getMaxVal()const
|
||||
int ListPersonVisitCountRequest::getMaxVal()const
|
||||
{
|
||||
return maxVal_;
|
||||
}
|
||||
|
||||
void ListPersonVisitCountRequest::setMaxVal(const std::string& maxVal)
|
||||
void ListPersonVisitCountRequest::setMaxVal(int maxVal)
|
||||
{
|
||||
maxVal_ = maxVal;
|
||||
setBodyParameter("MaxVal", maxVal);
|
||||
setBodyParameter("MaxVal", std::to_string(maxVal));
|
||||
}
|
||||
|
||||
std::string ListPersonVisitCountRequest::getTagCode()const
|
||||
@@ -115,15 +115,15 @@ void ListPersonVisitCountRequest::setTagCode(const std::string& tagCode)
|
||||
setBodyParameter("TagCode", tagCode);
|
||||
}
|
||||
|
||||
std::string ListPersonVisitCountRequest::getMinVal()const
|
||||
int ListPersonVisitCountRequest::getMinVal()const
|
||||
{
|
||||
return minVal_;
|
||||
}
|
||||
|
||||
void ListPersonVisitCountRequest::setMinVal(const std::string& minVal)
|
||||
void ListPersonVisitCountRequest::setMinVal(int minVal)
|
||||
{
|
||||
minVal_ = minVal;
|
||||
setBodyParameter("MinVal", minVal);
|
||||
setBodyParameter("MinVal", std::to_string(minVal));
|
||||
}
|
||||
|
||||
int ListPersonVisitCountRequest::getPageSize()const
|
||||
|
||||
Reference in New Issue
Block a user