/* * 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_CLOUDESL_MODEL_DESCRIBEBINDERSREQUEST_H_ #define ALIBABACLOUD_CLOUDESL_MODEL_DESCRIBEBINDERSREQUEST_H_ #include #include #include #include namespace AlibabaCloud { namespace Cloudesl { namespace Model { class ALIBABACLOUD_CLOUDESL_EXPORT DescribeBindersRequest : public RpcServiceRequest { public: DescribeBindersRequest(); ~DescribeBindersRequest(); std::string getExtraParams()const; void setExtraParams(const std::string& extraParams); std::string getStoreId()const; void setStoreId(const std::string& storeId); int getPageNumber()const; void setPageNumber(int pageNumber); std::string getEslBarCode()const; void setEslBarCode(const std::string& eslBarCode); int getPageSize()const; void setPageSize(int pageSize); std::string getItemBarCode()const; void setItemBarCode(const std::string& itemBarCode); std::string getItemTitle()const; void setItemTitle(const std::string& itemTitle); private: std::string extraParams_; std::string storeId_; int pageNumber_; std::string eslBarCode_; int pageSize_; std::string itemBarCode_; std::string itemTitle_; }; } } } #endif // !ALIBABACLOUD_CLOUDESL_MODEL_DESCRIBEBINDERSREQUEST_H_