Api DescribeVodDomainUsageData add parameter Interval.
This commit is contained in:
@@ -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
|
||||||
|
|||||||
@@ -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);
|
||||||
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user