| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- /*
- * 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/bssopenapi/model/QueryAccountTransactionsRequest.h>
- using AlibabaCloud::BssOpenApi::Model::QueryAccountTransactionsRequest;
- QueryAccountTransactionsRequest::QueryAccountTransactionsRequest() :
- RpcServiceRequest("bssopenapi", "2017-12-14", "QueryAccountTransactions")
- {
- setMethod(HttpRequest::Method::Post);
- }
- QueryAccountTransactionsRequest::~QueryAccountTransactionsRequest()
- {}
- int QueryAccountTransactionsRequest::getPageNum()const
- {
- return pageNum_;
- }
- void QueryAccountTransactionsRequest::setPageNum(int pageNum)
- {
- pageNum_ = pageNum;
- setCoreParameter("PageNum", std::to_string(pageNum));
- }
- std::string QueryAccountTransactionsRequest::getCreateTimeEnd()const
- {
- return createTimeEnd_;
- }
- void QueryAccountTransactionsRequest::setCreateTimeEnd(const std::string& createTimeEnd)
- {
- createTimeEnd_ = createTimeEnd;
- setCoreParameter("CreateTimeEnd", createTimeEnd);
- }
- std::string QueryAccountTransactionsRequest::getRecordID()const
- {
- return recordID_;
- }
- void QueryAccountTransactionsRequest::setRecordID(const std::string& recordID)
- {
- recordID_ = recordID;
- setCoreParameter("RecordID", recordID);
- }
- int QueryAccountTransactionsRequest::getPageSize()const
- {
- return pageSize_;
- }
- void QueryAccountTransactionsRequest::setPageSize(int pageSize)
- {
- pageSize_ = pageSize;
- setCoreParameter("PageSize", std::to_string(pageSize));
- }
- std::string QueryAccountTransactionsRequest::getTransactionChannelSN()const
- {
- return transactionChannelSN_;
- }
- void QueryAccountTransactionsRequest::setTransactionChannelSN(const std::string& transactionChannelSN)
- {
- transactionChannelSN_ = transactionChannelSN;
- setCoreParameter("TransactionChannelSN", transactionChannelSN);
- }
- std::string QueryAccountTransactionsRequest::getCreateTimeStart()const
- {
- return createTimeStart_;
- }
- void QueryAccountTransactionsRequest::setCreateTimeStart(const std::string& createTimeStart)
- {
- createTimeStart_ = createTimeStart;
- setCoreParameter("CreateTimeStart", createTimeStart);
- }
- std::string QueryAccountTransactionsRequest::getTransactionNumber()const
- {
- return transactionNumber_;
- }
- void QueryAccountTransactionsRequest::setTransactionNumber(const std::string& transactionNumber)
- {
- transactionNumber_ = transactionNumber;
- setCoreParameter("TransactionNumber", transactionNumber);
- }
|