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

Signed-off-by: haowei.yao <haowei.yao@alibaba-inc.com>
This commit is contained in:
haowei.yao
2018-03-07 17:07:15 +08:00
parent 728ece9cd1
commit f725320265
4 changed files with 20 additions and 1 deletions

View File

@@ -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

View File

@@ -1 +1 @@
1.2.6
1.2.7

View File

@@ -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_;

View File

@@ -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_;