|
|
@@ -83,6 +83,8 @@ void GetUserCertificateDetailResult::parse(const std::string &payload)
|
|
|
orderId_ = std::stol(value["OrderId"].asString());
|
|
|
if(!value["ResourceGroupId"].isNull())
|
|
|
resourceGroupId_ = value["ResourceGroupId"].asString();
|
|
|
+ if(!value["Algorithm"].isNull())
|
|
|
+ algorithm_ = value["Algorithm"].asString();
|
|
|
|
|
|
}
|
|
|
|
|
|
@@ -136,6 +138,11 @@ std::string GetUserCertificateDetailResult::getEndDate()const
|
|
|
return endDate_;
|
|
|
}
|
|
|
|
|
|
+std::string GetUserCertificateDetailResult::getAlgorithm()const
|
|
|
+{
|
|
|
+ return algorithm_;
|
|
|
+}
|
|
|
+
|
|
|
std::string GetUserCertificateDetailResult::getProvince()const
|
|
|
{
|
|
|
return province_;
|