pdf4me 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (271) hide show
  1. checksums.yaml +7 -0
  2. data/Gemfile +7 -0
  3. data/README.md +472 -0
  4. data/Rakefile +8 -0
  5. data/docs/ActionFlow.md +8 -0
  6. data/docs/ApiUsageRes.md +11 -0
  7. data/docs/ArchiveConfig.md +11 -0
  8. data/docs/ArchiveJobReq.md +12 -0
  9. data/docs/ArchiveJobRes.md +9 -0
  10. data/docs/Color.md +10 -0
  11. data/docs/ConvertApi.md +102 -0
  12. data/docs/ConvertToPdf.md +10 -0
  13. data/docs/ConvertToPdfAction.md +10 -0
  14. data/docs/ConvertToPdfRes.md +8 -0
  15. data/docs/CreateImages.md +10 -0
  16. data/docs/CreateImagesRes.md +8 -0
  17. data/docs/CreatePdfA.md +10 -0
  18. data/docs/CreatePdfARes.md +8 -0
  19. data/docs/CustomCMSConfig.md +23 -0
  20. data/docs/DocAction.md +8 -0
  21. data/docs/DocLog.md +12 -0
  22. data/docs/DocMetadata.md +16 -0
  23. data/docs/Document.md +16 -0
  24. data/docs/DocumentApi.md +203 -0
  25. data/docs/DropDocumentReq.md +20 -0
  26. data/docs/DropDocumentRes.md +15 -0
  27. data/docs/ExecutionTrigger.md +10 -0
  28. data/docs/Extract.md +10 -0
  29. data/docs/ExtractAction.md +9 -0
  30. data/docs/ExtractApi.md +102 -0
  31. data/docs/ExtractRes.md +8 -0
  32. data/docs/GetDocumentListRes.md +13 -0
  33. data/docs/GetDocumentReq.md +14 -0
  34. data/docs/GetDocumentRes.md +14 -0
  35. data/docs/IFormFile.md +13 -0
  36. data/docs/Image.md +15 -0
  37. data/docs/ImageAction.md +30 -0
  38. data/docs/ImageApi.md +107 -0
  39. data/docs/Job.md +10 -0
  40. data/docs/JobApi.md +197 -0
  41. data/docs/JobConfig.md +18 -0
  42. data/docs/JobConfigRes.md +8 -0
  43. data/docs/KeyValuePairStringObject.md +9 -0
  44. data/docs/KeyValuePairStringString.md +9 -0
  45. data/docs/ManagementApi.md +92 -0
  46. data/docs/Merge.md +10 -0
  47. data/docs/MergeAction.md +8 -0
  48. data/docs/MergeApi.md +102 -0
  49. data/docs/MergeRes.md +8 -0
  50. data/docs/Notification.md +9 -0
  51. data/docs/OcrAction.md +12 -0
  52. data/docs/OcrApi.md +57 -0
  53. data/docs/Optimize.md +10 -0
  54. data/docs/OptimizeAction.md +35 -0
  55. data/docs/OptimizeApi.md +103 -0
  56. data/docs/OptimizeRes.md +9 -0
  57. data/docs/Page.md +14 -0
  58. data/docs/PageSelection.md +10 -0
  59. data/docs/Pdf4meAction.md +12 -0
  60. data/docs/Pdf4meDocument.md +32 -0
  61. data/docs/Pdf4meException.md +8 -0
  62. data/docs/PdfAAction.md +14 -0
  63. data/docs/PdfAApi.md +102 -0
  64. data/docs/PdfFont.md +9 -0
  65. data/docs/Pricing.md +13 -0
  66. data/docs/ProduceDocuments.md +14 -0
  67. data/docs/ProduceDocumentsRes.md +8 -0
  68. data/docs/ProduceOutput.md +8 -0
  69. data/docs/RGBSet.md +10 -0
  70. data/docs/RecognizeDocument.md +10 -0
  71. data/docs/RecognizeDocumentRes.md +9 -0
  72. data/docs/Rectangle.md +11 -0
  73. data/docs/Rotate.md +10 -0
  74. data/docs/RunJobRes.md +10 -0
  75. data/docs/SignatureConfig.md +7 -0
  76. data/docs/Split.md +10 -0
  77. data/docs/SplitAction.md +11 -0
  78. data/docs/SplitApi.md +103 -0
  79. data/docs/SplitRes.md +8 -0
  80. data/docs/Stamp.md +10 -0
  81. data/docs/StampAction.md +22 -0
  82. data/docs/StampApi.md +110 -0
  83. data/docs/StampRes.md +8 -0
  84. data/docs/StorageFolder.md +10 -0
  85. data/docs/Text.md +17 -0
  86. data/docs/Transform.md +13 -0
  87. data/docs/Translate.md +9 -0
  88. data/docs/UserFingerprint.md +9 -0
  89. data/docs/VersionRes.md +8 -0
  90. data/docs/java.md +425 -0
  91. data/git_push.sh +55 -0
  92. data/lib/pdf4me.rb +124 -0
  93. data/lib/pdf4me/api/convert_api.rb +130 -0
  94. data/lib/pdf4me/api/document_api.rb +218 -0
  95. data/lib/pdf4me/api/extract_api.rb +131 -0
  96. data/lib/pdf4me/api/image_api.rb +139 -0
  97. data/lib/pdf4me/api/job_api.rb +223 -0
  98. data/lib/pdf4me/api/management_api.rb +117 -0
  99. data/lib/pdf4me/api/merge_api.rb +131 -0
  100. data/lib/pdf4me/api/ocr_api.rb +74 -0
  101. data/lib/pdf4me/api/optimize_api.rb +139 -0
  102. data/lib/pdf4me/api/pdf_a_api.rb +134 -0
  103. data/lib/pdf4me/api/split_api.rb +135 -0
  104. data/lib/pdf4me/api/stamp_api.rb +159 -0
  105. data/lib/pdf4me/api_client.rb +380 -0
  106. data/lib/pdf4me/api_error.rb +38 -0
  107. data/lib/pdf4me/configuration.rb +109 -0
  108. data/lib/pdf4me/models/action_flow.rb +190 -0
  109. data/lib/pdf4me/models/api_usage_res.rb +219 -0
  110. data/lib/pdf4me/models/archive_config.rb +226 -0
  111. data/lib/pdf4me/models/archive_job_req.rb +249 -0
  112. data/lib/pdf4me/models/archive_job_res.rb +207 -0
  113. data/lib/pdf4me/models/color.rb +206 -0
  114. data/lib/pdf4me/models/convert_to_pdf.rb +209 -0
  115. data/lib/pdf4me/models/convert_to_pdf_action.rb +253 -0
  116. data/lib/pdf4me/models/convert_to_pdf_res.rb +189 -0
  117. data/lib/pdf4me/models/create_images.rb +209 -0
  118. data/lib/pdf4me/models/create_images_res.rb +189 -0
  119. data/lib/pdf4me/models/create_pdf_a.rb +209 -0
  120. data/lib/pdf4me/models/create_pdf_a_res.rb +189 -0
  121. data/lib/pdf4me/models/custom_cms_config.rb +323 -0
  122. data/lib/pdf4me/models/doc_action.rb +190 -0
  123. data/lib/pdf4me/models/doc_log.rb +257 -0
  124. data/lib/pdf4me/models/doc_metadata.rb +285 -0
  125. data/lib/pdf4me/models/document.rb +285 -0
  126. data/lib/pdf4me/models/drop_document_req.rb +348 -0
  127. data/lib/pdf4me/models/drop_document_res.rb +260 -0
  128. data/lib/pdf4me/models/execution_trigger.rb +206 -0
  129. data/lib/pdf4me/models/extract.rb +207 -0
  130. data/lib/pdf4me/models/extract_action.rb +201 -0
  131. data/lib/pdf4me/models/extract_res.rb +188 -0
  132. data/lib/pdf4me/models/get_document_list_res.rb +237 -0
  133. data/lib/pdf4me/models/get_document_req.rb +243 -0
  134. data/lib/pdf4me/models/get_document_res.rb +246 -0
  135. data/lib/pdf4me/models/i_form_file.rb +235 -0
  136. data/lib/pdf4me/models/image.rb +300 -0
  137. data/lib/pdf4me/models/image_action.rb +513 -0
  138. data/lib/pdf4me/models/job.rb +213 -0
  139. data/lib/pdf4me/models/job_config.rb +298 -0
  140. data/lib/pdf4me/models/job_config_res.rb +193 -0
  141. data/lib/pdf4me/models/key_value_pair_string_object.rb +197 -0
  142. data/lib/pdf4me/models/key_value_pair_string_string.rb +197 -0
  143. data/lib/pdf4me/models/merge.rb +209 -0
  144. data/lib/pdf4me/models/merge_action.rb +190 -0
  145. data/lib/pdf4me/models/merge_res.rb +188 -0
  146. data/lib/pdf4me/models/notification.rb +199 -0
  147. data/lib/pdf4me/models/ocr_action.rb +259 -0
  148. data/lib/pdf4me/models/optimize.rb +209 -0
  149. data/lib/pdf4me/models/optimize_action.rb +514 -0
  150. data/lib/pdf4me/models/optimize_res.rb +199 -0
  151. data/lib/pdf4me/models/page.rb +258 -0
  152. data/lib/pdf4me/models/page_selection.rb +246 -0
  153. data/lib/pdf4me/models/pdf4me_action.rb +259 -0
  154. data/lib/pdf4me/models/pdf4me_document.rb +511 -0
  155. data/lib/pdf4me/models/pdf4me_exception.rb +189 -0
  156. data/lib/pdf4me/models/pdf_a_action.rb +297 -0
  157. data/lib/pdf4me/models/pdf_font.rb +213 -0
  158. data/lib/pdf4me/models/pricing.rb +278 -0
  159. data/lib/pdf4me/models/produce_documents.rb +251 -0
  160. data/lib/pdf4me/models/produce_documents_res.rb +191 -0
  161. data/lib/pdf4me/models/produce_output.rb +221 -0
  162. data/lib/pdf4me/models/recognize_document.rb +209 -0
  163. data/lib/pdf4me/models/recognize_document_res.rb +198 -0
  164. data/lib/pdf4me/models/rectangle.rb +215 -0
  165. data/lib/pdf4me/models/rgb_set.rb +206 -0
  166. data/lib/pdf4me/models/rotate.rb +221 -0
  167. data/lib/pdf4me/models/run_job_res.rb +215 -0
  168. data/lib/pdf4me/models/signature_config.rb +179 -0
  169. data/lib/pdf4me/models/split.rb +207 -0
  170. data/lib/pdf4me/models/split_action.rb +219 -0
  171. data/lib/pdf4me/models/split_res.rb +190 -0
  172. data/lib/pdf4me/models/stamp.rb +209 -0
  173. data/lib/pdf4me/models/stamp_action.rb +387 -0
  174. data/lib/pdf4me/models/stamp_res.rb +189 -0
  175. data/lib/pdf4me/models/storage_folder.rb +239 -0
  176. data/lib/pdf4me/models/text.rb +320 -0
  177. data/lib/pdf4me/models/transform.rb +263 -0
  178. data/lib/pdf4me/models/translate.rb +207 -0
  179. data/lib/pdf4me/models/user_fingerprint.rb +197 -0
  180. data/lib/pdf4me/models/version_res.rb +188 -0
  181. data/lib/pdf4me/version.rb +15 -0
  182. data/pdf4me.gemspec +47 -0
  183. data/spec/api/convert_api_spec.rb +60 -0
  184. data/spec/api/document_api_spec.rb +83 -0
  185. data/spec/api/extract_api_spec.rb +60 -0
  186. data/spec/api/image_api_spec.rb +62 -0
  187. data/spec/api/job_api_spec.rb +82 -0
  188. data/spec/api/management_api_spec.rb +57 -0
  189. data/spec/api/merge_api_spec.rb +60 -0
  190. data/spec/api/ocr_api_spec.rb +47 -0
  191. data/spec/api/optimize_api_spec.rb +60 -0
  192. data/spec/api/pdf_a_api_spec.rb +60 -0
  193. data/spec/api/split_api_spec.rb +60 -0
  194. data/spec/api/stamp_api_spec.rb +63 -0
  195. data/spec/api_client_spec.rb +226 -0
  196. data/spec/configuration_spec.rb +42 -0
  197. data/spec/models/action_flow_spec.rb +42 -0
  198. data/spec/models/api_usage_res_spec.rb +60 -0
  199. data/spec/models/archive_config_spec.rb +60 -0
  200. data/spec/models/archive_job_req_spec.rb +66 -0
  201. data/spec/models/archive_job_res_spec.rb +48 -0
  202. data/spec/models/color_spec.rb +54 -0
  203. data/spec/models/convert_to_pdf_action_spec.rb +62 -0
  204. data/spec/models/convert_to_pdf_res_spec.rb +42 -0
  205. data/spec/models/convert_to_pdf_spec.rb +54 -0
  206. data/spec/models/create_images_res_spec.rb +42 -0
  207. data/spec/models/create_images_spec.rb +54 -0
  208. data/spec/models/create_pdf_a_res_spec.rb +42 -0
  209. data/spec/models/create_pdf_a_spec.rb +54 -0
  210. data/spec/models/custom_cms_config_spec.rb +132 -0
  211. data/spec/models/doc_action_spec.rb +42 -0
  212. data/spec/models/doc_log_spec.rb +70 -0
  213. data/spec/models/doc_metadata_spec.rb +90 -0
  214. data/spec/models/document_spec.rb +90 -0
  215. data/spec/models/drop_document_req_spec.rb +118 -0
  216. data/spec/models/drop_document_res_spec.rb +84 -0
  217. data/spec/models/execution_trigger_spec.rb +54 -0
  218. data/spec/models/extract_action_spec.rb +48 -0
  219. data/spec/models/extract_res_spec.rb +42 -0
  220. data/spec/models/extract_spec.rb +54 -0
  221. data/spec/models/get_document_list_res_spec.rb +72 -0
  222. data/spec/models/get_document_req_spec.rb +78 -0
  223. data/spec/models/get_document_res_spec.rb +78 -0
  224. data/spec/models/i_form_file_spec.rb +72 -0
  225. data/spec/models/image_action_spec.rb +206 -0
  226. data/spec/models/image_spec.rb +88 -0
  227. data/spec/models/job_config_res_spec.rb +42 -0
  228. data/spec/models/job_config_spec.rb +102 -0
  229. data/spec/models/job_spec.rb +54 -0
  230. data/spec/models/key_value_pair_string_object_spec.rb +48 -0
  231. data/spec/models/key_value_pair_string_string_spec.rb +48 -0
  232. data/spec/models/merge_action_spec.rb +42 -0
  233. data/spec/models/merge_res_spec.rb +42 -0
  234. data/spec/models/merge_spec.rb +54 -0
  235. data/spec/models/notification_spec.rb +48 -0
  236. data/spec/models/ocr_action_spec.rb +70 -0
  237. data/spec/models/optimize_action_spec.rb +228 -0
  238. data/spec/models/optimize_res_spec.rb +48 -0
  239. data/spec/models/optimize_spec.rb +54 -0
  240. data/spec/models/page_selection_spec.rb +58 -0
  241. data/spec/models/page_spec.rb +78 -0
  242. data/spec/models/pdf4me_action_spec.rb +70 -0
  243. data/spec/models/pdf4me_document_spec.rb +202 -0
  244. data/spec/models/pdf4me_exception_spec.rb +42 -0
  245. data/spec/models/pdf_a_action_spec.rb +86 -0
  246. data/spec/models/pdf_font_spec.rb +48 -0
  247. data/spec/models/pricing_spec.rb +80 -0
  248. data/spec/models/produce_documents_res_spec.rb +42 -0
  249. data/spec/models/produce_documents_spec.rb +78 -0
  250. data/spec/models/produce_output_spec.rb +46 -0
  251. data/spec/models/recognize_document_res_spec.rb +48 -0
  252. data/spec/models/recognize_document_spec.rb +54 -0
  253. data/spec/models/rectangle_spec.rb +60 -0
  254. data/spec/models/rgb_set_spec.rb +54 -0
  255. data/spec/models/rotate_spec.rb +54 -0
  256. data/spec/models/run_job_res_spec.rb +54 -0
  257. data/spec/models/signature_config_spec.rb +36 -0
  258. data/spec/models/split_action_spec.rb +60 -0
  259. data/spec/models/split_res_spec.rb +42 -0
  260. data/spec/models/split_spec.rb +54 -0
  261. data/spec/models/stamp_action_spec.rb +142 -0
  262. data/spec/models/stamp_res_spec.rb +42 -0
  263. data/spec/models/stamp_spec.rb +54 -0
  264. data/spec/models/storage_folder_spec.rb +58 -0
  265. data/spec/models/text_spec.rb +104 -0
  266. data/spec/models/transform_spec.rb +72 -0
  267. data/spec/models/translate_spec.rb +48 -0
  268. data/spec/models/user_fingerprint_spec.rb +48 -0
  269. data/spec/models/version_res_spec.rb +42 -0
  270. data/spec/spec_helper.rb +111 -0
  271. metadata +594 -0
@@ -0,0 +1,9 @@
1
+ # Pdf4me::OptimizeRes
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **document** | [**Document**](Document.md) | Stamped Document | [optional]
7
+ **notification** | [**Notification**](Notification.md) | Set Notification | [optional]
8
+
9
+
data/docs/Page.md ADDED
@@ -0,0 +1,14 @@
1
+ # Pdf4me::Page
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **document_id** | **String** | | [optional]
7
+ **page_id** | **String** | | [optional]
8
+ **page_number** | **Integer** | | [optional]
9
+ **rotate** | **Float** | | [optional]
10
+ **thumbnail** | **String** | | [optional]
11
+ **source_document_id** | **String** | | [optional]
12
+ **source_page_number** | **Integer** | | [optional]
13
+
14
+
@@ -0,0 +1,10 @@
1
+ # Pdf4me::PageSelection
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **page_nrs** | **Array<Integer>** | Give a list of PageNrs to apply the action.<br /> PageNrs overruels PageIds and PageSequence | [optional]
7
+ **page_ids** | **Array<String>** | Give a List of PagesIds to apply the action.<br /> PageIds overrules the PageSequence | [optional]
8
+ **page_sequence** | **String** | {default: PageSelection.All} | [optional]
9
+
10
+
@@ -0,0 +1,12 @@
1
+ # Pdf4me::Pdf4meAction
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **action_id** | **String** | | [optional]
7
+ **action_type** | **String** | | [optional]
8
+ **user_action** | **String** | | [optional]
9
+ **action_config** | **String** | | [optional]
10
+ **action_properties** | [**Array<KeyValuePairStringObject>**](KeyValuePairStringObject.md) | | [optional]
11
+
12
+
@@ -0,0 +1,32 @@
1
+ # Pdf4me::Pdf4meDocument
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **document_type** | **String** | | [optional]
7
+ **blob_ref** | **String** | | [optional]
8
+ **job_id** | **String** | | [optional]
9
+ **ref_document_id** | **String** | | [optional]
10
+ **ref_doc_action** | [**DocAction**](DocAction.md) | | [optional]
11
+ **document_id** | **String** | | [optional]
12
+ **user_id** | **String** | | [optional]
13
+ **name** | **String** | | [optional]
14
+ **ratio** | **Float** | | [optional]
15
+ **doc_status** | **String** | | [optional]
16
+ **in_execution** | **BOOLEAN** | | [optional]
17
+ **order** | **Integer** | | [optional]
18
+ **show_doc** | **BOOLEAN** | | [optional]
19
+ **doc_data** | **String** | | [optional]
20
+ **thumbnail** | **String** | | [optional]
21
+ **pages** | [**Array<Page>**](Page.md) | | [optional]
22
+ **thumbnails** | **Array<String>** | | [optional]
23
+ **doc_logs** | [**Array<DocLog>**](DocLog.md) | | [optional]
24
+ **doc_metadata** | [**DocMetadata**](DocMetadata.md) | | [optional]
25
+ **original_doc_metadata** | [**DocMetadata**](DocMetadata.md) | | [optional]
26
+ **storage_provider_broker** | **String** | | [optional]
27
+ **storage_provider** | **String** | | [optional]
28
+ **storage_account_id** | **String** | | [optional]
29
+ **storage_provider_id** | **String** | | [optional]
30
+ **storage_provider_folder_id** | **String** | | [optional]
31
+
32
+
@@ -0,0 +1,8 @@
1
+ # Pdf4me::Pdf4meException
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **error_message** | **String** | Human Readable Message of the error | [optional]
7
+
8
+
@@ -0,0 +1,14 @@
1
+ # Pdf4me::PdfAAction
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **fonts_to_subset** | [**Array<PdfFont>**](PdfFont.md) | By default, fonts that are embedded are automatically subset to minimize the file size. If for any reason, e.g. postprocessing, fonts shall not be subset, set the property SubsetFonts to false. Whether fonts are subset or not is irrelevant with respect to the compliance with PDF/A. (Relevant is only that all used glyphs are contained in the font program.) Additionals Fonts can be given in this FontsToSubset List | [optional]
7
+ **compliance** | **String** | Other listed entries (e.g. ePDF10, ePDF11, .. .ePDF17, ePDFUnk) are not supported as output compliance level. Some files cannot be converted to the compliance requested. This will be detected and up- (AllowUpgrade) or downgrade (AllowDowngrade) the compliance automatically. | [optional]
8
+ **allow_downgrade** | **BOOLEAN** | If set to True, automatic downgrade of the PDF/A conformance level is allowed, e.g. from PDF/A-1a to PDF/A-1b. If this property is set to True, the level is downgraded under the following conditions: - Downgrade to level B: If a file contains text that is not extractable (i.e.missing ToUnicode information). Example: Downgrade PDF/A-2u to PDF/A-2b. - Downgrade to level U (PDF/A-2 and PDF/A-3) or B(PDF/A-1): Level A requires logical structure information and “tagging” information, so if a file contains no such information, its level is downgraded. <para> Logical structure information in a PDF defines the structure of content, such as titles, paragraphs, figures, reading order, tables or articles.Logical structure elements can be “tagged” with descriptions or alternative text. “Tagging” allows the contents of an image to be described to the visually impaired. It is not possible for Pdf/A converter to add meaningful tagging information. Adding tagging information without prior knowledge about the input file’s structure and content is neither possible nor allowed by the PDF/A standard. For that reason, the conformance level is automatically downgraded to level B or U. Example: Downgrade PDF/A-1a to PDF/A-1b. </para><para> If set to False and an input file cannot be converted to the requested standard, e.g.because of missing “tagging” information, the conversion is aborted and the ErrorCode set to PDF_E_DOWNGRADE. </para> | [optional]
9
+ **allow_upgrade** | **BOOLEAN** | If set to True, automatic upgrade of the PDF/A version is allowed. If the target standard is PDF/A-1 and a file contains elements that cannot be converted to PDF/A-1, the target standard is upgraded to PDF/A-2. This avoids significant visual differences in the output file. For example, the following elements may lead to an automatic upgrade: - Transpanrecy - Optional content groups(OCG, layers) - Real values that exceed the implementation limit of PDF/A-1 - Embedded OpenType font files - Predefined CMap encodings in Type0 fonts If set to False, the compliance is not upgraded.Depeding on the value of the ConversionErrorMask the conversion this will fail with a conversion error PDF_E_CONVERSION | [optional]
10
+ **output_intent_profile** | **String** | <para> Set or get the path to the ICC profile for the output intent. </para> <para> The given profile is embedded only if the input file does not contain a PDF/A output intent already </para> | [optional]
11
+ **linearize** | **BOOLEAN** | <para> Get or set whether to linearize the PDF output file, i.e. optimize file for fast web access. A linearized document has a slightly larger file size than a non-linearized file and provides the following main features: - When a document is opened in a PDF viewer of a web browser, the first page can be viewed without downloading the entire PDF file.In contrast, a non-linearized PDF file must be downloaded completely before the firstpage can be displayed. - When another page is requested by the user, that page is displayed as quickly as possible and incrementally as data arrives, without downloading the entire PDF file. </para> <para> Signed files cannot be linearizes.So this property must be set to False if a digital signature is applied. </para> | [optional]
12
+ **custom_properties** | [**Array<KeyValuePairStringString>**](KeyValuePairStringString.md) | | [optional]
13
+
14
+
data/docs/PdfAApi.md ADDED
@@ -0,0 +1,102 @@
1
+ # Pdf4me::PdfAApi
2
+
3
+ All URIs are relative to *https://localhost*
4
+
5
+ Method | HTTP request | Description
6
+ ------------- | ------------- | -------------
7
+ [**create_pdf_a**](PdfAApi.md#create_pdf_a) | **POST** /PdfA/CreatePdfA |
8
+ [**pdf_a**](PdfAApi.md#pdf_a) | **POST** /PdfA/PdfA |
9
+
10
+
11
+ # **create_pdf_a**
12
+ > File create_pdf_a(opts)
13
+
14
+
15
+
16
+ ### Example
17
+ ```ruby
18
+ # load the gem
19
+ require 'pdf4me'
20
+
21
+ api_instance = Pdf4me::PdfAApi.new
22
+
23
+ opts = {
24
+ pdf_compliance: "pdf_compliance_example", # String |
25
+ file: "file_example" # String |
26
+ }
27
+
28
+ begin
29
+ result = api_instance.create_pdf_a(opts)
30
+ p result
31
+ rescue Pdf4me::ApiError => e
32
+ puts "Exception when calling PdfAApi->create_pdf_a: #{e}"
33
+ end
34
+ ```
35
+
36
+ ### Parameters
37
+
38
+ Name | Type | Description | Notes
39
+ ------------- | ------------- | ------------- | -------------
40
+ **pdf_compliance** | **String**| | [optional]
41
+ **file** | **String**| | [optional]
42
+
43
+ ### Return type
44
+
45
+ **File**
46
+
47
+ ### Authorization
48
+
49
+ No authorization required
50
+
51
+ ### HTTP request headers
52
+
53
+ - **Content-Type**: Not defined
54
+ - **Accept**: application/octet-stream
55
+
56
+
57
+
58
+ # **pdf_a**
59
+ > CreatePdfARes pdf_a(opts)
60
+
61
+
62
+
63
+ ### Example
64
+ ```ruby
65
+ # load the gem
66
+ require 'pdf4me'
67
+
68
+ api_instance = Pdf4me::PdfAApi.new
69
+
70
+ opts = {
71
+ req: Pdf4me::CreatePdfA.new # CreatePdfA |
72
+ }
73
+
74
+ begin
75
+ result = api_instance.pdf_a(opts)
76
+ p result
77
+ rescue Pdf4me::ApiError => e
78
+ puts "Exception when calling PdfAApi->pdf_a: #{e}"
79
+ end
80
+ ```
81
+
82
+ ### Parameters
83
+
84
+ Name | Type | Description | Notes
85
+ ------------- | ------------- | ------------- | -------------
86
+ **req** | [**CreatePdfA**](CreatePdfA.md)| | [optional]
87
+
88
+ ### Return type
89
+
90
+ [**CreatePdfARes**](CreatePdfARes.md)
91
+
92
+ ### Authorization
93
+
94
+ No authorization required
95
+
96
+ ### HTTP request headers
97
+
98
+ - **Content-Type**: application/json-patch+json, application/json, text/json, application/*+json, application/bson
99
+ - **Accept**: text/plain, application/json, text/json, application/bson
100
+
101
+
102
+
data/docs/PdfFont.md ADDED
@@ -0,0 +1,9 @@
1
+ # Pdf4me::PdfFont
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **name** | **String** | | [optional]
7
+ **font_content** | **String** | | [optional]
8
+
9
+
data/docs/Pricing.md ADDED
@@ -0,0 +1,13 @@
1
+ # Pdf4me::Pricing
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **currency** | **String** | | [optional]
7
+ **total_cost** | **Float** | | [optional]
8
+ **page_cnt** | **Integer** | | [optional]
9
+ **document_cnt** | **Integer** | | [optional]
10
+ **pricing_type_required** | **String** | | [optional]
11
+ **pricing_type_of_user** | **String** | | [optional]
12
+
13
+
@@ -0,0 +1,14 @@
1
+ # Pdf4me::ProduceDocuments
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **job_id** | **String** | Document containing the data | [optional]
7
+ **documents** | [**Array<Document>**](Document.md) | Document containing the data | [optional]
8
+ **ocr_action** | [**OcrAction**](OcrAction.md) | Document containing the data | [optional]
9
+ **pdf_a_action** | [**PdfAAction**](PdfAAction.md) | Document containing the data | [optional]
10
+ **optimize_action** | [**OptimizeAction**](OptimizeAction.md) | Document containing the data | [optional]
11
+ **produce_output** | [**ProduceOutput**](ProduceOutput.md) | Document containing the data | [optional]
12
+ **notification** | [**Notification**](Notification.md) | Set Notification | [optional]
13
+
14
+
@@ -0,0 +1,8 @@
1
+ # Pdf4me::ProduceDocumentsRes
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **documents** | [**Array<Document>**](Document.md) | Stamped Document | [optional]
7
+
8
+
@@ -0,0 +1,8 @@
1
+ # Pdf4me::ProduceOutput
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **file_type** | **String** | | [optional]
7
+
8
+
data/docs/RGBSet.md ADDED
@@ -0,0 +1,10 @@
1
+ # Pdf4me::RGBSet
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **red** | **Integer** | | [optional]
7
+ **green** | **Integer** | | [optional]
8
+ **blue** | **Integer** | | [optional]
9
+
10
+
@@ -0,0 +1,10 @@
1
+ # Pdf4me::RecognizeDocument
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **document** | [**Document**](Document.md) | Give the document to change or use JobId/DocumentId to reference an uploaded document. | [optional]
7
+ **ocr_action** | [**OcrAction**](OcrAction.md) | Give an image stamp | [optional]
8
+ **notification** | [**Notification**](Notification.md) | Set Notification | [optional]
9
+
10
+
@@ -0,0 +1,9 @@
1
+ # Pdf4me::RecognizeDocumentRes
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **document** | [**Document**](Document.md) | Stamped Document | [optional]
7
+ **structured_data_json** | **String** | | [optional]
8
+
9
+
data/docs/Rectangle.md ADDED
@@ -0,0 +1,11 @@
1
+ # Pdf4me::Rectangle
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **x** | **Integer** | | [optional]
7
+ **y** | **Integer** | | [optional]
8
+ **width** | **Integer** | | [optional]
9
+ **height** | **Integer** | | [optional]
10
+
11
+
data/docs/Rotate.md ADDED
@@ -0,0 +1,10 @@
1
+ # Pdf4me::Rotate
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **angle** | **Float** | |
7
+ **origin_x** | **Integer** | |
8
+ **origin_y** | **Integer** | |
9
+
10
+
data/docs/RunJobRes.md ADDED
@@ -0,0 +1,10 @@
1
+ # Pdf4me::RunJobRes
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **job_id** | **String** | |
7
+ **documents** | [**Array<Document>**](Document.md) | List of Document Result | [optional]
8
+ **notification** | [**Notification**](Notification.md) | Set Notification | [optional]
9
+
10
+
@@ -0,0 +1,7 @@
1
+ # Pdf4me::SignatureConfig
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+
7
+
data/docs/Split.md ADDED
@@ -0,0 +1,10 @@
1
+ # Pdf4me::Split
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **document** | [**Document**](Document.md) | | [optional]
7
+ **split_action** | [**SplitAction**](SplitAction.md) | | [optional]
8
+ **notification** | [**Notification**](Notification.md) | Set Notification | [optional]
9
+
10
+
@@ -0,0 +1,11 @@
1
+ # Pdf4me::SplitAction
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **split_after_page** | **Integer** | | [optional]
7
+ **split_sequence** | **Array<Integer>** | | [optional]
8
+ **recurring_split_after_page** | **Integer** | | [optional]
9
+ **custom_properties** | [**Array<KeyValuePairStringString>**](KeyValuePairStringString.md) | | [optional]
10
+
11
+
data/docs/SplitApi.md ADDED
@@ -0,0 +1,103 @@
1
+ # Pdf4me::SplitApi
2
+
3
+ All URIs are relative to *https://localhost*
4
+
5
+ Method | HTTP request | Description
6
+ ------------- | ------------- | -------------
7
+ [**split**](SplitApi.md#split) | **POST** /Split/Split |
8
+ [**split_by_page_nr**](SplitApi.md#split_by_page_nr) | **POST** /Split/SplitByPageNr |
9
+
10
+
11
+ # **split**
12
+ > SplitRes split(opts)
13
+
14
+
15
+
16
+ ### Example
17
+ ```ruby
18
+ # load the gem
19
+ require 'pdf4me'
20
+
21
+ api_instance = Pdf4me::SplitApi.new
22
+
23
+ opts = {
24
+ req: Pdf4me::Split.new # Split |
25
+ }
26
+
27
+ begin
28
+ result = api_instance.split(opts)
29
+ p result
30
+ rescue Pdf4me::ApiError => e
31
+ puts "Exception when calling SplitApi->split: #{e}"
32
+ end
33
+ ```
34
+
35
+ ### Parameters
36
+
37
+ Name | Type | Description | Notes
38
+ ------------- | ------------- | ------------- | -------------
39
+ **req** | [**Split**](Split.md)| | [optional]
40
+
41
+ ### Return type
42
+
43
+ [**SplitRes**](SplitRes.md)
44
+
45
+ ### Authorization
46
+
47
+ No authorization required
48
+
49
+ ### HTTP request headers
50
+
51
+ - **Content-Type**: application/json-patch+json, application/json, text/json, application/*+json, application/bson
52
+ - **Accept**: text/plain, application/json, text/json, application/bson
53
+
54
+
55
+
56
+ # **split_by_page_nr**
57
+ > SplitRes split_by_page_nr(page_nr, opts)
58
+
59
+
60
+
61
+ ### Example
62
+ ```ruby
63
+ # load the gem
64
+ require 'pdf4me'
65
+
66
+ api_instance = Pdf4me::SplitApi.new
67
+
68
+ page_nr = 56 # Integer |
69
+
70
+ opts = {
71
+ file: "file_example" # String |
72
+ }
73
+
74
+ begin
75
+ result = api_instance.split_by_page_nr(page_nr, opts)
76
+ p result
77
+ rescue Pdf4me::ApiError => e
78
+ puts "Exception when calling SplitApi->split_by_page_nr: #{e}"
79
+ end
80
+ ```
81
+
82
+ ### Parameters
83
+
84
+ Name | Type | Description | Notes
85
+ ------------- | ------------- | ------------- | -------------
86
+ **page_nr** | **Integer**| |
87
+ **file** | **String**| | [optional]
88
+
89
+ ### Return type
90
+
91
+ [**SplitRes**](SplitRes.md)
92
+
93
+ ### Authorization
94
+
95
+ No authorization required
96
+
97
+ ### HTTP request headers
98
+
99
+ - **Content-Type**: Not defined
100
+ - **Accept**: text/plain, application/json, text/json, application/bson
101
+
102
+
103
+