Add request parameter groupType for OnsGroupCreate.

This commit is contained in:
sdk-team
2019-12-31 14:36:25 +08:00
parent 76dd650cd7
commit a8e2a1e669
4 changed files with 18 additions and 1 deletions

View File

@@ -60,3 +60,14 @@ void OnsGroupCreateRequest::setInstanceId(const std::string& instanceId)
setCoreParameter("InstanceId", instanceId);
}
std::string OnsGroupCreateRequest::getGroupType()const
{
return groupType_;
}
void OnsGroupCreateRequest::setGroupType(const std::string& groupType)
{
groupType_ = groupType;
setCoreParameter("GroupType", groupType);
}