Files
aliyun-openapi-cpp-sdk/iot/src/model/QueryDeviceEventDataRequest.cc
2023-05-11 10:24:33 +00:00

206 lines
4.9 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/iot/model/QueryDeviceEventDataRequest.h>
using AlibabaCloud::Iot::Model::QueryDeviceEventDataRequest;
QueryDeviceEventDataRequest::QueryDeviceEventDataRequest() :
RpcServiceRequest("iot", "2018-01-20", "QueryDeviceEventData")
{
setMethod(HttpRequest::Method::Post);
}
QueryDeviceEventDataRequest::~QueryDeviceEventDataRequest()
{}
std::string QueryDeviceEventDataRequest::getRealTenantId()const
{
return realTenantId_;
}
void QueryDeviceEventDataRequest::setRealTenantId(const std::string& realTenantId)
{
realTenantId_ = realTenantId;
setParameter("RealTenantId", realTenantId);
}
long QueryDeviceEventDataRequest::getStartTime()const
{
return startTime_;
}
void QueryDeviceEventDataRequest::setStartTime(long startTime)
{
startTime_ = startTime;
setParameter("StartTime", std::to_string(startTime));
}
std::string QueryDeviceEventDataRequest::getAccessKeyId()const
{
return accessKeyId_;
}
void QueryDeviceEventDataRequest::setAccessKeyId(const std::string& accessKeyId)
{
accessKeyId_ = accessKeyId;
setParameter("AccessKeyId", accessKeyId);
}
std::string QueryDeviceEventDataRequest::getRealTripartiteKey()const
{
return realTripartiteKey_;
}
void QueryDeviceEventDataRequest::setRealTripartiteKey(const std::string& realTripartiteKey)
{
realTripartiteKey_ = realTripartiteKey;
setParameter("RealTripartiteKey", realTripartiteKey);
}
std::string QueryDeviceEventDataRequest::getIotId()const
{
return iotId_;
}
void QueryDeviceEventDataRequest::setIotId(const std::string& iotId)
{
iotId_ = iotId;
setParameter("IotId", iotId);
}
std::string QueryDeviceEventDataRequest::getIotInstanceId()const
{
return iotInstanceId_;
}
void QueryDeviceEventDataRequest::setIotInstanceId(const std::string& iotInstanceId)
{
iotInstanceId_ = iotInstanceId;
setParameter("IotInstanceId", iotInstanceId);
}
int QueryDeviceEventDataRequest::getPageSize()const
{
return pageSize_;
}
void QueryDeviceEventDataRequest::setPageSize(int pageSize)
{
pageSize_ = pageSize;
setParameter("PageSize", std::to_string(pageSize));
}
std::string QueryDeviceEventDataRequest::getIdentifier()const
{
return identifier_;
}
void QueryDeviceEventDataRequest::setIdentifier(const std::string& identifier)
{
identifier_ = identifier;
setParameter("Identifier", identifier);
}
long QueryDeviceEventDataRequest::getEndTime()const
{
return endTime_;
}
void QueryDeviceEventDataRequest::setEndTime(long endTime)
{
endTime_ = endTime;
setParameter("EndTime", std::to_string(endTime));
}
std::string QueryDeviceEventDataRequest::getProductKey()const
{
return productKey_;
}
void QueryDeviceEventDataRequest::setProductKey(const std::string& productKey)
{
productKey_ = productKey;
setParameter("ProductKey", productKey);
}
int QueryDeviceEventDataRequest::getAsc()const
{
return asc_;
}
void QueryDeviceEventDataRequest::setAsc(int asc)
{
asc_ = asc;
setParameter("Asc", std::to_string(asc));
}
bool QueryDeviceEventDataRequest::getNeedIopsCheck()const
{
return needIopsCheck_;
}
void QueryDeviceEventDataRequest::setNeedIopsCheck(bool needIopsCheck)
{
needIopsCheck_ = needIopsCheck;
setParameter("NeedIopsCheck", needIopsCheck ? "true" : "false");
}
std::string QueryDeviceEventDataRequest::getApiProduct()const
{
return apiProduct_;
}
void QueryDeviceEventDataRequest::setApiProduct(const std::string& apiProduct)
{
apiProduct_ = apiProduct;
setBodyParameter("ApiProduct", apiProduct);
}
std::string QueryDeviceEventDataRequest::getApiRevision()const
{
return apiRevision_;
}
void QueryDeviceEventDataRequest::setApiRevision(const std::string& apiRevision)
{
apiRevision_ = apiRevision;
setBodyParameter("ApiRevision", apiRevision);
}
std::string QueryDeviceEventDataRequest::getDeviceName()const
{
return deviceName_;
}
void QueryDeviceEventDataRequest::setDeviceName(const std::string& deviceName)
{
deviceName_ = deviceName;
setParameter("DeviceName", deviceName);
}
std::string QueryDeviceEventDataRequest::getEventType()const
{
return eventType_;
}
void QueryDeviceEventDataRequest::setEventType(const std::string& eventType)
{
eventType_ = eventType;
setParameter("EventType", eventType);
}