Live sdk update.
This commit is contained in:
@@ -79,6 +79,15 @@ void DescribeLiveDelayedStreamingUsageRequest::setOwnerId(long ownerId) {
|
||||
setParameter(std::string("OwnerId"), std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string DescribeLiveDelayedStreamingUsageRequest::getInterval() const {
|
||||
return interval_;
|
||||
}
|
||||
|
||||
void DescribeLiveDelayedStreamingUsageRequest::setInterval(const std::string &interval) {
|
||||
interval_ = interval;
|
||||
setParameter(std::string("Interval"), interval);
|
||||
}
|
||||
|
||||
std::string DescribeLiveDelayedStreamingUsageRequest::getRegion() const {
|
||||
return region_;
|
||||
}
|
||||
|
||||
@@ -25,6 +25,15 @@ ModifyCasterVideoResourceRequest::ModifyCasterVideoResourceRequest()
|
||||
|
||||
ModifyCasterVideoResourceRequest::~ModifyCasterVideoResourceRequest() {}
|
||||
|
||||
int ModifyCasterVideoResourceRequest::getInputType() const {
|
||||
return inputType_;
|
||||
}
|
||||
|
||||
void ModifyCasterVideoResourceRequest::setInputType(int inputType) {
|
||||
inputType_ = inputType;
|
||||
setParameter(std::string("InputType"), std::to_string(inputType));
|
||||
}
|
||||
|
||||
int ModifyCasterVideoResourceRequest::getEndOffset() const {
|
||||
return endOffset_;
|
||||
}
|
||||
|
||||
@@ -34,6 +34,15 @@ void SendMessageToGroupRequest::setData(const std::string &data) {
|
||||
setBodyParameter(std::string("Data"), data);
|
||||
}
|
||||
|
||||
bool SendMessageToGroupRequest::getSkipAudit() const {
|
||||
return skipAudit_;
|
||||
}
|
||||
|
||||
void SendMessageToGroupRequest::setSkipAudit(bool skipAudit) {
|
||||
skipAudit_ = skipAudit;
|
||||
setParameter(std::string("SkipAudit"), skipAudit ? "true" : "false");
|
||||
}
|
||||
|
||||
int SendMessageToGroupRequest::getType() const {
|
||||
return type_;
|
||||
}
|
||||
|
||||
@@ -34,6 +34,15 @@ void SendMessageToGroupUsersRequest::setData(const std::string &data) {
|
||||
setBodyParameter(std::string("Data"), data);
|
||||
}
|
||||
|
||||
bool SendMessageToGroupUsersRequest::getSkipAudit() const {
|
||||
return skipAudit_;
|
||||
}
|
||||
|
||||
void SendMessageToGroupUsersRequest::setSkipAudit(bool skipAudit) {
|
||||
skipAudit_ = skipAudit;
|
||||
setParameter(std::string("SkipAudit"), skipAudit ? "true" : "false");
|
||||
}
|
||||
|
||||
int SendMessageToGroupUsersRequest::getType() const {
|
||||
return type_;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user