Update SegmentAnimal SegmentCommonImage.
This commit is contained in:
@@ -1,3 +1,6 @@
|
||||
2020-12-22 Version: patch
|
||||
- Update SegmentAnimal SegmentCommonImage.
|
||||
|
||||
2020-12-22 Version: patch
|
||||
- Support SLB latest OpenAPIs.
|
||||
|
||||
|
||||
@@ -35,10 +35,13 @@ namespace AlibabaCloud
|
||||
SegmentAnimalRequest();
|
||||
~SegmentAnimalRequest();
|
||||
|
||||
std::string getReturnForm()const;
|
||||
void setReturnForm(const std::string& returnForm);
|
||||
std::string getImageURL()const;
|
||||
void setImageURL(const std::string& imageURL);
|
||||
|
||||
private:
|
||||
std::string returnForm_;
|
||||
std::string imageURL_;
|
||||
|
||||
};
|
||||
|
||||
@@ -35,10 +35,13 @@ namespace AlibabaCloud
|
||||
SegmentCommonImageRequest();
|
||||
~SegmentCommonImageRequest();
|
||||
|
||||
std::string getReturnForm()const;
|
||||
void setReturnForm(const std::string& returnForm);
|
||||
std::string getImageURL()const;
|
||||
void setImageURL(const std::string& imageURL);
|
||||
|
||||
private:
|
||||
std::string returnForm_;
|
||||
std::string imageURL_;
|
||||
|
||||
};
|
||||
|
||||
@@ -27,6 +27,17 @@ SegmentAnimalRequest::SegmentAnimalRequest() :
|
||||
SegmentAnimalRequest::~SegmentAnimalRequest()
|
||||
{}
|
||||
|
||||
std::string SegmentAnimalRequest::getReturnForm()const
|
||||
{
|
||||
return returnForm_;
|
||||
}
|
||||
|
||||
void SegmentAnimalRequest::setReturnForm(const std::string& returnForm)
|
||||
{
|
||||
returnForm_ = returnForm;
|
||||
setParameter("ReturnForm", returnForm);
|
||||
}
|
||||
|
||||
std::string SegmentAnimalRequest::getImageURL()const
|
||||
{
|
||||
return imageURL_;
|
||||
|
||||
@@ -27,6 +27,17 @@ SegmentCommonImageRequest::SegmentCommonImageRequest() :
|
||||
SegmentCommonImageRequest::~SegmentCommonImageRequest()
|
||||
{}
|
||||
|
||||
std::string SegmentCommonImageRequest::getReturnForm()const
|
||||
{
|
||||
return returnForm_;
|
||||
}
|
||||
|
||||
void SegmentCommonImageRequest::setReturnForm(const std::string& returnForm)
|
||||
{
|
||||
returnForm_ = returnForm;
|
||||
setParameter("ReturnForm", returnForm);
|
||||
}
|
||||
|
||||
std::string SegmentCommonImageRequest::getImageURL()const
|
||||
{
|
||||
return imageURL_;
|
||||
|
||||
Reference in New Issue
Block a user