Rebuild sdk (#60)

* rebuild sdk

* fixed ut include Utils.h
This commit is contained in:
Axios
2019-08-14 14:34:09 +08:00
committed by GitHub
parent f3d9843e63
commit c43307bc80
11893 changed files with 462166 additions and 221301 deletions

View File

@@ -33,7 +33,7 @@ int DeleteApRadioSsidConfigRequest::getInstantlyEffective()const
void DeleteApRadioSsidConfigRequest::setInstantlyEffective(int instantlyEffective)
{
instantlyEffective_ = instantlyEffective;
setParameter("InstantlyEffective", std::to_string(instantlyEffective));
setCoreParameter("InstantlyEffective", std::to_string(instantlyEffective));
}
long DeleteApRadioSsidConfigRequest::getId()const
@@ -44,7 +44,7 @@ long DeleteApRadioSsidConfigRequest::getId()const
void DeleteApRadioSsidConfigRequest::setId(long id)
{
id_ = id;
setParameter("Id", std::to_string(id));
setCoreParameter("Id", std::to_string(id));
}
std::string DeleteApRadioSsidConfigRequest::getAccessKeyId()const
@@ -55,6 +55,6 @@ std::string DeleteApRadioSsidConfigRequest::getAccessKeyId()const
void DeleteApRadioSsidConfigRequest::setAccessKeyId(const std::string& accessKeyId)
{
accessKeyId_ = accessKeyId;
setParameter("AccessKeyId", accessKeyId);
setCoreParameter("AccessKeyId", accessKeyId);
}