Compare commits

..

1 Commits
1.3.7 ... 1.3.8

Author SHA1 Message Date
haowei.yao
442f784284 由荣旸发起的TESLAMAXCOMPUTE SDK自动发布, 版本号:1.3.8
Signed-off-by: haowei.yao <haowei.yao@alibaba-inc.com>
2018-03-30 19:17:39 +08:00
4 changed files with 12 additions and 9 deletions

View File

@@ -1,3 +1,6 @@
2018-03-30 Version: 1.3.8
1, API QueryCustomerSaleInfo arguments update.
2018-03-29 Version: 1.3.7
1, edit FetchLibraries return param format

View File

@@ -1 +1 @@
1.3.7
1.3.8

View File

@@ -35,11 +35,11 @@ namespace AlibabaCloud
QueryCustomerSaleInfoRequest();
~QueryCustomerSaleInfoRequest();
std::string getRegion()const;
void setRegion(const std::string& region);
std::string getRegionName()const;
void setRegionName(const std::string& regionName);
private:
std::string region_;
std::string regionName_;
};
}

View File

@@ -25,14 +25,14 @@ QueryCustomerSaleInfoRequest::QueryCustomerSaleInfoRequest() :
QueryCustomerSaleInfoRequest::~QueryCustomerSaleInfoRequest()
{}
std::string QueryCustomerSaleInfoRequest::getRegion()const
std::string QueryCustomerSaleInfoRequest::getRegionName()const
{
return region_;
return regionName_;
}
void QueryCustomerSaleInfoRequest::setRegion(const std::string& region)
void QueryCustomerSaleInfoRequest::setRegionName(const std::string& regionName)
{
region_ = region;
setParameter("Region", region);
regionName_ = regionName;
setParameter("RegionName", regionName);
}