Generated 2016-11-01 for live.

This commit is contained in:
sdk-team
2021-05-06 12:57:31 +00:00
parent e148041dec
commit 1d202f4d30
5 changed files with 19 additions and 2 deletions

View File

@@ -1,3 +1,6 @@
2021-05-06 Version: 1.36.711
- Generated 2016-11-01 for `live`.
2021-05-06 Version: 1.36.710
- Update Open API.

View File

@@ -1 +1 @@
1.36.710
1.36.711

File diff suppressed because one or more lines are too long

View File

@@ -45,6 +45,8 @@ namespace AlibabaCloud
void setEndTime(const std::string& endTime);
long getOwnerId()const;
void setOwnerId(long ownerId);
std::string getInterval()const;
void setInterval(const std::string& interval);
private:
std::string startTime_;
@@ -52,6 +54,7 @@ namespace AlibabaCloud
std::string domainName_;
std::string endTime_;
long ownerId_;
std::string interval_;
};
}

View File

@@ -82,3 +82,14 @@ void DescribeLiveDomainStreamTranscodeDataRequest::setOwnerId(long ownerId)
setParameter("OwnerId", std::to_string(ownerId));
}
std::string DescribeLiveDomainStreamTranscodeDataRequest::getInterval()const
{
return interval_;
}
void DescribeLiveDomainStreamTranscodeDataRequest::setInterval(const std::string& interval)
{
interval_ = interval;
setParameter("Interval", interval);
}