ConvertOfficeFormatRequest.h 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  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_IMM_MODEL_CONVERTOFFICEFORMATREQUEST_H_
  17. #define ALIBABACLOUD_IMM_MODEL_CONVERTOFFICEFORMATREQUEST_H_
  18. #include <string>
  19. #include <vector>
  20. #include <alibabacloud/core/RpcServiceRequest.h>
  21. #include <alibabacloud/imm/ImmExport.h>
  22. namespace AlibabaCloud
  23. {
  24. namespace Imm
  25. {
  26. namespace Model
  27. {
  28. class ALIBABACLOUD_IMM_EXPORT ConvertOfficeFormatRequest : public RpcServiceRequest
  29. {
  30. public:
  31. ConvertOfficeFormatRequest();
  32. ~ConvertOfficeFormatRequest();
  33. std::string getSrcType()const;
  34. void setSrcType(const std::string& srcType);
  35. std::string getModelId()const;
  36. void setModelId(const std::string& modelId);
  37. std::string getProject()const;
  38. void setProject(const std::string& project);
  39. long getMaxSheetRow()const;
  40. void setMaxSheetRow(long maxSheetRow);
  41. long getMaxSheetCount()const;
  42. void setMaxSheetCount(long maxSheetCount);
  43. long getEndPage()const;
  44. void setEndPage(long endPage);
  45. std::string getTgtFileSuffix()const;
  46. void setTgtFileSuffix(const std::string& tgtFileSuffix);
  47. bool getPdfVector()const;
  48. void setPdfVector(bool pdfVector);
  49. std::string getAccessKeyId()const;
  50. void setAccessKeyId(const std::string& accessKeyId);
  51. bool getSheetOnePage()const;
  52. void setSheetOnePage(bool sheetOnePage);
  53. std::string getPassword()const;
  54. void setPassword(const std::string& password);
  55. long getStartPage()const;
  56. void setStartPage(long startPage);
  57. long getMaxSheetCol()const;
  58. void setMaxSheetCol(long maxSheetCol);
  59. std::string getTgtType()const;
  60. void setTgtType(const std::string& tgtType);
  61. std::string getRegionId()const;
  62. void setRegionId(const std::string& regionId);
  63. bool getFitToPagesWide()const;
  64. void setFitToPagesWide(bool fitToPagesWide);
  65. bool getHidecomments()const;
  66. void setHidecomments(bool hidecomments);
  67. std::string getTgtFilePrefix()const;
  68. void setTgtFilePrefix(const std::string& tgtFilePrefix);
  69. bool getFitToPagesTall()const;
  70. void setFitToPagesTall(bool fitToPagesTall);
  71. std::string getSrcUri()const;
  72. void setSrcUri(const std::string& srcUri);
  73. std::string getTgtFilePages()const;
  74. void setTgtFilePages(const std::string& tgtFilePages);
  75. std::string getTgtUri()const;
  76. void setTgtUri(const std::string& tgtUri);
  77. private:
  78. std::string srcType_;
  79. std::string modelId_;
  80. std::string project_;
  81. long maxSheetRow_;
  82. long maxSheetCount_;
  83. long endPage_;
  84. std::string tgtFileSuffix_;
  85. bool pdfVector_;
  86. std::string accessKeyId_;
  87. bool sheetOnePage_;
  88. std::string password_;
  89. long startPage_;
  90. long maxSheetCol_;
  91. std::string tgtType_;
  92. std::string regionId_;
  93. bool fitToPagesWide_;
  94. bool hidecomments_;
  95. std::string tgtFilePrefix_;
  96. bool fitToPagesTall_;
  97. std::string srcUri_;
  98. std::string tgtFilePages_;
  99. std::string tgtUri_;
  100. };
  101. }
  102. }
  103. }
  104. #endif // !ALIBABACLOUD_IMM_MODEL_CONVERTOFFICEFORMATREQUEST_H_