SubmitCopyrightJobRequest.h 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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_MTS_MODEL_SUBMITCOPYRIGHTJOBREQUEST_H_
  17. #define ALIBABACLOUD_MTS_MODEL_SUBMITCOPYRIGHTJOBREQUEST_H_
  18. #include <alibabacloud/mts/MtsExport.h>
  19. #include <alibabacloud/core/RpcServiceRequest.h>
  20. #include <string>
  21. #include <vector>
  22. #include <map>
  23. namespace AlibabaCloud {
  24. namespace Mts {
  25. namespace Model {
  26. class ALIBABACLOUD_MTS_EXPORT SubmitCopyrightJobRequest : public RpcServiceRequest {
  27. public:
  28. SubmitCopyrightJobRequest();
  29. ~SubmitCopyrightJobRequest();
  30. std::string getVisibleMessage() const;
  31. void setVisibleMessage(const std::string &visibleMessage);
  32. std::string getDescription() const;
  33. void setDescription(const std::string &description);
  34. long getStartTime() const;
  35. void setStartTime(long startTime);
  36. std::string getOutput() const;
  37. void setOutput(const std::string &output);
  38. std::string getUserData() const;
  39. void setUserData(const std::string &userData);
  40. long getLevel() const;
  41. void setLevel(long level);
  42. std::string getMessage() const;
  43. void setMessage(const std::string &message);
  44. std::string getParams() const;
  45. void setParams(const std::string &params);
  46. std::string getUrl() const;
  47. void setUrl(const std::string &url);
  48. std::string getInput() const;
  49. void setInput(const std::string &input);
  50. long getTotalTime() const;
  51. void setTotalTime(long totalTime);
  52. std::string getCallBack() const;
  53. void setCallBack(const std::string &callBack);
  54. private:
  55. std::string visibleMessage_;
  56. std::string description_;
  57. long startTime_;
  58. std::string output_;
  59. std::string userData_;
  60. long level_;
  61. std::string message_;
  62. std::string params_;
  63. std::string url_;
  64. std::string input_;
  65. long totalTime_;
  66. std::string callBack_;
  67. };
  68. } // namespace Model
  69. } // namespace Mts
  70. } // namespace AlibabaCloud
  71. #endif // !ALIBABACLOUD_MTS_MODEL_SUBMITCOPYRIGHTJOBREQUEST_H_