Api DescribeVodDomainUsageData add parameter Interval.

This commit is contained in:
sdk-team
2023-03-02 03:31:11 +00:00
parent 8f0d7fd7bf
commit 60e29b9949
3 changed files with 13 additions and 1 deletions

View File

@@ -1 +1 @@
1.36.1474 1.36.1475

View File

@@ -44,6 +44,8 @@ public:
void setOwnerId(long ownerId); void setOwnerId(long ownerId);
std::string getField() const; std::string getField() const;
void setField(const std::string &field); void setField(const std::string &field);
std::string getInterval() const;
void setInterval(const std::string &interval);
private: private:
std::string startTime_; std::string startTime_;
@@ -53,6 +55,7 @@ private:
std::string endTime_; std::string endTime_;
long ownerId_; long ownerId_;
std::string field_; std::string field_;
std::string interval_;
}; };
} // namespace Model } // namespace Model
} // namespace Vod } // namespace Vod

View File

@@ -88,3 +88,12 @@ void DescribeVodDomainUsageDataRequest::setField(const std::string &field) {
setParameter(std::string("Field"), field); setParameter(std::string("Field"), field);
} }
std::string DescribeVodDomainUsageDataRequest::getInterval() const {
return interval_;
}
void DescribeVodDomainUsageDataRequest::setInterval(const std::string &interval) {
interval_ = interval;
setParameter(std::string("Interval"), interval);
}