Release BeautifyBody.

This commit is contained in:
sdk-team
2021-08-31 03:32:03 +00:00
parent 8d712bd134
commit 22fe1a0c26
4 changed files with 18 additions and 1 deletions

View File

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

View File

@@ -1 +1 @@
1.36.862
1.36.863

View File

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

View File

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