diff --git a/VERSION b/VERSION index 46766ec2c..abb769ba3 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.36.1373 \ No newline at end of file +1.36.1374 \ No newline at end of file diff --git a/sae/include/alibabacloud/sae/model/UpdateSecretResult.h b/sae/include/alibabacloud/sae/model/UpdateSecretResult.h index 7f1b412a1..d7dd13f33 100644 --- a/sae/include/alibabacloud/sae/model/UpdateSecretResult.h +++ b/sae/include/alibabacloud/sae/model/UpdateSecretResult.h @@ -34,7 +34,7 @@ namespace AlibabaCloud public: struct Data { - std::string secretId; + long secretId; }; diff --git a/sae/src/model/UpdateSecretResult.cc b/sae/src/model/UpdateSecretResult.cc index 30e36d49e..0fa82e149 100644 --- a/sae/src/model/UpdateSecretResult.cc +++ b/sae/src/model/UpdateSecretResult.cc @@ -41,7 +41,7 @@ void UpdateSecretResult::parse(const std::string &payload) setRequestId(value["RequestId"].asString()); auto dataNode = value["Data"]; if(!dataNode["SecretId"].isNull()) - data_.secretId = dataNode["SecretId"].asString(); + data_.secretId = std::stol(dataNode["SecretId"].asString()); if(!value["Message"].isNull()) message_ = value["Message"].asString(); if(!value["TraceId"].isNull())