由廷诚发起的CLOUDPHOTO SDK自动发布, BUILD_ID=460, 版本号:1.2.7
Signed-off-by: haowei.yao <haowei.yao@alibaba-inc.com>
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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_;
|
||||
|
||||
@@ -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_;
|
||||
|
||||
Reference in New Issue
Block a user