LINKFACE SDK Auto Released By jiayao.wjy,Version:1.30.1

Signed-off-by: yixiong.jxy <yixiong.jxy@alibaba-inc.com>
This commit is contained in:
yixiong.jxy
2018-11-02 19:41:11 +08:00
parent f87f6a1649
commit f189a9dbb2
12 changed files with 124 additions and 1 deletions

View File

@@ -69,3 +69,25 @@ void QueryAuthenticationRequest::setCurrentPage(int currentPage)
setParameter("CurrentPage", std::to_string(currentPage));
}
std::string QueryAuthenticationRequest::getDeviceName()const
{
return deviceName_;
}
void QueryAuthenticationRequest::setDeviceName(const std::string& deviceName)
{
deviceName_ = deviceName;
setParameter("DeviceName", deviceName);
}
std::string QueryAuthenticationRequest::getProductKey()const
{
return productKey_;
}
void QueryAuthenticationRequest::setProductKey(const std::string& productKey)
{
productKey_ = productKey;
setParameter("ProductKey", productKey);
}