QueryInstanceBillResponse add ServicePeriod.

This commit is contained in:
sdk-team
2019-08-15 10:49:30 +08:00
parent a00b4c14e4
commit 2dcbea3a7f
4 changed files with 7 additions and 1 deletions

View File

@@ -1,3 +1,6 @@
2019-08-15 Version 1.36.88
- QueryInstanceBillResponse add ServicePeriod.
2019-08-14 Version 1.36.87
- Generated 2018-01-20 for `Iot`.

View File

@@ -1 +1 @@
1.36.87
1.36.88

View File

@@ -63,6 +63,7 @@ namespace AlibabaCloud
std::string billingItem;
std::string nickName;
std::string intranetIP;
std::string servicePeriod;
float deductedByResourcePackage;
std::string usageUnit;
long ownerID;

View File

@@ -128,6 +128,8 @@ void QueryInstanceBillResult::parse(const std::string &payload)
itemObject.zone = value["Zone"].asString();
if(!value["Item"].isNull())
itemObject.item = value["Item"].asString();
if(!value["ServicePeriod"].isNull())
itemObject.servicePeriod = value["ServicePeriod"].asString();
data_.items.push_back(itemObject);
}
if(!value["Success"].isNull())