CreateWmExtractTaskRequest.h 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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_CSAS_MODEL_CREATEWMEXTRACTTASKREQUEST_H_
  17. #define ALIBABACLOUD_CSAS_MODEL_CREATEWMEXTRACTTASKREQUEST_H_
  18. #include <alibabacloud/csas/CsasExport.h>
  19. #include <alibabacloud/core/RpcServiceRequest.h>
  20. #include <string>
  21. #include <vector>
  22. #include <map>
  23. namespace AlibabaCloud {
  24. namespace Csas {
  25. namespace Model {
  26. class ALIBABACLOUD_CSAS_EXPORT CreateWmExtractTaskRequest : public RpcServiceRequest {
  27. public:
  28. struct CsvControl {
  29. std::string method;
  30. long embedColumn;
  31. long embedPrecision;
  32. };
  33. CreateWmExtractTaskRequest();
  34. ~CreateWmExtractTaskRequest();
  35. bool getVideoIsLong() const;
  36. void setVideoIsLong(bool videoIsLong);
  37. bool getDocumentIsCapture() const;
  38. void setDocumentIsCapture(bool documentIsCapture);
  39. std::string getVideoSpeed() const;
  40. void setVideoSpeed(const std::string &videoSpeed);
  41. std::string getApiType() const;
  42. void setApiType(const std::string &apiType);
  43. std::string getSourceIp() const;
  44. void setSourceIp(const std::string &sourceIp);
  45. std::string getWmType() const;
  46. void setWmType(const std::string &wmType);
  47. int getImageDetectLevel() const;
  48. void setImageDetectLevel(int imageDetectLevel);
  49. CsvControl getCsvControl() const;
  50. void setCsvControl(const CsvControl &csvControl);
  51. std::string getFilename() const;
  52. void setFilename(const std::string &filename);
  53. long getWmInfoSize() const;
  54. void setWmInfoSize(long wmInfoSize);
  55. std::string getFileUrl() const;
  56. void setFileUrl(const std::string &fileUrl);
  57. private:
  58. bool videoIsLong_;
  59. bool documentIsCapture_;
  60. std::string videoSpeed_;
  61. std::string apiType_;
  62. std::string sourceIp_;
  63. std::string wmType_;
  64. int imageDetectLevel_;
  65. CsvControl csvControl_;
  66. std::string filename_;
  67. long wmInfoSize_;
  68. std::string fileUrl_;
  69. };
  70. } // namespace Model
  71. } // namespace Csas
  72. } // namespace AlibabaCloud
  73. #endif // !ALIBABACLOUD_CSAS_MODEL_CREATEWMEXTRACTTASKREQUEST_H_