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
|
2020-08-03 Version: 1.36.552
|
||||||
- Fix Some API Response Define.
|
- Fix Some API Response Define.
|
||||||
|
|
||||||
|
|||||||
@@ -39,12 +39,15 @@ namespace AlibabaCloud
|
|||||||
void setPicPath(const std::string& picPath);
|
void setPicPath(const std::string& picPath);
|
||||||
std::string getCorpId()const;
|
std::string getCorpId()const;
|
||||||
void setCorpId(const std::string& corpId);
|
void setCorpId(const std::string& corpId);
|
||||||
|
std::string getPicUrl()const;
|
||||||
|
void setPicUrl(const std::string& picUrl);
|
||||||
std::string getPicId()const;
|
std::string getPicId()const;
|
||||||
void setPicId(const std::string& picId);
|
void setPicId(const std::string& picId);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
std::string picPath_;
|
std::string picPath_;
|
||||||
std::string corpId_;
|
std::string corpId_;
|
||||||
|
std::string picUrl_;
|
||||||
std::string picId_;
|
std::string picId_;
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -49,6 +49,17 @@ void InvokeMotorModelRequest::setCorpId(const std::string& corpId)
|
|||||||
setBodyParameter("CorpId", 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
|
std::string InvokeMotorModelRequest::getPicId()const
|
||||||
{
|
{
|
||||||
return picId_;
|
return picId_;
|
||||||
|
|||||||
Reference in New Issue
Block a user