Browse Source

Update Function.

sdk-team 5 years ago
parent
commit
5def51b35c

+ 3 - 0
CHANGELOG

@@ -1,6 +1,9 @@
 2021-01-15 Version: patch
 - Update Function.
 
+2021-01-15 Version: patch
+- Update Function.
+
 2021-01-15 Version: patch
 - Add API CreateSortScriptValidation.
 - Add parameter resourceGroupId to API ListAppGroups.

+ 5 - 3
cdrs/include/alibabacloud/cdrs/model/ListCorpTrackDetailResult.h

@@ -35,16 +35,18 @@ namespace AlibabaCloud
 				struct DataItem
 				{
 					std::string startTargetImage;
+					std::string sourceUrl;
 					std::string startSourceImage;
 					std::string corpId;
-					std::string personId;
 					std::string deviceId;
 					std::string endTargetImage;
 					std::string startTime;
-					std::string endSourceImage;
+					std::string targetUrl;
 					std::string date;
-					std::string lastTime;
 					std::string groupId;
+					std::string personId;
+					std::string endSourceImage;
+					std::string lastTime;
 				};
 
 

+ 2 - 0
cdrs/include/alibabacloud/cdrs/model/ListPersonResultResult.h

@@ -35,12 +35,14 @@ namespace AlibabaCloud
 				struct Datas
 				{
 					std::string profession;
+					std::string sourceUrl;
 					std::string personId;
 					std::string address;
 					std::string transportation;
 					std::string updateTime;
 					std::string personType;
 					std::string gender;
+					std::string targetUrl;
 					std::string age;
 					std::string hotSpotAddress;
 				};

+ 4 - 0
cdrs/src/model/ListCorpTrackDetailResult.cc

@@ -65,6 +65,10 @@ void ListCorpTrackDetailResult::parse(const std::string &payload)
 			dataObject.corpId = valueDataDataItem["CorpId"].asString();
 		if(!valueDataDataItem["EndTargetImage"].isNull())
 			dataObject.endTargetImage = valueDataDataItem["EndTargetImage"].asString();
+		if(!valueDataDataItem["SourceUrl"].isNull())
+			dataObject.sourceUrl = valueDataDataItem["SourceUrl"].asString();
+		if(!valueDataDataItem["TargetUrl"].isNull())
+			dataObject.targetUrl = valueDataDataItem["TargetUrl"].asString();
 		data_.push_back(dataObject);
 	}
 	if(!value["Code"].isNull())

+ 4 - 0
cdrs/src/model/ListPersonResultResult.cc

@@ -61,6 +61,10 @@ void ListPersonResultResult::parse(const std::string &payload)
 			dataObject.hotSpotAddress = valueDataDatas["HotSpotAddress"].asString();
 		if(!valueDataDatas["UpdateTime"].isNull())
 			dataObject.updateTime = valueDataDatas["UpdateTime"].asString();
+		if(!valueDataDatas["TargetUrl"].isNull())
+			dataObject.targetUrl = valueDataDatas["TargetUrl"].asString();
+		if(!valueDataDatas["SourceUrl"].isNull())
+			dataObject.sourceUrl = valueDataDatas["SourceUrl"].asString();
 		data_.push_back(dataObject);
 	}
 	if(!value["Code"].isNull())