Release BeautifyBody.
This commit is contained in:
@@ -1,3 +1,6 @@
|
||||
2021-08-31 Version: 1.36.863
|
||||
- Release BeautifyBody.
|
||||
|
||||
2021-08-31 Version: 1.36.862
|
||||
- Generated 2017-08-01 for `Edas`.
|
||||
|
||||
|
||||
@@ -43,6 +43,8 @@ namespace AlibabaCloud
|
||||
void setMaleLiquifyDegree(float maleLiquifyDegree);
|
||||
long getOriginalWidth()const;
|
||||
void setOriginalWidth(long originalWidth);
|
||||
bool getIsPregnant()const;
|
||||
void setIsPregnant(bool isPregnant);
|
||||
Array getFaceList()const;
|
||||
void setFaceList(const Array& faceList);
|
||||
Struct getAgeRange()const;
|
||||
@@ -63,6 +65,7 @@ namespace AlibabaCloud
|
||||
float lengthenDegree_;
|
||||
float maleLiquifyDegree_;
|
||||
long originalWidth_;
|
||||
bool isPregnant_;
|
||||
Array faceList_;
|
||||
Struct ageRange_;
|
||||
long custom_;
|
||||
|
||||
@@ -71,6 +71,17 @@ void BeautifyBodyRequest::setOriginalWidth(long originalWidth)
|
||||
setBodyParameter("OriginalWidth", std::to_string(originalWidth));
|
||||
}
|
||||
|
||||
bool BeautifyBodyRequest::getIsPregnant()const
|
||||
{
|
||||
return isPregnant_;
|
||||
}
|
||||
|
||||
void BeautifyBodyRequest::setIsPregnant(bool isPregnant)
|
||||
{
|
||||
isPregnant_ = isPregnant;
|
||||
setBodyParameter("IsPregnant", isPregnant ? "true" : "false");
|
||||
}
|
||||
|
||||
Array BeautifyBodyRequest::getFaceList()const
|
||||
{
|
||||
return faceList_;
|
||||
|
||||
Reference in New Issue
Block a user