From f725320265f0d422c8e385ec3c0e9b7d9df92421 Mon Sep 17 00:00:00 2001 From: "haowei.yao" Date: Wed, 7 Mar 2018 17:07:15 +0800 Subject: [PATCH] =?UTF-8?q?=E7=94=B1=E5=BB=B7=E8=AF=9A=E5=8F=91=E8=B5=B7?= =?UTF-8?q?=E7=9A=84CLOUDPHOTO=20SDK=E8=87=AA=E5=8A=A8=E5=8F=91=E5=B8=83,?= =?UTF-8?q?=20BUILD=5FID=3D460,=20=E7=89=88=E6=9C=AC=E5=8F=B7=EF=BC=9A1.2.?= =?UTF-8?q?7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: haowei.yao --- CHANGELOG | 5 +++++ VERSION | 2 +- .../alibabacloud/cloudphoto/model/EditEventRequest.h | 3 +++ cloudphoto/src/model/EditEventRequest.cc | 11 +++++++++++ 4 files changed, 20 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index 197f7e415..a4f2e04e3 100644 --- a/CHANGELOG +++ b/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 diff --git a/VERSION b/VERSION index 7e099ec5d..a77d7d927 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.2.6 \ No newline at end of file +1.2.7 \ No newline at end of file diff --git a/cloudphoto/include/alibabacloud/cloudphoto/model/EditEventRequest.h b/cloudphoto/include/alibabacloud/cloudphoto/model/EditEventRequest.h index 3ad7a497f..219f6cc9e 100644 --- a/cloudphoto/include/alibabacloud/cloudphoto/model/EditEventRequest.h +++ b/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_; diff --git a/cloudphoto/src/model/EditEventRequest.cc b/cloudphoto/src/model/EditEventRequest.cc index a3980ce77..1983caf76 100644 --- a/cloudphoto/src/model/EditEventRequest.cc +++ b/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_;