Browse Source

由廷诚发起的CLOUDPHOTO SDK自动发布, BUILD_ID=460, 版本号:1.2.7

Signed-off-by: haowei.yao <haowei.yao@alibaba-inc.com>
haowei.yao 8 years ago
parent
commit
f725320265

+ 5 - 0
CHANGELOG

@@ -1,3 +1,8 @@
+2018-03-07 Version: 1.2.7
+1, add GetAlbumsByNames
+2, add ListEvent/CreateEvent/EditEvent/DeleteEvent/GetEvent
+3, add return IdStr for string
+
 2018-03-06 Version: 1.2.6
 1, add GetAlbumsByNames
 2, add ListEvent/CreateEvent/EditEvent/DeleteEvent/GetEvent

+ 1 - 1
VERSION

@@ -1 +1 @@
-1.2.6
+1.2.7

+ 3 - 0
cloudphoto/include/alibabacloud/cloudphoto/model/EditEventRequest.h

@@ -41,6 +41,8 @@ namespace AlibabaCloud
 				void setBannerPhotoId(const std::string& bannerPhotoId);
 				std::string getWatermarkPhotoId()const;
 				void setWatermarkPhotoId(const std::string& watermarkPhotoId);
+				std::string getIdentity()const;
+				void setIdentity(const std::string& identity);
 				std::string getSplashPhotoId()const;
 				void setSplashPhotoId(const std::string& splashPhotoId);
 				std::string getLibraryId()const;
@@ -62,6 +64,7 @@ namespace AlibabaCloud
 				std::string eventId_;
 				std::string bannerPhotoId_;
 				std::string watermarkPhotoId_;
+				std::string identity_;
 				std::string splashPhotoId_;
 				std::string libraryId_;
 				std::string weixinTitle_;

+ 11 - 0
cloudphoto/src/model/EditEventRequest.cc

@@ -58,6 +58,17 @@ void EditEventRequest::setWatermarkPhotoId(const std::string& watermarkPhotoId)
 	setParameter("WatermarkPhotoId", watermarkPhotoId);
 }
 
+std::string EditEventRequest::getIdentity()const
+{
+	return identity_;
+}
+
+void EditEventRequest::setIdentity(const std::string& identity)
+{
+	identity_ = identity;
+	setParameter("Identity", identity);
+}
+
 std::string EditEventRequest::getSplashPhotoId()const
 {
 	return splashPhotoId_;