Add video compose api.

This commit is contained in:
sdk-team
2020-07-08 17:39:55 +08:00
parent 53ce2f6947
commit 7959141d87
9 changed files with 70 additions and 48 deletions

View File

@@ -43,14 +43,28 @@ void GetVideoComposeResultResult::parse(const std::string &payload)
message_ = value["Message"].asString();
if(!value["VideoUrl"].isNull())
videoUrl_ = value["VideoUrl"].asString();
if(!value["Code"].isNull())
code_ = value["Code"].asString();
if(!value["Status"].isNull())
status_ = value["Status"].asString();
}
std::string GetVideoComposeResultResult::getStatus()const
{
return status_;
}
std::string GetVideoComposeResultResult::getMessage()const
{
return message_;
}
std::string GetVideoComposeResultResult::getCode()const
{
return code_;
}
std::string GetVideoComposeResultResult::getVideoUrl()const
{
return videoUrl_;