Files
aliyun-openapi-cpp-sdk/bssopenapi/include/alibabacloud/bssopenapi/model/QueryAccountTransactionsRequest.h

70 lines
2.6 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.
*/
#ifndef ALIBABACLOUD_BSSOPENAPI_MODEL_QUERYACCOUNTTRANSACTIONSREQUEST_H_
#define ALIBABACLOUD_BSSOPENAPI_MODEL_QUERYACCOUNTTRANSACTIONSREQUEST_H_
#include <alibabacloud/bssopenapi/BssOpenApiExport.h>
#include <alibabacloud/core/RpcServiceRequest.h>
#include <string>
#include <vector>
#include <map>
namespace AlibabaCloud {
namespace BssOpenApi {
namespace Model {
class ALIBABACLOUD_BSSOPENAPI_EXPORT QueryAccountTransactionsRequest : public RpcServiceRequest {
public:
QueryAccountTransactionsRequest();
~QueryAccountTransactionsRequest();
int getPageNum() const;
void setPageNum(int pageNum);
std::string getTransactionType() const;
void setTransactionType(const std::string &transactionType);
std::string getCreateTimeEnd() const;
void setCreateTimeEnd(const std::string &createTimeEnd);
std::string getRecordID() const;
void setRecordID(const std::string &recordID);
int getPageSize() const;
void setPageSize(int pageSize);
std::string getTransactionChannel() const;
void setTransactionChannel(const std::string &transactionChannel);
std::string getTransactionChannelSN() const;
void setTransactionChannelSN(const std::string &transactionChannelSN);
std::string getCreateTimeStart() const;
void setCreateTimeStart(const std::string &createTimeStart);
std::string getTransactionNumber() const;
void setTransactionNumber(const std::string &transactionNumber);
std::string getTransactionFlow() const;
void setTransactionFlow(const std::string &transactionFlow);
private:
int pageNum_;
std::string transactionType_;
std::string createTimeEnd_;
std::string recordID_;
int pageSize_;
std::string transactionChannel_;
std::string transactionChannelSN_;
std::string createTimeStart_;
std::string transactionNumber_;
std::string transactionFlow_;
};
} // namespace Model
} // namespace BssOpenApi
} // namespace AlibabaCloud
#endif // !ALIBABACLOUD_BSSOPENAPI_MODEL_QUERYACCOUNTTRANSACTIONSREQUEST_H_