Fix DescribeIpcLiveAddress , add in params.

This commit is contained in:
sdk-team
2020-05-18 12:17:24 +08:00
parent 1a056a97c6
commit 2cc7e5ae64
4 changed files with 18 additions and 1 deletions

View File

@@ -49,3 +49,14 @@ void DescribeIpcLiveAddressRequest::setStoreId(long storeId)
setBodyParameter("StoreId", std::to_string(storeId));
}
std::string DescribeIpcLiveAddressRequest::getProtocolType()const
{
return protocolType_;
}
void DescribeIpcLiveAddressRequest::setProtocolType(const std::string& protocolType)
{
protocolType_ = protocolType;
setBodyParameter("ProtocolType", protocolType);
}