Metering 1019.
This commit is contained in:
@@ -4,6 +4,9 @@
|
||||
2020-10-19 Version: patch
|
||||
- Metering 1019.
|
||||
|
||||
2020-10-19 Version: patch
|
||||
- Metering 1019.
|
||||
|
||||
2020-10-17 Version: patch
|
||||
- Metering.
|
||||
|
||||
|
||||
@@ -49,6 +49,8 @@ namespace AlibabaCloud
|
||||
void setCommodityCode(const std::string& commodityCode);
|
||||
std::string getRegion()const;
|
||||
void setRegion(const std::string& region);
|
||||
std::string getServiceId()const;
|
||||
void setServiceId(const std::string& serviceId);
|
||||
std::string getUserId()const;
|
||||
void setUserId(const std::string& userId);
|
||||
|
||||
@@ -60,6 +62,7 @@ namespace AlibabaCloud
|
||||
std::string startTime_;
|
||||
std::string commodityCode_;
|
||||
std::string region_;
|
||||
std::string serviceId_;
|
||||
std::string userId_;
|
||||
|
||||
};
|
||||
|
||||
@@ -49,6 +49,8 @@ namespace AlibabaCloud
|
||||
void setCommodityCode(const std::string& commodityCode);
|
||||
std::string getRegion()const;
|
||||
void setRegion(const std::string& region);
|
||||
std::string getServiceId()const;
|
||||
void setServiceId(const std::string& serviceId);
|
||||
std::string getUserId()const;
|
||||
void setUserId(const std::string& userId);
|
||||
|
||||
@@ -60,6 +62,7 @@ namespace AlibabaCloud
|
||||
std::string startTime_;
|
||||
std::string commodityCode_;
|
||||
std::string region_;
|
||||
std::string serviceId_;
|
||||
std::string userId_;
|
||||
|
||||
};
|
||||
|
||||
@@ -105,6 +105,17 @@ void PostDataRequest::setRegion(const std::string& region)
|
||||
setBodyParameter("Region", region);
|
||||
}
|
||||
|
||||
std::string PostDataRequest::getServiceId()const
|
||||
{
|
||||
return serviceId_;
|
||||
}
|
||||
|
||||
void PostDataRequest::setServiceId(const std::string& serviceId)
|
||||
{
|
||||
serviceId_ = serviceId;
|
||||
setBodyParameter("ServiceId", serviceId);
|
||||
}
|
||||
|
||||
std::string PostDataRequest::getUserId()const
|
||||
{
|
||||
return userId_;
|
||||
|
||||
@@ -105,6 +105,17 @@ void SyncDataRequest::setRegion(const std::string& region)
|
||||
setParameter("Region", region);
|
||||
}
|
||||
|
||||
std::string SyncDataRequest::getServiceId()const
|
||||
{
|
||||
return serviceId_;
|
||||
}
|
||||
|
||||
void SyncDataRequest::setServiceId(const std::string& serviceId)
|
||||
{
|
||||
serviceId_ = serviceId;
|
||||
setParameter("ServiceId", serviceId);
|
||||
}
|
||||
|
||||
std::string SyncDataRequest::getUserId()const
|
||||
{
|
||||
return userId_;
|
||||
|
||||
Reference in New Issue
Block a user