QuerySavingsPlansInstanceRequest.h 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. /*
  2. * Copyright 2009-2017 Alibaba Cloud All rights reserved.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. #ifndef ALIBABACLOUD_BSSOPENAPI_MODEL_QUERYSAVINGSPLANSINSTANCEREQUEST_H_
  17. #define ALIBABACLOUD_BSSOPENAPI_MODEL_QUERYSAVINGSPLANSINSTANCEREQUEST_H_
  18. #include <alibabacloud/bssopenapi/BssOpenApiExport.h>
  19. #include <alibabacloud/core/RpcServiceRequest.h>
  20. #include <string>
  21. #include <vector>
  22. #include <map>
  23. namespace AlibabaCloud {
  24. namespace BssOpenApi {
  25. namespace Model {
  26. class ALIBABACLOUD_BSSOPENAPI_EXPORT QuerySavingsPlansInstanceRequest : public RpcServiceRequest {
  27. public:
  28. struct Tag {
  29. std::string value;
  30. std::string key;
  31. };
  32. QuerySavingsPlansInstanceRequest();
  33. ~QuerySavingsPlansInstanceRequest();
  34. std::string getEndTime() const;
  35. void setEndTime(const std::string &endTime);
  36. std::string getStartTime() const;
  37. void setStartTime(const std::string &startTime);
  38. std::string getLocale() const;
  39. void setLocale(const std::string &locale);
  40. int getPageNum() const;
  41. void setPageNum(int pageNum);
  42. std::string getInstanceId() const;
  43. void setInstanceId(const std::string &instanceId);
  44. int getPageSize() const;
  45. void setPageSize(int pageSize);
  46. std::vector<Tag> getTag() const;
  47. void setTag(const std::vector<Tag> &tag);
  48. std::string getStatus() const;
  49. void setStatus(const std::string &status);
  50. private:
  51. std::string endTime_;
  52. std::string startTime_;
  53. std::string locale_;
  54. int pageNum_;
  55. std::string instanceId_;
  56. int pageSize_;
  57. std::vector<Tag> tag_;
  58. std::string status_;
  59. };
  60. } // namespace Model
  61. } // namespace BssOpenApi
  62. } // namespace AlibabaCloud
  63. #endif // !ALIBABACLOUD_BSSOPENAPI_MODEL_QUERYSAVINGSPLANSINSTANCEREQUEST_H_