| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- /*
- * 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/push/model/QueryPushRecordsRequest.h>
- using AlibabaCloud::Push::Model::QueryPushRecordsRequest;
- QueryPushRecordsRequest::QueryPushRecordsRequest() :
- RpcServiceRequest("push", "2016-08-01", "QueryPushRecords")
- {}
- QueryPushRecordsRequest::~QueryPushRecordsRequest()
- {}
- std::string QueryPushRecordsRequest::getStartTime()const
- {
- return startTime_;
- }
- void QueryPushRecordsRequest::setStartTime(const std::string& startTime)
- {
- startTime_ = startTime;
- setCoreParameter("StartTime", startTime);
- }
- std::string QueryPushRecordsRequest::getSource()const
- {
- return source_;
- }
- void QueryPushRecordsRequest::setSource(const std::string& source)
- {
- source_ = source;
- setCoreParameter("Source", source);
- }
- std::string QueryPushRecordsRequest::getAccessKeyId()const
- {
- return accessKeyId_;
- }
- void QueryPushRecordsRequest::setAccessKeyId(const std::string& accessKeyId)
- {
- accessKeyId_ = accessKeyId;
- setCoreParameter("AccessKeyId", accessKeyId);
- }
- std::string QueryPushRecordsRequest::getNextToken()const
- {
- return nextToken_;
- }
- void QueryPushRecordsRequest::setNextToken(const std::string& nextToken)
- {
- nextToken_ = nextToken;
- setCoreParameter("NextToken", nextToken);
- }
- int QueryPushRecordsRequest::getPageSize()const
- {
- return pageSize_;
- }
- void QueryPushRecordsRequest::setPageSize(int pageSize)
- {
- pageSize_ = pageSize;
- setCoreParameter("PageSize", std::to_string(pageSize));
- }
- std::string QueryPushRecordsRequest::getKeyword()const
- {
- return keyword_;
- }
- void QueryPushRecordsRequest::setKeyword(const std::string& keyword)
- {
- keyword_ = keyword;
- setCoreParameter("Keyword", keyword);
- }
- std::string QueryPushRecordsRequest::getEndTime()const
- {
- return endTime_;
- }
- void QueryPushRecordsRequest::setEndTime(const std::string& endTime)
- {
- endTime_ = endTime;
- setCoreParameter("EndTime", endTime);
- }
- std::string QueryPushRecordsRequest::getTarget()const
- {
- return target_;
- }
- void QueryPushRecordsRequest::setTarget(const std::string& target)
- {
- target_ = target;
- setCoreParameter("Target", target);
- }
- long QueryPushRecordsRequest::getAppKey()const
- {
- return appKey_;
- }
- void QueryPushRecordsRequest::setAppKey(long appKey)
- {
- appKey_ = appKey;
- setCoreParameter("AppKey", std::to_string(appKey));
- }
- std::string QueryPushRecordsRequest::getPushType()const
- {
- return pushType_;
- }
- void QueryPushRecordsRequest::setPushType(const std::string& pushType)
- {
- pushType_ = pushType;
- setCoreParameter("PushType", pushType);
- }
|