118 lines
3.0 KiB
C++
118 lines
3.0 KiB
C++
/*
|
|
* 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/cusanalytic_sc_online/model/GetAnalyzePlaceDataRequest.h>
|
|
|
|
using AlibabaCloud::Cusanalytic_sc_online::Model::GetAnalyzePlaceDataRequest;
|
|
|
|
GetAnalyzePlaceDataRequest::GetAnalyzePlaceDataRequest() :
|
|
RpcServiceRequest("cusanalytic_sc_online", "2019-05-24", "GetAnalyzePlaceData")
|
|
{
|
|
setMethod(HttpRequest::Method::Post);
|
|
}
|
|
|
|
GetAnalyzePlaceDataRequest::~GetAnalyzePlaceDataRequest()
|
|
{}
|
|
|
|
long GetAnalyzePlaceDataRequest::getEndUVCount()const
|
|
{
|
|
return endUVCount_;
|
|
}
|
|
|
|
void GetAnalyzePlaceDataRequest::setEndUVCount(long endUVCount)
|
|
{
|
|
endUVCount_ = endUVCount;
|
|
setBodyParameter("EndUVCount", std::to_string(endUVCount));
|
|
}
|
|
|
|
std::string GetAnalyzePlaceDataRequest::getStartDate()const
|
|
{
|
|
return startDate_;
|
|
}
|
|
|
|
void GetAnalyzePlaceDataRequest::setStartDate(const std::string& startDate)
|
|
{
|
|
startDate_ = startDate;
|
|
setBodyParameter("StartDate", startDate);
|
|
}
|
|
|
|
long GetAnalyzePlaceDataRequest::getStoreId()const
|
|
{
|
|
return storeId_;
|
|
}
|
|
|
|
void GetAnalyzePlaceDataRequest::setStoreId(long storeId)
|
|
{
|
|
storeId_ = storeId;
|
|
setBodyParameter("StoreId", std::to_string(storeId));
|
|
}
|
|
|
|
long GetAnalyzePlaceDataRequest::getParentAmount()const
|
|
{
|
|
return parentAmount_;
|
|
}
|
|
|
|
void GetAnalyzePlaceDataRequest::setParentAmount(long parentAmount)
|
|
{
|
|
parentAmount_ = parentAmount;
|
|
setBodyParameter("ParentAmount", std::to_string(parentAmount));
|
|
}
|
|
|
|
long GetAnalyzePlaceDataRequest::getStartUVCount()const
|
|
{
|
|
return startUVCount_;
|
|
}
|
|
|
|
void GetAnalyzePlaceDataRequest::setStartUVCount(long startUVCount)
|
|
{
|
|
startUVCount_ = startUVCount;
|
|
setBodyParameter("StartUVCount", std::to_string(startUVCount));
|
|
}
|
|
|
|
std::string GetAnalyzePlaceDataRequest::getEndDate()const
|
|
{
|
|
return endDate_;
|
|
}
|
|
|
|
void GetAnalyzePlaceDataRequest::setEndDate(const std::string& endDate)
|
|
{
|
|
endDate_ = endDate;
|
|
setBodyParameter("EndDate", endDate);
|
|
}
|
|
|
|
long GetAnalyzePlaceDataRequest::getLocationId()const
|
|
{
|
|
return locationId_;
|
|
}
|
|
|
|
void GetAnalyzePlaceDataRequest::setLocationId(long locationId)
|
|
{
|
|
locationId_ = locationId;
|
|
setBodyParameter("LocationId", std::to_string(locationId));
|
|
}
|
|
|
|
std::string GetAnalyzePlaceDataRequest::getParentLocationIds()const
|
|
{
|
|
return parentLocationIds_;
|
|
}
|
|
|
|
void GetAnalyzePlaceDataRequest::setParentLocationIds(const std::string& parentLocationIds)
|
|
{
|
|
parentLocationIds_ = parentLocationIds;
|
|
setBodyParameter("ParentLocationIds", parentLocationIds);
|
|
}
|
|
|