Live sdk update.

This commit is contained in:
sdk-team
2023-02-28 09:44:16 +00:00
parent 548f34f031
commit 611c11965c
9 changed files with 49 additions and 1 deletions

View File

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

View File

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

View File

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

View File

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