Browse Source

Add PicUrl parameter for picture related API.

sdk-team 6 years ago
parent
commit
8ab4232b59

+ 3 - 0
CHANGELOG

@@ -1,3 +1,6 @@
+2020-07-03 Version: 1.36.496
+- Add PicUrl parameter for picture related API.
+
 2020-07-02 Version: 1.36.495
 - Generated 2020-05-18 for `dataworks-public`.
 

+ 1 - 1
VERSION

@@ -1 +1 @@
-1.36.495
+1.36.496

+ 3 - 0
vcs/include/alibabacloud/vcs/model/RecognizeFaceQualityRequest.h

@@ -37,6 +37,8 @@ namespace AlibabaCloud
 
 				std::string getCorpId()const;
 				void setCorpId(const std::string& corpId);
+				std::string getPicUrl()const;
+				void setPicUrl(const std::string& picUrl);
 				std::string getPicContent()const;
 				void setPicContent(const std::string& picContent);
 				std::string getPicFormat()const;
@@ -44,6 +46,7 @@ namespace AlibabaCloud
 
             private:
 				std::string corpId_;
+				std::string picUrl_;
 				std::string picContent_;
 				std::string picFormat_;
 

+ 3 - 0
vcs/include/alibabacloud/vcs/model/RecognizeImageRequest.h

@@ -37,6 +37,8 @@ namespace AlibabaCloud
 
 				std::string getCorpId()const;
 				void setCorpId(const std::string& corpId);
+				std::string getPicUrl()const;
+				void setPicUrl(const std::string& picUrl);
 				std::string getPicContent()const;
 				void setPicContent(const std::string& picContent);
 				std::string getPicFormat()const;
@@ -44,6 +46,7 @@ namespace AlibabaCloud
 
             private:
 				std::string corpId_;
+				std::string picUrl_;
 				std::string picContent_;
 				std::string picFormat_;
 

+ 11 - 0
vcs/src/model/RecognizeFaceQualityRequest.cc

@@ -38,6 +38,17 @@ void RecognizeFaceQualityRequest::setCorpId(const std::string& corpId)
 	setBodyParameter("CorpId", corpId);
 }
 
+std::string RecognizeFaceQualityRequest::getPicUrl()const
+{
+	return picUrl_;
+}
+
+void RecognizeFaceQualityRequest::setPicUrl(const std::string& picUrl)
+{
+	picUrl_ = picUrl;
+	setBodyParameter("PicUrl", picUrl);
+}
+
 std::string RecognizeFaceQualityRequest::getPicContent()const
 {
 	return picContent_;

+ 11 - 0
vcs/src/model/RecognizeImageRequest.cc

@@ -38,6 +38,17 @@ void RecognizeImageRequest::setCorpId(const std::string& corpId)
 	setBodyParameter("CorpId", corpId);
 }
 
+std::string RecognizeImageRequest::getPicUrl()const
+{
+	return picUrl_;
+}
+
+void RecognizeImageRequest::setPicUrl(const std::string& picUrl)
+{
+	picUrl_ = picUrl;
+	setBodyParameter("PicUrl", picUrl);
+}
+
 std::string RecognizeImageRequest::getPicContent()const
 {
 	return picContent_;