Add source picture url for Monitor.
This commit is contained in:
@@ -1,3 +1,6 @@
|
||||
2020-08-03 Version: 1.36.553
|
||||
- Add source picture url for Monitor.
|
||||
|
||||
2020-08-03 Version: 1.36.552
|
||||
- Fix Some API Response Define.
|
||||
|
||||
|
||||
@@ -39,12 +39,15 @@ namespace AlibabaCloud
|
||||
void setPicPath(const std::string& picPath);
|
||||
std::string getCorpId()const;
|
||||
void setCorpId(const std::string& corpId);
|
||||
std::string getPicUrl()const;
|
||||
void setPicUrl(const std::string& picUrl);
|
||||
std::string getPicId()const;
|
||||
void setPicId(const std::string& picId);
|
||||
|
||||
private:
|
||||
std::string picPath_;
|
||||
std::string corpId_;
|
||||
std::string picUrl_;
|
||||
std::string picId_;
|
||||
|
||||
};
|
||||
|
||||
@@ -49,6 +49,17 @@ void InvokeMotorModelRequest::setCorpId(const std::string& corpId)
|
||||
setBodyParameter("CorpId", corpId);
|
||||
}
|
||||
|
||||
std::string InvokeMotorModelRequest::getPicUrl()const
|
||||
{
|
||||
return picUrl_;
|
||||
}
|
||||
|
||||
void InvokeMotorModelRequest::setPicUrl(const std::string& picUrl)
|
||||
{
|
||||
picUrl_ = picUrl;
|
||||
setBodyParameter("PicUrl", picUrl);
|
||||
}
|
||||
|
||||
std::string InvokeMotorModelRequest::getPicId()const
|
||||
{
|
||||
return picId_;
|
||||
|
||||
Reference in New Issue
Block a user