SubmitGenerateTaskRequest.h 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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_LUBANCLOUD_MODEL_SUBMITGENERATETASKREQUEST_H_
  17. #define ALIBABACLOUD_LUBANCLOUD_MODEL_SUBMITGENERATETASKREQUEST_H_
  18. #include <string>
  19. #include <vector>
  20. #include <alibabacloud/core/RpcServiceRequest.h>
  21. #include <alibabacloud/lubancloud/LubancloudExport.h>
  22. namespace AlibabaCloud
  23. {
  24. namespace Lubancloud
  25. {
  26. namespace Model
  27. {
  28. class ALIBABACLOUD_LUBANCLOUD_EXPORT SubmitGenerateTaskRequest : public RpcServiceRequest
  29. {
  30. public:
  31. SubmitGenerateTaskRequest();
  32. ~SubmitGenerateTaskRequest();
  33. std::string getApp_ip()const;
  34. void setApp_ip(const std::string& app_ip);
  35. int getImageCount()const;
  36. void setImageCount(int imageCount);
  37. long getCallerParentId()const;
  38. void setCallerParentId(long callerParentId);
  39. std::string getActionPoint()const;
  40. void setActionPoint(const std::string& actionPoint);
  41. std::string getLogoImagePath()const;
  42. void setLogoImagePath(const std::string& logoImagePath);
  43. int getType()const;
  44. void setType(int type);
  45. std::string getCallerType()const;
  46. void setCallerType(const std::string& callerType);
  47. bool getAk_mfa_present()const;
  48. void setAk_mfa_present(bool ak_mfa_present);
  49. bool getSecurity_transport()const;
  50. void setSecurity_transport(bool security_transport);
  51. std::vector<std::string> getMajorImagePath()const;
  52. void setMajorImagePath(const std::vector<std::string>& majorImagePath);
  53. std::string getRegionId()const;
  54. void setRegionId(const std::string& regionId);
  55. std::string getRequestId()const;
  56. void setRequestId(const std::string& requestId);
  57. int getWidth()const;
  58. void setWidth(int width);
  59. std::vector<std::string> getCopyWrite()const;
  60. void setCopyWrite(const std::vector<std::string>& copyWrite);
  61. std::vector<long> getPropertyId()const;
  62. void setPropertyId(const std::vector<long>& propertyId);
  63. long getCallerUid()const;
  64. void setCallerUid(long callerUid);
  65. int getHeight()const;
  66. void setHeight(int height);
  67. private:
  68. std::string app_ip_;
  69. int imageCount_;
  70. long callerParentId_;
  71. std::string actionPoint_;
  72. std::string logoImagePath_;
  73. int type_;
  74. std::string callerType_;
  75. bool ak_mfa_present_;
  76. bool security_transport_;
  77. std::vector<std::string> majorImagePath_;
  78. std::string regionId_;
  79. std::string requestId_;
  80. int width_;
  81. std::vector<std::string> copyWrite_;
  82. std::vector<long> propertyId_;
  83. long callerUid_;
  84. int height_;
  85. };
  86. }
  87. }
  88. }
  89. #endif // !ALIBABACLOUD_LUBANCLOUD_MODEL_SUBMITGENERATETASKREQUEST_H_