CreateNode API add return NodeId.

This commit is contained in:
sdk-team
2020-04-15 14:44:32 +08:00
parent d7e14e0c1b
commit eeaeed4023
4 changed files with 13 additions and 1 deletions

View File

@@ -37,11 +37,13 @@ namespace AlibabaCloud
CreateNodeResult();
explicit CreateNodeResult(const std::string &payload);
~CreateNodeResult();
std::string getNodeId()const;
std::string getOrderId()const;
protected:
void parse(const std::string &payload);
private:
std::string nodeId_;
std::string orderId_;
};