Browse Source

由荣旸发起的TESLAMAXCOMPUTE SDK自动发布, 版本号:1.3.8

Signed-off-by: haowei.yao <haowei.yao@alibaba-inc.com>
haowei.yao 8 years ago
parent
commit
442f784284

+ 3 - 0
CHANGELOG

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

+ 1 - 1
VERSION

@@ -1 +1 @@
-1.3.7
+1.3.8

+ 3 - 3
teslamaxcompute/include/alibabacloud/teslamaxcompute/model/QueryCustomerSaleInfoRequest.h

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

+ 5 - 5
teslamaxcompute/src/model/QueryCustomerSaleInfoRequest.cc

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