SAS-API SDK Auto Released By shenshi,Version:1.34.22
Signed-off-by: haowei.yao <haowei.yao@alibaba-inc.com>
This commit is contained in:
82
sas-api/src/model/DescribeHitRatePieRequest.cc
Normal file
82
sas-api/src/model/DescribeHitRatePieRequest.cc
Normal file
@@ -0,0 +1,82 @@
|
||||
/*
|
||||
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
#include <alibabacloud/sas-api/model/DescribeHitRatePieRequest.h>
|
||||
|
||||
using AlibabaCloud::Sas-api::Model::DescribeHitRatePieRequest;
|
||||
|
||||
DescribeHitRatePieRequest::DescribeHitRatePieRequest() :
|
||||
RpcServiceRequest("sas-api", "2017-07-05", "DescribeHitRatePie")
|
||||
{}
|
||||
|
||||
DescribeHitRatePieRequest::~DescribeHitRatePieRequest()
|
||||
{}
|
||||
|
||||
std::string DescribeHitRatePieRequest::getEndDate()const
|
||||
{
|
||||
return endDate_;
|
||||
}
|
||||
|
||||
void DescribeHitRatePieRequest::setEndDate(const std::string& endDate)
|
||||
{
|
||||
endDate_ = endDate;
|
||||
setParameter("EndDate", endDate);
|
||||
}
|
||||
|
||||
std::string DescribeHitRatePieRequest::getSourceIp()const
|
||||
{
|
||||
return sourceIp_;
|
||||
}
|
||||
|
||||
void DescribeHitRatePieRequest::setSourceIp(const std::string& sourceIp)
|
||||
{
|
||||
sourceIp_ = sourceIp;
|
||||
setParameter("SourceIp", sourceIp);
|
||||
}
|
||||
|
||||
std::string DescribeHitRatePieRequest::getStartDate()const
|
||||
{
|
||||
return startDate_;
|
||||
}
|
||||
|
||||
void DescribeHitRatePieRequest::setStartDate(const std::string& startDate)
|
||||
{
|
||||
startDate_ = startDate;
|
||||
setParameter("StartDate", startDate);
|
||||
}
|
||||
|
||||
int DescribeHitRatePieRequest::getHitDay()const
|
||||
{
|
||||
return hitDay_;
|
||||
}
|
||||
|
||||
void DescribeHitRatePieRequest::setHitDay(int hitDay)
|
||||
{
|
||||
hitDay_ = hitDay;
|
||||
setParameter("HitDay", std::to_string(hitDay));
|
||||
}
|
||||
|
||||
int DescribeHitRatePieRequest::getApiType()const
|
||||
{
|
||||
return apiType_;
|
||||
}
|
||||
|
||||
void DescribeHitRatePieRequest::setApiType(int apiType)
|
||||
{
|
||||
apiType_ = apiType;
|
||||
setParameter("ApiType", std::to_string(apiType));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user