Add new interface ListMaskDetectionResults to support to pull mask detection results.

This commit is contained in:
sdk-team
2020-02-20 18:03:02 +08:00
parent b2ee54bbfa
commit 9263bd3fcd
22 changed files with 465 additions and 50 deletions

View File

@@ -35,7 +35,7 @@ long DescribeCursorRequest::getStoreId()const
void DescribeCursorRequest::setStoreId(long storeId)
{
storeId_ = storeId;
setCoreParameter("StoreId", std::to_string(storeId));
setBodyParameter("StoreId", std::to_string(storeId));
}
std::string DescribeCursorRequest::getTime()const
@@ -46,6 +46,6 @@ std::string DescribeCursorRequest::getTime()const
void DescribeCursorRequest::setTime(const std::string& time)
{
time_ = time;
setCoreParameter("Time", time);
setBodyParameter("Time", time);
}