Update Function.

This commit is contained in:
sdk-team
2021-01-15 08:43:24 +00:00
parent 740062e96f
commit 5def51b35c
5 changed files with 18 additions and 3 deletions

View File

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

View File

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

View File

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

View File

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

View File

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